.warning-wrap {
    height: 100%;
    overflow-y: auto;
    position: fixed;
    background: rgba(40, 42, 48, 0.9);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 3;
    display: none;
    padding: 10px;
}

.warning-wrap.open {
    display: flex;
}

.warning-wrap .content {
    border-radius: 16px;
    background: #FFF;
    margin: auto;
    max-width: 711px;
    padding: 12px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.warning-wrap .title {
    color: #282A30;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

@media screen and (max-width: 480px) {
    .warning-wrap .title {
        font-size: 20px;
        margin-bottom: 7px;
    }
}

.warning-wrap .subtitle {
    color: #87898E;
    margin-bottom: 12px;
}

@media screen and (max-width: 480px) {
    .warning-wrap .subtitle {
        margin-bottom: 7px;
        font-size: 12px;
    }
}

.warning-box {
    border-radius: 16px;
    background: #EAEAEA;
    padding: 12px;
}

@media screen and (max-width: 480px) {
    .warning-box {
        padding: 6px;
    }
}

div.warning-box div.primary-info{
    color: #282A30;
    font-weight: 700;
    margin-bottom: 7px;
}

@media screen and (max-width: 480px) {
    div.warning-box div.primary-info {
        text-align: center;
    }
}

.warning-group {
    display: flex;
    margin: -6px;
    padding-top: 12px;
}

@media screen and (max-width: 480px) {
    .warning-group {
        flex-direction: column;
    }
}

.warning-group .item {
    padding: 6px;
    width: 50%;
}

@media screen and (max-width: 480px) {
    .warning-group .item {
        width: 100%;
    }
}

.warning-group .button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 18px;
    border: 1px solid #B9A074;
    color: #B9A074;
    background: rgba(185, 160, 116, 0.1);
}

@media screen and (min-width: 1025px) {
    .warning-group .button.mimas::before {
        background: rgba(185, 160, 116, 0.1);
    }
}

.warning-group .button.second {
    background: #B9A074;
    color: #282A30;
}

@media screen and (min-width: 1025px) {
    .warning-group .button.second.mimas {
        background: #9B8256;
    }
    .warning-group .button.second.mimas::before {
        background: #B9A074;
    }
}

.warning-list {
    list-style-type: disc;
    padding-left: 20px;
}

@media screen and (max-width: 480px) {
    .warning-list {
        padding-left: 10px;
    }
}

.warning-list .item {
    color: #87898E;
    margin-bottom: 15px;
}

@media screen and (max-width: 480px) {
    .warning-list .item {
        margin-bottom: 10px;
        font-size: 12px;
    }
}

.warning-list .item:last-child {
    margin-bottom: 0;
}

