.ui-tabs {
    width: 100%;
    font-family: inherit;
}

.ui-tabs-header {
    display: flex;
    background-image: url("/static/img/noise.png"),
        linear-gradient(0deg, #5e0f1b 0%, #420912 100%);
    padding: 0;
    position: relative;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    height: 80px;
}

.ui-tab {
    flex: 1;
    padding: 14px 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    position: relative;
}

.ui-tab:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.05);
}

.ui-tab.is-active {
    font-weight: 700;
    color: #fff;
}

.ui-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background-color: #fff;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.ui-tabs-body {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.ui-panel {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.35s ease;
    padding: 20px 0;

    pointer-events: none;
    visibility: hidden;
    z-index: 0;
}

.ui-panel.is-active {
    opacity: 1;
    position: relative;

    pointer-events: auto;
    visibility: visible;
    z-index: 1;
}

.ui-panel>.column-group.flipable.media-text-group {
    margin-bottom: 3%;
}

.cta-column-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.cta-column {
    text-align: center;
}

.cta-column .btn {
    margin-top: 6px;
}

.module-group .column-secondary {
    padding-left: 0 !important;
}

/* Eat Cards */

.cm-three {
    display: flex;
    /* gap: 20px; */
    justify-content: space-between;
}

.card-item {
    width: 33.3%;
}

.wysiwyg-module {
    width: 100%;
}

.card-item {
    text-align: center;
    padding: 0 20px;
}

.card-item h3 {
    color: #333;
}

table tbody tr:nth-of-type(odd) {
    background-color: #c4c1a3;
}

@media only screen and (max-width: 900px) {
    .cm-three {
        flex-direction: column;
    }

    .cm-three div {
        width: auto;
    }
}

/* End of Eat Cards */

@media only screen and (max-width: 900px) {
    .tab-header {
        font-size: 15px;
    }
}