@charset "utf-8";

.msg-box {
    display: block;
    width: 100%;
    position: fixed;
    bottom: -100px;
    right: 0;
    padding: 20px;
    box-sizing: border-box;
    background: #3f3f3fdd;
    color: #ecf0f1;
    z-index: 999999;
    transition: all 0.4s ease-in-out;
}

.msg-box .msg-text {
    display: inline-block;
    width: calc(100% - 120px);
    vertical-align: middle;
    padding: 5px 0;
}

.msg-box .msg-close {
    float: left;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #e74c3c;
}

.msg-box .msg-close:active,
.msg-box .msg-close:hover {
    background: #e74c3c;
    color: #ecf0f1;
}

.black {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    top: 0;
    right: 0;
    z-index: 10;
}

.alert {
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(66, 49, 140, 0.10);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #2c2d34;
    display: none;
    position: fixed;
    top: 10vh;
    right: 0;
    left: 0;
    z-index: 20;
    padding: 0 0 20px 0;
    width: calc(100% - 20px);
    opacity: 0.0;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.alert .icon {
    display: block;
    text-align: center;
    padding: 5px 0 10px 0;
    font-size: 40px;
}

.alert input {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: none;
}

.alert .title {
    padding: 0px 15px;
    font-weight: 600;
    font-size: 14pt;
    color: #252b4d;
    text-align: center;
}

.alert .text {
    margin: 10px 0 25px 0;
    padding: 0 6px;
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
}



.alert .positive-btn:hover,
.alert .negative-btn:hover {
    color: #2d8ac7;
}

.alert .positive-btn {
    color: #2d8ac7;
}

.alert .alert_img {
    width: 100%;
    height: calc(80vh - 250px);
    object-fit: contain;
}
@media screen and (min-width: 546px) {
    .alert .positive-btn,
.alert .negative-btn {
    text-align: center;
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    margin: 0 10px;
}
}
@media screen and (max-width: 545px) {
    .alert .positive-btn,
    .alert .negative-btn {
        text-align: center;
        padding: 10px;
        font-size: 10pt;
        cursor: pointer;
        font-weight: bold;
        display: inline-block;
        margin: 0 10px;
    }
}