.cw3-tabbed-callouts-navigation {
    position: relative;
    z-index: 1;
}

.cw3-tabbed-callouts-navigation .items {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: stretch;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
}

.cw3-tabbed-callouts-navigation .items > li {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    border-bottom: 4px solid #dae1e8;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cw3-tabbed-callouts-navigation .items > li.active,
.cw3-tabbed-callouts-navigation .items > li:hover {
    border-bottom-color: #fdc743;
    background-color:rgba(253, 199, 67, 0.1);
}

.cw3-tabbed-callouts-navigation .items .icon-wrapper {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.cw3-tabbed-callouts-navigation .items .icon-wrapper .icon {
    display: flex;
    width: 100%;
    max-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color:#fdc743;
}

.cw3-tabbed-callouts-navigation .items .icon-wrapper svg {
    display: block;
}

.cw3-tabbed-callouts-navigation .items .label {
    display: flex;
    flex: 1;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .cw3-tabbed-callouts-navigation:after {
        content: '';
        display: block;
        position: absolute;
        z-index: 10;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        pointer-events: none;
    }

    .cw3-tabbed-callouts-navigation .items {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .cw3-tabbed-callouts-navigation .items::-webkit-scrollbar {
        display: none;
    }
}