
.nav-pills-custom .nav-link {
    color: #111;
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #fff;
    background: #e60000;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #e60000;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}
.nav .small{
  font-size: 16px;
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

