:root {
    --cwFilterStatusExclusiveBg: rgba(251, 140, 0, 1);
    --cwFilterStatusNewBg: rgba(251, 140, 0, 1);
    --cwFilterStatusJackpotBg: rgba(162, 132, 242, 1);
    --cwFilterStatusSoonBg: rgba(0, 163, 134, 1);
    --cwFilterStatusTopBg: rgba(80,130,255,1);
    --cwFilterStatusHotBg: rgba(244,81,30,1);
    --cwFilterStatusPremiumBg: rgba(80,130,255,1);
    --cwLobbyFilterBorderRadius: 8px;
}

/*! nouislider - 14.6.2 - 9/16/2020 */
/* Functional styling;
    * These styles are required for noUiSlider to function.
    * You don't need to change these rules to apply your design.
    */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 18px;
    position: absolute;
    top: -4px;
    z-index: 1;
}
/* Wrapper for all connect elements.
    */
.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
}

.noUi-connect {
    height: 6px;
    width: 100%;
    top: 8px;
}

.noUi-origin {
    height: 10%;
    width: 10%;
}
/* Offset direction
    */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: auto;
    right: -9px;
}
/* Give origins 0 height/width so they don't interfere with clicking the
    * connect elements.
    */
.noUi-vertical .noUi-origin {
    width: 0;
}

.noUi-horizontal .noUi-origin {
    height: 0;
}

.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}
/* Slider size and handle placement;
    */
.noUi-horizontal {
    height: 6px;
}

.noUi-horizontal .noUi-handle {
    width: 21px;
    height: 21px;
    right: -9px;
    top: -4px;
}


.noUi-vertical {
    width: 18px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: 18px;
    right: auto;
}
/* Styling;
    * Giving the connect element a border radius causes issues with using transform: scale
    */
.noUi-target {
    border-radius: 4px;
}

.noUi-connects {
    border-radius: 3px;
}

/* Handles and cursors;
    */
.noUi-draggable {
    cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}

.noUi-handle {
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    cursor: default;
}

/* Disabled state;
    */
[disabled] .noUi-connect {
    background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
    cursor: not-allowed;
}
/* Base;
    *
    */
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: #999;
}
/* Values;
    *
    */
.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}
/* Markings;
    *
    */
.noUi-marker {
    position: absolute;
    background: #CCC;
}

.noUi-marker-sub {
    background: #AAA;
}

.noUi-marker-large {
    background: #AAA;
}
/* Horizontal layout;
    *
    */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}
/* Vertical layout;
    *
    */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}

.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.noUi-tooltip {
    display: block;
    position: absolute;
    color: #fff;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
}
/*End ! nouislider - 14.6.2 - 9/16/2020 */

.mainLobby_wrapper,
.lca-main-lobby-wrapper {
    background-color: var(--bg-level-1);
}

.flex_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lobbyFilter_wrapper {
    width: 100%;
    min-height: 168px;
}
    .lobbyFilter_wrapper.without_provider {
        min-height: 114px;
    }
.lobbyFilter_fixed .lobbyFilter_group_wrapper {
    position: fixed;
    top: var(--cwHeaderHeight);
    border-radius: 0;
    z-index: 91;
    left: 0;
    margin: 0;
    width: 100%;
}

.hide_header_navbar .lobbyFilter_fixed .lobbyFilter_group_wrapper {
    top: 0;
}

.lobbyFilter_fixed .notification_static_content ~ .mainLobby_wrapper .lobbyFilter_group_wrapper {
    top: calc(var(--cwHeaderHeight) + 50px);
}

.hide_header_navbar .lobbyFilter_fixed .notification_static_content ~ .mainLobby_wrapper .lobbyFilter_group_wrapper {
    top: 50px;
}

.lobbyFilter_wrapper button,
.lobbyFilter_popup button {
    outline: none;
    cursor: pointer;
}

.lobbyFilter_txt_size {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

/* Lobby Filter/ Game group */
.lobbyFilter_group_wrapper {
    background-color: var(--bg-level-2);
    border-radius: var(--cwLobbyFilterBorderRadius);
    margin: 0 16px;
    transition: top 0.35s ease;
}

.lobbyFilter_group_slider {
    width: 100%;
    z-index: 5;
    border-top-right-radius: var(--cwLobbyFilterBorderRadius);
    border-top-left-radius: var(--cwLobbyFilterBorderRadius);
}

.lobbyFilter_fixed .lobbyFilter_group_slider{
    border-radius: 0;
}

.lobbyFilter_group_slider:before,
.lobbyFilter_group_slider:after {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 12px;
    height: 70px;
}

.lobbyFilter_group_slider:before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-level-1) 0%, color-mix(in srgb, var(--bg-level-1) 0%, transparent) 100%);
}

.lobbyFilter_group_slider:after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-level-1) 0%, color-mix(in srgb, var(--bg-level-1) 0%, transparent) 100%);
}

.lobbyFilter_group_item {
    cursor: pointer;
    min-width: 64px;
    width: auto;
    height: 70px;
    flex-direction: column;
    gap: 4px;
}

.lobbyFilter_group_item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    -webkit-transition: background-color .34s ease-in;
    -o-transition: background-color .34s ease-in;
    transition: background-color .34s ease-in;
    background-color: var(--bg-level-1);
    z-index: 2;
}

.lobbyFilter_group_item.active:before {
    background-color: var(--cwPrimary);
    height: 2px;
}

.lobbyFilter_group_item_icon {
    width: 24px;
    height: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0.5;
}

.lobbyFilter_group_item_name {
    color: var(--text-level-medium);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.active > .lobbyFilter_group_item_name {
    color: var(--text-level-high);
}

.active > .lobbyFilter_group_item_icon {
    opacity: 1;
}

.lobbyFilter_group_item .lb_card_badge_wrapper {
    position: absolute;
    top: 6px;
    inset-inline-start: 50%;
}

.lobbyFilter_group_item.type_onlyicon .lb_card_badge_wrapper {
    top: 17px;
}

.lobbyFilter_group_item.type_onlytext {
    flex-direction: row;
}

.lobbyFilter_group_item.type_onlytext .lb_card_badge_wrapper{
    position: static;
}

/* Lobby Filter/ Search */
.lobbyFilter_search_wrapper {
    gap: 8px;
    padding: 8px;
}

.lobbyFilter_fixed .lobbyFilter_search_wrapper{
    padding: 8px 16px;
}

.lobbyFilter_filters_inner {
    gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: calc(100% - 50px);
}

.lobbyFilter_divider {
    width: 1px;
    background: var(--bg-level-1);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lobbyFilter_clear_main_btn,
.lobbyFilter_popup_btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 9px 16px;
    gap: 8px;
    width: 100%;
    border-radius: var(--cwLobbyFilterBorderRadius);
    border: none;
    background: var(--bg-level-3);
}

.lobbyFilter_popup_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lobbyFilter_clear_main_btn {
    display: none;
    padding: 8px 14px;
}

.lobbyFilter_popup_btn span {
    color: var(--text-level-high);
    -webkit-padding-end: 8px;
    padding-inline-end: 8px;
}

.filtered .lobbyFilter_clear_main_btn,
.view_clear_all .lobbyFilter_clear_main_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lobbyFilter_clear_main_btn .dynamic_icon,
.lobbyFilter_provider_btn .dynamic_icon,
.lobbyFilter_popup_btn .dynamic_icon {
    color: var(--icon-level-high);
    width: 18px;
    height: 18px;
    font-size: 38px;
    line-height: 18px;
    margin: 0!important;
}

.filtered .lobbyFilter_popup_btn .dynamic_icon:after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--cwPrimary);
    border-radius: 50%;
    position: absolute;
    top: -4px;
}

.lobbyFilter_clear_main_btn .dynamic_icon{
    line-height: 24px;
}

.filtered .lobbyFilter_popup_btn,
.view_clear_all .lobbyFilter_popup_btn {
    padding: 9px 15px;
}

.lobbyFilter_provider_btn .dynamic_icon,
.filtered .lobbyFilter_popup_btn span, 
.view_clear_all .lobbyFilter_popup_btn span{
    display: none;
}

@media only screen and (max-width:350px) {
    .lobbyFilter_provider_btn .dynamic_icon {
        display: inline-block;
        line-height: 18px;
        font-size: 42px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .lobbyFilter_provider_btn span,
    .lobbyFilter_popup_btn span {
        display: none;
    }
}

.lobbyFilter_search input::-webkit-input-placeholder {
    color: var(--text-level-medium);
}

.lobbyFilter_search input::-moz-placeholder {
    color: var(--text-level-medium);
}

.lobbyFilter_search input:-ms-input-placeholder {
    color: var(--text-level-medium);
}

.lobbyFilter_search input::-ms-input-placeholder {
    color: var(--text-level-medium);
}

.lobbyFilter_search input::placeholder {
    color: var(--text-level-medium);
}

.lobbyFilter_search_input:placeholder-shown ~ .lobbyFilter_search_clear {
    display: none;
}

.lobbyFilter_search_close {
    color: var(--text-level-high);
    padding: 0;
    max-width: 0;
    opacity: 0;
}

.collapsed .lobbyFilter_search_close {
    max-width: initial;
    white-space: nowrap;
    opacity: 1;
}

.lobbyFilter_search {
    padding: 0;
    background: var(--bg-level-3);
    border-radius: var(--cwLobbyFilterBorderRadius);
    border: 1px solid var(--bg-level-4);
    min-width: 36px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.lobbyFilter_search_cover {
    max-width: 36px;
    width: 100vw;
    overflow: hidden;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.lobbyFilter_search_wrapper.collapsed .lobbyFilter_search {
    padding: 7px 12px;
    overflow: visible;
}

.lobbyFilter_search_wrapper.collapsed .lobbyFilter_search_cover {
    max-width: calc(100% - 16px);
    inset-inline-end: 8px;
    position: absolute;
    gap: 12px;
    background: var(--bg-level-2);
    -webkit-transition: max-width .25s linear;
    -o-transition: max-width .25s linear;
    transition: max-width .25s linear;
    -webkit-animation: searchAnimaCollapsed .25s .25s forwards;
    animation: searchAnimaCollapsed .25s .25s forwards;
}

.lobbyFilter_fixed .lobbyFilter_search_wrapper.collapsed .lobbyFilter_search_cover{
    padding: 0 8px;
}

.lobbyFilter_search input {
    display: block;
    color: var(--text-level-high);
    font-size: 14px;
    line-height: 20px;
    background-color: transparent;
    outline: none;
    border: 0 !important;
    padding: 0 !important;
    max-width: 0;
    min-height: auto;
    height: auto;
}

.lobbyFilter_search_btn,
.lobbyFilter_search_clear {
    z-index: 1;
    width: 18px;
    height: 18px;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lobbyFilter_search_btn .dynamic_icon,
.lobbyFilter_search_clear .dynamic_icon{
    display: inline-block;
    color: var(--icon-level-high);
    margin: 0;
}

.lobbyFilter_search_btn .dynamic_icon{
    font-size: 38px;
    line-height: 18px;
}

.lobbyFilter_search_btn .dynamic_icon{
    margin: 0!important;
}

.lobbyFilter_search_clear .dynamic_icon{
    font-size: 34px;
    line-height: 22px;
}

.lobbyFilter_search_clear {
    max-width: 0;
    overflow: hidden;
    padding: 0;
}

.lobbyFilter_search_btn {
    padding: 8px;
    width: 100%;
    height: 100%;
}

.collapsed .lobbyFilter_search_btn,
.collapsed .lobbyFilter_search_clear {
    width: 20px;
    height: 20px;
    padding: 0;
}

.collapsed .lobbyFilter_search_btn .dynamic_icon,
.collapsed .lobbyFilter_search_clear .dynamic_icon {
    color: var(--icon-level-medium);
}

.lobbyFilter_search_wrapper.collapsed .lobbyFilter_search input {
    max-width: 100%;
    padding: 0 8px !important;
}


.collapsed .lobbyFilter_search_clear {
    max-width: 20px;
}

.lobbyFilter_search #js_filter_msg, .lobbyFilter_search #js_search_msg {
    width: 86vw;
    inset-inline-start: 0;
    z-index: 5;
}

/*Lobby Filter Provider Button*/
.lobbyFilter_provider_btn {
    padding: 8px 24px;
    border-radius: var(--cwLobbyFilterBorderRadius);
    border: none;
    background: var(--bg-level-4);
    color: var(--text-level-high);
    text-transform: capitalize;
    /*flex-grow: 1;*/
    width: calc(50% - 12px);
}

.without_provider .lobbyFilter_provider_btn {
    width: 100%;
}

.lobbyFilter_provider_btn span:nth-child(2) {
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/*Lobby Filter Provider Items*/
.lobbyFilter_provider {
    padding: 16px 16px 0;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
}

.lobbyFilter_provider_item {
    padding: 6px 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 48px;
    background-color: var(--bg-level-4, var(--cwButtonSecondaryBg));
    color: var(--text-level-high, var(--cwButtonSecondaryTxt));
    transition: all .3s;
    cursor: pointer;
    height: 32px;
    gap: 4px;
}

.lobbyFilter_provider_item span:not(.lobbyFilter_badge) {
    display: inline-block;
    direction: ltr;
}

.lobbyFilter_provider_name {
    text-transform: capitalize;
    white-space: nowrap;
}

.provider_type .lobbyFilter_provider_name {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 100%;
}

.provider_type img + .lobbyFilter_provider_name {
    max-width: calc(100% - 20px);
}

.lobbyFilter_provider_item.provider_type{
    max-width: 100%;
}

.provider_type .lobbyFilter_provider_name span:nth-child(1) {
    max-width: calc(100vw - 34px);
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.lobbyFilter_provider_item[data-themeId],
.lobbyFilter_provider_item[data-tournamentId],
.lobbyFilter_provider_item[data-tournamentId] .lobbyFilter_provider_name,
.lobbyFilter_provider_item[data-themeId] .lobbyFilter_provider_name {
    max-width: 100%;
}

.lobbyFilter_provider_item[data-tournamentId] .lobbyFilter_provider_name span,
.lobbyFilter_provider_item[data-themeId] .lobbyFilter_provider_name span{
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
}

.lobbyFilter_provider_img {
    width: 20px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.lobbyFilter_provider_img .dynamic_icon {
    width: 20px;
    font-size: 48px;
    line-height: 22px;
}

.lobbyFilter_provider_item.active {
    background: var(--btn-primary, var(--cwButtonBg));
    color: var(--btn-primary-text, var(--cwButtonTxt));
}

.lobbyFilter_provider_item .lb_card_badge_wrapper {
    position: relative;
    order: 3;
}

.lobbyFilter_provider_name_all {
    color: var(--text-level-high);
    white-space: nowrap;
    padding: 0;
    margin: 0 8px;
}

/* Lobby Filter Popup */
.lobbyFilter_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, .65); /*#111*/
    z-index: 10000;
}

.lobbyFilter_popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--bg-level-1);
    width: 100vw;
    height: 100vh;
    height: 100dvh;
}

.lobbyFilter_popup_header {
    padding: 22px 16px;
    background-color: var(--bg-level-2);
    gap: 8px;
}

.lobbyFilter_close_popup {
    width: 20px;
    height: 20px;
    color: var(--icon-level-high);
    cursor: pointer;
}

.lobbyFilter_close_popup .dynamic_icon {
    font-size: 32px;
    line-height: 19px;
}

.lobbyFilter_popup_header_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text-level-high);
    margin: 0;
}

.lobbyFilter_popup_title {
    color: var(--text-level-high);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    text-transform: capitalize;
}

/* Lobby Filter Popup Buttons */
.lobbyFilter_popup_footer {
    padding: 12px 16px;
    border-top: 1px solid var(--bg-level-1);
    background-color: var(--bg-level-2);
    margin-top: auto;
    gap: 8px;
}

.lobbyFilter_popup_footer button {
    border-radius: 12px;
    padding: 14px;
    display: inline-block;
    text-align: center;
    border: none;
    width: calc(50% - 4px);
}

@media only screen and (max-width: 340px){
    .lobbyFilter_popup_footer button {
        padding: 14px 10px;
        font-size: 12px;
    }
}

.lobbyFilter_clear_btn {
    color: var(--text-level-high);
    text-transform: capitalize;
    background-color: transparent;
    border: none;
    padding: 14px 24px;
    display: inline-block;
}

.lobbyFilter_clear_btn:disabled {
    color: var(--text-level-low);
    opacity: 1;
}

.lobbyFilter_popup_result_btn {
    background: var(--btn-primary, var(--cwButtonBg));
    color: var(--btn-primary-text, var(--cwButtonTxt));

}

/* Lobby Filter Popup Content */
.lobbyFilter_popup_inner_cont {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-height: calc(100% - 137px);
    overflow-y: auto;
    background-color: var(--bg-level-1);
}

.lobbyFilter_popup_inner {
    padding: 16px 16px 8px;
    /*max-width: 933px;*/
}

.lobbyFilter_popup_title_box {
    margin-bottom: 0;
    padding: 0;
}

.lobbyFilter_popup_title_box + *{
    padding-top: 12px;
}

.lobbyFilter_popup_view_btn {
    color: var(--text-level-high);
    text-transform: capitalize;
    position: relative;
    gap: 4px;
    padding: 12px 0;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.lobbyFilter_popup_view_btn::after {
    font-family: "iconsDinamicMenu";
    content: "\E099";
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 36px;
    text-align: center;
    line-height: 24px;
    vertical-align: middle;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.lobbyFilter_popup_mrg.open .lobbyFilter_popup_view_btn::after {
    /*content: "\E100";*/
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.lobbyFilter_popup_mrg.open .lobbyFilter_popup_provider {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
}
.lobbyFilter_popup_mrg .show_less_text,
.lobbyFilter_popup_mrg.open .show_all_text {
    display: none;
}
.lobbyProvider_selected_count {
    color: var(--text-level-high);
    width: 110px;
    height: 32px;
}

.lobbyProvider_selected_count span{
    direction: ltr;
}

.lobbyFilter_popup_mrg.open .show_less_text {
    display: inline-block;
}

.lobbyFilter_popup_provider {
    gap: 8px;
    max-height: 130px;
    overflow: hidden;
}

.lobbyFilter_popup_mrg {
    margin-bottom: 16px;
}

.lobbyFilter_popup .lobbyFilter_group_slider {
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
    -webkit-margin-end: -16px;
    margin-inline-end: -16px;
    -webkit-margin-start: -16px;
    margin-inline-start: -16px;
    width: auto;
}

/* Lobby Filter Stake Range Slider */

.lobbyFilter_range_wrapper {
    padding: 12px 0;
    gap: 8px;
}

.lobbyFilter_range_price {
    padding: 12px;
    border-radius: var(--cwLobbyFilterBorderRadius);
    border: 1px solid var(--bg-level-1);
    background: var(--bg-level-2);
    width: 50%;
}

.lobbyFilter_range_price > * {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-level-high);
}

.lobbyFilter_range_price_input {
    padding: 0 !important;
    -webkit-padding-end: 12px !important;
    padding-inline-end: 12px !important;
    background-color: transparent;
    border: 0 !important;
    min-width: 64px;
    min-height: auto;
    color: var(--text-level-high);
    line-height: 24px;
}

.lobbyFilter_range_price > span{
    line-height: 36px;
}

.lobbyFilter_range_slider {
    padding: 12px 16px;
}

.lobbyFilter_range_slider .noUi-base,
.lca-main-content .lobbyFilter_range_slider .noUi-base,
.lobbyFilter_range_slider .noUi-connects,
.lca-main-content .lobbyFilter_range_slider .noUi-connects {
    height: 24px;
    top: -4px;
}

.lobbyFilter_range_slider .noUi-target,
.lca-main-content .lobbyFilter_range_slider .noUi-target {
    background: var(--bg-level-2);
    border-radius: 6px;
    height: 8px;
}

.lobbyFilter_range_slider .noUi-handle,
.lca-main-content .lobbyFilter_range_slider .noUi-handle {
    border: 0;
    background: var(--bg-level-4);
    -webkit-filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.10)) drop-shadow(0px 0.5px 4px rgba(0, 0, 0, 0.10));
            filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.10)) drop-shadow(0px 0.5px 4px rgba(0, 0, 0, 0.10));
    width: 32px;
    height: 32px;
    right: -16px;
    top: -8px;
}

.lobbyFilter_range_slider .noUi-connect,
.lca-main-content .lobbyFilter_range_slider .noUi-connect {
    background: var(--cwPrimary);
    height: 8px;
}

/* Lobby Filter Result */
.lb_card_main .lobbyFilter_empty,
.lb_card_main .lobbyFilter_empty_title,
.lca-games-lobby .lobbyFilter_empty,
.lca-games-lobby .lobbyFilter_empty_title {
    grid-column: 1 / -1;
}

.lb_card_main .lobbyFilter_empty_title,
.lca-games-lobby .lobbyFilter_empty_title {
    margin: 12px 0;
    font-size: 16px;
    line-height: 20px;
}

.lb_card_main .lobbyFilter_empty,
.lca-games-grid .lobbyFilter_empty {
    background: transparent;
    padding: 12px 0;
    margin: 0;
}

.lobbyFilter_empty .dynamic_icon:before,
.lobbyFilter_empty .ic_search:before,
.lobbyFilter_empty .search__icon:after,
.lobbyFilter_empty .ic_no-game:after {
    font-size: 160px;
    line-height: 81px;
}

.lobbyFilter_empty .dynamic_icon,
.lobbyFilter_empty .ic_search,
.lobbyFilter_empty .search__icon,
.lobbyFilter_empty .ic_no-game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 84px;
    height: 84px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--icon-level-high);
}

.lobbyFilter_empty .last-played-icon {
    font-size: 84px;
    line-height: 84px;
    padding: 0;
}

.lobbyFilter_empty img {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
}

.lobbyFilter_empty p,
.lobbyFilter_empty span {
    text-align: center;
    font-weight: 500;
    margin: 4px auto 0;
    word-break: break-word;
}

.lobbyFilter_empty p {
    color: var(--text-level-high);
    font-size: 20px;
    line-height: 24px;
}

.lobbyFilter_empty span {
    display: block;
    color: var(--text-level-medium);
    font-size: 14px;
    line-height: 20px;
}

@-webkit-keyframes searchAnimaCollapsed {
    0% {
        overflow: hidden;
    }

    100% {
        overflow: visible;
    }
}

@keyframes searchAnimaCollapsed {
    0% {
        overflow: hidden;
    }

    100% {
        overflow: visible;
    }
}

/* Skeleton loading */
.skeleton-body {
    margin-bottom: 16px;
    padding: 0 16px;
}

.skeleton-heading {
    max-width: 30%;
    min-height: 20px;
    margin: 12px 0;
}

.skeleton-content {
    min-height: 38px;
    margin-top: 12px;
}

.skeleton-filter-group {
    min-height: 60px;
}

.skeleton-filter-range {
    min-height: 118px;
}

.skeleton-y-ofh {
    overflow-y: hidden
}

.skeleton-hide {
    visibility: hidden;
    opacity: 0;
}

.lobbyFilter_popup_category_fixed {
    position: fixed;
    top: 64px;
    z-index: 91;
    left: 0;
    width: 100%;
    background-color: var(--bg-level-1, var(--cwBodyBg));
    padding: 16px 16px 0px;
}

.first_lobby_filter_section{
    margin-top: 116px;
}