/* ------------------------------------  */


/* ---------- SITE FRAMEWORK ----------  */


/* ------------------------------------  */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background: #F9F9F9;

    overflow-x: hidden;
}
.mainHomePage{
    background: #fff;
}

* {
    box-sizing: border-box;
}

body.site_body {}

.contentDiv {
    min-height: 600px;
}

.ui-autocomplete {
    z-index: 10001 !important;
}


/* APPRISE EDITS */

div.apprise {
    font-family: 'Open Sans', sans-serif;
    border-color: #D8E1EB;
}

div.apprise .apprise-buttons button {
    background: #0B1351;
    border: 1px solid #0B1351;
    color: #fff;
}

div.apprise .apprise-buttons button:hover {
    background: #fff;
    color: #4476BA;
}

div.apprise .apprise-buttons button:active {
    background: #fff;
    color: #4476BA;
}


/* DISPLAY CLASSES */

.full-width-fix {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hidden {
    display: none;
}

.hideImportant {
    display: none !important;
}

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

/* SITE FORMS */

input::placeholder {
    font-family: 'Open Sans';
}

textarea {
    font-family: 'Open Sans';
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/chevron-down-black.svg) no-repeat 98% center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

:is(input, select, textarea).input_error {
    border-color: #a30e0e !important;
}


.site_form {}

.site_form_field {
    padding: 10px 0;
}
.wasprice-laptop{
    display: flex;
    justify-content: space-around;
    width: 86%;
    padding-bottom: 5px;
}

.wasprice-laptop span{
    color: #0B1351 !important;

}

.site_form_label {
    font-size: 16px;
    color: #070707;
    padding: 5px 0;
}

.site_form_input {
    width: 100%;
}

.site_form_input input,
.site_form_input select,
.site_form_input textarea {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #DDDADB;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    transition: 0.2s ease-in-out all;
}

.site_form_input select {}

.site_form_input textarea {
    height: 100px;
}

.site_form_input input:focus,
.site_form_input select:focus,
.site_form_input textarea:focus {
    box-shadow: 0px 0px 6px #6FAAE580;
}


/* ----- TYPOGRAPHY ----- */

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    color: #0B1351;
    margin: 0;
    padding: 0 0 10px 0;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
}

h1 {
    font-size: 42px;
    line-height: 50px;
}

h2 {
    font-size: 38px;
    line-height: 46px;
}

h3 {
    font-size: 36px;
    line-height: 42px;
}

h4 {
    font-size: 32px;
    line-height: 38px;
}

h5 {
    font-size: 28px;
    line-height: 33px;
}

h6 {
    font-size: 24px;
    line-height: 28px;
}

p {
    padding: 5px 0 20px 0;
    font-size: 16px;
    color: #535353;
    line-height: 28px;
}

a {
    text-decoration: none;
    color: #383838;
}

.content_wrap {
    position: relative;
}

.content_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 400px;
    /*clip-path: polygon(0 0, 100% 0, 0 100%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 0 100%);*/
    /*background: #F4F3F7;*/
    z-index: 0;
}

.contentDiv {
    position: relative;
}

.content_wrap p a:not([class]) {
    color: #383838;
    text-decoration: none;
    transition: ease-in-out all .3s;
}

.content_wrap p a:not([class]):hover {
    color: #4476ba;
}

ul {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 16px;
    color: #3a3a38;
    list-style-type: disc;
    line-height: 28px;
}

ul li {
    padding: 0 0 15px 0;
    line-height: 20px;
}

ol {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 16px;
    color: #3a3a38;
    list-style-type: decimal;
    line-height: 28px;
}

ol li {
    padding: 0 0 5px 0;
}

hr {
    color: #D8D8D8;
    background: #D8D8D8;
    height: 1px;
    border: 0;
    margin-bottom: 20px;
    position: relative;
}


/* Button Classes */

a.btn_p {
    display: inline-block;
    padding: 19px 40px;
    margin: 5px 0;
    line-height: 1;
    background: #fff;
    border: 1px solid #0B1351;
    border-radius: 5px;
    text-align: center;
    color: #0B1351;
    text-decoration: none;
    transition: 0.2s ease-in all;
}

a.btn_p:hover {
    background: #0B1351;
    color: #fff;
}

a.btn_s {
    display: inline-block;
    padding: 19px 40px;
    margin: 5px 0;
    line-height: 1;
    background: #fff;
    border: 1px solid #DD2A1B;
    text-align: center;
    color: #DD2A1B;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s ease-in all;
}

a.btn_s:hover {
    background: #DD2A1B;
    color: #fff;
}

a.btn_t {
    display: inline-block;
    padding: 19px 40px;
    margin: 5px 0;
    line-height: 1;
    background: #DD2A1B;
    border: 1px solid #DD2A1B;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s ease-in all;
}

a.btn_t:hover {
    background: #fff;
    color: #DD2A1B;
}


/* Animations */

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }

    33% {
        transform: rotate(-8deg);
    }

    66% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* ------------------------------------  */


/* ------------ SITE DESIGN -----------  */


/* ------------------------------------  */


/* ----- SITE HEADER ----- */

.admin_panel+.site_header {
    margin-top: 31px;
}

header.site_header {
    position: relative;
}

body.sticky .site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}

body.sticky .header_wrap,
body.sticky .menu_wrap {
    transform: translateY(-50px);
}

body.sticky .top_strap {
    scale: 1 0;
}

body.sticky .content_wrap {
    padding-top: 170px;
}

body.sticky .menu_container {
    height: 40px;
    padding-bottom: 10px;
}


/*-- TOP STRAP --*/

.top_strap {
    background: #0B1351;
    scale: 1 1;
    transform-origin: 0% 0%;
    transition: scale 0.2s ease-out;
}

.top_strap_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    color: #fff;
}

.top_strap_left {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.top_strap_left a {
    color: inherit;
    display: flex;
    gap: 5px;
    align-items: center;
}

.top_strap_mid {
    display: flex;
    align-items: center;
}

.top_strap_right {
    display: flex;
    align-items: center;
}

.infomenu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.infomenu>li {
    padding: 0 10px;
}

.infomenu>li>a {
    color: #fff;
}


/*-- HEADER WRAP --*/

.header_wrap {
    background: #fff;
    transition: transform 0.2s ease-out;
    position: relative;
    z-index: 99;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .logo {
    height: 100%;
}

header .logo img {
    max-height: 100%;
    max-width: 290px;
}

.header_mid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 40px;
}


.header_mid .fav_wrap:not(.hidden) {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header_mid .fav_wrap a {
    gap: 5px;
    display: flex;
    align-items: center;
    color: #0B1351;
    font-size: 14px;
}

.header_mid .fav_wrap a::before {
    content: "";
    height: 19px;
    width: 21px;
    background: url(../images/heart_fill.svg) center no-repeat;
    background-size: contain;
}

.siteSearch {
    display: flex;
    width: 655px;
    height: 50px;
    background: #FBFBFB;
    border: 1px solid #E8E4E4;
    border-radius: 5px;
}

.siteSearch input {
    width: 85%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    background: none;
    border: 0;
    font-size: 14px;
}

.siteSearch input::placeholder {
    font-size: 14px;
    color: inherit;
}

.siteSearch .searchButton {
    display: block;
    width: 40px;
    height: 100%;
    background: url(../images/icon-search.svg) no-repeat 80% center;
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.acc_wrap {}

.my_account {
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../images/account-blue.svg) no-repeat center;
    background-size: contain;
}

.shoppingCart {
    border-left: 1px solid #ECECEC;
    padding-left: 20px;
}

.small_cart {
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../images/cart-blue.svg) no-repeat center;
    background-size: contain;
    position: relative;
}

.small_cart>div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DD2A1B;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    position: absolute;
    top: -5px;
    right: -5px;
}

.small_cart>div span {
    font-size: 10px;
    text-align: center;
    color: #fff;
}


/*-- MENU WRAP --*/

.menu_wrap {
    background: #fff;
    position: relative;
    border-bottom: 1px solid #F2F2F2;
    transition: transform 0.2s ease-out;
}

.menu_container {
    display: flex;
    align-items: center;
    height: 70px;
    transition: all 0.2s ease-out;
}


/* Main Menu */

.mainmenu {
    display: flex;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    width: 100%;
}

.mainmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mainmenu>li {
    height: 100%;
    padding: 0;
    position: relative;
}

.mainmenu li:hover>a {
    color: #DD2A1B;
}

.mainmenu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
    color: #0B1351;
    font-weight: bold;
    text-align: center;
}

.mainmenu>li.hasSubItems>a:after {
    content: "";
    width: 5px;
    height: 5px;
    border-color: #0B1351;
    border-style: solid;
    border-width: 0 2px 2px 0;
    margin-left: 10px;
    rotate: 45deg;
}

.mainmenu>li:first-child>a {
    padding-left: 0;
}

.mainmenu>li>ul {
    width: 300px;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    left: 20px;
    z-index: -1;
    top: 100%;
    opacity: 0;
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #E9E7E7;
    transition: 0.2s ease-in-out all;
    pointer-events: none;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
}

.mainmenu>li>ul.active {
    top: 90%;
    z-index: 10;
    opacity: 1;
    pointer-events: initial;
}

.mainmenu>li:last-child>ul {
    left: initial;
    right: 0;
}

.mainmenu>li>ul>li {
    padding: 0;
    position: relative;
}

.mainmenu>li>ul>li>a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #0B1351;
}

.mainmenu>li>ul>li>ul {
    width: 300px;
    padding: 10px;
    box-sizing: border-box;
    background: #efefef;
    position: absolute;
    left: 100%;
    z-index: -1;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease-in-out all;
}

.mainmenu>li>ul>li>ul.active {
    z-index: 10;
    opacity: 1;
    pointer-events: initial;
}

.mainmenu>li:last-child>ul>li>ul {
    left: initial;
    right: 100%;
}

.mainmenu>li>ul>li>ul>li {
    padding: 0;
}

.mainmenu>li>ul>li>ul>li>a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: #000;
}


/* Megamenu */


/* .mainmenu {display: flex; align-items: center; justify-content:stretch; width:100%; height:100%; list-style:none; padding:0; margin:0;}
.mainmenu > li {height:100%; flex: 1 1 auto; padding:0; margin:0; transition: 0.2s ease-in all;}
.mainmenu > li > a {display:flex; align-items:center; height:100%; color: #fff; padding: 0 10px; box-sizing: border-box; transition: 0.2s ease-in all;}
.megamenu_overlay {display:none; width:100vw; height:100vh; position:absolute; z-index:10; left:0; top:100%; background: #ffffff99;}
.megamenu_wrap {display:none;width: 100vw; background: #efefef; position:absolute; left:0; top:100%; z-index:11; padding: 20px 0;}
.megamenu {}
.megamenu > ul {display:flex; flex-wrap:wrap; list-style:none; padding:0; margin:0;}
.megamenu > ul > li {width:20%;}
.megamenu > ul > li > a {font-size:20px; font-weight: bold; color: #071B3A;}
.megamenu > ul > li > ul {list-style:none; padding:0; margin:10px 0;}
.megamenu > ul > li > ul > li {}
.megamenu > ul > li > ul > li > a {display:inline-block; color: #000; position:relative; transition: 0.2s ease-in all;}
.megamenu > ul > li > ul > li > a:hover {}
.megamenu > ul > li > ul > li > a.menu_viewall {color: #4476BA;} */


/*-- HEADER STRAP --*/

.header_strap {
    background: #efefef;
}

.header_strap_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.header_strap_left {
    display: flex;
    align-items: center;
}

.header_strap_mid {
    display: flex;
    align-items: center;
}

.header_strap_right {
    display: flex;
    align-items: center;
}


/* ----- SITE FOOTER ----- */

footer.site_footer {}


/*-- FOOTER STRAP --*/

.footer_strap {
    background: #4476BA;
}

.footer_strap_container {
    display: flex;
    align-items: center;
    height: 50px;
}


/*-- FOOTER WRAP --*/

.footer_wrap {
    background: #0B1351;
}

.footer_container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 30px 30px !important;
    margin-top: 20px;
}
.footerLogoWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}
.footerLogoWrap img {
    width: 35px;
    margin-right: 10px;
    height: auto;
}
.footer_col {
    width: 25%;
}

.footer_col_title {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
}

.footer_col_title:after {
    content: "";
    display: block;
    background: #fff;
    height: 3px;
    width: 40px;
    margin-top: 5px;
}

.footer_contact {
    padding-top: 10px;
}

.footer_contact * {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

.footer_contact a {
    display: flex;
    padding-left: 20px;
    line-height: 36px;
}

.footer_contact .location {
    padding-left: 20px;
    margin-bottom: 20px;
    background: url(../images/location.svg) left 5px no-repeat;
}

.footer_contact .call {
    background: url(../images/phone.svg) left center no-repeat;
}

.footer_contact .mail {
    background: url(../images/email.svg) left center no-repeat;
}

.footer_social {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    gap: 15px;
    border-top: 1px solid #151F6A;
    padding: 20px 0 40px 0;
    width: 100%;
}

.footer_social>a {
    display: block;
    width: 30px;
    height: 30px;
}

.footer_social>a.fb {
    background: url(../images/fb.svg) no-repeat center;
    background-size: contain;
}

.footer_social>a.ig {
    background: url(../images/ig.svg) no-repeat center;
    background-size: contain;
}

.footer_social>a.tw {
    background: url(../images/tw.svg) no-repeat center;
    background-size: contain;
}

.footer_social>a.li {
    background: url(../images/li.svg) no-repeat center;
    background-size: contain;
}

.footer_social>a.yt {
    background: url(../images/yt.svg) no-repeat center;
    background-size: contain;
}

.footer_social>a.tk {
    background: url(../images/tk.svg) no-repeat center;
    background-size: contain;
}

.footermenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footermenu>li {
    padding: 10px 0;
}

.footermenu>li>a {
    color: #fff;
}

.secure-payments{display: flex; flex-direction: column; gap:15px; align-items: flex-start; width: 100%; margin-top: 30px;}
.secure-payments span{color: #fff; font-weight: bold; font-size: 14px; line-height: 22px;}


/*-- BYLINE --*/

.byline_wrap {
    background: #Fff;
}

.byline_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px !important;
}

.bylinemenu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bylinemenu>li {
    padding: 0 10px;
}

.bylinemenu>li:not(:first-child) {
    border-left: 1px solid #474747;
}

.bylinemenu>li>a {
    color: #474747;
    font-size: 15px;
    line-height: 15px;
}

.copyright {
    font-size: 12px;
    line-height: 50px;
    color: #474747;
}

.byline_container>a {
    color: #9F9B9B;
    font-size: 12px;
}
.mobile-price-view{
    display: none;
}

/* Age Verification */

.age-verification-overlay:not(.hidden) {
    background: #FFFFFFEE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.a-v-container {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    padding: 20px 15px;
    width: 96vw;
    max-width: 580px;
    text-align: center;
}

.a-v-container p {
    padding-bottom: 10px;
}

.a-v-question {
    color: #474747;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.a-v-button {
    display: block;
    padding: 0 15px;
    font-size: 18px;
    line-height: 58px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #DD2A1B;
}

.a-v-button-yes {
    color: #fff;
    background: #DD2A1B;
    margin-bottom: 5px;
}

.a-v-button-no {
    color: #DD2A1B;
    background: #fff;
}


/* ------------------------------------  */


/* --------------- MODULES ------------  */


/* ------------------------------------  */


/* ----- TEXT MODULE ----- */

.text_wrap {}

.text_wrap.full_width {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.text_wrap:not(.bg_on) {
    background: none !important;
}

.text_container {
    padding: 0 10px;
    box-sizing: border-box;
}


/* -- SPACING MODULE -- */

.spacing_module {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: 0.2s ease-in-out all;
}

.spacing_module span {
    opacity: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    transition: 0.2s ease-in-out all;
}

.spacing_module.admin_logged:hover {
    background: #efefef;
}

.spacing_module.admin_logged:hover span {
    opacity: 1;
}


/* ----- CONTACT FORM ----- */

form.contact_form {
    border: 1px solid #E9E5E5;
    width: 100%;
    margin: 20px auto 20px auto;
    padding: 5px 10px 20px 10px;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 5px
}

.cf_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 5px;
}

.cf_title span {
    font-size: 20px;
    line-height: 26px;
    color: #535353;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}

.cf_title span::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #4476BA;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.cf_line {
    clear: both;
    line-height: 30px;
    color: #393838;
    font-size: 14px;
    line-height: 26px;
}

.cf_line p {
    color: #0B1351;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 10px 5px 10px 0;
    font-weight: bold;
}

.cf_label {
    float: left;
    width: 100%;
    font-size: 15px;
    line-height: 36px;
    color: #535353;
}

.cf_field {
    width: 100%;
    box-sizing: border-box;
}

.cf_field :is(input, select, textarea) {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #E5E3E3;
    box-shadow: 0px 0px 3px transparent;
    font-size: 14px;
    color: #393A3D;
    transition: 0.2s ease-in-out all;
}

.cf_field :is(input, select, textarea):focus {
    border-color: #4476BA;
    box-shadow: 0px 0px 3px #80a1cf;
}

.cf_field textarea {
    height: 100px;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}

.cf_field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/chevron-down-black.svg) no-repeat 98% center;
}

:is(.cf_checkbox, .cf_radio) {}

:is(.cf_checkbox, .cf_radio) .cf_label {
    float: left;
    width: auto;
    font-size: 14px;
    padding: 5px 0;
    line-height: 24px;
    color: #696969;
    font-weight: normal;
}

:is(.cf_checkbox, .cf_radio) .cf_field {
    float: left;
    width: auto;
    padding: 5px;
    line-height: 24px;
}

:is(.cf_checkbox, .cf_radio) input {
    width: 15px;
    height: 15px;
    accent-color: #4476BA;
}

.cf_button_row {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 5px 0;
}

.cf_submit a {
    display: block;
    height: 56px;
    line-height: 56px;
    text-transform: uppercase;
    padding: 0;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    background: #DD2A1B;
    color: #fff;
}

.cf_submit a:hover {
    color: #DD2A1B;
    background: #fff;
}

p.denotes {
    font-size: 12px;
    color: #231F20;
    padding: 0;
    font-weight: normal;
}


/* form.contact_form:hover .cf_submit a {color: #fff;} */


/* ----- GALLERY ----- */

div.fullscreenfade {
    opacity: 0;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s ease-in-out 0s;
    position: relative;
}

div.fullscreenfade::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

div.fullscreenfade.full_width {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

div.fullscreenfade:not(.full_width) div.slide {
    background-size: contain;
}

div.fullscreenfade div.slide {
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100%;
}

div.fullscreenfade.parallax_on div.slide {
    background-attachment: fixed;
}

div.fullscreenfade div.slide .banner {
    margin: 0 auto;
    width: 1200px;
    position: relative;
}

div.fullscreenfade div.slide .frame {
    height: 100%;
    align-self: center;
    display: inline-block;
    padding: 16px 20px;
}

div.fullscreenfade div.slide.frame_on:before {
    content: "";
    background: #0B1351;
    opacity: .9;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    pointer-events: none;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

div.fullscreenfade div.slide .frame h1,
div.fullscreenfade div.slide .frame h2,
div.fullscreenfade div.slide .frame h3,
div.fullscreenfade div.slide .frame h4 {
    position: relative;
}

div.fullscreenfade div.slide .frame p {
    padding: 15px 0;
    margin: 0;
    line-height: initial;
}


/* pagination */


/* div.fullscreenfade .pagination {display: none !important;} */

div.fullscreenfade .pagination {
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
    height: 20px;
    z-index: 1;
}

div.fullscreenfade .pagination a {
    height: 16px;
    width: 16px;
    margin: 0 6px;
    box-sizing: border-box;
    display: inline-block;
    transition: ease-in-out all .5s;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
}

div.fullscreenfade .pagination a.selected {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}


/* navigation */


/* div.fullscreenfade .arrows { display:none !important;} */

div.fullscreenfade .arrows {
    position: absolute;
    z-index: 10;
    right: 30px;
    top: calc(50% - 40px);
    width: 40px;
    height: 80px;
    background: rgba(0, 0, 0, .4);
    cursor: pointer;
    transition: ease-in-out all .3s;
    border-radius: 4px;
}

div.fullscreenfade .arrows:after {
    content: "";
    width: 12px;
    height: 15px;
    display: block;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    position: absolute;
    top: calc(50% - 7px);
    right: calc(50% - 8px);
}

div.fullscreenfade .arrows.prev {
    transform: rotate(180deg);
    right: initial;
    left: 30px;
}

div.fullscreenfade .arrows:hover {
    background: rgba(0, 0, 0, .6);
}

/*dropcart-start*/


.dropcart--style--dropdown {
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
    background: #fff;
    width: 320px;
}
.dropcart {
    font-size: 15px;
    font-weight: 400;
    color: #3d464d;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    max-height: 300px;
}
.indicator--open .indicator__dropdown {
    z-index: 1;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.indicator--display .indicator__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.indicator__dropdown {
    right: 0;
}
.indicator__dropdown {
    position: absolute;
    opacity: 1;
    display: none;
}
.dropcart__products-list {
    padding: 20px 16px;
}
.dropcart__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dropcart__product-image {
    width: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.product-image__body {
    display: block;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
}
.product-image__img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100% !important;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
.dropcart__product-info {
    padding-right: 10px;
    padding-left: 16px;
}
.dropcart__product-info {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.dropcart__product-name {
    margin-top: -2px;
    line-height: 18px;
    font-size: 15px;
}
.dropcart__product-name a {
    color: inherit;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}
.dropcart__product-meta {
    margin-top: 5px;
    font-size: 13px;
}
.dropcart__totals {
    line-height: 24px;
    border-top: 1px solid rgb(235, 235, 235);
    padding: 16px 20px 0px;
}
.dropcart__product-price {
    font-size: 14px;
    font-weight: 700;
}
.dropcart__product + .dropcart__product {
    margin-top: 24px;
}
.dropcart__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dropcart__totals table {
    width: 100%;
}
.dropcart__totals th {
    padding-right: 16px;
    text-align: left;
}
.dropcart__totals td {
    text-align: right;
}
.dropcart__buttons {
    display: flex;
    margin-top: 4px;
    padding: 20px;
}
.dropcart__buttons > :first-child {
    margin-right: 8px;
}
.btn-svg-icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
}
.dropcart__product-remove {
    margin-right: -6px;
}
.btn-sm.btn-svg-icon {
    width: calc(1.875rem + 2px);
}
.dropcart__product-remove {
    margin-top: -6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.btn-svg-icon {
    padding: 0;
    position: relative;
}
.btn-light-s{
        border-color: transparent;
    background: transparent;
    color: #3d464d;
    fill: #ccc;
}
.btn-light-s:hover{
        border-color: #f0f0f0;
    background: #f0f0f0;
}
.btn-sm {
    font-size: 0.875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
}
.btn-s{
    border-radius: 4px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    font-size: 1rem;
    height: auto;
    line-height: 1.5;
    padding: 0.375rem 0.9rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
}
.btn-secondary-s{
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #3d464d;
    fill: #3d464d;

}
.btn-primary-s{
    border-color: #DD2A1B;
    background: #DD2A1B;
    color: #fff;
    fill: #fff;
}


/* ----- CONTENT LAYOUT MODULE ----- */

.apprise-content .content_layout label {
    width: 25%;
    display: inline-block;
    font-weight: bold;
}

.apprise-content .content_layout input,
.apprise-content .content_layout select {
    border: 1px solid #e1e1e1;
    width: 60%;
    line-height: 30px;
    height: 30px;
    text-indent: 10px;
    border-radius: 5px;
}

.content_layout_module {
    /*background: #FBFBFB;*/
}

.content_layout_block {
    position: relative;
}

.content_layout_block>div {
    display: flex;
    align-items: center;
}

.content_layout_block>div>div {
    width: 50%;
}

.content_layout_block>div>div img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.content_layout_block .layout_image_wrap img {
    width: 100%;
    height: auto;
}

.content_layout_block .layout_text_wrap {
    padding: 35px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.content_layout_block .layout_text_wrap .li_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.content_layout_block .layout_text_wrap .li_logo img {}

.content_layout_block .layout_text_wrap .li_title {
    padding-bottom: 15px;
    font-size: 32px;
    color: #0B1351;
    line-height: 36px;
    font-weight: bold;
    text-align: left;
    position: relative;
}

.content_layout_block .layout_text_wrap .li_title::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background: #DD2A1B;
    position: absolute;
    bottom: 10px;
    left: 0;
}

.content_layout_block .layout_text_wrap div p {
    font-size: 14px;
    line-height: 32px;
    color: #393838;
    text-align: left;
}

.content_layout_block .layout_buttons {
    margin-top: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.content_layout_block .layout_buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #DD2A1B;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.content_layout_block .layout_buttons a:hover {
    color: #fff;
    text-decoration: none;
}
.page-title-ss{
    font-size: 38px;
    line-height: 46px;
}
.location_title{
    font-size: 38px !important;
    line-height: 46px !important;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
}


/*Layout side*/


/* left */

.content_layout_block.layout_left>div {
    flex-direction: row-reverse;
}

.content_layout_block.layout_left .layout_image_wrap {
    width: calc(50% + ((100vw - 1200px) / 2));
    margin-right: calc((-100vw + 1200px) / 2);
}


/* right */

.content_layout_block.layout_right .layout_image_wrap {
    width: calc(50% + ((100vw - 1200px) / 2));
    margin-left: calc((-100vw + 1200px) / 2);
}

.content_layout_block.layout_right .layout_text_wrap {
    margin-left: -30px;
}

.cm_gal_wrap.carousel .cm_gal_nav::after {
    border: solid #DD2A1B !important;
}
.cm_gal_wrap.carousel .cm_gal_prev::after {
    border-width: 0 0 3px 3px !important;
}
.cm_gal_wrap.carousel .cm_gal_next::after {
    border-width: 3px 3px 0 0 !important;
    margin-right: 5px;
}

.pm_gal_wrap.carousel .pm_gal_nav::after {
    border: solid #DD2A1B !important;
}
.pm_gal_wrap.carousel .pm_gal_next::after {
    border-width: 3px 3px 0 0 !important;
    margin-right: 5px;
}
.pm_gal_wrap.carousel .pm_gal_prev::after {
    border-width: 0 0 3px 3px !important;
    margin-left: 5px;
}


/*Image Block Module*/
.image-block-module{padding: 30px 0;}
.image-block-module > div{padding: 0 10px; box-sizing: border-box;}
.ib-items-wrap {position: relative; padding: 40px 0 0 0; display:flex; flex-direction:column; gap:20px;}
.ib-gallery {width: 100%;}
.ib-item .ib-image{height: 245px; width:100%; display: flex;}
.ib-item .ib-image.withoutLink{pointer-events: none; cursor: initial;}
.ib-item .ib-image a{height: 100%; width: 100%; background-size:cover; background-position:center; background-repeat:no-repeat;}
.ib-item .ib-button{display: flex ; align-items: center; justify-content: center; height: 50px; box-sizing: border-box; transition: 0.2s ease-in all;}
.ib-item .ib-button a{display: block; font-size: 18px; font-weight: bold; color: #0B1351; text-align: center; text-decoration: none; transition: 0.2s ease-in all;}

.ib-pagination{display: flex; align-items: center; justify-content: center; gap:10px;}
.ib-pagination span{height: 15px; width: 15px; background: #fff; border: 1px solid #fcb40a; border-radius: 100%; font-size: 0; opacity: 1; transition: ease-in-out all .3s; cursor: pointer; margin: 0 !important; padding: 0;}
.ib-pagination span.active{background: #fcb40a;}

/* --------------------------------------- */
/* -------- XLARGE SCREEN >1600px --------- */
/* --------------------------------------- */

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

    /* --------------------------------------- */
    .container_16.top_strap_container {
        width: 1600px;
    }

    .container_16.header_container, .footer_container.container_16 {
        width: 1600px;
    }

    .container_16.menu_container {
        width: 1600px;
    }
}


/* --------------------------------------- */


/* -------- LARGE SCREEN >1200px --------- */


/* --------------------------------------- */

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

    .mobile:not(.desktop),
    .mobile_large:not(.desktop),
    .tablet:not(.desktop),
    .desktop:not(.desktop),
    .desktop-hidden {
        display: none !important;
    }

    /* ----- GRID STRUCTURE ----- */
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 30px;
    }

    .container_16 .grid_1 {
        width: 55px;
    }

    .container_16 .grid_2 {
        width: 130px;
    }

    .container_16 .grid_3 {
        width: 205px;
    }

    .container_16 .grid_4 {
        width: 280px;
    }

    .container_16 .grid_5 {
        width: 355px;
    }

    .container_16 .grid_6 {
        width: 430px;
    }

    .container_16 .grid_7 {
        width: 505px;
    }

    .container_16 .grid_8 {
        width: 580px;
    }

    .container_16 .grid_9 {
        width: 655px;
    }

    .container_16 .grid_10 {
        width: 730px;
    }

    .container_16 .grid_11 {
        width: 805px;
    }

    .container_16 .grid_12 {
        width: 880px;
    }

    .container_16 .grid_13 {
        width: 955px;
    }

    .container_16 .grid_14 {
        width: 1030px;
    }

    .container_16 .grid_15 {
        width: 1105px;
    }

    .container_16 .grid_16 {
        width: 100%;
        margin: 0;
    }

    .swipe {
        height: 575px;
    }
}


/* -------------------------------------------------------------------------------------------------------- LARGE DESKTOP END  */


/* ---------------------------------------------- */


/*-------------DESKTOP/LAPTOP < 1199px------------*/


/* ---------------------------------------------- */

@media (min-width: 960px) and (max-width:1199px) {

    .mobile:not(.desktop),
    .mobile_large:not(.desktop),
    .tablet:not(.desktop),
    .desktop-hidden {
        display: none !important;
    }

    /* ----- GRID STRUCTURE ----- */
    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }



    /* --------------------------------------- */
    /* ------------------ */
    /* ----- HEADER ----- */
    /* ------------------ */
    .siteSearch {
        width: 430px;
    }

    /* ----- HEADER WRAP ----- */
    /* ----- CONTENT LAYOUT MODULE ----- */
    .content_layout_block .layout_text_wrap {
        padding: 20px;
    }

    .content_layout_block .layout_text_wrap>div:first-child {
        font-size: 28px;
        line-height: 34px;
    }

    .content_layout_block .layout_text_wrap div p {
        font-size: 14px;
        line-height: 26px;
    }

    /*Layout side*/
    /* left */
    .content_layout_block.layout_left .layout_image_wrap {
        width: calc(50% + ((100vw - 960px) / 2));
        margin-right: calc((-100vw + 960px) / 2);
    }

    /* right */
    .content_layout_block.layout_right .layout_image_wrap {
        width: calc(50% + ((100vw - 960px) / 2));
        margin-left: calc((-100vw + 960px) / 2);
    }

    .mainmenu {
        font-size: 15px;
    }

    .mainmenu>li>a {
        padding: 0 5px;
    }
}


/* -------------------------------------------------------------------------------------------------------- DESKTOP END  */


/* ------------------------------------------------- */


/* --------------TABLET & MOBILE ------------------- */

@media (max-width: 959px) {
    .pm_gal_wrap.carousel .pm_gal_nav {
        display: block !important;
    }
}

/* ------------------------------------------------- */

@media (max-width:959px) {
    .container_16.resp-full-width {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    div:not(.container_16).resp-full-width {
        width: 101vw !important;
        max-width: 101vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 15px;
        padding-right: 15px;
    }

    .alpha,
    .omega {
        margin-left: 0;
        margin-right: 0;
    }

    /* ----- SITE HEADER ----- */
    body.sticky .header_wrap,
    body.sticky .menu_wrap {
        transform: translateY(0px);
    }

    body.sticky .content_wrap {
        padding-top: 85px;
    }

    .header_wrap {
        border-top: 5px solid #0B1351;
    }

    /* -- HEADER WRAP -- */
    .menuToggle {
        display: block;
        width: 27px;
        height: 20px;
        position: relative;
    }

    .menuToggle>div {
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background: #E50019;
        position: absolute;
        transition: 0.2s ease-in-out all;
    }

    .menuToggle>div.top {
        top: 0;
    }

    .menuToggle>div.mid {
        top: calc(50% - 1.5px);
        opacity: 1;
    }

    .menuToggle>div.btm {
        bottom: 0;
    }

    .menuToggle::after {
        content: "";
        font-size: 10px;
        text-align: center;
        position: absolute;
        bottom: -15px;
        left: calc(50% - 14px);
    }

    .menuToggle.active>div.top {
        transform: rotate(-45deg);
        top: 40%;
    }

    .menuToggle.active>div.mid {
        opacity: 0;
    }

    .menuToggle.active>div.btm {
        transform: rotate(45deg);
        bottom: 45%;
    }

    .menuToggle.active::after {
        content: "close";
        left: calc(50% - 12px);
    }

    /* ----- MOBILE MENU ----- */
    .mobile_menu_overlay {
        width: 100vw;
        height: 100vh;
        background: #111A60dd;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: 0.2s ease-in-out all;
        overflow: auto;
    }

    .mobile_menu_overlay.active {
        z-index: 1000;
        opacity: 1;
        pointer-events: initial;
    }

    .mobile_menu_wrap {
        width: 100%;
        background: #0B1351;
        padding: 10px;
        box-sizing: border-box;
        position: relative;
        top: 0;
        right: -50%;
        opacity: 0;
        transition: 0.2s ease-in-out all;
    }

    .mobile_menu_overlay.active .mobile_menu_wrap {
        right: 0;
        opacity: 1;
    }

    .mobile_menu_header {
        padding: 20px 5px;
        color: #fff;
        font-size: 14px;
        display: flex;
        gap:10px;
        align-items: center;
        column-gap: 10px;
        background: #0B1351;
    }
    .mobile_menu_header a{ display: flex;
        gap:10px;
        align-items: center;}

    .mobile_menu_header span{color: #fff;}

    .mobile_menu_close {
        position: absolute;
        right: 10px;
        top: 15px;
    }

    .mobile_menu_footer_close {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
        background: #111A60;
        line-height: 63px;
        color: #fff;
        font-size: 14px;
    }

    .mobilemenu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobilemenu>li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        border-bottom: 1px solid #222D81;
        padding: 0;
    }

    .mobilemenu>li:first-child {
        border-top: 1px solid #222D81;
    }

    .mobilemenu>li.info_menu_item {
        border: 0;
    }

    .mobilemenu>li.info_menu_item>a {
        font-weight: normal;
        font-size: 14px;
    }

    .mobilemenu>li>a {
        padding: 15px 0;
        color: #fff;
        font-size: 17px;
        font-weight: bold;
        line-height: 18px;
    }


    .mobilemenu>li>a.menu_expand {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        padding: 0;
    }

    .mobilemenu>li>a.menu_expand::after {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        background: url(../images/plus.svg) no-repeat center;
        transition: 0.2s ease-in-out all;
    }

    .mobilemenu>li>a.menu_expand.active::after {
        transform: scale(-1, -1);
    }

    .mobilemenu>li:not(.hasSubItems)>a.menu_expand {
        display: none;
    }

    .mobilemenu>li>ul {
        display: none;
        width: 100%;
        list-style: none;
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
    }

    .mobilemenu>li>ul>li {
        padding: 0;
    }

    .mobilemenu>li>ul>li>a {
        display: block;
        padding: 10px 0;
        font-size: 14px;
        line-height: 16px;
        color: #fff;
    }

    .mobilemenu>li>ul>li>ul {
        display: none;
    }

    /* ----- MODULES ----- */
    /* -- Fullscreen Gallery -- */
    div.fullscreenfade .arrows {
        display: none !important;
    }

    /* -- Content Layout Module -- */
    .content_layout_block .layout_text_wrap>div:first-child {
        font-size: 28px;
        line-height: 34px;
    }

    .content_layout_block .layout_text_wrap>div p {
        font-size: 14px;
        line-height: 28px;
    }

    .content_layout_block.layout_left>div,
    .content_layout_block.layout_right>div {
        flex-direction: column;
        align-items: center;
    }

    .content_layout_block.layout_left .layout_image_wrap,
    .content_layout_block.layout_right .layout_image_wrap {
        width: 100vw;
        padding: 0;
        margin: 0;
    }

    .content_layout_block.layout_left .layout_image_wrap img,
    .content_layout_block.layout_right .layout_image_wrap img {
        padding: 0;
        margin: 0;
    }

    .content_layout_block.layout_left .layout_text_wrap,
    .content_layout_block.layout_right .layout_text_wrap {
        margin: -30px 0 20px 0;
        width: 95%;
        padding: 10px 15px;
    }
}


/* -------------------------------------------------------------------------------------------------------- TABLET & MOBILE END  */


/* --------------------------------------- */


/* --------------TABLET------------------- */


/* --------------------------------------- */
@media (max-width: 767px){
    .product_block_ss{
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 25px 10px !important;
    }
    .mobile-flex{
        display: block !important;
                width: calc(100% - 70px);
                padding-left: 10px;
    }
.layout_ss>div>div {
    width: 100%;
}
.page-title-ss span{
    font-size: 22px;
        line-height: 52px;
}

.location_title{
    font-size: 22px !important;
    line-height: 52px !important;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
}
.layout_ss>div>div>img {
    width: 50%;
    display: block;
    margin: 0 auto;
}
.our-img{
    margin-top: 7px;
}
    .content_layout_block .layout_text_wrap>div:first-child {
        font-size: 24px;
        line-height: 30px;
    }
    .product-title-ss{
        -webkit-line-clamp: inherit !important;
    }
    .product_info_ss{
        max-width: 100% !important;
    }
    .nowprice_ss{
        position: absolute;
        top: 27px;
        right: 50px;
    }
    .nowprice_ss span{
        display: flex;
        flex-direction: column-reverse;
    }
    .wasprice_ss{
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 5px;
        gap: 10px;

    }
    .productDetailAddTowish-ss{
        align-items: flex-end !important;
        margin-bottom: 5px !important;
    }
    .brand_card_ss {
        display: inline;
    }
}
@media (max-width: 690px){

}
@media (max-width:959px) {
    .cm_gal_wrap.carousel .cm_gal_nav { display: block !important; }
}

@media (min-width: 768px) and (max-width: 959px) {

    .desktop:not(.tablet),
    .mobile:not(.tablet),
    .mobile_large:not(.tablet),
    .tablet-hidden {
        display: none !important;
    }

    /* ----- GRID STRUCTURE ----- */
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 768px;
    }

    .container_16 .grid_1 {
        width: 32px;
    }

    .container_16 .grid_2 {
        width: 80px;
    }

    .container_16 .grid_3,
    .container_16 .grid_tab_3 {
        width: 128px;
    }

    .container_16 .grid_4,
    .container_16 .grid_tab_4 {
        width: 176px;
    }

    .container_16 .grid_5,
    .container_16 .grid_tab_5 {
        width: 224px;
    }

    .container_16 .grid_6,
    .container_16 .grid_tab_6 {
        width: 272px;
    }

    .container_16 .grid_7,
    .container_16 .grid_tab_7 {
        width: 320px;
    }

    .container_16 .grid_8,
    .container_16 .grid_tab_8 {
        width: 368px !important;
    }

    .container_16 .grid_9,
    .container_16 .grid_tab_9 {
        width: 416px;
    }

    .container_16 .grid_10,
    .container_16 .grid_tab_10 {
        width: 464px;
    }

    .container_16 .grid_11,
    .container_16 .grid_tab_11 {
        width: 512px;
    }

    .container_16 .grid_12,
    .container_16 .grid_tab_12 {
        width: 560px;
    }

    .container_16 .grid_13,
    .container_16 .grid_tab_13 {
        width: 608px;
    }

    .container_16 .grid_14,
    .container_16 .grid_tab_14 {
        width: 656px;
    }

    .container_16 .grid_15,
    .container_16 .grid_tab_15 {
        width: 704px;
    }

    .container_16 .grid_16,
    .container_16 .grid_tab_16 {
        width: 752px;
    }

    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_13,
    .grid_14,
    .grid_15,
    .grid_16 {
        margin-left: 8px;
        margin-right: 8px;
    }

    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* --------------------------------------- */
    /* ----- SITE HEADER ----- */
    header .logo img {
        max-width: 180px;
    }

    .siteSearch {
        width: 345px;
    }

    /* -- HEADER WRAP -- */


    /*Image Block*/
    .ib-item .ib-image{height: 215px;}
}


/* -------------------------------------------------------------------------------------------------------- TABLET END  */



/* --------------------------------------- */


/* --------------MOBILE LARGE------------------- */


/* --------------------------------------- */

@media (min-width: 360px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .mobile_large-hidden {
        display: none !important;
    }
}


/* -------------------------------------------------------------------------------------------------------- MOBILE LARGE END  */


/* --------------------------------------- */


/* --------------MOBILE------------------- */


/* --------------------------------------- */

@media (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .mobile_large:not(.mobile),
    .tablet:not(.mobile),
    .desktop:not(.mobile),
    .mobile-hidden {
        display: none !important;
    }

    /* ----- GRID STRUCTURE ----- */
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 15px;
    }
    body .product_module.full_width .pm_container {
        padding: 0 15px;
    }

    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_13,
    .grid_14,
    .grid_15,
    .grid_16 {
        margin-left: 5px;
        margin-right: 5px;
        width: calc(100% - 10px) !important;
    }

    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }

    .prefix_1,
    .prefix_2,
    .prefix_3 {
        padding: 0 !important;
    }

    /* -------------------------------------------------------------------- */
    /* ----- TYPOGRAPHY ----- */
    h1 {
        font-size: 34px;
        line-height: 56px;
    }

    h2 {
        font-size: 30px;
        line-height: 52px;
    }

    h3 {
        font-size: 28px;
        line-height: 50px;
    }

    h4 {
        font-size: 26px;
        line-height: 48px;
    }

    h5 {
        font-size: 24px;
        line-height: 46px;
    }

    h6 {
        font-size: 24px;
        line-height: 44px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 0 15px 0;
    }

    img {
        max-width: 100%;
        vertical-align: middle;
    }

    /*.content_wrap {*/
    /*    background: #F4F3F7;*/
    /*}*/

    /* -------------------------------------------------------------------- */
    /* ----- APPRISE EDITS ----- */
    div.apprise {
        max-width: 90% !important;
        left: 5% !important;
        top: 10%;
    }

    div.apprise .apprise-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    /* ----- SITE HEADER ----- */
    .mobile_menu_overlay {
        top: 0;
    }

    header .logo {
        margin-left: 15px;
    }

    header .logo img {
        max-width: 140px;
    }

    .searchToggle {
        width: 17px;
    }

    .my_account {
        width: 17px;
    }

    .shoppingCart {
        padding-left: 0;
    }

    .small_cart {
        width: 20px;
        height: 20px;
    }

    .header_right {
        margin-left: 15px;
    }

    .shoppingCart {
        border-left: 0;
    }

    /* -- SEARCH WRAP -- */
    .search_wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: 10px;
        box-sizing: border-box;
        background: #111A60dd;
        border-width: 1px 0;
        z-index: 1000;
    }


    .mobile_search_close {
        float: right;
        margin-bottom: 20px;
    }

    .search_container {}

    .siteSearch {
        width: 100%;
        height: 36px;
        border: 0;
    }

    /* -- FOOTER -- */
    .footer_container {
        flex-direction: column;
    }

    .footer_col {
        width: 100%;
    }

    .footer_col:first-child {
        margin-bottom: 40px;
    }

    .footer_col:not(:first-child) .footer_col_title {
        border-bottom: 1px solid #1D2775;
        display: flex;
        align-items: center;
        padding-bottom: 0;
    }

    .footer_col:not(:first-child) .footer_col_title img {
        margin-left: auto;
    }

    .footer_col:not(:first-child) .footer_col_title:after {
        display: none;
    }

    .footermenu {
        display: none;
        margin-bottom: 40px;
    }

    .footer_social {
        border-top: 0;
    }

    /* ----- MODULES ----- */
    /* -- Full Screen Gallery -- */
    .frame.main {
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .fsg,
    .fullscreenfade {
        min-width: 100%;
        height: auto;
        max-width: 100vw !important;
    }

    div.fullscreenfade div.slide {
        background-repeat: no-repeat;
        /* background-size: cover; */
    }

    div.fullscreenfade div.slide .banner {
        padding: 20px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    div.fullscreenwrap,
    div.fullscreenwrap div {
        max-width: initial !important;
    }

    /*Image Block*/
    .ib-item .ib-image{height: 145px;}
    .ib-item .ib-button a{font-size: 12px; }

    .image-block-module{padding: 15px 0;}

}


/* -------------------------------------------------------------------------------------------------------- MOBILE END  */

/* --------------------------------------- */


/* --------------MOBILE SMALL------------------- */


/* --------------------------------------- */

@media (max-width: 360px) {
    .mobile_small-hidden {
        display: none !important;
    }
}

.increase:disabled,
.decrease:disabled,
.choicesQtyInput:disabled {
    cursor: not-allowed;
    opacity: 0.6; /* optional: makes it visually look disabled */
}

/*----------------------AH Custom Code -----*/
.ahNoBg{
    background-color: transparent !important;
}
.ahLocationSEWrap .layout_text_wrap{
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}
.ahProductPriceWrap h4 {
    font-size: 28px;
    color: #dd2a1b;
}
.ahCaseBarcodeWrap span {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #e31e24;
    font-weight: bold;
    margin-bottom: 10px;
}
.productDetailAddTowish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 13px 0;
    max-width: 500px;
}
.productDetailAddTowish .wishListIco {
    position: unset;
    width: 56px;
    height: 46px;
}
.productDetailAddTowish .ahCustomQuantity {
    width: 100%;
    margin-left: 20px;
    background-color: #dd2a1b;
    color: white;
    border-radius: 50px;
    font-size: 24px;
    padding: 10px 50px;
    margin-top: 0;
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.productDetailAddTowish .wishListIco img {
    height: 23px;
}
.ahCustomQuantity input[type="number"] {
    width: 30px;
    background-color: transparent !important;
    font-weight: 600;
}
.ahCustomQuantity input.input-text {
    border-right: 0;
    border-left: 0;
}
.ahCustomQuantity input {
    background: transparent;
    border: 0;
    padding: 0;
    width: 20px;
    height: 28px;
    text-align: center;
    cursor: pointer;
    margin-left: -3px;
    line-height: normal;
}
.search_results{
    justify-content: center !important;
}
.productDetailAddTowish .ahCustomQuantity input {
    color: white;
    font-size: 24px;
}
.categorySS{
    margin: 0 10px;
    padding: 2px 20px !important;
    background-color: #dd2a1b !important;
}
.productDetailAddTowish .categorySS input {
    color: white;
    font-size: 17px;
}
.redHeart {
    display: none !important;
}
.wishListIco.active {
    background-color: rgba(245, 245, 245, 1);
}
.wishListIco {
    position: absolute;
    background-color: black;
    padding: 10px;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    z-index: 2;
    cursor: pointer;
}
.wishListIco_ss{
    top: 5px;
    left: 5px;
}
.wishListIco_ss img{
    width:15px;
    height:15px !important;
    max-width: fit-content !important;
}
.edit-btn-ss{
    background-color: #F0F0F0 !important;
}
.edit-btn-ss:hover{
    background-color: #DD2A1B !important;
    color: #fff !important;
}
.productDetails_wrap .productTitle h1 {
    color: black;
}
.min-h-120{
    min-height:120px
}
.ahServiceBox{
    clear: both;
    overflow: hidden;
}
.ahMobileItem {
    display: none;
}
.bgWhite {
    background-color: white;
}
.backtoshoppingIco {
    margin-right: 12px;
}
.backtoshoppingIco img {
    max-width: 33px !important;
}
.logOutView {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 5px));
    grid-gap: 10px;
    padding: 10px;
}

.logOutView .btn {
    border: none;
    background-color: #0B1351;
    padding: 10px;
    color: white;
    border-radius:5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    font-weight:bold;
}

.logOutView .btn-danger {
    background-color: #dd2a1b;
}
.logOutView .btn img {
    width: 15px;
    margin-right: 5px;
}


.mobile-btn-shop{
    display: none;
}
.ahTOpBarText{
    margin-left:20px;
}
.mobileDeliveryText{
    display:none;
}
.mobileDeliveryText {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #df1920;
    padding: 8px;
    text-align: center;
    color: white;
}
.vbox-figlio {
    max-height: calc(100vh - 100px);
}
.ahLocationSEWrap .layout_image_wraps > img {
    max-width: 62%;
}
.ahLocationSEWrap .layout_image_wraps{
    text-align: center;
}
.catMobileImg{
    display:none;
}

@media (max-width:959px){
    .ahLocationSEWrap .ahNoBg {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
}
@media (max-width:767px){
    .ahServiceBox .grid_4 {
        width: calc(50% - 10px) !important;
    }
    .ahServiceText span {
        font-size: 20px;
    }
    .ahServiceBox h6 {
        line-height: normal;
        margin-bottom: 20px;
    }
    .ahServiceText {
        margin-top: 6px;
        display: inline-block;
        width: 100%;
    }
    .ahServiceBox {
        position: relative;
        top: -35px;
    }
    .ahServiceBox .text_container {
        padding: 0;
    }
    .details_page_left .smallImages_wrap {
        display: none;
    }
    .details_page_container{
        padding: 10px 0;
    }
    .productDescription_wrap{
        padding-bottom: 0;
    }
    footer.site_footer {
        margin-top: -20PX;
    }
    .ahMobileItem {
        display: block;
    }
    .desktop-btn{
        display: none;
    }
    .mobile-btn-shop{
        display: block;
        margin-top: 10px;
    }
    .card-mobile-view{
        width: 100%;
    }
    .product-title-mobile{
        flex-direction: column;
            align-items: normal !important;

    }
    .ahDesktopItem {
        display: none;
    }
    .ahLocationSEWrap .layout_text_wrap {
        margin-top: 0 !important;
    }
    .ahLocationSEWrap .layout_text_wrap.ahMobileItem {
        margin-bottom: 0;
    }
    .nowprice_ss{
        display: none;
    }
    .mobile-price-view{
        display: block;
        text-align: center;
    }
    .mobile-price_ss{
        display: flex;
        justify-content: center;
        flex-direction: column;
        color: #0B1351;
    }
    .mobile-price_ss b{
        margin-bottom: 3px;
    }
    .logOutView {
        padding: 5px;
    }
    .logOutView .btn {
        padding: 6px 10px;
        font-weight: normal;
        line-height: 12px !important;
    }
    .logOutView .btn img {
        width: 15px;
        margin-bottom:0;
    }
    .search_header.resp-full-width {
        padding: 0 20px !important;
    }
    .mobileDeliveryText{
        display:block;
    }
    .catDesktopImg{
        display:none;
    }
    .catMobileImg{
        display:block;
    }
}
@media (max-width: 576px) {
    .product_title a {
        font-size: 11px  !important;
        line-height: 15px !important;
    }
    .product-title-ss {
        -webkit-line-clamp: 2 !important;
    }
    .productDetailAddTowish-ss {
        max-width: 125px;
    }
    .wasprice_ss {
        justify-content: flex-start;
        gap: 5px;
    }
    .product_price .wasprice span {
        width: 60px;
        font-weight: 500;
    }
    .nowprice_ss {
        top: 27px;
        right: 38px;
    }
    .categorySS {
        padding:0px 10px !important;
    }
    .nowprice_ss span b{
        padding-left: 2px;
    }
    .product_image-ss{
        border: none !important;
    }
    .wishListIco_ss {
        top: 14px;
        left: 6px;
        width: 20px;
        height: 20px;
    }
    .wishListIco_ss img {
        width: 10px;
        height: 10px !important;
    }
    .cm_gal_wrap.carousel .cm_gal_nav::after {
        width: 10px;
        height: 10px;
    }
    .pm_gal_wrap.carousel .pm_gal_nav::after {
        width: 10px;
        height: 10px;
    }
    .details_page_container .productImage img {
        max-width: 100%;
    }
    .ahCardPriceWrap{
        min-width: 80px;
        text-align: center;
        margin-left: 10px;
    }
    .mobile-price_ss {
        font-size: 11px;
    }
    .productDetailAddTowish .ahCustomQuantity{
        margin: 0;
    }
    .productDetailAddTowish .categorySS input {
        font-size: 13px;
    }
    .product_image {
        height: 60px;
        width: 60px;
    }
    .mobile-flex {
        padding-left: 8px;
    }
}
@media (max-width: 380px){
    .product_price .wasprice span {
        width: auto;
    }
    .wasprice_ss {
        justify-content: space-between !important;

    }

}

@media (min-width: 768px){
    .product_info_ss .product_title{
        margin-bottom: 0;
    }

}

