:root {
    --white: white;
    --pink: #ffa5f3;
    --blue-300: #0075ff;
    --hyg-black: #242424;
    --transparent: transparent;
    --hover-color: var(--blue-300);
}

/********************* HEADER *********************/
.header {
    background-color: #FFFFFFB2;
    border-color: var(--transparent);
}

.header-link {
    color: var(--hyg-black);
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}
.header-link:hover {
	text-decoration-color: var(--hyg-black);
}
.header-link.w--current {
    color: var(--hyg-black);
	text-decoration-color: var(--hyg-black);
}

.header-brand {
    color: var(--hyg-black);
}

/********************* CASE FILTER RADIO *********************/
.case-filter-radio .text-task-caption-bold {
    transition: all 0.3s ease;
}
.case-filter-radio:hover .text-task-caption-bold {
    text-decoration-color: var(--hover-color);
}

.text-link-task-current {
    transition: all 0.3s ease;
}
.text-link-task-current:hover {
    text-decoration-color: var(--hover-color);
}

/********************* DESKTOP MENU *********************/
.desktop-menu {
    border-color: var(--hyg-black) !important;
}
.desktop-menu_link {
    color: var(--hyg-black) !important;
    transition: all 0.3s ease;
}
@media (min-width: 1024px) {
    .desktop-menu_link:hover .desktop-menu-text{
        text-decoration-color: var(--blue-300) !important;
    }
}
.desktop-menu_diviner {
    background-color: var(--hyg-black) !important;
}

/* VIDEO PLAYER */
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/*** MOBILE MENU TASKMASTER ***/
.menu-player {
    background-color: #FFFFFF80 !important;
    border-color: var(--hyg-black) !important;
}
.menu-diviner {
    background-color: var(--hyg-black) !important;
}
.menu-diviner-2 {
    background-color: var(--hyg-black) !important;
}
.menu-link {
    color: var(--hyg-black) !important;
}
.menu-burger {
    background-color: var(--hyg-black) !important;
}
.burger-line {
    background-color: var(--white) !important;
}
/*** active state ***/
.menu-player.is-active {
    border-color: var(--pink) !important;
}
.menu-diviner.is-active {
    background-color: var(--white) !important;
}
.menu-diviner-2.is-active {
    background-color: var(--white) !important;
}
.menu-link.is-active {
    color: var(--white) !important;
}
.menu-burger.is-active {
    background-color: var(--pink) !important;
}