@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', sans-serif;
    color: #000;
    height: 100%;
    overflow: auto;
}

a,
button {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    a,
    button {
        cursor: default !important;
        border: none;
        outline: none;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .header .menu > ul > li .menu-subs {
        right: 0;
    }
    .header .menu > ul > li .menu-subs {
        width: 100% !important;
    }
}



.global-header {
    visibility: visible;
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
/* Added from mark.css for header.blade.php dependencies */
html.cart-active {
    margin-right: 15px;
}

.content-wrapper.cart-active::before {
    content: '';
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 11;
}

body.cart-active {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
}

.content-wrapper {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-backface-visibility: hidden;
    opacity: 1;
}

.content-wrapper.cart-active {
    -webkit-transform: translate(-21em, 0px);
    -moz-transform: translate(-21em, 0px);
    -o-transform: translate(-21em, 0px);
    -ms-transform: translate(-21em, 0px);
    transform: translate(-21em, 0px);
    opacity: 0.35;
}

.header.cart-active {
    -webkit-transform: translate(-21em, 0px);
    -moz-transform: translate(-21em, 0px);
    -o-transform: translate(-21em, 0px);
    -ms-transform: translate(-21em, 0px);
    transform: translate(-21em, 0px);
    opacity: 0.35;
}

.global-header.cart-active {
    -webkit-transform: translate(-21em, 0px);
    -moz-transform: translate(-21em, 0px);
    -o-transform: translate(-21em, 0px);
    -ms-transform: translate(-21em, 0px);
    transform: translate(-21em, 0px);
    opacity: 0.35;
}

.global-header {
    height: 40px;
    background-color: #fff;
    border-bottom: 1px solid #D0D0D0;
}

.global-header-left {
    position: absolute;
    left: 0;
    height: 40px;
    padding: 0;
}

.global-header-right {
    position: absolute;
    right: 0;
    height: 40px;
    padding: 0;
}

ul.global-header-left li {
    height: 39px;
    display: inline-block;
    float: left;
    padding: 0 10px;
    width: 100px;
    border-right: 1px solid #D0D0D0;
}

ul.global-header-right li {
    height: 40px;
    display: inline-block;
    padding: 10px;
}

ul.global-header-right li {
    height: 39px;
    display: inline-block;
    padding: 5px 15px;
    width: 100px;
    border-left: 1px solid #D0D0D0;
    opacity: .75;
}

ul.global-header-left li:first-child {
    height: 39px;
    display: inline-block;
    padding: 13px 10px;
    border-right: 1px solid #D0D0D0;
    opacity: 1;
    width: 160px;
    float: left;
}

ul.global-header-right li img.inactive-site {
    opacity: .6;
}

ul.global-header-right li img.inactive-site:hover {
    opacity: .9;
}

ul.global-header-left li img.active-site {
    opacity: 1;
}

.language-dropdown {
    z-index: 99999;
    background-color: #fff;
    position: absolute;
    height: auto;
    width: 159px;
    left: 0px;
    font-size: 8pt;
}

.language-dropdown ul {
    margin: 0;
    padding: 10px 0;
}

.language-dropdown ul li {
    padding: 10px 10px;
}

.language-dropdown img {
    margin-top: -3px;
}

.language-dropdown a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
}

.language-dropdown ul li:hover {
    background-color: #FF10A4;
    cursor: pointer;
}

.language-dropdown ul li:hover a {
    color: #fff;
}

.active-global-site {
    font-size: 8pt;
}

.active-global-site i {
    float: right;
    padding: 2px 0;
    color: #aaa;
}

.active-global-site img {
    margin-top: -3px;
}

a.view-all {
    letter-spacing: 0.75px;
    color: #999;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a:hover.view-all {
    text-decoration: none;
    color: #000;
}

/* Added from mark.css/style.css for footer.blade.php dependency */
.slinky-pink {
    color: #FF10A4;
}

.footer label span {
    padding-top: 1px;
    display: block;
    letter-spacing: 0;
}

.footer label.checkbox-inline {
    margin-top: 8px;
}

a.signupModal {
    text-decoration: none !important;
}

.collector-fieldset {
    text-align: center;
}

.collector-button {
    display: inline-block;
    margin-top: 10px;
    width: auto;
}

.collector-alert {
    padding: 15px 0;
}

#newsletter-first_name,
#newsletter-last_name,
#newsletter-email {
    font-size: 12pt;
}

.footer {
    background-color: #FFF;
    padding: 0;
    font-family: 'Gotham SSm A', 'Gotham SSm B', sans-serif;
    font-size: 12pt;
    width: 100%;
}

.footer a {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-backface-visibility: hidden;
}

.footer a:hover {
    color: #FF10A4;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-backface-visibility: hidden;
}

.footer .footer-right a:hover {
    text-decoration: none;
}

.footer h4 i {
    font-size: 18pt;
}

.footer .container {
    padding: 0;
    width: 100%;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li a {
    color: #999;
    line-height: 1.6em;
    font-size: 10pt;
}

.footer-left {
    margin: 40px 0 0 0;
}

.footer-right h4 {
    text-align: center;
    color: #000;
}

.footer-right .contact-phone h4 {
    text-align: center;
    color: #000;
    font-family: 'Gotham SSm A', 'Gotham SSm B', sans-serif;
    font-weight: 300;
}

a.store-locator {
    background: url("../images/store-locator-bg.jpg") center center;
    height: 190px;
    -webkit-background-size: 756px 320px;
    -moz-background-size: 756px 320px;
    -o-background-size: 756px 320px;
    background-size: 756px 320px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-backface-visibility: hidden;
    background-position: center;
}

a.store-locator:hover {
    -webkit-background-size: 808px 342px;
    -moz-background-size: 808px 342px;
    -o-background-size: 808px 342px;
    background-size: 808px 342px;
    background-position: center;
}

.contact-phone {
    height: 190px;
}

.social-tile,
.footer-tile {
    float: left;
    position: relative;
    width: 20%;
    padding-bottom: 20%;
    margin: 0;
    overflow: hidden;
    background-color: #F4F4F4;
    color: #C2C2C2;
    font-size: 21pt;
}

.footer-tile {
    width: 50%;
    background-color: #fff;
}

.social-tile:nth-child(even) {
    background-color: #EBEBEB;
}

.social-tile .content,
.footer-tile .content {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 10% 5%;
}

.social-tile .table,
.footer-tile .table {
    display: table;
    height: 100%;
    width: 100%;
}

.social-tile .table-cell,
.footer-tile .table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    text-align: center;
}

.social-tile .table-cell img,
.footer-tile .table-cell img {
    height: 28px;
    opacity: 0.3;
}

a.social-tile:visited {
    color: #C2C2C2;
}

a.social-tile:active {
    color: #C2C2C2;
}

a.social-tile.youtube:hover,
a.social-tile.youtube:active {
    color: #FF10A4;
}

a.social-tile.twitter:hover,
a.social-tile.twitter:active {
    color: #FF10A4;
}

a.social-tile.facebook:hover,
a.social-tile.facebook:active {
    color: #FF10A4;
}

a.social-tile.googleplus:hover,
a.social-tile.googleplus:active {
    color: #FF10A4;
}

a.social-tile.tiktoc:hover .table-cell img,
a.social-tile.tiktoc:active .table-cell img {
    opacity: 1.0;
}

a.social-tile.instagram:hover,
a.social-tile.instagram:active {
    color: #FF10A4;
}

a.contact-phone i {
    -webkit-transition: -webkit-transform 200ms ease-out;
    -moz-transition: -moz-transform 200ms ease-out;
    -o-transition: -o-transform 200ms ease-out;
    -ms-transition: -ms-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    -webkit-backface-visibility: hidden;
    -ms-transform: rotate(+20deg);
    -webkit-transform: rotate(+20deg);
    transform: rotate(+20deg);
}

a.contact-phone:hover i {
    -ms-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #333;
    font-size: 10pt;
    color: #FFF;
}

.footer h5 {
    margin-top: 0px;
}

.footer input.email-input {
    padding: 4px 8px;
    border: none;
    border-radius: 0px;
    height: 39px;
    color: #000;
    width: 100%;
}

.footer #newsletterModal {
    margin: 0;
}

.footer div.copyright {
    font-size: 8pt;
    line-height: 8pt;
    color: #C1C1C1;
}

.footer .newsletter-signup {
    margin: 0 auto;
    display: block;
    font-size: 9pt;
}

.footer .newsletter-signup p {
    margin-bottom: 10px;
}

.footer label {
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 1px;
}

.copyright-centered {
    color: #bbb;
    text-transform: uppercase;
    font-size: 8pt;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 40px;
}

.modal-header,
.modal-footer {
    border: none;
}

.modal-header {
    padding: 30px 30px 15px 30px;
    border-bottom: 0;
}

.modal-content {
    border-radius: 0;
}

.modal-body {
    padding: 0 30px;
}

.modal-body p {
    margin: 15px 0;
}

.modal-footer {
    padding: 15px 30px 30px 30px;
    border-top: 0;
}

.cross {
    width: 24px;
    height: 24px;
}

.cross-outer {
    height: 24px;
    width: 2px;
    background-color: black;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    Z-index: 1;
}

.cross-inner {
    height: 24px;
    width: 2px;
    background-color: black;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    Z-index: 2;
}

@media only screen and (max-width: 480px) {
    .footer-tile {
        width: 100%;
    }

    .footer .newsletter-signup p {
        margin-bottom: 10px;
        width: 100%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer .copyright {
        text-align: center;
        margin-top: 20px;
    }

    .footer .newsletter-submit {
        margin-top: 10px;
    }

    .footer-bottom p {
        margin-bottom: 15px;
    }

    .footer .label-top {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .footer #newsletter-button {
        display: block;
        margin-top: 30px;
    }

    .footer .newsletter-signup p {
        margin-bottom: 10px;
        width: 70%;
        margin: 0 auto;
    }

    .footer label[for="inputEmail"] {
        margin-top: 10px;
    }

    .footer div.copyright {
        margin: 30px 0 0 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer .label-top {
        margin-bottom: 0px;
    }

    .footer #newsletter-button {
        margin-top: 37px;
        margin-bottom: 0px;
        width: 100%;
    }

    .footer label[for="inputEmail"] {
        margin-top: 10px;
    }

    .footer .checkbox-inline {
        padding-left: 14px;
    }

    .footer .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
        margin-left: -15px;
    }

    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 5px;
    }

    .footer-bottom .form-row {
        margin-top: -2px;
    }

    .footer label.checkbox-inline {
        margin-top: 12px;
    }

    .footer div.copyright {
        margin: 30px 0 0 0;
        text-align: center;
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .footer-bottom {
        padding: 40px;
    }

    .footer label[for="inputEmail"] {
        margin-top: 10px;
    }

    .footer #newsletter-button {
        margin-top: 36px;
        width: 100%;
    }

    .footer .copyright {
        margin: 10px 0 0 0;
    }

    .footer ul li a {
        font-size: 9pt;
    }

    .footer-left {
        margin: 30px 0 25px;
    }
}

@media only screen and (min-width: 1200px) and (max-width:1429px) {
    .footer-bottom {
        padding: 40px;
    }

    .footer .newsletter-signup p {
        margin-bottom: 0;
    }

    .checkbox-inline input[type="checkbox"] {
        margin-left: -16px;
    }

    .footer #newsletter-button {
        margin-bottom: 0px;
        margin-top: 20px;
        padding: 0px;
        width: 100%;
    }

    .footer .copyright {
        margin: 20px 0 0 0;
    }
}

@media only screen and (min-width: 1430px) {
    .footer-left {
        margin: 52px 0 0 0;
    }

    .footer-bottom {
        padding: 40px;
    }

    .footer .newsletter-signup p {
        margin-bottom: 0;
    }

    .footer #newsletter-button {
        margin-bottom: 0px;
        margin-top: 20px;
        padding: 0px;
        width: 100%;
    }

    .footer .copyright {
        margin: 44px 0 0 0;
    }
}
#header {
    height: 80px;
}
#header .container {
    padding-top: 18px;
}
nav.menu {
    margin: 7px auto 0 0;
}
nav.menu .menu-section {
    margin-bottom: 0;
}
.menu-mobile {
    display: none !important;
}
.menu .hidden-mobile {
    display: none !important;
}
.menu .visible-mobile {
    display: block !important;
}
.cart_quantity {
    position: relative;
    top: -7px;
    right: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FF10A4;
    color: #fff;
    text-align: center;
    font-size: 11px;
}
#header {
    height: 80px;
    padding: 0;
    visibility: visible;
}
#header .menu-logo {
    width: 160px;
}
nav.menu {
    margin: 10px auto 0 0;
}
nav.menu .menu-section {
    margin-bottom: 0;
    margin-top: 10px;
}
.menu .hidden-mobile {
    display: none;
}
.menu .visible-mobile {
    display: block;
}
.menu .list-item ul,
.menu .menu-subs ul,
.menu .menu-section {
    padding: 0;
}
.menu .list-item li {
    padding-left: 15px;
}
.menu-item-left a {
    padding: 0 !important;
}
.menu-item-right {
    padding-left: 0 !important;
}
.menu-item-right a {
    line-height: 20px !important;

}
.menu-padding {
    height: 100px;
    width: 1px;
    display: block !important;
}
@media (min-width: 993px){
    #header .container {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .menu .menu-item-has-children.menu-expand {
        margin-right: 15px;
    }
    .menu i.menu-expand {
        position: absolute;
        top: -1px;
        right: -15px;
        font-size: 13px !important;
    }
    .menu .hidden-mobile {
        display: inline !important;
    }
    .menu .visible-mobile {
        display: none !important;
    }
    .menu .menu-header:hover {
        border-bottom: 5px solid #403629;
    }
    .menu .no-title {
        height: 60px;
        display: block !important;
    }
    .menu .menu-header.active {
        border-bottom: 5px solid #403629;
    }
    .menu-item-right a {
        line-height: 22px !important;
    }
}
.menu .menu-header {
    border-bottom: 5px solid rgba(255,255,255,0);

}
.menu a:hover {
    text-decoration: none;
}
.menu .menu-header {
    border-bottom: 5px solid rgba(255,255,255,0);
}
.menu a:hover {
    text-decoration: none;
}
.menu a:active {
    background: none !important;
}

.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    color: #e91e63;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.header {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #fafafa;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
}

.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7%;
    flex: 0 0 7%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 10px;
}

.header-item-right .menu-icon {
    font-size: 1.35rem;
    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;
    margin-left: 1rem;
    border: none;
    outline: none;
    color: #121212;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .header .menu > ul > li .menu-subs {
        right: 0;
    }
    .header-item-left {
        flex: 0 0 11%
    }
    .header-item-center {
        flex: 0 0 78%
    }
    .header-item-center.cart {
        flex: 0 0 70%
    }
    .header-item-right {
        flex: 0 0 4%
    }
}

.header .menu > ul > li {
    display: inline-block;
    line-height: 55px;
    margin-left: 1.35rem;
}

.header .menu > ul > li > a {
    position: relative;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 1px;
    border: none;
    outline: none;
    color: #121212;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs {
    position: absolute;
    top: 72px;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    border-top: 3px solid #403629;
    background: #fafafa;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .menu > ul > li .menu-subs > ul > li {
    line-height: 1;
    display: block;
}

.header .menu > ul > li .menu-subs > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .menu > ul > li .menu-subs > ul > li > a:hover {
    text-decoration: underline;
}

.header .menu > ul > li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem;
}

.header .menu > ul > li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
    display: block;
    line-height: 1;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    color: #777;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover {
    color: #000;
    text-decoration: underline;
}

.header .menu > ul > li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 68rem;
    padding: 1.25rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: #241912;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
    color: #241912;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
    color: #241912;
}

@media only screen and (min-width: 993px) {
    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
    }
}

.menu-mobile-header,
.menu-mobile-trigger {
    display: none;
}
.menu-string-explorer {
    width: 70%;
}

@media only screen and (max-width: 992px) {
    .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .header-item-center.cart {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .header-item-left, .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .header .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        background: none;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }
    .header .menu-mobile-trigger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: #121212;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    .header .menu-mobile-trigger span:nth-child(1) {
        top: 0;
    }
    .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
        top: 0.5rem;
    }
    .header .menu-mobile-trigger span:nth-child(4) {
        top: 1rem;
    }
    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #fafafa;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .header .menu.active {
        -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
        transform: translate(0%);
    }
    .header .menu > ul > li {
        display: block;
        line-height: 1;
        margin: 0;
    }
    .header .menu > ul > li > a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .header .menu .menu-mobile-header {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 501;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: #fafafa;
    }
    .header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #121212;
        text-align: center;
    }
    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block;
    }
    .header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility;
    }
    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #121212;
        text-align: center;
    }
    .header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .header .menu > ul > li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.active {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
        margin-top: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
        margin-bottom: 1.25rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
        margin-bottom: 0rem;
    }
    .header .menu > ul > li .menu-subs > ul > li > a {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
        margin-bottom: 1rem;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
        display: block;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.55);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.main {
    display: block;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.flag {
    display: inline-block;
    width: 16px;
    height: 11px;
    background: url('/assets/images/flags2.png') no-repeat;
}


.flag.flag-ar {
    background-position: -16px 0;
}

.flag.flag-au {
    background-position: -32px 0;
}

.flag.flag-be {
    background-position: -48px 0;
}

.flag.flag-br {
    background-position: -64px 0;
}

.flag.flag-ca {
    background-position: -80px 0;
}

.flag.flag-cl {
    background-position: 0 -11px;
}

.flag.flag-cn {
    background-position: -16px -11px;
}

.flag.flag-cz {
    background-position: -32px -11px;
}

.flag.flag-de {
    background-position: -48px -11px;
}

.flag.flag-dk {
    background-position: -64px -11px;
}

.flag.flag-es {
    background-position: -80px -11px;
}

.flag.flag-fi {
    background-position: 0 -22px;
}

.flag.flag-fr {
    background-position: -16px -22px;
}

.flag.flag-gb {
    background-position: -32px -22px;
}

.flag.flag-hu {
    background-position: -48px -22px;
}

.flag.flag-ie {
    background-position: -64px -22px;
}

.flag.flag-il {
    background-position: -80px -22px;
}

.flag.flag-it {
    background-position: 0 -33px;
}

.flag.flag-jp {
    background-position: -16px -33px;
}

.flag.flag-kr {
    background-position: -32px -33px;
}

.flag.flag-mx {
    background-position: -48px -33px;
}

.flag.flag-nl {
    background-position: -64px -33px;
}

.flag.flag-nz {
    background-position: -80px -33px;
}

.flag.flag-pt {
    background-position: 0 -44px;
}

.flag.flag-ru {
    background-position: -16px -44px;
}

.flag.flag-se {
    background-position: -32px -44px;
}

.flag.flag-us {
    background-position: -48px -44px;
}
