#toggle {
    position: relative;
    display: block;
    width: 35px;
    height: 18px;
    border-radius: 16px;
    background: #dadada;
    transition: 0.5s;
    cursor: pointer;
}

#toggle .indicator {
    position: absolute;
    top: -26.5px;
    left: -26px;
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, #264161, #426085);
    border-radius: 50%;
    transform: scale(0.2);
    transition: 0.2s;
}

#toggle.active {
    background: #264161;
}

#toggle.active .indicator {
    left: -9px;
    background: linear-gradient(to bottom, #ffffff, #cbcbcb);
}

cite {
    font-size: medium;
    display: block;
    white-space: nowrap;
    border-right: 2px solid;
    width: 26ch;
    animation: typing 5s steps(21), blink .5s step-end infinite alternate;
    overflow: hidden;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.txt-center {
    text-align: center;
}

.no_underline {
    text-decoration: none;
}

nav {
    padding-left: 30px;
    padding-right: 30px;
}

#btn_driver {
    margin-bottom: 0 !important;
    background-color: #157a63;
    color: #ffff;
    border: 1px solid #ebebeb;
    height: 90px;
}

#btn_driver:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 5px 8px 0 0 rgb(255, 255, 255);
}

#btn_student {
    margin-bottom: 0 !important;
    background-color: #266793;
    color: #ffff;
    border: 1px solid #ebebeb;
    height: 90px;
}

#btn_student:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 5px 8px 0 0 rgb(255, 255, 255);
}

.f-l {
    font-size: 0.9em;
    color: #ebebeb;
}

.f-l b {
    font-weight: bold;
}

.mb-0 {
    margin-bottom: 0;
}

.logo_img {
    width: 40px;
    height: 60px;
    filter: drop-shadow(0px 5px 10px rgba(152, 152, 152, 0.248));
}


.btn_go {
    font-size: 20px;
    background: #d6d6d6;
    color: #141e26;
    padding: 0.3em 1em;
    padding-left: 4.5em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
    width: 100%;
}

.btn_go span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.btn_go svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.btn_go:hover svg {
    transform: translateX(1.2em) rotate(0deg) scale(1.1);
}

.btn_go:hover span {
    transform: translateX(8em);
}

h4 {
    font-size: 1.2em;
    font-weight: 200px;
    color: #dadada;
    letter-spacing: 1px;
}

h4 span {
    transition: 0.5s;
}

h4:hover span:nth-child(1) {
    margin-right: 2px;
}

h4:hover span:nth-child(2) {
    margin-left: 2px;
}

h4:hover span:nth-child(1)::after {
    content: "🗺️​";
}

h4:hover span {
    color: #0bddc4;
    text-shadow: 0 0 10px #0bddc4,
        0 0 20px #0bddc4,
        0 0 40px #0bddc4,
        0 0 80px #0bddc4,
        0 0 120px #0bddc4,
        0 0 160px #0bddc4,
    ;
}