.alert-popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    z-index: -1;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
.alert-popup .title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}
.alert-popup .outter {
    position: absolute;
    width: 720px;
    overflow: hidden;
    background: white;
    font-size: 14px;
    padding: 10px;
    border-radius: 20px;
}
.alert-popup img {
    width: calc(100%);
    object-fit: contain;
}
.alert-popup .week-bt,
.alert-popup .close-bt {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border: 2px solid white;
    cursor: pointer;
    width: 70px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005AAB;
    color: white;
}
.alert-popup .week-bt {
    right: 80px;
    width: 150px;
    background: unset;
    color: black;
}
.alert-popup .popup-control {
    position: relative;
    height: 17px;
}


@media (max-width: 720px) {
    .alert-popup .outter {
        width: calc(100% - 80px);
    }
}