/**
 * General styling
 */
@import url(https://fonts.googleapis.com/css?family=Poppins&display=swap);

body {
    width: 100%;
    height: 100%;

    position: relative;

    margin: 0;

    background-color: #F8F8FE;

    font-family: 'Red Hat Display', sans-serif;
    font-size: .8em;
}

* {
    box-sizing: border-box;
}

.container {
    /* max-width: 1132px; */
    max-width: 1110px;
    margin: 0 auto;
}

a {
    outline: none;
    text-decoration: none;
}

a:not([class]) {
    color: #0B71F0;
}

a:hover:not([class]) {
    color: #0852AD;
    text-decoration-line: underline;
}

/*a:not(.bs-btn, .page, .category-link, .bs-menu__item, .bingo-card__wrapper, .btn-primary, .gameButton) {*/
/*    color: #0B71F0;*/
/*}*/

/*a:hover:not(.bs-btn, .page, .category-link, .bs-menu__item, .registration-step__wrapper, .bingo-card__wrapper, .btn-primary, .bs-card__reasons__link, .gameButton) {*/
/*    color: #0852AD;*/
/*    text-decoration-line: underline;*/
/*}*/

/* TODO: Check if reusable button works correctly */
/*.btn {*/
/*    font-weight: 900;*/
/*    text-transform: uppercase;*/
/*    border-radius: 4px;*/
/*    line-height: 35px;*/
/*    height: 32px;*/

/*    padding: 0 12px;*/

/*    border: 1px solid transparent;*/
/*    background: transparent;*/

/*    transition: all .2s linear;*/
/*}*/

/*.btn:hover {*/
/*    cursor: pointer;*/
/*}*/

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100%;

    background: rgba(0, 0, 0, .5);

    z-index: 400;
}

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

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

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

.btn-primary {
    color: #FFFFFF;
    background: #FF02CC;
}

.btn-primary:hover {
    background: #B80293;
}

.btn-secondary {
    background: #0B71F0;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: #0852AD;
}

.btn-outline {
    color: #0B71F0;
    background: transparent;
    border: 1px #0B71F0 solid;
}

.btn-outline:hover {
    color: #0852AD;
    border: 1px #0852AD solid;
}

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

.btn-medium {
    padding: 6px 20px;
    font-size: 14px;
    line-height: 19px;
}

.btn-large {
    padding: 8px 24px;
    font-size: 15px;
    line-height: 21px;
}

.darker {
    background-color: #EBECFD;
}

section.lighten {
    background-color: #FFFFFF;
}

.p-8 {
    padding: 8px;
}

.mx-8 {
    margin: 0 8px;
}

.mb-10 {
    margin-bottom: 10px !important;
}


/**
 * NavBar
 */
.navbar {
    width: 100%;
    height: 50px;
    background-color: #F8F8FE;
}

.navbar>.container {
    display: flex;
    flex-direction: row;

    height: 100%;

    align-items: center;
    justify-content: space-between;
}

.navbar>.container .left {
    height: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 16px;
}

.navbar>.container .left .hamburger:hover {
    cursor: pointer;
}

.navbar>.container .left .hamburger {
    height: 24px;
}

.navbar>.container .right {
    height: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 70px;
}

.navbar>.container .right .auth-buttons {
    display: flex;
    flex-direction: row;

    gap: 20px;
    align-items: center;
}

.navbar>.container .right .auth-buttons #account-menu-toggle {
    position: relative;
    width: 22px;
    height: 22px;
}

.navbar>.container .right .auth-buttons #account-menu-toggle .notification-alert {
    background-color: #E10303;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    position: absolute;
    right: -6px;
    top: -4px;
}

.btn-login {
    color: #0B71F0;
    border: 1px solid #0B71F0;
}

.btn-login:hover {
    color: #0056ad;
    border-color: #0056ad;
}

.btn-join {
    color: white;
    background-color: #FF02CC;
}

.btn-join:hover {
    background-color: #da00ae;
}

/**
 * @TODO: Remove this when fixedLeftMenu has been rewritten
*/
#fixedLeftMenu,
#mobileMenu {
    display: none;
}

#mainContent {
    /*display: none;*/
}

.topbar {
    padding: 20px 0 1px 0;
}

.popupTitle {
    font-size: 14px;
    font-weight: 900;
    color: #39363a;
    margin-bottom: 10px;
}

.topbar .container {
    padding: 20px 16px 1px 16px;
    /* max-width: 1132px; */
    max-width: 1110px;
}

/*.breadcrumbs {*/
/*    list-style: none;*/
/*    margin: 0 0 20px 0;*/
/*    padding: 6px 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: 34px;*/
/*    font-weight: 700;*/
/*    font-size: 14px;*/
/*    color: #2F2F32;*/
/*}*/

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

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

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

/*.breadcrumbs .link a {*/
/*    color: #0B71F0;*/
/*}*/

/*.breadcrumbs .link a:hover {*/
/*    text-decoration: underline;*/
/*}*/

/*.breadcrumbs .link:last-child a {*/
/*    text-decoration: none;*/
/*}*/

.sub-menu {
    display: flex;
    justify-content: center;
    background: #fff;
    overflow-x: auto;
    width: 100%;
}

.sub-menu a {
    color: #0B71F0;
    padding: 6px 11.5px;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    line-height: 17px;
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid #0b71f0;
    border-radius: 4px;
    margin: 20px 10px;
    cursor: pointer;
    min-width: fit-content;
}

.sub-menu a.active {
    background: #0b71f0;
    color: #FFF;
}

.containerGray {
    background: #F8F8FE;
}

.side-padding-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.data-content .icon-toggle {
    width: 24px;
    height: 24px;

    background: top left no-repeat url('/website/STAMP/Templates/Bingostars/Images/icons/icon-accordian-plus.svg');
}
.data-content  .expanded .icon-toggle {
    background: top left no-repeat url('/website/STAMP/Templates/Bingostars/Images/icons/icon-accordian-minus.svg');
}

.visible {
    display: block;
}

h3.title {
    font-weight: 900;
    font-size: 24px;
    line-height: 31.75px;
    font-family: 'Red Hat Display', sans-serif;
    color: #2F2F32;
    margin-top: 40px;
}

.description {
    font-weight: 400;
    font-size: 13px;
    line-height: 17.2px;
    font-family: 'Red Hat Display', sans-serif;
    color: #2F2F32;
    margin-bottom: 20px;
    text-align: justify;
}

.text-center {
    text-align: center;
}

.tabs {
    margin-bottom: 40px;
}

.tabs .tab {
    background: #FFFFFF;
    padding: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.tabs .tab .tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs .tab .tab-header .title {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    display: inline-flex;
    align-items: center;
    color: #2F2F32;
}

.tabs .tab .tab-header .close {
    display: inline-flex;
    align-content: flex-end;
    height: 24px;
    width: 24px;
}

.tabs .tab .tab-content {
    display: none;
    transition: height 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.tabs .tab .tab-content p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #2F2F32;
}

/**
 * Footer
 */
footer section {
    width: 100%;
    padding: 20px 0;
}

footer .payment-methods {
    padding: 40px 0;
}

footer .providers {
    padding-top: 20px;
    padding-bottom: 40px;
}

footer section .title {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;
}

footer section .title h1 {
    font-size: 24px;
    font-weight: 900;
    color: #0B71F0;
    margin: 0;
}

footer section .title a {
    font-weight: 600;
    line-height: 21px;
    font-size: 16px;
    color: #0B71F0;
    text-decoration-line: underline;
}

footer section .icon-list {
    display: flex;
    flex-direction: row;
    gap: 24px;

    justify-content: center;
}
footer section .icon-list .icon {
    display: flex;
    align-items: center;
}

footer section #icon-trustly {
    width: 90px;
    border: 1.5px solid #0B71F0;
    border-radius: 5px;
    height: 42px;
}

footer section .links {
    text-align: center;
}

footer section .links a {
    color: #0B71F0;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

footer section .links span {
    padding-left: 10px;
    padding-right: 10px;

    color: #0B71F0;
    font-weight: 700;
    font-size: 16px;
}

footer section p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 13px;
    color: #0B71F0;
    line-height: 17px;
}

footer .providers .icon-list {
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 24px;
}

.site-nav {
    position: absolute;

    top: 0;
    left: 0;

    width: 320px;
    height: 100%;

    background-color: #F8F8FE;

    z-index: 300;
}

.site-nav.loggedin {
    left: initial;
    right: 0;
}

.site-nav .site-nav__header {
    display: flex;

    padding: 15px 16px;
    justify-content: space-between;
    align-items: center;

    border-bottom: 0.5px solid #0B71F0;
}

.site-nav .site-nav__header span {
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
}

.site-nav .bs-menu {
    width: 320px;
    height: 100%;

    background-color: #F8F8FE;
}

/**
 * Category navbar
 */
nav.categories {
    width: 100%;
    height: 60px;
    background-color: #0B71F0;
}

nav.categories .items {
    height: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;

    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

nav.categories .items::-webkit-scrollbar {
    display: none;
}

.bingo-cards-scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bingo-cards-scroller::-webkit-scrollbar {
    display: none;
}

nav.categories .items a {
    height: 100%;

    font-size: 12px;
    font-weight: 900;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 20px;
}

nav.categories .items a .hover {
    display: none;
    text-decoration: none;
}

nav.categories .items a.active {
    background-color: #0852AD;
}

nav.categories .items a:hover {
    color: #FAFF04;
}

nav.categories .items a:hover .normal {
    display: none;
}

nav.categories .items a:hover .hover {
    display: block;
}

nav.categories .items a .icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-content: center;
    justify-content: center;
}

nav.categories .items a img {
    align-self: center;
}

nav.categories .items a.search-button {
    position: sticky;
    left: 0;
    height: 60px;
    background-color: #0B71F0;
}

/**
 * FAQs styling
 */
.faqs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faqs .faq {
    background: white;
    padding: 24px;
}

.faqs .faq .question {
    display: flex;
    justify-content: space-between;
}

.faqs .faq .question:hover {
    cursor: pointer;
}

.faqs .faq .question span {
    font-weight: 900;
    font-size: 16px;
}

.faqs .faq .question .icon-toggle {
    width: 24px;
    height: 24px;

    background: top left no-repeat url('/website/STAMP/Templates/Bingostars/Images/icons/icon-accordian-plus.svg');
}

.faqs .faq.expanded .question .icon-toggle {
    background: top left no-repeat url('/website/STAMP/Templates/Bingostars/Images/icons/icon-accordian-minus.svg');
}

.faqs .faq .answer {
    display: none;
    font-weight: 400;
    font-size: 13px;
    margin-top: 16px;
}


/**
 * Cookie notification
 */
#cookieNotificationScreen {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    color: white;
    padding: 24px;
    z-index: 400;
    text-align: center;
    box-sizing: border-box;
    font-size: 12px;
}

#cookieNotificationScreen .continueButton {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 100px;
    float: none !important;
    font-size: 18px;
}

/**
 * Dynamic content / Modal windows
 */
#dynamicContent{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color:rgba(0,0,0,0.7);
    z-index:100;
    display:none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#dynamicHTML {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    box-sizing: border-box;
    -webkit-box-shadow: -3px -4px 9px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -3px -4px 9px -3px rgba(0, 0, 0, 0.75);
    box-shadow: -3px -4px 9px -3px rgba(0, 0, 0, 0.75);
}

#dynamicContent .title {
    font-size: 12px;
    color: #e94cd2;
    position: absolute;
    top: 26px;
    left: 26px;
}

#dynamicContent .logo{
    position: absolute;
    top: 26px;
    left: 26px;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background-color: #F8F8FE;
}

.loginTitle {
    color: #0B71F0;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
}

#closeDynamicContent {
    cursor: pointer;
    width: 16px;
    height: 16px;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../Images/Close.svg');
}

.centeredForm {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 100%;
    padding: 20px 73px 20px 73px;
    box-sizing: border-box;
    color: #221A8B;
    z-index: 0;
    font-size: 14px;
}

.centeredForm__text {
    text-align: center;
    color: #000;
}

.centeredForm * {
    box-sizing: border-box;
}

.centeredForm p {
    color: #000;
}

.centeredForm .submitButton {
    width: 100%;
    padding: 10px 5px;
    background-color: #0B71F0;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    cursor: pointer;
    border: 0;
    box-sizing: border-box;
    font-weight: bold;
    font-family: 'Red Hat Display';
    margin-bottom: 20px;
}

.passwordWrap {
    position: relative;
    display: flex;
    align-items: center;
}

.passwordWrap #eye {
    position: absolute;
    right: 10px;
    top: 15px;
    cursor: pointer;
}

#eye {
    color: #0B71F0;
    font-size: 22px;
}

.centeredForm .submitButton:hover {
    background-color: #0f64cc;
}

.centeredForm input[type=text],
.centeredForm input[type=password],
.centeredForm input[type=email] {
    width: 100%;
    height: 50px;
    border: 0px;
    background-color: #ffffff;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border:1px solid #2F2F32;
}

.dynamicCentered {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.dynamicTitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.dynamicTitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.centeredForm .description {
    width: 100%;
    margin-bottom: 8px;
    line-height: 14px;
    border: 0px;
    font-size: 12px;
    color: #2F2F32;
    font-weight: normal;
    box-sizing: border-box;
}

.centeredForm .description .textLeft {
    color: #0B71F0;
}

.centeredForm .description .textRight {
    color: #0B71F0;
}

.error {
    color: #ff6426;
    font-weight: bold;
    margin-bottom: 16px;
}

.invisibleSubmit {
    display: none;
}

#loginFormSubmit {
    z-index: 0;
}

.topbar {
    padding: 20px 0 1px 0;
}


.topbar .container {
    /* max-width: 1132px; */
    max-width: 1110px;
    padding: 0 16px;
}


/*.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: #2F2F32;*/
/*}*/

/*.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:last-child a {*/
/*    color: #2F2F32;*/
/*}*/

#loginForm input::placeholder {
    font-family: 'Red Hat Display';
    font-size: 14px;
    color: #2F2F32;
    opacity: .6;
}

#loginForm .description a {
    font-weight: 800;
    font-size: 13px;
    line-height: 17px;
}

.loginButtonsWrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 0px;
}

.loginButtonsWrap a {
    font-weight: 800;
    font-size: 13px;
    line-height: 17px;
    color: #0B71F0;
}

.passSentErr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.2px;
    color: #2F2F32;
}

.passSentWrap {
    padding: 20px 73px 20px 73px;
}

.passSentWrap .submitButton,
.passSentWrap input,
.passSentWrap .description {
    display: none;
}

.forgotPassImgWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgotPassImgWrap img {
    width: 36px;
}

.forgotPassImgWrap span {
    color: #0B71F0;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
}

.passSentMsg {
    max-width: 220px;
}

.resetPasswordWrap .submitButton {
    margin-bottom: 0;
}

.mb-40{
    margin-bottom: 40px;
}

.depositContent p {
    font-size: 16px;
    line-height: 21px;
    margin: 20px 0;
    max-width: 800px;
}

.depositContent p a {
    color: #0B71F0;
    text-decoration: underline;
}

.depositContent .form-floating {
    position: relative;
    max-width: 300px;
    margin-bottom: 20px;
    height: 44px;
}

.deposit-content__label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.limit-amount-block {
    display: none;
}

.depositContent button,
.depositContent input {
    width: 300px;
}

.limit-amount-block .pound {
    margin-bottom: 20px;
    background: #fff url('../Images/icons/icon-deposit-amount.svg') no-repeat scroll 10px 50%;
}

.depositContent button {
    margin-bottom: 40px;
}

.depositTable {
    width: 72%;
    border-collapse: collapse;
    background-color: #fff;
}

.depositTable tr {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.depositTable td,
.depositTable th {
    border: 1px solid #2F2F32;
    text-align: left;
    font-size: 13px;
    line-height: 18px;
    color: #2F2F32;
    padding: 10px;
    font-family: "Red Hat Display";
}

.notificationAlert {
    display: none;
    padding: 16px;
    font-weight: bold;
    font-size: 17px;
    color: #2AAD64;
}

.depositMsgText {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.depositCloseIcon {
    margin-left: auto;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-size: auto 85%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../Images/Close.svg');
}

.btnDepositWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.btnDepositWrap div:first-child {
    margin-right: 5px;
}

.depositErr {
    color: #F44336;
}

.game-error {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px;
    margin: auto;
}

.game-error__info {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.game-error__buttons {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.depositTable .grayblured {
    opacity: .6;
}

@media screen and (max-width:1130px) {
    .depositContent {
        padding: 16px;
    }
    footer section {
        padding: 16px 16px;
    }
}

@media screen and (max-width:900px) {
    .depositTable {
        width: 100%;
    }

}
@media screen and (max-width:740px){
    nav.categories .items a {
        padding: 0 20px;
    }
}

@media screen and (max-width:480px) {
    .depositContent p {
        font-size: 13px;
        line-height: 22px;
    }
    .depositTable td,
    .depositTable th {
        font-size: 11px;
        line-height: 18px;
    }
    .depositContent button,
    .depositContent input {
        width: 100%;
    }
    .depositContent .selectWrap,
    .depositContent select {
        max-width: 100%;
    }
    .depositContent button {
        margin-bottom: 0;
    }
    .depositContent p:first-child {
        margin: 0 0 20px 0;
    }
}

.bingoFaq__title {
    text-align: center;
}

.bingoFaq__title h2 {
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    margin: 15px 0 20px 0;
}

.bingoCardsWrap .bingo-card {
    margin: 0;
}

.bingoCategoryContent {
    padding: 0 0 40px 0;
}

#footerWelcomeTerms {
    text-align: center;
    margin-bottom: 10px;
}

#mainHolder {
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    box-sizing: border-box;
    padding-right: 0px;
    top: 30px;
}

#gameHolder {
    /*min-height: 300px;*/
    max-width: 1300px;
    position: relative;
    width: calc(100% - 77px);
    margin-left: auto;
    margin-right: auto;
    /*border: 1px #EBECFD solid;*/
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

#gamebuttons{
    position:absolute;
    width:37px;
    height: 200px;
    background-color: #590FB8;
}

.normalview{
    top:0;
    right:-37px;

}
.fullscreenview{
    top:0;
    right:0;
}

.ingamebuttons{
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    margin: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    margin-bottom: 17px;
    float:left;
}

.ingamebuttons:hover { transform: scale(1.1); }

#gamebuttons-fullscreen{
    background-image: url('../Images/play-expand.png');
}
#gamebuttons-close{
    background-image: url('../Images/play-close.png');
}
#gamebuttons-deposit{
    background-image: url('../Images/play-deposit.png');
}
#gamebuttons-favorite{
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    margin: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    margin-bottom: 17px;
    background-image: url('../Images/play-heart.png');
    float: left;
}

#gamebuttons .off{background-image: url('../Images/play-heart.png')!important;}
#gamebuttons .off:hover{background-image: url('../Images/play-hearton.png')!important;}
#gamebuttons .on{background-image: url('../Images/play-hearton.png')!important;}
#gamebuttons .on:hover{background-image: url('../Images/play-heart.png')!important;}

#regularGame {
    display: block;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


#pragmaticminilobby .normalvertical {
    width: calc(33.333% - 2px);
}

#pragmaticminilobby.gameImage img{
    background-size: 100% 100%;
}

#pragmaticminilobby .image {
    background-size: 100% 100%;
    float: left;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    padding: 7px 2px;
}
#pragmaticminilobby .gameImage {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-size: 100% 100%;
    cursor: pointer;
}

#pragmaticminilobby img {
    background-size: 100% 100%;
}

.sub-category-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    background: none;
    margin-bottom: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
}
.sub-category-menu::-webkit-scrollbar {
    display: none;
}
.sub-category-menu li a {
    padding: 4px 8px;
    background-color: #0B71F0;
    color: white;
    border-radius: 16px;
    font-weight: 900;
    font-size: 13px;
    display: inline-block;
}
.sub-category-menu li a.active,
.sub-category-menu li a:hover {
    background-color:white;
    color: #0B71F0;
    text-decoration: none;
}
