.controlButton {
    display: inline-flex;
    align-items: flex-start;
    padding-top: 9px;
}

.ic14v-loader {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 50px;
    top: 7px;
}
.ic14v-loader::after,
.ic14v-loader::before {
    content: '';
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #3f3f3f;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}
.ic14v-loader::after {
    animation-delay: 1s;
}

.lb-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lb-content img {
    width: 100%;
    height: auto;
    display: block;
}
.lb-close {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff; border: none;
    border-radius: 4px; width: 32px; height: 32px;
    font-size: 20px; cursor: pointer;
}

.lightbox-enabled {
    cursor: pointer;
    transition: transform 0.2s;
}
.lightbox-enabled:hover {
    transform: scale(1.05);
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
