/** sidebar main **/
@import "vars.css";

#sidebar .sidebar-main-container {
    display: none;
}

#sidebar {
    display: none;
    max-width: 379px;
    min-width: 379px;
    background: var(--whiteColor) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(182, 205, 242, 0.18);
    transition: all 0.3s;
    height: calc(100vh - 54px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

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

#sidebar .sidebar-header {
    padding: 12px;
    color: #0078D4;
    font-weight: bold !important;
    font-size: 18px;
}

#sidebar .sidebar-title {
    margin: 24px 0 16px 24px;
    font-weight: 600 !important;
}

#sidebar .sidebar-description {
    font-weight: 400;
    font-size: 14px;
    width: 95%;
    margin: 8px 95px 24px 24px;
    color: #4F4F4F;
}

#sidebar .sidebar-subheading {
    font-weight: 500;
    font-size: 16px;
    margin-left: 24px;
}

/** dropdown option styling  **/

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#dropdown-menu {
    width: inherit;
    height: 35px;
    margin-left: 8px;
    background: #fafafa;
    color: #6d7fcc;
    border-color: #6d7fcc;
    border-radius: 8px;
    cursor: pointer;
}

/** grondslagen description **/

#subject {
    border: none;
    outline: none;
    cursor: pointer;
    height: 35px;
    max-width: 100%;
    min-width: 100%;
    color: #292929;
    text-overflow: ellipsis;
    background-color: #DDEDFF;
}

.description {
    color: #4F4F4F;
    margin-left: 8px;
}

.grondslagen-description {
    width: 95%;
    margin: 8px 95px 24px 24px;
    color: #4F4F4F;
}

/* similar annotation container */

.similar-annotation-container {
    display: none;
    margin-left: 24px;
}

input[type="checkbox"]:checked {
    background: #4393EE;;
    color: var(--whiteColor);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 40px 0 40px;
}

#author-title {
    font-style: italic;
}

#author-container {
    display: none;
}