#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    top:0px;
    width: 250px;
    height: 100%;
    transform: translateX(250px);
    overflow-y: auto;
    background: #000;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    top:0px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#sidebar-wrapper ul li {
    font-size: 0.65em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

#sidebar-wrapper ul li.active>a {
    background: transparent;
    color: #FF1627;
}

#sidebar-wrapper ul li a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar-wrapper .logo span {
    display: block;
}

#sidebar-wrapper ul.components {
    padding: 0;
}

#sidebar-wrapper ul li>ul {
    margin-left: 10px;
}

#sidebar-wrapper ul li>ul li {
    font-size: 0.75em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

#sidebar-wrapper ul li a {
    padding: 10px 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar-wrapper ul li a:hover {
    color: #FF1627;
}

#sidebar-wrapper ul li.active>a {
    background: transparent;
    color: #FF1627;
}

#sidebar-wrapper .close-btn {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 0;
    right: 10px;
    padding: 10px;
    border: none;
}

@media (max-width: 991.98px) {
    #sidebar-wrapper {
        margin-left: -300px;
    }
    #sidebar-wrapper.active {
        margin-left: 0;
    }
}


a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

