.dialog {
    min-width: 320px;
    max-width: 425px;
    background-color: #142A37;
    border: 1px solid #1e475f;
    border-radius: 4px;
    overflow: hidden;
}

@media(max-width: 480px) {
    .dialog {
    min-width: 300px;
    max-width: 425px;
    background-color: #142A37;
    border: 1px solid #1e475f;
    border-radius: 4px;
    overflow: hidden;
    }
}

.dialog_text {
    padding: 23px 20px;
    cursor: default;
    background-color: #091C27;
    /* border-radius: 8px; */
}

.dialog_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog_button {
    color: #fff;
    padding: 18px 5px 16px;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.07em;
    background-color: #142A37;
    transition: all 0.2s;
    border-right: 1px solid #1e475f;
}

.dialog_button:last-child {
    border: 0;
}

.dialog_button:hover {
    background-color: #091c27;
}