:root {
    --primary: #111B54;
    --dark: #0b0b0b;
    --grey: rgb(132, 132, 132);
    --line: #2b2c2c;
    --off: #164367;
    --h1: #adadad;
    --link: #2896d1;
    --text: #c9c7c7;
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 50px;
    background-color: var(--dark);
    letter-spacing: 0.01em;
    color: var(--text);
}

h1 {
    color: val(--h1);
}

.button {
    border: none;
    /* color: rgb(255, 255, 255); */
    /* padding: 8px 48px; */
    /* text-align: center; */
    /* text-decoration: none; */
    display: inline-flex;
    height: 40px;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 5px;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.4s;
    cursor: pointer;
}

.donate {
    background-color: #ff6200;
    color: white;
}

.donate:hover {
    background-color: #ff6200bd;
    color: white;
}

.button_text,
.button_icon {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    height: 100%;
}

.button_icon {
    font-size: 1.5em;
    background: rgba(179, 71, 4, 0.406);
}

a:visited {
    color: white;
}

/*main side bar*/
.msb {
    width: 250px;
    background-color: var(--dark);
    position: fixed;
    left: 0;
    top: 0;
    right: auto;
    min-height: 100%;
    overflow-y: auto;
    white-space: nowrap;
    height: 100vh;
    padding-bottom: 50px;
    z-index: 1;
    border-right: 1px solid var(--line);
}

.msb .navbar {
    border: none;
    margin-left: 0;
    background-color: inherit;
}

.msb .navbar-header {
    width: 100%;
    border-bottom: 2px solid var(--line);
    padding-top: 6px;
    margin-bottom: 10px;
    background: var(--dark);
}

.msb .navbar-nav .panel {
    border: 0 none;
    box-shadow: none;
    margin: 0;
    background: inherit;
}

.msb .navbar-nav li {
    display: block;
    width: 100%;
}

.msb .navbar-nav li a {
    padding-left: 15px;
    color: var(--text);
}

.msb .navbar-nav li a .glyphicon,
.msb .navbar-nav li a .fa {
    margin-right: 8px;
}

.msb .nb {
    padding-top: 5px;
    padding-left: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

ul.nv,
ul.ns {
    position: relative;
    padding: 0;
    list-style: none;
}

/* .nv {
    ns: nav-sub
} */

.nv li {
    display: block;
    position: relative;
}

.nv li::before {
    clear: both;
    /* content: &quot; */
    /* &quot; */
    /* ; */
    display: table;
}

.nv li a {
    color: #444;
    padding: 10px 25px;
    display: block;
    /* vertical-align: middle; */
}

.nv li a .ic {
    font-size: 16px;
    margin-right: 5px;
    font-weight: 300;
    display: inline-block;
}

.nv .ns li a {
    padding: 10px 50px;
}

/*main content wrapper*/
.mcw {
    margin-left: 200px;
    position: relative;
    min-height: 100%;
    /*content view*/
}

/*globals*/
li {
    padding-left: 15px;
}

#msbo,
a {
    color: var(--text);
}

.navbar-default {
    background-color: var(--dark);
    margin-left: 250px;
}

.navbar-default .navbar-brand {
    color: var(--text);
}

.navbar-default .navbar-nav>li>a {
    color: var(--text);
}

a.sidebar-link-off {
    color: var(--off) !important;
}


a,
a:focus,
a:hover {
    text-decoration: none;
}

.inbox .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.inbox ul,
.inbox li {
    margin: 0;
    padding: 0;
}

.inbox ul li {
    list-style: none;
}

.inbox ul li a {
    display: block;
    padding: 10px 20px;
}

.msb,
.mnb {
    -moz-animation: slidein 300ms forwards;
    -o-animation: slidein 300ms forwards;
    -webkit-animation: slidein 300ms forwards;
    animation: slidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.mcw {
    -moz-animation: bodyslidein 300ms forwards;
    -o-animation: bodyslidein 300ms forwards;
    -webkit-animation: bodyslidein 300ms forwards;
    animation: bodyslidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

body.msb-x .mcw,
body.msb-x .mnb {
    margin-left: 0;
    -moz-animation: bodyslideout 300ms forwards;
    -o-animation: bodyslideout 300ms forwards;
    -webkit-animation: bodyslideout 300ms forwards;
    animation: bodyslideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

body.msb-x .msb {
    -moz-animation: slideout 300ms forwards;
    -o-animation: slideout 300ms forwards;
    -webkit-animation: slideout 300ms forwards;
    animation: slideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.panel-body {
    padding-top: 0px;
    padding-bottom: 0px;

}

.languages {
    display: flex;
    gap: .5rem;
    padding-top: 10px;
}

.lang-button {
    background-color: transparent;
    font-size: 2rem;
    border: 0;
    cursor: pointer;
}

/* Slide in animation */
@-moz-keyframes slidein {
    0% {
        left: -250px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes slidein {
    0% {
        left: -250px;
    }

    100% {
        left: 0;
    }
}

@keyframes slidein {
    0% {
        left: -250px;
    }

    100% {
        left: 0;
    }
}

@-moz-keyframes slideout {
    0% {
        left: 0;
    }

    100% {
        left: -250px;
    }
}

@-webkit-keyframes slideout {
    0% {
        left: 0;
    }

    100% {
        left: -250px;
    }
}

@keyframes slideout {
    0% {
        left: 0;
    }

    100% {
        left: -250px;
    }
}

@-moz-keyframes bodyslidein {
    0% {
        left: 0;
    }

    100% {
        margin-left: 250px;
    }
}

@-webkit-keyframes bodyslidein {
    0% {
        left: 0;
    }

    100% {
        left: 0;
    }
}

@keyframes bodyslidein {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: 250px;
    }
}

@-moz-keyframes bodyslideout {
    0% {
        margin-left: 250px;
    }

    100% {
        margin-right: 0;
    }
}

@-webkit-keyframes bodyslideout {
    0% {
        margin-left: 250px;
    }

    100% {
        margin-left: 0;
    }
}

@keyframes bodyslideout {
    0% {
        margin-left: 250px;
    }

    100% {
        margin-left: 0;
    }
}