
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
.anounce__freespins {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    background: var(--gradient-main-dark);
    border-radius: 15px;
    overflow: hidden;
}

.anoounce__left {
    margin: 15px 0 15px 40px;
    position: relative;
    z-index: 2;
    color: var(--color-gray);
}

.anounce__title {
    margin-bottom: 15px;
    max-width: 450px;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.anounce__highlight {
    color: var(--color-yellow);
    white-space: nowrap; display: flex; align-items: center; gap: 7px;
}

.anounce__highlight-icon {
    width: 30px;
}

.anounce__description {
    max-width: 450px;
    font-weight: 400;
    font-size: 13px;
    line-height: 155%;
    display: flex;
    align-items: center;
}

.anounce__image {
    position: absolute;
    right: 0;
    left: calc(55%);
    height: 100%;
    background: url(/assets/images/freespin_anounce.png) no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
    background-size: 600px;
    z-index: 1;
    background-position: left 52%;
}

.arrowed-list li::before {
    /*content: " \2192";
    margin-right: 10px;
    font-size: 10px;
    color: var(--color-white);*/
}
.game-container {
    position: relative;
    margin: 0 auto 15px auto;
    max-width: 1200px;
    width: 100%;
}

.game-area {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.game-area__profile {
    flex-direction: column;
}

.game-sidebar {
    min-width: 305px;
    max-width: 305px;
    background: var(--color-secondary-bg);
    min-height: 500px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.game-sidebar__short {
    min-height: 440px;
}

.game-sidebar__profile {
    background: none;
    min-height: auto;
    border-radius: 0;
}

.game-sidebar__heading {
    width: 100%;
    padding: 15px 25px;
    font-size: 14px;
    background: var(--color-primary-dark);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    color: #fff;
}

.game-sidebar__body {
    padding: 20px 15px;
    flex: auto;
}

.game-sidebar__input-wrapper {
    position: relative;
    margin-top: 25px;
}

.game-sidebar__input-wrapper_no-margin {
    margin-top: 0;
}

.game-sidebar__play-button-wrapper {
    margin-top: 25px;
}

.game-sidebar__input {
    width: 100%;
    display: block;
    border: solid 1px #1b2030;
    background: #252d42;
    font-size: 16px;
    line-height: 45px;
    padding: 0 12px;
    color: #fff;
    outline: none;
    border-radius: 8px;
}

.game-sidebar__input_darker {
    background: var(--color-secondary-bg);
}

.game-container_wallet {
    background: var(--color-secondary-bg);
    border-radius: 12px;
    color: #cdcdcd;
}

.wallet-header {
    display: flex;
    justify-content: space-around;
    background: var(--color-primary-dark);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 1px solid var(--color-main-border);
    /* padding: 0px 20px; */
}

.wallet-header__item {
    display: block;
    padding: 15px 20px;
    flex: 1;
    text-align: center;
    position: relative;
    transition: .2s color;
}

.wallet-header__item:hover {
    cursor: pointer;
    color: #fff;
}

.wallet-header__item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.wallet-body {
    background: #20273a;
    border-radius: 15px;
    margin-top: 5px;
    display: flex;
    width: 100%;
}

.wallet-sidebar {
    flex: 1;
    padding: 25px;
    border-right: 1px solid var(--color-primary-hover);
}

.wallet-area {
    flex: 2;
    padding: 25px;
}

.wallet-options__item:hover,
.wallet-options__item.active {
    border-color: #1475e1;
    /* border:1px solid #1475e1; */
    cursor: pointer;
}


.wallet-options__item.active .wallet-options__item-comission {
    background: var(--color-accent);
    color: #fff;

}

.wallet-options__item-image {
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
    justify-content: center;
    margin-right: 10px;
    background: var(--color-primary-dark);
}

.wallet-options__item-image img {
    max-width: 100%;
    height: 22px;
}

.wallet-options__item-name {
    font-size: 13px;
    color: #fff;
    text-align: left;
}

.wallet-options__item-comission {
    margin-left: auto;
    margin-right: 11px;
    font-size: 12px;
    color: #908f8f;
    background: var(--color-semi-dark);
    padding: 2px 5px;
    border-radius: 3px;
    width: 25px;
    height: 18px;
    position: relative;
}

.wallet-options__item-comission__checked {
    display: none;
}

.wallet-options__item-comission__checked:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wallet-options__item.active .wallet-options__item-comission__value-wrapper {
    display: none;
}

.wallet-options__item.active .wallet-options__item-comission__checked {
    display: block;
}

.wallet-sidebar__header {
    margin-bottom: 10px;
}

.payment-promo {
    display: none;

}

.small-placeholder::placeholder {}

.wallet-area-select {
    margin-top: 10px;
    display: none;
}

.wallet-area__payway {
    display: flex;
    align-items: center;
}

.wallet-area__payway-image {
    width: 20px;
    margin-left: 10px;
    margin-right: 5px;
}

.wallet-area__payway-name {
    color: #fff;
}

.wallet-area__delimiter {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
}

.wallet-area__delimiter::before {
    content: '';
    position: absolute;
    width: 100%;
    background: var(--color-primary-hover);
    height: 1px;
    left: 0;
    top: 50%;
}

.wallet-area__delimiter_item {
    background: var(--color-secondary-bg);
    position: relative;
    z-index: 55;
    padding: 0 20px;
    font-size: 10px;
    color: #585858;
    font-weight: 800;
}

.wallet-area__payway-image {
    width: 20px;
    display: inline-block;
}

.wallet-area__payway-image img {
    max-width: 100%;
}

.sum-options {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -5px 5px -5px;
}

.sum-option-wrapper {
    width: 25%;
    padding: 5px;
}

.sum-option {
    background: transparent;
    -webkit-appearance: none;
    outline: none;
    border: 1px solid #404040;
    color: #b9b9b9;
    /* width: 25%; */
    width: 100%;
    border-radius: 8px;
    height: 42px;
    font-weight: 500;
    font-size: 16px;
}

.sum-option:hover {
    border-color: var(--color-accent);
    color: #fff;
    cursor: pointer;
    /* border-width: 2px; */
}

.sum-option.active {
    border-color: var(--color-accent);
    color: #fff;
}

.sum-option__currency {
    font-size: 12px;
}

.wallet-input-wrapper {
    position: relative;
}

.payment-field {
    flex: 1;
}

.payment-field label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.payment-promocode-call {
    color: #adadad;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
    border-bottom: 1px dashed;
}

.payment-promocode-call:hover {
    color: #fff;
    cursor: pointer;
}

.payment-result__row {
    display: flex;
    font-size: 12px;
    color: #adadad;
    margin-bottom: 5px;
}

.payment-fake-row {
    flex: 1;
    margin-right: 10px;
}

.payment-result__row_finish {
    font-weight: 800;
    font-size: 14px;
    margin-top: 7px;
}

.payment-result__row_finish .payment-result__row-label {
    text-transform: uppercase;
}

.payment-result__row-value {
    color: #fff;
    /* flex: 1; */
    /* text-align: right; */
    position: relative;
}

.payment-result__row-dots {
    flex: 1;
    /* border-bottom: 1px dotted #484848; */
    /* margin: 0 7px; */
    /* transform: translateY(-2px); */
}

.payment-raffle {
    margin-top: 25px;
    color: #adadad;
    display: flex;
    align-items: center;
}

.payment-raffle__title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #cdcdcd;
}

.payment-raffle__description {
    font-size: 12px;
}

.payment-raffle__description b {
    color: #fff;
    font-weight: 400;
}

.payment-raffle__left {
    font-size: 60px;
    margin-right: 15px;
    color: var(--color-green);
}

.confirm-wallet {
    background: var(--color-secondary-bg);
    font-size: 18px;
    line-height: 1.75;
    padding: 10px 25px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    min-width: 215px;
    display: block;
    word-break: break-all;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
}

.confirm-wallet-button {
    display: block;
    background: none;
    -webkit-appearance: none;
    border: 1px solid var(--color-main-border);
    color: #cdcdcd;
    padding: 12px 15px;
    margin: 12px 5px 0 5px;
    border-radius: 8px;
    font-size: 13px;
    flex: 1;
    cursor: pointer;
}

.confirm-wallet-button:hover {
    color: #fff;
}

.confirm-wallet-go {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.confirm-wallet-go:hover {
    background: #33b12a;
    border-color: #33b12a;
}

.confirm-wallet-edit {
    background: var(--color-yellow);
    color: #fff;
    border-color: var(--color-yellow);
}

.confirm-wallet-edit:hover {
    background: #d1990c;
    border-color: #d1990c;
}

.game-sidebar__play-button.game-sidebar__play-button_green {
    width: 100%;
    margin-top: 15px;
    /* background: var(--color-green); */
    background: var(--gradient-green);
    color: var(--color-white);
    /* background: linear-gradient(45.87deg,#89C763 0%, #0E9347 100%); */
}

.game-sidebar__play-button.game-sidebar__play-button_red {
    width: 100%;
    margin-top: 15px;
    /* background: var(--color-green); */
    background: var(--rank-gradient-red);
    color: var(--color-white);
    /* background: linear-gradient(45.87deg,#89C763 0%, #0E9347 100%); */
}

.game-sidebar__play-button.game-sidebar__play-button_red:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 15px 0 rgba(241, 30, 30, 0.3);
    box-shadow: 0 0 15px 0 rgba(241, 30, 30, 0.3);
    cursor: pointer;
}

.game-sidebar__play-button.game-sidebar__play-button_green:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 15px 0 rgba(58, 196, 48, .3);
    box-shadow: 0 0 15px 0 rgba(58, 196, 48, .3);
    cursor: pointer;
}

.wallet-header {
    border: 1px solid #1b2030;
    background: #20273a;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    /* padding: 0px 20px; */
}

.wallet-header__item {
    display: block;
    padding: 15px 20px;
    flex: 1;
    text-align: center;
    position: relative;
    transition: .2s color;
}

.wallet-header__item:hover {
    cursor: pointer;
    color: #fff;
}

.wallet-header__item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.wallet-body {
    display: flex;
    width: 100%;
}

.wallet-sidebar {
    flex: 1;
    padding: 25px;
    border-right: 1px solid var(--color-primary-hover);
}

.wallet-area {
    flex: 2;
    padding: 25px;
}

.wallet-options__item {
    display: flex;
    align-items: center;
    border: 1px solid #1b2030;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    width: 100%;
    background: #252d42;
    outline: none;
    position: relative;
}

.wallet-options__item:hover,
.wallet-options__item.active {
    border-color: var(--color-accent);
    cursor: pointer;
}


.wallet-options__item.active .wallet-options__item-comission {
    background: var(--color-accent);
    color: #fff;

}

.wallet-options__item-image {
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
    justify-content: center;
    margin-right: 10px;
    background: #282f47;
}

.wallet-options__item-image img {
    max-width: 100%;
    height: 22px;
}

.wallet-options__item-name {
    font-size: 13px;
    color: #fff;
    text-align: left;
}

.wallet-options__item-comission {
    margin-left: auto;
    margin-right: 11px;
    font-size: 12px;
    color: #908f8f;
    background: var(--color-semi-dark);
    padding: 2px 5px;
    border-radius: 3px;
    width: 25px;
    height: 18px;
    position: relative;
}

.wallet-options__item-comission__checked {
    display: none;
}

.wallet-options__item-comission__checked:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wallet-options__item.active .wallet-options__item-comission__value-wrapper {
    display: none;
}

.wallet-options__item.active .wallet-options__item-comission__checked {
    display: block;
}

.wallet-sidebar__header {
    margin-bottom: 10px;
}

.payment-promo {
    display: none;

}

.small-placeholder::placeholder {}

.wallet-area-select {
    margin-top: 10px;
    display: none;
}

.wallet-area__payway {
    display: flex;
    align-items: center;
}

.wallet-area__payway-image {
    width: 20px;
    margin-left: 10px;
    margin-right: 5px;
}

.wallet-area__payway-name {
    color: #fff;
}

.wallet-area__delimiter {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
}

.wallet-area__delimiter::before {
    content: '';
    position: absolute;
    width: 100%;
    background: var(--color-primary-hover);
    height: 1px;
    left: 0;
    top: 50%;
}

.wallet-area__delimiter_item {
    background: var(--color-secondary-bg);
    position: relative;
    z-index: 55;
    padding: 0 20px;
    font-size: 10px;
    color: #585858;
    font-weight: 800;
}

.wallet-area__payway-image {
    width: 20px;
    display: inline-block;
}

.wallet-area__payway-image img {
    max-width: 100%;
}

.sum-options {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -5px 5px -5px;
}

.sum-option-wrapper {
    width: 25%;
    padding: 5px;
}

.sum-option {
    background: transparent;
    -webkit-appearance: none;
    outline: none;
    border: 1px solid #404040;
    color: #b9b9b9;
    /* width: 25%; */
    width: 100%;
    border-radius: 8px;
    height: 42px;
    font-weight: 500;
    font-size: 16px;
}

.sum-option:hover {
    border-color: var(--color-accent);
    color: #fff;
    cursor: pointer;
    /* border-width: 2px; */
}

.sum-option.active {
    border-color: var(--color-accent);
    color: #fff;
}

.sum-option__currency {
    font-size: 12px;
}

.wallet-input-wrapper {
    position: relative;
}

.payment-field {
    flex: 1;
}

.payment-field label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.payment-promocode-call {
    color: #adadad;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
    border-bottom: 1px dashed;
}

.payment-promocode-call:hover {
    color: #fff;
    cursor: pointer;
}

.payment-result__row {
    display: flex;
    font-size: 12px;
    color: #adadad;
    margin-bottom: 5px;
}

.payment-fake-row {
    flex: 1;
    margin-right: 10px;
}

.payment-result__row_finish {
    font-weight: 800;
    font-size: 14px;
    margin-top: 7px;
}

.payment-result__row_finish .payment-result__row-label {
    text-transform: uppercase;
}

.payment-result__row-value {
    color: #fff;
    /* flex: 1; */
    /* text-align: right; */
    position: relative;
}

.payment-result__row-dots {
    flex: 1;
    /* border-bottom: 1px dotted #484848; */
    /* margin: 0 7px; */
    /* transform: translateY(-2px); */
}

.payment-raffle {
    margin-top: 25px;
    color: #adadad;
    display: flex;
    align-items: center;
}

.payment-raffle__title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #cdcdcd;
}

.payment-raffle__description {
    font-size: 12px;
}

.payment-raffle__description b {
    color: #fff;
    font-weight: 400;
}

.payment-raffle__left {
    font-size: 60px;
    margin-right: 15px;
    color: var(--color-green);
}

.confirm-wallet {
    background: var(--color-secondary-bg);
    font-size: 18px;
    line-height: 1.75;
    padding: 10px 25px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    min-width: 215px;
    display: block;
    word-break: break-all;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
}

.confirm-wallet-button {
    display: block;
    background: none;
    -webkit-appearance: none;
    border: 1px solid var(--color-main-border);
    color: #cdcdcd;
    padding: 12px 15px;
    margin: 12px 5px 0 5px;
    border-radius: 8px;
    font-size: 13px;
    flex: 1;
    cursor: pointer;
}

.confirm-wallet-button:hover {
    color: #fff;
}

.confirm-wallet-go {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.confirm-wallet-go:hover {
    background: #33b12a;
    border-color: #33b12a;
}

.confirm-wallet-edit {
    background: var(--color-yellow);
    color: #fff;
    border-color: var(--color-yellow);
}

.confirm-wallet-edit:hover {
    background: #d1990c;
    border-color: #d1990c;
}

.game-sidebar__play-button.game-sidebar__play-button_green {
    width: 100%;
    margin-top: 15px;
    /* background: var(--color-green); */
    background: var(--gradient-green);
    color: var(--color-white);
    /* background: linear-gradient(45.87deg,#89C763 0%, #0E9347 100%); */
}

.game-sidebar__play-button.game-sidebar__play-button_red {
    width: 100%;
    margin-top: 15px;
    /* background: var(--color-green); */
    background: var(--rank-gradient-red);
    color: var(--color-white);
    /* background: linear-gradient(45.87deg,#89C763 0%, #0E9347 100%); */
}

.game-sidebar__play-button.game-sidebar__play-button_red:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 15px 0 rgba(241, 30, 30, 0.3);
    box-shadow: 0 0 15px 0 rgba(241, 30, 30, 0.3);
    cursor: pointer;
}

.game-sidebar__play-button.game-sidebar__play-button_green:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 15px 0 rgba(58, 196, 48, .3);
    box-shadow: 0 0 15px 0 rgba(58, 196, 48, .3);
    cursor: pointer;
}

.game-sidebar__play-button_green.slots-auto-game {
    margin-top: 0;
}

.game-sidebar__play-button_green.plinko-auto-game {
    margin-top: 0;
}

.active-badge {
    position: relative;
}

.active-badge:before {
    content: '';
    position: absolute;
    right: 3px;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2aff38;
    -webkit-box-shadow: 0 0 4px 2px rgba(29, 191, 72, 0.5);
    box-shadow: 0 0 4px 2px rgba(29, 191, 72, 0.5);
}

.active-badge_mobile:before {
    right: -10px;
}

/* .new-badge_header:before {
    top: -11px;
} */

.new-badge {
    position: relative;
}

.new-badge:before {
    content: 'new';
    position: absolute;
    background: red;
    font-size: 10px;
    padding: 2px 3px;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    right: -6px;
    top: -2px;
    z-index: 5;
}

.new-badge_header:before {
    top: -11px;
}

.new-badge-mobile {
    position: relative;
}

.new-badge-mobile:before {
    content: 'new';
    position: absolute;
    background: red;
    font-size: 10px;
    padding: 2px 3px;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    left: 23px;
    top: 4px;
    z-index: 5;
}

/* .payment-result__row-value:before{
    content: '';
    position: absolute;
    height: 1px;
    left: 7px;
    right: 10px;
    bottom: 2px;
    border-bottom: 1px dotted #585858;
} */
.payment-total__first-row {
    display: flex;
}

.payment-total__second-row {
    display: flex;
    margin-top: 10px;
    /*padding-right: 10px;*/
}

.promo-column {
    flex: 1;
    margin-right: 10px;
}

.payment-result {
    flex: 1;
    margin-top: 5px;
}

.payment-total {
    border: 2px solid var(--color-green);
    padding: 20px;
    background: var(--color-secondary-bg);
    border-radius: 10px;
}

.payment-sum {
    /*margin-right: 10px;*/
}

.game-sidebar__input.game-sidebar__input_dark {
    /* padding-left: 38px; */
}

.game-sidebar__input_dark.success {
    border-color: var(--color-green);
}

.game-sidebar__input_dark.success:focus {
    border-color: var(--color-green);
}

.wallet-input-currency {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #9c9c9c;
    font-size: 14px;
    padding-bottom: 1px;
    pointer-events: none;
}

.wallet-input-success {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-green);
    display: none;
}

.wallet-input-success.active {
    display: block;
}

.wallet-input-success:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.game-container_anounce {
    margin-bottom: 25px;
}

.fast-message:before {
    left: 90px;
    top: 0px;
    border-radius: 7px;
    padding: 0px 5px;
    content: "FAST";
    position: absolute;
    font-size: 8px;
    background: #1475e1;
}

.bonus-message:before {
    left: 150px;
    top: 10px;
    border-radius: 7px;
    padding: 0px 5px;
    content: "bonus";
    position: absolute;
    font-size: 8px;
    background: #1475e1;
}

.hr-delimetr{
    top: 40px;
    width: 100%;
    height: 4px;
    left: 0;
    background: url(../images/borders--dark.svg) repeat;
    margin-bottom: 15px;
}

.h1Wallets{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.warningPaymentBlock1:before{
    left: 15px;
    margin-top:-25px;
    border-radius: 7px;
    padding: 0px 5px;
    content: "ВНИМАНИЕ!";
    position: absolute;
    font-size: 9px;
    color: #fff;
    background: #1475e1;
}
.warningPaymentBlockRed:before{
    left: 15px;
    margin-top:-25px;
    border-radius: 7px;
    padding: 0px 5px;
    content: "ВАЖНАЯ ИНФОРМАЦИЯ!";
    position: absolute;
    font-size: 9px;
    color: #fff;
    background: red;
}
.blocks-wallet{
    width: 100%;
    padding: 0px 20px;
}
.warningPaymentBlock-second{
    border: 1px solid #1475e1;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    display: grid;
    margin-top: 15px;
}
.warningPaymentBlock{
    border: 1px dashed red;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    display: grid;
    margin-top: 15px;
    span{
        color: red;
        font-weight: bold;
        font-size: 12px
    }
}

.text-wild {
    font-weight: 800;
    background-color: rgb(20 117 225);
    background-image: linear-gradient(90deg, rgb(59 136 222) 0%, rgb(121 231 248) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.arrowed-list li::before {
    content: " \2192";
    margin-right: 10px;
    font-size: 10px;
    color: #fff;
}

.bonus-listselect{
    display: inline-flex;
    margin-top: 15px;
    gap: 5px;
}

.bonusItem{
    width: 150px;
    height: 150px;
    border: 1px solid black;
    border-radius: 15px;
    background-image: url(/images/anim_slots/vs20sugarrushx.png);
    background-size: cover;
    background-position: center;
    /*box-shadow: 0 0 12px #0000004d;*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}

.bonusItem-head{
    background: #1b2030;
    width: 100%;
    height: 20px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    position: relative;
}

.bonusItem-bottom{
    background: #1b2030;
    width: 100%;
    height: 20px;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.bonusItem:hover, .bonusItem:active{
    cursor: pointer;
    border: 1px solid #1475e1;
    .bonusItem-head, .bonusItem-bottom{
        background: #1475e1;
    }
}

@media (max-width: 625px) {
  .wallet-body{
    display: block;
  }
}


/* === Новый стиль для Секции Кошелька === */

/* --- Переменные для легкой настройки --- */
:root {
    /* Основные цвета */
    --wallet-bg-primary: #1c1f30; /* Темно-серый-синий */
    --wallet-bg-secondary: #212537; /* Чуть светлее */
    --wallet-bg-secondary-alpha: rgba(39, 49, 66, 0.8); /* Полупрозрачный вариант */
    --wallet-bg-tertiary: #222537; /* Светлее серый */
    --wallet-border-color: rgba(255, 255, 255, 0.1);
    --wallet-divider-color: rgba(255, 255, 255, 0.08);
    --wallet-text-primary: #f3f4f6; /* Почти белый */
    --wallet-text-secondary: #9ca3af; /* Серый */
    --wallet-text-muted: #6b7280; /* Темно-серый */
    --wallet-accent-color: #1775e17a; /* Ярко-синий */
    --wallet-accent-gradient: linear-gradient(45deg, #3b82f626, #60a5fa54);
    --wallet-success-color: #22c55e; /* Зеленый */
    --wallet-success-gradient: linear-gradient(45deg, #22c55e, #4ade80);
    --wallet-warning-color: #f97316; /* Оранжевый */
    --wallet-danger-color: #ef4444; /* Красный */
    --wallet-radius-lg: 12px;
    --wallet-radius-md: 8px;
    --wallet-radius-sm: 6px;
    --wallet-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.2);
    --wallet-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
    --wallet-blur: 5px;
    --wallet-transition: 0.25s ease-out;
}

/* --- Убираем стандартные стрелки для input[type=number] --- */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* --- Общий контейнер кошелька --- */
.game-container_wallet {
    background: var(--wallet-bg-secondary);
    border-radius: var(--wallet-radius-lg);
    color: var(--wallet-text-secondary);
    box-shadow: var(--wallet-shadow-md);
    border: 1px solid var(--wallet-border-color);
    margin-bottom: 2rem; /* Отступ снизу */
}

/* --- Шапка кошелька (Табы) --- */
.wallet-header {
    display: flex;
    justify-content: space-around;
    background: var(--wallet-bg-primary); /* Темнее фона */
    border-top-left-radius: var(--wallet-radius-lg);
    border-top-right-radius: var(--wallet-radius-lg);
    border-bottom: 1px solid var(--wallet-divider-color);
    padding: 0; /* Убираем старый паддинг */
}

.wallet-header__item {
    display: block;
    padding: 1rem 1.25rem; /* 16px 20px */
    flex: 1;
    text-align: center;
    position: relative;
    color: var(--wallet-text-secondary);
    font-weight: 500;
    font-size: 0.95rem; /* 15px */
    transition: color var(--wallet-transition), background-color var(--wallet-transition);
    border-top-left-radius: var(--wallet-radius-lg); /* Скругление для первой вкладки */
    border-top-right-radius: var(--wallet-radius-lg); /* Скругление для последней вкладки */
    cursor: pointer;
}

.wallet-header__item:first-child { border-top-right-radius: 0; }
.wallet-header__item:last-child { border-top-left-radius: 0; }

.wallet-header__item:hover {
    color: var(--wallet-text-primary);
    background-color: rgba(255, 255, 255, 0.03); /* Легкая подсветка */
}

.wallet-header__item.active {
    color: var(--wallet-text-primary);
    font-weight: 600;
}

.wallet-header__item.active::after {
    content: "";
    position: absolute;
    bottom: -1px; /* Накладывается на бордер */
    left: 0;
    width: 100%;
    height: 2px; /* Толще линия */
    background: var(--wallet-accent-gradient); /* Градиентная линия */
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 8px rgb(59 130 246 / 0%); /* Свечение под линию */
    animation: underline-grow 0.3s ease-out; /* Анимация появления */
}

@keyframes underline-grow {
    from { width: 0; left: 50%; }
    to { width: 100%; left: 0; }
}

/* --- Тело кошелька --- */
.wallet-body {
    display: flex;
    width: 100%;
    background: transparent; /* Убираем старый фон */
    border-radius: 0; margin: 0; /* Убираем старые стили */
}

/* Адаптация для мобильных */
@media (max-width: 768px) { /* Подбери точку перехода */
  .wallet-body {
    flex-direction: column;
  }
  .wallet-sidebar {
    border-right: none !important; /* Убираем разделитель */
    border-bottom: 1px solid var(--wallet-divider-color); /* Добавляем нижний */
  }
}

/* --- Сайдбар (Левая колонка) --- */
.wallet-sidebar {
    flex: 1; /* Занимает доступное место (минимум 1) */
    min-width: 260px; /* Минимальная ширина */
    padding: 1.5rem; /* 24px */
    border-right: 1px solid var(--wallet-divider-color); /* Разделитель */
    border: none !important; /* Переопределяем инлайн стиль */
}

.wallet-sidebar__header {
    margin-bottom: 1rem; /* 16px */
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: var(--wallet-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Селект "Все методы" */
.wallet-options select.wallet-options__item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem; /* 12px 16px */
    background-color: var(--wallet-bg-tertiary);
    border: 1px solid var(--wallet-border-color);
    border-radius: var(--wallet-radius-md);
    color: var(--wallet-text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none; /* Убираем стандартную стрелку */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Своя стрелка */
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    transition: border-color var(--wallet-transition), background-color var(--wallet-transition);
}
.wallet-options select.wallet-options__item:hover {
    border-color: var(--wallet-accent-color);
}
.wallet-options select.wallet-options__item:focus {
    outline: none;
    border-color: var(--wallet-accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Контейнер для кнопок методов */
.wallet-options {
    margin-top: 1rem; /* Отступ после селекта */
}

/* Кнопка выбора метода */
button.wallet-options__item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem; /* Уменьшил паддинг */
    border: 1px solid var(--wallet-border-color);
    border-radius: var(--wallet-radius-md);
    background: var(--wallet-bg-secondary); /* Используем вторичный фон */
    margin-bottom: 0.75rem; /* 12px */
    cursor: pointer;
    transition: border-color var(--wallet-transition), background-color var(--wallet-transition), box-shadow var(--wallet-transition);
    outline: none;
    appearance: none; /* Для сброса стилей кнопки */
    text-align: left; /* Текст по левому краю */
}

button.wallet-options__item:hover {
    border-color: var(--wallet-accent-color);
    background-color: var(--wallet-bg-tertiary); /* Слегка осветляем */
}

button.wallet-options__item.active {
    border-color: var(--wallet-accent-color);
    /* background-color: rgba(59, 130, 246, 0.1); */ /* Легкий синий фон */
    /* box-shadow: 0 0 0 1px var(--wallet-accent-color) inset; */ /* Внутренняя обводка */
}

/* Иконка метода */
.wallet-options__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Уменьшил */
    height: 36px;
    margin-right: 0.75rem; /* 12px */
    background: var(--wallet-bg-primary); /* Темнее фона карточки */
    border-radius: var(--wallet-radius-sm);
    padding: 0.25rem; /* Небольшой внутренний отступ */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}
.wallet-options__item-image img,
.wallet-options__item-image svg {
    max-width: 100%;
    max-height: 20px; /* Ограничиваем высоту */
    display: block;
}

/* Название метода */
.wallet-options__item-name {
    flex-grow: 1; /* Занимает доступное место */
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: var(--wallet-text-primary);
}
.wallet-options__item-name > span:last-child { /* Лимиты */
    font-size: 0.75rem; /* 12px */
    color: var(--wallet-text-secondary);
    display: block;
    margin-top: 2px;
}

/* Комиссия / Галочка */
.wallet-options__item-comission {
    margin-left: 0.75rem;
    margin-right: 0; /* Убираем правый отступ */
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    color: var(--wallet-text-secondary);
    background: var(--wallet-bg-primary); /* Темнее карточки */
    padding: 0.25rem 0.5rem; /* 4px 8px */
    border-radius: var(--wallet-radius-sm);
    width: auto; /* Убираем фикс ширину */
    height: auto; /* Убираем фикс высоту */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px; /* Минимальная ширина для галочки */
    min-height: 28px;
    transition: background-color var(--wallet-transition), color var(--wallet-transition);
}
/* Стили для галочки */
.wallet-options__item.active .wallet-options__item-comission {
    background: var(--wallet-success-color);
    color: #ffffff;
}
.wallet-options__item-comission__checked:after {
    left: 50%; /* Центрируем */
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg); /* Центрируем и поворачиваем */
    width: 5px; height: 9px; /* Размеры галочки */
}

/* --- Основная область (Правая колонка) --- */
.wallet-area {
    flex: 2; /* Занимает больше места */
    padding: 1.5rem; /* 24px */
    border: none !important; /* Переопределяем инлайн стиль */
}

/* Заглушка "Выберите метод" */
#wallet-area-hide1 {
    text-align: center;
    margin: 2rem auto; /* Отступы */
    color: var(--wallet-text-secondary);
}
.h1Wallets {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--wallet-text-primary);
    margin-bottom: 0.5rem;
}
.hr-delimetr {
    width: 100%;
    height: 1px; /* Тонкая линия */
    background: var(--wallet-divider-color);
    border: none;
    margin: 1rem 0 1.5rem 0;
}
#wallet-area-hide1 .hr-delimetr { margin-bottom: 0; } /* Убираем нижний отступ у заглушки */

/* --- Стили для Fiat и Crypto --- */

/* Общие поля ввода */
.game-sidebar__input {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem; /* 12px 16px */
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    color: var(--wallet-text-primary);
    background-color: var(--wallet-bg-tertiary); /* Светлее основного */
    border: 1px solid var(--wallet-border-color);
    border-radius: var(--wallet-radius-md);
    transition: border-color var(--wallet-transition), box-shadow var(--wallet-transition);
}
.game-sidebar__input:focus {
    outline: none;
    border-color: var(--wallet-accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
.game-sidebar__input::placeholder {
    color: var(--wallet-text-muted);
}
/* Успешная валидация (если используется класс .success) */
.game-sidebar__input.success {
    border-color: var(--wallet-success-color);
}
.game-sidebar__input.success:focus {
    border-color: var(--wallet-success-color);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

/* Обертка для инпута с доп. элементами */
.wallet-input-wrapper {
    position: relative;
}

/* Валюта внутри инпута */
.wallet-input-currency {
    position: absolute;
    top: 50%;
    right: 1rem; /* 16px */
    transform: translateY(-50%);
    color: var(--wallet-text-secondary);
    font-size: 0.875rem; /* 14px */
    pointer-events: none;
}
/* Галочка успеха внутри инпута */
.wallet-input-success {
    position: absolute;
    right: 1rem; /* 16px */
    top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--wallet-success-color);
    display: none; /* Управляется JS */
}
.wallet-input-success.active { display: block; }
.wallet-input-success:after {
    /* Стили галочки остаются */
    content: ""; position: absolute; left: 7px; top: 4px; width: 4px; height: 8px;
    border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
/* Сдвигаем валюту, если есть галочка */
.wallet-input-success.active + .wallet-input-currency {
    right: 2.75rem; /* 16px (изначально) + 20px (галочка) + 8px (отступ) */
}

/* Заголовки полей */
.payment-field label {
    display: block;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: var(--wallet-text-secondary);
    margin-bottom: 0.5rem; /* 8px */
}

/* Контейнер для суммы и результата */
.payment-total {
    background: var(--wallet-bg-primary); /* Темнее основной области */
    border: 1px solid var(--wallet-border-color);
    padding: 1.5rem; /* 24px */
    border-radius: var(--wallet-radius-md);
    margin-top: 1.5rem; /* Отступ */
}
.payment-total__first-row,
.payment-total__second-row {
    display: flex;
    gap: 1rem; /* Расстояние между полями, если их два */
}
.payment-total__second-row { margin-top: 1rem; }
.payment-field { flex: 1; } /* Поля занимают равное место */

/* Промокод */
#promoLink {
    color: var(--wallet-accent-color);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color var(--wallet-transition);
    border-bottom: 1px dashed var(--wallet-accent-color);
    text-decoration: none;
    margin-top: 0.75rem;
    display: inline-block;
}
#promoLink:hover {
    color: #60a5fa; /* Светлее синий */
    border-bottom-style: solid;
}
#promocodeBlock { /* Когда показан */
    margin-top: 1rem;
}

/* Результаты (Комиссия, К оплате) */
.payment-result {
    margin-top: 1.5rem; /* Отступ сверху */
    border-top: 1px solid var(--wallet-divider-color);
    padding-top: 1rem;
}
.payment-result__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.875rem; /* 14px */
    color: var(--wallet-text-secondary);
    margin-bottom: 0.5rem; /* 8px */
}
.payment-result__row-label { }
.payment-result__row-value {
    color: var(--wallet-text-primary);
    font-weight: 500;
}
/* Финальная строка */
.payment-result__row_finish {
    font-weight: 600;
    font-size: 1rem; /* 16px */
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--wallet-divider-color);
}
.payment-result__row_finish .payment-result__row-label {
    text-transform: uppercase;
    color: var(--wallet-text-primary);
}
.payment-result__row_finish .payment-result__row-value {
    color: var(--wallet-accent-gradient); /* Зеленый для итога */
    font-weight: 700;
}
/* Убираем точки */
.payment-result__row-dots { display: none; }

/* Кнопка Оплатить */
.payment-result__row button.btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem; /* Увеличили паддинг */
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--wallet-radius-md);
    background: var(--wallet-accent-gradient); /* Зеленый градиент */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgb(59 130 246 / 30%);
    transition: background var(--wallet-transition), box-shadow var(--wallet-transition), transform var(--wallet-transition);
}
.payment-result__row button.btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #16a34a, #22c55e); /* Чуть темнее */
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}
.payment-result__row button.btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(34, 197, 94, 0.2);
}
.payment-result__row button.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- Стили для Крипто-пополнения --- */
#CryptoPayDiv { /* Блок с выбором крипты */
    /* Стили контейнера, если нужны */
}
.crypto-wallets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Адаптивная сетка */
    gap: 0.75rem; /* 12px */
    padding: 1rem 0; /* Отступы сверху/снизу */
}
/* Кнопка выбора криптовалюты */
button.crypto-items {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem; /* Уменьшил паддинг */
    background-color: var(--wallet-bg-tertiary);
    border: 1px solid var(--wallet-border-color);
    border-radius: var(--wallet-radius-md);
    cursor: pointer;
    transition: border-color var(--wallet-transition), background-color var(--wallet-transition), box-shadow var(--wallet-transition);
    color: var(--wallet-text-secondary); /* По умолчанию серый */
    width: 100%; /* Занимает всю ячейку грида */
    outline: none;
    appearance: none;
    text-align: left;
}
button.crypto-items:hover {
    border-color: var(--wallet-accent-color);
    background-color: var(--wallet-bg-secondary);
    color: var(--wallet-text-primary);
}
button.crypto-items.active { /* Класс для активной кнопки */
    border-color: var(--wallet-accent-color);
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 1px var(--wallet-accent-color) inset;
    color: var(--wallet-text-primary);
}
svg.icon-crypto {
    width: 24px;
    height: 24px;
    /* margin-right: 0.6rem; */
    flex-shrink: 0;
}
span.crypto-span {
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
}

/* Блок информации об оплате криптой */
#pay-inform { /* По умолчанию скрыт JS */
    margin-top: 1.5rem;
}
.cryptowallets-it {
    background-color: var(--wallet-bg-primary);
    padding: 1.5rem;
    border-radius: var(--wallet-radius-md);
    border: 1px solid var(--wallet-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.cryptowallets-method-select {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wallet-text-primary);
}
img.crypto-walletaddr {
    display: block;
    width: 160px; height: 160px;
    padding: 0; /* Убираем старый */
    margin: 0 auto; /* Центрируем */
    background-color: #ffffff; /* Белый фон для QR */
    border-radius: var(--wallet-radius-sm);
    border: 4px solid #ffffff; /* Белая рамка */
    box-shadow: var(--wallet-shadow-sm);
}
.crypto-walletaddr[style*="display: flex"] { /* Адрес текстом */
    display: flex;
    align-items: center;
    background-color: var(--wallet-bg-tertiary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--wallet-radius-sm);
    color: var(--wallet-text-secondary);
    font-size: 0.8rem; /* Мельче */
    word-break: break-all;
    cursor: pointer;
    transition: background-color var(--wallet-transition);
}
.crypto-walletaddr[style*="display: flex"]:hover {
    background-color: var(--wallet-bg-secondary);
    color: var(--wallet-text-primary);
}
.crypto-walletaddr svg {
    width: 16px; height: 16px;
    fill: currentColor;
    margin-left: 0.5rem;
    flex-shrink: 0;
}
#pay2 { margin-right: auto; } /* Текст адреса слева */