.priority-participation-block {
    background: #F5F5F5;

    display: flex;
    flex-direction: column;
    padding: 46px 70px 46px 35px;
}

.priority-participation-block .block-title {
    margin: 0px;
    margin-bottom: 30px;
}

/* Tabs structure wrapper*/
.tablist {
    display: flex;
    flex-direction: column;
    gap: 26px;

    width: 100%;
    height: fit-content;
}

/* Tabs buttons wrapper */
.tablist-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;

    background: #FFFFFF;
}

/* Tab */
.tablist-wrapper .tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: auto;
    height: 60px;

    border: 1px solid #E2E2E2;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
    margin: 0px -1px;

    background-image: none;
    transition: background-image 0.25s, background-color 0.25s;
}

.tablist-wrapper .tab .tab-label {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;

    color: #3C486B;
    transition: color 0.25s;
}

/* Tab active */
.tablist-wrapper .tab.active {
    background-color: #3C486B;
}

.tablist-wrapper .tab.active .tab-label {
    color: #FFFFFF;
}

/* Tab hover */
.tablist-wrapper .tab:hover {
    background-image: linear-gradient(90deg, #EBCC6D 0%, #B29746 100%);
}

/* Tab content */
.tablist-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 60px;

    width: 100%;
    height: fit-content;
}

.tab-page {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px;

    width: 100%;
    height: fit-content;
}

.tab-page.active {
    display: flex;
    align-items: stretch;
}

