#edr-delivery-modal{

    display:none;
    position:fixed;
    z-index:999999;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(3px);

}

.edr-delivery-content{

    position:relative;
    width:460px;
    max-width:92%;
    margin:60px auto;
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 15px 45px rgba(0,0,0,.25);

    animation:edrFade .25s ease;

}

@keyframes edrFade{

    from{
        transform:translateY(20px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

.edr-close-modal{

    position:absolute;
    top:15px;
    right:15px;
    width:36px;
    height:36px;
    border:none;
    border-radius:50%;
    background:#f4f4f4;
    font-size:22px;
    cursor:pointer;
    transition:.2s;

}

.edr-close-modal:hover{

    background:#e7e7e7;

}

.edr-delivery-content h3{

    margin:0 0 5px;
    font-size:28px;
    line-height:1.2;
    color:#111;

}

.edr-subtitle{

    margin-bottom:25px;
    color:#777;
    font-size:14px;

}

.edr-delivery-content label{

    display:block;
    margin-bottom:8px;
    margin-top:18px;
    font-weight:600;
    color:#222;

}

.edr-delivery-content select,
.edr-delivery-content input[type="date"]{

    width:100%;
    height:48px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 14px;
    font-size:15px;
    background:#fff;
    outline:none;
    transition:.2s;

}

.edr-delivery-content select:focus,
.edr-delivery-content input[type="date"]:focus{

    border-color:#c60000;
    box-shadow:0 0 0 3px rgba(198,0,0,.08);

}

#edr-confirm-delivery{

    width:100%;
    margin-top:25px;
    height:52px;
    border:none;
    border-radius:14px;
    background:#c60000;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;

}

#edr-confirm-delivery:hover{

    background:#a80000;

}

.edr-delivery-btn{

    width:100%;
    height:52px;
    border:none !important;
    border-radius:14px !important;
    background:#c60000 !important;
    color:#fff !important;
    font-size:16px !important;
    font-weight:700 !important;
    transition:.2s;

}

.edr-delivery-btn:hover{

    background:#a80000 !important;

}

@media(max-width:480px){

    .edr-delivery-content{

        padding:22px;
        margin:20px auto;

    }

    .edr-delivery-content h3{

        font-size:22px;

    }

}

.single-product form.cart button.single_add_to_cart_button {
    display: none !important;
}

#edr-delivery-modal {
    position: fixed !important;
    z-index: 999999999 !important;
}
.edr-delivery-summary{

    margin-top:15px;
    background:#fff5f5;
    border:1px solid #ffd6d6;
    border-radius:14px;
    padding:15px;

}

.edr-summary-title{

    font-weight:700;
    color:#c60000;
    margin-bottom:10px;

}

.edr-summary-line{

    margin-bottom:6px;
    color:#333;
    font-size:14px;

}

.edr-change-delivery{

    margin-top:10px;
    border:none;
    background:none;
    color:#c60000;
    font-weight:700;
    cursor:pointer;
    padding:0;

}