.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.flex-row {
    margin: 0 -10px;
}

.container,
.container.with-xlarge{
    width: 100%;
    max-width: 1220px;
}

.hero-slider-theme, .product-slider-theme{
	margin: 0;
}

.uspsTop{
	background: #efefef;
	padding: 15px 0;
	min-height: 58px;
}

.uspsTop .owl-carousel .owl-wrapper{
	display: flex !important;
    align-items: center;
}

.uspsTop .owl-carousel .owl-item{
	text-align: center;
    justify-content: center;
    display: flex;
}

.uspsTop .usp-item{
	display: flex;
	align-items: center;
}

.uspsTop .usp-text{
	font-size: 10px;
	text-transform: uppercase;
	margin-left: 5px;
}

/* header */
.site-header{
	background: #075069;
	padding-top: 15px;
}
.site-header.is-frontpage {
    background: none;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
}

.logo img{
    max-width: 200px;
}

.site-header .top-search-form {
	display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    top: 100%;
    max-width: 1180px;
    width:100%;
    margin: auto;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
     padding: 5px;
    background: #fff;
     box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* prevent iOS zoom on search input */
.site-header .top-search-form .form-input,
.site-header .top-search-form input[type="text"],
.site-header .top-search-form input[type="search"] {
    font-size: 14px; /* important for iOS */
}

.site-header .top-search-form button svg {
    width: 20px;
}

.site-header .top-search-form input {
    font-size: 14px !important;
    border-radius: 10px;
}

.site-header .top-search-form input::placeholder{
	font-size: 14px;
	font-style: italic;
	color: #b7b7b7;
}

.site-header .top-search-form input,
.site-header .top-search-form button {
    background: none;
    border: none;
    font-weight: 400;
}

#searchBtn{
	cursor: pointer;
	margin-right: 10px;
	margin-left: 20px;
}

#searchBtn svg{
	width: 30px;
}

.headerBtn svg {
    width: 40px;
}

.site-header .quick-cart-link {
    display: flex;
    position: relative;
    background: none;
	border: none;
	padding: 0;
	margin-left: 10px;
}
.site-header .quick-cart-link .h6 {
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 12px;
    margin: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background: #32ce86;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .container > .flex{
    position: relative;
}

/* nav */

.site-header .nav{
    position: relative;
	margin: 10px 0 0 0;
}

.site-header ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.site-header .nav > li{
    padding: 0;
    position: static;
}

.site-header .nav > li > a{
	position: relative;
	font-size: 16px;
    color: white;
    display: block;
	padding: 10px 19px;
}
.site-header .nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;             
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.25s ease;
}

.site-header .nav > li:hover > a::after,
.site-header .nav > li > a:focus::after,
.site-header .nav > li.current-menu-item > a::after {
    width: 100%;
}
.site-header .nav > li:first-child > a{
	padding-left: 0;
}

.site-header .nav>li>ul {
  visibility: hidden;
  opacity: 0;
  list-style: none;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  padding: 30px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  min-width: 200px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 5px solid #00a7e1;
}

.site-header .nav>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.site-header .nav>li>ul>li {
    display: inline-block;
    line-height: 1.4;
    padding: 0 1% 5px;
    width: 31%;
    vertical-align: top;
}

.site-header .nav ul li a{
  font-weight: 500;
}

.site-header .nav ul li a:hover{
  color: #00a7e1;
}

.site-header .nav>li>ul>li>a {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 2px;
    padding-bottom: 5px;
    border-bottom: 2px solid #00a7e1;
}

.site-header .nav>li>ul>li>ul{
    padding: 5px 0 0 !important;
    margin-bottom: 10px !important;
}

.site-header .nav>li>ul>li>ul li a{
        line-height: 18px;
        font-size: 13px;
        margin-right: 0;
        padding: 0 2rem 0 0;
}
.mm-slideout { 
    z-index: 0; 
}

.mm-menu_offcanvas {
    z-index: 9;
}
.mm-navbar__title,
.mm-listitem__text{
    color: #000!important;
    font-weight: 700;
}

/* slider */
.site-slider{
	margin-bottom: 40px;
}
.site-slider .hero-slider-theme { 
   margin: 0; 
   line-height: 0;
} 
.site-slider .hero-slider-theme img { 
	width: 100% !important;
	min-height: 300px;
	object-fit: cover;
} 
.site-slider .hero-slider-theme .placeholder-wrapper {
   max-width: 100% !important;
   min-height: 300px;
}
.w-slider-caption.item-caption{
    background: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
	text-align: left;
}

.w-slider-caption-wrapper{
	max-width: 270px;
}


.w-slider-caption.item-caption .h2{
    font-size: 19px;
    line-height: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.w-slider-caption.item-caption .h4{
    font-size: 14px;
    line-height: 14px;
	 margin-bottom: 20px;
}

.item-link{
    display: flex !important;
    background: #0c2438;
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 6px 6px 35px;
    align-items: center;
    width: max-content;
    transition: .3s linear;
}

.item-link .fa{
    background: #64a4bd;
    border-radius: 50%;
    display: inline-flex;
    width: 26px;
    height: 26px;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 15px;
}

.item-link:hover{
    background: #00a7e1;
}

.item-link:hover .fa{
    background: #0c2438;
}


/* categories */
.cItem{
	display: flex;
}
.cItem .placeholder-wrapper{
    overflow: hidden;
}

.cItem .placeholder-wrapper img{
    transition: .3s linear;

}

.cItem .placeholder-wrapper img:hover{
    transform: scale(1.1);
}


.cItem-title{
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-top: 5px;
}

.site-linkBoxes{
    margin-bottom: 40px;
}

.category-item{
    margin-bottom: 20px!important;
}

.category-item .h5{
    margin: 0;
    background: #00a7e1;
    padding: 10px;
    color: #fff!important;
    border-radius: 5px;
    text-align: center;
}

/* timer */
.timerSection{
    margin-bottom: 55px;
}

.timerSection img{
    display: none;
}

.timerBlock{
    position: relative;
    background: #00a7e1;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
}

.timerTitle{
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    font-weight: 600;
}
.timer{
    width: 250px;
    text-align: center;
    margin: 0 auto;
}

.timerSubtitle{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
}

.timerDigits{
    max-width: 230px;
    margin: 0 auto 10px auto;
}

.t-unit{
    color: #fff;
}

.t-value{
    font-size: 27px;
    font-weight: 600;
}

.t-label{
    font-size: 11px;
}

/* Products */
.productsHeadline{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    background: #00a7e1;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 40px;
}
.productsHeadline a {
    color: #fff !important;
}

.productItem .type-col{
    text-align: center;
    border: none;
}

.productItem .productContent{
    overflow: visible;
    height: 100%;
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
}

.productItem img{
    padding: 10px;
}

.productItem .productContent .image a{
    margin-bottom: 0!important;
}

.productWrapper{
    background: #efefef;
}

.h5.m-productlist-title{
    display: block;
    font-size: 15px;
    padding-top: 20px;
}

.m-productlist-brand{
    font-size: 11px;
    text-transform: uppercase;
}

.brandAbsolute{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.productItem .type-col .product-transaction{
    background: none;
}

.m-productlist-price-before-discount{
    font-size: 13px;
    color: #8d8e8e;
}

.productItem .m-productlist-price{
    font-size: 21px;
    font-weight: 500;
    color: #00a7e1;
}
.btnMain,
.btnMain:visited,
.productItem .type-col .button-primary{
    display: inline-block;
    background: #00a7e1;
    color: #fff!important;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    padding: 9px;
    max-width: 155px;
    margin: 0 auto;
    text-align: center;
    transition: .3s linear;
    max-height: 37px;
}

.btnMain.btnMain-full{
    max-width: 100%;
}

.btnMain{
    padding: 9px 15px;
}

.btnMain:hover,
.productItem .type-col .button-primary:hover{
    background: #0c2438;
}

.btnSecondary{
    font-size: 13px!important;
    letter-spacing: 1px!important;
    border-radius: 30px!important;
    padding: 6px 15px!important;
     max-height: 37px;
}

.btnSecondary .fa{
    padding-right: 5px;
}

.m-product-transaction-amount .form-input{
    height: 37px;
}

.contactInfoContainer .button-primary,
.contactInfoContainer .button{
    border-radius: 30px!important;
}

.badge.badge-danger,
.badge.badge-succes,
.badge-sale{
    background: #e8297a;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 5px;
}


.badge.badge-succes {
    background-color: #00a7e1;
    border-color: #00a7e1;
}

.badge.badge-danger{
    background: #0C2438;
    border-color: #000;
}


.m-product .splash, .m-productlist .splash {
    right: 1em;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.m-productlist .splash {
    bottom: 1em;
    top: auto;
    right: auto;
    left: 1em;
    align-items: flex-start;
}

.frontpage-background {
    background: url(../images/SNOWFLAKE-BACKGROUND.webp) center no-repeat;
    background-size: auto 100%;
}

/* welcome */
.welcome{
    padding: 100px 0;
}

.welcome .h2{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #00a7e1;
    margin: 0;
}

.welcome h1,
.welcome h2{
    font-size: 28px;
    font-weight: 400;
    margin: 10px 0 30px 0;
}

.welcome p{
    font-size: 16px;
    line-height: 23px;
}

/* brands */
.brand-slider{
    padding: 75px 0;
}
.brand-slider .hero-slider-theme .owl-controls .owl-buttons .owl-next,
.brand-slider .hero-slider-theme .owl-controls .owl-buttons .owl-prev {
    width: 30px;
    height: 30px;
    color: #000;
}
.brand-slider .hero-slider-theme .owl-controls .owl-buttons .owl-next:before {
    content: '\f105';
}
.brand-slider .hero-slider-theme .owl-controls .owl-buttons .owl-prev:before {
    content: '\f104';
}
.brand-slider .owl-carousel .owl-item {
    padding: 0 25px;
}

/* faq */
.faq-section{
    padding: 60px 0;
    position: relative;
}

.faqImage{
    display: none;
}

.faqHeadline{
    font-size: 33px;
    font-weight: 600;
}

.faqDescription{
    margin-bottom: 40px;
}

.faqDescription p{
    font-size: 15px;
    line-height: 26px;
}

.accordion__item {
	margin-bottom: 5px;
}

.accordion__item:last-child{
	margin-bottom: 0;
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 20px 60px 20px 25px;
    font-size: 17px;
    text-decoration: none;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
    cursor: pointer;
    color: #fff;
	background: #00a7e1;
}


.accordion__item .accordion__title:hover {
	background-color: #00a7e1;
	-webkit-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;
}

.accordion__item .accordion-active {
	background-color: #00a7e1;
}

.accordion__arrow-wrapper{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 10px;
}

.accordion__item .accordion__title .accordion__arrow{
	width: 34px;
	height: 34px;
	text-align: center;
	background: #ffffff;
    border-radius: 50%;
	line-height: 25px;
	font-size: 32px;
	font-weight: 700;
	margin-right: 5px;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;

}

.accordion__item .accordion__title .accordion__arrow svg{
    width: 20px;
}

.accordion__item .accordion__rotate {
	-webkit-transform: rotate(136deg);
	    -ms-transform: rotate(136deg);
	        transform: rotate(136deg);
}

.accordion__item .accordion__content {
	padding: 25px;
	margin-bottom: 2px;
	font-size: 15px;
	display: none;
	color: #fff;
	background-color: #00a7e1;
}

.accordion__item .accordion__arrow-item {
	font-weight: 700;
} 

/* contactSection */

.contactSection-wrapper{
    position: relative;
    display: flex;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.imgMobile{
    display: block !important;
    position: absolute;
    bottom: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 90%;
}

.contactSection-info{
    color: #fff;
    position: relative;
    width: 100%;
    text-align: center;
    background: #0c2438;
    border-radius: 10px;
    padding: 20px 10px;
}
.contactSection-info p {
    margin-left: 0;
    margin-right: 0;
}

.contactSection-info h2{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 5px 0;
}

.contactSection-info i{
    display: block;
    margin-bottom: 10px;
}

.mapLink{
    display: inline-block;
    background: #feb447;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 21px;
    border-radius: 20px;
    color: #000 !important;
}

/* usps */
.usps{
    margin: 50px 0 30px 0;
}

.usps .usp{
    width: 50%;
    padding: 0 10px;
}

.uspItem-image{
    width: 68px;
    height: 68px;
    background: #00a7e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.usps .usp{
    margin-bottom: 20px;
}

.usps .title{
    font-size: 13px;
    font-weight: 500;
    color: #111111;
}

.usps .subtitle{
    font-size: 13px;
    line-height: 17px;
    letter-spacing: .2px;
    font-style: italic;
}
.usps .subtitle,
.usps .subtitle a {
    color: #00a7e1;
}
.usps .subtitle a {
    text-decoration: underline;
}

/* footer */
.site-footer {
    border: none;
    background: url(/upload_dir/pics/footerBg.jpg) no-repeat center/cover;
    padding: 60px 0;
}

.footerCol{
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
}

.site-footer p,
.site-footer span,
.site-footer li,
.site-footer a {
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .footerTitle {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.footer-menu .dropdown:hover>.dropdown-menu {
    display: none !important;
}

.footer-menu li {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.cards {
    padding: 40px 0;
    background: #075069;
}

.cards ul,
.cards p {
    margin: 0;
}
.cards img {
    max-width: 100%;
    margin: 0 auto;
}

.cards img.is-inline-block{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: -5px;
}
.contact-person {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
}
.contact-person .image img,
.contact-person .image {
    margin: 0;
    z-index: 1;
    line-height: 0;
}
.contact-person .image img {
    border: 2px solid #fff;
    border-radius: 50%;
}
.contactText {
    background: #0b6d8f;
    border: 1px solid #2c8eaf;
    border-radius: 0 30px 30px 0;
    padding: 5px 10px 5px 40px;
    font-size: 13px;
    margin-left: -30px;
    width: 175px;
    line-height: 1;
}

.contact-text a{
    font-size: 13px;
    line-height: 17px;
}

/* single product */

.m-product-warnings,
.m-product-information .panel-success.m-product-instock,
.m-product-additional-info .nav-tabs li.active>a,
.m-product-additional-info .t-panel-clean>.pane,
.m-product-variants .panel-warning,
.m-product-variants .panel-success,
.w-notification .panel-success,
.panel-warning,
.panel-danger.m-product-stock.m-product-soldout,
.m-product-information .panel-danger{
    background: none;
}
.panel-warning,
.panel-success a,
.panel-success{
    color: #000000;
    border: 1px solid #00a7e1;
}

.panel-success a{
    border: none;
}

.m-product-information .panel-warning,
.m-product-information .panel-success a,
.m-product-information .panel-success{
    color: #000;
    border: none;
}

.m-product-information .panel-warning .panel-body,
.m-product-information .panel-success .panel-body{
    padding: 0;
}

.variantInfoPanel .price,
.m-product-price{
    color: #00a7e1;
    font-weight: 500;
    font-size: 22px;
}

.m-product-brand-text{
    text-transform: uppercase;
}
.m-product-buttons-list-button label input {
    display: none !important;
}
.m-product-buttons-list-button label span {
    padding: 10px 20px;
    display: block;
    border: 1px solid #ccc;
    font-weight: normal;
    font-size: 12px;
    transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    outline: 1px solid transparent;
    white-space: nowrap;
    border-radius: 16px;
    margin-left: 1px;
    margin-top: 1px;
    margin-bottom: 1px;
}
.m-product-buttons-list-button label input:checked + span {
    border-color: #2F2F2F;
    outline: 1px solid #2f2f2f;
}
.gap-default {
    gap: 10px;
}
.productUsps{
    margin: 20px 0;
    text-transform: uppercase;
}

.productUsps-item{
    padding: 0 10px;
}

.m-product-title.product-title{
    margin-top: 0;
    margin-bottom: 0;
}

.m-product-transaction .btnMain {
    width: 100%;
    max-width: unset;
    margin: 0 10px 0 0;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1.5;
}

.m-product-transaction-button{
   flex-grow: 1;
}

.m-product-transaction-amount .input-group{
    max-width: 155px;
}

.thumbelina.owl-carousel .item {
    width: 100% !important;
    display: block;
}
.thumbelina.owl-carousel .owl-item {
    padding: 0 2px;   /* adjust px as you like */
}

.thumbelina.owl-carousel .item {
    width: 100%;
    display: block;
}

.thumbelina{
    position: relative;
}

@media (max-width: 959px) {
    .w-notification .order-1 {
        text-align: center;
    }
}

@media(max-width:768px){
    .productUsps .flex{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(min-width:480px){
    .logo img{
        max-width: 250px;
    }
	.cItem-title{
		font-size: 18px;
	}
    .footerCol{
        width: 50%;
    }
    .timerTitle{
        font-size: 32px;
    }
    .timer{
        width: 420px;
    }

    .timerSubtitle{
        font-size: 18px;
    }

    .timerDigits{
        max-width: 360px;
    }

}
@media(min-width:768px){
    .usps .usp{
        width: 16.6666%;
    }
}
@media(min-width:960px){
	.searchBtn{
		display: none;
	}
	.site-header .top-search-form{
		display: block;
		position: relative;
		width: 100%;
		margin: 0 40px;
		max-width: 550px;
	}
	.w-slider-caption-wrapper {
		max-width: 575px;
		margin-top: 90px;
		margin-left: 5%;
	}
	.w-slider-caption.item-caption .h2 {
		font-size: 47px;
		line-height: 47px;
	}
	.w-slider-caption.item-caption .h4 {
		font-size: 18px;
		line-height: 18px;
	}
    .timerBlock{
        background: none;
        padding: 0;
        border-radius: 0;
        text-align: left;
    }
    .timerSection img{
        display: block;
        width: 100%;
        margin: 0;
        min-height: 169px;
        object-fit: cover;
    }
    .timerTitle{
        position: absolute;
        bottom: 30px;
        left: 60px;
        width: 155px; 
    }
    .timerTitle{
        position: absolute;
        bottom: 30px;
        left: 60px;
        width: 155px;
    }

    .timer{
        position: absolute;
        bottom: 20px;
        right: 10%;
    }
    .footerCol{
        width: 20%;
    }
}

@media(min-width:1024px){

}
@media(min-width:1140px){
	.site-header .nav > li > a{
		padding: 10px 29px;
	}    
    .contactSection{
        margin-top: 0;
    }
    .contactSection img{
        display: block;
        margin-bottom: 0;
        object-fit: cover;
        object-position: right;
    }
    .contactSection-info{
        background: none;
        border-radius: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1em;
        max-width: 50%;
    }
    .mapLink{
        position: absolute;
        right: 1em;
        bottom: 1em;
    }
    .contactSection-info h2{
        font-size: 35px;
    }
}
@media (max-width: 1139px) {
    .contactSection-wrapper {
        flex-direction: column;
        background-image: none !important;
    }
    .contactSection-wrapper img {
        margin-bottom: 0;
        max-width: 100%;
    }
}
@media(min-width:1200px){
	.site-header .nav > li > a{
		padding: 10px 32px;
	}    
}
@media(min-width:1600px){
    .faqImage{
        display: block;
        position: absolute;
        bottom: -65px;
        left: 0;
    }
}


.panel-reserve {
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.panel-visible {
    opacity: 1;
    visibility: visible;
}
.panel-reserve>div {
    padding: 2em;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border: 1px solid #eee;
    overflow: auto;
}
.panel-reserve .form-input {
    margin-bottom: 10px;
}
.panel-reserve svg {
    cursor: pointer;
    max-width: 30px;
    display: block;
    margin-left: auto;
}
.variantInfoPanel .panel-danger {
    color: red;
}

/* popup kurv */
.w-notification.w-modal-window {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    transition: all .2s ease-in;
}
.w-notification.w-modal-window.is-closed {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.w-notification.w-modal-window .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0,.7);
    z-index: 1;
    display: block;
    border: none;
    width: 100%;
    cursor: default;
}
.w-notification.w-modal-window>div {
    padding: 1em;
    background: #fff;
    width: 85%;
    margin: auto;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 15px;
    z-index: 2;
}
.w-notification.w-modal-window>div>.fa {
    position: absolute;
    right: 0;
    top: 5px;
    background: none;
    border: none;
    font-size: 2em;
}
.w-notification header.text-center {
    margin: -1em -1em 0.5em;
    font-weight: bold;
    padding: 10px;
    background: #075069!important;
    color: #fff;
}
.w-notification header+.col-row {
    border-top: 3px solid #eee;
}
.w-notification header+.col-row>div {
    padding-top: 1em;
    padding-bottom: 1em;
}
.w-notification header button {
    background: none;
    border: none;
    font-size: 2em;
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    color: #fff;
}
.w-notification .col-row .button {
    margin-top: 1em;
}
.w-notification .col-row .button,
.w-notification .col-row .button-primary {
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
}
.w-notification .table td {
    padding: 0 5px;
}

.w-notification.w-modal-window>div .row-buttons .button-primary {
    height: 100%;
    background-color: #00a7e1;
    border-color: #00a7e1;
}
.w-notification.w-modal-window>div .row-buttons .button-primary,
.w-notification.w-modal-window>div .row-buttons .button {
    border-radius: 30px;
}

.relatedHeader{
    background: #075069!important;
    padding: 10px 0;
}

.relatedHeader .h1{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.gap-default {
    gap: 10px;
}
.filter-brands .form-group {
    margin: 0;
}