.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,.5);
    display: none;
}
.content-overlay.active {
    display: block;
}

/* SIDEBAR */
body.active, html.active {
    overflow: hidden;
    position: relative;
    height: 100%;
}

#sidebar {
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    /*kir*/
    /*background-color: rgba(62, 80, 56, 0.9);*/
    transition: all .3s;
    overflow-y: scroll;
    z-index: 9999;
    display: block;
}

#sidebarDropDown {
    display: block;
    list-style: none;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

#sidebarDropDown.show {
    max-height: 580px;
    transition: all 0.6s ease-in-out;
}

#sidebar li {
    padding: 0.35rem 0rem;
    width: 100%;
}

#sidebarDropDown li a {
    font-family: FuturaGreek;
    font-size: 19px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}

#sidebarDropDown .collapsing {
    position: relative;
    height: 0;
}

#sidebarDropDown .subdropdown-item{
    font-size: 14px;
    margin-left: 14px;
}

#sidebar.active {
    background-color: #e63946;
    right: 0;
    /*kir*/
    width: 40%;
    padding-right: 54px;
    padding-left: 46px;
}

#sidebar .menu-container {
    padding-right: 0px;
}

#sidebar .nav-link {
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    padding: .5rem 0px;
    padding-right: 5px;
}

#sidebar .nav {
    margin-top: 18px;
    width: 100%;
    margin-right: 100px;
}

#sidebar .nav-link.dropdown-toggle {
    display: flex;
    justify-content: space-between;
}

#sidebar .sideLearnMore {
    width: 220px;
    height: 45px;
    margin-top: 1.5rem;
}

#sidebar .sideLearnMore:hover {
    opacity: 0.6;
}

#sidebar .close-btn {
    background: transparent;
    border: none;
    display: block;
    padding: 0;
    margin-left: auto;
    transition: all .3s;
}

#sidebar .close-menu {
    width: 30.6px;
    height: 30.6px;
    object-fit: contain;
}

#sidebar .close-btn:hover {
    opacity: 0.6;
}

#sidebar .container.fixed-top {
    display: flex;
    height: 135.4px;
    right: -200%;
    transition: all .3s;
}

#sidebar .container.fixed-top.active {
    position: relative;
    height: 90px;
    padding-right: 0px;
}

#sidebar .lowerEmblem {
    margin-right: 1rem;
}

.dropdown-toggle::after {
    content: url(/dist/images/menu-toggle.svg);
    height: 18px;
    width: auto;
    border-top: 0px;
    margin-top: 4.765px;
    margin-left: 4px;
    transform-origin: center center;
    transition: all ease-in-out 0.3s;
}


.nav-item .dropdown-toggle:hover::after, .show .nav-link:after {
    transform: rotate(90deg);
}

.division-line{
    width: 100%;
    opacity: 0.5;
    border: solid 1px #ffffff;
    margin: 20px 0px;
}

.sidebar-footer{
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin: 6px 0px;
}

.donate-sidebar-button{
    font-size: 18px;
    height: 50px;
    display: block;
    padding: 12px 20px;
    color: white;
    background-color: #1d3457;
    text-align: left;
    font-weight: 600;
}

@media (max-width: 969px) {

    .dropdown-toggle::after {
        display: none;
    }

    #sidebar .nav-link.dropdown-toggle{
        width: 90%;
        display: inline-block;
    }

    .nav-item.dropdown > img{
        width: 10px;
    }

    #sidebar.active {
        right: 0;
        width: 44%;
    }

    #sidebar .nav {
        margin-right: 0;
    }
}

@media (max-width: 889px) {
    #sidebar.active {
        width: 100%;
    }
}
@media (max-width: 749px) {
    #sidebar.active {
        right: 0;
        width: 54%;
    }
}

@media (max-width: 550px) {
    /*#sidebar.active {*/
    /*right: 0;*/
    /*width: 55%;*/
    /*}*/

    #sidebar .menu-container {
        height: auto;
        padding-right: 0px;
    }

    #sidebar .nav {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        height: 100%;
    }

    .search-box {
        justify-content: space-between;
        padding: 0px 30px;
    }
}
@media (max-width: 480px) {
    #sidebar .nav {
        margin-top: 28px;
    }
}