/*.swiper-button-disabled{*/
/*    opacity: 0;*/
/*    height: 0;*/
/*    overflow: hidden;*/
/*}*/

.swiper-button-pagination_general{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 12px;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}
.swiper-button-pagination_general::after{
    display: none;
}

.swiper-button-pagination_general:first-child{
    margin-right: 24px;
    transform: rotate(180deg);
}

.swiper-button-pagination_general svg{
    stroke: var(--dark-blue-color);
    transition: stroke 0.5s ease-in-out;
}

.swiper-button-pagination_general:not(.swiper-button-disabled):hover svg{
    stroke: var(--orange-color);
}

.swiper-button-pagination_general.swiper-button-disabled{
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.swiper-pagination--general{
    position: relative;
    bottom: unset !important;
    margin-top: 34px;
    text-align: center;
}
.swiper-pagination--general .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    margin: 0 9px !important;
    background: #ECECEC;
    opacity: 1;
}
.swiper-pagination--general .swiper-pagination-bullet-active{
    background: #009FC2 !important;
}
@media screen and (max-width:576px) {
    .swiper-pagination--general .swiper-pagination-bullet{
        margin: 0 5px !important;
    }
}