table.form-table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    font-size: 100%;
    font-weight: normal;
    line-height: 160%;
}

table.form-table th, table.form-table td {
    border: 1px solid var(--border-color);
    padding: 5px 5px;
    vertical-align: top;
}

table.form-table th {
    background-image: url(images/table_head.gif);
    background-repeat: repeat-x;
    text-align: left;
    color: #25639A;
}


table.form-table td {
    padding: 15px 5px;
}

.form-required {
    color: #ff00000;
}

.error-fld {
    display: block;
    float: left;
    height: 13px;
    width: 15px;
    background-repeat: no-repeat;
    background-image: url(images/icon_warn.gif);
}


.display_form {
    will-change: visibility, opacity;
    display: flex;
    align-items: self-start;
    justify-content: center;
    position: fixed;
    top: 50px;
    left: 50%;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    max-width: 560px;
    min-width: 468px;
    width: 100%;
    max-height: 670px;
    height: 100%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.display_form._show {
    opacity: 1;
    visibility: visible;
}

.display_form._hidden {
    opacity: 0;
    visibility: hidden;
}

.modal__dialog {
    max-width: 600px;
}

.modal__content {
    will-change: transform, opacity;
    position: relative;
    padding: 2.4rem;
    background: #F3FBFC;
    background-clip: padding-box;
    box-shadow: 0 12px 15px 0 rgb(0, 0, 0, 0.25);
    opacity: 1;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}


.modal-button-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1.2rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-close {
    z-index: 1100;
    cursor: pointer;
}

.modal-button-close svg {
    width: 24px;
    fill: #fff;
    pointer-events: none;
    vertical-align: top;
}

.modal-button-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-request-to-liga__title {
    font-family: "GothamProMedium";
    color: var(--title-color);
    font-weight: bold;
    font-size: 36px;
    line-height: 116%;
    margin: 0 !important;
}

.modal-request-to-liga__description {
    font-size: 14px;
    line-height: 16px;
    color: #669199;
    margin: 16px 0;
}

.personal-data-description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    color: #669199;
}

.form-group {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 24px 0;
}

.form-group{
    box-shadow: 0 6px 10px 0px rgba(0, 0, 0, .1);
    font-size: 16px;
    display: block;
    width: 100%;
    border: none;
    background-color: #fff;
    border-radius: 4px;
}

.form-group #other[name="form_text_16"] {
    min-height: 120px;
    resize: none;
    padding: 10px 16px;
}

.form-group label {
    color: #669199;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 16px;
    top: 16px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.form-group .unmask {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-13px, -12px);
}

.form-group input:focus {
    outline: none;
}

.form-group input:focus ~ label, .form-group input:valid ~ label {
    top: 4px;
    font-size: 12px;
    color: #669199;
}

.modal-request-to-liga__checkbox {
    display: flex;
    flex-direction: row;
    margin: 12px 0;
}

.modal-request-to-liga__checkbox label {
    color: #293A3D;
    margin-left: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.checkbox input {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9999;
    opacity: 0;
    cursor: pointer;
}

.checkbox label {
    width: 41px;
    height: 22px;
    background: #ccc;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    margin-left: 0;
}

.checkbox input[type="checkbox"]:checked + label:after {
    left: 21px
}

.checkbox label:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left .3s ease-out;
}

.checkbox input[type="checkbox"]:checked + label {
    background: var(--primary-color);
}


@media (min-width: 320px) and (max-width: 767px){
    .display_form {
        min-width: 300px;
        font-size: 13px;
    }
    .form-group {
        margin: 8px 0;
    }
    .modal__content {
        padding: 24px 15px;
    }
    .form-group input {
        font-size: 13px;
    }
}