.page_root {
    min-height: 100vh;
    width: 100%;
    margin: 0px;
    padding: 0px;
    padding-top: 130px;
}

.page_root_2 {
    min-height: 100vh;
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-top: 100px;
}

.filter_block {
    position: absolute !important;
    top: 8px;
    color: #888;
    font-weight: bold;
    right: 10px;
    padding: 7px 15px;
    font-size: 15px !important;
    border-radius: 3px;
}

.block_container {
    position: relative;
    width: 90%;
    padding: 10px 20px 10px;
    margin: 30px auto 20px;
    min-height: 50px;
    max-width: var(--block-max-width);
}

.block_container_with_max_width {
    position: relative;
    width: 80%;
    padding: 5px 20px 10px;
    margin: auto auto 20px;
}

@media only screen and (max-width: 2200px) {
    .page_root {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1800px) {
    .block_container_with_max_width {
        width: 95%;
        max-width: 1200px;
    }
}

@media only screen and (max-width: 992px) {
    .block_container {
        width: 100%;
        padding: 5px 15px 15px;
    }

    .block_container_with_max_width {
        width: 100%;
        padding: 5px 15px 15px;
    }
}

@media only screen and (max-width: 900px) {
    .page_root {
        min-height: 90vh;
        padding-top: 0px;
    }

    .page_root_2 {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .block_container {
        padding: 5px 5px 10px;
        margin-bottom: 0px;
        margin-top: 10px;
        min-height: 60px;
    }

    .block_container:first-child {
        margin-top: 10px;
    }

    .block_container_with_max_width {
        padding: 5px 10px 10px;
        margin-bottom: 0px;
        margin-top: 10px;
    }
}

.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;
    }
}