.request-form-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
}

.request-form, .request-form__complete {
    background: white;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 16px;
    font-family: Arial, Verdana sans-serif;
    max-width: 360px;
}

.request-form__complete {
    min-width: 300px;
    height: 180px;
    text-align: center;
}

.request-form__complete__description {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 16px 0 48px;
}
.request-form__complete__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-form--header {
    color: #063c99;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.request-form--header h1 {
    font-size: 1.8rem;
    margin: 8px 0;
}
.close-btn {
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.02s;
    border: none;
    cursor: pointer;
}

.close-btn:hover {
    background: rgba(0,0,0,0.2);
}

.close-btn svg {
    stroke: #063c99;
}

.close-btn:hover svg {
    stroke:black;
}


.request-form-description {
    color: grey;
    font-size: 0.8rem;
}

.sf__line {
    margin: 16px 0;
}
/*
.sf__label {
    font-size: 0.8rem;
    color: #3085d6;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}*/
.sf__label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3085d6;
    font-size: 0.8rem;
}

.sf__label--col {
    flex-direction: column;
    align-items: flex-start;
}

.sf__input {
    border: 1px solid grey;
    border-radius: 4px;
    padding: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    width: 100%;
}

.sf__input:focus-visible {
    border: 1px solid #3085d6;
}

.request-form__button {
    margin: 16px 0 0 0;
    display: flex;
    gap: 16px;
}

.sf__btn--request, .sf__btn--cancel {
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sf__btn--request {
    border: 1px solid #063c99;
    background: #063c99;
    color: white;
}

.sf__btn--request:hover {
    transition: all 0.2s;
    background: #05317b;
    border: 1px solid #05317b;
}

.sf__btn--cancel {
    border: 1px solid #063c99;
    background: white;
    color: #063c99;
}

.sf__btn--cancel:hover {
    transition: all 0.2s;
    border: 1px solid #05317b;
    background: #05317b;
    color: white;
}

.grid-c-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox],
    input[type=radio] {
        --active-inner: #fff;
        --focus: #063c99;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, #063c99);
        background: var(--b, #fff);
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    input[type=checkbox]:after,
    input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform 0.3s var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    input[type=checkbox]:checked,
    input[type=radio]:checked {
        --b: #063c99;
        --bc: #063c99;
        --d-o: .3s; /* delay opacity */
        --d-t: .6s; /* delay transform */
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2); /* delay ease */
    }

    input[type=checkbox]:disabled,
    input[type=radio]:disabled {
        --b: #ccc;
        cursor: not-allowed;
        opacity: 0.9;
    }

    input[type=checkbox]:disabled:checked,
    input[type=radio]:disabled:checked {
        --b: #ededed;
        --bc: #063c99;
    }

    input[type=checkbox]:disabled + label,
    input[type=radio]:disabled + label {
        cursor: not-allowed;
    }

    input[type=checkbox]:hover:not(:checked):not(:disabled),
    input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: #063c99;
    }

    input[type=checkbox]:focus,
    input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    input[type=checkbox]:not(.switch),
    input[type=radio]:not(.switch) {
        width: 21px;
    }

    input[type=checkbox]:not(.switch):after,
    input[type=radio]:not(.switch):after {
        opacity: var(--o, 0);
    }

    input[type=checkbox]:not(.switch):checked,
    input[type=radio]:not(.switch):checked {
        --o: 1;
    }

    input[type=checkbox] + label,
    input[type=radio] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }

    input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }

    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }

    input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }

    input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, #063c99);
        transform: translateX(var(--x, 0));
    }

    input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }

    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }

    input[type=radio] {
        border-radius: 50%;
    }

    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }

    input[type=radio]:checked {
        --s: .5;
    }
}

/* Custom scrolls*/
.request-form {
    scrollbar-color: #ccc #ededed;
    scrollbar-width: thin;
}

/* Works on Chrome, Edge, and Safari */
.request-form::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.request-form::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.request-form::-webkit-scrollbar-thumb {
    background-color: #90A0B7;
    border-radius: 8px;
    border: 1px solid #ededed;
}

.request-form::-webkit-scrollbar-thumb:hover {
    background-color: #7a8ca7;
}

.vtable6 {
    padding: 16px 0;
    border-spacing: 0 4px;
}

.vtable6 tr:first-child{
    font-weight: bold;
}

.vtable6 tr:nth-child(even) {
    background: #e7f6fc;
}
.vtable6 td {
    padding: 4px 0;
}