.mb-popup-link {
    cursor: pointer;
}


.st-lightbox__wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.73);
}

.st-lightbox__close-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.st-lightbox__window {
    position: relative;
    background-color: grey;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1000;
    width: 800px;
    height: 460px;
    min-height: 327px;
}


.st-lightbox__window-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 70px;
    color: #ffffff;
}

.st-lightbox__name {
    font-size: 55px !important;
    letter-spacing: 0;
    text-shadow: 6px 5px 0 rgb(0 0 0 / 25%);
    -webkit-text-stroke: 2px #00a3f1;
    font-family: 'luckiest_guy', serif;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-text-fill-color: white;
}


.st-lightbox__close, .st-lightbox__arrow {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background-image 0.5s ease;
}

.st-lightbox__close {
    background-image: url("img/close-white.png");
    top: 10px;
    right: 10px;

}

.st-lightbox__close:hover {
    background-image: url("img/close-red.png");
}

.st-lightbox__arrow {
    background-image: url("img/arrow-white.png");
    position: absolute;
    top: 50%;
    margin-top: -25px;
}


.st-lightbox__arrow:hover {
    background-image: url("img/arrow-red.png");
}


.st-lightbox__arrow.arrow-left {
    transform: rotateZ(180deg);
    left: 10px;
}

.st-lightbox__arrow.arrow-right {
    right: 10px;
}

.st-lightbox__left-side {
    flex: 1.5;
}

.st-lightbox__right-side {
    flex: 1;
}

/* loader */

.ld-loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* superthings specific */
.superthings-style .st-lightbox__window {
    background-image: url("img/superthings-top-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    transition: all 0.5s ease;
}


/* kookyloos specific */
.kookyloos-style .st-lightbox__left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kookyloos-style .st-lightbox__left-side .st-lightbox__img {
    width: 77%;
    height: auto;
    object-fit: contain;
}

.kookyloos-style .st-lightbox__left-side .st-lightbox__gallery-thumbs {
    flex: 1;
    align-self: flex-end;
    background-color: white;
    border-radius: 10px;
    margin-left: 10px;
}

.kookyloos-style .st-lightbox__left-side .st-lightbox__gallery-thumbs img.gallery-item {
    padding: 0;
    cursor: pointer;
}

.kookyloos-style .st-lightbox__window-content {
    gap: 15px;
}

.kookyloos-style .st-lightbox__accesory-img {
    position: absolute;
    right: 0;
    bottom: 31px;
    height: 70px;
}


.kookyloos-style .st-lightbox__right-side .st-lightbox__text {
    margin-bottom: 75px;
}

.kookyloos-style .st-lightbox__name {
    background-color: #e8378c;
    padding: 3px 15px;
    font-size: 26px !important;
    letter-spacing: unset !important;
    text-shadow: unset !important;
    -webkit-text-stroke: unset !important;
    font-family: serif;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-text-fill-color: unset !important;
    transform: rotateZ(358deg);
    display: inline-block;
    margin-left: -17px;
}

/* t-racer specific */
.t-racers-style .st-lightbox__name {
    font-family: "marine_roundedup",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 26px !important;
    text-shadow: 2px 3px rgb(0 0 0 / 50%);
    -webkit-text-stroke: unset !important;
}



