.collections-slideshow,
.video-slideshow {
    max-width: none;
    margin: 0;
    width: 100%;
    height: 100%;
}

.collection-slide {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: #111;
}

.collection-slide-images-img,
.video-slide-images-img {
    height: 80vh;
    width: 80vh;
    border-radius: 50vh;
}

.collection-slide-images {
    align-items: center;
    background: none;
}


.collection-title {
    font-size: 75px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #fff;
    width: 100%;
    line-height: 1;
    position: relative;
    z-index: 3;
}

.arrows {
    margin-right: 30px;
}

.arrows img {
    cursor: pointer;
    width: 50px;
    height: 50px;
    margin: 5px;
}

.vertical-lines-wrapper {
    grid-column: 1/-1;
    grid-row: 1/-1;
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    margin: 0;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
    z-index: 1;
}

.vertical-lines {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.vertical-effect {
    position: relative;
    width: 25%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(119, 119, 119, .2);
}

.vertical-effect-2 {
    position: relative;
    width: 25%;
    width: 100%;
    height: 100%;
    height: 25%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(119, 119, 119, .2);
}

.collection-slide-images-imgcontainer {
    cursor: pointer;
}

















@media only screen and (max-width: 768px) {

    .collection-slide-images-img,
    .video-slide-images-img {
        height: 80vw;
        width: 80vw;
    }

    .collection-slide {

        grid-template-rows: repeat(10, 10%);
    }

    .arrows {
        grid-column: 1;
        grid-row: -3;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .collection-title {
        font-size: 35px;
        grid-column: 1;
        grid-row: 2;
        margin-top: 40px;
    }
}


.loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}