.swiper_button {
    display: none;
}
.swiper_main {
    max-width: 350px;
    width: 350px;
    overflow: hidden;
    position: relative;
}
.swiper_main:hover .swiper_button {
    display: block;
}
.swiper_thumb {
    width: 50px;
    height: 50%;
    overflow: hidden;
    margin-right: 0.5rem;
}
.swiper-slide-thumb-active {
    border: 1px solid $ELEMENT_ACTIVE_COLOR;
    border-radius: 10px;
}
.swiper_button button{
    width: 50px !important;
    height: 50px !important;
    background-color: white;
    border: 1px solid #8f949b;
}
.swiper_button button:hover{
    border: 1px solid #8f949b;
}
.swiper_button_prev {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 100;
}
.swiper_button_next {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 100;
}
.swiper_main:hover .swiper_button {
    opacity: 1;

}
.expSliderContainer {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 200;
    padding: 20px;
}
.expClose {
    right: 3.5rem;
    top: 2.5rem;
    width:  1.25rem;
    height:  1.25rem;
    position: absolute;
	z-index: 300;
}
.swiper_exp {
    width: unset;
    display: flex;
    flex-grow: 1;
    max-width: 90%;

}
.swiper_exp_thumb {
    height: 52px;
    width: calc(52px * 4);
    min-height: 52px;
    overflow: hidden;
    margin-right: 0.5rem;
}
.swiper__pagination{
    display: none;
    text-align: center;
}
@media (max-width: 767px) {
    .swiper_thumb {
        display: none;
    }
    .swiper_main {
        width: 100%;
        max-width: 100%;
    }
    .swiper__pagination{
        display: block;
        position: absolute;
        bottom: 0;
        left: 50% !important;
        transform: translateX(-50%) ;
        z-index: 20;
    }
    .swiper-pagination-bullet {
        background: white;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background: $ELEMENT_ACTIVE_COLOR;
    }
    .expandText {
        display: none;
    }
}

.hidden {
    display: none;
}
