.tab {
    margin-bottom: 20px;
    z-index: 999;
}


.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px
}

.tab button {
    background-color: #646464;
    float: left;
    border: 1px solid #ccc;
    outline: none;
    cursor: pointer;
    padding: 14px 5px;
    transition: 0.3s;
    color: #fff;
    width: 100%;
    border-radius: 6px
}
.tab button h5 {
    font-size: 12px;
}
.tab button:hover {
    background-color: #ddd;
    color: #000;
    border-radius: 6px
}

.tab .active {
    background-color: #ffd965;
    color: #000;
    border-radius: 6px
}

.tab .owl-nav {
    display: flex;
    margin: 5px 0;
    flex-direction: row-reverse;
}
.tab .owl-nav button span.ti-angle-right {
    margin: 0 5px;
    float: inline-end;
}
.tab .owl-nav button span.ti-angle-left {
    margin: 0 5px;
    float: inline-start;
}
button.owl-prev .ti-angle-right, button.owl-next .ti-angle-left{
    background: #ccc;
    padding: 5px;
    border-radius: 6px
}