.game .game-container {
    display: flex;
    gap: 20px;
}
.game .game-container .game-info {
    width: 100%;
    max-width: 260px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(79, 84, 106, 0.10);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.game .game-container .game-info .game-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game .game-container .game-info .image {
    width: 260px;
    height: 246px;
    border-radius: 24px;
}

.game .session-details {
    height: 34px;
    border-radius: 100px;
    backdrop-filter: blur(2px);
    -moz-backdrop-filter: blur(2px);
    -o-backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    width: fit-content;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
     /* 17.6px */
    gap: 5px;
    padding-right: 10px;
    margin: 10px;
    position: absolute;
    z-index: 1;
}

.modal .game .session-details {
    position: relative;
}

.game  .session-details .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.game  .session-details .icon svg {
    width: 20px;
    height: 20px;
}

.game  .session-details.testyourluck {
    border: 1px solid #79EE73;
    background: rgba(93, 198, 146, 0.60);
}
.game  .session-details.testyourluck .icon {
    background: linear-gradient(84deg, #79EE73 -7.08%, #4FB1A1 132.64%);
}

.game  .session-details.undefined {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding-right: 0px;
    padding: 0px 12px;
}
.game  .session-details.undefined .icon {
    background: linear-gradient(84deg, #79EE73 -7.08%, #4FB1A1 132.64%);
}

.game  .session-details span {
    color: #fff;
}

.game  .session-details.cash {
    border: 1px solid #4FACFE;
    background: rgba(79, 172, 254, 0.4);
}
.game  .session-details.cash .icon {
    background: linear-gradient(84deg, #4FACFE -7.08%, #00D1DB 132.64%);
}
.game  .session-details.bonus {
    border: 1px solid #FCB84C;
    background: rgba(252, 184, 76, 0.4);
}
.game  .session-details.bonus .icon {
    background: linear-gradient(152deg, #FCB84C -37.59%, #F5691A 200.14%);
}

@media (max-width: 430px) {
    .game  .session-details {
        height: 28px;
        font-size: 14px;
        gap: 5px;
        padding-right: 10px;
    }
    .game  .session-details .icon {
        width: 28px;
        height: 28px;
    }
}

.game .game-container .game-info .game-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game .game-container .game-info .game-data .left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.game .game-container .game-info .game-data .left .title {
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
     /* 100% */
}

.game .game-container .game-info .game-data .buttons {
    display: flex;
    gap: 10px;
}

.game .game-container .game-info .game-data .left .descriptions {
    color: #4F546A;
    font-size: 14px;
    font-weight: 400;
     /* 15.4px */
}
.game .game-container .game-info .game-data .play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(59deg, #06ACA4 -40.71%, #DEFE4F 198.64%), #4FACFE;
    box-shadow: 0px 0px 15px 0px rgba(64, 195, 141, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 300ms;
}

.game .game-container .game-info .game-data .play span {
    display: none;
}

.game .game-container .game-info .game-data .download {
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(84deg, #4FACFE -7.08%, #00D1DB 132.64%), linear-gradient(59deg, #06ACA4 -40.71%, #DEFE4F 198.64%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 300ms;
}

.game .game-container .game-info .game-data .download span {
    display: none;
}

.game .game-container .game-info .game-data .play:hover {
    box-shadow: 0px 0px 15px 0px rgba(64, 195, 141, 0.50);
    transition: all 300ms;
}

.game .game-container .game-info .line {
    width: 100%;
    height: 1px;
    background: #1C2333;
}

.game .game-container .game-info .finance-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.game .game-container .game-info .finance-block .top {
    display: flex;
    width: 100%;
}
.game .game-container .game-info .finance-block .top .balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.game .game-container .game-info .finance-block .top .balance .amount {
    color: #4F546A;
    font-size: 14px;
    font-weight: 400;
     /* 15.4px */
    display: flex;
    flex-direction: column;
}
.game .game-container .game-info .finance-block .top .balance .amount span {
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
     /* 100% */
}
.game .game-container .game-info .finance-block .top .balance .update {
    gap: 10px;
    display: flex;
    align-items: center;
}
.game .game-container .game-info .finance-block .top .balance .update svg {
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 300ms;
}

.game .game-container .game-info .finance-block .top .balance .update svg.noupdating:hover {
    transform: rotate(45deg);
    transition: all 300ms;
}

.game .game-container .game-info .finance-block .top .balance .update span {
    color: #4F546A;
    font-size: 13px;
    font-weight: 300;
     /* 13.2px */
}

.game .game-container .game-info .finance-block .buttons {
    display: flex;
    justify-content: space-between;
}
.game .game-container .game-info .finance-block .buttons .button {
    width: calc(50% - 6px);
    height: 50px;
    border-radius: 14px;
    border: 1px solid #1C2333;
    background: #1B2030;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms;
}
.game .game-container .game-info .finance-block .buttons .button.addcash {
    background: linear-gradient(97.97deg, #4FACFE 0.49%, #4FACFE 36.66%, #71BDFF 50.41%, #6BBAFF 52.96%, #4FACFE 64.67%, #4FACFE 102.37%);
    background-size: 500%;
    animation: 10s shine linear infinite;
}
.game .game-container .game-info .finance-block .buttons .button:hover {
    transform: scale(1.02);
    transition: all 300ms;
}

.game .game-container .game-info .login-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.game .game-container .game-info .login-details .input {
    width: calc(100% - 40px);
    padding: 0px 20px;
    height: 50px;
    border-radius: 14px;
    background: rgba(79, 84, 106, 0.10);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.game .game-container .game-info .login-details .input .value {
    color: #888e9b;
    font-family: Lufga;
    font-size: 16px;
    font-weight: 500;
     /* 142.857% */
}
.game .game-container .game-info .login-details .input .icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.game .game-container .game-info .login-details .input .icons .icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game .game-container .game-info .login-details .input .icons svg {
    fill: #30344F;
    stroke: #30344F;
    transition: all 300ms;
}

.game .game-container .game-info .login-details .input .icons .icon:hover svg, .game .game-container .game-info .login-details .input .icons .icon.active svg {
    fill: #D7D7D7;
    stroke: #D7D7D7;
    transition: all 300ms;
}

.game .game-container .game-info .login-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.game .game-container .game-info .login-actions .reset {
    width: calc(100% - 50px - 10px);
    border-radius: 14px;
    border: 1px solid rgba(79, 84, 106, 0.20);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
    cursor: pointer;
}

.game .game-container .game-info .login-actions .reset:hover {
    border: 1px solid rgba(79, 84, 106, 0.40);
    transition: all 300ms;
}

.game .game-container .game-info .login-actions .remove {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(233, 0, 4, 0.20);
    display: flex;
    justify-content: center;
    align-items: center;
}


.game .game-container .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.game .game-container .game-testyourluck {
    border-radius: 24px;
    border: 1px solid rgba(71, 242, 55, 0.40);
    background: linear-gradient(85deg, rgba(6, 172, 164, 0.50) -71.3%, rgba(222, 254, 79, 0.50) 227.89%);
    width: calc(100% - 40px);
    padding: 0px 20px;
    height: 90px;
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.game .game-container .game-testyourluck .inform {
    display: flex;
    align-items: center;
    gap: 10px;
}
.game .game-container .game-testyourluck .inform svg {}
.game .game-container .game-testyourluck .inform .data {
    display: flex;
    flex-direction: column;
}
.game .game-container .game-testyourluck .inform .data .title {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
     /* 26.4px */
}
.game .game-container .game-testyourluck .inform .data .descriptions {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 400;
     /* 17.6px */
}

.game .game-container .game-testyourluck .progress {
    width: calc(100%);
    max-width: 272px;
    display: flex;
    flex-direction: column;
}

.game .game-container .game-testyourluck .progress .line-block {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
}

.game .game-container .game-testyourluck .progress .line {
    width: 100%;
    height: 3px;
    background: #4A7E50;
    border-radius: 3px;
}

.game .game-container .game-testyourluck .progress .line .value {
    height: 3px;
    background: #7CD976;
    border-radius: 3px;
}

.game .game-container .game-testyourluck .progress .points {
    margin-top: -70px;
    display: flex;
    justify-content: space-between;
    width: calc(100% + 34px);
    position: relative;
    margin-left: -17px;
}

.game .game-container .game-testyourluck .progress .point {
    width: 34px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.game .game-container .game-testyourluck .progress .point .bonus-amount {
    border-radius: 7px;
    background: #4A7E50;
    color: #7CD976;
    font-size: 12px;
    font-weight: 600;
     /* 100% */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 11px;
}

.game .game-container .game-testyourluck .progress .point .bonus-amount.active {
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    background: #7CD976;
}

.game .game-container .game-testyourluck .progress .point .dot {
    width: 12px;
    height: 12px;
    background: #4A7E50;
    border-radius: 50%;
}

.game .game-container .game-testyourluck .progress .empty {
    
}

.game .game-container .game-testyourluck .progress .point .dot.active {background: #7CD976;box-shadow: 0px 0px 19.7px #7cd976;}
.game .game-container .game-testyourluck .progress .point .count {
    color: aliceblue;
    font-size: 12px;
    font-weight: 400;
     /* 13.2px */
}
.game .game-container .game-testyourluck .button {
    background: linear-gradient(94deg, #59EF79 1%, #59EF79 35%, #9CFFB1 51%, #59EF79 67.5%, #59EF79 100%);
    background-size: 500%;
    animation: 10s shine linear infinite;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 25px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
     /* 200% */
    min-width: 72px;
}

.game .game-container .game-testyourluck .button.button-mobile {
    display: none;
}

@media (max-width: 1105px) {
    .game .game-container .game-testyourluck {
        flex-wrap: wrap;
        gap: 10px;
        height: fit-content;
        padding: 10px 20px;
        min-height: auto;
    }

    .game .game-container .game-testyourluck .inform {
        width: 100%;
    }

    .game .game-container .game-testyourluck .progress {
        max-width: calc(100% - 20px - 112px - 40px);
        padding: 0px 20px;
    }

    .game .game-container .game-testyourluck .button.button-desktop {
        display: none;
    }

    .game .game-container .game-testyourluck .button.button-mobile {
        display: flex;
    }
}

.game .game-container .right .game-actions {
    width: 100%;
    height: -webkit-fill-available;
    border-radius: 24px;
    background: rgba(79, 84, 106, 0.10);
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
    gap: 20px;
}

.game .game-container .right .game-actions.empty {min-height: 250px;display: flex;justify-content: center;align-items: center;}

.game .game-container .right .game-actions .empty-plug {display: flex;flex-direction: column;align-items: center;gap: 20px;font-size: 18px;width: 300px;text-align: center;color: rgba(255, 255, 255, 0.5);}

.game .game-container .right .game-actions .empty-plug svg {width: 100px;height: 100px;opacity: 0.3;}

.game .game-container .right .game-actions .head {width: calc(100% - 80px);padding: 0px 40px;display: flex;}

.game .game-container .right .game-actions .head .col {
    color: #30344F;
    font-size: 14px;
    font-weight: 500;
     /* 15.4px */
}

.game .game-container .right .game-actions .col.id {
    width: 10%;
}
.game .game-container .right .game-actions .col.login {
    width: 20%;
}
.game .game-container .right .game-actions .col.type {
    width: 20%;
    text-align: center;
}
.game .game-container .right .game-actions .col.amount {
    width: 20%;
    text-align: center;
}

.game .game-container .right .game-actions span.green > span, .game .game-container .right .game-actions span.green {
    color: #9AEB68;
    font-size: 14px;
    font-weight: 600;
}

.game .game-container .right .game-actions span.blue > span, .game .game-container .right .game-actions span.blue {
    color: #3571da;
}

.game .game-container .right .game-actions span.red > span, .game .game-container .right .game-actions span.red {
    color: #EB686A;
    font-size: 14px;
    font-weight: 600;
}

.game .game-container .right .game-actions .col.status {
    width: 20%;
    text-align: center;
}
.game .game-container .right .game-actions .col.date {
    width: 10%;
    text-align: right;
}

.game .game-container .right .game-actions .table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 566px;
    height: 1000vh;
    overflow: hidden auto;
    width: calc(100% - 40px);
    margin: 0px 20px;
    padding: 0;
    border-radius: 0;
    padding-right: 10px;
    background: unset;
}

.game .game-container .right .game-actions.need-login .table {
    max-height: 328px;
}

.game .game-container .right .game-actions .table .tr {
    width: calc(100% - 40px);
    padding: 0px 20px;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    cursor: pointer;
}

.game .game-container .right .game-actions .table .tr:nth-child(even) {
    background: rgba(79, 84, 106, 0.10);
}

.game .game-container .right .game-actions .table .tr:nth-child(odd) {
    background: rgba(79, 84, 106, 0.15);
}

.game .game-container .right .game-actions .table .tr.notlogin {
    background: rgba(106, 79, 79, 0.10) !important;
}

.game .game-container .right .game-actions .table .col {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 400;
     /* 15.4px */
}
.game .game-container .right .game-actions .table .col.id {
    color: rgba(255, 255, 255, 0.70);
    font-weight: 500;
}

.game .game-container .right .game-actions .table .col.amount {
    font-weight: 600;
}

.game .game-container .right .game-actions .table .col.amount .green {
    color: #9AEB68;
}

.game .game-container .right .game-actions .table .col.amount .red {
    color: #EB686A;
}

.game .game-container .right .game-actions .table .col.status span {}
.game .game-container .right .game-actions .table .col.status span.canceled {
    color: #EB686A;
}
.game .game-container .right .game-actions .table .col.status span.done {
    color: #9AEB68;
}
.game .game-container .right .game-actions .table .col.status span.processing {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.game .game-container .right .game-actions .table .col.status span.processing b {
    font-weight: 400;
}

.game .game-container .right .game-actions .table .col.status span.processing svg {
    animation: 2s circle-animation linear infinite;
}

@keyframes circle-animation {
    to {
        transform: rotate(-360deg);
    }
}

.game .game-container .right .game-actions .table .text {
    width: calc(100% - 40px);
    margin: 0px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.game .game-container .right .game-actions .table .text .line {
    width: calc((100% - 200px) / 2);
    height: 1px;
    background: #1C2333;
}
.game .game-container .right .game-actions .table .text .value {
    color: #1C2333;
    font-size: 14px;
    font-weight: 400;
     /* 15.4px */
    text-transform: uppercase;
    width: 215px;
    text-align: center;
}

@media (max-width: 1250px) {
    .game .game-container .right .game-actions .col.id {
        width: 15%;
    }
    .game .game-container .right .game-actions .col.login {
        width: 10%;
    }
    .game .game-container .right .game-actions .col.type {
        width: 20%;
        text-align: center;
    }
    .game .game-container .right .game-actions .col.amount {
        width: 20%;
        text-align: center;
    }
    .game .game-container .right .game-actions .col.status {
        width: 20%;
        text-align: center;
    }
    .game .game-container .right .game-actions .col.date {
        width: 15%;
        text-align: right;
    }
}

@media (max-width: 1020px) {
    .game .game-container .right .game-actions .col.id {
        width: 20%;
    }
    .game .game-container .right .game-actions .col.login {
        width: 20%;
    }
    .game .game-container .right .game-actions .col.type {
        width: 20%;
        text-align: center;
        display: none;
    }
    .game .game-container .right .game-actions .col.amount {
        width: 20%;
        text-align: center;
    }
    .game .game-container .right .game-actions .col.status {
        width: 20%;
        text-align: center;
    }
    .game .game-container .right .game-actions .col.date {
        width: 20%;
        text-align: right;
    }
}

@media (max-width: 913px) {
    .game .game-container .right .game-actions .col.login {
        width: 20%;
        display: none;
    }

    .game .game-container .right .game-actions .col {
        width: 25% !important;
    }
}

@media (max-width: 800px) {
    .game .game-container .right .game-actions {
        height: unset;
    }

    .game .game-container {
        flex-direction: column;
    }

    .game .game-container .game-info {
        max-width: calc(100% - 40px) !important;
        padding: 20px;
    }

    .game .game-container .game-info .game-details {
        flex-direction: row;
    }

    .game .game-container .game-info .image {
        width: 130px;
        height: 136px;
        background-size: 100%;
    }

    .game .game-container .game-info .game-data {
        width: calc(100% - 130px - 20px);
        flex-direction: column;
        align-items: flex-start;
    }

    .game .game-container .game-info .game-data .buttons {width: 100%;}

    .game .game-container .game-info .game-data .download.only {
        width: 100%;
        border-radius: 55px;
        padding: 0px 20px;
        gap: 5px;
    }

    .game .game-container .game-info .game-data .play {
        width: 100%;
        border-radius: 55px;
        padding: 0px 20px;
        gap: 5px;
    }

    .game .game-container .game-info .game-data .play span {
        display: flex;
        color: #FFF;
        font-size: 14px;
        font-weight: 500;
    }

    .game .game-container .game-info .game-data .download.only span {
        display: flex;
        color: #FFF;
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 450px) {
    .game .game-container .right .game-actions .table .col.status span.processing b {
        display: none;
    }
}

@media(max-width: 1105px) {
    .game .game-container .right .game-actions .table {
        max-height: 515px;
    }

    .game .game-container .right .game-actions.need-login .table {
        max-height: 258px;
    }
}

@media(max-width: 857px) {
    .game .game-container .right .game-actions .table {
        max-height: 496px;
    }
}

@media(max-width: 800px) {
    .game .game-container .right .game-actions .table {
        height: fit-content;
        max-height: 600px;
    }

    .game .game-container .right .game-actions.need-login .table {
        height: fit-content;
        max-height: 600px;
    }
}

.game .game-container .no-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.game .game-container .no-login .info-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.game .game-container .no-login .info-block .icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(84deg, #4FACFE -7.08%, #00D1DB 132.64%), linear-gradient(270deg, #4FB5FE -139.08%, #000BDB 224.64%), #30344F;
    box-shadow: 0px 0px 15px 0px rgba(70, 177, 250, 0.40);
}

.game .game-container .no-login .info-block .icon svg {}
.game .game-container .no-login .info-block span {
    display: block;
    width: calc(100% - 24px);
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
     /* 15.4px */
    line-height: 16px;
}

@media (max-width: 413px) {
    .game .game-container .game-info .game-data .play svg {
        display: none;
    }
}