div.links-block {
    margin-bottom: 10px;
}
img.dlb-icon {
    margin-left: 5px;
    vertical-align: bottom;
    cursor: pointer;
}
.dlb-container {
    padding: 5px;
    position: absolute;
    border: 1px solid #bbbbbb;
    transform: translateX(100%) translateY(0);
    height: calc(100vh - 160px);
    transition-duration: 0.2s;
}
.dlb-container.dlb-open {
    transform: translateX(0%) translateY(0);
    z-index: 20;
}
.dlb-container.dlb-no-items {
    display: none;
}
span.dlb-opener {
    position: absolute;
    top: 10px;
    right: calc(100% + 8px);
    cursor: pointer;
    white-space: nowrap;
}
div.dlb-open span.dlb-openhint {
    transform: rotate(180deg);
    display: inline-block;
    vertical-align: middle;
}
h4.dlb-title {
    margin-top: 5px;
}
span.dlb-item-remover {
    cursor: pointer;
    margin-right: 6px;
    color: red;
}
ul.dlb-list > li {
    list-style-type: none;
}
ul.dlb-list {
    padding-inline-start: 5px;
}
span.dlb-button {
    margin-right: 5px;
	padding: 2px 10px;
}
span.dlb-empty {
    border: 1px solid red;
    cursor: pointer;
}
span.dlb-download {
    border: 1px solid green;
    cursor: pointer;
}

.dlb-slider {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    background-color: transparent!important;
}

.dlb-slider img {
    width: 120px;
}

.dlb-games-libraries.hide-libraries .dlb-media-library {
    display: none !important;
}

.dlb-shimmer {
    position: relative;
    overflow: hidden;
}
.dlb-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
    0% { left: -150%; }
    100% { left: 100%; }
}
