.CONTAINER_CONTENT
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    background-color: rgb(25,25,25);
    height: 100%;
    width: 100%;
}

.CONTAINER_BANNER
{
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(35,35,35);
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.BANNER_SECTION0
{
    display: none;
    box-sizing: border-box;
    align-items: center;
    height: 100%;
    padding-right: 5px;
    gap: 15px;
}

.BANNER_SECTION1
{
    display: flex;
    box-sizing: border-box;
    align-items: center;
    height: 100%;
    padding-right: 15px;
    width: 100%;
    gap: 15px;
}

.BANNER_SECTION2
{
    display: flex;
    box-sizing: border-box;
    align-items: center;
    height: 100%;
    padding-right: 5px;
    gap: 15px;
}

.CONTAINER_BODY
{
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 15px;
    gap: 15px;
}

.CONTAINER_BODY_SECTION
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    height: 100%;
    width: 100%;
    gap: 15px;
}

.CONTAINER_BODY_SUB1
{
    display: flex;
    box-sizing: border-box;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    gap: 5px;
}

.CONTAINER_BODY_SUB2
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 5px;
}

.FORM
{
    display: flex;
    box-sizing: border-box;
}

.CONTAINER_REGISTERFORM
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(35,35,35);
    border-radius: 10px;
}

.CONTAINER_BODY_HEADER2
{
    display: flex;
    box-sizing: border-box;
    padding: 15px;
    background-color: rgb(35,35,35);
    width: 100%;
}

.CONTAINER_FORM1
{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.FORM_BUTTONS
{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    gap: 5px;
}

.CONTAINER_REGISTERINFO
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 350px;
}

.FORM_ROW
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
}

.FORM_COLUMN
{
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    width: 100%;
}

.FORM_SECTION
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

.HORIZONTAL_LINE
{
    display: flex;
    box-sizing: border-box;
    height: 2px;
    background-color: rgb(35,35,35);
}

.FILE_UPLOAD_WRAPPER
{
    display: flex;
    box-sizing: border-box;
    overflow: hidden;
    align-items: center;
    width: 100%;
    background-color: rgb(25,25,25);
    color: rgb(150,150,150);
    border-radius: 10px;
    padding: 0;
    gap: 10px;
}

.CUSTOM_SELECT
{
    box-sizing: border-box;
    position: relative;
    width: 100%;
    border-radius: 10px;
    background-color: rgb(25,25,25);
    color: rgb(150,150,150);
    user-select: none;
}

.SELECT_DISPLAY
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}

.SELECT_DISPLAY::after
{
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid rgb(150,150,150);
    border-bottom: 2px solid rgb(150,150,150);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.CUSTOM_SELECT.open .SELECT_DISPLAY::after
{
    transform: rotate(-135deg);
}

.SELECT_OPTIONS
{
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    display: none;
    background-color: rgb(35,35,35);
    border-radius: 10px;
    padding: 6px;
    z-index: 10;
}

.CUSTOM_SELECT.open .SELECT_OPTIONS
{
    display: block;
}

.SELECT_OPTIONS li
{
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgb(150,150,150);
}

.SELECT_OPTIONS li:hover
{
    background-color: rgb(50,50,50);
}

.DRIVER_INPUTS
{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s ease, opacity .5s ease;
}

.DRIVER_INPUTS.active
{
    max-height: 800px;
    opacity: 1;
}

.FILE_NAME_PREVIEW
{
    display: block;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    margin-top: 6px;
    color: rgb(210, 210, 90);
}

.UPLOAD_LABEL
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    padding: 15px;
    width: 100%;
    color: rgb(150,150,150);
    background-color: rgb(25,25,25);
    border-radius: 10px;
}

.UPLOAD_TEXT
{
    font-size: 13px;
}

.UPLOAD_BUTTON
{
    background-color: rgb(50,50,50);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
}

.UPLOAD_LABEL:hover .UPLOAD_BUTTON
{
    background-color: rgb(70,70,70);
}

.FILE_INPUT_REAL
{
    display:none;
}

::-webkit-scrollbar
{
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track
{
    background: rgb(25,25,25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb
{
    background: rgb(35,35,35);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover
{
    background: rgb(120, 120, 120);
}

*
{
    scrollbar-width: thin;
    scrollbar-color: rgb(35,35,35) rgb(25,25,25);
}

.MODAL_CONTAINER
{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-color: rgb(35,35,35);
    padding: 15px;
    margin: 15px;
    border-radius: 10px;
    gap: 5px;
    width: 500px;
}

.MODAL_CONTAINER a
{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding-left: 10px;
    padding-right: 15px;
}

.MODAL_BG
{
    display: none;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.MODAL_BG,
.hamburger-modal-content,
.modal,
.modal-content
{
    z-index: 9999;
}

@media (max-width: 1190px)
{
    .CONTAINER_BODY
    {
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        overflow-y: auto;
        width: 100%;
        height: 100%;
        padding: 15px;
        gap: 15px;
    }

    .BANNER_SECTION0
    {
        display: flex;
        box-sizing: border-box;
        align-items: center;
        height: 100%;
        padding-right: 15px;
        gap: 15px;
    }

    .BANNER_SECTION1
    {
        display: flex;
        box-sizing: border-box;
        align-items: center;
        height: 100%;
        padding-right: 15px;
        width: 100%;
        gap: 15px;
    }

    .BANNER_SECTION2
    {
        display: none;
        box-sizing: border-box;
        align-items: center;
        height: 100%;
        width: 50%;
        gap: 15px;
    }

    .CONTAINER_BODY_SECTION
    {
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
}