.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review_heading{
    display: none;
}



.cutom-checkout-btn-wrapper{
    display: flex;
    justify-content: space-between;
}

form[name='checkout'].woocommerce-checkout{
    margin: 20px 0;;
}

.woocommerce-checkout #guest-checkout, .woocommerce-checkout #login-form{
    display: none;
}

.woocommerce-checkout #guest-checkout.show, .woocommerce-checkout #login-form.show{
    display: block;
}

.woocommerce-checkout .woocommerce-form.login .show-password-input::before{
    content: 'Voir';
    color: white;
}

.woocommerce-checkout .woocommerce-form.login .show-password-input.display-password::before{
    content: 'cacher';
    color: white;
}

.woocommerce-checkout .woocommerce-form.login .show-password-input{
    background-color: #52accc !important;
}

.woocommerce-checkout .tab-btn{
    border-radius: unset;
}

.woocommerce-checkout .tab-btn, .woocommerce-checkout .tab-btn:hover,
 .woocommerce-checkout .step_btn, .woocommerce-checkout .step_btn:hover{
    background-color: lightgrey;
    font-size: clamp(10px, 1.3vw, 1.1rem);
    padding-left: 3px;
    padding-right: 3px;
    color: white !important;
}

.woocommerce-checkout .tab-btn.active, .woocommerce-checkout .step_btn{
    background-color: #52accc;
    color: white !important;
}

.progress-bar-wrapper{
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.progress-bar-wrapper .progress{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 3ch;
    height: 3ch;
    background-color: lightgrey;
    border-radius: 50%;
    transition: all linear 350ms;
}

.progress-bar-wrapper .line{
    width: 40px;
    height: 1px;
    background-color: lightgrey;
    transition: all linear 350ms;
}

form.woocommerce-checkout.checkout #order_review{
    float: none !important;
    clear: none !important;
    width: 100% !important;
}.free-shipping-product::after {
    content: "🚚Gratuit";
    position: absolute;
    top: -30px;
    left: 50%;
    background: #52accc;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
}


@keyframes showBadge {
    to {
        opacity: 0.9;
        transform: translateX(-50%) translateY(0);
    }
}

.free-shipping-product::after {
    animation: showBadge 1s linear forwards;
    animation-timeline: view();
    animation-range: entry 40% cover 60%;
}.single-product .commande-rapide-form input{
    width: 100% !important;
}

.single-product .cr-success{
    margin-block: 5px;
    color: green;
    font-weight: bold;
    padding: 5px;
    border: solid green 1px;
    border-radius: 5px;
}

.single-product .cr-error{
    margin-block: 5px;
    color: red;
    font-weight: bold;
    padding: 5px;
    border: solid red 1px;
    border-radius: 5px;
}

.single-product .arof-rapid-order-summary{
    display: block !important;
    text-align: center;
    padding: 10px;
    margin-block: 5px;
    background-color: #6ab2df;
    border-radius: 5px;
    color: black;
}.bottom-notif-notif-wrapper{
    color: #ffff;
    background-color: #064966 ;
    position: fixed;
    bottom: 0%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    z-index: 99;
}

.bottom-notif-notif-wrapper img{
    background-color: rgba(255, 255, 255, 1);
    padding: 5px;
    height: 50px;
    width: auto;
    object-fit: contain;
}

.bottom-notif-notif-wrapper .bottom-notif-text{
    margin: auto 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.bottom-notif-notif-wrapper .bottom-notif-closing-btn{
    display: grid;
    align-content:center;
    height: 50%;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    aspect-ratio: 1;
}

.bottom-notif-notif-wrapper.bottom-notif-hide{
    display: none !important;
}

@media screen and (max-width: 920px) {

    .bottom-notif-notif-wrapper{
        font-size: 13px;
        gap: 12px;
    }

    .bottom-notif-notif-wrapper img{
        margin: 3px;
    }
}