/** Start alert Box CSS */
body:has(.alert-box.show) {
    overflow: hidden;
}
.alert-box {
    display: none;
}
.alert-box .alert-content {
    width: 0;
    opacity: 0;
    padding: 20px;
}
.alert-box.show {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99;
}

.alert-box.show .alert-content {
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 400px !important;
    min-height: 200px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
}

.alert-box.show .alert-content .alert-title {
    text-align: center;
}

.alert-box.show .alert-content .btn-alert-confirm {
    background: #0098d1;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .alert-box.show{
        padding: 0 15px;
    }
}
/** End Alter Box CSS */
