.select-address-coupon {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    right: 0;
    background: #F4F4F4;
    z-index: 10000;
    box-shadow: 0px -2px 10px 0px #00000040;
    padding: 20px;
    border-radius: 20px 20px 0px 0px;
    bottom: -100%;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.select-address-coupon.active {
    opacity: 1;
    bottom: 0;
}

.sac-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.sac-add,
.sac-current-location {
    width: 100%;
    padding: 13px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: var(--main-clr);
    border-radius: 8px;
    margin-top: var(--mt);
    box-shadow: 0px 0px 3px 0px #00000040;
    cursor: pointer;
}


.saved-address {
    width: 100%;
    margin-top: var(--mt);
}

.saved-address h5 {
    font-size: 15px;
    font-weight: 500;
}

.saved-address-grid {
    width: 100%;
    margin-top: var(--mt);
}

.address-box {
    width: 100%;
    margin-bottom: var(--mt);
    box-shadow: 0px 0px 3px 0px #00000040;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    position: relative;
    cursor: pointer;
}
.address-box.active{
    border: 1px solid var(--main-clr);
}

.address-box-left {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: #F1F1F1;
    border-radius: 5px;
}

.address-box-left i {
    font-size: 20px;
    line-height: 20px;
}

.address-box-left.home i {
    color: #FFB800;
}

.address-box-right {
    width: 80%;
}

.address-box-right h3 {
    font-size: 14px;
    font-weight: 600;
}

.address-box-right p {
    font-size: 12px;
    font-weight: 400;
    width: 90%;
}

.dot {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    font-size: 15px;
    box-shadow: 0px 0px 1px 0px #00000040;

}


/* ========== address optionn */

.addree-option {
    width: 100%;
    box-shadow: 0px 0px 3px 0px #00000040;
    border-radius: 15px 15px 0px 0px;
    background: #fff;
    z-index: 10005;
    position: fixed;
    left: 0;
    right: 0;
    padding: 20px;
    bottom: -100%;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.addree-option.active {
    opacity: 1;
    bottom: 0;
}

.address-option-header {
    position: relative;
}

.address-option-header h3 {
    font-size: 17px;
    font-weight: 700;
}

.address-option-cancel {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    box-shadow: 0px 0px 1px 0px #00000040;
    background: #4D4D4DD6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.address-option-box {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.proceed button{
    width: 100%;
    padding: 12px;
    background: var(--main-clr);
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--txt-clr);
}

.bi-briefcase-fill{
    color: #000!important;
}




@media (min-width:1024px) {

    .select-address-coupon {
        height: max-content;
        max-width: 500px;
        border-radius: 20px;
        left: 50%;
        transform: translate(-50%, 0);
    }


    .select-address-coupon.active {
        bottom: 50%;
        transform: translate(-50%, 50%);
    }

    .confirm-btn button {
        border-radius: 10px;
    }
    .varient-card {
        border-radius: 10px;
    }

    .addree-option {
        max-width: 500px;
        border-radius: 15px;
        left: 50%;
        transform: translate(-50% , 0);
    }
    .addree-option.active {
        bottom: 50%;
        transform: translate(-50%,50%);
    }


}