.star-tabs__row {
    display: grid;
    grid-column-gap: 30px;
    grid-template-columns: 3fr 9fr;
    align-items: flex-start;
}

.star-tabs__tabs {
    display: flex;
    gap: 14px;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.star-tabs__tabs .star-tabs__tab {
    grid-row: span 1;
    min-height: 77px;
    padding: 24px 10px;
    color: #fff;
    position: relative;
}

.star-tabs__tab:after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 15px;
    height: 30px;
    transform: translateY(-50%);
    background-color: inherit;
    clip-path: polygon(0 100%, 0 0%, 100% 50%);
    opacity: 0;
}

.star-tabs__tab.active:after {
    opacity: 1;
}

.star-tabs__content {
    position: relative;
    height: 100%;
}

.star-tabs__item {
    background-color: #fff;
    padding: 32px;
    /*opacity: 0;*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    min-height: 520px;
    display: none;
}

.star-tabs__item.active {
    display: block;
}

.star-tabs__content h4 {
    margin-top: 30px;
}

.star-tabs__content a {
    display: block;
    margin-top: 16px;
    color: #5CB8B2;
    font-weight: 700;
    text-decoration: underline;
}

.star-tabs__dropdown,
.customSelect {
    display: none;
}

.star-slider__wrap ol,
.star-slider__wrap ul {
    list-style-position: inside;
}

@media (max-width: 767px) {
    .star-tabs__tabs {
        display: none;
    }

    .star-tabs__dropdown,
    .customSelect {
        display: block;
        border-color: #fff;
        background-color: #fff;
        padding: 12px 16px;
    }

    .star-tabs__row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-row-gap: 32px;
    }
}
