.tariff-wrap .tariff-table{
    position: relative;
}
.tariff-wrap .tariff-table .owl-nav{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: calc(100% + 38px);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.tariff-wrap .tariff-table .owl-nav button{
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    background: #ffffff;
    outline: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border: 1px solid #F2F2F2;
    border-radius: 50%;

    transition: border-color .2s ease-out, opacity .2s ease-out;
}
.tariff-wrap .tariff-table .owl-nav button:not(.disabled):hover{
    border-color: #11436b;
}
.tariff-wrap .tariff-table .owl-nav button.disabled{
    cursor: default;
    opacity: .6;
}
.tariff-wrap .tariff-table .owl-nav button span{
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
