/* Modal */
.custom-modal-address {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    /* box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3); */
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    /* background: rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(35.25px);
}

/* Modal Active */
.custom-modal-address.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease-in-out;
}

/* Overlay */
.modal-overlay-add {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(19.549999237060547px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

/* Overlay Active */
.modal-overlay-add.active {
    opacity: 1;
    visibility: visible;
}
