/* Gallery Info List Slider Styles */
.gallery-info-list-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #F8F8F8;
    padding: 10px;
    border-radius: 15px;
}

.gallery-info-list-slider .slider {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

/* .gallery-info-list-slider .slider .glide__slides {
    display: flex;
    gap: 10px;
} */


.gallery-info-list-slider .slider .slider-item {
    display: flex;
    gap: 5px;
    flex-direction: row;
    width: 100%;
}

.gallery-info-list-slider .slider .slider-item img {
    width: calc(50% - 2.5px);
    height: auto;
    border-radius: 10px;
}

/* arrows */

.gallery-info-list-slider .slider .glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.gallery-info-list-slider .slider button.glide__arrow {
    color: #1f2e4d;
    border: none;
    padding: 10px;
    cursor: pointer;
    background-color: transparent;
}

.gallery-info-list-slider .slider .glide__arrow:hover {
    background-color: transparent;
}

.gallery-info-list-slider .slider .glide__arrow--left {
    margin-left: 10px;
}

.gallery-info-list-slider .slider .glide__arrow--right {
    margin-right: 10px;
}

.gallery-info-list-slider .slider .glide__arrow i{
    font-size: 1.5rem;
}


/* bullets */

.gallery-info-list-slider .slider .glide__bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.gallery-info-list-slider .slider button.glide__bullet {
    width: 10px;
    height: 10px;
    background-color: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    border: 1px solid #ddd;
}

.gallery-info-list-slider .slider button.glide__bullet.glide__bullet--active{
    background-color: #1f2e4d;
border: 1px solid #1f2e4d;
}

.gallery-info-list-slider .info-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E9E9E9;
    border-radius: 5px;
    padding: 15px 20px;
}

.gallery-info-list-slider .info-area .info-items {
    display: flex;
    flex-direction: column;
}

.gallery-info-list-slider .info-area .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.gallery-info-list-slider .info-area .info-item:last-child {
    border-bottom: none;
}



.gallery-info-list-slider .info-area .info-item .text {
    font-size: 16px;
    color: #1F2E4C;
    font-family: 'EuropaRegular', sans-serif;
}

.gallery-info-list-slider .info-area .info-item i {
    font-size: 16px;
    color: #1F2E4C;
}

.gallery-info-list-slider .info-area .info-button .button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #1F2E4C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 26px;
    font-family: 'EuropaBold', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
}

