:root {
    --main_font: [main_font];
    --second_font: [second_font];
    --main_color: [main_color];
    --second_color: [second_color];
}

body, html {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
html{
    scroll-behavior: smooth;
}
.skip-link{
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10000;
    transform: translateY(-150%);
    background: #fff;
    color: #1a244a;
    border: 2px solid var(--main_color);
    border-radius: 4px;
    padding: 8px 12px;
    transition: transform .2s;
}
.skip-link:focus{
    transform: translateY(0);
}
.hero-cta{
    text-align: center;
    margin: 30px 0 0;
}
body{
    font-family: var(--main_font);
    line-height: 24px;
    color: #444;
    font-size: 16px;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a{
    color: var(--main_color);
    text-decoration: none;
    border-bottom: 1px solid var(--main_color);
}
a:hover{
    border: 0;
    text-decoration: none;
}
ul{
    margin: 0; padding: 0;
    list-style-type: none;
}
.simple ul{
    margin: revert; padding: revert;
}
.simple li {
    margin-bottom: 5px;
}
.simple ul li::before {
    content: "\2022";
    color: #e4272e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 18px;
}
h1,h2,h3,h4{
    font-family: var(--second_font);
    font-weight: 600;
    padding: 0;
    line-height: 1.2;
    color: #404040;
}
h1{
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    width: fit-content;
}
h1:after{
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80%;
    height: 3px;
    max-width: 300px;
    background-color: var(--main_color);
}
h2,h3{
    font-size: 26px;
    margin: 0;
    padding: 30px 0 20px;
}
h4{
    font-size: 22px;
    margin: 30px 0 20px;
}
p{
    margin: 0 0 15px 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
table{
    width: 100%;
    margin-bottom: 15px;
}
th, td{
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}
table thead th{
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
    text-align: left;
    color: #404040;
}
input:not(.btn):not([TYPE=checkbox]):not([TYPE=radio]):not([TYPE=button]):not([TYPE=submit]), select, textarea, button {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 9px;
    font-size: 16px;
    line-height: 24px;
    -webkit-appearance:none;
    color: #444;
}
p.title{
    font-family: var(--second_font);
    font-size: 18px;
    font-weight: 600;
}
.content, #fixed-menu .wrapper {
    width: 95%;
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
}
hr{
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eee;
}
.blocked {
    opacity: 0.5;
    pointer-events: none;
}
.flex{
    display: flex;
}
.space{
    justify-content: space-between;
}
.hcenter{
    justify-content: center;
}
.vcenter{
    align-items: center;
}
.w30{
    width: 30%;
}
.w40{
    width: 40%;
}
.w50{
    width: 50%;
}
.w60{
    width: 60%;
}
.w70{
    width: 70%;
}
.fright{
    float: right;
}
.center{
    text-align: center;
    margin: 0 auto;
}
.right{
    text-align: right;
}
.content{
    padding: 100px 0;
}
.btn{
    display: inline-block;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    border: 0;
    padding: 17px 28px 17px 28px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--main_color);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(50%);
    }
}

.btn.processing {
    position: relative;
    overflow: hidden;
    pointer-events: none;
    background-color: #333;
    color: #999;
}
.btn.processing:before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 200%;
     height: 100%;
     background: repeating-linear-gradient(
         to right,
         #fff 0,
         #fff 5%,
         transparent 5%,
         transparent 10%
     );
     animation: slide 5s linear infinite;
     opacity: 0.2;
}
.btn:hover{
    background-color: var(--second_color);
}
.btn.white{
    background: #fff;
    border: 2px solid var(--main_color);
    color: var(--main_color);
}
.btn.inactive,.btn.inactive:hover{
    background: #333;
    color: #999;
}
.mobile-el {
    display: none;
}
.hidden{
    display: none;
}
.inline{
    display: inline-block;
}
#header-inner{
    color: #fff;
    padding-top: 5px;
}
#header-inner a,#fixed-menu a,#mobile-menu a{
    border: 0;
}
#header-inner a:hover,#fixed-menu a:hover,#mobile-menu a:hover{
    text-decoration: none;
}
.mobile-menu-btn{
    float: right;
    display: none;
    width: 44px;
    height: 44px;
    background: transparent url(/view/images/burger-w-icon.svg) no-repeat center;
    background-size: 24px 24px;
    border: 0;
    cursor: pointer;
    outline: none;
    text-indent: 20px;
}
.mobile-menu-btn:hover{
    background: transparent url(/view/images/burger-w-icon.svg) no-repeat center;
    background-size: 24px 24px;
}
#fixed-menu .mobile-menu-btn{
    background: transparent url(/view/images/burger-b-icon.svg) no-repeat center;
    background-size: 24px 24px;
}
.menu{
    display: inline-block;
}
.menu a,.shopping-cart,.my-account{
    color: #fff;
    line-height: 36px;
    display: inline-block;
    padding: 0px 15px;
    position: relative;
    opacity: 0.6;
    transition: opacity .3s;
}
.menu a.active{
    opacity: 1;
}
.shopping-cart:before, .my-account:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
}
.shopping-cart, .my-account{
    padding: 0 0 0 35px;
}
.shopping-cart:before{
    background: url(/view/images/cart-w-icon.svg) no-repeat;
}
.my-account:before{
    left: 15px;
    background: url(/view/images/profile-w-icon.svg) no-repeat;
}
#fixed-menu{
    position: fixed;
    z-index: 200;
    background-color: #fff;
    padding: 10px 0 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s;
    border-bottom: 1px solid #ddd;
}
#fixed-menu.expand{
    visibility: visible;
    opacity: 1;
}
#fixed-menu .menu a, #fixed-menu .shopping-cart{
    color: #000;
    padding-bottom: 10px;
}
#fixed-menu .shopping-cart:before{
    background: url(/view/images/cart-b-icon.svg) no-repeat;
}
#fixed-menu .my-account:before{
    background: url(/view/images/profile-b-icon.svg) no-repeat;
}
#mobile-menu{
    position: fixed;
    background-color: #fff;
    top: 60px;
    z-index: 1000;
    bottom: 0;
    right: 0;
    width: 200px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.5);
    padding: 15px;
    color: #aaa;
    transition: transform .3s;
    transform: translateX(300px);
}

.select-arrow{
    position: relative;
}
.select-arrow:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: url(/view/images/icons/arrow-b.svg) no-repeat;
    pointer-events: none;
}

footer .icons{
    position: relative;
    padding: 0 0 5px 28px;
}
footer .icons:before{
    content: '';
    left: 0;
    position: absolute;
}
footer .icons:before{
    width: 20px;
    height: 20px;
    top: 2px;
}
footer .icons.phone:before{
    background: url(/view/images/phone-cir-w-icon.svg) no-repeat center/cover;
}
footer .icons.email:before{
    background: url(/view/images/email-cir-w-icon.svg) no-repeat center/cover;
}
footer .icons.fb-share:before{
    background: url(/view/images/fb-cir-w-icon.svg) no-repeat center/cover;
}
footer .icons.inst-share:before{
    background: url(/view/images/inst-cir-w-icon.svg) no-repeat center/cover;
}
.share-links a{
    border: 0;
    margin-right: 5px;
}
footer{
    background-color: #1A1F3F;
    margin-top: auto;
    font-weight: 300;
}
footer a{
    color: rgba(255,255,255,0.5);
    border: none;
}
footer a.active{
    color: #fff;
}
footer .content{
    padding: 30px 0 10px;
    text-align: left;
}
.footer>li{
    margin-bottom: 20px;
}
footer .title{
    font-size: 16px;
    padding-bottom: 15px;
    border: none;
}
#footer-logo{
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-right: 20px;
}
#footer-logo p{
    margin: 0;
    line-height: 16px;
    padding: 0;
    text-align: left;
}
#footer-contact{
    margin-left: auto;
}
.footer-bottom{
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.footer-bottom a{
    padding: 0px 10px;
    font-size: 14px;
}
@media only screen
and (min-width : 1024px) {
    footer a:hover{
        color: #fff;
    }
    .menu a:hover, .shopping-cart:hover, .my-account:hover {
        opacity: 1;
    }
}
@media only screen
and (max-width : 1024px)  {
    h1{
        font-size: 30px;
        line-height: 1.2;
    }
    h2{
        font-size: 24px;
    }
    h3{
        font-size: 24px;
        padding-bottom: 30px;
    }
    .top_menu{
        display: none;
    }
    .mobile-menu-btn{
        display: block;
    }
    .menu a{
        color: #000;
        opacity:0.6;
    }
    .menu a:hover, .menu a.active{
        opacity:1;
    }
    .menu a, .shopping-cart{
        display: block;
        padding: 0 0 5px;
    }
    .shopping-cart{
        position: absolute;
        top: 13px;
        right: 35px;
        color: #fff;
    }
    #mobile-menu.expand{
        transform: translateX(0);
    }
}
@media only screen
and (max-width : 600px)  {
    .content{
        padding: 50px 0;
    }
    .noflex600{
        display: block;
    }
    .desktop-el{
        display: none;
    }
    .mobile-el{
        display: inherit;
    }
}
.cart-collaterals .coupon .button{
    border: 0;
}
.modal{
    position: fixed;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(200,200,200,0.8);
    z-index: 1000;
    display: none;
}
.modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px 0 rgba(0,0,0,.15);
    width: 50%;
    background: #fff;
    border-radius: 3px;
    text-align: center;
    padding: 20px;
}
.modal-close{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    border: 0;
}
.modal-close:before, .modal-close:after {
    position: absolute;
    content: ' ';
    height: 25px;
    width: 2px;
    background-color: #bbb;
}
.modal-close:hover:before,.modal-close:hover:after {
    background-color: #4f2ee5;
}
.modal-close:before {
    transform: rotate(45deg);
}
.modal-close:after {
    transform: rotate(-45deg);
}
.modal-buttons{
    display: flex;
    justify-content: space-between;
}
.modal .title{
    font-size: 36px;
    color: #4f2ee5;
}
.modal .mess{
    margin: 30px 0 30px;
    display: none;
    font-size: 18px;
}
.modal .mess span{
    color: #4f2ee5;
}
.modal .mess.show{
    display: block;
}
.modal .popup-btn-no{
    color: #222;
    background-color: #f5f5f5;
}
@media only screen
and (max-width : 600px) {
    .modal-content {
        width: 90%;
    }
    .modal .title{
        font-size: 30px;
    }
}

/* Cookie consent banner */
#cookie-banner{
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    z-index: 9999;
    border: 1px solid #e0e3eb;
}
#cookie-banner.hidden{
    display: none;
}
#cookie-banner p{
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}
#cookie-banner a{
    color: var(--main_color);
    border-bottom: 1px solid var(--main_color);
}
#cookie-banner .cookie-buttons{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
#cookie-banner button{
    padding: 10px 22px;
    border: 1px solid #c0c4ce;
    border-radius: 6px;
    background: #fff;
    color: #1A244A;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background .2s, border-color .2s;
}
#cookie-banner button:hover{
    background: #f7f8fa;
}
#cookie-banner button.primary{
    background: var(--main_color);
    color: #fff;
    border-color: var(--main_color);
}
#cookie-banner button.primary:hover{
    background: #c93535;
    border-color: #c93535;
}
#cookie-settings-link{
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    padding: 0 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}
#cookie-settings-link:hover{
    color: #fff;
}
@media only screen and (max-width: 600px){
    #cookie-banner{
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 18px 20px;
    }
    #cookie-banner .cookie-buttons{
        flex-direction: column-reverse;
    }
    #cookie-banner button{
        width: 100%;
    }
    .footer-bottom a, #cookie-settings-link{
        padding: 0 5px;
        font-size: 12px;
    }
    #footer-logo p{
        font-size: 12px;
    }
    footer .icons {
        font-size: 13px;
    }
}
