/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 04:48:46 */
/* ================================================
   WPBakery Image Carousel - pluslekaren.sk
   ================================================ */

/* Main wrapper - position: relative for arrows */
.wpb_images_carousel .vc_images_carousel {
    width: 100% !important;
    position: relative !important;
}

/* Clip images - NOT on carousel (would cut arrows) */
.wpb_images_carousel .vc_carousel-inner,
.wpb_images_carousel .vc_item,
.wpb_images_carousel .vc_item .vc_inner {
    border-radius: 20px !important;
    overflow: hidden !important;
}

/* Slideline full height */
.wpb_images_carousel .vc_carousel-slideline,
.wpb_images_carousel .vc_carousel-slideline-inner {
    height: 100% !important;
}

/* Inner wrapper - 100% x 100% */
.wpb_images_carousel .vc_item .vc_inner {
    width: 100% !important;
    height: 100% !important;
}

/* Image - cover regardless of original dimensions */
.wpb_images_carousel .vc_item .vc_inner img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Arrows - inside carousel, centered */
.wpb_images_carousel .vc_carousel-control {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    background-color: rgba(0, 158, 223, 0.88) !important;
    border-radius: 50% !important;
    opacity: 0;
    z-index: 10 !important;
    transition: opacity 0.25s ease, background-color 0.25s ease !important;
    text-shadow: none !important;
    display: block !important;
}

.wpb_images_carousel:hover .vc_carousel-control {
    opacity: 1;
}

.wpb_images_carousel .vc_left.vc_carousel-control {
    left: 14px !important;
    right: auto !important;
}

.wpb_images_carousel .vc_right.vc_carousel-control {
    right: 14px !important;
    left: auto !important;
}

.wpb_images_carousel .vc_carousel-control:hover {
    background-color: #009edf !important;
    opacity: 1;
}

/* Arrow icons - centered in circle, font-size on :before */
.wpb_images_carousel .icon-prev,
.wpb_images_carousel .icon-next {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    color: #fff !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    font-size: 0 !important;
}

/* Next arrow */
.wpb_images_carousel .vc_carousel-control .icon-next:before {
    content: "\203a";
    position: relative;
    top: -4px;
    height: 40px;
    font-size: 50px;
    color: #fff;
    line-height: 1;
    display: block;
}

/* Prev arrow - mirror of icon-next */
.wpb_images_carousel .vc_carousel-control .icon-prev:before {
    content: "\2039";
    position: relative;
    top: -4px;
    height: 40px;
    font-size: 50px;
    color: #fff;
    line-height: 1;
    display: block;
}

/* Responsive - tablet */
@media only screen and (max-width: 1024px) {
    .wpb_images_carousel .vc_item {
        height: 360px !important;
    }
    .wpb_images_carousel .vc_carousel-control {
        opacity: 0.85;
    }
}

/* Responsive - mobile */
@media only screen and (max-width: 767px) {
    .wpb_images_carousel .vc_item {
        height: 240px !important;
    }
    .wpb_images_carousel .vc_carousel-control {
        opacity: 1;
        width: 36px !important;
        height: 36px !important;
    }
}

/* Responsive - small mobile */
@media only screen and (max-width: 480px) {
    .wpb_images_carousel .vc_item {
        height: 190px !important;
    }
}