.container_header_root {
    padding: 0px 0px;
    text-align: left;
    position: relative;
}
.container_header_title_large {
    color: var(--main-text-color);
    font-size: 20px;
    font-weight: bold;
    /*margin-bottom: 15p    x;*/
    /*margin-left: 15px;*/
    line-height: 50px;
}

.container_header_title_large:last-child {
    margin-bottom: 10px;
}

.container_header_subtitle {
    color: var(--secondary-text-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    /*margin-left: 15px;*/
    line-height: 1.5;
}

.container_header_filter {
    position: absolute;
    top: 5px;
    line-height: 40px;
    color: #ccc;
    /*font-weight: bold;*/
    right: 20px;
    font-size: 14px;
}

.container_header_more {
    position: absolute !important;
    top: 3px;
    right: 10px;
    font-weight: bold;
    padding: 10px 25px;
    background: var(--tertiary-color);
    /*background: var(--primary-color);*/
    color: var(--main-button-text-color);
    font-size: 15px;
    border-radius: var(--border-radius-medium);
    transition: all .2s ease-in-out;
}

.container_header_more:hover {
    /*background: var(--primary-color);*/
    background: var(--main-button-bg-color);
}

/*@media only screen and (max-width: 992px) {*/
/*.container_header_more {*/
/*top: 5px;*/
/*right: 5px;*/
/*}*/

/*.container_header_filter {*/
/*top: 5px;*/
/*right: 5px;*/
/*}*/
/*}*/

.container_header_grid_column {
    position: absolute;
    font-weight: bold;
    color: var(--tertiary-color);
    top: 50%;
    transform: translateY(-50%) scale(1.1);
    right: 0;
    font-size: 14px;
    border-radius: var(--border-radius-small);
    transition: all .2s ease-in-out;
    transform-origin: right;
}

.container_header_grid_column > img {
    height: 17px;
    line-height: 1;
    vertical-align: middle;
    margin-left: 10px;
    transition: all .2s linear;
}

.container_header_grid_column > img:last-child {
    margin-right: 5px;
}

.container_header_grid_column_selected {
    opacity: 0.3;
}

@media only screen and (max-width: 1000px) {
    .container_header_more {
        font-size: 15px;
        padding: 13px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .container_header_root {
        padding: 0px 0px 10px;
        /*text-align: center;*/
    }

    .container_header_title_large {
        font-size: 20px;
        /*margin-left: 10px;*/
        margin-bottom: 0px;
        line-height: 40px;
    }

    .container_header_title_large:last-child {
        margin-bottom: 0px;
    }

    .container_header_subtitle {
        margin-left: 0px;
        margin-bottom: 5px;
        font-size: 17px;


    }

    .container_header_more {
        /*top: 0px;*/
        right: 5px;
        padding: 6px 15px;
        font-size: 12px;
        top: 50%;
        transform: translateY(-50%) scale(1.1);
        border-radius: var(--border-radius-small);
        /*background: var(--primary-color);*/
    }

    .container_header_more:hover {
        /*background: var(--tag-bg-color);*/
        /*background: var(--primary-color);*/
    }
}

@media only screen and (max-width: 400px) {
    .container_header_title_large {
        font-size: 17px;
        line-height: 30px;
    }
}

.genre_filter_root {
    /*margin-right: -10px;*/
    margin-bottom: 20px;
}

.genre_filter_item {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    background: var(--tertiary-color);
    border-radius: var(--border-radius-small);
    margin: 0 12px 10px 0;
    color: var(--main-button-text-color);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease-in;
}

.genre_filter_item > div {
    font-size: 18px;
    line-height: 40px;
}

.genre_filter_item:hover {
    background: var(--primary-color);
    color: var(--main-button-text-color);
    border: none;
}

.genre_filter_item:focus {
    border: none;
    background: var(--tertiary-color);
    color: var(--main-button-text-color);
}

.genre_filter_item:active {
    border: none;
    background: var(--tertiary-color);
    color: var(--main-button-text-color);
}

.genre_filter_item_selected {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    border-radius: var(--border-radius-small);
    background: var(--primary-color);
    margin: 0px 12px 10px 0;
    color: var(--main-button-text-color);
    cursor: pointer;
    transition: all 0.05s ease-in;
}

.genre_filter_show_more {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    border-radius: var(--border-radius-small);
    background: var(--tag-bg-color);
    margin: 0px 12px 10px 0;
    color: var(--main-button-text-color);
    cursor: pointer;
    transition: all 0.05s ease-in;
    font-weight: bold;
}

.genre_filter_show_more:hover {
    background: var(--tertiary-color);
    color: var(--tag-bg-color);
    border: none;
}

.genre_filter_show_more:focus {
    border: none;
    background: var(--tag-bg-color);
    color: var(--main-button-text-color);
}

.genre_filter_show_more:active {
    border: none;
    background: var(--tag-bg-color);
    color: var(--main-button-text-color);
}

@media only screen and (max-width: 2200px) {
    .genre_filter_item {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0 10px 10px 0;
    }

    .genre_filter_item > div {
        font-size: 15px;
    }


    .genre_filter_item_selected {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0px 10px 7px 0;
    }

    .genre_filter_show_more {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0 10px 7px 0;
    }
}

@media only screen and (max-width: 768px) {
    .genre_filter_root {
        margin-right: 0px;
        margin-bottom: 5px;
        margin-top: 5px;
        padding-bottom: 0px;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
    }

    .genre_filter_item {
        /*padding: 0px 15px;*/
        /*font-size: 12px;*/
        /*line-height: 30px;*/
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1;
        margin: 0px 10px 0px 0px;
        /*border: 1px solid #eee;*/
        /*background: #eee;*/
        /*color: var(--tag-bg-color);*/
        font-weight: bold;
    }

    .genre_filter_item > div {
        font-size: 14px;
    }


    .genre_filter_item:hover {
        background: var(--tertiary-color);
        color: var(--main-button-text-color);
        border: none;
    }

    .genre_filter_item:focus {
        background: var(--tertiary-color);
        color: var(--main-button-text-color);
        border: none;
    }

    .genre_filter_item:active {
        background: var(--tertiary-color);
        color: var(--main-button-text-color);
        border: none;
    }

    .genre_filter_item_selected {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        background: var(--primary-color);
        color: var(--main-button-text-color);
        /*border-color: #ff4887;*/
        margin: 0px 10px 0px 0px;
    }

    .genre_filter_show_more {
        /*font-size: 12px;*/
        /*line-height: 25px;*/
        /*margin: 0px 10px 0px 0px;*/
        /*border: 1px solid #eee;*/
        /*background: #eee;*/
        /*color: var(--tag-bg-color);*/
        /*font-weight: bold;*/
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1;
        margin: 0px 10px 0px 0px;
        /*border: 1px solid #eee;*/
        /*background: #eee;*/
        /*color: var(--tag-bg-color);*/
        font-weight: bold;
    }
}



.genre_filter_show_more:hover {
    background: var(--tertiary-color);
    color: var(--main-text-color);
    border: none;
}

.editor_choice_filter_root {
    /*margin-right: -10px;*/
    margin-bottom: 20px;
}

.editor_choice_filter_item {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    background: var(--tertiary-color);
    border-radius: var(--border-radius-medium);
    margin: 0 12px 10px 0;
    color: var(--main-text-color);
    cursor: pointer;
    transition: all 0.05s ease-in;
}

.editor_choice_filter_item:hover {
    background: var(--primary-color);
    color: var(--main-text-color);
    /*border: none;*/
}

.editor_choice_filter_item:focus {
    /*border: 1px solid #eee;*/
    background: var(--tertiary-color);
    color: var(--main-text-color);
}

.editor_choice_filter_item:active {
    /*border: 1px solid #eee;*/
    background: var(--tertiary-color);
    color: var(--main-text-color);
}

.editor_choice_filter_item_selected {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    margin: 0px 12px 10px 0;
    color: var(--main-text-color);
    cursor: pointer;
    transition: all 0.05s ease-in;
}

.editor_choice_filter_show_more {
    display: inline-block;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 40px;
    background: var(--tag-bg-color);
    margin: 0px 12px 10px 0;
    color: var(--main-text-color);
    cursor: pointer;
    transition: all 0.05s ease-in;
}

.editor_choice_filter_show_more:hover {
    background: #eee;
    color: var(--main-text-color);
    border: none;
}

.editor_choice_filter_show_more:focus {
    border: none;
    background: #ccc;
    color: #222;
}

.editor_choice_filter_show_more:active {
    border: none;
    background: #ccc;
    color: #222;
}

@media only screen and (max-width: 2200px) {
    .editor_choice_filter_item {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0 10px 10px 0;
    }

    .editor_choice_filter_item_selected {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0px 10px 7px 0;
    }

    .editor_choice_filter_show_more {
        font-size: 15px;
        padding: 0px 20px;
        line-height: 30px;
        margin: 0 10px 7px 0;
    }
}

@media only screen and (max-width: 768px) {
    .editor_choice_filter_root {
        margin-bottom: 0px;
        margin-top:10px;
    }

    .editor_choice_filter_root > div {
        margin-right: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
    }

    .editor_choice_filter_item {
        /*padding: 0px 15px;*/
        font-size: 12px;
        line-height: 30px;
        margin: 0px 10px 10px 0px;
        /*border: 1px solid #eee;*/
        /*background: #eee;*/
        /*color: var(--tag-bg-color);*/
        font-weight: bold;
    }

    .editor_choice_filter_item_selected {
        /*padding: 0px 15px;*/
        font-size: 12px;
        line-height: 30px;
        font-weight: bold;
        background: var(--primary-color);
        color: var(--main-text-color);
        /*border-color: #ff4887;*/
        margin: 0px 10px 0px 0px;
    }

    .editor_choice_filter_show_more {
        font-size: 12px;
        line-height: 25px;
        margin: 0px 10px 0px 0px;
        border: 1px solid #eee;
        background: #eee;
        color: var(--main-text-color);
        font-weight: bold;
    }
}

.ads_head_banner {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.ads_head_banner_container {
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.ads_head_banner_footer {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.ads_head_sample_test {
    background: #00000088;
    font-size: 25px;
    padding: 15px 0px;
    line-height: 1.5;
    width: 100%;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: pre;
    font-weight: bold;
    transform: translate3d(-50%, -50%, 0px);
}

.ads_head_banner_footer_a {
    display: inline-block;
}

.ads_head_banner_footer_a:first-child {
    display: inline-block;
}

.ads_head_banner_footer_a:nth-child(2) {
    display: none;
}

.ads_head_banner_header {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    margin: auto;
    display: block;
    border: 1px solid #000;
}

.ads_head_banner_header_a {
    display: inline-block;
}

.ads_head_banner_header_a:first-child {
    display: inline-block;
}

.ads_head_banner_header_a:nth-child(2) {
    display: none;
}

@media only screen and (max-width: 768px) {
    .ads_head_banner {
        max-width: 95%;
        max-height: none;
        margin-top: 0px;
    }

    .ads_head_banner_container {
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .ads_head_banner_header_a:first-child {
        display: none;
    }

    .ads_head_banner_footer_a:nth-child(2) {
        display: inline-block;
    }

    .ads_head_banner_footer {
        max-width: 100%;
        max-height: none;
        margin-top: 10px;
        padding: 0px 5px;
    }

    .ads_head_banner_header_a:first-child {
        display: none;
    }

    .ads_head_banner_header_a:nth-child(2) {
        display: inline-block;
    }

    .ads_head_banner_header {
        max-width: 100%;
        max-height: none;
        margin-top: 10px;
        padding: 0px 5px;
    }
}

.ads_video_footer {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/*.ads_video_footer:first-child {*/
/*    display: inline-block;*/
/*}*/

/*.ads_video_footer:nth-child(2) {*/
/*    display: none;*/
/*}*/

.ads_video_container {
    text-align: center;
    margin: auto;
    margin-top: 20px;
    max-width: 800px;
    width: 100%;
}

.ads_video_container > a:first-child {
    display: inline-block;
}

.ads_video_container > a:nth-child(2) {
    display: none;
}

.ads_video_overlay_iframe {
    /*display: none;*/
    position: absolute;
    /*left: 50%;*/
    /*top: 50%;*/
    /*transform:translate3d(-50%, -50%, 0);*/
    /*box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 5px 5px;*/
    /*border: 1px solid var(--tag-bg-color);*/
    background: #000000cc;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.ads_video_overlay_iframe > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.ads_video_overlay_iframe img {
    object-fit: contain;
    display: block;
    max-height: 400px;
    max-width: 600px;
}

.ads_video_overlay_iframe img:first-child {
    display: block;
}

.ads_video_overlay_iframe img:last-child {
    display: none;
}


.ads_video_overlay_iframe video {
    object-fit: contain;
    display: block;
    max-height: 400px;
    max-width: 600px;
}

.ads_video_close_button {
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 10px 15px;
    /*color: #fff;*/
    /*background: var(--tag-bg-color);*/
    color: #fff;
    background: #e50915;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px 5px 0px 0px;
}

.ads_video_close_button_old {
    position: absolute;
    right: 0px;
    top: 0px;
    /*background: #aaa;*/
    /*width: 50px;*/
    /*height: 50px;*/
    cursor: pointer;

    transform: translate3d(50%, 0, 0);
    width: auto;
    height: auto;
    padding: 7px 15px;
    color: #fff;
    background: #e50915;
    font-size: 15px;
    font-weight: bold;
}


.ads_head_sample_test {
    background: #00000088;
    font-size: 25px;
    padding: 15px 0px;
    line-height: 1.5;
    width: 100%;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: pre;
    font-weight: bold;
    transform: translate3d(-50%, -50%, 0px);
}

.ads_video_overlay_iframe_placeholder {
    position: absolute;
    z-index: 0;
    font-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-text-color);
}

@media only screen and (max-width: 1200px) {
    .ads_video_overlay_iframe img {
        max-height: 300px;
    }

    .ads_video_overlay_iframe video {
        max-height: 300px;
    }
}

@media only screen and (max-width: 900px) {
    .ads_video_overlay_iframe img {
        max-height: 250px;
    }

    .ads_video_overlay_iframe video {
        max-height: 250px;
    }
}

@media only screen and (max-width: 767px) {
    .ads_video_overlay_iframe {
        display: block;
    }

    .ads_video_overlay_iframe img {
        /*max-height: 160px;*/
        max-height: 220px;
        max-width: 270px;
    }

    .ads_video_overlay_iframe video {
        /*max-height: 160px;*/
        max-height: 220px;
        max-width: 270px;
    }

    .ads_video_close_button {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .ads_video_container {
        order: 3;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .ads_video_footer {
        max-width: 95%;
        max-height: none;
    }

    /*.ads_video_footer:first-child {*/
    /*    display: none;*/
    /*}*/
    /*.ads_video_footer:nth-child(2) {*/
    /*    display: inline-block;*/
    /*}*/
    .ads_video_container > a:first-child {
        display: none;
    }

    .ads_video_container > a:nth-child(2) {
        display: inline-block;
    }

    .ads_video_overlay_iframe img:first-child {
        display: none;
    }

    .ads_video_overlay_iframe img:last-child {
        display: block;
    }
}

@media only screen and (max-width: 400px) {
    .ads_video_overlay_iframe img {
        /*max-height: 150px;*/
    }
}

.clickadu_ads_grid {

}

.clickadu_ads_grid > div {
    width: 100%;
    display: inline-block;
    background: var(--ads-bg);
    padding: 1px 0;
    border-radius: var(--border-radius-mini);
}

.clickadu_ads_grid > div > div {
    display: block;
    margin: auto;
    position: relative;
}


/*.clickadu_ads_banner {*/
/*    text-align: center;*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr 1fr;*/
/*    grid-gap: 10px;*/
/*}*/

/*.clickadu_ads_banner > div {*/
/*    background: #ffffff11;*/
/*    padding: 1px 0;*/
/*    border-radius: var(--border-radius-mini);*/
/*}*/

.clickadu_ads_banner {
    text-align: center;
    /*border-radius: var(--border-radius-mini);*/
}

.clickadu_ads_banner > div {
    background: var(--ads-bg);
    display: inline-block;
    overflow: hidden;
}

.clickadu_ads_banner > div:first-child {
    border-radius: var(--border-radius-mini) 0 0 var(--border-radius-mini);
}

.clickadu_ads_banner > div:nth-child(2) {
    border-radius: 0 var(--border-radius-mini) var(--border-radius-mini) 0;
}

.clickadu_ads_banner > div > div {
    display: block;
    margin: auto;
    position: relative;
}


@media only screen and (max-width: 650px) {
    .clickadu_ads_banner > div:first-child {
        border-radius: var(--border-radius-mini);
    }

    .clickadu_ads_banner > div:last-child {
        display: none;
    }
}


.clickadu_ads_banner_narrow {
    text-align: center;
}

.clickadu_ads_banner_narrow > div {
    background: var(--ads-bg);
    display: inline-block;
    overflow: hidden;
}

.clickadu_ads_banner_narrow > div:first-child {
    border-radius: var(--border-radius-mini) 0 0 var(--border-radius-mini);
}

.clickadu_ads_banner_narrow > div:nth-child(2) {
    border-radius: 0 var(--border-radius-mini) var(--border-radius-mini) 0;
}

.clickadu_ads_banner_narrow > div > div {
    display: block;
    margin: auto;
    position: relative;
}

@media only screen and (max-width: 650px) {
    .clickadu_ads_banner_narrow > div:first-child {
        border-radius: var(--border-radius-mini);
    }

    .clickadu_ads_banner_narrow > div:nth-child(2) {
        display: none;
    }
}