.navbar-horizontal {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    background: var(--background-purple);
    box-shadow: 2px 2px 6px #00000099;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 15;

    flex-wrap: wrap;
    pointer-events: auto;
}

.navbar-vertical {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    background: var(--background-purple);
    box-shadow: 2px 2px 6px #00000099;
    text-align: left;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 15;

    pointer-events: auto;
}

.navbar-vertical-always {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-dropdown {
    float: left;
}

.navbar-dropdown-button {
    padding-bottom: 24px;
}

.navbar-dropdown-content {
    margin-top: 16px;
    position: absolute;
    display: none;
    z-index: 21;
}

.navbar-dropdown-button a {
    padding-bottom: 24px;
}

.navbar-dropdown:hover .navbar-dropdown-content {
    display: flex;
    flex-direction: column;
    background: var(--background-purple-light);
}

.navbar-dropdown-content a {
    margin-top: 12px;
    margin-bottom: 12px;
}

.navbar-vertical-links {
    display: none;
    width: calc(100% - 48px);
}

.navbar-vertical-links.active {
    display: flex;
    flex-direction: column;
    height: auto;
}

.navbar-icon {
    position: relative;
    /* width: 100%; */
    text-align: right;
    margin-right: 48px;
}

.navbar-logo {
    position: relative;
    /* width: 100%; */
    text-align: left;
    margin-left: 48px;
}

.navbar-icon i {
    font-size: 32px;
}

@media only screen and (min-width: 1201px) {
    .navbar-horizontal a {
        margin: 16px;
    }
}

@media only screen and (max-width: 1200px) {
    .navbar-horizontal a {
        margin: 14px;
    }
}

@media only screen and (max-width: 1000px) {
    .navbar-horizontal a {
        margin: 12px;
    }
}

@media only screen and (min-width: 901px) {
    .navbar-horizontal {
        display: flex;
    }
    .navbar-vertical {
        display: none;
    }
}

@media only screen and (max-width: 900px) {
    .navbar-horizontal a {
        margin: 10px;
    }
    .navbar-horizontal {
        display: none;
    }
    .navbar-vertical {
        display: flex;
    }
}

/* ANIMATIONS */
.opac-trans-in {
    opacity: 0;
    animation: opacity 0.5s ease-in-out forwards;
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.opac-trans-in:nth-child(1) { animation-delay: 0.1s; }
.opac-trans-in:nth-child(2) { animation-delay: 0.2s; }
.opac-trans-in:nth-child(3) { animation-delay: 0.3s; }
.opac-trans-in:nth-child(4) { animation-delay: 0.4s; }
.opac-trans-in:nth-child(5) { animation-delay: 0.5s; }
.opac-trans-in:nth-child(6) { animation-delay: 0.6s; }
.opac-trans-in:nth-child(7) { animation-delay: 0.7s; }
.opac-trans-in:nth-child(8) { animation-delay: 0.8s; }
.opac-trans-in:nth-child(9) { animation-delay: 0.9s; }
.opac-trans-in:nth-child(10) { animation-delay: 1.0s; }
.opac-trans-in:nth-child(11) { animation-delay: 1.1s; }
.opac-trans-in:nth-child(12) { animation-delay: 1.2s; }
.opac-trans-in:nth-child(13) { animation-delay: 1.3s; }
.opac-trans-in:nth-child(14) { animation-delay: 1.4s; }
.opac-trans-in:nth-child(15) { animation-delay: 1.5s; }
.opac-trans-in:nth-child(16) { animation-delay: 1.6s; }
.opac-trans-in:nth-child(17) { animation-delay: 1.7s; }
.opac-trans-in:nth-child(18) { animation-delay: 1.8s; }
.opac-trans-in:nth-child(19) { animation-delay: 1.9s; }