.message-screen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;

    display: none;
}

.message-screen_active {
    display: block;
}

.message-screen__background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-color: white;
    opacity: 0.9;
}

.message-screen__window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;

    width: 320px;
    height: 320px;
    padding: 0 10px;
    border-radius: 15px;

    background-color: white;
    box-shadow: 0 5px 20px rgba(13, 28, 69, 0.15);
}

.message-screen__content {
    margin: auto;
}

.message-screen__icon {
    display: block;
    margin: -10px auto 0 auto;
}

.message-screen__title {
    margin-top: 6px;

    color: #222d4c;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.message-screen__text {
    margin-top: 15px;

    color: #222d4c;
    font-size: 12px;
    text-align: center;
}

.message-screen__button {
    display: none;

    width: 173px;
    margin: 23px auto 0 auto;
}

.message-screen__button_active {
    display: block;
}
