.contentview-sidebar-overlay {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    cursor: pointer;
    display: block;
    z-index: 99;
}

.contentview-sidebar {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    width: 550px;
    height: 100%;
    overflow-x: hidden;
    transition: transform 0.250s ease;
    transform: translateX(100%);
    background-color: #f7f7f7;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0
}

.contentview-sidebar-wrapper.show .contentview-sidebar {
    transform: translateX(0);
}

.contentview-sidebar .sidebar-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.contentview-sidebar .sidebar-title {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    text-align: left;
    padding: 20px 15px;
    width: 100%;
}

.contentview-sidebar .sidebar-title .text {
    font-family: 'Schnyder';
    font-size: 24px;
}

.contentview-sidebar .sidebar-body {
    overflow-y: auto;
    height: 100%;
}

.contentview-sidebar .sidebar-close-btn {
    color: #999;
    cursor: pointer;
    position: absolute;
    top: 21px;
    right: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    z-index: 10;
    line-height: 30px;
}

.contentview-sidebar .sidebar-close-btn:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 25px;
    content: '\e616';
    font-family: 'luma-icons';
    font-weight: bold;
    overflow: hidden;
    speak: none;
    text-align: center;
    line-height: 27px;
}

.contentview-sidebar .sidebar-close-btn:hover,
.contentview-sidebar .sidebar-close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contentview-sidebar .not-found-content {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #cdcdcd;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

.contentview-sidebar .not-found-content i {
    color: #cdcdcd;
    font-size: 3.8rem;
    margin-right: 15px;
}

@media (max-width: 640px) {
    .contentview-sidebar {
        width: 100%;
    }
}
