/* Minimal styles for the Y25 Glide carousel */
.y25-carousel {
    width: 100%;
    overflow: hidden;
}

.y25-carousel .glide__slides {
    list-style: none;
    margin: 0;
    padding: 0;
}

.y25-carousel .glide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.y25-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.y25-carousel .glide__arrows {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 12px;
}

.y25-carousel.frontend-carousel .glide {
    position: relative;
}
.y25-carousel-slide {
    width: 100%;
}
.y25-carousel.frontend-carousel .glide img{
    height: 250px;
    object-fit: cover;
    object-position: center;
}
.y25-carousel.frontend-carousel .glide__arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.y25-carousel.frontend-carousel .glide__arrow {
      position: absolute;
    pointer-events: auto;
    border: none;
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 20px;
}

.y25-carousel.frontend-carousel .glide__arrow:focus {
    outline: 2px solid #fff;
}

.y25-carousel.frontend-carousel .glide__arrow--left {
    left: 15px;
}

.y25-carousel.frontend-carousel .glide__arrow--right {
    right: 15px;
}
/** admin styles **/
.block-editor-block-list__block .y25-carousel-block .y25-carousel-thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 15px;
}
.block-editor-block-list__block .y25-carousel-block .y25-carousel-thumbs  .y25-carousel-thumb {
    width: 100%;
    height: 100%;
}
.block-editor-block-list__block .y25-carousel-block .y25-carousel-actions {
    margin-top: 20px;
}