.modal-fast__inner{
    background: #fff;
    border-radius: var(--border-md);
    min-width: 600px;
}

.modal-fast__inner-head{
    padding: 1.5rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-border);
}

.modal-fast__inner-box__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-fast__inner-box__item-label{
    font-weight: 600;
}

.modal-fast__inner-head-name{
    font-size: var(--text-md);
    font-weight: 600;
}

.modal-fast__inner-box{
    padding: 2rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

.link-close{
    text-align: center;
    padding: 1rem 1rem 0 1rem;
    cursor: pointer;
    font-weight: 500;
}

.link-close:hover{
    color: var(--blue-lite);
}

.modal-fast__inner-close{
    cursor: pointer;
}

.modal-fast__inner-close:hover{
    fill: var(--blue-lite);
}

@media (max-width: 767px) {
    .modal-fast__inner{
        max-width: 98%;
        min-width: 98%;
    }

    .modal-fast__inner-box,
    .modal-fast__inner-head{
        padding: 2rem;
    }
}