@font-face { font-family: proxima-nova-bold; font-display: swap; src: url('/assets/fonts/ProximaNova-ExtraBold.otf'); }
@font-face { font-family: proxima-nova; font-display: swap; src: url('/assets/fonts/ProximaNova-Regular.otf'); }
h1, h2, h3, h4, .fontbold, .pagination, strong {
	font-family: proxima-nova-bold, Arial, sans-serif;
	font-weight: 400!important;
}
h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.3;
}
body {
	font-size: 18px;
	color: black;
	font-family: proxima-nova, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	width: 100%;
}
#outer-wrap {
    overflow-x: hidden;
}
.full-width {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}
.container, .has-sidebar #content-wrap {
	width: 1150px;
	margin: 0 auto;
	max-width: 90%;
	position: relative;
	z-index: 1;
}
#primary {
    padding-bottom: 60px;
}
ul, ol {
	margin: 0 0 20px 30px;
	padding: 0;
}
button {
    padding: 0;
    border: 0;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
p {
    margin: 0 0 15px;
}
:root {
	--main-color: #0aadeb;
	--second-color: #4545a2;
	--light-color: #d6f4ff;
	--form-height: 50px;
	--border-radius: 8px;
}
a, :visited {
    color: var(--main-color);
    text-decoration: none;
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
}


/* Layout ucun custom css */
.right-sidebar #content-wrap, .left-sidebar #content-wrap {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.right-sidebar #primary {
    width: calc(100% - 300px);
    padding-right: 40px;
}
.left-sidebar #primary {
    width: calc(100% - 300px);
    padding-left: 40px;
}
.has-sidebar #sidebar {
    width: 300px;
}
.right-sidebar #sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
@media (max-width: 959px) {
    .has-sidebar #primary, .has-sidebar #sidebar {
        width: 100%;
        padding: 0;
    }
    #primary {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    #sidebar {
        margin-top: 40px;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}


/* Header ucun custom css */
#site-header {
    position: relative;
    z-index: 5;
    background: #1d1d1d;
}
.master-header-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	padding: 10px 0;
	width: 100%;
}
#site-logo {
	width: 210px;
}
#site-navigation-wrap {
    -webkit-box-shadow: 0 10px 26px rgb(0 0 0 / 5%);
            box-shadow: 0 10px 26px rgb(0 0 0 / 5%);
    z-index: 20;
    position: relative;
}
#site-navigation {
    position: relative;
    margin-left: -20px;
}
#site-navigation > div, #master-menu-search {
	display: inline-block;
	vertical-align: middle;
}
#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    margin: 0;
    padding: 0;
}
#site-navigation-wrap .master-main-menu > .menu-item {
    margin: 0 12px;
    position: relative;
}
#site-navigation-wrap .master-main-menu a {
	color: var(--second-color);
	white-space: nowrap;
	height: 60px;
    line-height: 60px;
}
#site-navigation-wrap .master-main-menu a:hover, #site-navigation-wrap .current-menu-item a {
	color: var(--main-color);
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a {
    padding-right: 15px;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    padding-left: 5px;
    position: absolute;
    font-size: 14px;
}
#site-navigation-wrap .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
	border-bottom: 0;	
	z-index: 10;
	background: white;
	min-width: 120px;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > .sub-menu {
    border-top: 3px solid var(--main-color);
}
#site-navigation-wrap .menu-item-has-children:hover > .sub-menu {
	display: block;
	background: white;
}
#site-navigation-wrap .master-main-menu .sub-menu li {
	margin: 0;
	position: relative;
}
#site-navigation-wrap .sub-menu a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
	height: auto;
    line-height: normal;
    white-space: nowrap;
}
#site-navigation-wrap .sub-menu a:hover {
	background: #f5f5f5;
}
#site-navigation-wrap .sub-menu .sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
	display: none;
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a:after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a {
    padding-right: 30px;
    position: relative;
}
@media (max-width: 959px) {
    #site-navigation-wrap {
        display: none;
    }
	#site-logo {
		display: table;
	}
}
@media (min-width: 960px) {
    #mobile-sidebar-menu, .mobile-menu-area {
        display: none;
    }
}


/* Header aside */
.header-aside-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 40px;
}
.header-icon {
    width: 50px;
    height: 50px;
    background: #0aadeb;
    border-radius: 50%;
    padding: 13px;
}
.header-icon img {
    -webkit-filter: brightness(100);
            filter: brightness(100);
}
.header-icon-details {
    color: white;
    line-height: 1.4;
    width: calc(100% - 50px);
    padding-left: 15px;
}
.header-icon-subheading {
    font-size: 15px;
    margin-bottom: 3px;
    color: #b1b1b1;
}
.header-icon-heading {
    white-space: nowrap;
    line-height: 1;
}
.header-icon-heading a {
    color: white;
}
@media (max-width: 1100px) {
    .ha-third {
        display: none;
    }
}
@media (max-width: 900px) {
    .header-aside-blocks {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 60px;
    }
    .header-aside-block {
        padding: 5px 0;
    }
    .header-icon-subheading {
        display: none;
    }
    .header-icon {
        width: 30px;
        height: 30px;
        padding: 7px;
    }
}
@media (max-width: 800px) {
    .header-aside-blocks {
        display: none;
    }
}



/* Mobile menu ucun custom css */
#mobile-sidebar-menu {
    width: 25px;
}
.mobil-menu-line-icon {
    position: relative;
    float: right;
	cursor: pointer;
}
.mobil-menu-line-icon span {
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background: white;
    display: block;
}
.mobil-menu-line-icon span:last-child {
    margin-bottom: 0;
}
.mobile-menu-area {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    background: #262626;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    -webkit-transition: .3s all;
         -o-transition: .3s all;
            transition: .3s all;
}
.active-mobile-menu {
	-webkit-transform: translateX(-350px);
	    -ms-transform: translateX(-350px);
	        transform: translateX(-350px);
}
.mobile-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-menu-area .sub-menu {
    display: none;
    background: #363636;
}
.mobile-menu-area a {
    font-size: 19px;
    position: relative;
    color: white;
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.035);
}
.mobile-menu-close {
    border-bottom: 1px solid rgba(255,255,255,0.035);
}
.mobile-menu-close-icon {
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: table;
}
.master-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}
.mobil-menu-children-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mobil-menu-children-icon .fa {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#mobile-sidebar-menu .sub-menu .sub-menu {
    background: #484848;
}
.mobile-search-area {
    position: relative;
    margin-bottom: 60px;
}
.mobile-search-area input {
    width: 100%;
    border: 0;
    height: 55px;
    font-size: 17px;
    padding: 0 20px;
    background: #464646;
    color: white;
}
.mobile-search-area input::-webkit-input-placeholder {
    opacity: 1;
}
.mobile-search-area button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 55px;
    height: 55px;
    font-size: 16px;
}
.mobile-menu-area .menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}



/* Menu search ucun custom css */
.master-menu-search-icon {
    cursor: pointer;
}
#master-search-area {
    position: absolute;
    right: 0;
    margin-top: 15px;
    background: #f7f7f7;
    padding: 15px;
    border: 1px solid #eee;
    display: none;
}
#master-search-area input {
    height: 45px;
    font-size: 15px;
    padding: 0 10px;
    border: 1px solid #ddd;
    width: 250px;
    border-radius: 0;
}
#master-search-area button {
    position: absolute;
    right: 15px;
}
#master-search-area button .fa {
    background: var(--main-color);
    color: white;
    height: 45px;
    line-height: 45px;
    width: 45px;
    font-size: 18px;
}
#master-search-area.visible-search {
    display: block;
}
#master-search-area input::-moz-selection {
    background: transparent;
}
#master-search-area input::selection {
    background: transparent;
}


/* Page header ucun custom css */
#page-header {
    background-image: url(/uploads/2021/09/section-curve.png);
    padding: 50px 0;
    margin-bottom: 30px;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}
#page-header:before {
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(238,247,249,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(238,247,249,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(238,247,249,1) 0%,rgba(255,255,255,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
#page-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.page-header-title {
    font-size: 28px;
    line-height: 1.3;
    padding-right: 30px;
    color: var(--second-color);
}
.breadcrumbs {
    margin-top: 5px;
}
.breadcrumbs__separator {
    margin: 0 7px;
}
@media (max-width: 767px) {
    #page-header {
        margin-bottom: 0;
    }
}



/* Menu button */
.header-button {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.menu-button a {
    background: #d6f4ff;
    color: var(--second-color);
    padding: 7px 25px;
    border-radius: 5px;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.menu-button .header-login-button {
    margin-left: 2px;
    background: var(--second-color);
    color: white;
}
.menu-button .header-registraton-button:hover {
    color: white;
    background: var(--second-color);
}
.menu-button .header-login-button:hover {
    background: #2a2a82;
}
.header-user-info {
    line-height: 1.3;
}
.header-user-info .fontbold {
    color: var(--second-color);
}



/* Index ucun custom css */
.master-posts {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
}
.master-post {
    width: 100%;
}
.master-post-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.master-post-thumbnail {
    width: 340px;
    padding-right: 40px;
    margin-bottom: 40px;
}
.master-post-thumbnail img {
    background: #eee;
    border-radius: 10px;
}
.master-post-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
}
.master-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.master-post-thumbnail a:hover .master-post-overlay {
    opacity: .3;
}
.master-post-details {
    width: calc(100% - 340px);
    padding-left: 40px;
    padding-bottom: 40px;
    border-left: 1px solid #ddd;
}
.master-post:last-child .master-post-details {
    padding-bottom: 0;
}
.master-post-title {
    position: relative;
}
.master-post-title:before {
    content: '';
    position: absolute;
    left: -47.5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    background: white;
    border: 5px solid var(--main-color);
}
.master-post-title a {
    font-size: 26px;
    line-height: 1.2;
    display: block;
    color: var(--second-color);
}
.master-post-date {
    margin-bottom: 10px;
}
.master-post-excerpt {
    margin: 15px 0;
    line-height: 1.6;
    color: #444;
    width: 500px;
    max-width: 100%;
}
.master-post-button a {
    display: table;
    border-bottom: 2px solid #ddd;
}
.master-post-button a:hover {
    border-bottom: 2px solid var(--second-color);
}
@media (min-width: 501px) and (max-width: 999px) {
    .master-post-excerpt {
        display: none;
    }
    .master-post-title {
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .master-post-title a {
        font-size: 20px;
    }
    .master-post-date {
        font-size: 15px;
    }
}
@media (min-width: 501px) and (max-width: 700px) {
    .master-post-thumbnail {
        width: 240px;
        padding-right: 30px;
    }
    .master-post-details {
        width: calc(100% - 240px);
        padding-left: 30px;
    }
    .master-post-title:before {
        left: -37.5px;
    }
}
@media (max-width: 500px) {
    .master-post-thumbnail, .master-post-details {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border-left: 0;
    }
    .master-post-thumbnail {
        margin-bottom: 20px;
    }
    .master-post-title:before {
        display: none;
    }
}



/* Footer ucun custom css */
#footer {
    background: #eef7f9;
    padding: 80px 0 60px;
}
#footer, #footer a {
    color: #6d7a8c;
}
#footer a:hover {
    color: black;
}
.footer-area {
    display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    padding-bottom: 40px;
}
.footer-block {
	width: 25%;
	padding: 0 15px 40px;
}
.footer-block h4 {
    font-size: 21px;
    margin-bottom: 25px;
    color: var(--second-color);
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
    position: relative;
}
.footer-block h4:before {
    content: '';
    height: 2px;
    background: var(--main-color);
    width: 40px;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.footer-post-inner a {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}
.footer-post-thumbnail {
    width: 70px;
    display: table-cell;
    vertical-align: top;
}
.footer-post-thumbnail img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
}
.footer-post-title {
    line-height: 1.4;
    padding-left: 15px;
}
.footer-post-heading {
    font-size: 16px;
    margin-bottom: 5px;
}
.footer-post-date {
    font-size: 13px;
    color: #555;
}
.footer-links ul {
    list-style: none;
    margin: 0;
}
.footer-links a {
    display: table;
    padding-bottom: 3px;
}
.footer-links a:before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 600;
	margin-right: 15px;
	font-size: 13px;
}
.footer-links a:last-child {
	margin-bottom: 0;
}
.footer-description {
	margin-bottom: 25px;
}
.footer-icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 15px;
}
.footer-icon-details {
    width: calc(100% - 40px);
    line-height: 1.3;
}
.footer-icon {
    width: 60px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    -webkit-box-shadow: 0 0 20px rgb(69 69 162 / 19%);
            box-shadow: 0 0 20px rgb(69 69 162 / 19%);
}
.footer-icon-details {
    width: calc(100% - 40px);
    line-height: 1.3;
    padding-left: 15px;
}
#footer .footer-icon-heading a {
    font-size: 22px;
    color: black;
}
@media (min-width: 501px) and (max-width: 999px) {
	.footer-block {
		width: 50%;
	}
}
@media (max-width: 500px) {
	.footer-block {
		width: 100%;
	}
}



/* Footer bottom ucun custom css */
.master-footer-bottom {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    position: relative;
    -webkit-box-shadow: 0 9px 30px 0 rgb(26 47 106 / 7%);
            box-shadow: 0 9px 30px 0 rgb(26 47 106 / 7%);
}
.footer-scroll-top {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--second-color);
    border-radius: 10px;
    padding: 16px;
    top: -20px;
    cursor: pointer;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.footer-scroll-top:hover {
    background: var(--main-color);
}
@media (max-width: 767px) {
    .master, .studio {
        width: 100%;
        text-align: center;
    }
    .footer-scroll-top {
        top: calc(100% - 15px);
    }
}


/* Scroll to top ucun custom css */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
}
#site-scroll-top .fa {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--main-color);
    color: white;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
    font-size: 26px;
    text-align: center;
}
#site-scroll-top .fa:hover {
    background: var(--second-color);
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 20px;
    }
}


/* social sebekeler ucun custom css */
/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
}
.social-network-item {
    padding: 0 3px;
}
.colorfull-social .social-networks a {
    color: white!important;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.colorfull-social .facebook-social a {
    background: #6f6fd2;
}
.colorfull-social .instagram-social a {
    background: #bb8181;
}
.colorfull-social .youtube-social a {
    background: #e00000;
}
.colorfull-social .whatsapp-social a {
	background: #00da00;
}
.colorfull-social .twitter-social a {
	background: #55adee;
}
.colorfull-social .telegram-social a {
	background: #0088cc;
}
.colorfull-social .linkedin-social a {
	background: #0077b5;
}
.colorfull-social .tiktok-social a {
	background: #333333;
}
.colorfull-social .social-networks a:hover {
	background: #555;
}



/* Axtaris neticeleri ucun custom css */
.search-title a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: black;
}


/* Social share */
.master-social-share-area {
    margin-bottom: 40px;
}
.master-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.master-social-share-area ul {
    padding: 0;
    margin: 0 -5px;
    list-style: none;
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.master-social-share-area.share-with-label ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.master-social-share-area:not(.share-with-label) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.master-social-share-area:not(.share-with-label) .master-title {
    border-bottom: 0;
    margin: 0;
    padding: 0 15px 0 0;
}
.master-social-share-area.share-with-label li {
    width: 20%;
}
.master-social-share-area li {
    padding: 0 5px;
    text-align: center;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.master-social-share-area a {
    display: block;
}
.master-social-share-area:not(.simple-share-area) a {
    color: white;
}
.master-social-share-area.simple-share-area a {
    color: black;
}
.master-social-share-area.share-with-label a {
    padding: 5px 15px;
}
.master-social-share-area:not(.share-with-label) a {
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.share-with-label li i {
    margin-right: 10px;
}
.simple-share-area.share-with-label a {
    border: 1px solid #eee;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a {
    background: #00aced;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
    background: #0093cb;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a {
    background: #3b5998;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
    background: #324b80;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a {
    background: #0088cc;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
    background: #3e659c;
}
.master-social-share-area:not(.simple-share-area) .email-share a {
    background: #e40303;
}
.master-social-share-area:not(.simple-share-area) .email-share a:hover {
    background: #ca0303;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
    background: #30d244;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
    background: #25b938;
}
@media (min-width: 960px) {
    .whatsapp-mobile-share {
        display: none;
    }
}
@media (max-width: 959px) {
    .whatsapp-desktop-share {
        display: none;
    }
}
@media (min-width: 960px) and (max-width: 1050px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (min-width: 270px) and (max-width: 767px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (max-width: 269px) {
    .master-social-share-area li {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* Post navigation ucun custom css */
#post-navigation-wrap {
    background: #eee;
    padding: 20px 0;
}
.post-navigation {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -15px;
}
.next-previous-post {
    padding: 5px 15px;
}
.no-prev-es-post {
    display: table;
    margin-left: auto;
}
.post-navigation a {
    color: black;
    position: relative;
	width: 50%;
}
.next-previous-heading {
    display: table;
    background-color: var(--main-color);
    color: white;
    padding: 3px 20px;
    margin-bottom: 10px;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.post-navigation a:hover .next-previous-heading {
    background: var(--second-color);
}
.next-post .next-previous-heading {
    margin-left: auto;
    margin-right: 0;
}
.next-post {
    text-align: right;
    margin-left: auto;
}
.prev-post .fa {
    margin: 0 5px 0 -5px;
}
.next-post .fa {
    margin: 0 -5px 0 5px;
}
.prev-post-no {
    display: table;
    margin-right: 0;
    margin-left: auto;
}
@media (max-width: 767px) {
	.post-navigation a {
		width: 100%;
	}
}



/* Wordpress default gallery css */
.ms-gallery {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
}
.ms-image-9 {
    width: calc(100% / 9);
}
.ms-image-8 {
    width: calc(100% / 8);
}
.ms-image-7 {
    width: calc(100% / 7);
}
.ms-image-6 {
    width: calc(100% / 6);
}
.ms-image-5 {
    width: 20%;
}
.ms-image-4 {
    width: 25%;
}
.ms-image-3 {
    width: 33.3%;
}
.ms-image-2 {
    width: 50%;
}
.ms-image-1 {
    width: 100%;
}
.ms-image {
    padding: 0 10px 20px;
    margin: 0;
}
.ms-image a {
    display: block;
}
.ms-image img {
    background: #eee;
}
figure.image {
    margin: 0 0 20px;
}
.image figcaption {
    font-style: italic;
    margin-top: 5px;
}
.ms-gallery-tools {
    display: none;
}
@media (max-width: 340px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-image {
        width: 100%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 341px) and (max-width: 767px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-image {
        width: 50%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 767px) and (max-width: 959px) {
    .ms-image {
        width: 33.3%!important;
    }
}



/* Sidebar ucun custom css */
.master-sidebar-title {
    margin-bottom: 25px;
    color: var(--main-color);
    font-size: 22px;
}
.sidebar-post {
    display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px;
    color: black;
    line-height: 1.4;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.sidebar-post-thumbnail {
    width: 60px;
}
.sidebar-post-thumbnail img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
}
.sidebar-post-details {
    width: calc(100% - 60px);
    padding-left: 15px;
}
.sidebar-post:hover .sidebar-post-title {
	color: var(--main-color);
}
.sidebar-post-title {
    font-size: 14px;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.sidebar-thumbnail {
    width: 60px;
    height: 60px;
}
.sidebar-details {
    padding-left: 20px;
	width: calc(100% - 60px);
}
.sidebar-post-date {
    opacity: .7;
    font-size: 13px;
	margin-top: 3px;
}
.master-widget {
	margin-bottom: 40px;
}
.widgettitle {
    display: none;
}
.master-widget ul {
    margin: -8px 0 0;
    list-style: none;
}
.master-widget li {
    border-bottom: 1px solid #eee;
    color: #999;
}
.master-widget ul a {
    color: black;
    padding: 8px 0;
    display: inline-block;
}
.master-widget ul a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 10px;
}
.widget-archives {
    margin-top: 7px;
}
.widget-archives a {
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 7px;
    padding-top: 7px;
    color: black;
}
.widget-archives a:hover {
    color: var(--main-color);
}
.widget-archives a:before {
    content: '\f114';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 15px;
    color: var(--second-color);
    font-size: 14px;
}
.sidebar-search {
    position: relative;
}
.sidebar-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    color: black;
    padding: 0 15px;
    font-size: 15px;
}
.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--main-color);
    color: white;
}


/* Single post ucun custom css */
.single-post h1 {
    margin-bottom: 30px;
}
.single-post-thumbnail {
    margin-bottom: 30px;
}
.single-post-thumbnail img {
    background: #eee;
	width: auto;
	max-height: 350px;
}
.single-post-meta {
    margin: 10px 0 25px;
}
.published-date {
    color: var(--second-color);
}
.single-post-date, .single-post-meta a {
    color: #666;
}
.single-post-date, .single-post-category, .single-post-author {
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
}
.single-post-date:before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 10px;
    color: black;
}
.single-post-category:before {
    content: '\f044';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 5px;
}
.single-post-author:before {
    content: '\f2be';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 5px;
}
.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}
.single-content img {
	width: auto;
	max-height: 350px;
}
img.aligncenter {
    margin: 0 auto;
}
.single-content {
    line-height: 1.8;
    margin-bottom: 40px;
}
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    text-align: left;
    margin-bottom: 10px;
}
.single-content ul, .single-content ol {
    text-align: left;
}
.master-embed {
    position: relative;
    padding-top: 56%;
}
.master-embed iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}



/* Muellif ucun custom css */
.single-author-area {
    margin-top: 40px;
}
.single-author {
    display: table;
    width: 100%;
}
.single-author-block {
    display: table-cell;
    vertical-align: top;
}
.single-author-first {
    width: 150px;
}
.single-author-second {
    width: calc(100% - 150px);
    padding-left: 25px;
    padding-top: 5px;
}
.single-author img {
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
       object-fit: cover;
}
.single-author-name {
    font-size: 20px;
}
.single-author-profession {
    font-size: 17px;
    margin-bottom: 10px;
}
.single-author-description {
    margin-bottom: 10px;
}
.no-image-author:before {
    content: '\f2be';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    width: 150px;
    height: 150px;
    background: #eee;
    border: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 76px;
    color: #999;
}
@media (max-width: 550px) {
	.single-author-block {
		display: block;
	}
	.single-author-second {
		width: 100%;
		padding-left: 0px;
		padding-top: 15px;
	}
}


/* Youtube ucun custom css */
.youtube-videos {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
}
.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}
.youtube-image-area {
    position: relative;
}
.youtube-image {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 56.26%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
}
.youtube-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.youtube-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    cursor: pointer;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: rgba(22,22,22,0.65);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.youtube-image-area:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.youtube-image-area:hover .youtube-play-icon {
    opacity: 1;
}
.play-video:before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    color: white;
    font-size: 18px;
}
.youtube-iframe {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    z-index: 2;
}
.youtube-video iframe {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.youtube-video h3 {
    margin: 0;
    font-size: 15px;
}
.youtube-heading a {
    display: block;
    margin-top: 10px;
    line-height: 1.35;
    color: black;
    font-weight: 600;
    font-family: Arial,Helvetica,sans-serif;
}
.youtube-video img, .youtube-video span{
    position:absolute;
    width:100%;top:0;
    bottom:0;margin:auto
}
.youtube-video span {
    height:1.5em;
    text-align:center;
    font:48px/1.5 sans-serif;
    color:white;
    text-shadow:0 0 0.5em black
}
.next-videos {
    width: 100%;
    padding: 0 15px;
}
.next-video-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.next-video-button:hover {
    background: var(--second-color);
}
.next-video-button::-moz-selection {
    background: transparent;
}
.next-video-button::selection {
    background: transparent;
}
.loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}
.youtube-videos .youtube-loading:after {
    content: "";
    width: 45px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid rgba(255,255,255,.3);
    border-left-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    margin-left: -22.5px;
    margin-top: -22.5px;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease;
    -webkit-transition: opacity 0s ease;
    opacity: 1;
    -webkit-animation: wd-rotate 550ms infinite linear;
    animation: wd-rotate 550ms infinite linear;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
}
.youtube-videos .youtube-loading:before {
	visibility: hidden;
}
.youtube-videos .youtube-loading {
	color: transparent!important;
	position: relative;
}
@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}
@media (min-width: 501px) and (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}
@media (min-width: 851px) and (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}
@media (max-width: 959px) {
	.youtube-icon, .youtube-play-icon {
		opacity: 1;
	}
	.play-video:before {
	    font-size: 22px;
	}
}


/* Instagram ucun custom css */
.instagram-images {
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -10px;
}
.instagram-image {
	width: 25%;
	padding: 0 10px 20px;
}
.instagram-ratio {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100%;
}
.instagram-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    overflow: hidden;
    background-color: #eee;
}
.instagram-image-link:hover .instagram-image-details {
	opacity: 1;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}
.instagram-image-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
	opacity: 0;
}
.instagram-image-link:hover:before {
	opacity: 1;
}
.instagram-image-detallar {
    color: white;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    font-weight: 600;
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}
.instagram-icon {
    margin: 0 3px;
}
.instagram-icon:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 600;
	margin-right: 7px;
}
.next-images {
    width: 100%;
    padding: 0 15px;
}
.next-image-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.next-image-button:hover {
    background: var(--second-color);
}
.next-image-button::-moz-selection {
    background: transparent;
}
.next-image-button::selection {
    background: transparent;
}
.instagram-nav-button {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: white;
    z-index: 1;
    font-size: 36px;
    text-shadow: 0 0 15px black;
    cursor: pointer;
    -webkit-user-select: none;        
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.instagram-button-prev {
    left: 0;
}
.instagram-button-next {
    right: 0;
}
.instagram-carousel {
    position: relative;
}
.instagram-carousel, .instagram-carousel .swiper-wrapper, .instagram-carousel .swipet-slide {
    height: 100%;
}
.instagram-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.instagram-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.instagram-video:hover .instagram-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
@media (min-width: 601px) and (max-width: 999px) {
	.instagram-image {
		width: 33.3%;
	}
}
@media (max-width: 600px) {
	.instagram-image {
		width: 50%;
	}
}



/* Error 404 ucun custom css */
.error404-content {
    text-align: center;
    padding: 20px 0;
}
.error404-content h1 {
    font-size: 44px;
}


/* Default input */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: 15px;
    background: white;
    border-radius: var(--border-radius);
}
textarea {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid #ddd;
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
    border-radius: var(--border-radius);
}
input[type=radio] {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 0;
    left: 0;
    border-radius: var(--border-radius);
}
input[type=radio]:checked {
    border-color: var(--main-color);
}
input[type=radio]:checked:before {
    content: '';
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type=radio] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
}
input[type=checkbox] {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 2px;
    left: 0;
    margin: 0;
    cursor: pointer;
    border-radius: var(--border-radius);
}
input[type=checkbox]:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}
input[type=checkbox]:checked:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}
input[type=checkbox] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
    margin-bottom: 0;
}
input[type=file]::file-selector-button {
    background: var(--light-color);
    border: 1px solid #ddd;
    padding: 5px 15px;
}
sup, sub {
    font-size: 12px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
select {
    -webkit-appearance: none;
    background: transparent;
    background-image: url(/uploads/extra/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 15px;
    background-size: 18px;
    cursor: pointer;
    padding-right: 30px;
}


/* Form */
.grecaptcha-badge {
    display: none;
}
.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -15px;
}
.form-group .form-element {
    padding: 0 15px 15px;
}
.form-100 {
    width: 100%;
}
.form-85 {
    width: 85%;
}
.form-50 {
    width: 50%;
}
.form-33 {
    width: 33.3%;
}
.form-25 {
    width: 25%;
}
.form-15 {
    width: 15%;
}
.form-element {
    padding-bottom: 15px;
	position: relative;
}
.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
}
.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}
.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fsf-button {
    border: 1px solid #ddd;
    background: #eee;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
}
.faf-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.faf-items label {
    width: auto;
}
.faf-item {
    padding: 0 5px;
}
.faf-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.faf-item i {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    line-height: 80px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    cursor: pointer;
}
.form-result:not(:empty) {
    margin-top: 20px;
}
.form-simple-file input, .form-advanced-file input {
    display: none;
}
.form-choices {
    display: flex;
    flex-wrap: wrap;
}
.form-choices .form-choice {
    padding-right: 30px;
}
.form-choice {
    position: relative;
}
.alert {
    padding: 10px 15px 10px 55px;
    text-align: left;
    min-height: 42px;
	position: relative;
	border-radius: var(--border-radius);
}
.alert-danger {
    color: #8d423b;
    background-color: #ffe2df;
    border-color: #ffd7d3;
}
.alert-success {
    color: #1d6944;
    background-color: #d4ffd3;
    border-color: #c3ecd8;
}
.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--border-radius);
}
.alert-danger:before {
    content: "\f071";
    background: #da6f64;
    color: white;
}
.alert-success:before {
    content: '\f058';
    background: #48c346;
    color: white;
}
@media (max-width: 650px) {
	.form-50, .form-33, .form-25 {
		width: 100%;
	}
}


/* ACF Map ucun custom css */
.acf-map-area {
    position: relative;
}
.acf-map {
	height: 450px;
	background: #eee;
}
.map-details {
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.map-address {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 3px 0 5px;
}
.gm-style-pbc {
    background-color: transparent;
}
.gm-style-moc {
    background-color: transparent;
}
.gm-style-mot {
	font-size: 0;
}
.direction {
    color: #111;
	background: white;
    padding: 5px 15px;
    border-radius: 5px;
	display: block;
    -webkit-box-shadow: 0 0 10px #b5b5b5;
            box-shadow: 0 0 10px #b5b5b5;
}
.direction:before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 10px;
}
.gm-style-pbt {
	font-size: 0;
}



/* Animations ucun custom css */
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* Comments ucun custom css */
.default-comment-form-area {
    display: none;
}
.comment-reply-area {
    margin-bottom: 20px;
}
#comments {
    padding-bottom: 20px;
}
.comment-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.comment-list {
    list-style: none;
    margin: 0;
}
.comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}
.comment-author, .comment-block {
    display: table-cell;
    vertical-align: top;
}
.comment-author {
    width: 70px;
    padding-right: 10px;
}
.comment-author .fa {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 30px;
    color: #999;
}
.comment-author img {
    border: 1px solid #ddd;
    padding: 3px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
}
.comment-block {
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: calc(100% - 70px);
}
.comment-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.date.float-right {
    color: #a7a7a7;
}
.comment-text p {
    margin-bottom: 5px;
}
.comment-reply {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
    display: inline-block;
}
.comments .children {
    margin: 0 0 0 20px;
    list-style: none;
}
.comments .children > .comment {
    margin-bottom: 0;
}
.byuser .comment-block {
    background: #f5f5f5;
}
.comment-reply-heading-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}
.comment-reply-heading, .comment-reply-cancel {
    padding: 5px 0;
}
.comment-reply-cancel {
    text-decoration: underline;
    color: red;
    cursor: pointer;
    font-size: 14px;
}
.logged-user-comment-author {
    margin-bottom: 10px;
}
.comment-name {
    padding-right: 5px;
}
.comment-rating .fa {
    color: orange;
    font-size: 13px;
}
.comment .loading:after {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid rgb(77 77 77 / 42%);
    border-left-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    margin-top: -7.5px;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease;
    -webkit-transition: opacity 0s ease;
    opacity: 1;
    -webkit-animation: wd-rotate 550ms infinite linear;
    animation: wd-rotate 550ms infinite linear;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
    margin-left: 10px;
}
.comment .loading:before {
	visibility: hidden;
}
.comment .loading {
	color: transparent!important;
	position: relative;
}
.default-comment-form {
    width: 100%;
    margin-top: 15px;
}
@-webkit-keyframes wd-rotate {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes wd-rotate {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@media (max-width: 600px) {
    .comment-author {
        width: 40px;
        padding-right: 5px;
    }
    .comment-author img {
        width: 35px;
        height: 35px;
    }
}


/* Rating ucun custom css */
.form-rating {
    margin-bottom: 5px;
}
.form-element-rating {
    display: inline-block;
    vertical-align: middle;
}
.rating {
    border: none;
    width: 100%;
    padding: 0;
}
.rating > input { 
    display: none;
} 
.rating > label:before { 
    margin: 0 2px;
    font-size: 1.25em;
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    display: inline-block;
    content: "\f005";
}
.rating > .half:before { 
    content: "\f089";
    position: absolute;
}
.rating > label { 
    color: #ddd; 
    float: right; 
    cursor: pointer;
	width: auto;
}
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
} /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { 
    color: #FFED85;
} 


/* Sekiller ucun custom css */
.master-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.master-image {
    width: 25%;
    padding: 0 10px 20px;
}
.master-image a {
    display: block;
    overflow: hidden;
    position: relative;
}
.master-image img {
	background: #eee;
}
.master-image-overlay {
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.master-image a:hover .master-image-overlay {
    opacity: .3;
}
@media (max-width: 350px) {
	.master-image {
		width: 100%;
	}
}
@media (min-width: 351px) and (max-width: 767px) {
	.master-gallery {
		margin: 0 -5px;
	}
	.master-image {
		width: 50%;
		padding: 0 5px 10px;
	}
}
@media (min-width: 768px) and (max-width: 999px) {
	.master-image {
		width: 33.3%;
	}
}



/* Table ucun custom css */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    margin: 20px 0;
	text-align: left;
}
th, td {
    border: 1px solid #ddd;
    padding: 5px 15px;
}
tr:nth-child(odd) {
    background: #f5f5f5;
}



/* Toolbar ucun custom css */
.toolbar-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000000;
}
.toolbar-area a {
    position: absolute;
    color: white;
    border-radius: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
	font-size: 20px;
	display: block;
}
.toolbar-phone {
    background: #6565ff;
    bottom: 0;
}
.toolbar-whatsapp {
    background: #45c71b;
    bottom: 55px;
}
@media (min-width: 768px) {
	.toolbar-area {
	    display: none;
	}
}



/* Loading ucun custom css */
.loading:after {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,.3);
    border-left-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    margin-left: -7.5px;
    margin-top: -7.5px;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease;
    -webkit-transition: opacity 0s ease;
	opacity: 1;
    -webkit-animation: loading 450ms infinite linear;
    animation: loading 450ms infinite linear;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
}
.loading:before {
	visibility: hidden;
}
.loading {
	color: transparent!important;
	position: relative;
}
@-webkit-keyframes loading {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loading {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* QR code ucun custom css */
.qr-code img {
    width: 150px;
}



/* Swiper js ucun custom css */
.master-slider {
    height: 0;
    overflow: hidden;
}
.master-slider.swiper-container-initialized {
    height: auto;
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.swiper-slide img {
    background: #eee;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
            perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
}
/* Preloader */
:root {
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
            animation: swiper-preloader-spin 1s infinite linear;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
            transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Hide admin bar ucun custom css */
.hide-admin-bar, .show-admin-bar {
    position: fixed;
    top: 32px;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}
.show-admin-bar {
    top: 0;
}


/* Pagination ucun custom css */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}
.page-item {
    display: inline-block;
}
.page-item a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #eee;
    margin-right: 5px;
    color: black;
}
.page-item.active a, .page-item a:hover {
    background: var(--main-color);
    color: white;
}


/* Fancybox ucun custom css */
body.compensate-for-scrollbar {
    overflow: unset!important;
}


/* Topbar */
#topbar-wrap {
    background: var(--main-color);
    color: white;
}
.topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -15px;
}
.topbar-block {
    padding: 5px 15px;
}
.topbar .social-networks a {
    color: white;
    margin: 0 10px;
}
@media (max-width: 600px) {
    .topbar {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}


/* Contact ucun custom css */
.post-id-6 main {
    background: #eef7f9;
}
.post-id-6 #primary {
    padding-bottom: 0;
}
.master-heading-area {
    margin-bottom: 30px;
}
.master-heading {
    font-size: 32px;
    line-height: 1.3;
}
.master-center-heading {
    text-align: center;
}
.contact-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.contact-block {
    padding: 0 25px 50px;
}
.contact-first {
    width: 33.3%;
}
.contact-second {
    width: 66.6%;
}
.contact-elements {
    margin-top: 15px;
}
.contact-icon-box {
    padding-top: 30px;
    padding-bottom: 20px;
}
.contact-icon-box:first-child {
    padding-top: 0;
}
.contact-icon-box:last-child {
    padding-bottom: 0;
}
.contact-icon-heading {
    position: relative;
    padding-left: 80px;
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1;
}
.contact-icon-heading:before {
    content: '';
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-shadow: 0 0 20px rgb(69 69 162 / 19%);
            box-shadow: 0 0 20px rgb(69 69 162 / 19%);
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.contact-phone .contact-icon-heading:before {
    background-image: url(/uploads/2021/09/001-phone-with-wire.svg);
}
.contact-email .contact-icon-heading:before {
    background-image: url(/uploads/2021/09/003-chatting.svg);
}
.contact-address .contact-icon-heading:before {
    background-image: url(/uploads/2021/09/002-maps-and-flags.svg);
}
.contact-icon-details {
    color: #696969;
}
.contact-icon-details a {
    color: black;
}
.contact-form-area .form-element input, .contact-form-area .form-element select {
    background: white;
    border-radius: 30px;
}
@media (min-width: 768px) and (max-width: 999px) {
    .contact-first {
        width: 43%;
    }
    .contact-second {
        width: 57%;
    }
}
@media (max-width: 767px) {
    .contact-first, .contact-second {
        width: 100%;
    }
}


/* Messages ucun custom css */
.messages-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px -25px 0;
}
.message-block {
    padding: 0 25px;
}
.message-first {
    width: 33.3%;
}
.message-second {
    width: 66.6%;
}
.message-descripion {
    color: #696969;
    margin-top: 30px;
    line-height: 1.7;
}
.contact-form-area {
    width: 700px;
    margin-left: auto;
    max-width: 100%;
}
@media (min-width: 768px) and (max-width: 999px) {
    .message-first {
        width: 43%;
    }
    .message-second {
        width: 57%;
    }
}
@media (max-width: 767px) {
    .message-first, .message-second {
        width: 100%;
    }
    .message-first {
        margin-bottom: 40px;
    }
}



/* Slides */
.slides-area {
    background: #eee;
    height: 500px;
    overflow: hidden;
}
.home-slider, .home-slider .swiper-wrapper {
    height: 100%;
}
.home-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.slides-area .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 60px;
}
.slide-heading {
    color: white;
    font-size: 52px;
    background: var(--second-color);
    display: table;
    padding: 5px 25px;
    opacity: 0;
    line-height: 1.2;
}
.slide-subheading {
    background: black;
    color: white;
    padding: 7px 20px;
    margin-top: 8px;
    font-size: 22px;
    display: table;
    margin-left: 15px;
    opacity: 0;
    line-height: 1.3;
    position: relative;
    max-width: calc(100% - 80px);
}
.slide-link-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    line-height: 50px;
    background: white;
    color: #0aadeb;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 100%;
}
.swiper-navigation {
    z-index: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
}
.swiper-nav {
    width: 70px;
    height: 70px;
    background: rgb(0 0 0 / 41%);
    border-radius: 50%;
    color: white;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.swiper-left {
    left: 20px;
}
.swiper-right {
    right: 20px;
}
.swiper-nav:hover {
    background: var(--second-color);
}
.swiper-pagination {
    display: table;
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
}
.swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    background: white;
    display: inline-block;
    margin: 0 6px;
    opacity: .6;
    border-radius: 5px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-slide-active .slide-heading, .static-slide .slide-heading {
    -webkit-animation-name: animate;
            animation-name: animate;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.swiper-slide-active .slide-subheading, .static-slide .slide-subheading {
    -webkit-animation-name: animate;
            animation-name: animate;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: .3s;
            animation-delay: .3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
@-webkit-keyframes animate {
    from {
        opacity: 0;
        -webkit-transform: translateY(80px);
                transform: translateY(80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}
@keyframes animate {
    from {
        opacity: 0;
        -webkit-transform: translateY(80px);
                transform: translateY(80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}
@media (max-width: 800px) {
    .swiper-navigation {
        display: none;
    }
}
@media (max-width: 799px) {
    .slides-area {
        height: 300px;    
    }
    .slides-area .container {
        padding-bottom: 20px;
    }
    .slide-heading {
        font-size: 30px;
    }
    .slide-subheading {
        font-size: 17px;
    }
    .swiper-pagination {
        bottom: 0;    
    }
}
@media (min-width: 800px) and (max-width: 999px) {
    .slides-area {
        height: 400px;
    }
}


/* Home about */
.home-about-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 80px 0;
}
.home-about-first {
    width: 350px;
}
.home-about-second {
    width: calc(100% - 350px);
}
.home-about-block h2 {
    color: var(--second-color);
    font-size: 44px;
    line-height: 1;
}
.home-about-heading {
    font-size: 24px;
}
.home-about-button a {
    margin-top: 20px;
    color: black;
    display: table;
}
.home-about-button a:after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    width: 45px;
    height: 45px;
    line-height: 31px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    background: #0aadeb;
    color: white;
    font-size: 18px;
    text-align: center;
    border: 7px solid #a7e4fb;
}
@media (max-width: 850px) {
    .home-about-first {
        width: 300px;
    }
    .home-about-second {
        width: calc(100% - 300px);
    }
}
@media (max-width: 767px) {
    .home-about-first, .home-about-second {
        width: 100%;
    }
    .home-about-second {
        padding-top: 30px;
    }
    .home-desktop-button {
        display: none;
    }
}
@media (min-width: 768px) {
    .home-mobile-button {
        display: none;
    }
}



/* Features */
.features-area {
    background: #f8f8f9;
    padding: 80px 0 50px;
}
.features-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.features-heading-block {
    width: 50%;
    padding: 0 15px 30px;
}
.fh-second {
    color: #6d7a8c;
}
.features-heading-block h3 {
    color: var(--second-color);
    font-size: 38px;
    width: 400px;
    max-width: 100%;
    line-height: 1.2;
}
.feature-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -15px;
}
.feature-block {
    width: 33.3%;
    padding: 0 15px 30px;
}
.feature-thumbnail img {
    border-radius: 10px;
}
.feature-details {
    background: white;
    -webkit-box-shadow: 0 9px 24px 0 rgb(26 47 106 / 5%);
            box-shadow: 0 9px 24px 0 rgb(26 47 106 / 5%);
    padding: 30px;
    border-radius: 10px;
    margin: -25px 20px 0;
    z-index: 1;
    position: relative;
    text-align: center;
}
.feature-details h2 {
    color: var(--second-color);
    font-size: 22px;
    margin-bottom: 15px;
}
.feature-description {
    color: #6d7a8c;
    line-height: 1.4;
}
@media (max-width: 800px) {
    .features-heading-block {
        width: 100%;
    }
}
@media (min-width: 501px) and (max-width: 900px) {
    .feature-block {
        width: 50%;
    }
}
@media (min-width: 901px) and (max-width: 1050px) {
    .feature-details {
        background: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        padding: 0;
        margin: 20px 0 0;
    }
}
@media (min-width: 501px) and (max-width: 700px) {
    .feature-details {
        background: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        padding: 0;
        margin: 20px 0 0;
    }
}
@media (max-width: 380px) {
    .feature-details {
        background: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        padding: 0;
        margin: 20px 0 0;
    }
}
@media (max-width: 500px) {
    .feature-block {
        width: 100%;
    }
}


/* Callout */
.callout-area {
    background: var(--main-color);
    color: white;
    padding: 40px 0;
    margin-bottom: -60px;
}
.callout-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.callout-first {
    width: 75%;
}
.callout-second {
    width: 25%;
    position: relative;
}
.callout-second:before {
    content: '';
    background-image: url(/uploads/2021/09/idea.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: calc(100% + 80px);
    display: block;
    position: absolute;
    top: -40px;
    left: -80px;
    opacity: .2;
}
.callout-description {
    font-size: 22px;
    position: relative;
    padding-left: 80px;
    line-height: 1.3;
}
.callout-description:before {
    content: '';
    background-image: url(/uploads/2021/09/talk.svg);
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: white;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 20px;
    -webkit-box-shadow: 0 0 20px rgb(69 69 162 / 19%);
            box-shadow: 0 0 20px rgb(69 69 162 / 19%);
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.callout-button a {
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 35px;
    color: white;
    display: table;
    margin-left: auto;
    line-height: 1.3;
    text-align: center;
}
.callout-button a:hover {
    background: white;
    color: black;
}
@media (max-width: 650px) {
    .callout-first {
        width: 100%;
    }
    .callout-second {
        width: 100%;
    }
    .callout-button a {
        margin-right: auto;
        margin-top: 30px;
    }
}
@media (max-width: 400px) {
    .callout-description {
        padding-left: 0;
        text-align: center;
    }
    .callout-description:before {
        position: relative;
        display: table;
        margin: 0 auto 20px;
        top: 0;
        left: 0;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}



/* Home posts */
.home-posts-area {
    padding: 80px 0 50px;
}
.home-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
}
.home-post {
    width: 50%;
    padding: 0 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.home-post-thumbnail {
    width: 40%;
}
.home-post-thumbnail img {
    border-radius: 10px;
}
.home-post-details {
    width: 60%;
    padding-left: 30px;
}
.home-post .master-post-date {
    margin-bottom: 5px;
    font-size: 15px;
}
.home-post .master-post-title a {
    font-size: 20px;
    margin-bottom: 5px;
}
.home-post .master-post-button a {
    display: table;
    border-bottom: 2px solid #ddd;
    font-size: 15px;
}
.home .master-post-title:before {
    display: none;
}
@media (max-width: 900px) {
    .home-post {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .home-post-thumbnail, .home-post-details {
        width: 100%;
        padding-left: 0;
    }
    .home-post-thumbnail {
        padding-bottom: 15px;
    }
}
@media (max-width: 500px) {
    .home-post {
        width: 100%;
    }
}


/* Exams */
.post-type-archive-imtahan .master-post-title {
    position: relative;
    margin-top: 15px;
}
.exam-badge {
    display: table;
    background: #e41010;
    border-radius: 4px;
    color: white;
    padding: 5px 15px;
    line-height: 1.3;
    font-size: 15px;
}




/* Mobile sticky phone ucun custom css */
.mobile-sticky-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}
.mobile-sticky-elements a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}
.mobile-sticky-phone {
    -webkit-box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
            box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
    background: #7d8cff;
}
.mobile-sticky-whatsapp {
    -webkit-box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
            box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
    background: #25ce25;
}
@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}


/* Single exam */
.single-exam-block h1 {
    margin-bottom: 30px;
}
.single-exam-content {
    width: 700px;
    max-width: 100%;
}
.exam-button {
    margin-top: 30px;
    margin-left: -20px;
}
.exam-button .header-registraton-button {
    background: white;
}
.exam-time-block {
    margin-bottom: 30px;
}
.exam-guest-note {
    background: #eef7f9;
    border-radius: 10px;
    padding: 40px;
}
.warning-icon {
    width: 50px;
    margin-bottom: 20px;
}
.single-exam-text {
    margin-bottom: 30px;
}
#exam {
    margin-top: 20px;
}
#exam .form-submit {
    margin-top: 20px;
}
.exam-success-message {
    display: none;
}
.exam-success-message-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.exam-success-icon {
    width: 60px;
}
.exam-success-text {
    width: calc(100% - 60px);
    padding-left: 20px;
    line-height: 1.4;
}
.exam-success-message-blocks a {
    text-decoration: underline;
}


/* Stat blocks */
.stat-area {
    background-image: url(/uploads/2021/09/cspt-row-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 40px;
    color: white;
}
.stat-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -15px;
}
.stat-block {
    width: 50%;
    padding: 0 15px;
}
.stat-main-heading {
    font-size: 38px;
    line-height: 1.2;
    margin-top: 10px;
    padding-bottom: 40px;
}
.stat-inner-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.stat-inner-block {
    width: 50%;
    padding: 0 15px 40px;
    text-align: center;
}
.stat-number {
    font-size: 44px;
    line-height: 1;
}
.stat-heading {
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .stat-block {
        width: 100%;
    }
}


/* Exam results */
.er-headings {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}



/* Master buttons */
.master-button, .master-outline-button, .master-color-button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    position: relative;
    border-radius: 6px;
    text-transform: uppercase;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.master-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.master-button:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}
.master-outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}
.master-outline-button:hover {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.master-color-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.master-color-button:hover {
    background: #f75848;
    border: 1px solid #f75848;
}
.master-wide-button {
    width: 100%;
}



/* Quiz */
.quiz-blocks {
    margin-bottom: 40px;
}
.quiz-main-heading {
    color: var(--second-color);
    font-size: 26px;
    margin-bottom: 15px;
}
.quiz-subjects {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -15px;
}
.quiz-subject {
    padding: 0 15px 15px;
    width: 25%;
}
.quiz-subject a {
    height: 60px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgb(219 245 255) 100%);
    color: black;
    line-height: 1.1;
    position: relative;
    border-radius: 5px;
}
.quiz-subject a:after {
    content: '\e912';
    font-family: 'Feather';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 15px;
}
@media (max-width: 1050px) {
    .quiz-subject {
        width: 33.3%;
    }
}
@media (max-width: 850px) {
    .quiz-subject {
        width: 50%;
    }
}
@media (max-width: 550px) {
    .quiz-subject {
        width: 100%;
    }
    .quiz-subject a {
        height: 40px;
        font-size: 16px;
    }
}



/* Subjects */
.subject {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    user-select: none;
}
.subject-title {
    background: linear-gradient(to left, rgba(255,255,255,0) 0%,rgb(219 245 255) 100%);
    position: relative;
    padding: 10px 35px 10px 15px;
    cursor: pointer;
}
.subject-title:after {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--second-color);
}
.subject-prefix {
    display: inline-block;
    background: var(--second-color);
    color: white;
    border-radius: 5px;
    padding: 3px 15px;
    font-size: 15px;
    margin-right: 15px;
}
.subject-price {
    margin-bottom: 30px;
}
.subject-quizes {
    display: none;
    padding: 15px 20px;
    background: #d6f4ff;
}
.active.subject-title {
    background: var(--second-color);
    color: white;
}
.active .subject-prefix {
    background: var(--main-color);
}
.active.subject-title:after {
    color: white;
}
.subject-quiz a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: black;
    padding: 5px 15px;
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
}
.subject-quiz-button-area {
    display: flex;
    align-items: center;
}
.subject-quiz-button {
    background: #14bb14;
    color: white;
    padding: 2px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 10px;
}
.subject-quiz-price {
    background: #e5eff2;
    border-radius: 5px;
    padding: 0 10px;
    font-family: Arial;
    font-size: 15px;
    height: 26px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--second-color);
}
@media (max-width: 767px) {
    .subject-prefix {
        display: none;
    }
}
@media (max-width: 959px) {
    .subject-quizes {
        column-count: 1;
    }
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin-bottom: 30px;
}
.notify-block-icon:before {
    font-size: 140px;
    color: #ddd;
    display: table;
    margin: 0 auto 30px;
    line-height: 1;
}
.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
}
.notify-block-description {
    color: #666;
    margin: 20px 0 25px;
}
.notify-block-button a {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 30px;
}
.notify-block-button a:hover {
    opacity: .8;
}



/* Quiz */
body:not(.custom-page-template) .quiz-area {
    background-image: url(/uploads/2023/02/pattern.jpg);
    background-position: center;
    background-size: contain;
    padding-bottom: 80px;
    margin-bottom: -80px;
}
.quiz-correct-answers, .quiz-unanswer-answers {
    display: none;
}
.quiz-title {
    color: var(--second-color);
    font-size: 26px;
    margin-bottom: 22px;
}
.quiz-exam-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    background: rgb(230 239 241 / 65%);
    padding: 30px;
}
.quiz-sidebar {
    width: 300px;
    order: 2;
    background: white;
    padding: 20px;
    border-radius: 10px;
}
.quiz-exam {
    width: calc(100% - 360px);
    order: 1;
}
.quiz-box-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
}
.quiz-box-item {
    width: 20%;
    padding: 0 5px 10px;
}
.quiz-box-item span {
    display: block;
    background: #e6eff1;
    cursor: pointer;
    text-align: center;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
}
.quiz-box-results .quiz-correct-box span {
    background: #0ce60c;
    color: white;
}
.quiz-box-results .quiz-box-item:not(.quiz-correct-box) span {
    background: #c14242;
    color: white;
}
.quiz-box-results .quiz-unanswer-box span {
    background: #e6eff1!important;
    color: black!important;
}
.quiz-exam-item {
    display: none;
}
.quiz-exam-item-1 {
    display: block;
}
.quiz-sidebar-heading {
    text-align: center;
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--second-color);
}
.quiz-question-number {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 0 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.completed-box span {
    background: #7ed091;
    color: white;
}
.active-box span {
    background: var(--main-color);
    color: white;
}
.quiz-exam-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #999;
    padding-top: 15px;
    margin-top: 30px;
}
.quiz-exam-button {
    cursor: pointer;
}
.deactive-button {
    pointer-events: none;
    opacity: .3;
}
.quiz-submit-button button {
    background: var(--second-color);
    color: white;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px;
}
.correct-answer {
    color: #03ce03;
}
.your-answer:not(.correct-answer) {
    color: red;
}
.quiz-result-area {
    margin-bottom: 30px;
}
.quiz-answer-desc {
    margin-top: 15px;
    color: #444;
    font-size: 17px;
    display: none;
}
.quiz-result-answer-item {
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}
.quiz-result-answer-item:before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    top: 1px;
    left: 0;
    color: white;
    font-size: 13px;
    background: var(--second-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
}
.quiz-result-answer-item span {
    color: black;
    font-family: Arial;
    font-size: 15px;
}
.quiz-clear-answer {
    color: var(--main-color);
    text-decoration: underline;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}
.quiz-report i {
    font-size: 15px;
    margin-right: 5px;
}
.quiz-report a {
    text-decoration: underline;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}
.quiz-answer-item {
    position: relative;
    margin-bottom: 5px;
}
.quiz-answer-item input {
    position: absolute;
    top: 2px;
    left: 0;
}
.quiz-answer-item label {
    padding: 0 0 0 40px!important;
}
@media (max-width: 959px) {
    .quiz-exam-blocks {
        padding: 0;
        background: transparent;
    }
    .quiz-exam, .quiz-sidebar {
        width: 100%;
    }
    .quiz-sidebar {
        padding: 30px 0 0;
    }
}



/* Quiz popup */
.quiz-popup-block {
    width: 500px;
    max-width: 90%;
    border-radius: 15px;
    display: none;
}
.qp-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto;
    background: #eee;
    border-radius: 50%;
    font-size: 44px;
}
.qp-heading-area {
    margin: 30px 0;
}
.qp-heading {
    text-align: center;
    font-size: 22px;
    line-height: 1.3;
}
.qp-desc {
    text-align: center;
    color: #777;
    margin-top: 10px;
}
.qp-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 -10px -10px;
}
.qp-button {
    padding: 0 10px 10px;
}
.qp-button a {
    height: var(--form-height);
    display: flex;
    align-items: center;
    background: #eee;
    padding: 0 30px;
    border-radius: 5px;
}
.qp-main-button a {
    background: var(--second-color);
    color: white;
}
.qp-second-button a {
    background: #d6f4ff;
    color: var(--second-color);
}
.qp-details {
    display: none;
}
@media (max-width: 767px) {
    .qp-heading {
        font-size: 20px;
        margin: 15px 0;
    }
    .qp-buttons {
        margin: 0 -5px -10px;
    }
    .qp-button {
        padding: 0 5px 10px;
    }
}



/* Countdown */
.cool-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cool-countdown .countdown {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
    align-self: center;
    border: 2px solid #e6eff1;
    border-radius: 10px;
}
.cool-countdown .countdown li {
    font-size: 20px;
    display: table-cell;
    position: relative;
    width: 60px;
}
.cool-countdown .countdown li:before {
    content: ':';
    position: absolute;
    left: -5px;
    top: 2px;
    font-size: 26px;
}
.cool-countdown .countdown li:nth-child(1):before {
    display: none;
}
.cool-countdown .countdown li span.countdown-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color: #000;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 10px;
}
.cool-countdown .countdown li span.countdown-number {
    display: block;
    font-size: 30px;
    width: 100%;
    text-align: center;
    border-bottom: 0;
}
@media (min-width: 321px) and (max-width: 500px) {
    .cool-countdown .countdown li span.countdown-number {
        font-size: 30px;
    }
    .cool-countdown .countdown li span.countdown-label {
        font-size: 13px;
        margin-top: -5px;
    }
    .cool-countdown .countdown li:before {
        font-size: 20px;
    }
}



/* Coin */
#coin-form * {
    line-height: 1.3;
}
.coins-heading h2 {
    color: var(--second-color);
    text-align: center;
    font-size: 32px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.1;
    margin-bottom: 40px;
}
.payment-rules-button {
    color: #83332a;
    text-decoration: underline;
}
.coin-plan-name {
    color: var(--second-color);
}
.coin-button, .coin-popup-button {
    background: var(--second-color);
    color: white;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 5px;
    margin: 0 auto;
    text-align: center;
}
.coin-button:after {
    content: '\e912';
    font-family: Feather;
    margin-left: 15px;
    font-size: 14px;
}
.coin-badge:not(:empty) {
    display: inline-block;
    background: red;
    color: white;
    border-radius: 5px;
    padding: 3px 10px;
    margin-left: 10px;
    font-size: 15px;
}
@media (max-width: 500px) {
    .coin-badge:not(:empty) {
        margin-left: 0;
        font-size: 13px;
        line-height: 1.2;
    }
    #coin-form {
        font-size: 15px;
    }
    #coin-form th {
        font-size: 12px;
    }
    .coin-button, .coin-popup-button {
        font-size: 13px;
    }
}



/* Account coin */
.coin-icon-box {
    margin-bottom: 15px;
}
.coin-icon-box a {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 7px 15px 5px 15px;
    justify-content: space-between;
    align-items: center;
    color: black;
    line-height: 1.3;
    background: #f1f1f1;
}
.coin-icon-heading {
    font-size: 15px;
    color: #289bd0;
}
.coin-icon-data {
    font-size: 22px;
    color: var(--second-color);
}
.coin-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--second-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Exam */
.exam {
    padding: 0;
    width: 100%;
}