.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
    flex-wrap: nowrap !important;
    touch-action: pan-y pinch-zoom;
}

/*.embla__slide:not(.col) {*/
/*    flex:0 0 auto;*/
/*    width:auto*/
/*}*/

.embla-button{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--bs-body-bg, #ffffff);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
    cursor: pointer;
    transition: all ease 0.3s;
}

.embla-button:hover{
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .1);
    background-color: var(--bs-secondary-bg, #cccccc);
}

.embla-button:active{
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .2);
}

.embla-button.embla-button-next{
    right: 5px;
}
.embla-button.embla-button-prev{
    left: 5px;
}

.el-slider-carousel-hoverable .embla-button{
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition-delay: .3s;
}

.el-slider-carousel-hoverable .embla-button-next{
    transform: translateX(100%);
}

.el-slider-carousel-hoverable:hover .embla-button{
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}


.embla-pagination-dot{
    border: 0;
    outline: none;
    background-color: var(--bs-secondary);
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin: 0 2px;
    padding: 0;
    transition: all ease 0.3s;
}

.embla-pagination-dot.embla-pagination-dot--selected{
    border-radius: var(--bs-border-radius);
    width: 25px;
}
