.SignatureSuccess{
    display:none;
    width: 20px;
    margin-top:-5px;
    margin-right:5px;
}
/* .backgroundChange{
    background: #272727;
} */
.footer, .footerImages{
    display:none;
}
.shopStepsContainer{
    margin-top: -25vh;
}
.multi-steps {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.reservationStepTitle{
    font-size: 40px;
    font-weight: 700;
    margin-top: 50px;
    line-height: 1.32;
    color: #f2f1ed;
    margin-bottom:10px;
}
.reservationInfoTitle{
    color: #9da0a5;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.32;
    margin-top:25px;
}
.reservationInfoSubTitle{
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    font-size: 13px;
    line-height: 1.67;
    letter-spacing: -0.04px;
    color: #9ea0a5;
    margin-top:10px;
    margin-bottom: 10px;
}

.multi-steps > li.is-active:before, .multi-steps > li.is-active ~ li:before {
    content: counter(stepNum);
    font-family: inherit;
    font-weight: 700;
}
.multi-steps > li.is-active:after, .multi-steps > li.is-active ~ li:after {
    background-color: #ffffff;
}

.multi-steps > li{
    background: white!Important;
}

.multi-steps {
    /* display: table; */
    /* table-layout: fixed; */
    /* width: 100%; */
}
.multi-steps > li {
    counter-increment: stepNum;
    text-align: center;
    display: table-cell;
    position: relative;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.multi-steps > li:before {
    content: '\f00c';
    content: '\2713;';
    content: '\10003';
    content: '\10004';
    content: '\2713';
    display: block;
    margin: 0 auto 4px;
    background-color: #ffbf00;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-weight: 700;
    border-radius: 50%;
    color: #ffffff;
}
.multi-steps > li:after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: #ffbf00;
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: -1;
    display: none;
}
.multi-steps > li:last-child:after {
    display: none;
}
.multi-steps > li.is-active:before {
    background-color: #ffbf00;
    color: #ffffff;   
}
.multi-steps > li.is-active ~ li {
    color: #ffffff;
}
.multi-steps > li.is-active ~ li:before {
    background-color: #ffffff;
    color: #10141b;
}

.shopStepsTitle{
    letter-spacing: 1px;
    color: #ffbf00;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
}

.sidebarStep1{
    margin-top: 20px;
}

.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    margin-top: 10px;
    padding-top: 2px;
    font-weight: 400;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #d6bba3;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #303030;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #d6bba3;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.productCardAdditionalData{
    padding-bottom: 20px;
    padding-top: 20px;
}

.productCardAdditionalData img{
    width: 20px;
    text-align: right;
    float: right;
    transform: rotate(270deg);
}

.deliveryTypeCard{
    border-bottom: solid 1px #5d5a5a29;
    padding-bottom: 10px;
}

.deliveryTypeCard .price{
    font-size: 12px;
    line-height: 1.14;
    letter-spacing: 0.11px;
    color: #fff;
    margin-top: 8px;
    font-weight: 700;
    text-align:left;
}

.deliveryTypeCard .title{
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.14px;
    color: #fff;
    margin-bottom: 0px;
}

.deliveryTypeCard .text{
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.11px;
    color: #fff;
}


.radioContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radioCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #f2f1ed;
    border-radius: 50%;
    border: 1px solid #2f363e;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .radioCheckmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .radioCheckmark {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radioCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .radioCheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer .radioCheckmark:after {
    top: 2px;
    left: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #eeb680;
}

.cartOverViewProductTotalPrice{
    font-family: 'Gilroy Bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.socialLogoLeft{
    position: fixed;
    top: 70vh;
    left: 50px;
}

.cartOvewViewShipping{
    font-size: 12px;
    margin-top: 5px;
}

.cardsBox{
    margin-top: 15px;
}

.cardsBox img{
    margin-right: 15px;
}

.cartOverViewTotalPriceTitle{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.32;
    background-image: linear-gradient(to right, #a27353, #c49369 50%, #edb780);
    font-family: 'Gilroy Extra-Bold', sans-serif;
    letter-spacing: 0.5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cartOverViewTotalPrice{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.32;
    background-image: linear-gradient(to right, #a27353, #c49369 50%, #edb780);
    font-family: 'Gilroy Extra-Bold', sans-serif;
    letter-spacing: 0.5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cartStep1QuantityTitle{
    font-size: 12px;
    margin-top: 10px;
}

.cardStepsLogo{
    position: absolute;
    margin-top: 20px;
    margin-left: 20px;
}

.shippingStatusDisable{
    display:none;
}

.numberInCart{
    position: absolute;
    right: 0px;
    font-size: 9px;
    top: -4px;
    color: #ffffff;
    background: #cb572d;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    text-align: center;
    padding-top: 1px;
}

.notfound{
    text-align: center;
    margin-bottom:50px;
}

.notfound h1 {
    font-size: 150px;
    font-weight: 200;
    margin: 0px;
    color: #e2b07d;
    text-transform: uppercase;
}

.notfound h2 {
    font-size: 28px;
    font-weight: 400;
    color: black;
    padding: 10px 5px;
}

.notfound div{
    font-size: 20px;
    color: black;
    margin-top: 150px;
}

.categoryImg{
    height: 130px;
    margin-top: 20px;
    margin-bottom: -20px;
    background-color: #000000;
    border-radius: 22px;
}

.categoryImg .imgLiquid{
    height: 130px;
}

.categoryCard{
    transition: .3s;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.5);
}

.categoryCard div{
    color: #ffffff;
}

.categoryCard:hover{
    box-shadow: none;
    cursor: pointer;
}


.activeSidebar a, .activeSidebar span{
    color: #ffbf00 !important;
}

.productsSidebar {
    border-radius: 20px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(120deg, #30373f, #20242b);
    padding: 30px;
    padding-bottom: 50px;
}
.productsSidebarFilter{
    margin-top: 50px;
}

.searchContainer{
    display: block;
    position: absolute;
    right: 80px;
    width: 300px;
    margin-top: 90px;
    z-index: 10000;
    display: none;
}

.searchContainer input{
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #cb572d;
    z-index: 10000;
    padding-left: 20px;
    padding-right: 20px;
}


.searchResultsItems a{
    color: #ffffff;
    transition: .3s;
}

.searchResultsItems a:hover{
    text-decoration: underline;
}

.searchResultsItems a div{
    padding: 10px;
    border-bottom: 1px solid #1d2129;
}

.searchResultsItems a div:hover{
    text-decoration: underline;
}

.hideSearchInput img{
    width: 15px;
}

.criteryBox{
    padding-bottom: 25px;
}

#mobile-navigation{
    display: none;
}


.stepBackMobile{
    display: none;
}
.productsContainer {
    margin-bottom: 80px;
}
.productsBody {
    border-radius: 16px;
    box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.14);
    background-color: white;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
}

#DifferentAddressBox {
    margin-top: 43px;
}

.deliveryTypeCard .title{
    font-size:12px;
}


/* TIMELINE */

.timeline {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 100%;
    margin-top: 100px;
    margin-bottom: 0;
    padding: 0;
    /* width: 850px; */
    /* height: 20px; */
    /* text-align: justify; */
    /* margin-top: 90px; */
    /* margin-left: 50%; */

    /* -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 45%, #e0e0e0 51%, rgba(255,255,255,0) 57%, rgba(255,255,255,0) 100%);
    background: #272727; */
}

/* Grey background line */
.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;

    width: 100%;
    height: 3px;
    background: var(--color-grey-l);
    border-radius: var(--border-radius-s);
}

/* Black active line */
.timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;

    width: var(--progress, 0%);
    height: 3px;
    background: var(--color-black);
    border-radius: var(--border-radius-s);

    /* display: inline-block; 
    width: 100%; */
}

/* Dot */
.timeline li {
    position: relative;
    z-index: 3;
    /* display: inline-block; */

    width: 20px;
    height: 20px;

    background: transparent;
    /* background: #545454; */
    /* text-align: center; */
    /* line-height: 1.2; */

    border-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.timeline li.active {
    background: var(--color-gold);
    border: 3px var(--color-white) solid;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
}


/* Step title */
.timeline li::before {
    content: attr(data-text);
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
    /* top: 0; */
    /* width: 90px; */
    /* margin-top: -10px; */
    /* display: inline-block; */
    
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    /* font-size: 10px; */
    /* color:#eeb580; */

    /* -webkit-transform: translate(-50%, -100%);
       -moz-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
         -o-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%); */
}

.timeline li.active::before {
    color: var(--color-gold);
}


.line::after {
    content: " ";
    display: block;
    position: absolute;
    height: 2px;
    background: #545454;
    width: 270px;
    left: 100%;
    top: calc(50% - 2px);
}
.active-line::after{
    background: #d6bba3;
}

.line-company::after {
    width: 130px;
}
.line-person::after {
    width: 160px;
}

.deliveryTypeCard .title, .deliveryTypeCard .text{
    color:#d7bba3;
}

.is-active{
    background: #d6bba3;
}
.paddingException{
    padding-top:10px;padding-right:0px;padding-left: 0px;
}

@media screen and (max-width: 1150px){
    .timeline{
        width:600px;
    }
    .line::after{
        width: 190px;
    }
    .line-person::after{
        width: 175px;
    }
    .line-company::after{
        width: 130px;
    }
}

@media screen and (max-width: 769px){
    .timeline{
        width:450px;
    }
    .line::after{
        width: 140px;
    }
    .line-person::after{
        width: 135px;
    }
    .line-company::after{
        width: 100px;
    }
    .timeline{
        margin-top: 40px;
    }
    .paddingException{
        padding-top:0px;padding-right:15px;padding-left:15px;
    }
    .btn-next1{
        width:100%!important;
        margin-bottom:40px;
    }
}

@media screen and (max-width: 570px){
    .timeline{
        width:270px;
    }
    .line::after{
        width: 82px;
    }
    .line-person::after{
        width: 65px;
    }
    .line-company::after{
        width: 50px;
    }
}

/* TIMELINE END */


/* STEP CONTAINER */

.cart-step-container {
    margin-top: 70px;
}

.step-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-form-container .shop-btn {
    margin-top: 20px;
    height: 60px;
    font-size: 15px;
    font-weight: 700;
}

.step-form-container .payment-type-container .shop-btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
}

.step-form-container .payment-type-container .flik-content .shop-btn {
    margin-top: 31px;
}

.step-form-header {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.step-form-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
}

.step-form-subtitle {
    font-family: var(--font-playfair);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.step-3 .step-form-subtitle {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.payment-type-container .step-form {
    width: 80%;
}

.step-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.step-form.flik-content .form-group {
    margin-bottom: 0;
}

.step-form .form-group label {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: normal;
    line-height: 21px;
    color: var(--color-text-dark);
}

.step-form .form-group .form-control {
    margin: 0;
    padding: 15px 16px;

    background: var(--color-grey-l);
    border: var(--border-d);
    border-radius: var(--border-radius-s);
    box-shadow: none;

    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-text-dark);
    -webkit-text-fill-color: var(--color-text-dark);
}

.step-form .form-group .form-control::placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-text-dark);
}

.payment-type-container .step-form .form-group .form-control {
    letter-spacing: 33%;
}

.payment-type-container .step-form .form-group .form-control::placeholder {
    letter-spacing: 33%;
}

.step-form .form-group .select2-container--default .select2-selection--single {
    background: var(--color-grey-l) !important;
    border: none !important;
}

.step-form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: var(--color-grey-l) !important;
    border: var(--border-d) !important;
    
    font-family: var(--font-inter) !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-text-dark);
    -webkit-text-fill-color: var(--color-text-dark);
}

.step-checkboxes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}


.step-questions-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.questions-box {
    padding: 50px 30px;
    border: var(--border-d);
    border-radius: var(--border-radius-l);
    background: var(--color-grey-l);

    display: flex;
    flex-direction: column;
    gap: 25px;
}


.step-packages-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.package-container {
    display: flex;
    flex-direction: column;
    gap: 13px;

    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.package-box {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    padding-top: 23px;
    padding-bottom: 60px;
    border-radius: var(--border-radius-s);
    background: var(--color-grey-l);
}

.package-box hr {
    border-width: 2px;
    border-color: var(--color-white);
    margin-inline: -20px;
    margin-top: 0;
    margin-bottom: 0;
}

.package-box h2 {
    padding-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
}

.package-box .price {
    padding: 9px 0;
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 32px;
}

.package-box .price .bold {
    font-size: 16px;
    font-weight: 700;    
}

.package-box .products-section {
    padding-top: 20px;
    padding-bottom: 43px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.products-section .header {
    display: flex;
    justify-content: space-between;

    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
}

.products-section .header button {
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
    border: none;
    background: none;
    padding: 0;
    letter-spacing: normal;
}

.products-section .header button svg {
    transition: var(--transition-motion);
}

.payment-type-section {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;   
}

.payment-type-section p {
    font-size: 16px;
    line-height: 24px;
}

.payment-types-container {
    display: flex;
    gap: 15px;
}

.payment-type-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 10px;
    width: 100%;
    padding: 20px 5px;
    border-radius: var(--border-radius-s);
    background: var(--color-white);
    cursor: pointer;
    position: relative;
}

.payment-type-box.active {
    /* border: 2px solid var(--color-black); */
    outline: 2px solid var(--color-black);
}

.payment-type-box.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -32px;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
}

.payment-type-icons {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.payment-type-box img {
    height: 30px;
    width: 33%;
    max-width: 45%;
    padding: 4px;
    border: var(--border-d);
    border-radius: 4px;
}

.payment-type-container {
    padding: 51px 31px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    border-radius: var(--border-radius-l);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    background: var(--color-white);
}

.payment-type-container .header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-type-container h4 {
    margin: 0;
    font-family: var(--font-inter);
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
}

.payment-type-container .trr-content {
    display: flex;
    justify-content: space-between;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.payment-type-container .trr-content .bold {
    font-size: 15px;
    font-weight: 700;
}

.payment-type-container .trr-qr-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* SUMMARY CONTAINER */

.step-summary-container {
    margin-top: 104px;

    padding-inline: 30px;
    padding-top: 32px;

    border: var(--border-d);
    border-radius: var(--border-radius-l);

    color: var(--color-black);
    /* background:#565656; */
    /* color: #d7bba3; */
}

/* SUMMARY HEADER */
.summary-header-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.summary-header-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    /* gap: 9px; */
}

.summary-header-title h2 {
    font-size: 32px;
    font-weight: 600px;
}

.header-count-container {
    display: flex;
    flex-direction: column;
    gap: 5px;

    font-size: 14px;
}

.header-count-container .count-title {
    font-size: 15px;
    font-weight: 500;
}

.summary-header-availability {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 50%;
}

.header-availability-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 29px;
    height: 50px;

    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--color-white);
    
    border-top-left-radius: var(--border-radius-s);
    border-top-right-radius: var(--border-radius-s);
    background-color: var(--color-bg-grey);
}

.header-availability-box.availability-timer {
    font-size: 21px;
    font-weight: 700;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    border-bottom-left-radius: var(--border-radius-s);
    border-bottom-right-radius: var(--border-radius-s);
}

.step-summary-container hr {
    margin-inline: -30px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-top: var(--border-l);
}

/* SUMMARY HEADER END */


.summary-products-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    list-style: none;
}


/* .step-summary-container .title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.39;
    color: #c3c3c3;
} */

.step-summary-container .service{
    font-size: 16px;
    font-weight: 600;
}

.step-summary-container .price {
    text-align: right;
    font-size: 36px;
}

.deliveryTypeCard .price {
    text-align: right;
}

.step-summary-container .note {
    font-size: 12px;
    line-height: 1.67;
    margin-top:55px;
    padding-bottom:20px;
}

.additionalPayment {
    font-size: 12px;
}

.summaryWrapper {
    margin-bottom:25px;
}

/* SUMMARY CONTAINER END */

.summary-price-column {
    margin-left: auto;
}


.summary-footer-container {
    display: flex;
    justify-content: space-between;

    border-bottom-left-radius: var(--border-radius-l);
    border-bottom-right-radius: var(--border-radius-l);
    background: var(--color-grey-l);
    padding: 71px 30px;
    margin-inline: -30px;
    margin-top: 40px;
}

.summary-footer-container .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.summary-footer-container .footer-logo img {
    width: 150px;
}

.footer-prices-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.footer-prices-container p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 32px;
    color: var(--color-text-dark);
}

.footer-prices-container p .bold {
    font-weight: 700;
}

.footer-prices-container p .footer-price-number {
    font-size: 16px;
}

/* STEP CONTAINER END */


.line-input{
    background: transparent;
    border: none;
    border-bottom: 1px solid #d6bba3;
    margin-left: 10px;
    padding-left:5px;
}
.add-person{
    padding-top:10px;font-size:14px;cursor:pointer;float: right;
}
.add-person img{
    margin-left:10px;width: 35px;transition: all 2s;
}
.add-person:hover img{
    transform: rotate(360deg);
}

.daterangepicker{
    background: #4a4a4a!Important;
}
.calendar-table{
    background: #4a4a4a!Important;
    color: #fff;
}
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date{
    background: #303030!Important;
    color: #fff!Important;
}
.daterangepicker td.available:hover, .daterangepicker th.available:hover{
    background: #eeb680;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #eeb680;
    border-color: #eeb680;
}
.representativesUl{
    padding-left: 5px;
    list-style: none;
    background: #303030;
    margin-bottom:0px;
    border-bottom:1px solid #565656;
}
.representativesUl li{
    display: inline-block;
    padding: 5px;
    background: #303030;
    text-align: center;
}


.question-container{
    padding-bottom: 30px;
    border-top:1px solid #4c4c4c;
    padding-top:30px;
}
.question p{
    color: #d7bba3;
}

.question > p:last-of-type {
    display:inline;
}

.question-free-input{
    background: transparent;
    border: none;
    border-bottom: 1px solid #d6bba3;
    padding-left:5px;
}

/**

  Component styles

 */
:root {
    --active: #d7bba3;
    --inactive-border: rgba(152, 159, 166, 0.5);
}

.toggle {
    display: inline-block;
    width: 80px;
    cursor: pointer;
}

.toggle-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.toggle-input:active + .toggle-track .toggle-control {
    right: 14px;
}

.toggle-input:checked + .toggle-track {
    -webkit-transition: box-shadow 180ms ease-out;
    transition: box-shadow 180ms ease-out;
    box-shadow: inset 0 0 0 20px var(--active);
}

.toggle-input:checked + .toggle-track .toggle-control {
    right: 0;
    left: 30px;
}

.toggle-input:checked:active + .toggle-track .toggle-control {
    left: 14px;
    right: 0;
}

.toggle-track {
    position: relative;
    height: 30px;
    border-radius: 16px;
    -webkit-transition: box-shadow 200ms ease-in;
    transition: box-shadow 200ms ease-in;
    box-shadow: 
        inset 0 0 0 0px var(--active), 
        inset 0 0 0 2px var(--inactive-border);
}

.toggle-control {
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    height: 26px;
    margin: 2px;
    background-color: white;
    border-radius: 26px;
    box-shadow: 
        0 0 1px 1px rgba(0, 0, 0, 0.15), 
        0 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-transition: 200ms cubic-bezier(0.65, 1.15, 0.75, 1.25);
    transition: 200ms cubic-bezier(0.65, 1.15, 0.75, 1.25);
}

.toggle-text{
    padding-left: 7px;
    font-size: 13px;
    color: #565656;
    position: absolute;
    top: 5px;
    font-weight: 100;
}

.QuestionsError{
    display:none;color: rgb(132, 78, 79);
}

.signature-pad{
    background-color: #b7b7b7;
    border-radius: 3px;
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.01);
}

.signatureReloadButton{
    width: 20px;
    transition: .3s;
/*    margin-left: 97%;*/
}

.signatureReloadButton:hover{
    opacity: 0.8;
    cursor: pointer;
}

/* CUSTOM SELECT2 */

.select2{
    width:100%!Important;
}
.select2-container{
    z-index: 11;
    padding-top: 0px;
    height:50px;
}
/*.select2-container--default .select2-selection--single{
    border-radius: 2px !Important;
    height: 54px !important;
}*/
.select2-container--default .select2-selection--single .select2-selection__rendered{
    font-family: 'Gilroy Light', sans-serif!important;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 4px;
    padding-left:20px;
    padding-right:12px;
    line-height: 38px !Important;
    background-color: #4a4a4a!important;
    color: #d7bba3;
}
.select2-container--default .select2-results__option[aria-disabled=true]{
    background-color: #8e7c6c!important;
}
.select2-results{
    z-index: 100;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 38px !important;
}

/* .select2-search--dropdown{
    background: #4a4a4a;
} */

.select2-container--default .select2-selection--single {
    border: 1px solid #303030!Important;
    border-radius: 4px;
    color:white;
    background-color:#303030;
}

.select2-container--default .select2-selection--multiple{
    border: solid #e9eaf3 1px !Important;
    outline: 0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #303030 1px !Important;
    outline: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color: #565656 !important;
    padding: 5px 10px !Important;
    border: none !Important;
}

.select2-container--default .select2-selection--multiple{
    background-color: #303030!important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    /* background-color: #d6bba3!important;
    color: white!important; */
    background-color: var(--color-grey) !important;
    color: var(--color-text-dark) !important;
}

.select2-results__option{
    /* color:white!Important;
    background-color: #303030!Important; */
    background-color: var(--color-grey-l) !important;
    color: var(--color-text-dark) !important;
}

.select2-dropdown {
    /* background-color: #303030!Important;
    border-color: #303030!Important; */
    background: var(--color-grey-l) !important;
    border: var(--border-d) !important;
}

.select2-results__option[aria-selected] {
    /* background:#4a4a4a!Important; */
    background: var(--color-grey-l) !important;   
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    margin-right:5px!important;
}

.select2-container--default .select2-selection--multiple{
    border:none!Important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 4px!Important;
}
.select2-container--open .select2-dropdown--below{
    margin-top: -10px;
}
.monthselect, .yearselect{
    background: #4a4a4a;
/*    border:none!important;*/
}

textarea{
    resize: none;width:100%;height:100px;background:#565656;color:white;padding:10px;
    border:none;border-radius: 4px;resize: none;padding-top: 20px!important;
}
.modal-footer{
    padding:5px!Important;
}

#representativeModal .modal-wrapper{
    top:1vh!important;
}
.removeFile{
    color:#d7bba3;
    padding-left:5px;
}

.showInputSection.active{
    -webkit-transform:rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.temp-area{
    cursor: pointer;
}
.hidden-section{
    display:none;
}
.show-input-section{
    cursor:pointer;
}
.slideQuestionnaire{
    position:absolute;
}
/*
slick-slide {
    color: white;
    padding: 20px 0;
    font-size: 16px;
    text-align: center;
}

.slick-prev:before, 
.slick-next:before {
    color: black;    
}
.slick-dots li {
  width: auto;
}

.pager__item {
  padding: 0 10px;
  display: block;
}
.slick-dots {
    top: -15px;
}*/

.previous-questionnaire, .next-questionnaire{
    width:20px;
    margin-top: 45px;
    cursor: pointer;
}
.subtitle-container > img{
    display:inline-block!Important;
}
.subtitle-container > .subtitle{
    display:inline-block!Important;
}

.subtitle{
    color: #d6bba3;
}
#slide-selector{
    padding-left:0px;
    list-style: none;
}
#slide-selector li{
    display:table;
    padding-bottom:5px;
}
#slide-selector li a{
    float:left;
}
#slide-selector li img{
    width:15px;
    float:left;
    margin-right:5px;
}
.questionnaire-slider-nav{
    display:none!Important;
}

.ownerUl{
    padding-left: 5px;
    list-style: none;
    background: #303030;
    margin-bottom:0px;
    border-bottom:1px solid #565656;
}
.ownerUl li{
    display: inline-block;
    padding: 5px;
    background: #303030;
    text-align: center;
}

#alert {
    padding: 10px;
    background: #565656;
    color: #c3c3c3;
    margin-top:5px;
    display:none;
    border-radius: 4px;
}

#alert .closebtn {
    margin-left: 15px;
    color: #c3c3c3;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

#alert .closebtn:hover {
    color: #9da0a5;
}
.SignatureError{
    margin-top:20px;font-size:14px;margin-bottom:5px;
}
.list-title{
    margin-top:20px;font-size:14px;margin-bottom:5px;
}
.embeded-document{
    display: none;
}
.user-documents ul{
    padding-left: 0px;
    list-style: none;
}
.user-documents ul li{
    margin-top:10px;
    color:#9DA0A5;
    cursor: pointer;
}
.user-documents img{
    width: 20px;
    margin-top:-5px;
    margin-right:5px;
}

.rep-name-signature{
    color: #d6bba3;
}
.rep-name-signature img{
    width:20px;
    margin-right:5px;
}

.active-document{
    display:block;
}
.depot-labels{
    color: #9da0a5;
    font-size: 16px;
    margin-top:15px;
}
/* The container */
.radio-container {
    margin-top: 10px;
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight:100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #d6bba3;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
    background-color: #d6bba3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #303030;
}
#WithdrawingUsers{
    margin-top:10px;max-width:400px;background: #d6bba3;padding:5px;display:none;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.modal-content{
    background: #303030;
    color: white;
}
.modal-title{
    background: #303030;
    color: #d6bba3;
    width: 100%;
    padding: 10px 20px;
    padding-top:20px;
    font-weight: 600;
    font-size: 18px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
}
.modal-header{
    padding: 0px;
    border-bottom: none;
}

@media (max-width: 750px){
    .modal-transition{
        left: 0%!important;
        margin-left: 0em!important;
        width: 100%!important;
    }
}

@media (min-width: 768px){
    .modal-dialog {
        width: 700px;
        margin: 30px auto;
    }
}

/* .footer, nav, .footerImages{
    display:none;
} */
#cd-cart-trigger{
    display: none!important;
}