/* ######################################################## */
/* Root Wrapper used for Dashboard Applications             */
/* ######################################################## */

.root-outer .bg-primary {
    background-color: #202432;
    /* background-color: #262b40; */
}

/* ######################################################## */
/* Collapsible Side Bar                                     */
/* ######################################################## */

.root-outer > .sidebar {
    background-color: #202432;
    /* background-color: #262b40; */
    /* background-color: #16161D; */
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-header {
    padding: 0.5rem 1.9rem;
    border-bottom: 1px solid #F0D943;
}

/* Sidebar Website Logo */
.root-outer > .sidebar > .sidebar-inner > .sidebar-header .image {
    max-width: 13.6rem;
}

/* Sidebar Logout Button */
.root-outer > .sidebar > .sidebar-inner > .sidebar-header .signout {
    padding: 0.25rem 0.5rem;
    background-color: #F0D943;
    /* background-color: #344FFE; */
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-header .close {
    margin: 0;
}

/* Segment part */
.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu {
    /* background-color: #262B40; */
    background-color: #202432;
    border-radius: 0;
    padding: 0 0.5rem !important;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items {
    background-color: #202432;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .plus-menu-header {
    color: #F0D943;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item {
    color: #BABCCE;
    padding: .95rem .95rem;
    border-radius: 0.5rem;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item:hover {
    background-color: #181b26;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item .icon {
    color: #5D5D79;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item.active {
    color: #e0e1f0;
    font-weight: 600;
    background-color: #12141c;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item.active .icon {
    color: #344FFE;
}

/* ######################################################## */
/* Navbar                                                   */
/* ######################################################## */

/* Colors */
.navbar > .navbar-params > .form { margin: auto 0.25rem; height: 1.5rem; }
.navbar > .navbar-params > .form > .input > input { background: #e0e1e2; border: none; border-radius: 0.285rem; color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .checkbox > label::before { background: #e0e1e2; border: none; border-radius: 0.285rem; }
.navbar > .navbar-params > .form > .checkbox > label::after { color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .checkbox > label { color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .dropdown { background: #e0e1e2; border: none; border-radius: 0.285rem; color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .dropdown > i.dropdown { background: #e0e1e2; border: none; border-radius: 0.285rem; }

/* ######################################################## */
/* Legacy                                                   */
/* ######################################################## */

.lvsos-container {
    background-color: #fff;
    min-height: 100vh;
    padding: 50px;
}

.lvsos-content {
    background-color: #cff;
    padding: 50px;
    border-radius: 50px;
    border-width: 5px;
    border-color: #000;
    border-style: solid;
}

.lvsos-inner-content {
    margin: auto;
    max-width: 800px;
}

.lvsos-header {
    display: flex;
    align-items: center;
}

.lvsos-header h1 {
    margin-right: 20px;
}

.lvsos-menu {
    text-align: center;
    margin-bottom: 20px;
}

/* ################################################## */
/* Explorer App                                       */
/* ################################################## */

.explorer-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(244, 245, 246, .85) !important;
}

/* ################################################## */
/* Website Layout                                     */
/* ################################################## */

.website {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* ################################################## */
/* Website Header                                     */
/* ################################################## */

.website-header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.website-header > .website-header-menu-item {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    cursor: pointer; /* Add this line to change the cursor to a pointer */
}

.website-header > .website-header-menu-item:hover {
    text-decoration: underline;
}

/* ################################################## */
/* Website Body                                       */
/* ################################################## */

.website-body {
    flex: 1;
/*    padding: 20px;*/
/*    max-width: 800px;*/
    margin: auto;
    margin-top: 20px;
}

/* ################################################## */
/* Website Footer                                     */
/* ################################################## */

.website-footer {
    width: 100%;
    height: 4rem;
}

.footer-wrapper {
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.footer-wrapper.sticky {
    height: 4rem;
    z-index: 5;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.website-footer > .footer-wrapper > .footer-left,
.website-footer > .footer-wrapper > .footer-right {
    flex-grow: 0;
}

.website-footer > .footer-wrapper > .footer-center {
    flex-grow: 1;
    text-align: center;
}

/* ################################################## */
/* Audio Player Bar                                   */
/* ################################################## */

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-buttons > .player-button {
    background-color: #333;
    color: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer,
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer {
    background-color: #333;
    color: #fff;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress {
    background: #111;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress > .bar {
    background: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer > i {
    font-size: 1rem;
}

/* ################################################## */
/* Other                                              */
/* ################################################## */

.FeaturedEpisode {
    text-align: justify;
}
