@charset "UTF-8";

.theme-dark .circles li {
    background: rgb(255 255 255 / 6%);
}

.theme-light .circles li {
    background: rgb(0 0 0 / 6%);
}

.area {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(63 63 63 / 7%);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.nav-vertical .nav-link {
    font-weight: 700 !important;
    border: 1px solid #00000014;
    margin: 0.2rem 0;
    background: #fafbfc;
}

.theme-dark .nav-vertical .nav-link {
    border: 1px solid #ffffff14;
    background: transparent;
}

.rotating {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

header.navbar>* {
    min-width: 13rem;
}

.navbar-short .short-menu a {
    justify-content: center !important;
}

.navbar-short>* {
    min-width: 5rem !important;
}

.navbar-brand-image {
    min-width: 4rem;
}



.navbar-short .short-menu a span {
    display: none;
}

.short-menu a i {
    min-width: 2rem;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.page-header {
    margin: 0 !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
    display: block;
    width: 100%;

    font-family: var(--tblr-font-sans-serif);
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.4285714286;
    color: inherit;
    background-color: var(--tblr-bg-forms);
    background-clip: padding-box;
    border: var(--tblr-border-width) solid var(--tblr-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--tblr-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.select2-selection__rendered {
    padding: 0.4375rem 0.75rem;
    line-height: auto !important;
}

.select2-selection--single {
    line-height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: auto !important;
}

.min-width15 {
    min-width: 15rem;
}


.navbar-weebim {flex-direction: row !important;}
.navbar-short .navbar-weebim {
    flex-direction: column !important; 
    min-height: auto; 
}


@media only screen and (min-width: 2000px) {
    .container-large {
        max-width: 2000px;
        padding:1%;
    }
    #navbar {border-radius: 0.25rem;}
    aside {border-radius:0.25rem; margin-left: 1rem; border:1px var(--tblr-border-style) rgba(97,104,118,.16)!important;}
}
@media only screen and (max-width: 994px) {
    .navbar-short .navbar-weebim {
        flex-direction: row !important; 
        background-color: transparent!important;
        border: 0 !important;
        min-height: auto; 
    }
  }