body {
    color: #161925;
}

a:not(.btn), a:link:not(.btn) {
    text-decoration: none;
    color: #161925;
}

a:hover {
    color: var(--bs-secondary-color);
}

.bg-main {
    background-color: #fbfdfe;
}

.toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    padding-right: 20px;
    cursor: pointer;
    color: #161925;
}

.collapsed .hide-on-collapse {
    opacity: 0;
    visibility: hidden;
}

#main {
    padding: 20px;
    transition: all 0.3s ease;
    overflow-x: hidden;
    height: calc(100vh - 64px);
}

.logo-icon {
    color: #0094C6;
}


/**
 * Sidebar nav styles
 */

.sidebar {
    position: fixed;
    top: 64px;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    overflow-y: auto;
    transition: all 0.3s ease;
    width:250px;
}

.sidebar .current {
    background-color: #f4f7fd;
}

.sidebar .nav-item:hover {
    background-color: #f4f7fd;
}

.sidebar .current .nav-link {
    color: #0094C6;
}

.sidebar .nav-link {
    color: #161925;
}

.sidebar .nav-link:hover {
    color:#0094C6;
}

.sidebar .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

/**
 * Sidebar toggle style
 */

@media (min-width: 1200px) {
    .toggle-sidebar #main {
        margin-left: 0;
    }

    #main {
        margin-left: 250px;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }

    .logo {
        width: 230px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }

    .sidebar {
        left: -300px;
    }
}

label.required:after, legend.required:after {
    content: "*";
    color: red;
}

.col-form-label {
    font-size: inherit !important;
    padding: 0 !important;
    margin-bottom: 0.5rem !important;
}

.color-swatch {
    border: 1px solid #aaa;
    border-radius: 2px;
    margin-right: 0.5em;
    padding: 0.3em;
}

td {
    vertical-align: middle;
}