[data-simplebar] {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;

    position: relative;
}

.simplebar-wrapper {
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;

    overflow: hidden;
}

.simplebar-mask {
    width: auto !important;
    height: auto !important;
    padding: 0;

    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;

    overflow: hidden;

    direction: inherit;
}

.simplebar-offset {
    box-sizing: inherit !important;

    resize: none !important;
    padding: 0;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;

    direction: inherit !important;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    box-sizing: border-box !important;

    display: block;

    width: auto;
    height: 100%; 
    max-width: 100%; 
    max-height: 100%; 

    position: relative;

    direction: inherit;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
    content: ' ';

    display: table;
}

.simplebar-placeholder {
    pointer-events: none;

    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    pointer-events: none;

    flex-basis: 0;
    flex-grow: inherit;
    flex-shrink: 0;

    width: 100%;
    height: 100%;
    max-width: 1px;
    max-height: 1px;
    padding: 0;

    float: left;
    position: relative;
    z-index: -1;
    margin: 0;

    overflow: hidden;
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    pointer-events: none;

    display: block;

    width: 1000%;
    height: 1000%;
    min-width: 1px;
    min-height: 1px;

    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    opacity: 0;
    overflow: hidden;
}

.simplebar-track {
    pointer-events: none;

    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
    user-select: none;
    pointer-events: none;

    -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}

.simplebar-scrollbar {
    min-height: 10px;

    position: absolute;
    right: 0;
    left: 0;
}

.simplebar-scrollbar:before {
    content: '';

    position: absolute;
    right: 2px;
    left: 2px;

    border-radius: 7px;
    background: black;
    opacity: 0;

    transition: opacity .2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
    
    opacity: .5;

    transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
    width: 11px;

    top: 0;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
    height: 11px;

    left: 0;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    height: 100%;

    right: 2px;
    left: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    width: auto;
    height: 7px;
    min-width: 10px;
    min-height: 0;

    top: 2px;
    right: auto;
    left: 0;
}


[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}

.hs-dummy-scrollbar-size {
    width: 500px;
    height: 500px;

    position: fixed;

    opacity: 0;
    visibility: hidden;
    overflow-x: scroll;
    overflow-y: hidden;

    direction: rtl;
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;

    visibility: hidden;
    overflow-y: scroll;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
