/* Product gallery carousel arrows - more visible */

/* Main image left/right arrows */
.swipers-couple-wrapper .swiper-control-top .swiper-custom-left,
.swipers-couple-wrapper .swiper-control-top .swiper-custom-right {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border: 1px solid #333 !important;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    opacity: 0.6 !important;
    visibility: visible !important;
    color: #333 !important;
    font-size: 20px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.swipers-couple-wrapper .swiper-control-top .swiper-custom-left {
    left: 12px !important;
}

.swipers-couple-wrapper .swiper-control-top .swiper-custom-right {
    right: 12px !important;
}

.swipers-couple-wrapper .swiper-control-top .swiper-custom-left:hover,
.swipers-couple-wrapper .swiper-control-top .swiper-custom-right:hover {
    opacity: 1 !important;
    background: #e5e5e5 !important;
    border-color: #000 !important;
}

.swipers-couple-wrapper .swiper-control-top .swiper-custom-left:before,
.swipers-couple-wrapper .swiper-control-top .swiper-custom-right:before {
    color: #333 !important;
}

/* Vertical thumbnail up/down arrows */
.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-left,
.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-right {
    width: 44px !important;
    height: 44px !important;
    left: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff !important;
    border: none !important;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    color: #333 !important;
    opacity: 0.8 !important;
    visibility: visible !important;
    font-size: 20px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-left {
    top: 0 !important;
}

.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-right {
    top: auto !important;
    bottom: 0 !important;
}

.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-left:hover,
.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-right:hover {
    opacity: 1 !important;
    background: #e5e5e5 !important;
}

.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-left:before,
.swipers-couple-wrapper .vertical-thumbnails-wrapper .swiper-custom-right:before {
    color: #333 !important;
}

/* Align vertical thumbnails with main image (equal height via JS) */
@media only screen and (min-width: 650px) {
    .swiper-vertical-images .vertical-thumbnails-wrapper {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: var(--rara-main-height) !important;
        overflow: hidden !important;
    }

    /* Stretch the thumbnail list to fill the JS-set wrapper height */
    .swiper-vertical-images .vertical-thumbnails-wrapper ul.vertical-thumbnails {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden;
    }

    .swiper-vertical-images .vertical-thumbnails-wrapper .slick-list {
        height: 100% !important;
        max-height: 100% !important;
        overflow: hidden;
    }

    .swiper-vertical-images .vertical-thumbnails-wrapper .slick-track {
        height: auto !important;
    }

    .swiper-vertical-images .vertical-thumbnails-wrapper .slick-slide {
        height: auto !important;
        margin-bottom: 10px !important;
    }

    .swiper-vertical-images .vertical-thumbnails-wrapper ul.vertical-thumbnails img {
        max-height: 100%;
        width: auto;
    }

    .swiper-vertical-images > .empty-space {
        display: none !important;
    }
}

