﻿
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    min-height: 100%;
    flex: 1;
    align-items: stretch;
}
.d-none-soft{
    display: none;
}
html, body{
    scroll-padding-top: 60px;
}
@media screen and (max-width: 768px){
    html, body{
        scroll-padding-top: 40px;
    }
}
.bg-blue-gradient{
    background: var(--bs-primary);
    background: linear-gradient(45deg, var(--bs-success) 0%, var(--bs-primary) 100%);
}
/* Header */
header{
    transition: box-shadow 0.5s ease 0s, background-color 0.3s ease 0.2s;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}
.ui-icon{
    width: 24px;
    display: inline-block;
    text-align: center;
    margin-right: 8px;
}
.displayPic i{
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 2;
    background-color: var(--bs-success);
    color: var(--bs-dark);
    border-radius: 50%;
    line-height: 18px;
    display: block;
    bottom: -5px;
    right: -5px;
    font-size: 10px;
}
.displayPic{
    display: block;
    border: 0!important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--bs-primary);
    border-radius: 50%;
    position: relative;
    z-index: ;
    color: white;
}
.displayPic:before, .displayPic:after{
    content: '';
    position: absolute;
}
.displayPic:before{
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: white;
    z-index: -1;
    border-radius: 50%;
    top: -2px;
    left: -2px;
}
.displayPic:after{
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background: var(--bs-secondary);
    background: linear-gradient(45deg, var(--bs-success) 0%, var(--bs-primary) 100%);
    z-index: -2;
    border-radius: 50%;
    top: -4px;
    left: -4px;
}
.optionsButton{
    width: 40px;
    height: 40px;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: white;
}


/* Logo */
.header-logo{
    height: 40px;
}
@media screen and (max-width: 992px){
    .header-logo{
        max-height: 36px;
    }
}
@media screen and (max-width: 370px){
    .header-logo{
        max-height: 25px;
    }
}
.header-logo path, .header-logo circle{
    fill: var(--bs-primary);
    position: relative;
    transform-origin: 50% 100%;
    transition: fill 0.2s linear;
}
.header-logo :nth-child(1){transition-delay: 0.1s; animation-delay: 0.1s!important;}
.header-logo :nth-child(2){transition-delay: 0.15s; animation-delay: 0.2s!important;}
.header-logo :nth-child(3){transition-delay: 0.2s; animation-delay: 0.3s!important;}
.header-logo :nth-child(4){transition-delay: 0.25s; animation-delay: 0.4s!important;}
.header-logo :nth-child(5){transition-delay: 0.3s; animation-delay: 0.5s!important;}
.header-logo :nth-child(6){transition-delay: 0.35s; animation-delay: 0.6s!important;}
.header-logo :nth-child(7){transition-delay: 0.4s; animation-delay: 0.7s!important;}
.header-logo :nth-child(8){transition-delay: 0.45s; animation-delay: 0.8s!important;}
.header-logo :nth-child(9){transition-delay: 0.5s; animation-delay: 0.8s!important;}
.header-logo :nth-child(10){transition-delay: 0.55s; animation-delay: 0.8s!important;}
.header-logo :nth-child(11){transition-delay: 0.6s; animation-delay: 0.8s!important;}
header.stuck .header-logo > *{
    /*fill: var(--bs-primary);*/
    /*animation: bop 0.4s forwards*/
}
.header-logo:hover :nth-child(1){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(2){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(3){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(4){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(5){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(6){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(7){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(8){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(9){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(10){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(11){animation: bop 0.5s forwards}
header.stuck .header-logo:hover > *{
    fill: var(--bs-dark-primary);
    animation: bop 0.4s forwards
}
@keyframes bop{
    0%{
        transform: translateY(0px) rotate(0);
    }
    50%{
        transform: translateY(-2px) rotate(1deg);
    }
    100%{
        transform: translateY(0px) rotate(0);
    }
}



.btn-menu{
    color: var(--bs-primary);
}
.btn-log-in{
    color: var(--bs-success)
}



/* Generic Hero Section */
.hero.is-searching .hero-bg{
   width: 120%;
   height: 120%;
   opacity: 0.1;
}
.hero{
    position: relative;
    transition: background-color 0.5s ease;
    padding: 100px 0 140px 0;
    background: var(--bs-primary);
    background: linear-gradient(45deg, var(--bs-success) 0%, var(--bs-primary) 100%);
}
.hero-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s cubic-bezier(.54,.13,.12,.95), height 0.7s cubic-bezier(.54,.13,.12,.95), opacity 0.7s cubic-bezier(.54,.13,.12,.95);
    z-index: -1;
    mix-blend-mode: overlay;
    opacity: 0.3;
}
@media screen and (max-width: 991px){
    .hero{
        padding: 150px 0 60px 0;
    }
}
.offer-hero .shape{
    opacity: 0.75;
}
@media screen and (max-width: 768px){
    .hero{
        padding: 60px 0 200px 0;
    }
    .hero .shape, .offer-hero .shape{
        display: none;
    }
}
.filler-img{
    width: 100%;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 10;
}
@media screen and (max-width: 991px){
    .filler-img{
        bottom: -60px;
    }
}



/* FAQs */
.faq-question{
    position: relative;
    color: currentColor;
    z-index: 1;
}
.faq-question:before{
    content:'';
    height: 100%;
    width: 50px;
    border-radius: 10vh 0 0 10vh;
    opacity: 0.3;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    background: currentColor
}
.wave{
    position: relative;
    z-index: 1;
}
/* Swipers */
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    pointer-events: initial;
}
.logo-carousel{
    overflow: hidden;
}
.swiper-wrapper{
    height: auto!important;
}
.logo-carousel .swiper-wrapper{
    padding: 2em 0;
}
.logo-carousel .swiper-slide{
    width: auto;
}
.logo-carousel .swiper-slide img{
    height: 90px;
    pointer-events: none;
    user-select: none;
}
.logo-dots{
    top: 100%!important;
}
.swiper-pagination-bullet{
    background-color: white;
}
.swiper-pagination-bullet-active{
    background-color: var(--bs-success)
}
.copy p{
    font-size: 1.1em;
}
.copy h2{
    font-size: calc(1rem + 1.5vw) !important;
}
.copy h2, .copy h3, .copy h4{
    color: var(--bs-dark);
}
.copy ul, .copy ol{
    font-weight: 500;
    font-size: 1em;
    padding:0;
    line-height: 1.5em;
    margin-bottom: 1rem;
}

.copy ul{
     list-style:none 
}
.copy ul li{
    margin-bottom: 1rem;
    color: var(--black200);
}
.copy ul li:before{
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    content: "\f111";
    margin-right: 10px;
    margin-left: 4px;
    line-height: 1em!important;
    font-size: 0.4em;
    vertical-align: middle;
}
.copy ol li:nth-of-type(1n):before{transform: rotate(4deg)}
.copy ol li:nth-of-type(2n):before{transform: rotate(-3deg)}
.copy ol li:nth-of-type(3n):before{transform: rotate(1deg)}
.copy ol li:nth-of-type(4n):before{transform: rotate(-5deg)}
.copy ol li:nth-of-type(5n):before{transform: rotate(0deg)}

.copy ol li{
    margin-bottom: 1rem;
    color:var(--black200);
    display:inline-block;
    width:100%;
    padding: 0 0 0 2.5em;
    counter-increment:step-counter;
    position: relative
}
.copy ol li:before{
    content: counter(step-counter);
    position: absolute;
    text-align: center;
    height: 26px;
    top: 0;
    left: 0;
    line-height: 26px;
    font-weight: 700;
    border-radius: 6px;
    width: 26px;
    color: white;
    background-color: var(--bs-danger);
    display: inline-block;
    margin-right: 10px;
}
.copy img{
    width: 100%;
    object-fit: cover;
    max-height: 350px;
    max-width: 100%!important;
    border-radius: 10px;
}
/*Shapes*/
.shape-container{position: relative;z-index: 1;overflow: hidden;}
.shape{
    position: absolute;
    z-index: -1;
    width: auto;
    height: auto;
}
.shape-sm{font-size: 32px;}
.shape-md{font-size: 64px;}
.shape-lg{font-size: 128px;}
.shape-xl{font-size: 256px;}
.shape.top-left{top: 0;left: 0;transform: translate(-33%, -33%)}
.shape.top-right{top: 0;right: 0;transform: translate(33%, -33%)}
.shape.bottom-left{bottom: 0;left: 0;transform: translate(-33%, 33%)}
.shape.bottom-right{bottom: 0;right: 0;transform: translate(33%, 33%)}




.icon{
    --icon-size: 1em;
    display: inline-block!important;
    text-align: center;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    width: var(--icon-size)!important;
    height: var(--icon-size)!important;
    line-height: var(--icon-size)!important;
    font-size: calc(var(--icon-size) / 2)!important;
    border-radius: calc(var(--icon-size) / 8);
}

.icon-xs{--icon-size: 1.5em;}
.icon-sm{--icon-size: 2em;}
.icon-md{--icon-size: 2.5em;}
.icon-lg{--icon-size: 3em;}
.icon-xl{--icon-size: 4em;}

.backgroundImage{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    mask: linear-gradient(180deg, transparent, white 50%);
    -webkit-mask: linear-gradient(180deg, transparent, white 50%);
    top: 0;
    right: 0;
    z-index: -1;
    mix-blend-mode: overlay;
    opacity: 0.75;
}
.galleryStack{
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 0;
    z-index: 1;
}
.galleryStack img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transform: rotate(2deg);
    z-index: 1;
}
.galleryStack:before, .galleryStack:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
}
.galleryStack:before{
    z-index: -1;
    background-color: var(--bs-success);
}
.galleryStack:after{
    z-index: -2;
    transform: rotate(-3deg);
    background: var(--bs-dark);
}


.popularOffers a img{
    object-fit: scale-down;
    height: 100%;
    width: 100%;
}
.popularOffers a{
    display: flex;
    padding: 20px;
    overflow: hidden;
    align-items: center;
    width: 200px;
    height: 150px;
    background-size: 2000px 2000px;
    background-position: top right;
}


.category-menu a i{
    margin-right: 8px;
}
.category-menu a{
    width: auto;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    background-color: white;
    border-radius: 8px;
    display: inline;
}
.search-bar input::placeholder, .search-bar select::placeholder {
    color: var(--bs-dark);
    opacity: 1;
}

.search-bar input::-ms-input-placeholder, .search-bar select::-ms-input-placeholder {
    color: var(--bs-dark);
}
.search-bar{
    width: 100%;
    overflow: auto;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: background-color 0.3s ease;
}
.search-bar:focus-within{
    background-color: rgba(255,255,255,1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
}
.search-bar .search-input, .search-bar .search-dropdown{
    border: 0!important;
    outline: 0!important;
    background: transparent;
    height: 52px;
    padding: 0 0 0 12px;
    width: calc(100% - 52px);
    float: left;
}
.search-dropdown{
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.search-bar .search-button{
    display: block;
    float: left;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    position: relative;
}
.search-bar .search-button i{
    transition: color 0.3s ease;
    color: var(--bs-dark);
}
.search-bar .search-button:hover i{
    color: white;
}
.search-bar .search-button:after{
    content: '';
    width: 48px;
    height: 48px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(0,0,0,0);
    transition: transform 0.3s ease, background 0.4s ease, border-radius 0.4s ease;
}
.search-bar .search-button:hover:after{
    background: var(--bs-primary);
    border-radius: 5px;
    transform: scale(1); 
}


.hover-card{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hover-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    z-index: -1;
    opacity: 0.2;
    transition: width 0.4s ease, height 0.5s ease;
}
.hover-card:focus-within .hover-bg, 
.hover-card:focus .hover-bg {
    width: 120%;
    height: 120%;
}

.offer-card-header{
    width: 100%;
    background-color: var(--bs-primary);
    height: 150px;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 6px
}
.offer-card-image{
    position: absolute;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-in, height 0.4s ease-out, opacity 0.4s linear;
    z-index: -1;
}
.offer-card-logo-container{
    width: 80px;
    height: 80px;
    border-radius: 6px;
    background-size: 3000px 3000px;
    background-position: top left;
    overflow: hidden;
    opacity: 1;
    padding: 5px;
    transition: opacity 0.4s ease;
}
.offer-card-logo{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.search-offer-card:hover .offer-card-logo-container{
    opacity: 0;
}
.search-offer-card:hover .offer-card-image{
    width: 120%;
    height: 120%;
    opacity: 0.4;
}
.offer-card-text{
    position: absolute;
    color: white;
    padding: 0 30px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.search-offer-card:hover .offer-card-text{
    opacity: 1;
}


.inner{
    position: absolute;
    z-index: 20;
    width: calc(100% - 16px);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    padding: 8px;
    margin: 8px;
    border-radius: 6px
}

.do-offer-logo{
    width: 120px;
    height: 120px;
    border-radius: 6px;
    position: absolute;
    background-size: 5000px 5000px;
    background-position: top left;
    overflow: hidden;
    opacity: 1;
    padding: 5px;
    z-index: 20;
    top: 1em;
    left: 1em;
    transition: opacity 0.4s ease;
}
.do-offer-logo img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.single-offer-slide{
    height: 400px;
}

@media screen and (max-width: 768px){
    .do-offer-logo{
        width: 80px;
        height: 80px;
    }
    .single-offer-slide{
        height: 220px;
    }
}
.single-offer-slide img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
@media screen and (max-width: 570px){
    .single-offer-carousel:after{
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1011.57 20.61'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23ffffff; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m927.27,8.46c-42.15,0-42.15-8.46-84.3-8.46s-42.15,8.46-84.3,8.46S716.53,0,674.38,0s-42.15,8.46-84.3,8.46S547.93,0,505.79,0c-42.15,0-42.15,8.46-84.3,8.46S379.34,0,337.19,0s-42.15,8.46-84.3,8.46S210.74,0,168.59,0s-42.15,8.46-84.3,8.46S42.15,0,0,0v20.61h1011.57V0c-42.15,0-42.15,8.46-84.3,8.46Z'/%3E%3C/svg%3E");
        bottom: -1px;
        transition: height 0.3s ease-in-out;
        content: "";
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 20px;
        left: 0;
    }
    .single-offer-carousel{
        background-color: var(--bs-primary);
        position: relative;
        z-index: 1;
        width: calc(100% + 24px);
        left: -12px;
    }
    .single-offer-slide img{
        border-radius: 0px!important
    }
    .do-offer-logo{
        left: 14px;
    }
}
@keyframes animate {
    30% {
        transform: scale(1.1);
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    80% {
        transform: scale(1.5);
        opacity: 1;
    }

    90% {
        transform: scale(1.1);
        opacity: 1;
    }
}
.saveButton i.boing{
    animation: animate 0.8s linear forwards;
    color: hotpink
}
.arrowbtn i{
    position: relative;
    transition: transform 0.3s ease;
}
.arrowbtn:hover i{
    transform: translateX( 6px)
}

.simple-offer-card:nth-child(odd){
    background-color: rgba(0,0,0,0.035);
}

@media screen and (min-width: 768px){
    .all-offers:hover .simple-offer-card{
        background-color: white;
    }

    .simple-offer-card:hover{
        background-color: var(--bs-info)!important
    }
}
.simple-offer-card{
    border-radius: 6px;
    padding: 16px;
    transition: background-color 0.3s ease;
}

.countUp.animate{
    opacity: 1;
    transition: all 0.3s ease-in;
}
.countUp{
    position: relative;
    font-size: 4em;
    opacity: 0;
    font-weight: 900;
    color: white;
    text-shadow: 3px 4px 7px rgba(0,0,0,0.2);
}
.btn-faded{
    background-color: rgba(255,255,255,0.3);
    border: 0px!important;
}
.btn-faded:hover, .btn-faded:focus, .btn-faded:active, .btn-faded:focus-within{
    background-color: rgba(255,255,255,0.5)!important;
}

.gj-datepicker .input-group-append button i{
    color: var(--bs-success)
}
.gj-datepicker .input-group-append button{
    border: 0px!important;
}

.sticky-card{
    position: sticky;
    top: 100px;
}
.sticky-buy{
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #051c26;
    padding: 1em 0;
    z-index: 20;
    width: 100%;
    transform: translateY(105%);
    transition: transform 0.2s cubic-bezier(.26,0,.01,1);
    box-shadow: -3px 0px 6px rgba(0,0,0,0.32);
}
.sticky-buy.visible{
    transform: translateY(0%);
}
.bullet-list{
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
}
.bullet-list li{
    color: var(--bs-dark);
    font-weight: 600;
    margin-bottom: 5px;
}
.bullet-list li i{
    color: var(--bs-secondary);
}
.category-menu i{
   min-width: 1em!important;
}
footer.makeSpace{
    padding-bottom: 100px!important;
}
.footer-logo{
    height: 30px;

}
.footer-logo path, .footer-logo circle{
    fill: var(--bs-success);
}
.message p{
    margin-bottom: 0;
}
.qtySelector{display:inline-flex;width:auto;border-radius:4px;overflow: hidden;}
.qtySelector select{border:0;text-align:center;width:50px;height:36px}
.qtySelector button{background-color:var(--bs-primary);color:#fff;border:0;outline:0;width:36px;height:36px}

.map-container{
    position: relative;
}
.show-map{
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-decoration: none;
    background-color: rgba(255,255,255,0.5);
    border-radius: 3px;
    padding: 10px;
    font-weight: 700;
    color: var(--bs-dark);
    backdrop-filter: blur(6px);
}


.signup-page {
    min-height: calc(100vh - 144px) !important;
    background: none !important;
    background-image: none !important;
}


    .signup-page #GDPRAccepted {
        display: unset !important;
        margin: unset !important;
        float: unset !important;
    }

    input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #FFFFFF;
}
    .validation-summary-errors ul{
        list-style: none;
        color: tomato
    }
    #findAddress{
        padding: 0;
        margin: 0;
    }
.section-two #idpc_button{
    padding: 8px 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-weight: bold;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}
.iti{
    width: 100%;
}
.iti input{
    width: 100%;
    height: 50px;
}

.input-validation-error {
    border: 1px solid red;
}