/* STYLES FOR DEFAULT UI-COMPONENTS */

.bs_information {
    width: 100%;
    text-align: initial !important;
}

@font-face {
    font-family: 'Oswald';
    src: url('../prospectpage/fonts/Oswald-ExtraLight.eot');
    src: url('../prospectpage/fonts/Oswald-ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../prospectpage/fonts/Oswald-ExtraLight.woff2') format('woff2'),
    url('../prospectpage/fonts/Oswald-ExtraLight.woff') format('woff'),
    url('../prospectpage/fonts/Oswald-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* VARS */

:root {
    --brand1: #0B71F0;
    --brand1-dark: #0852AD;

    --brand2: #590FB8;
    --brand2-dark: #410B85;

    --accent: #FF02CC;
    --accent-dark: #B80293;

    --background1: #EBECFD;
    --background2: #F8F8FE;

    --highlight1: #FAFF04;
    --highlight2: #5BFFFB;

    --dark-text: #2F2F32;
    --dark: #2F2F32;
    --white: #FFFFFF;
    --black: #000000;

    --system-green: #2AAD64;
    --system-red: #E10303;
    --system-black: #2F2F32;
    --system-disabled: rgba(0, 0, 0, 0.15);
}


/* DEFAULT CONTAINER */
.bs-container {
    max-width: 1110px;
    min-width: 240px;
    margin: auto;
}

/* Inherit section values */
.bs-section {

}

.bs-section.upper {
    padding: 0 0 40px 0;
}

.bs-title h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    margin: 20px 0;
    font-style: normal;
    color: var(--brand1);
}

/* HEADING */
.bs-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    color: var(--brand1);
}

.bs-heading_centered {
    flex-direction: column;
    justify-content: center;
}

.bs-heading .bs-title {
    margin: 0;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
}

.bs-heading .bs-subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
}

.bs-heading .bs-title_black,
.bs-heading .bs-subtitle_black {
    color: var(--black);
}

.bs-heading__additional {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-align: right;
    color: #0B71F0;
}

.bs-heading__additional:hover {
    color: #0852AD;
    text-decoration-line: underline;
}

/* BUTTONS */
.bs-btn {
    display: inline-block;
    background-color: transparent;
    border-radius: 4px;
    border: none;
    white-space: nowrap;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;

    /* default values for button size */
    padding: 6px 20px;
    font-size: 14px;
    line-height: 19px;
}

.bs-btn:disabled,
.bs-btn[disabled],
.bs-btn.disabled {
    pointer-events: none;
    opacity: 0.15;
    filter: grayscale(100%);
}

.bs-btn-primary {
    color: var(--white);
    background: var(--accent);
}

.bs-btn-primary:hover {
    background: var(--accent-dark);
}

.bs-btn-secondary {
    color: var(--white);
    background: var(--brand1);
}

.bs-btn-secondary:hover {
    background: var(--brand1-dark);
}

.bs-btn-outline-primary {
    color: var(--accent);
    background: transparent;
    border: 1px var(--accent) solid;
}

.bs-btn-outline-primary:hover {
    color: var(--accent-dark);
    border: 1px var(--accent-dark) solid;
}

.bs-btn-outline-secondary {
    color: var(--brand1);
    background: transparent;
    border: 1px var(--brand1) solid;
}

.bs-btn-outline-secondary:hover {
    color: var(--brand1-dark);
    border: 1px var(--brand1-dark) solid;
}

.bs-btn-sm {
    padding: 4px 12px;
    font-size: 13px;
    line-height: 17px;
}

.bs-btn-md {
    padding: 6px 20px;
    font-size: 13px;
    line-height: 17px;
}

.bs-btn-lg {
    padding: 10px 24px;
    font-size: 15px;
    line-height: 20px;
}

.bs-btn-stretched {
    width: 100%;
    text-align: center;
}

.bs-btn-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 8px;
}
.bs-btn-loader div {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.bs-btn-loader div:nth-child(1) {
    left: 8px;
    animation: bs-btn-loader1 0.6s infinite;
}
.bs-btn-loader div:nth-child(2) {
    left: 8px;
    animation: bs-btn-loader2 0.6s infinite;
}
.bs-btn-loader div:nth-child(3) {
    left: 32px;
    animation: bs-btn-loader2 0.6s infinite;
}
.bs-btn-loader div:nth-child(4) {
    left: 56px;
    animation: bs-btn-loader3 0.6s infinite;
}
@keyframes bs-btn-loader1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes bs-btn-loader3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes bs-btn-loader2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


/*  INPUT AND SELECT  */
.form-floating {
    position: relative;
    width: 100%;
}

.form-floating label {
    color: #76737D;
    opacity: 0;
    position: absolute;
    top: 4px;
    left: 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    transition: opacity 0.2s ease;
}

.form-control_message {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.2px;
    margin-top: 4px;
    transition: font-weight 0.2s ease;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    border: 1px var(--dark) solid;
    background-color: var(--white);
    padding: 14px 12px 11px 12px;

    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;

    color: var(--black);
    outline: none;

    transition: padding 0.1s ease;
}

.form-floating .form-control:focus,
.form-floating .form-control:not(:placeholder-shown) {
    padding: 20px 12px 5px 12px;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown)~label {
    opacity: 1;
}

.form-floating .form-control.no-label {
    padding: 12px;
}

.form-floating .form-control.has-prefix {
    padding-left: 30px;
}

.form-control:hover,
.form-control:active {
    border: 1px var(--brand1) solid;
}

.form-control:active:focus {
    border: 1px var(--brand1-dark) solid;
}

.form-control.form-control_error,
.form-control.form-control_error:active,
.form-control.form-control_error:active:focus {
    border: 1px #F44336 solid;
}

.form-control.form-control_valid,
.form-control.form-control_valid:active,
.form-control.form-control_valid:active:focus {
    border: 1px #15B859 solid;
}

.form-control.form-control_error ~ span {
    color: #F44336;
}

.form-control.form-control_valid~span {
    color: #15B859;
}

.form-control::placeholder {
    color: var(--dark);
    opacity: 0.6;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.form-control:hover::placeholder {
    color: var(--brand1);
}

.form-control.form-control_error:hover::placeholder,
.form-control.form-control_valid:hover::placeholder {
    color: var(--dark);
}

.form-control:disabled,
.form-control.disabled,
.form-control[disabled] {
    background-color: #F0F0F1;
    border: 1px #F0F0F1 solid;
    pointer-events: none;
}

.form-control:disabled::placeholder,
.form-control.disabled::placeholder,
.form-control[disabled]::placeholder {
    color: #B4B1B6;
}

.form-floating select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.select::after {
    content: "";
    background: url('../Images/icons/icon-select-arrow.svg') no-repeat right #fff;
    -webkit-appearance: none;
    font-size: 12px;
    top: 16px;
    right: 12px;
    position: absolute;
    width: 16px;
    height: 16px;
}

/*  TOP BAR  */
.top-bar {
    padding: 20px 0 1px 0;
    width: 100%;
}

.top-bar .container {
    max-width: 1142px;
    padding: 0 16px;
}

.top-bar .bs-title {
    max-width: 1142px;
}


/*  BREADCRUMBS  */
.breadcrumbs {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0 0 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(47, 47, 50, 0.1);
}

.breadcrumbs .home {
    width: 22px;
    height: 22px;
    background-image: url('../Images/icons/icon-home.svg');
}

.breadcrumbs .link {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 46px;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-text);
}

.breadcrumbs .link:after {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    right: -34px;
    background-image: url('../Images/icons/chevron-right.svg');
}

.breadcrumbs .link:last-child {
    pointer-events: none;
    opacity: 0.6;
    margin-right: 0;
}

.breadcrumbs .link:last-child:after {
    display: none;
}

.breadcrumbs .link a {
    color: var(--brand1);
}

.breadcrumbs .link:last-child a {
    color: #2F2F32;
}

.breadcrumbs .link a:hover {
    color: var(--brand1);
    text-decoration: underline;
}

/* BS-ACCORDION */
.bs-accordion {
    max-width: 1110px;
    margin: auto;
}

.bs-accordion__title {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #2F2F32;
}

.bs-accordion-item {
    padding: 24px;
    background-color: var(--white);
    margin-bottom: 8px;
}

.bs-accordion-item__opened .bs-accordion-item__description {
    display: block;
}

.bs-accordion-item__opened .bs-accordion-item__description .bold{
    font-weight: 900;
    margin: 8px 0;
}

.bs-accordion-item:last-child {
    margin-bottom: 0;
}

.bs-accordion-item__head {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.bs-accordion-item__title {
    width: calc(100% - 32px);
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: var(--dark-text);
}

.bs-accordion-item__description {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    font-family: 'Poppins', 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--dark-text);
}

.bs-accordion-item__description p {
    margin: 16px 0 0 0;
}

.bs-accordion-item__icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.bs-accordion-item__icon--plus {
    background-image: url("../Images/icons/icon-accordian-plus.svg");
}

.bs-accordion-item__icon--minus {
    background-image: url("../Images/icons/icon-accordian-minus.svg");
}

/*  CARD  */
.bs-card {
    display: block;
    flex-shrink: 0;
    max-width: 255px;
    height: 242px;
    background: var(--white);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
}

.bs-card:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
}

.bs-card__content {
    padding: 8px;
    /*height: 90px;*/ 
    overflow: hidden;
}

.bs-card_extended,
.bs-card_extended .bs-card__content {
    height: auto;
}

.bs-card__image {
    width: 100%;
    height: 144px;
    object-fit: cover;
}

.bs-card__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 14px;
    line-height: 19px;
    color: var(--dark-text);
}

.bs-card__description {
    margin-top: 8px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: var(--dark-text);
}

.bs_card__description__hide {
    white-space: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.bs-card__wrapper {
    position: relative;
}
.bs-card__reasons{
    overflow: visible;
}

.bs-card__tags {
    margin-bottom: 8px;
    border-bottom: 1px solid var(--background1);
}

.bs-card__schedule {
    margin-top: 8px;
    background: var(--background2);
    border-radius: 4px;
    padding: 8px
}

.bs-card__schedule__item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.bs-card__schedule__item:last-child {
    margin-bottom: 0;
}

.bs-card__schedule__item svg,
.bs-card__schedule__item img {
    width: 24px;
    height: 24px;
}

.bs-card__schedule__item span {
    margin-left: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--dark-text);
}

.bs-card__list {
    margin-top: 8px;
    border-radius: 3px;
}

.bs-card__list__item {
    display: flex;
    padding: 8px;
    color: var(--dark-text);
    font-size: 12px;
    line-height: 16px;
    align-items: center;
}

.bs-card__list__item strong {
    width: 40%;
    font-weight: 700;
}

.bs-card__list__item span {
    width: 60%;
    font-weight: 400;
}

.bs-card__list__item:nth-child(odd) {
    background-color: var(--background1);
}

.bs-card__list__item:nth-child(even) {
    background-color: var(--background2);
}

.bs-card__buttons {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

/*  BINGO CARD  */
.bingo-card {
    position: relative;
    width: 255px;
    height: 205px;
    background: var(--white);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bingo-card[data-title]:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 6px;
    content: attr(data-title);
    white-space: nowrap;
    background: #FFFFFF;
    font-weight: 900;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 3px rgb(0 0 0 / 15%);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-delay: 0s;
}

.bingo-card:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
}

.bingo-card[data-title]:hover:after {
    opacity: 1;
    top: -30px;
    transition-delay: 0.5s;
}

.bingo-card__wrapper {
    display: block;
    padding: 8px 16px;
}

.bingo-card__top {
    height: 19px;
    position: relative;
}

.bingo-card__top,
.bingo-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bingo-card__middle {
    margin: 8px 0;
}

.bingo-card__image {
    width: 223px;
    height: 126px;
    transition: all 0.3s ease;
    transition-property: height, width;
}

.bingo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bingo-card__name {
    font-weight: 900;
    font-size: 14px;
    line-height: 19px;
    color: var(--dark-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bingo-card__time {
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    color: var(--accent);
    flex-shrink: 0;
}

.bingo-card__prize,
.bingo-card__price,
.bingo-card__players {
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.bingo-card__players {
    margin-right: 0;
}

/*  TAG  */
.tags {
    display: flex;
    flex-wrap: wrap;
}

.tag {
    margin: 0 8px 8px 0;
    padding: 4px 10px;
    background: var(--background1);
    border-radius: 100px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--dark-text);
}

.tag:last-child {
    margin-right: 0;
}

/*  TABS  */
.bs-tabs {
    display: flex;
    gap: 20px;
    padding: 0 16px;
}

.bs-tabs .bs-btn:first-child {
    margin-left: auto;
}

.bs-tabs .bs-btn:last-child {
    margin-right: auto;
}


/*  BALANCE BAR  */
.balance-bar {
    width: 100%;
    background-color: var(--brand2);
}

.balance-bar__wrapper {
    max-width: 1110px;
    margin: auto;
    display: flex;
}

.balance-bar__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.balance-bar__label {
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: var(--white);
}

.balance-bar__value {
    font-weight: 900;
    font-size: 14px;
    line-height: 19px;
    color: var(--white);
}

.balance-bar__balance,
.balance-bar__bonus,
.balance-bar__level,
.balance-bar__deposit {
    display: flex;
    align-items: center;
    padding: 8px;
}

.balance-bar__level {
    padding-right: 12px;
}

.balance-bar__balance,
.balance-bar__level {
    background-color: var(--brand2);
}

.balance-bar__bonus,
.balance-bar__deposit {
    background-color: var(--brand2-dark);
}

.balance-bar__balance .balance-bar__action,
.balance-bar__level .balance-bar__action {
    margin-left: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-bar__balance {
    min-width: 126px;
}

.balance-bar__bonus {
    min-width: 95px;
}

.balance-bar__bonus svg {
    margin-right: 12px;
}

.balance-bar__level {
    flex-grow: 1;
}

.balance-bar__bar {
    width: 100%;
    height: 18px;
    margin: 0 0 0 8px;
    background: var(--background1);
    border-radius: 50px;
    overflow: hidden;
}

.balance-bar__fill {
    background: linear-gradient(360deg, var(--accent) 23.96%, #FF63E0 61.46%, #FFA6ED 81.01%);
    height: 18px;
    width: 0;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.balance-bar__deposit {
    padding: 8px 12px;
}

.balance-bar__deposit strong {
    margin-top: 4px;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    text-align: center;
    color: var(--white);
}

.balance-bar__deposit .balance-bar__content,
.balance-bar__level .balance-bar__content {
    align-items: center;
}


.balance-bar__deposit .balance-bar__content,
.balance-bar__bonus .balance-bar__content,
.balance-bar__balance .balance-bar__content,
.balance-bar__bonus .balance-bar__content,
.balance-bar__action {
    cursor: pointer;
}


/*  CHECKBOX  */
.ui-checkbox {
    margin: 8px 8px 8px 0;
}

.ui-checkbox:last-child {
    margin-right: 0;
}

.ui-checkbox input {
    display: none;
}

.ui-checkbox label {
    display: flex;
    align-items: flex-start;
    position: relative;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: var(--dark-text);
}

.ui-checkbox label:before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    border: solid 1px #6c6c6c;
    background-color: #fff;
    margin-right: 8px;
}

.ui-checkbox label:after {
    content: "";
    flex-shrink: 0;
    width: 9px;
    height: 5px;
    position: absolute;
    top: 6px;
    left: 6px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    transform: rotate(-45deg);
}

.ui-checkbox input:checked+label:after {
    border-color: var(--brand1);
    opacity: 1;
}

/*  LEFT AND RIGHT MENU  */
.bs-menu {
    min-width: 320px;
}

.bs-menu__wrapper {
    display: flex;
    flex-direction: column;
}

.bs-menu__item {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--background2);
    border-bottom: 1px solid var(--brand1);
    padding: 19px 16px;
    cursor: pointer;
}

.bs-menu__item_active:before {
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    left: 0;
    background: var(--brand1);
    opacity: 0.5;
    position: absolute;
}

.bs-menu__item:first-child {
    border-top: 1px solid var(--brand1);
}

.bs-menu__item:hover {
    background: var(--background1);
}

.bs-menu__icon {
    width: 26px;
    height: 26px;
}

.bs-menu__label {
    margin-left: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #0B71F0;
}

.bs-menu__count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 24px;
    height: 24px;
    background: var(--system-red);
    border-radius: 100px;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    color: var(--white);
}

.bs-menu_small .bs-menu__item {
    padding: 16px 13px;
}


.bs-game {
    display: block;
    position: relative;
    width: 160px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.bs-game:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.bs-game.bs-game_size_lg {
    width: 350px;
    height: 470px;
}

.bs-game__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-game__favourites {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    cursor: pointer;
    background-image: url("../Images/icons/icon-fav-inactive.svg");
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 16px 14px;
}

.bs-game__favourites.active {
    background-image: url("../Images/icons/icon-fav-active.svg");
}

.bs-game__favourites.loading {
    opacity: 0.5;
    pointer-events: none;
}

.bs-game__favourites:hover,
.bs-game__favourites.active:hover {
    background-color: #EBECFD;
}

.bs-game__labels {
    position: absolute;
    top: 12px;
    left: 0;
    display: flex;
    z-index: 1;
}

.bs-game__label {
    position: relative;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    text-transform: uppercase;
    color: var(--black);
}

.bs-game__label:nth-child(2) {
    background: var(--highlight1);
    border-radius: 0 0 4px 0;
    padding: 3px 2px;
}

.bs-game__label:nth-child(2):after {
    content: "";
    width: 15px;
    height: 100%;
    background: var(--highlight1);
    top: 0;
    position: absolute;
    right: -4px;
    border-radius: 0 4px 2px 0;
    transform: skew(-20deg);
    z-index: -1;
}

.bs-game__label:nth-child(2):before {
    content: "";
    top: 0;
    position: absolute;
    left: -6px;
    z-index: 1;
    border-left: 6px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 21px solid var(--highlight1);
}

.bs-game__label:nth-child(1) {
    background: var(--highlight2);
    padding: 3px 8px 3px 4px;
}

.bs-game__label:nth-child(1):after {
    content: "";
    width: 15px;
    height: 100%;
    background: var(--highlight2);
    top: 0;
    position: absolute;
    right: -6px;
    border-radius: 0 4px 2px 0;
    transform: skew(-20deg);
    z-index: -1;
}

.bs-game__label:only-child {
    background: var(--highlight2);
    padding: 3px 1px 3px 4px;
}

.bs-game__jackpot {
    position: absolute;
    bottom: 0;
    background: #590FB8;
    width: 100%;
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
    padding: 3px;
}

.bs-game__skeleton {
    background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
    animation: skeleton-loading 2.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 0;
    }
    50% {
        background-position: 370px;
    }
    100% {
        background-position: 0;
    }
}

/*  TABLE  */
.bs-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    margin: auto;
    border-collapse: collapse;
}

.bs-table tbody {
    display: table;
    width: 100%;
}

.bs-table__row {
    border-top: 1px #DADADA solid;
    border-bottom: 1px #DADADA solid;
}

.bs-table__heading {
    padding: 8px 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    text-align: left;
    color: #000000;
}

.bs-table__cell {
    padding: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    text-align: left;
    color: #000000;
}

/* SEARCH SIDEBAR */
.bs-search-sidebar {
    width: 320px;
    height: 100vh;
    position: fixed;
    background-color: #F8F8FE;
    top: 0;
    left: -330px;
    z-index: 11;
    transition: left 0.3s ease-in-out;
}

.bs-search-sidebar__header {
    display: flex;
    background-color: var(--white);
}

.bs-search-sidebar__loading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 24px;
}

.bs-search-sidebar__loading .bs-loading__spinner {
    margin-bottom: 32px;
    transform: scale(0.5);
}

.bs-search-sidebar__tabs {
    display: flex;
    height: 40px;
    flex-grow: 1;
}

.bs-search-sidebar__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: var(--dark);
    opacity: 0.5;
    flex-grow: 1;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.bs-search-sidebar__tab:hover {
    color: var(--brand2);
    background-color: var(--background1);
    opacity: 1;
}

.bs-search-sidebar__tab.bs-search-sidebar__tab--active {
    color: var(--brand2);
    opacity: 1;
    border-bottom: 1px solid var(--brand2);
}

.bs-search-sidebar__tab.bs-search-sidebar__tab--active:hover {
    opacity: 1;
    background-color: #FFFFFF;
}

.bs-search-sidebar__close {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bs-search-sidebar__close:hover {
    background-color: var(--background1);
}

.bs-search-sidebar__search {
    position: relative;
    padding: 12px;
}

.bs-search-sidebar__search .form-control {
    border: 1px solid #EBECFD;
    color: var(--dark);
    padding: 14px 40px 11px 12px
}

.bs-search-sidebar__search .form-control:active,
.bs-search-sidebar__search .form-control:hover {
    border: 1px solid #EBECFD;
}

.bs-search-sidebar__content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 8px 12px 12px;
    max-height: calc(100vh - 144px);
    overflow-y: auto;
    --scrollbar-foreground: #999;
    --scrollbar-background: #333;
    scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}

.bs-search-sidebar__content::-webkit-scrollbar {
    position: absolute;
    width: 4px;
    height: 24px;
}
.bs-search-sidebar__content::-webkit-scrollbar-thumb { /* Foreground */
    border-radius: 4px;
    background: var(--brand2);
}
.bs-search-sidebar__content::-webkit-scrollbar-track { /* Background */
    border-radius: 4px;
    background: var(--background1);
}

.bs-search-sidebar__content .bs-game {
    width: 143px;
    height: 192px;
}

.bs-search-sidebar__counter {
    padding: 0 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--black);
}

.bs-search-sidebar-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 25px;
    right: 25px;
}

.bs-search-sidebar-loader:after {
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000000;
    border-color: #000000 transparent #000000 transparent;
    animation: bs-search-sidebar-loader 1.2s linear infinite;
}
@keyframes bs-search-sidebar-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* HORIZONTAL SCROLLABLE GAMES */
.bs-scroller {
    overflow-x: scroll;
}

.bs-scroller::-webkit-scrollbar {
    background-color: transparent;
    display: none;
}
.bs-scroller {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.bs-scroller::-webkit-scrollbar-track {
    background-color: transparent;
}
.bs-scroller::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 20px;
    border: 3px solid transparent;
}


/* LOADER */
.bs-loader {
    max-height: 100vh; overflow: hidden;
}

.bs-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
    height: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.bs-loading__spinner {
    display: inline-block;
    position: relative;
    width: 136px;
    height: 136px;
}

.bs-loading__spinner div {
    position: absolute;
    border: 6px solid #0B71F0;
    opacity: 1;
    border-radius: 50%;
    animation: bs-loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.bs-loading__spinner div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes bs-loading {
    0% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 144px;
        height: 144px;
        opacity: 0;
    }
}


/*  PAGINATION  */
.bs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    margin-right: 8px;
    height: 32px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--dark-text);
    background: #FFFFFF;
    border: 1px solid var(--background1);
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
}

.page-item:last-child {
    margin-right: 0;
}

.page-item:hover {
    border: 1px solid var(--background2);
}

.page-item.active {
    color: var(--brand1);
    border: 1px solid var(--brand1);
    cursor: default;
    pointer-events: none;
}

.page-item.disabled {
    opacity: 0.15;
    pointer-events: none;
    cursor: default;
}

/* DETAILED GAME PAGE */
.bs-detailed-game {
    width: 100%;
    display: flex;
    gap: 20px;
}

.bs-detailed-game__primary {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.bs-detailed-game__img {
    width: 460px;
    height: 260px;
}

.bs-detailed-game__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-detailed-game__title {
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.bs-detailed-game__title h3 {
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #2F2F32;
}

.bs-detailed-game__title {
    width: 230px;
}

.bs-detailed-game__details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 253px;
}

.bs-detailed-game__detail {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #EBECFD;
    padding: 0 10px;
    font-size: 14px;
    line-height: 26px;
    flex-grow: 1;
}

.bs-detailed-game__detail strong {
    display: block;
    font-weight: 700;
    color: #2F2F32;
    min-width: 108px;
}

.bs-detailed-game__detail span {
    font-weight: 400;
    color: #2F2F32;
    margin-left: 16px;
}


/*  MISC  */
.bs-block {
    width: 100%;
    padding: 20px;
    background-color: #F8F8FE;
    margin-bottom: 20px;
}

.bs-block:last-child {
    margin-bottom: 0;
}

.bs-block.white {
    background-color: #FFFFFF;
}


.bs-block.dark {
    background-color: #EBECFD;
}



/*  GAME CARDS WRAPPERS  */
.bs-games {
    padding: 8px 0;
    margin: -8px 0;
}

.bingo-games {
    display: flex;
    overflow-x: scroll;
    gap: 30px;
    /* padding: 34px 16px 8px 16px; */
    padding: 34px 0 8px 0;
    margin: -34px 0 -8px 0;
}

.bs-games_type_inline {
    display: flex;
    gap: 30px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.bs-games_type_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-left: auto;
    margin-right: auto;
}

.bs-games_type_list .bs-game{
    aspect-ratio: 8 / 11;
    height: auto;
}

.bs-games_type_grid {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.bs-games_type_grid .bs-game {
    min-width: 160px;
    min-height: 220px;
    width: auto;
    height: auto;
}

.bs-games_type_grid .bs-game:first-child {
    grid-area: 1/1/-1/3;
    height: 480px;
}

.bs-cards-wrapper {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1140px;
    gap: 30px;
}
 
.bingo-events { 
    display: flex;
    overflow-x: scroll; 
    gap: 30px; 
    padding: 34px 0 8px 0;
    margin: -34px 0 -8px 0;
} 

.be__wrap { 
    overflow-x: unset; 
    flex-wrap: wrap; 
} 

.be__last { 
    margin-top: 10px;
    max-height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.be__last__btn {
    justify-content: space-between;
}

.be-btn { 
    padding: 6px 15px !important; 
} 

.bingo-events__tags { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
    gap: 10px; 
    border-bottom: solid var(--background1); 
    height: 46px; 
    align-items: center; 
    margin: 0 8px;
} 

.bingo-events__tag {
    background-color: var(--background1);
    padding: 3px 12px;
    border-radius: 15px;
    height: 26px; 
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px; 
}

.bingo-events__list__item { 
    display: flex;
    padding: 8px; 
    color: var(--dark-text);
    font-size: 12px;
    line-height: 16px; 
    background-color: var(--background1);
    flex-direction: column;
    gap: 5px; 
}

.bingo-events__list__item__line { 
    display: flex; 
    flex-direction: row;
    gap: 10px; 
    align-items: center;
}

/* MEDIA QUERIES */

/* LARGE */
@media only screen and (max-width: 1200px) {
    .bs-games_type_grid .bs-game {
        width: 160px;
        height: 220px !important;
    }

    .bs-games_type_grid,
    .bs-games_type_inline {
        width: 100vw;
        display: flex;
        overflow-x: scroll;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .bs-scroller {
        width: 100vw;
        margin-left: -16px;
        padding-left: 16px;
    }

    .bs-games_type_list {
        gap: 16px 24px;
    }

    .bs-games_type_list .bs-game {
        width: calc((100%/6) - 22px);
    }

    .bs-container {
        padding: 0 16px;
    }

    .bs-heading {
        margin: 0 0 8px 0;
    }

    .bs-heading .bs-title {
        font-size: 16px;
        line-height: 21px;
    }

    .bs-title h3 {
        font-size: 16px;
        line-height: 21px;
        margin: 12px 0;
    }

    .bs-title h3 {
        font-size: 16px;
        line-height: 21px;
        margin: 12px 0;
    }

    .bs-heading .bs-heading__additional {
        font-size: 14px;
        line-height: 19px;
    }

    .breadcrumbs {
        margin: 0 0 12px 0;
    }

    .bs-section {
        padding: 13px 0 16px 0;
    }

    .bs-section.upper {
        padding: 0 0 16px 0;
    }
}

/* MEDIUM */
@media only screen and (max-width: 1024px) {
    .bs-games_type_list .bs-game {
        width: calc((100%/5) - 20px);
    }

    .bingo-games {
        gap: 20px;
    }

    .bs-accordion-item__title {
        font-size: 14px;
        line-height: 19px;
    }

    .bs-accordion-item__description {
        font-weight: 400;
        font-size: 14px;
    }
}

/* TABLETS */
@media only screen and (max-width: 744px) {
    .bs-games_type_list .bs-game {
        width: calc((100%/4) - 18px);
    }

    .breadcrumbs {
        display: none;
    }

    /* .top-bar {
        padding: 1px 0;
    } */

    .top-bar .bs-title:empty {
        display: none;
    }

    .bs-section.upper {
        padding: 13px 0 16px 0;
    }
}

/* PHONES */
@media only screen and (max-width: 640px) {
    .bs-games_type_list .bs-game {
        width: calc((100%/3) - 10px);
    }
    .bs-games_type_list {
        gap: 16px 13px;
    }
}

/* PHONES */
@media only screen and (max-width: 480px) {
    .bs-games_type_list .bs-game {
        width: calc((100%/2) - 8px);
    }
}

.bs-blur {
    position: fixed;
    width: 100vw;
    height: 100vh;
    /*background: rgba(255, 255, 255, 0.1);*/
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.bs-blur_state_visible {
    opacity: 1;
}

.viewportLock {
    max-height: 100vh;
    overflow: hidden;
}

