.custom-nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.custom-nav-btn{
    position: relative;
    overflow: hidden;
    display: block;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #fed700;
    border-radius: 5px;
}
.custom-nav-btn.owl-prev:after,
.custom-nav-btn.owl-next:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.custom-nav-btn.owl-prev:after{
    background: url("../images/chevron-left.svg") no-repeat center, #fed700;
    right: 2px;
}
.custom-nav-btn.owl-next:after{
    background: url("../images/chevron-right.svg") no-repeat center, #fed700;
    left: 2px;
}

.custom-dots{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.custom-dots .owl-dot{
    position: relative;
    width: 100%;
    min-width: 52px;
    height: 52px;
    background: #000;
    border-radius: 5px;
    counter-increment: day;
    transition: 0s;
}
.custom-dots .owl-dot:before{
    content: counter(day);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    text-transform: none;
    color: rgba(255,255,255,0.3);
    transition: 0.3s;
}
.custom-dots .owl-dot.active{
    background: #fff;
    transition: 0.3s;
}
.custom-dots .owl-dot.active:before{
    color: #000;
}
.custom-dots-default{
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-dots-default .owl-dot{
    width: 16px;
    height: 16px;
    background: var(--gray, #f3f3f3);
    border-radius: 2px;
}
.custom-dots-default .owl-dot.active{
    background: var(--yellow,#fed700);
}
@media (max-width: 991px) {
    .custom-nav,
    .custom-dots{
        gap: 10px;
    }
    .custom-dots .owl-dot:before{
        font-size: 18px;
    }
}
@media (max-width: 767px) {

    .custom-dots .owl-dot{
        min-width: unset;
    }
}
@media (max-width: 575px) {
    .custom-nav-btn{
        width: 42px;
        height: 42px;
    }
    .custom-dots .owl-dot{
        height: 42px;
    }
    .custom-dots-default{
        gap: 8px;
    }
    .custom-dots-default .owl-dot{
        width: 12px;
        height: 12px;
    }
}