.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;
    height: 100%;

    display: none;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.visible {
    display: flex;
}

.modal__content {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 57px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(25, 26, 33, .95);
    border: 1px solid #252331;
}

.modal__close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(104.52deg, hsla(0, 0%, 85%, .329) -158%, hsla(0, 0%, 85%, .056) -55.77%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__title {
    font-weight: 800;
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    align-self: flex-start;
    margin-bottom: 16px;
    text-align: center;
}

.modal__text {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 30px;
}
