@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #eee;
    color: #23063a !important;
}

.bg-secondary {
    background-color: #23063a !important;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 300;
}

.btn {
    color: #23063a
}

.btn-primary {
    background-color: #ffe400;
    border: 0;
}

.btn-primary:hover {
    background-color: #ffe400;
}

.btn-primary.active {
    background-color: #a59503;
    border: 0;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    max-width: 100vw;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    position:fixed;
    color:#23063a;
    transition: all 0.3s;
    background-color: white;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
    z-index:500;
}

#sidebar a {
    color:inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size:12px;
    display: block;
    padding:10px;
    font-weight: 300;
}

#sidebar a:hover {
    background-color: #eee;
}

#sidebar.closed {
    margin-left: -250px;
}

#sidebar a.router-link-active {
    background:#fee400;
    color:#23063a;
    font-weight: 600;
}

#sidebar a.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.sidebar-header {
    padding:10px 0;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.closed {
        margin-left: 0;
    }
    #sidebar+#content {
        padding-left:0px;
    }
    #sidebar.closed+#content {
        margin-left:250px;
    }
}

#sidebarCollapse {
    font-size: 12px;
    font-weight: 700;
    color: #23063a
}

#sidebar i {
    display: inline-block;
    margin-right: 10px;
}

#sidebar strong {
    padding-left:10px;
    font-size:14px;
    font-weight: 600;
}

#background {
    /*background:linear-gradient(87deg,#f5365c 0,#f56036 100%);*/
    background:#ffe400;
    height:400px;
    position: fixed;
    z-index: -1000;
    margin:0;
    width: 100vw;
}

#top-bar {
    padding:20px 0;
    padding-right:10px;
}

#content {
    transition: all 0.3s;
    padding-left:250px;
    width: 100vw;
}

#sidebar.closed+#content {
    padding-left:0;
}

#main-content {
    padding:0 20px;
}

#profiles-widget tbody tr:hover {
    cursor:pointer;
}
 
#fullscreenOverlay {
    width: 100vw;
    height: 100vh;
    position:fixed;
    margin:0;
    top:0;
    left:0;
    background-color:rgba(0,0,0,0.2);
    z-index:1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

td[colspan] {
    height:0;
    border:0;
}

td[colspan]:hover {
    box-shadow: none;
}

tr>td:not(:first-child), tr>th:not(:first-child) {
    text-align:center;
}

@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.8rem;
    }
}