*,
*:before,
*:after {
    box-sizing: border-box;
    outline: none;
}

html {
    font-family: var(--font);
    font-size: var(--glutter);
    color: var(--color);
    line-height: 1.3;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    font-size: var(--font-size)!important;
    font-family: var(--font);
}

.container {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
#nav .container {
    width: var(--content-width) !important;

}
.container::before,
.container::after {
    content: none !important;
}

i,
em {
    font-family: var(--font-italic);
}

.medium>i,
i.medium,
.medium>em,
em.medium {
    font-family: var(--font-medium-italic);
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-bold);
}

b>i,
b>em,
strong>i,
strong>em,
h1>i,
h1>em,
h2>i,
h2>em,
h3>i,
h3>em,
h4>i,
h4>em,
h5>i,
h5>em,
h6>i,
h6>em,
.bold>i,
.bold>em {
    font-family: var(--font-bold-italic);
}

strong {
    font-family: var(--font-black);
}

p {
    margin-top: 0;
}

p:last-child,
p:last-of-type {
    margin-bottom: 0;
}

ul {
    margin: 0 !important;
}

.select {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: block;
    color: #333
}

.select.select-show-overflow {
    overflow: visible;
}

select {
    cursor: pointer;
    width: 100%;
    border: 0px;
    background: #fff;
    padding: 15px 0px 10px 10px;
    font-size: 16px;
    appearance: none;
    border-radius: 0
}

.select::after {
    background-color: var(--white);
    background-image: url(../../images/2024/icons/icon-select.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    width: 34px;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    z-index: 1;
    text-align: center;
    height: 100%;
    pointer-events: none;
}


.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    transition: 0.2s all ease-in-out;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 190px auto 0 auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.modal-open {
    overflow: hidden;
}

.modal-open:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.modal-open .modal {
    opacity: 1;
    visibility: visible;
}


@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

@media (max-width: 1380px) {
    #nav nav li.item-91578 .sub-menu>ul{
        width: 500px;
    }
}

#nav nav li.item-91578 ul.list-reset {
    max-width:500px;
}
/* Header - top bar */
.tb-inner {
    font-size: 1.06666667em;
    line-height: 1.1875;
    color: #fff;
    padding: 11px 0;
}

#topbar {
    font-size:14px;
}

/* Header - main nav */
#store-selector {
    font-size: 14px;
    padding: 0 0 0 48px;
    line-height: 26px;
}
#store-selector select {
    background-image: url('../../images/2025/icons/icon-nav-dropdown.png');
    background-image: image-set(url('../../images/2025/icons/icon-nav-dropdown.png') 1x, url('../../images/2025/icons/icon-nav-dropdown@2x.png') 2x);
    background-size: 12px 7px;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 0 0 0 8px;
    line-height: 23px;
    vertical-align: middle;
    width: auto;
    font-size: 0.875em;
}

#store-selector u {
    text-decoration: none;
}

header {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    --yellow: #FEF205;
    border-bottom-width: 2px !important;
}

header .container {
    position: relative;
}

header+main {
    margin-top: 123px;
}

header.with-topbar+main {
    margin-top: 160px;
}


#header-main {
    padding: 0 0 18px 0;
}

#header-main .topbar {
    font-size: 26px;
    line-height: 30px;
    padding: 4px 0;
}

#header-main .topbar span {
    font-size: 28px;
}

#header-main>.container {
    padding-top: 18px;
    width: var(--content-width) !important;
}

#header-main #logo {
    position: relative;
}

#header-main .side-nav-toggle {
    width: 32px;
    height: 26px;
}

#header-main .side-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #243D70;
}

#header-main #header-search {
    flex-basis: 299px;
    flex-shrink: 1;
    margin-left: 43px;
    order: 1;
}

#header-main #header-search form {
    max-width: 100%;
    height: 39px;
    border-radius: 50px;
    align-items: center;
    background-color: #fff;
    border-color: #DBDBDB;
}

#header-main #header-search button {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    margin-right: -1px;
    padding: 6px;
    outline: none;
}

#header-main #header-search input,
#header-main #header-search ::placeholder {
    font-size: 14px;
    line-height: normal;
}

#header-main #header-search ::placeholder {
    color: #8D8D8D;
}

#header-main #header-search input {
    text-indent: 5px;
    padding: 0 0 0 7px;
    margin: 0;
    flex-grow: 1;
    outline: none;
}

#header-main .button {
    height: 43.5px;
    padding-top: 1px;
    font-size: 16px;
    margin-right: 0px;
    padding: 0 13px;
    padding-top: 1px;
}

#header-main .separator {
    margin-right: 15px;
}

#header-main .button img {
    margin-right: 9px;
}

#header-main #rentals {
    font-size: 16px;
    padding-right: 21px;
    position: relative;
    margin-right: 20px;
}

#header-main #rentals:not(.no-after):after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #D6D6D6;
}

#header-main #rentals a:focus,
#header-main #rentals a:hover {
    text-decoration: none;
    color: var(--red);
    outline: none;
    outline-offset: 0;
}

#header-main .cart {
    margin: 0 0 0 30px;
    order: 2;
}

#header-main .quantity {
    visibility: hidden;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    font-size: 11px;
    top: -7px;
    right: -11px;
}

#header-main .quantity.visible {
    visibility: visible;
}

/* NAVIGATION */
#nav {
    border-color: #D6D6D6;
}

#nav nav {
    flex-shrink: 0;
    margin-left: 0;
    flex-grow: 1;
}

#nav nav>ul>li:not(.ml-auto) {
    margin-left: 1.1em;
    margin-right: 10px;
}

#nav nav>ul>li:first-child {
    margin-left: 0;
}

#nav nav>ul>li a {
    color: #000;
    font-size: 16px;
    text-decoration: none !important;
}

#nav nav>ul>li .sub-menu ul ul li>a {
    color: #4c4c4c;
}

#nav nav .sub-menu {
    overflow: hidden;
    position: absolute;
    top: 37px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    margin: 0;
    padding: 0;
    z-index: 3;
    border-top: 2px solid var(--yellow);
    border-left: 3px solid var(--yellow);
    white-space: nowrap;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
}
#nav .specials-discounts .sub-menu > ul {
    width: 250px;
}

#nav nav .sub-menu>ul {
    display: flex;
    margin: 19px 36px 61px 17px !important;
    gap: 25px 62px;
    width: 750px;
    flex-wrap: wrap;
}

#nav nav .sub-menu>ul>* {
    flex-shrink: 0;
}

#nav nav .sub-menu>ul li {
    line-height: 27px;
}

#nav .item-95988 .sub-menu ul.list-reset {
	flex-direction: column;
	max-width: 230px;
}

#nav nav .menu-item-has-children::before {
    content: '';
    background-image: url('../../images/2025/icons/icon-nav-dropdown.png');
    width: 12px;
    height: 7px;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 17px;
    pointer-events: none;
    background-repeat: no-repeat;
}

#nav nav .language-selector.menu-item-has-children::before {
    right: 20px;
    top: 21px;
}

#nav nav .acc_head.no-submenu:before {
    display:none !important;
}

#nav .language-selector {
    padding-left: 25px;
    padding-right: 40px;
    background-image: url('../../images/2024/icon-lang.png');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 15px;

}

#nav nav .menu-right {
    padding: 0;
    margin-left: auto;
}

#nav nav .menu-right li {
}

#nav nav .menu-right .secondary-languages {
    transform: translateY(97%);
}

#nav nav .menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

#nav nav .menu-item-has-children:hover .sub-menu ul {
    list-style: none;
    padding: 0;
}

#nav nav .sub-menu .menu-item {
    margin-left: 0;
    line-height: 30.5px;
    margin-bottom: 0;
}

#nav nav .sub-menu .menu-item li:first-child {
    font-family: 'Apertura-Black';
    font-size: 15px;
    position: relative;
}

#nav nav .sub-menu .menu-item a {
    position: relative;
}

#nav nav .sub-menu .menu-item li:first-child a::after,
#nav nav .sub-menu .menu-item>a::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 10px;
    top: 18px;
    right: -2px;
    background-image: url('../../images/2024/icons/nav-arrow.png');
    background-image: image-set(url('../../images/2024/icons/nav-arrow.png') 1x, url('../../images/2025/icons/nav-arrow@2x.png') 2x);
    background-size: contain;
    background-position: center;
}

image.pngimage.png #nav nav .sub-menu .menu-item a {
    position: relative;
    color: #000;
}

#nav nav .sub-menu .menu-item a:hover {
    text-decoration: none;
}

#nav nav .sub-menu img {
    max-width: 341px;
    object-fit: cover;
    object-position: left bottom;
}

#nav .button {
    width: 124px;
    height: 28px;
    line-height: 28px;
    border-radius: 14px;
    font-size: 16px;
    padding: 0;
}

#nav .button:hover {
    text-decoration: none;
}

@media screen and (min-width: 992px) {
    #nav nav>ul>li:first-child .sub-menu ul ul.menu-item:nth-child(2) {
        transform:translateX(20px)
    }

    #nav nav>ul>li:nth-child(2) .sub-menu ul ul.menu-item:nth-child(2) {
        transform:translateX(-25px)
    }
}


@media screen and (max-width: 992px) {
    #nav {
        border-top: none;
    }

    #nav nav .menu-item-has-children::before {
        display: none;
    }
}


/* Dropdown Menu */

/*!
* zeynepjs v2.2.0
* A light-weight multi-level jQuery side menu plugin.
* It's fully customizable and is compatible with modern browsers such as Google Chrome, Mozilla Firefox, Safari, Edge and Internet Explorer
* MIT License
* by Huseyin ELMAS
*/
.zeynep {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    top: 16px;
    width: 370px;
    transform: translateX(-354px) translateZ(0) translateY(34px);
    position: absolute;
    box-shadow: 0px 10px 7px 0px rgba(0, 0, 0, 0.35);
    height: calc(100vh - 156px);
    border-top: 1px solid #cbcbcb;

}

.zeynep .submenu:not(.no-transition),
.zeynep:not(.no-transition) {
    transition: all 250ms
}

.zeynep-overlay {
    background-color: rgba(0, 0, 0, .42);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1010
}

.zeynep.submenu-opened {
    overflow: hidden
}

.zeynep .submenu {
    bottom: 0;
    min-height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%
}

.zeynep .submenu p {
    margin: 0 0 10px;
}

.zeynep .submenu.opened {
    left: 0;
    pointer-events: auto;
    z-index: 1;
}

.zeynep .submenu.opened:not(.current) {
    overflow: hidden
}

.zeynep label {
    display: none !important;
}


/*# sourceMappingURL=zeynep.min.css.map */


/* zeynepjs menu styles */
.zeynep {
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px) translateZ(0) translateY(34px);
    transition: all 0.2s ease-in-out;
}

.zeynep.opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(-9px) translateZ(0) translateY(34px);
    z-index: 99;
}

.zeynep ul {
    list-style-type: none;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.zeynep ul>li:not(.language-selector) {
    display: block;
    text-align: left;
}

#nav .zeynep ul>li>a,
#nav .accordionjs .acc_section .acc_head {
    color: inherit;
    font-size: 17px;
    padding: 20px 30px 16px 15px;
    text-decoration: none;
    transition: all 150ms;
    color: #333;
    font-weight: 700;
}

#nav .zeynep li.item-all a {
    color: var(--red);
}

#nav .accordionjs .acc_section .acc_head.no-submenu {
    padding: 0;
}

#nav .accordionjs .acc_section .acc_head.no-submenu a {
    padding: 20px 30px 16px 15px;
    displaY: block;
}


.zeynep ul>li>a:not(.flex),
#nav .accordionjs .acc_section .acc_head {
    display: block;
}

.zeynep li.item-all a:not(.shopall) {
    border: 0;
}

.zeynep ul:not(.m-bottom)>li>a:hover,
#nav .accordionjs .acc_section .acc_head:hover {
    background-color: #efefef;
}

.zeynep ul>li:not(.language-selector)>a {
    border-bottom: 1px solid #c2c2c2;
}


/* zeynepjs submenu styles */
.zeynep .submenu {
    background-color: #ffffff;
    left: 370px;
}

.zeynep .submenu-header {
    background-image: url("../../images/2024/arrow-red.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-red.png") 1x, url("../../images/2024/arrow-red@2x.png") 2x);
    background-position: left 17px center;
    background-repeat: no-repeat;
    background-size: 15px 11px;
    border-bottom: solid 1px #c2c2c2;
    cursor: pointer;
    position: relative;
}

#nav .zeynep .submenu-header>a {
    color: inherit;
    display: block;
    font-size: 17px;
    padding: 18px 20px 18px 44px !important;
    padding-left: 54px;
    text-decoration: none;
    font-weight: 900;
    color: #000;
    background: transparent;
}

.zeynep li.has-submenu>a,
.zeynep li.item-all>a,
.zeynep li.nick-item>a {
    background-image: url("../../images/2024/arrow-red-r.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-red-r.png") 1x, url("../../images/2024/arrow-red-r@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: 15px 11px;
    background-position: right 20px center;
}

.zeynep li.item-all>a {
    text-transform: uppercase;
    color: #c23939;
}

/* nav accordion */
#nav .accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav .accordionjs .acc_section {
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    position: relative;
    z-index: 10;
    margin-top: -1px;
    overflow: hidden;
}

#nav .accordionjs .acc_section .acc_head {
    position: relative;
    background: #fff;
    display: block;
    cursor: pointer;
    user-select: none;
    background-image: url("../../images/2024/arrow-b.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-b.png") 1x, url("../../images/2024/arrow-b@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: 11px 7px;
    background-position: right 22px center;
}

#nav .accordionjs .acc_section .acc_head.no-submenu {
    background-image: none !important;
}

#nav #trigger-categs>a {
    background-image: url("../../images/2024/arrow-b-black.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-b-black.png") 1x, url("../../images/2024/arrow-b-black@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: 11px 7px;
    background-position: right center;
    padding-right: 15px;

}

.zeynep-opened #nav #trigger-categs>a {
    color: #c23939;
    background-image: url("../../images/2024/arrow-b.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-b.png") 1x, url("../../images/2024/arrow-b@2x.png") 2x);
}

#nav .accordionjs .acc_section .acc_head a {
    font-size: 16px;
    color: #333333;
    font-weight: 700;
    text-decoration: none;
}

#nav .accordionjs .acc_section .acc_content {
    padding-left: 52px;
    padding-top: 10px;
}

#nav .accordionjs .acc_section .acc_content a {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    padding-bottom: 10px;
    display: block;
    line-height: 24px;
}

#nav .accordionjs .acc_section .acc_content.level-3 a {
    font-weight: 700;
}

#nav .accordionjs .acc_section.acc_active>.acc_content {
    display: block;
}

#nav .accordionjs .acc_section.acc_active .acc_head {
    background-image: url("../../images/2024/arrow-b-white.png");
    background-image: -webkit-image-set(url("../../images/2024/arrow-b-white.png") 1x, url("../../images/2024/arrow-b-white@2x.png") 2x);
}

#nav .acc_section.acc_active,
#nav .accordionjs .acc_section.acc_active>.acc_head {
    background-color: #000;
}

#nav .acc_section.acc_active *,
#nav .acc_section.acc_active a {
    color: #fff !important;
}

#nav .onlymobile {
    display: none;
}


#trigger-categs-m {
    width: 31px;
    height: 25px;
    position: relative;
}

#trigger-categs-m span {
    display: block;
    width: 100%;
    height: 3px;
    background: #414344;
    transform: translateY(11px);
}

#trigger-categs-m:before {
    width: 100%;
    height: 3px;
    background: #414344;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
}

#trigger-categs-m:after {
    width: 100%;
    height: 3px;
    background: #414344;
    bottom: 0;
    left: 0;
    content: '';
    position: absolute;
}

#nav .triggetcategsm {
    left: 15px;
    top: 12px;
}

.nav-fixed #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.27);
    background: #fff;
    z-index: 9;
}

.nav-fixed #page {
    margin-top: 100px;
}

@media screen and (min-width: 992px) {

    .zeynep>ul>li:first-child,
    .zeynep .submenu-header {
        box-shadow: inset 0px 7px 7px -7px rgba(0, 0, 0, 0.24);
    }
}

@media screen and (max-width: 1310px) {
    #nav .center>ul.list-inline>li {
        margin-right: 15px;
    }

    #nav .center>ul.list-inline>li>a,
    #nav .center>ul.list-inline>li>a:hover {
        font-size: 12px;
    }
}

@media screen and (max-width: 1220px) {
    #nav .left {
        margin-right: 0;
    }

    #nav .center>ul.list-inline>li>a,
    #nav .center>ul.list-inline>li>a:hover,
    #nav .search-cont #search-bar input {
        font-size: 11px;
    }

    #nav .center>ul.list-inline>li:last-child {
        margin-right: 25px;
    }
}

@media screen and (max-width: 991px) {
    #topbar {
        font-size:11px;
    }
    .zeynep .submenu {
        left: 100%;
    }

    .zeynep-opened body,
    .zeynep-opened {
        overflow: hidden;
    }

    .zeynep .m-bottom a {
        color: #fff !important;
    }

    header #nav #trigger-categs>a {
        display: none;
    }

    header #nav .center {
        position: absolute;
        left: 0;
        width: 100%;
        top: calc(100% - 31px);
    }

    header #nav .center .list-inline>li {
        display: none;
    }

    header #nav .center .list-inline>li#trigger-categs {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
    }

    header #nav .right {
        display: inline-block;
    }

    header #nav .left {
        display: inline-block;
        padding-left: 10px;
    }

    header {
        position: relative;
    }

    .menu-item-has-children.full-height.relative {
        position: static;
    }

    .zeynep {
        left: 0;
        max-width: 100%;
        width: 576px;
        top: -34px;
    }

    .zeynep.opened {
        transform: translateX(0) translateZ(0) translateY(34px);
    }

    header #nav .container {
        padding: 0 15px;
    }

    header {
        overflow: visible;
    }

    header #nav .search-cont {
        text-align: center;
        position: absolute;
        bottom: 11px;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0 15px;
    }

    #nav .search-cont #search-bar input {
        font-size: 12px;
        height: 32px;
        line-height: 32px;
        padding: 0 15px;
        width: 100%;
        max-width: 400px;
    }

    #nav .search-cont #search-bar button {
        right: 6px;
        top: 3px;
    }

    header #nav .search-cont form {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    #nav .left {
        width: 109px;
    }

    #nav .cart-item .badge {
        margin-top: -3px !important;
        margin-left: -17px !important;
    }

    #nav .onlymobile {
        display: block;
    }

    #nav .right .location-link,
    #nav .right .pay-link {
        margin-left: 10px;
        font-size: 20px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #464646;
        border-radius: 50%;
    }

    #nav .right .pay-link {
        background-color: red;
        color: #fff !important;
    }

    #nav .m-bottom {
        background: var(--red)
    }

    #nav .m-bottom a,
    #nav .m-bottom strong,
    #nav .m-bottom span {
        color: #fff;
        font-weight: 500;
    }

    #nav .m-bottom li.payment a {
        padding-left: 50px !important;
    }

    .zeynep .m-bottom>li:not(.language-selector)>a {
        border-bottom: 1px solid #fff;
    }

    #nav .m-bottom .user a {
        background: url("../../images/2024/icon-user.png") no-repeat left 26px center;
    }

    #nav .m-bottom .wishlist a {
        background: url("../../images/2024/icon-wishlist.png") no-repeat left 26px center;
    }

    #nav .m-bottom .payment a {
        background: url("../../images/2024/icon-payment.png") no-repeat left 15px center;
    }

    #nav .m-bottom .contact a {
        background: url("../../images/2024/icon-phone.png") no-repeat left 26px center;
    }

    #search-bar {
        position: relative;
    }

    header nav li {
        position: static;
    }

    #top-bar .container.xs-hide {
        flex-direction: column;
    }

    #top-bar .links {
        margin-left: 0;
        margin-top: 10px;
        gap: 30px;
    }

    #top-bar .links a {
        margin-left: 0;
    }

}

@media screen and (min-width: 481px) {
    #nav .only-ab {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    #nav .cart-item .badge {
        margin-top: 10px !important;
        margin-left: -17px !important;
    }

    #nav .cart-item {
        top: 2px;
        right: 0;
        margin-right: -15px;
    }

    header #nav .zeynep {
        height: calc(100vh - 118px);
        padding-bottom: 150px;
    }

    body.nav-fixed header #nav .zeynep {
        height: calc((var(--vh, 1vh) * 100) - 100px);
        padding-bottom: 80px;
    }

    .zeynep ul>li>a,
    #nav .accordionjs .acc_section .acc_head,
    .zeynep .submenu-header>a,
    #nav .accordionjs .acc_section .acc_head a,
    #nav .accordionjs .acc_section .acc_content a {
        font-size: 17px;
    }

    .zeynep .submenu-header>a,
    .zeynep ul>li>a,
    #nav .accordionjs .acc_section .acc_head {
        padding: 15px 30px 15px 17px;
    }

    /* Safari Only */
    @supports (background: -webkit-named-image(i)) {

        .zeynep .submenu-header>a,
        .zeynep ul>li>a,
        #nav .accordionjs .acc_section .acc_head {
            padding: 18px 30px 13px 17px;
        }
    }

    .zeynep .submenu-header,
    #nav .m-bottom a {
        background-position: left 17px center !important;
    }

    #nav .m-bottom a {
        background-size: auto 35% !important;
    }

    .zeynep .submenu-header>a,
    #nav .m-bottom a {
        padding-left: 16px !important;
    }

    #nav .ridesafeimg {
        width: 125px;
    }

    header #nav .right ul li {
        border: 0;
    }

    #nav .cart-item {
        width: auto !important;
    }

    #nav a.language,
    #nav .current-language {
        padding: 10px 13px !important
    }

    #nav .language-selector {
        background-size: 20px;
        padding-left: 30px;
    }

    #nav .language-selector * {
        font-size: 17px;
    }

    #nav .language-selector strong:not(.current-language) {
        font-size: 0;
        display: inline-block;
        height: 17px;
        width: 3px;
        background: #fff;
    }

    #nav .m-bottom * {
        font-weight: 700 !important;
    }

    #nav .m-bottom .titan {
        font-weight: 400 !important;
    }

}


/* Footer */
footer {
    font-size: 13px;
    background-color: #222222;
}

footer .title {
    font-size: 14px;
    margin-bottom: 16px;
    width: 100%;
}

footer .hours p {
    padding-top: 4px;
}

footer .select::after {
    background-size: 10px;
    width: 43.5px;
    background-color: transparent;
    background-image: url('../../images/2025/icons/icon-nav-dropdown.png');
    background-image: image-set(url('../../images/2025/icons/icon-nav-dropdown.png') 1x, url('../../images/2025/icons/icon-nav-dropdown@2x.png') 2x);
}

footer select {
    font-size: 14px;
    line-height: 17.5px;
    padding: 10px 0px 7px 16px;
    color: #222;
}
footer .selectric {
    background-color: #fff;
}

footer #social {
    margin-top: 26px;
    margin-bottom: 33px;
}

footer a:hover {
    color: var(--light-blue);
}

footer ul li a {
    padding-top: 4px !important;
}

footer strong {
    font-family: 'Poppins';
    font-weight: 700;
}

#footer-nav li {
    line-height: 1.5;
}

footer #copyright {
    font-size: 15px;
    border-top-color: #707070;
    padding-top: 35px;
    padding-bottom: 32px;
    margin-top: 20px;
}

.footer-disclaimer {
    font-size: 14px;
    background-color: #ebebeb;
}

/* Hero: */
/* @media screen and (min-width: 767px){
	body:not(.home) #hero {
		height:290px
	}
}

@media screen and (max-width: 567px){
	body:not(.home) #hero .hero-inner {
		padding:50px 0
	}
	body:not(.home) #hero h1 {
		margin-top:0
	}
} */
/* Footer Newsletter */
#newsletter {
    padding-top: 7px;
    padding-bottom: 3px;
    margin-top: 60px;
    background-color: var(--red);
    background-image: url('../../images/2024/newsletter-bg.png');
    background-image: image-set(url('../../images/2024/newsletter-bg.png') 1x,
            url('../../images/2024/newsletter-bg@2x.png') 2x);
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 12px solid var(--light-blue);
}

#newsletter .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#newsletter p {
    font-size: 55px;
    line-height: 1;
    margin-bottom: 2px;
}

#newsletter .sub {
    font-size: 18px;
    line-height: 23px;
}

#newsletter .text-right {
    margin: 11px 0;
    width: 521px;
}

#newsletter form {
    width: 496px;
    max-width: 100%;
    height: 45px;
    margin: 6px 0 0 9px;
    padding-left: 80px;
    padding-right: 8px;
}

#newsletter form input,
#newsletter form button {
    outline: none;
    appearance: none;
    border-radius: 0
}

#newsletter form input,
#newsletter ::placeholder {
    color: #222;
    font-weight: 100;
    line-height: 45px;
}

#newsletter ::placeholder {
    text-transform: capitalize;
}

#newsletter form input {
    flex-grow: 1;
    text-indent: 17px;
    padding: 0;
    margin: 0;
    border: 1px solid #707070;
    border-right: none;
}

#newsletter form button {
    width: 102px;
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    #newsletter {
        padding: 0 0 31px;
    }

    #newsletter .container {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }

    #newsletter .container>div {
        width: 100%;
        text-align: center;
    }

    #newsletter form {
        padding: 0;
    }

    #newsletter .image {
        position: relative;
        order: 1;
    }

    #newsletter form {
        margin: 0 auto;
    }

    #newsletter .text-right {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0;
        position: relative;
        order: 2;
        margin-top: 27px;
        margin-bottom: 15px;
    }

    #newsletter .text-right img {
        margin-top: -57px;
        margin-bottom: 20px;
    }

    #newsletter .container div:nth-child(3) {
        position: relative;
        order: 3;
    }

    #newsletter .image img {
        width: 90px;
        height: auto;
        transform: translate(1px, 14px);
    }
}

@media screen and (max-width: 567px) {
    #newsletter {
        background-size: cover;
        margin-top: 0;
    }

    #newsletter .container>div:first-child {
        margin-top: 41px;
        margin-bottom: 19px;
    }

    #newsletter p {
        font-size: 49px;
        line-height: 0.8;
        margin: 0 auto;
    }

    #newsletter .col-6 {
        padding: 0;
        margin-bottom: 0;
    }

    #newsletter .col-6:last-of-type {
        margin-top: 10px;
    }

    #newsletter .sub {
        font-size: 17px;
        line-height: 20px;
        margin: 18px auto 0 auto;
        max-width: 230px;
    }

    #newsletter form input {
        padding: 0;
        height: 44px;
        font-size: 16px;
    }

    #newsletter form button {
        height: 44px;
        line-height: 44px;
        font-size: 21px;
        max-width: 86px;
    }

    footer>.flex>div:last-child {
        max-width: unset;
    }

    footer .title {
        text-align: left;
    }
}

/* Products */
.products-details {
    padding: 0 35px;
}

.products-details .products-title {
    font-size: 1em;
    line-height: 20px;
}

.products-details span {
    font-size: 26px;
}

.products-details i {
    font-size: 1em;
    color: #000000;
}

.products-details p {
    font-size: 0.875em;
    color: #00aeef;
    margin-top: 12px;
}

.products-image {
    flex-grow: 1;
}

[data-quick] {
    color: #fff;
    padding: 10px 25px 9px;
    font-size: 0.875em;
    z-index: 1;
}

.on-hover {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
}

.hover-box:hover .on-hover {
    opacity: 1;
    visibility: visible;
}

/* Popups */
body.scolllock-on {
    width: 100%;
    overflow: hidden;
}

#panel header {
    z-index: 999;
    position: relative;
}

.popup {
    width: 100%;
    height: var(--full-height);
    z-index: 998;
    overflow: auto;
}

.popup-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, .7);
    z-index: -1;
}

.popup-content {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    max-width: 100%;
}

.popup-inner {
    max-width: 100%;
}

.popup-close {
    width: 10px;
    height: 15px;
    top: 24px;
    right: 20px;
    z-index: 6;
}

.popup-close:before,
.popup-close:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 21px;
    background-color: #a1a1a1;
    transform: rotate(45deg);
}

.popup-close:after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 567px) {
    .popup-close {
        top: 15px;
        right: 12px;
    }
}

/* Forms */
.form-field {
    padding: 10px 15px;
    flex: 1;
}

.form-field input,
.form-field select {
    height: 50px;
    width: 100%;
    text-indent: 19px;
    padding: .2em 0 0;
}

.form-field select {
    appearance: none;
}

.form-field input,
.form-field select,
.form-field ::placeholder {
    font-size: 1em;
    color: var(--darker-gray);
}

.form-field ::placeholder {
    opacity: 1;
}
.form-field label {
    pointer-events: none;
}
.form-action {
    padding-top: 14px;
}

.form-action [type="submit"].button {
    color: #fff;
    padding: 10px 29px 9px;
    font-size: 0.875em;
}

/* Forms - checkout */
.checkout-step .form-field {
    padding: 0;
    margin-bottom: 24px;
}

.checkout-step .form-field input,
.checkout-step .form-field select {
    height: 45px;
}

.checkout-step .form-field input:focus,
.checkout-step .form-field select:focus,
select.form-control:focis {
    border-color: var(--red);
}

.form-field input,
.form-field select,
select.form-control {
    font-size: 15px;
    color: #000;
}

.form-field select,
select.form-control {
    background-size: 13px 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-image: url(../../images/2024/icons/icon-down-arrow.png);
}

.form-field select.double-arrow {
    background-size: 11px 23px;
    background-position: calc(100% - 15px) center;
    background-image: url(../../images/2024/icons/icon-double-arrow-gray.png);
}

/* Product */
.price {
    line-height: 1;
    margin: -0.22em auto 0;
}

.price-main {
    font-size: 1em;
}

.price-main sup {
    font-size: 55%;
    position: absolute;
    top: 31px;
    left: -34px;
}

.price-main .period {
    font-size: 56%;
    top: 45px;
    position: relative;
    left: -4px;
}

.price-weekly {
    font-size: 17.777%;
    color: #000;
}

/* Breadcrumb */
#breadcrumb {
    padding-top: 22px;
}

#breadcrumb * {
    text-decoration: none;
    font-size: 12px;
    line-height: 2;
}
#breadcrumb *:not(.sep) {
    color: #000;
}

#breadcrumb .container {
    --content-width: 1310px;
}

.products-slider.swiper-container {
    padding: 30px 15px;
    margin: -30px -15px;
}


#nav .language-selector {
}

#nav .secondary-languages {
    transform: translateY(100%);
    display: none;
}

#nav .language-selector:hover .secondary-languages {
    display: block;
}
#nav .secondary-languages a {
    padding: 12px 0;
    background-color: white;
    line-height: 1;
    font-size: 0;
}
@media screen and (max-width: 1199px) {

    #top-nav #store-selector,
    #header-main #logo {
        padding-left: 0;
    }

    #header-main #rentals {
        font-size: 16px;
    }

    #header-main #header-search {
        flex-basis: 200px;
        margin-left: 15px;
    }
    #header-main .cart {
        margin-left: 15px;
    }

    #store-selector {
        padding-left: 15px;
    }

    #header-main #logo img {
        height: auto;
    }

    #header-main nav li {
        margin-left: 1.5em;
    }

    #nav nav li a {
        font-size: 14px
    }

    footer .col-3 {
        width: 50%;
        max-width: 300px
    }

    #nav .container {
        padding-right: 0;
    }

}

@media screen and (max-width: 991px) {
    body {
        font-size: 15px;
    }

    #nav nav ul {
        margin: 0;
    }

    #header-main #header-search {
        margin-left: auto;
        margin-right: 0;
    }

    #footer-nav>.flex:not(#social) {
        flex-direction: column
    }

    #footer-nav .col-4,
    #footer-nav .col-5,
    #footer-nav .col-6 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    #footer-nav>.flex>.col-5:last-child {
        margin-top: 30px
    }

    #header-main #logo {
        margin-right: 0.5em;
    }
}

@media screen and (max-width: 767px) {
    footer>.flex {
        flex-direction: column
    }

    footer>.flex>div {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    footer>.flex>div:last-child {
        order: -1;
    }

    footer>.flex>div:last-child .title {
        margin-top: 33px;
    }

    footer .col-3 .select {
        text-align: left;
    }

    footer .col-3,
    #copyright {
        text-align: center
    }

    footer .col-3 .flex {
        justify-content: center
    }

    footer .col-3 {
        margin-left: auto;
        margin-right: auto
    }

    footer .select {
        border: 1px solid #707070;
        margin-top: 0;
        margin-bottom: 25px;
    }

    footer .flex .col-5 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    header {
        overflow: visible;
        position: relative;
    }

    header+main,
    header.with-topbar+main {
        margin-top: 0;
    }

    #header-main {
        padding: 0;
    }

    #header-main #logo {
        margin-left: 12px;
        top: 0;
    }

    #store-selector {
        padding-left: 0;
    }

    #header-main #logo img {
        height: auto;
    }

    #sub-category-hero {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .tb-inner {
        padding: 9px 0;
        line-height: 1.125;
    }

    #header-main .container {
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 19px;
    }

    #header-main #header-search {
        flex-basis: 100%;
        order: 4;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    #store-selector {
        order: 5;
    }

    #header-main #rentals {
        display: none;
    }

    #header-main .cart {
        order: 2;
    }

    #header-main .icon-pay {
        order: 6;
        width: 31px;
        height: 31px;
        font-size: 22px;
    }

    #header-main #side-nav-toggle-left {
        display: flex;
        margin-top: -10px;
    }

    .header-icons {
        margin-top: 5px;
    }

    .header-icons .list-reset li:not(:first-child) {
        margin-left: 13px;
    }

    .form-field {
        padding: 10px;
    }

    .form-field input,
    .form-field select {
        height: 45px;
    }

    .products-details {
        padding: 0 10px;
    }

    .products-details .products-title {
        font-size: 0.875em;
        line-height: 1.333;
        margin-bottom: 5px;
    }

    .products-details .products-title br {
        display: none;
    }

    .products-details span {
        font-size: 1em;
    }

    .products-details i {
        font-size: 0.66em;
    }

    .products-details p {
        font-size: 0.6em;
        margin-top: 9px;
    }

    footer {
        padding: 29px 0 !important;
    }

    footer .title {
        margin-bottom: 12px;
    }

    #footer-nav li {
        line-height: 20px;
    }

    #breadcrumb {
    }

    .bc-inner {
        padding-top: 24px;
    }

    .products-slider-control {
        top: 50%;
        z-index: 1;
        width: 100%;
        left: 0;
        margin-top: -19px;
        pointer-events: none;
    }

    .products-slider-control .swiper-button-next,
    .products-slider-control .swiper-button-prev {
        pointer-events: all;
        margin: 0 15px;
        background-color: #fff;
    }

    .checkout-step .form-field {
        margin-bottom: 14px;
    }

    .checkout-step .form-field input,
    .checkout-step .form-field select {
        text-indent: 15px;
        font-size: 15px;
    }

    .form-field input,
    .form-field select {
        font-size: 1em;
    }

    .form-field select.double-arrow {
        background-size: 10px 21px;
    }
}

@media screen and (max-width: 567px) {

    .button {
        font-size: 20px;
        height: 50px;
        line-height: 50px;
    }

    #footer-nav>.flex:not(#social) {
        border-bottom: 1px solid #FFFFFF;
    }

    #footer-nav p {
        font-size: 1.125em;
        padding: 15px 0;
        border-top: 1px solid #FFFFFF;
        cursor: pointer;
        position: relative;
    }
    #footer-nav p:after {
        content: '';
        display: block;
        width: 14px;
        height: 8px;
        position: absolute;
        right: 5px;
        top: 50%;
        margin-top: -4px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../../images/2025/icons/icon-footer-toggle.png');
        background-image: image-set(url('../../images/2025/icons/icon-footer-toggle.png') 1x, url('../../images/2025/icons/icon-footer-toggle@2x.png') 2x);
    }

    #footer-nav p ~ ul {
        display: none;
    }
    footer .title {
        margin-bottom: 0;
    }
    #footer-nav>.flex>.col-5:last-child {
        margin-top: 0;
    }
    footer #social {
        margin-top: 40px;
        margin-bottom: 25px;
    }
    footer #copyright {
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
        font-size: 18px;
        padding-bottom: 8px;
    }
    footer #copyright p.flex {
        flex-direction: column;
        font-size: 14px;
        align-items: center;
    }
    footer #copyright p.flex img {
        margin-bottom: 11px;
        width: 98px;
    }
    .footer-disclaimer {
        font-size: 0.75em;
        line-height: 1.41666667;
    }
}

.accordionjs .acc_section,
.accordionjs .acc_section .acc_head {
    border: none !important;
}

.accordionjs .acc_section {
    border-top: 1px solid #c7c7c7 !important;
    border-bottom: 1px solid #c7c7c7 !important;
}

.accordionjs .acc_section.acc_active>.acc_head {
    background: transparent !important;
}

.price-round {
    width: 107px;
    height: 107px;
    right: 8px;
    top: -24px;
    font-size: 1.75rem;
    line-height: 15px;
}

.price-round sup {
    top: -.52em;
    font-size: 60%;
}

.price-inner {
    font-size: 35.5px;
    position: relative;
    top: 5px;
    z-index: 3;
}

.price-round .month {
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 991px) {
    .item:last-child .price-round {
        right: -10px;
    }
}

@media screen and (max-width: 567px) {
    .arrowlink::after {
        top: 50%;
        transform: translateY(-50%);
    }

    #nav nav .menu-item-has-children .acc_active a::before {
        right: 20px;
        top: 24px;
    }

    .zeynep ul:not(.m-bottom)>li>a:hover,
    #nav .accordionjs .acc_section .acc_head:hover {
        background-color: #fff;
    }

    header+main,
    header.with-topbar+main {
        margin-top: 201px;
    }

    header {
        position: fixed;
    }
    #header-main #header-search {
        margin-bottom: 0;
    }
    #store-selector {
        transition: all 0.5s;
        position: relative;
        margin-top: 12px;
        width: 100%;
    }
    .scrolled #store-selector {
        margin-top: -32px;
    }
}



@media screen and (min-width: 992px) {

    #nav ul.list-reset>li:not(.block) {
        height: 100%;
        display: flex;
        align-items: center;
    }

    #nav nav .sub-menu {
        top: 44px;
    }

    #nav nav>ul>li a {
        font-size: 16px;
        padding-right: 20px;
        padding-top: 12px;
        padding-bottom: 11px;
    }

}


@media screen and (min-width: 992px) and (max-width: 1300px) {
    #nav nav>ul>li a {
        font-size: 13px;
    }

    #nav nav>ul>li:not(.ml-auto) {
        margin-left: 0.5em;
        margin-right: 5px;
    }
}