@font-face {
  font-family: Lota Grotesque;
  src: url(../webfonts/Lota-Grotesque-Alt-1-Black.otf) format("opentype");
}

.navbar-wrapper {
    background-color: #ffffff;
    box-shadow: 0 2px 20px #0000001a
}

.navbar {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-weight: 300;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    margin: 0px auto 32px auto !important;
    padding: 0px 24px !important;
    max-width: 1440px;
}

.navbar-toggler {
    display: none;
}

.navbar-collapse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar-content {
    height: 100%;
}

.navbar-nav {
    background-color: #ffffff;
}

.nav-mobile {
    display: none;
}

.navbar-brand {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    color: #333333 !important;
    padding-top: 14px;
    height: 75px;
    font-style: normal;
    font-family: Lota Grotesque, sans-serif;
}

.nav-link {
    padding: 9px 18px!important;
    display: list-item;
    color: #333333 !important;
    font-weight: 600;
    text-decoration: none;
}

.nav-link:active, .nav-link:visited, .nav-link:hover, .nav-item.active .nav-link {
    background-color: width: auto;
    border-radius: 8px;
    background-color: #e9ecf5!important;
}

.navbar .nav-item .pending-todo-badge {
    top: 5px;
}

.nav-item.active .nav-link {
    font-weight: 700 !important;
}

.navbar-toggler:focus, .navbar-toggler:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar .codecoin-number-wrapper {
    position: absolute;
    right: 100px;
    bottom: -22px;
}

.navbar .codecoin-number-wrapper img {
    width: 110px;
    top: -39px;
    right: 50px;
}

.navbar .codecoin-number-wrapper .codecoin-number {
    color: antiquewhite;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 21px rgb(22, 22, 22), 0 0 2px rgb(55, 55, 55);
    position: absolute;
    top: 41px;
    left: 16px;
    text-align: center;
    width: 80px;
}

#navbar-helper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.overlay-active {
    z-index: 1019;
}

#drop-toggle {
    color: #000;
}

#drop-toggle > i {
    font-size: 14px;
    font-weight: 400;
}

#drop-toggle.active {
    color: #25B289;
}

#drop-contents {
    display: none;
}

#drop-contents.open {
    display: block;
    position: absolute;
    width: 250px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.17);
    border-radius: 4px;
    background: #f8f9fa;
    color: #000;
    list-style-type: none;
    padding-inline-start: 0;
}

#drop-contents.open>li {
    padding: 4px;
    cursor: pointer;
}

#drop-contents.open>li:hover {
    background-color: #efefef;
}

#drop-contents.open>li:hover a {
    color: #25B289;
}

#mobile-menu-text {
    font-family: Archivo,sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    margin-right: 8px;
}

.btn-menu-dark {
    padding: 8px 16px;
    background-color: #646180;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color .2s;
}

.dropdown-toggle {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1199px) {
    .nav-full {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .collapse:not(.show) {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 75px;
        right: 0;
        bottom: 0;
        width: 266px;
        z-index: 1000;

        display: flex;
        flex-direction: column;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-content {
        height: 100%;
    }

    .navbar-toggler {
        display: block;
    }
}

