@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: auto;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: auto;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: auto;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/webfonts/fa-brands-400.woff2") format("woff2"), 
        url("assets/webfonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/webfonts/fa-solid-900.woff2") format("woff2"), 
        url("assets/webfonts/fa-solid-900.ttf") format("truetype");
}
:root {
	--main-color: #0d7ee4;
	--second-color: #0d72cd;
	--light-color: #f5f5f5;
	--border-color: #ededed;
	--extra-color: #ce2222;
	--colored-color: #008100;
	--canvas-width: 300px;
	--form-height: 50px;
	--border-radius: 0;
	--font-family: 'Inter', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.3;
	font-weight: 600;
}
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
html {
    scroll-behavior: smooth;
}
body {
	font-size: 16px;
	color: #333333;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	width: 100%;
	font-family: var(--font-family);
    background: #f8f8f8;
}
#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: 1366px;
	margin: 0 auto;
	max-width: 90%;
	position: relative;
	z-index: 1;
}
#primary {
    padding-bottom: 40px;
}
.home #primary {
    padding-bottom: 0;
}
ul, ol {
	margin: 0 0 20px 30px;
	padding: 0;
}
button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family);
}
*, *: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;
}
a, :visited {
    color: #333333;
    text-decoration: none;
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
}
@media (max-width: 800px) {
    body {
        background: white;
    }
}



/* Layout */
.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% - 360px);
}
.left-sidebar #primary {
    width: calc(100% - 360px);
}
.has-sidebar #sidebar {
    width: 327px;
    position: relative;
    z-index: 10;
}
.right-sidebar #sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
@media (max-width: 1100px) {
    .has-sidebar #primary, .has-sidebar #sidebar {
        width: 100%;
    }
    #primary {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    #sidebar {
        display: none;
    }
}


/* Header */
.master-header-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	height: 110px;
}
#site-header {
    position: relative;
    z-index: 15;
    color: black;
    background: white;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.1);
}
#site-header-inner {
    position: relative;
    z-index: 10;
}
#site-logo {
    width: 140px;
}
#site-aside {
    width: calc(100% - 170px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#navigation {
    border-top: 1px solid var(--border-color);
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.1);
}
#site-navigation-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 500;
}
#site-navigation {
    background: var(--main-color);
    padding: 0 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#site-navigation-wrap .menu-container {
    width: 100%;
}
#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 40px;
}
#site-navigation-wrap .master-main-menu a {
    white-space: nowrap;
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}
#site-navigation-wrap .master-main-menu a:hover {
	opacity: .5;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	padding-left: 5px;
}
#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: 'FontAwesome';
    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;
}
.header-contact {
    white-space: nowrap;
    font-weight: 600;
}
.header-contact span {
    color: #999;
    margin-right: 5px;
}
@media (max-width: 1280px) {
    #navigation, .header-category-icon {
        display: none;
    }
}
@media (min-width: 1280px) {
    #mobile-sidebar-menu, .mobile-menu-area {
        display: none;
    }
}
@media (max-width: 767px) {
    .master-header-area {
        height: 90px;
    }
    #site-logo {
        width: 85px;
    }
    #site-logo img {
        width: 100%;
    }
    #site-aside {
        width: calc(100% - 110px);
    }
}
@media (max-width: 1420px) {
    #site-navigation-wrap .master-main-menu a {
        padding: 0 15px;
    }
}
@media (max-width: 800px) {
    #site-aside {
        justify-content: flex-end;
    }
}
@media (max-width: 960px) {
    #header-contact {
        display: none;
    }
}



/* Mobile menu */
.mobile-menu-area {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    overflow: hidden;
    transform: translate3d(-100%,0,0);
    transition: .3s all;
}
.active-mobile-menu {
    transform: none;
}
.mobile-menu {
    height: 100%;
}
.mobile-menu-sidebar {
    height: calc(100% - 71px);
}
.mobil-menu-line-icon {
    position: relative;
	cursor: pointer;
}
.mobile-menu ul {
    list-style: none;
    margin: 0;
    height: 100%;
    padding-bottom: 60px;
    transition: .3s all;
}
.active-ul {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 0px;
}
.mobile-menu > ul > li ul {
    display: none;
}
.has_child_menu > ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}
.mobile-menu-item-label {
    position: relative;
    padding: 10px 40px 10px 20px!important;
}
.mobile-menu-item-label:after {
    content: '\e930';
    font-family: Feather;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--second-color);
    color: white;
    border-radius: 50%;
    font-size: 10px;
}
.mobile-menu li a, .has_child_menu > div {
    display: block;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    border-bottom: 1px solid #ddd;
}
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.mobile-menu-close .fe {
    font-size: 22px;
    background: #eee;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.mobile-menu-back-button {
    visibility: hidden;
    border-radius: 50%;
}
.master-overlay, .cart-overlay, .product-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}
.mobile-menu-contact {
    padding: 20px;
}


/* Menu search */
.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;
}
.visible-search {
    display: block;
}
.master-search-area input::-moz-selection {
    background: transparent;
}
.master-search-area input::selection {
    background: transparent;
}


/* Page header */
#page-header {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 15px;
}
#page-header::-webkit-scrollbar {
    display: none;
}
.page-header-title {
    line-height: 1.3;
    font-size: 32px;
    padding: 0 0 60px;
    text-align: center;
}
.breadcrumbs {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}
.breadcrumbs > span:last-child {
    padding-right: 20px;
}
.single-mehsul .breadcrumbs {
    padding-bottom: 15px;
}
.breadcrumbs span {
    flex-shrink: 0;
}
.breadcrumbs, .breadcrumbs a {
    color: #666666;
    font-size: 16px;
}
.breadcrumbs a:hover {
    color: #000000;
}
.breadcrumbs__separator {
    margin: 0 7px;
}
@media (max-width: 767px) {
    .page-header-title {
        display: none;
    }
    .breadcrumbs {
        padding-top: 10px;
        padding-bottom: 30px!important;
    }
    .single-product .breadcrumbs {
        padding-bottom: 10px!important;
    }
}



/* Index */
.master-posts {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px -60px;
}
.master-post {
    width: 25%;
    padding: 0 15px 60px;
}
.master-post-thumbnail {
    margin-bottom: 25px;
}
.master-post-thumbnail img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
    background-color: #eee;
    transition: .5s all;
}
.master-post-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
}
.master-post-thumbnail a:hover img {
    transform: scale(1.1);
}
.master-post-title {
    margin-bottom: 15px;
}
.master-post-title a {
    font-size: 20px;
    line-height: 1.4;
    display: block;
    font-weight: 500;
}
.master-post-date {
    position: absolute;
    top: 15px;
    left: 0;
    background: white;
    padding: 3px 15px;
    font-size: 14px;
}
.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #525252;
}
.master-post-button a {
    display: table;
    font-size: 17px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.master-post a:hover {
    color: var(--main-color);
}
@media (max-width: 500px) {
    .master-post {
        width: 100%!important;
    }
}
@media (min-width: 501px) and (max-width: 999px) {
    .master-post {
        width: 50%!important;
    }
}



/* Footer */
#footer {
    background: #fff;
    color: black;
}
#footer a {
    color: #536475;
}
#footer a:hover {
    color: black;
}
.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
    padding: 40px 0;
}
.footer-block {
    padding: 0 15px 30px;
}
.footer-large {
    width: calc((100% - 300px) / 3);
}
.footer-small {
    width: 300px;
}
.footer-heading {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 22px;
    line-height: 1.3;
}
.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-logo {
    width: 120px;
}
.footer-bottom-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
    border-top: 1px solid #000;
}
.footer-links ul {
    margin: 0;
    list-style: none;
}
.footer-links li:not(:last-child) {
    margin-bottom: 8px;
}
.footer-links li {
    position: relative;
    line-height: 1.3;
}
#footer .footer-callout a {
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    height: var(--form-height);
    text-transform: uppercase;
    max-width: 100%;
    color: white;
}
#footer .footer-callout a:hover {
    background: var(--second-color);
}
.footer-callout img {
    width: 20px;
    margin-left: 15px;
    filter: invert(1) brightness(10) contrast(10);
}
#footer .footer-contacts a {
    color: black;
    font-weight: 500;
}
.footer-contacts {
    margin-bottom: 25px;
}
.footer-contact {
    display: flex;
    align-items: center;
}
.footer-contact:not(:last-child) {
    margin-bottom: 3px;
}
.footer-contact i, .footer-icon i{
    width: 20px;
    font-size: 17px;
    text-align: center;
    margin-right: 10px;
    opacity: .4;
}
.footer-address {
    font-weight: 500;
}
.footer-bottom-texts {
    display: flex;
    align-items: center;
    gap: 25px;
}
#footer .footer-bottom-texts a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}
#footer .footer-open-map {
    margin-bottom: 25px;
}
#footer .footer-open-map a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-icon-box {
    display: flex;
    justify-content: space-between;
}
.footer-icon-details {
    width: calc(100% - 30px);
}
@media (max-width: 1150px) {
    .footer-large {
        width: 300px;
    }
    .footer-small {
        width: calc((100% - 300px) / 4);
    }
}
@media (max-width: 1050px) {
    .footer-large, .footer-small {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .footer-logo {
        width: 100px;
        padding: 0;
    }
}


/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
}
#site-scroll-top .fe {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.1);
    color: white;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
    font-size: 26px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#site-scroll-top .fe:hover {
    background: var(--main-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: 70px;
    }
}



/* Axtaris neticeleri */
.search-title a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: black;
}


/* Pagination */
.pagination {
    margin-top: 30px;
}
.pagination-top {
    margin: 0 0 30px auto;
    display: table;
}
.pagination-top .pagination {
    margin: 0;
}
.pagination-bottom {
    margin: 0 0 0 auto;
    display: table;
}
.page-numbers {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background: #eee;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
    color: black;
}
.page-numbers:hover, .page-numbers.current {
    background: var(--main-color);
    color: white;
}
.page-numbers .fa {
    font-size: 12px;
}



/* Social share */
.master-social-share-area {
    margin-top: 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: 960px) {
    .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 */
#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;
}
.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-type-false {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
}
.ms-gallery-type-true {
    column-gap: 0;
}
.ms-gallery-type-false .ms-image-9 {
    width: calc(100% / 9);
}
.ms-gallery-type-false .ms-image-8 {
    width: calc(100% / 8);
}
.ms-gallery-type-false .ms-image-7 {
    width: calc(100% / 7);
}
.ms-gallery-type-false .ms-image-6 {
    width: calc(100% / 6);
}
.ms-gallery-type-false .ms-image-5 {
    width: 20%;
}
.ms-gallery-type-false .ms-image-4 {
    width: 25%;
}
.ms-gallery-type-false .ms-image-3 {
    width: 33.3%;
}
.ms-gallery-type-false .ms-image-2 {
    width: 50%;
}
.ms-gallery-type-false .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-gallery-type-true {
        column-count: 1!important;
    }
    .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-gallery-type-true {
        column-count: 2!important;
    }
    .ms-image {
        width: 50%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 767px) and (max-width: 960px) {
    .ms-gallery-type-true {
        column-count: 3!important;
    }
    .ms-image {
        width: 33.3%!important;
    }
}



/* Sidebar */
.sidebar-post-block {
    margin-bottom: 30px;
}
.sidebar-post a {
    display: block;
    background: white;
}
.sidebar-post-image {
    overflow: hidden;
}
.sidebar-post a img {
    transition: .5s all;
}
.sidebar-post a:hover img {
    transform: scale(1.1);
}
.sidebar-post-details {
    padding: 15px 20px;
}
.sidebar-post-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
}
.sidebar-post-link a {
    font-weight: 500;
    margin-top: 10px;
    display: table;
    color: var(--colored-color);
    margin-left: auto;
    border-bottom: 1px solid;
    line-height: 1.3;
    font-size: 14.5px;
}
.sidebar-post-link a:hover {
    color: black;
}
.sidebar-post-date {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--main-color);
}
.popular-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.popular-brand a {
    border: 1px solid #ccc;
    padding: 3px 10px;
    display: table;
    font-size: 16px;
    transition: .3s all;
}
.popular-brand a:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}
.master-widget {
    margin-bottom: 40px;
}
.master-widget-title {
    font-weight: 600;
    font-size: 22px;
    color: #96a0c0;
    margin-bottom: 20px;
}


/* Single post */
.single-content-part {
    padding: 40px;
    background: white;
}
.single-post-title {
    padding-bottom: 40px;
}
.single-post-title h1 {
    font-weight: 500;
}
.single-post-thumbnail {
    width: 500px;
}
.single-post-thumbnail img {
    background: #eee;
	margin: 0 auto 40px;
}
.single-post-meta {
    margin-top: 10px;
}
.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: 'FontAwesome';
    margin-right: 10px;
    color: black;
}
.single-post-category:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-author:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}
.single-content {
    text-align: justify;
    line-height: 1.6;
    font-size: 16.5px;
}
.single-content a {
    color: blue;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.single-content p {
    margin: 0 0 15px;
}
.single-content ul, .single-content ol {
    margin-top: 15px;
}
.single-content .ms-gallery img {
	width: 100%!important;
	max-height: inherit!important;
	height: auto!important;
}
img.aligncenter {
    margin: 0 auto;
}
.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    text-align: left;
    margin-bottom: 10px;
    color: black;
    font-weight: 500;
    font-size: 24px;
}
.single-content ul, .single-content ol {
    text-align: left;
}
.single-content img {
    display: inline-block;
}
.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;
}
.master-table {
    overflow-x: auto;
    max-width: 100%;
}
@media (max-width: 960px) {
    .single-content-part {
        width: 100%;
    }
}



/* Muellif */
.single-author-area {
    margin-bottom: 40px;
}
.single-author-heading {
    padding-right: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.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: FontAwesome;
    width: 150px;
    height: 150px;
    background: #eee;
    border: 1px solid #ddd;
    display: flex;
    align-items: 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 */
.home-youtube-area {
    padding-bottom: 60px;
}
/* Youtube */
.youtube-videos {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}
.youtube-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.youtube-icon-block {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
}
.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-thumbnail: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-thumbnail:hover .youtube-play-icon {
    opacity: 1;
}
.play-video:before {
    content: '\f04b';
    font-family: FontAwesome;
    color: white;
    font-size: 18px;
}
.youtube-iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 0;
}
.youtube-heading a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    line-height: 1.3;
    color: black;
    font-weight: 600;
}
.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.youtube-loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}
@media (max-width: 960px) {
	.youtube-icon, .youtube-play-icon {
		opacity: 1;
	}
	.play-video:before {
	    font-size: 22px;
	}
}
@media (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}
@media (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}


/* Instagram */
.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: var(--light-color);
}
.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: 'FontAwesome';
	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%;
    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-ratio-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.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 */
.error404-content {
    text-align: center;
    padding: 20px 0;
}
.error404-content h1 {
    font-size: 44px;
}



/* Sual cavab */
.faq {
    width: 700px;
    max-width: 100%;
    margin: 0 auto 60px;
}
.faq h3 {
    font-size: 26px;
    margin-bottom: 30px;
}
.master-accordion:nth-child(1) {
    border-top: 1px solid #e5e5e5;
}
.master-accordion {
    border-bottom: 1px solid #e5e5e5;
}
.master-accordion-title {
	color: black;
    font-size: 18px;
    padding: 20px 30px 20px 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    -webkit-user-select: none;        
    -moz-user-select: none;
    -ms-user-select: none;
}
.master-accordion-title:after {
    content: "\e92e";
    font-family: Feather;
    font-weight: 400;
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: .3s all;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: white;
    background: var(--second-color);
    border-radius: 50%;
    transform: translateY(-50%);
}
.master-accordion-title.active:after {
    transform: rotate(180deg);
}
.master-accordion-content {
    color: #525252;
    line-height: 1.8;
    padding-bottom: 20px;
    display: none;
}


/* 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 var(--border-color);
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: 17px;
    background: #ecedf0;
    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 var(--border-color);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 17px;
    resize: vertical;
    min-height: 90px;
    background: #ecedf0;
    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 var(--border-color);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 0;
    left: 0;
    border-radius: 50%;
}
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: 16px;
    height: 16px;
    border: 1px solid #a6a6a6;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 6px;
    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: "\e92b";
    font-family: 'Feather';
    font-weight: 800;
    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 var(--border-color);
    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: 12px;
    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 -10px;
}
.ecommerce-address-area .form-group {
    justify-content: flex-start;
}
.form-group .form-element {
    padding: 0 10px 20px;
}
.form-100 {
    width: 100%;
}
.form-85 {
    width: 85%;
}
.form-55 {
    width: 55%;
}
.form-50 {
    width: 50%;
}
.form-33 {
    width: 33.3%;
}
.form-25 {
    width: 25%;
}
.form-15 {
    width: 15%;
}
.form-element {
    padding-bottom: 20px;
	position: relative;
}
.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 15px;
}
.form-elements > label {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    display: inline-flex;
    font-size: 15px;
}
.form-elements .form-element label {
    font-weight: 400;
}
.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}
.form-element span {
    color: red;
    font-size: 18px;
    line-height: 0;
    margin-left: 2px;
    transform: translateY(1px);
    display: inline-block;
}
.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 400;
}
.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;
}
.form-choice label {
    font-weight: 400;
}
.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-info {
    color: #281b80;
    background-color: #e0e0ff;
    border-color: #e0e0ff;
}
.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    left: 5px;
    height: calc(100% - 10px);
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    transform: translateY(-50%);
}
.alert-danger:before {
    content: "\f071";
    background: #da6f64;
}
.alert-success:before {
    content: '\f058';
    background: #48c346;
}
.alert-info:before {
    content: "\f05a";
    background: #464fc3;
}
@media (max-width: 700px) {
	.form-50, .form-33, .form-25, .form-55 {
		width: 100%;
	}
	.form-15 {
	    width: 33.3%;
	}
}


/* Progress bar */
.progress {
    background: #eee;
    border-radius: 5px;
    display: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}
.progress-bar {
    height: 5px;
    line-height: 5px;
    background: red;
    font-weight: 600;
    color: white;
    padding: 0 15px;
    width: 0%;
    position: relative;
    max-width: 100%;
}
.progress-bar-text-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 600;
    width: 100%;
}



/* ACF Map */
.map-area {
    position: relative;
    padding-top: 40px;
}
.acf-map {
	height: 450px;
	background: #eee;
	position: relative;
}
.acf-iframe-map iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}
.map-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
}
.map-loading-text {
    padding-top: 40px;
    font-weight: 600;
    font-size: 18px;
}



/* Animations */
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* Comments */
.default-comment-form-area {
    display: none;
}
#comments {
    padding-bottom: 20px;
}
.comments-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.write-comment-heading {
    padding-bottom: 10px;
}
.comment-list {
    list-style: none;
    margin: 0;
}
.comment {
    display: table;
    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;
}
.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;
}
.comment-name {
    padding-right: 5px;
}
.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-rating {
    color: orange;
    font-size: 14px;
}
.load-more-comments-button {
    padding: 10px 35px;
    display: table;
    margin-top: 15px;
    font-size: 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 */
.comment-ratings {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}
.comment-ratings input {
    display: none;
}
.comment-rating label {
    padding: 0 2px!important;
}
.comment-rating label:before {
    content: '\f005';
    font-family: FontAwesome;
    color: #ddd;
    font-size: 14px;
}
.active-comment-rating label:before {
    color: orange;
}
.form-element-rating {
    padding-left: 10px;
}


/* Sekiller */
.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;
    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: 767px) and (max-width: 999px) {
	.master-image {
		width: 33.3%;
	}
}



/* Table */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    margin: 20px 0;
	text-align: left;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px 15px;
}
tr:nth-child(odd) {
    background: #f5f5f5;
}



/* Toolbar */
.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: 767px) {
	.toolbar-area {
	    display: none;
	}
}



/* Loading */
.loading {
	color: transparent!important;
	position: relative;
	pointer-events: none;
}
.loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0s ease;
    -webkit-transition: opacity 0s ease;
	opacity: 1;
    -webkit-animation: loading 450ms infinite linear;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
}
.loading:before {
	visibility: hidden;
}
.small-loading-icon:after {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
}
.big-loading-icon:after {
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
}
.light-loading-icon:after {
    border: 1px solid rgba(255,255,255,.3);
    border-left-color: #fff;
}
.dark-loading-icon:after {
    border: 1px solid rgba(0,0,0,.3);
    border-left-color: #000;
}
@-webkit-keyframes loading {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loading {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* QR code */
.qr-code img {
    width: 150px;
}



/* Swiper js */
.master-slider {
    overflow: hidden;
}
.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 {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
    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 {
    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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    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 {
    scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    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;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    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;
}
@keyframes swiper-preloader-spin {
    100% {
        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 {
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    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;
    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 {
    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 */
.active-admin-bar {
    margin-top: 35px;
}
.admin-bar {
    display: none;
}
.active-admin-bar .admin-bar {
    display: flex;
}
.hide-admin-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}
.active-admin-bar .hide-admin-bar {
    top: 35px;
}


/* Pagination */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}
.page-item {
    display: inline-block;
}
.page-item a {
    display: block;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    padding: 0;
    width: 30px;
    color: black;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-item.active a, .page-item a:hover {
    background: var(--main-color);
    color: white;
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin-bottom: 30px;
}
.notify-block-icon-area {
    width: 150px;
    height: 150px;
    background: #00a900;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 70px;
}
.notify-fe-fe-check {
    background: #00a900;
}
.notify-fe-fe-x {
    background: #ff0000;
}
.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.notify-block-description {
    color: #666;
    margin: 0 auto 25px;
    width: 600px;
    max-width: 100%;
}



/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-networks a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-network-item-wl:not(:last-child) {
    margin-bottom: 5px;
}
.social-network-item-wl a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-network-item-wl a i {
    font-size: 17px;
}
.facebook-social-wl a i {
    color: #6f6fd2;
}
.instagram-social-wl a i {
    color: #bb8181;
}
.youtube-social-wl a i {
    color: #e00000;
}
.whatsapp-social-wl a i {
	color: #00da00;
}
.twitter-social-wl a i {
	color: #000000;
}
.telegram-social-wl a i {
	color: #0088cc;
}
.linkedin-social-wl a i {
	color: #0077b5;
}
.tiktok-social-wl a i {
	color: #333333;
}
.colorfull-social .social-networks a i {
    color: white;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    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: linear-gradient(
            to bottom,
            #833ab4,#fd1d1d,#fcb045
    );
}
.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 {
	opacity: .7;
}



/* Topbar */
#topbar-wrap {
    background: #f7f7f7;
    font-weight: 500;
    padding: 10px 0;
    font-size: 15px;
}
#topbar-wrap a:hover {
    color: var(--main-color);
}
.topbar-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}
.topbar-block .solid-menu {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.topbar-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.topbar-phone {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 27px;
}
.topbar-phone .icon {
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: .3;
}
@media (max-width: 1250px) {
    .topbar-block {
        gap: 15px;
    }
    .topbar-block .solid-menu {
        gap: 15px;
    }
}
@media (max-width: 800px) {
    .topbar-menu {
        display: none;
    }
}
@media (max-width: 450px) {
    .topbar-phones {
        gap: 5px;
    }
    .topbar-phone {
        width: 100%;
    }
}



/* Contact */
.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.contact-block {
    width: 50%;
    padding: 0 15px 30px;
}
.contact-item {
    display: flex;
    color: black;
}
.contact-item:not(:last-child) {
    margin-bottom: 5px;
}
.contact-item i {
    width: 20px;
    font-size: 17px;
    text-align: center;
    margin-right: 10px;
    opacity: .4;
    margin-top: 5px;
    line-height: 1;
}
.contact-social .social-networks {
    column-count: 2;
    margin: 30px 0;
}
.contact-address-note {
    padding-top: 25px;
}
.contact-video video {
    width: 100%;
}
.contact-map-url a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--main-color);
}
.contact-phones {
    margin-bottom: 25px;
}
.contact-phone {
    line-height: 1.4;
}
.contact-phone a {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -1px;
}
.contact-phone i {
    margin-top: 7px;
}
@media (max-width: 700px) {
    .contact-block {
        width: 100%;
    }
    .map-area {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
    }
}



/* Tabs */
.tabs {
    margin-top: 20px;
}
.tabs-heading {
    list-style: none;
    margin: 0;
    display: flex;
    user-select: none;
}
.tabs-heading li {
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #e2e2e2;
    border-bottom: 0;
    background: #e2e2e2;
    margin-right: 10px;
    transition: .3s all;
}
.tabs-heading .active-tab, .tabs-heading li:hover {
    background: white;
}
.tabs-heading .active-tab:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    bottom: -2px;
    left: 0;
    position: absolute;
}
.tabs-body {
    border: 1px solid #e2e2e2;
    padding: 20px;
    background: white;
}
.tabs-body > div:not(:first-child) {
    display: none;
}
@media (max-width: 767px) {
    .tabs-body {
        border: 0;
        padding: 20px 0;
    }
}
@media (max-width: 600px) {
    .tabs-heading li {
        font-size: 11px;
    }
}


/* Default page content */
.default-page-template .site-content h2, .default-page-template .site-content h3 {
    margin-bottom: 15px;
}




/* Menu categories */
.menu-mehsul:hover .menu-categories-area {
    display: block;
}
.menu-categories-area {
    position: absolute;
    background: white;
    z-index: 1;
    top: 100%;
    display: none;
    border-bottom: 1px solid #ddd;
    transition: .15s;
}
.menu-categories-headings-area {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.menu-categories-headings {
    height: 50px!important;
    line-height: 50px!important;
}
.menu-categories-heading {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
}
.active-categories-heading {
    cursor: default;
    color: var(--second-color);
}
.active-categories-heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--second-color);
}
.menu-categories-list {
    column-count: 3;
    column-gap: 30px;
    padding: 30px 0;
}
.menu-categories a {
    display: block;
    color: #1f1f1f;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: Arial;
    font-size: 15px!important;
}
.master-slider {
    height: 0;
}
.master-slider .swiper-products-nav {
    opacity: 0;
}
.swiper-container-initialized {
    height: auto;
}
.swiper-container-initialized .swiper-products-nav {
    opacity: 1;
}



/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset!important;
}
.fancybox-active .admin-bar {
    z-index: 1;
}



/* Site helpers */
.site-helpers {
    display: flex;
    align-items: center;
    gap: 30px;
    width: calc(100% - 350px);
}
@media (max-width: 800px) {
    .header-categories {
        display: none;
    }
}



/* Header aside ucun custom css */
#header-aside {
    width: 320px;
}
.header-aside {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
.master-block {
    text-align: center;
    cursor: pointer;
}
.master-shop-icon-link {
    display: block;
    position: relative;
}
.master-shop-title {
    line-height: 1.3;
    font-size: 16px;
}
.master-shop-icon {
    font-size: 24px;
    width: 35px;
    position: relative;
}
.master-shop-icon-count {
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: var(--second-color);
    color: white;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
    font-weight: 600;
}
.master-shop-icon, .master-shop-icon-heading, .master-shop-icon-total-price {
    display: inline-block;
    vertical-align: middle;
}
.master-shop-icon-area .master-search {
    color: #ff0000;
    font-size: 30px;
    line-height: 1.1;
    margin-right: 10px;
}
.master-menu {
    display: none;
}
.master-menu .master-shop-icon-link {
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.master-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
@media (max-width: 800px) {
    #mobile-sidebar-menu {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        font-size: 26px;
    }
     #header-aside{
         width: auto;
         padding-right: 80px;
    }
}
@media (max-width: 800px) {
    .master-menu {
        display: block;
    }
}
@media (max-width: 767px) {
    .master-icon-search-area {
        position: absolute;
        top: 50%;
        right: 35px;
        transform: translateY(-50%);
    }
    .master-icon-search-area .fe {
        font-size: 22px;
    }
}
@media (max-width: 600px) {
    .master-shop-title {
        display: none;
    }
    .header-icons {
        gap: 10px;
    }
    .master-user {
        display: none;
    }
    #header-aside{
        padding-right: 60px;
    }
}


/* Header categories */
.header-menu-area {
    position: absolute;
    width: 260px;
    display: none;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.15);
}
.header-categories-heading {
    background: var(--main-color);
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 25px 0 60px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    z-index: 10;
    user-select: none;
    width: 145px;
}
.header-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbcbcb;
    border-radius: 50%;
    transform: translateX(24px);
}
.header-category-icon svg {
    width: 20px;
}
.header-category-icon path {
    fill: var(--second-color);
}
.header-categories-heading:after {
    content: "\e98f";
    font-family: Feather;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-weight: 400;
    font-size: 19px;
}
.header-categories-heading i {
    margin-right: 10px;
    color: var(--main-color);
}
.categories-item {
    list-style: none;
    margin: 0;
    position: relative;
    background: white;
}
.categories-item:not(.category-parent-0) {
    display: none;
    position: absolute;
    left: 100%;
    width: 300px;
    margin-top: -40px;
    box-shadow: 0 0 15px rgb(0 0 0 / 12%);
}
.category-item a {
    padding: 0 45px 0 15px;
    color: black;
    line-height: 1.1;
    position: relative;
    height: 44px;
    display: flex;
    align-items: center;
    font-size: 15.5px;
}
.category-item a:hover {
    background: #eee;
}
.category-item img {
    width: 23px;
    margin-right: 15px;
    opacity: .4;
}
.category-item:last-child a:after {
    display: none;
}
.has-child-categories > a:before {
    content: "\e930";
    font-family: Feather;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #999;
    font-weight: 400;
    font-size: 16px;
}
@media (min-width: 900px) {
    .category-item:hover > .categories-item {
        display: block!important;
    }
}
@media (max-width: 900px) {
    .header-menu-area {
        width: 100%;
        position: relative;
    }
    .has-child-categories > a:before {
        transform: translateY(-50%) rotate(90deg);
    }
    .categories-item:not(.category-parent-0) {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 0;
        border-top: 0;
        border-right: 0;
        background: #eee;
    }
}



/* Related posts */
.related-posts-area {
    padding-top: 60px;
}


/* Callout */
.callout-form-element {
    margin-bottom: 10px;
}
.callout-form-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    font-size: 15px;
    padding: 0 15px;
}
.success-message {
    text-align: center;
    color: #ccc;
    display: none;
}
.success-message:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: table;
    margin: 0 auto 15px;
    font-size: 24px;
    color: yellow;
}
#calloutModal {
    display: none;
    width: 400px;
}


/* Callout modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 45px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    user-select: none;
    transition: .15s all;
}
.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    user-select: none;
    font-weight: 600;
    transition: .15s all;
}
.primary-button {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.primary-button:hover {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}
.outline-button:hover {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.colored-button {
    background: var(--colored-color);
    color: white;
    border: 1px solid var(--colored-color);
}
.colored-button:hover {
    background: #424270;
    border: 1px solid #424270;
}
.wide-button {
    width: 100%;
}
.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-left: 10px;
    margin-right: -10px;
    font-size: 14px;
}
.icon-left-button:before {
    content: "\e912";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}
.whatsapp-button {
    background: #28a828;
    color: #ffffff;
    border-color: #28a828;
}
.whatsapp-button:hover {
    background: #188918;
    color: #ffffff;
    border-color: #188918;
}
.black-button {
    background: black;
    color: white;
    border-color: black;
}
.black-button:hover {
    background: var(--second-color);
    border-color: var(--second-color);
}


/* Animations */
.animate {
    transition: 1.2s all;
}
.scale-animation {
    transform: scale(0.5);
    opacity: 0;
}
.fade-animation {
    opacity: 0;
}
.left-to-right-animation {
    transform: translateX(-100px);
    opacity: 0;
}
.right-to-left-animation {
    transform: translateX(100px);
    opacity: 0;
}
.top-to-bottom-animation {
    transform: translateY(-100px);
    opacity: 0;
}
.bottom-to-top-animation {
    transform: translateY(100px);
    opacity: 0;
}
.animated {
    opacity: 1;
    transform: none;
}


/* Fixed header */
#navigation.fixed-site-header {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    animation-name: sticky;
    animation-duration: .5s;
    border-top: 0;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}
.active-admin-bar #navigation.fixed-site-header {
    margin-top: 35px;
}
.fixed-site-header .header-aside {
    position: absolute;
    right: 0;
}
.fixed-site-header .master-shop-icon {
    width: 40px;
    height: 40px;
    border: 0;
}
@keyframes sticky {
    from {
        transform: translateY(-80px);
    }
    to {
        transform: translateY(0);
    }
}


/* Master heading */
.heading-area {
    margin-bottom: 30px;
}
.heading {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
}
.description {
    margin-top: 10px;
    width: 600px;
    max-width: 100%;
}
.center-heading {
    text-align: center;
}
.center-heading .master-description {
    margin: 10px auto 0;
}
.light-heading {
    color: white;
}
.master-description {
    font-size: 16px;
    margin-top: 15px;
}



/* Whatsapp */
.whatsapp-toolbar-area {
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 1000;
    font-weight: 500;
}
.whatsapp-toolbar-area a {
    background: #32a732;
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 25px;
}
.whatsapp-toolbar-area a i {
    margin-right: 10px;
}
.whatsapp-toolbar-area a:hover {
    background: #298c29;
}


/* Language switcher */
.language-list-switcher ul {
    margin: 0 -5px;
    list-style: none;
    display: flex;
}
.language-list-switcher li {
    padding: 0 5px;
}
.language-list-switcher .language-item a {
    display: flex;
    align-items: center;
}
.language-list-switcher .language-item img {
    width: 20px;
    height: 20px;
}
.language-list-switcher .language-label {
    padding-left: 7px;
    font-weight: 600;
    color: black;
    display: none;
}
@media (max-width: 801px) {
    .whatsapp-toolbar-area {
        display: none;
    }
}


/* Swiper */
.relative-slider {
    position: relative;
}
.side-swiper-nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.ssn-prev {
    left: -30px;
}
.ssn-next {
    right: -30px;
}
.center-swiper-navigations {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}
.center-swiper-nav {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}
.swiper-pagination {
    display: flex;
    margin: 30px -3px 0;
}
.swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
    cursor: pointer;
    background: #fff;
    transition: .3s all;
}
.swiper-pagination .swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--main-color);
}
.dots-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}
.liner-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    display: block;
}
.center-swiper-pagination {
    justify-content: center;
}
.swiper-slide .master-post {
    width: 100%;
    padding: 0;
}


/* Single product features */
.single-product-details,
.single-product-comments {
    padding: 0 40px;
}
.spf-blocks {
    margin: 40px 0;
}
.spf-block {
    break-inside: avoid;
}
.spf-block:not(:last-child) {
    margin-bottom: 30px;
}
.spf-items {
    border-top: 1px solid #ddd;
}
.spf-item {
    display: flex;
    justify-content: space-between;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}
.spf-item-title {
    width: 250px;
    position: relative;
    padding: 5px 15px;
    background: #f7f7f7;
}
.spf-item-title span {
    display: inline-block;
    position: relative;
}
.spf-item-value {
    width: calc(100% - 250px);
    padding: 5px;
}
.spf-item-value span {
    background: white;
    display: inline-block;
    position: relative;
    padding-left: 10px;
    font-weight: 500;
}
.product-excerpt {
    font-size: 13px;
    margin-top: 10px;
}
.spf-items:empty {
    display: none;
}
.spf-block:has(.spf-items:empty) {
    display: none;
}
.single-product-excerpt {
    margin-bottom: 15px;
}
.single-product-image {
    cursor: pointer;
    padding: 15px 0;
}
@media (max-width: 1000px) {
    .spf-blocks {
        column-count: 1;
    }
}
@media (max-width: 800px) {
    .single-product-details,
    .single-product-comments {
        padding: 0;
    }
}
@media (max-width: 600px) {
    .spf-item-title {
        width: 150px;
    }
    .spf-item-value {
        width: calc(100% - 150px);
    }
}



/* Term */
.term-about-area {
    margin-top: 30px;
}
.term-name {
    margin-bottom: 10px;
}
.term-name h1 {
    font-size: 22px;
    font-weight: 600;
}


/* Designed List */
.designed-list ul, .designed-list ol {
    list-style: none;
    margin-left: 20px;
    counter-reset: section;
}
.designed-list ol {
    margin-left: 10px;
}
.designed-list ul li, .designed-list ol li {
    position: relative;
    padding-left: 25px;
    margin: 0 0 7px;
    line-height: 1.5;
}
.designed-list ol li {
    padding-left: 30px;
}
.designed-list ul li:before {
    content: "\e92b";
    font-family: 'Feather';
    position: absolute;
    top: 4px;
    left: 0;
    font-weight: 900;
    color: var(--main-color);
    font-size: 13px;
}
.designed-list ol li:before {
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 50%;
}


/* Sidebar products */
.sidebar-product {
    padding: 5px 0;
}
.sidebar-product a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.sidebar-product-thumbnail {
    width: 100px;
}
.sidebar-product-thumbnail img {
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #eee;
}
.sidebar-product-details {
    width: calc(100% - 120px);
}
.sidebar-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
    transition: .15s all;
}
.sidebar-product-price .product-price-area {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--main-color);
}
.sidebar-product a:hover .sidebar-product-title {
    color: black;
}
.master-widget-heading {
    border: 1px solid #eee;
    margin-bottom: 15px;
}


/* Product slider */
.combined-products {
    padding: 15px;
    margin: -15px;
}



/* Banners */
.banners-area {
    padding-bottom: 40px;
}
.banner-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -15px;
}
.banner-block {
    width: 33.3%;
    padding: 0 15px 15px;
}
.banner-block a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.banner-image img {
    transition: .3s all;
}
.banner-block a:hover img {
    transform: scale(1.1);
}
.banner-details {
    position: relative;
    z-index: 1;
}
.banner-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.banner-button {
    display: table;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 500;
    font-size: 14px;
}
@media (max-width: 1000px) {
    .banner-block {
        width: 50%;
    }
}
@media (max-width: 600px) {
    .banner-block {
        width: 100%;
    }
}



/* Banners */
.big-banners-area {
    padding: 40px 0;
}
.big-banner-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -15px;
}
.big-banner-block {
    width: 33.3%;
    padding: 0 15px 15px;
}
.big-banner-block a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    padding: 30px 30px 200px;
    border-radius: var(--border-radius);
}
.big-banner-image {
    position: absolute;
    bottom: 0;
}
.big-banner-image img {
    width: auto;
    height: 200px;
    transition: .3s all;
}
.big-banner-block a:hover img {
    transform: scale(1.1);
}
.big-banner-details {
    position: relative;
    z-index: 1;
}
.big-banner-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.big-banner-button {
    display: inline-flex;
    font-weight: 500;
    font-size: 14px;
    margin: 0 auto;
    border: 2px solid black;
    border-radius: 30px;
    height: 35px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    line-height: .9;
    transition: .3s all;
}
.big-banner-block a:hover .big-banner-button {
    background: black;
    color: white;
}
@media (max-width: 767px) {
    .big-banner-block {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .big-banner-block {
        width: 100%;
    }
}


/* Brands */
.brands-area {
    padding: 15px 0;
}
.brand-slide {
    display: flex;
    align-items: center;
    height: 100px;
}


/* Page content */
.page-content-area {
    padding-bottom: 60px;
}
.credit-items {
    padding: 15px 0;
    font-size: 15px;
}


/* Credit */
.credit-block {
    border-radius: var(--border-radius);
    margin-top: 30px;
    width: 700px;
    max-width: 100%;
    background: #f4f4f4;
    margin-bottom: 30px;
}
.credit-heading {
    line-height: 1;
    font-size: 16px;
    background: var(--main-color);
    color: white;
    width: 100%;
    text-transform: uppercase;
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
.credit-items {
    padding: 15px 0;
    font-size: 15px;
}
.credit-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    position: relative;
    font-size: 18px;
    transition: .3s all;
}
label.credit-item {
    font-weight: 600;
    letter-spacing: -1px;
    color: black;
    cursor: pointer;
}
label.credit-item:hover {
    background: #eee;
}
.credit-item sup {
    font-weight: 400;
    letter-spacing: 0;
}
.ci {
    width: 50%;
    padding: 8px 10px;
}
.credit-info {
    padding: 5px 15px 20px;
    text-align: center;
}
.credit-info p:last-child {
    margin-bottom: 0;
}
.credit-button {
    display: flex;
    justify-content: center;
    padding: 10px 0 15px;
}
.credit-heading-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}
.single-page .credit-heading-area {
    justify-content: center;
}
.credit-cards-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
}
.credit-card-title {
    font-weight: 600;
    color: #3131ba;
    font-size: 18px;
    line-height: 1.3;
}
.credit-cards {
    display: flex;
    align-items: center;
    gap: 10px;
}
.credit-card {
    width: 50%;
    text-align: center;
}
.cc-image {
    width: 50px;
}
.cc-image img {
    border-radius: 5px;
}
.cc-title {
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    padding-top: 5px;
}
.credit-input {
    width: 200px;
    margin: 10px auto;
}
.credit-info-block {
    min-height: 150px;
}
.credit-info-block .loading {
    margin-top: 30px;
}
.credit-check {
    display: flex;
    align-items: center;
    justify-content: center;
}
.credit-check input {
    position: relative;
    border: 0;
}
.credit-check input[type=radio]:before {
    content: "\f00c";
    background: #ccc;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
}
.credit-check input[type=radio]:checked:before {
    content: "\f00c";
    background: var(--second-color);
}
.credit-check input[type=radio]:before {
    content: "\f00c";
    border: 0;
    background: #ccc;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 50%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
}
@media (max-width: 500px) {
    .credit-block {
        border: 0;
        padding: 0;
    }
    .credit-item {
        font-size: 12.5px;
    }
}



/* Parts */
.part-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
    padding: 7.5px 7.5px 7.5px 0;
}
.part-block:nth-child(odd) {
    background: #f5f5f5;
}
.part-block select {
    background-color: white;
}
.part-block-item {
    padding: 0 15px;
}
.part-block-name {
    font-weight: 600;
    width: 200px;
    line-height: 1.3;
}
.part-block-select {
    width: calc(100% - 460px);
}
.part-quantity-blocks {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.part-block-quantity {
    width: 140px;
}
.part-block-price {
    width: 105px;
}
.part-quantity-input {
    width: 50px;
}
.part-quantity-input input {
    text-align: center;
}
.part-quantity-nav {
    background: var(--border-color);
    color: white;
    width: 35px;
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s all;
}
.part-quantity-nav:hover {
    background: #3da151;
}
.part-block-price {
    background: #d0d0ef;
    text-align: center;
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-size: 13px;
}
.part-block-price span {
    font-size: 17px;
}
.part-report {
    border-top: 1px solid #ccc;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: right;
    font-weight: 600;
    font-size: 22px;
}
.part-total-price {
    padding: 20px 0;
}
.part-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -10px;
    justify-content: flex-end;
}
.part-button {
    padding: 0 10px 10px;
}
@media (max-width: 800px) {
    .part-block {
        gap: 0;
    }
    .part-block-name {
        width: 100%;
        margin-bottom: 10px;
    }
    .part-block-select {
        width: 100%;
        margin-bottom: 10px;
    }
}


/* Home */
.home-products-area {
    padding-bottom: 80px;
}
.home-products-area .shop-heading {
    margin-bottom: 15px;
}
.shop-heading {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}


/* Banners */
.small-banners-area {
    padding: 40px 0;
}
.banners {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.banner {
    padding: 0 10px 20px;
}
.banner a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    transition: .3s all;
}
.banner a:hover {
    transform: scale(1.05);
}
@media (max-width: 999px) {
    .banner {
        width: 50%!important;
    }
}
@media (max-width: 500px) {
    .banners {
        margin: 0 -2.5px -5px;
    }
    .banner {
        padding: 0 2.5px 5px;
    }
}
@media (max-width: 350px) {
    .banner {
        width: 100%!important;
    }
}


/* Mobile sticky phone */
.mobile-sticky-area {
    position: fixed;
    bottom: 60px;
    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 {
    background: #7d8cff;
}
.mobile-sticky-whatsapp {
    background: #25ce25;
}
@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}


/* Mobile sidebar search */

.ajax-search-form-area {
    padding: 20px;
}
.ajax-search-form-area .form-element {
    padding: 0;
}
.ajax-search-form-area button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background: var(--main-color);
    color: white;
    font-size: 20px;
}
@media (min-width: 960px) {
    #mobile-sidebar-search {
        display: none;
    }
}



/* Games */
.product-games {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -5px -10px;
}
.product-game {
    width: 50%;
    padding: 0 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.1;
}
.pg-image {
    width: 75px;
}
.pg-image img {
    border: 1px solid #ddd;
    aspect-ratio: 1;
    object-fit: contain;
}
.pg-details {
    width: calc(100% - 90px);
}
.pg-name {
    font-weight: 600;
}
.pg-fps {
    background: var(--main-color);
    display: table;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.2;
}


/* Credit cards */
.payment-cards-area {
    margin-bottom: 20px;
}
.payment-cards-values {
    margin-bottom: 15px;
}
.payment-cards-value {
    display: none;
    font-size: 19px;
}
.payment-cards-value:first-child {
    display: block;
}
.payment-cards-values table {
    margin: 0;
}
.payment-cards-values table td {
    border: 0;
    background: white;
    padding: 5px 0;
}
.payment-cards-months {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
}
.payment-cards-month {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #f5f5f5;
    cursor: pointer;
    padding: 0 15px;
    line-height: 1;
    width: calc((100% - 12px) / 5);
    text-align: center;
}
.payment-cards-month:not(:last-child) {
    margin-bottom: 5px;
}
.payment-cards-month.active {
    background: var(--main-color);
    color: white;
}
.payment-card img {
    border-radius: 5px;
    width: 50px;
    margin-right: 15px;
}
.payment-card {
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    .payment-cards-area {
        width: 100%;
    }
    .payment-cards-months {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .payment-cards-values {
        width: 100%;
    }
    .payment-cards-month {
        font-size: 14px;
    }
}



/* Page */
@media (min-width: 800px) {
    .page-block {
        background: white;
        padding: 40px;
    }
}
.page-title {
    color: #96a0c0;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}



/* Product features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -15px -30px;
}
.product-feature {
    width: 50%;
    padding: 0 15px 30px;
}
.pf-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.pf-icon {
    width: 30px;
}
.pf-icon-details {
    width: calc(100% - 45px);
    line-height: 1.2;
}
.pf-icon-title {
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 3px;
}
@media (min-width: 767px) {
    .single-product-bottom-block {
        display: none;
    }
}
@media (max-width: 767px) {
    .single-product-top-block {
        display: none;
    }
}



/* Product */
.product-banner {
    width: 100%;
    display: flex;
    align-items: center;
}
.product-banner img {
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
}
.product-video {
    width: 700px;
    margin: 0 auto 20px;
    max-width: 100%;
}
.youtube-shorts-iframe {
    aspect-ratio: 3 / 5.3;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    display: table;
}
.youtube-embed-iframe {
    aspect-ratio: 16/9;
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    display: table;
}
@media (max-width: 767px) {
    .product-banner-block {
        display: none!important;
    }
}


/* Simple credit */
.simple-credit {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.simple-credit img {
    width: 50px;
    margin-right: 15px;
}


/* Send question */
.question-desc {
    margin-bottom: 15px;
    margin-top: -15px;
}


/* Guarantee */
#guarantee-form {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.guarantee-input {
    width: 100%;
    padding-right: 20px;
}
.guarantee-submit button {
    white-space: nowrap;
}
.guarantee-result {
    padding: 0 20px;
    color: black;
}
.heading-area {
    font-size: 24px;
}
.guarantee-result table td:first-child {
    font-weight: 600;
}
@media (max-width: 800px) {
    #guarantee-form {
        flex-wrap: wrap;
        padding: 0 0 30px;
    }
    .guarantee-input {
        margin-bottom: 15px;
        padding: 0;
    }
    .guarantee-submit, .guarantee-submit button {
        width: 100%;
    }
}



/* Bottom socials */
.bottom-socials {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.bottom-social {
    width: 25%;
}
.bottom-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    color: white;
    font-size: 19px;
}
.bs-phone a {
    background: var(--main-color);
}
.bs-whatsapp a {
    background: #26d367;
}
.bs-telegram a {
    background: #0088cc;
}
.bs-instagram a {
    background: #e44160;
}
.bs-menu {
    background: #4b4b80;
}
@media (max-width: 767px) {
    body {
        padding-bottom: 40px;
    }
}
@media (min-width: 767px) {
    .bottom-socials {
        display: none;
    }
}



/* Header mobile icons */
.header-mobile-actions {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 5px;
}
.header-mobile-icon {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}


/* Shipping details */
.shipping-details {
    background: #2282cc;
    padding: 20px 20px 20px 70px;
    margin: 30px 0 -25px;
    position: relative;
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.shipping-block {
    width: calc(50% - 40px);
}
.shipping-details i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 30px;
}
@media (max-width: 767px) {
    .shipping-block {
        width: 100%;
    }
}



/* FontAwesome */
.fa-solid:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
}
.fa-brands:before {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
}
.fa-facebook:before {
    content: "\f09a";
}
.fa-instagram:before {
    content: "\f16d";
}
.fa-youtube:before {
    content: "\f167";
}
.fa-x-twitter:before {
    content: "\e61b";
}
.fa-linkedin:before {
    content: "\f08c";
}
.fa-telegram:before {
    content: "\f2c6";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-tiktok:before {
    content: "\e07b";
}
.fa-check:before {
    content: "\f00c";
}
.fa-phone:before {
    content: "\f095";
}
.fa-bars:before {
    content: "\f0c9";
}



/* Header search */
#header-search-area {
    position: relative;
    width: 100%;
}
.header-search-form-element {
    position: relative;
}
.header-search-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #797c82;
    font-size: 20px;
}
.header-search-form-element input {
    border: 1px solid #ddd;
    height: var(--form-height);
    background: white;
}
.header-search-form-element input::placeholder {
    font-size: 17px;
    opacity: .75;
}
.header-search-form-element button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: var(--form-height);
    height: var(--form-height);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999999;
    background: transparent;
    transition: .15s all;
}
.header-search-form-element button:hover {
    color: #333333;
}
.header-search-results {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background: white;
    border: 1px solid #ddd;
    display: none;
    min-height: 100px;
}
.ajax-products {
    padding: 7.5px 0;
}
.ajax-product a {
    padding: 7.5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
}
.ajax-product a:hover {
    background: #f5f5f5;
    border: 1px solid black;
}
.ajax-product-image {
    width: 45px;
}
.ajax-product-details {
    width: calc(100% - 60px);
}
.ajax-product-title {
    line-height: 1.3;
    font-size: 16px;
    display: inline-block;
}
.ajax-product-price {
    font-weight: 700;
    font-size: 17px;
    white-space: nowrap;
}
.selected-keyword {
    font-weight: 700;
    color: #ee4839;
}
.all-results-button {
    background: var(--second-color);
    color: white;
    height: var(--form-height);
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}
.ajax-no-result {
    text-align: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1250px) {
    #header-search-area {
        position: absolute;
        top: 100%;
        left: -5vw;
        width: 100vw;
        background: var(--main-color);
        padding: 10px 5vw;
        overflow: hidden;
    }
    #header-search-area input {
        border: 0;
        height: 40px;
        background: #0f6dc2;
        border-radius: 5px;
        font-size: 14px;
        color: white;
    }
    #header-search-area input::placeholder {
        font-size: 14px;
        opacity: 1;
        color: white;
    }
    #header-search-area button {
        background: #1360a6;
        height: 40px;
        width: 40px;
        font-size: 20px;
        color: white;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .header-search-results {
        width: calc(100% - 10vw);
        top: calc(100% - 10px);
    }
    .ajax-product-title {
        font-size: 14px;
    }
    .ajax-product-price {
        font-size: 15px;
    }
}



/* Newsletter */
.newsletter-area {
    background: #3c3c3c;
    padding: 40px 0;
}
.n-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px -30px;
}
.n-block {
    width: 50%;
    padding: 0 15px 30px;
}
.n-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.n-icon {
    width: 60px;
}
.n-icon-details {
    width: calc(100% - 85px);
    font-size: 22px;
    line-height: 1.4;
}
.n-icon-desc {
    font-weight: 600;
}
.n-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n-element {
    width: 100%;
}
.n-element:first-child {
    padding-right: 15px;
}
.n-element button i {
    padding-left: 10px;
}
@media (max-width: 1050px) {
    .n-block {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .n-elements {
        flex-wrap: wrap;
    }
    .n-element:first-child {
        padding-right: 0;
        padding-bottom: 15px;
    }
}



/* Features */
.features-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
    padding: 30px 0;
}
.feature-block {
    width: 25%;
    padding: 0 15px 30px;
}
.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 12px;
    border: 1px solid #ddd;
}
.feature-icon-details {
    width: calc(100% - 75px);
}
.feature-main-heading {
    font-weight: 500;
    font-size: 18px;
}
@media (max-width: 760px) {
    .feature-block {
        width: 50%;
    }
}
@media (max-width: 450px) {
    .feature-block {
        width: 100%;
    }
}



/* Post categories */
.post-categories {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
    padding-bottom: 30px;
}
.post-category {
    padding: 0 10px 20px;
}
.post-category a {
    background: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    font-size: 16px;
}
.post-category a:hover, .active-post-category a {
    background: var(--main-color);
    color: white;
}



/* Price list */
.pc-title a {
    background: #f6f6f6;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
}
.pc-products {
    padding: 10px 20px;
}
.pc-product-item {
    display: flex;
    padding: 10px 0;
    line-height: 1.3;
}
.pc-product {
    width: 60%;
    padding-right: 15px;
}
.pc-product-price, .pc-product-code {
    width: 20%;
}
.product-price-list a:hover {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.main-pc .main-pc .pc-title > a {
    padding: 15px 35px;
}
.main-pc .main-pc .pc-products {
    padding: 10px 35px;
}
.product-list-order {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
#list-sort {
    background-color: #f8f8f8;
    height: 40px;
    line-height: 40px;
}
.pc-default-item {
    background: var(--main-color);
    color: white;
    padding: 15px 20px;
    font-weight: 500;
}


/* Sidebar catalog */
#sidebar .header-categories {
    padding: 20px 0 40px;
}
#sidebar .header-menu-area {
    position: relative;
    display: block !important;
    width: 100%;
    box-shadow: none;
}
#sidebar .header-categories-heading {
    width: 100%;
}


/* Credit page */
.credit-page-form-area {
    background: white;
    padding: 40px;
}
.credit-page-form-area input {
    height: 40px;
}
.credit-page-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
    padding-bottom: 40px;
}
.credit-page-block {
    width: 50%;
    padding: 0 15px 30px;
}
.credit-page-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.credit-page-thumbnail {
    width: 250px;
    max-width: 100%;
}


/* Home slider */
.slider-area {
    padding-top: 20px;
    padding-bottom: 40px;
}
.home-sliders {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}
.home-slider-1 {
    width: calc(100% - 260px);
}
.home-slider-2 {
    width: 250px;
}
.slider-video iframe {
    width: 255px;
    height: 450px;
}
.home-slider img {
    height: 450px;
}
.home-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    left: 20px;
}
.home-slider .swiper-pagination-bullet {
    border: 1px solid #fff;
    background: transparent;
}
.home-slider .swiper-pagination-bullet-active, .home-slider .swiper-pagination-bullet:hover {
    background: white;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 39%);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: .3s all;
}
.slider-nav:hover {
    background: rgb(0 0 0 / 69%);
}
.home-slider-1:hover .slider-nav {
    opacity: 1;
}
.home-slider-2:hover .slider-nav {
    opacity: 1;
}
.home-slider .swiper-button-prev {
    left: 20px;
}
.home-slider .swiper-button-next {
    right: 20px;
}
@media (max-width: 1250px) {
    .home-slider-2 {
        display: none;
    }
    .home-slider-1 {
        width: 100%;
    }
    .home-slider img {
        height: auto;
        object-fit: contain;
    }
}


/* Home brands */
.home-brands-area {
    background: white;
    padding: 20px 30px;
    margin-bottom: 40px;
}
.home-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -30px;
}
.brand {
    width: calc(100% / 7);
    padding: 0 15px 30px;
}
.brand img {
    height: 50px;
    object-fit: contain;
}
@media (max-width: 960px) {
    .home-brands-area {
        padding: 0;
    }
}
@media (max-width: 700px) {
    .brand {
        width: 25%;
    }
}



/* Compare */
.compare-table {
    margin: 0;
    font-size: 15px;
    width: auto;
    line-height: 1.3;
}
.cp-image {
    width: 200px;
    margin: 0 auto 15px;
}
.cp-title {
    text-align: center;
}
.cp-image img {
    aspect-ratio: 1;
    object-fit: contain;
    background: white;
}
.compare-feature-title-td {
    font-weight: 600;
}
.compare-feature-td {
    width: 250px;
}
.cp-remove {
    margin: 5px auto 10px;
    display: table;
    color: #d82323;
    padding: 0 10px;
    cursor: pointer;
}
.compare-table thead tr {
    vertical-align: top;
}



/* Canvas sidebars */
.cart-canvas-sidebar, .quick-canvas-sidebar, .ajax-canvas-search-sidebar {
    width: 350px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate3d(100%,0,0);
    background: white;
    z-index: 10000;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.active-canvas-sidebar {
    transform: none;
}
.canvas-header {
    color: white;
    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;
    padding: 0 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    background: var(--second-color);
}
.canvas-header-first {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 600;
}
.close-canvas-sidebar {
    position: relative;
    padding-right: 18px;
    cursor: pointer;
}
.close-canvas-sidebar:before, .close-canvas-sidebar:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    background: white;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
}
.close-canvas-sidebar:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-canvas-sidebar:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.close-canvas-sidebar:hover:before, .close-canvas-sidebar:hover:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
}
.cart-canvas-body {
    height: calc(100% - 80px);
}
.canvas-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.deactive-canvas-product {
    opacity: .5;
}
.canvas-product:last-child {
    border-bottom: 0;
}
.canvas-product-image {
    width: 90px;
}
.canvas-product-image a {
    background: #f5f5f5;
    display: block;
}
.canvas-product-image img {
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: white;
}
.canvas-product-details {
    width: calc(100% - 90px);
    padding-left: 15px;
}
.canvas-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
}
.canvas-product-title a {
    color: black;
}
.canvas-product-variation {
    color: #767676;
    margin-top: 5px;
}
.canvas-product-variation .variation-comma:first-child {
    display: none;
}
.remove-canvas-product {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: -5px;
    right: -20px;
    text-align: center;
    font-size: 24px;
    font-weight: 100;
    cursor: pointer;
    color: #ccc;
}
.canvas-variation-details {
    color: #454545;
}
.canvas-variation-details:last-child .canvas-variation-comma {
    display: none;
}
.canvas-product-qauntity {
    font-size: 14px;
    color: #999;
}
.cart-canvas-price-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;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    line-height: 1;
}
.cart-canvas-footer a {
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cart-canvas-cart {
    background: white;
    color: black;
}
.cart-canvas-cart:hover {
    background: var(--main-color);
    color: white;
}
.cart-canvas-footer-area {
    position: fixed;
    bottom: 0;
    height: 190px;
    background: white;
    padding: 0 15px;
    border-top: 1px solid #ddd;
    width: 350px;
}
.cart-canvas-products {
    height: calc(100% - 190px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 15px;
    min-height: --webkit-fill-avaliable;
}
.active-canvas-sidebar ::-webkit-scrollbar, .product-filters ::-webkit-scrollbar  {
    width: 3px;
}
.active-canvas-sidebar ::-webkit-scrollbar-track, .product-filters ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.active-canvas-sidebar ::-webkit-scrollbar-thumb, .product-filters ::-webkit-scrollbar-thumb {
    background: #888;
}
.active-canvas-sidebar ::-webkit-scrollbar-thumb:hover, .product-filters ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@media (max-width: 500px) {
    .cart-canvas-sidebar, .quick-canvas-sidebar, .ajax-canvas-search-sidebar, .cart-canvas-footer-area {
        width: 300px;
    }
}




/* END */