#container {
    width: 950px;
    height: 500px;

    background: white;
    box-shadow: 0px 40px 40px #1d1d1b1b;

    border: 1px solid #33333328;
    border-radius: 20px;

    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    margin: auto;

    overflow: hidden;

    display: grid;
    grid-template-columns: auto 350px;
}

#container #background {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

#container #background img {
    max-width: 100%;
    max-height: 100%;
}

#container #form {
    width: 100%;
    height: 100%;

    position: relative;

    padding: 30px;
}

/* --------------------------------------------- */

#container form {
    width: 100%;
    height: 100%;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#container form img {
    max-width: 200px;
    margin-bottom: 30px;
}

#container form .form-control {
    width: 100%;
    height: 40px;

    background: #1d1d1b0f;

    border-radius: 5px;

    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#container form .form-control input,#container form .form-control select {
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    background: transparent;
}

#container form .form-control input:focus + label {
    width: 35px;
    min-width: 35px;
}

#container form .form-control input:focus + label i {
    color: #f1c40f;
}

#container form .form-control input:focus + label::before {
    width: 7px;
}

#container form .form-control label {
    width: 30px;
    min-width: 30px;
    height: 100%;
    font-size: 14px;

    color: #1d1d1b7f;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

#container form .form-control label::before {
    content: "";

    width: 0px;
    height: 100%;

    background: #f1c40f;

    position: absolute;
    top: 0%;
    left: 0%;

    transition: all 0.3s;
}

#container form .btn-login {
    height: 40px;

    background: #f1c40f;
    box-shadow: 0px 10px 10px #33333350;
    color: white;

    border-radius: 100px;

    padding: 0px 20px;
}

#container form #loading {
    width: 40px;
    height: 40px;

    background: #c59009;

    border-radius: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    animation: loader-11 16s infinite;
}

@keyframes loader-11 {
    0%,
    100% {
        transform: rotate(1turn);
    }

    50% {
        transform: rotate(-1turn);
    }
}

/* --------------------------------------------- */

#routes {
    height: 100%;

    background: white;

    position: absolute;
    top: 0%;
    left: 0%;

    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2em;
}

#routes .section-1 {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2em;
}

#routes img {
    max-width: 200px;
    margin-bottom: 10px;
}

#routes .title {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1em;
}

#routes .title strong {
    font-size: 17px;
}

#routes .rotes-list {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
}

#routes .rotes-list .route {
    max-width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}

#routes .rotes-list .route:hover,
#routes .rotes-list .active {
    background: #3b3b3b11;

    border-radius: 5px;

    padding: 10px;
}

#routes .rotes-list .route .icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    font-size: 12px;

    background: transparent;
    color: #3b3b3bb0;

    border-radius: 100px;
    border: 1px solid #33333350;

    padding: 0px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#routes .rotes-list .route .icon .fa-lock {
    display: none;
}

#routes .rotes-list .route .icon-block {
    width: 50px;

    padding: 0px 25px;
}

#routes .rotes-list .route .icon-block .fa-lock {
    display: flex;
}

#routes .rotes-list .route:hover .icon,
#routes .rotes-list .active .icon {
    background: #c59009;
    box-shadow: 0px 20px 20px #33333349;
    color: white;

    border: 10px solid transparent;
}

#routes .rotes-list .route .data {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0em;
}

#routes .rotes-list .route:hover .data,
#routes .rotes-list .active .data {
    gap: 0.2em;
}

#routes .rotes-list .route .data .name {
    font-weight: 0;
}

#routes .rotes-list .route:hover .data .name,
#routes .rotes-list .active .data .name {
    font-weight: 900;
}

#routes .rotes-list .route .data .description {
    max-height: 0px;

    overflow: hidden;
}

#routes .rotes-list .route:hover .data .description,
#routes .rotes-list .active .data .description {
    max-height: 100px;
}

#routes .footer {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#routes #notification-route {
    background: linear-gradient(125deg, #1b1464, #1b1464a2);
    box-shadow: 0px 10px 10px #33333350;
    color: white;

    border-radius: 5px;

    overflow: hidden;
}

#routes .notification-route-show {
    max-height: 50px;

    padding: 10px;
}

#routes .notification-route-hide {
    max-height: 0px;

    padding: 0px;
}

#routes .footer .options {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

#routes .btn-back {
    width: 35px;
    height: 35px;

    background: #333333;
    color: white;

    border-radius: 100px;
}

#routes .btn-get-into {
    height: 40px;

    background: #f1c40f;
    box-shadow: 0px 10px 10px #33333350;
    color: white;

    border-radius: 100px;

    padding: 0% 20px;

    align-self: flex-end;
}

#routes .btn-get-into-disabled {
    background: transparent;
    box-shadow: 0px 0px 0px #33333350;
    color: #333333a1;
}

.routes-show {
    width: 100%;

    opacity: 100%;

    padding: 30px;

    transition:
        width 0.3s,
        opacity 0.3s 0.2s,
        padding 0.3s 0.3s;
}

.routes-hide {
    width: 0%;

    opacity: 0%;

    padding: 0px;
}

/* --------------------------------------------- */

#notification {
    width: 100%;

    background: linear-gradient(125deg, #1b1464, #1b146491);
    color: white;
    box-shadow: 0px 10px 10px #33333317;

    border-radius: 10px;

    overflow: auto;
}

#notification .icon {
    width: 20px;
    height: 20px;
    font-size: 9px;

    opacity: 50%;
    box-shadow: 0px 5px 5px #333333ab;

    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.363);
    border-top-left-radius: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#notification .icon i {
    color: #f2c801;
}

.notification-show {
    max-height: 100px;

    opacity: 100%;

    padding: 10px;
}

.notification-hide {
    max-height: 0px;

    opacity: 0%;

    padding: 0px;
}

/* --------------------------------------------- */

/* --------------------------------------------- */

#notification::-webkit-scrollbar {
    -webkit-appearance: none;
    /* background: rgba(255, 255, 255, 0.349); */
}

#notification::-webkit-scrollbar:vertical {
    width: 8px;
}

#notification::-webkit-scrollbar-button:increment,
#notification::-webkit-scrollbar-button {
    display: none;
}
#notification::-webkit-scrollbar:horizontal {
    height: 5px;
}

#notification::-webkit-scrollbar-thumb {
    background: #3b3b3b;
    box-shadow: 0px 5px 5px #1a1c1f31;

    border: 1px solid white;
    border-radius: 20px;
}

#notification::-webkit-scrollbar-track {
    border-radius: 5px;
}

/* --------------------------------------------- */

.loader {
    --color: white;
    --size-mid: 6vmin;
    --size-dot: 1.5vmin;
    --size-bar: 0.4vmin;
    --size-square: 3vmin;

    display: block;
    position: relative;
    width: 50%;
    display: grid;
    place-items: center;
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
}

/**
	loader --1
**/
.loader.--1::before {
    width: var(--size-mid);
    height: var(--size-mid);
    border: 4px solid var(--color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: loader-1 1s linear infinite;
}

.loader.--1::after {
    width: calc(var(--size-mid) - 2px);
    height: calc(var(--size-mid) - 2px);
    border: 2px solid transparent;
    border-top-color: var(--color);
    border-radius: 50%;
    animation: loader-1 0.6s linear reverse infinite;
}

@keyframes loader-1 {
    100% {
        transform: rotate(1turn);
    }
}

/**
	loader --2
**/
.loader.--2::before,
.loader.--2::after {
    width: var(--size-dot);
    height: var(--size-dot);
    background-color: var(--color);
    border-radius: 50%;
    opacity: 0;
    animation: loader-2 0.8s cubic-bezier(0.2, 0.32, 0, 0.87) infinite;
}

.loader.--2::after {
    animation-delay: 0.3s;
}

@keyframes loader-2 {
    0%,
    80%,
    100% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    0%,
    100% {
        transform: translateX(-4vmin);
    }

    90% {
        transform: translateX(4vmin);
    }
}

/**
	loader --3
**/
.loader.--3::before,
.loader.--3::after {
    width: var(--size-dot);
    height: var(--size-dot);
    background-color: var(--color);
    border-radius: 50%;
    animation: loader-3 1.2s ease-in-out infinite;
}

.loader.--3::before {
    left: calc(50% - 1.6vmin - var(--size-dot));
}

.loader.--3::after {
    left: calc(50% + 1.6vmin);
    animation-delay: -0.4s;
}

@keyframes loader-3 {
    0%,
    100% {
        transform: translateY(-2.6vmin);
    }

    44% {
        transform: translateY(2.6vmin);
    }
}

/**
	loader --4
**/
.loader.--4::before {
    height: var(--size-bar);
    width: 6vmin;
    background-color: var(--color);
    animation: loader-4 0.8s cubic-bezier(0, 0, 0.03, 0.9) infinite;
}

@keyframes loader-4 {
    0%,
    44%,
    88.1%,
    100% {
        transform-origin: left;
    }

    0%,
    100%,
    88% {
        transform: scaleX(0);
    }

    44.1%,
    88% {
        transform-origin: right;
    }

    33%,
    44% {
        transform: scaleX(1);
    }
}

/**
	loader --5
**/
.loader.--5::before,
.loader.--5::after {
    height: 3vmin;
    width: var(--size-bar);
    background-color: var(--color);
    animation: loader-5 0.6s cubic-bezier(0, 0, 0.03, 0.9) infinite;
}

.loader.--5::before {
    left: calc(50% - 1vmin);
    top: calc(50% - 3vmin);
}

.loader.--5::after {
    left: calc(50% + 1vmin);
    top: calc(50% - 1vmin);
    animation-delay: 0.2s;
}

@keyframes loader-5 {
    0%,
    88%,
    100% {
        opacity: 0;
    }

    0% {
        transform: translateY(-6vmin);
    }

    33% {
        opacity: 1;
    }

    33%,
    88% {
        transform: translateY(3vmin);
    }
}

/**
	loader --6
**/
.loader.--6::before {
    width: var(--size-square);
    height: var(--size-square);
    background-color: var(--color);
    top: calc(50% - var(--size-square));
    left: calc(50% - var(--size-square));
    animation: loader-6 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes loader-6 {
    0%,
    100% {
        transform: none;
    }

    25% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(100%) translateY(100%);
    }

    75% {
        transform: translateY(100%);
    }
}

/**
	loader --7
**/
.loader.--7::before,
.loader.--7::after {
    width: var(--size-square);
    height: var(--size-square);
    background-color: var(--color);
}

.loader.--7::before {
    top: calc(50% - var(--size-square));
    left: calc(50% - var(--size-square));
    animation: loader-6 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

.loader.--7::after {
    top: 50%;
    left: 50%;
    animation: loader-7 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes loader-7 {
    0%,
    100% {
        transform: none;
    }

    25% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-100%) translateY(-100%);
    }

    75% {
        transform: translateY(-100%);
    }
}

/**
	loader --8
**/
.loader.--8::before,
.loader.--8::after {
    width: var(--size-dot);
    height: var(--size-dot);
    border-radius: 50%;
    background-color: var(--color);
}

.loader.--8::before {
    top: calc(50% + 4vmin);
    animation: loader-8-1 0.8s cubic-bezier(0.06, 0.01, 0.49, 1.18) infinite;
}

.loader.--8::after {
    opacity: 0;
    top: calc(50% - 2vmin);
    animation: loader-8-2 0.8s cubic-bezier(0.46, -0.1, 0.27, 1.07) 0.2s infinite;
}

@keyframes loader-8-1 {
    0%,
    55%,
    100% {
        opacity: 0;
    }

    0% {
        transform: scale(0.2);
    }

    22% {
        opacity: 1;
    }

    33%,
    55% {
        transform: scale(1) translateY(-6vmin);
    }
}

@keyframes loader-8-2 {
    0%,
    100% {
        opacity: 0;
    }

    33% {
        opacity: 0.3;
    }

    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(4);
    }
}

/**
	loader --9
**/
.loader.--9::before,
.loader.--9::after {
    width: var(--size-dot);
    height: var(--size-dot);
    border-radius: 50%;
    background-color: var(--color);
    animation: loader-9 0.42s cubic-bezier(0.39, 0.31, 0, 1.11) infinite;
}

.loader.--9::before {
    left: calc(50% - var(--size-dot) - 1.6vmin);
}

.loader.--9::after {
    left: calc(50% + 1.6vmin);
    animation-delay: 0.12s;
}

@keyframes loader-9 {
    0%,
    100% {
        opacity: 0;
    }

    0% {
        transform: translate(-4vmin, -4vmin);
    }

    66% {
        opacity: 1;
    }

    66%,
    100% {
        transform: none;
    }
}

/* --------------------------------------------- */

@media screen and (max-width: 1000px) {
    #container {
        width: 350px;

        background: white;
        box-shadow: 0px 10px 10px #33333350;

        border: 1px solid rgba(0, 0, 0, 0.123);
        grid-template-columns: 0px 100%;
    }
}

@media screen and (max-width: 450px) {
    #container {
        width: 90%;
    }
}
