.payment-page {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.pay-systems, .payment-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.pay-systems {
    margin: 0 -12px -12px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% - 220px);
    padding-top: 5px
}

.pay-system-item {
    width: 22%;
    height: 100px;
    border: 1px solid #d7d7d7;
    background-color: #d7d7d7 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    text-align: center
}

.pay-system-checked {
    border-color: var(--primary-color);
    background-color: rgba(0, 255, 111, .25) !important
}

.pay-system-more {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.payment-form {
    width: 428px;
    border-radius: 10px;
    padding: 35px 28px;
    background: #232531;
}
.payment-form input{
    height: 48px;
    width: 100%;
    background: #2a2c3e;
    border-radius: 10px!important;
    padding: 0 10px;
}
.payment-form .form-input {
    width: 100%;
    height: 48px;
    position: relative;
    margin-bottom: 20px
}

.payment-form .btn-cupon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 48px;
    background: #ec5e57;

}



.payment-form .cuponinfo {
    display: block;
    font-weight: 600;
    padding-top: 7px
}

.payment-form .cuponinfo span {
    color: var(--primary-color)
}

@media only screen and (max-width: 600px) {
    .payment-page {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .payment-page .pay-systems {
        width: 100%;
        margin-bottom: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .payment-page .pay-system-item {
        width: 22%;
        height: 80px;
        background-size: 70%
    }

    .payment-page .payment-form {
        width: 100%
    }
}

.profile__box {
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -16px 0 40px;
    background-color:#373737;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px
}

.profile__box input{
    width: 100%;
    height: 49px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background-color: hsla(0,0%,100%,.05);
    padding: 10px 20px;
    margin-top: 15px;
}

.profile__box .btn {
    width: 100%;
    display: block;
    text-align: center;
}

.profile__box-blprof {
    width: 14%;
    margin: 0 32px 0 0
}

.profile__box-balances {
    width: 30%;
    padding: 8px 32px 0;
    position: relative;
    margin: 0 32px 0 0
}

.profile__box-forms {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.profile__box-avatar img {
    border: 1px solid var(--primary-color);
    width: 100%
}

.profile__box-balances:after, .profile__box-balances:before {
    width: 1px;
    height: auto;
    content: " ";
    display: block;
    position: absolute;
    top: -32px;
    bottom: -32px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(37, 41, 45, 0)), color-stop(48.28%, var(--primary-btn-color)), to(rgba(37, 41, 45, 0)));
    background: linear-gradient(0deg, rgba(37, 41, 45, 0), var(--primary-btn-color) 48.28%, rgba(37, 41, 45, 0))
}

.profile__box-balances:after {
    left: 0
}

.profile__box-balances:before {
    right: 0
}

.profile__box-balances .balance__row + .balance__row {
    margin-top: 29px
}

dl.balance__row {
    margin: 0 0 17px
}

.balance__row dt {
    text-transform: uppercase
}

.balance__row dd {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    overflow: hidden
}

.profile__box-forms .profile__form + .profile__form {
    margin-top: 16px
}

.btn-danger {
    background-color: #ff004d!important;
    color: #fff
}

.btn-danger:hover {
    background-color: #b70035
}

@media only screen and (max-width: 600px) {
    .profile__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .profile__box .profile__box-blprof {
        margin: 0 auto;
        width: 30%;
        margin-bottom: 30px
    }

    .profile__box .profile__box-balances:after, .profile__box .profile__box-balances:before {
        width: 100%;
        height: 1px;
        content: " ";
        display: block;
        position: absolute;
        left: 0;
        top: -15px;
        background: -webkit-gradient(linear, left top, right top, from(rgba(37, 41, 45, 0)), color-stop(48.28%, var(--primary-btn-color)), to(rgba(37, 41, 45, 0)));
        background: linear-gradient(90deg, rgba(37, 41, 45, 0), var(--primary-btn-color) 48.28%, rgba(37, 41, 45, 0))
    }

    .profile__box .profile__box-balances {
        width: 100%;
        padding: 0;
        margin-bottom: 30px
    }

    .profile__box .profile__box-forms {
        width: 100%
    }
}

.reviews__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.reviews__item {
    width: calc(50% - 5px);
    padding: 10px;
    position: relative;
    z-index: 2
}

.reviews__item-box {
    padding: 19px 20px 30px 90px;
    position: relative;
    background: #373737;
    z-index: 2;
    border-radius: 10px
}

.reviews__item-avatar {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    top: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: no-repeat 50%;
    background-size: cover
}

.reviews__item-name {
    padding: 0px 0 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color)
}

.reviews__form {
    width: 100%;
    padding-left: 10px;
    position: relative
}

.reviews__form input {
    width: 100%;
    height: 50px;
    padding: 0 56px 0 24px;
    margin: 0;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.btn{
    position: relative;
    color: #fff;
    font-size: 18px;
    padding: 15px 29px;
    background-color: var(--primary-btn-color);
    transition: .3s;
    border-radius: 10px;
    cursor:pointer;
}
.btn:hover{
    opacity: 0.7;
}
.reviews__form-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0
}

@media only screen and (max-width: 600px) {
    .reviews__item {
        width: 100%
    }

    #load_more_reviews {
        margin: 10px auto;
        text-align: center
    }
}

.chat__block {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 52px;
    position: relative;
    background: #373737;
    border-radius: 10px;
}


.chat__block-header {
    padding: 12px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #414141;
    color: var(--primary-color);
    text-transform: uppercase
}

.chat__block-header-avatar {
    width: 32px;
    height: 32px;
    margin: 0 16px 0 0;
    background: no-repeat 50%;
    background-size: cover
}

.chat__block-header-label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.chat__block-content {
    overflow: hidden;
    overflow-y: auto;
    min-height: 332px;
    max-height: 500px
}

.chat__block-items {
    padding: 8px 10px
}

.chat__block-item {
    padding: 0 6px
}

.chat__block-item-message {
    max-width: 480px;
    padding: 10px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: #343434;
    line-height: 1.54;
    font-size: 14px;
    color: #fff;
    text-align: left
}

.chat__block-item-message:after {
    width: 0;
    height: 0;
    content: " ";
    display: block;
    position: absolute;
    right: 100%;
    top: 50%;
    margin: -6px 0 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid hsla(0, 0%, 100%, .05)
}

.chat__block-item-date {
    margin: 5px 0 17px;
    font-size: 12px;
    color: #5c6673
}

.chat__block-item.item--manager {
    text-align: right
}

.chat__block-item.item--manager .chat__block-item-message:after {
    left: 100%;
    right: auto;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.chat__block-item + .chat__block-item.item--manager {
    margin-top: -6px
}

.chat__block-form {
    width: auto;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px
}

.chat__block-form-input {
    width: 100%;
    padding: 0 54px 0 24px;
    margin: 0;
    height: 45px;
    background: #444444;
    border-radius: 10px!important;
}

.chat__block-form input {
    padding: 0 45px 0 12px
}

.chat__block-form-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    top: 50%;
    margin: -17px 0 0;
    color: rgba(0, 255, 111, .77);
    border: 0;
    background: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}

.chat__block-form-btn svg {
    width: 16px;
    height: 16px
}

.chat__block-form-btn:hover {
    color: var(--primary-color)
}

.link-category {
    color: var(--primary-btn-color)
}

.link-category:hover {
    color: var(--primary-btn-color);
    opacity: .7
}




















/* PLUGIN :: Remodal */
html.remodal-is-locked {
    overflow: hidden;
    touch-action: none;
}
.remodal,
[data-remodal-id] {
    display: none;
}
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}
.remodal-wrapper {
    white-space: nowrap;
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: '';
}
.remodal-overlay,
.remodal-wrapper {
    backface-visibility: hidden;
}
.remodal {
    white-space: normal;
    position: relative;
    outline: 0;
    text-size-adjust: 100%;
}
.remodal-is-initialized {
    display: inline-block;
}
.remodal-overlay {
    background: rgba(0, 0, 0, 0.55);
}
.remodal-overlay.remodal-is-closing,
.remodal-overlay.remodal-is-opening {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
    animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
    animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
    padding: 10px 10px 0;
}
.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    transform: translate3d(0, 0, 0);
    color: #fff;
    background: #1E202C;
    border-radius: 15px;
}
.remodal.remodal-is-closing,
.remodal.remodal-is-opening {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
    animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
    animation-name: remodal-closing-keyframes;
}
.remodal,
.remodal-wrapper:after {
    vertical-align: middle;
}

@keyframes remodal-opening-keyframes {
    from {
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes remodal-closing-keyframes {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.95);
        opacity: 0;
        filter: blur(0);
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media only screen and (min-width: 641px) {
    .remodal {
        max-width: 700px;
    }
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38;
}

.lt-ie9 .remodal {
    width: 700px;
}

.remodal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(126, 133, 142, 0.6);
    z-index: 7;
    cursor: pointer;
    transition: color 0.3s ease;
}
.remodal__close svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
}
.remodal__close .svg-btn_close {
    width: 12px;
    height: 12px;
}
.remodal__close:hover {
    color: #fff;
}
.remodal__header {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 25px;
    justify-content: space-between;

    background: #2C2E3C;
    border-radius: 16px 16px 0px 0px;

    font-weight: 700;
    font-size: 16px;
    line-height: 16px;


    color: #FFFFFF;
}

.remodal--payment {
    max-width: 496px;
}

.remodal__content {
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 16px 16px;
}

.remodal__deposit-ill {
    position: absolute;
    top: -146px;
    right: -93px;
}

@media screen and (max-width: 500px) {
    .remodal__deposit-ill {
        display: none;
    }
}



.payment__label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: left;

    color: #8A94B8;
}

.remodal__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.remodal__body:last-child {
    border-radius: 0px 0px 16px 16px;
}

.remodal__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid #2C2E3B;
    border-radius: 0px 0px 16px 16px;
}

.remodal__footer button {
    width: 100%;
}

.payment__checkout {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.payment__checkout-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.payment__checkout-sum {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    color: #26DF70;
}

.payment__checkout-sum.text-red {
    color: #e93a3a;
}


.payment__item {
    flex: 1 0;
    position: relative;
}

.payment__item input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    margin: 0;
    background: 0;
    opacity: 0;
}

.payment__item-badge {
    position: absolute;
    padding: 4px 6px;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    top: 4px;
    left: 4px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 12px;
}

.payment__item-check {
    position: absolute;
    right: 4px;
    top: 4px;
    display: none;
}

.payment__item input:checked ~ .payment__item-check {
    display: block;
}

.payment__item-btn {
    position: relative;
    display: flex;
    background-color: #272C3F;
}

.payment__item-btn input {
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    margin: 0;
    background: 0;
    opacity: 0;
}

.payment__item-icon {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272C3F;
    border-radius: 8px;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow 0.3s ease;
}

.payment__item-desc {
    position: absolute;
    padding: 4px 6px;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    top: 4px;
    left: 4px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 12px;
}

.payment__item-icon img {
    width: auto;
    height: auto;
    max-width: 78%;
    max-height: 78%;
}

.payment__item-btn input:checked + .payment__item-icon {
    box-shadow: inset 0 0 0 2px #ea7609;
}

.payment__item-label {
    display: block;
    margin: 4px 0 0 0;
    font-weight: 500;
    font-size: 14px;
    color: #bec2d0;
    text-align: center;
}

.payment__item.item--other {
    flex: none;
    width: 100%;
}

.payment__item.item--other .payment__item-icon {
    flex: none;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    color: #bec2d0;
    text-align: center;
}
.modal-input__group {
    display: flex;
    gap: 8px;
}

.modal-input__box {
    position: relative;
}

.modal-input__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-input__box .icn-prefix {
    position: absolute;
    top: 16px;
    left: 24px;
}

.modal-input__box .icn-validation {
    position: absolute;
    top: 16px;
    right: 24px;
}

.modal-input__box-info {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
}



.icn {
    width: 16px;
    height: 16px;
    display: flex;
    background-repeat: no-repeat;
    background-position: center center;
}

.icn-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(225deg) brightness(106%) contrast(101%);
}

.icn.icn-promo {
    background-image: url('../images/icons/icn_promo.svg');
}
.icn.icn-coins {
    background-image: url('../images/icons/icn_coins.svg');
}
.icn.icn-cross {
    background-image: url('../images/icons/icn_cross.svg');
}
.icn.icn-check {
    background-image: url('../images/icons/icn_check.svg');
}

/* Inputs */
.input__place {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 8px 14px 24px;
    gap: 24px;

    outline: none;
    border: none;

    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    font-weight: 500;
    font-size: 14px;
    line-height: 16px;

    color: #ffffff;
}

.input__place:focus {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.input__place.input__place-icon:focus {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.input__place-icon {
    padding: 14px 8px 14px 56px;
}

.input__place::-webkit-input-placeholder {
    color: #B7BACC;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: color 0.1s linear;
}

.input__place:focus::-webkit-input-placeholder {
    color: transparent;
}

.input__place:-moz-placeholder {
    color: #8A94B8;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    -moz-transition: color 0.1s linear;
}

.input__place:focus:-moz-placeholder {
    color: transparent;
}

.input__place::-moz-placeholder {
    color: #8A94B8;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    -moz-transition: color 0.1s linear;
}

.input__place:focus::-moz-placeholder {
    color: transparent;
}

.input__place:-ms-input-placeholder {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #8A94B8;
}

.input__place:focus:-ms-input-placeholder {
    color: transparent;
}

.input__place.place--select {
    background: rgba(255, 255, 255, 0.1) no-repeat right center url("../images/select-arrw.png");
    background-size: 40px 6px;
}

.input__place.place--select option {
    color: #fff;
    background: #333;
}

.input__place.input--error {
    border: 2px solid #872424;
    padding: 15px 8px 15px 56px;
}

.input__place.input--success {
    border: 2px solid #317417;
    padding: 15px 8px 15px 56px;
}

.input__error {
    display: none;
    margin: 2px 0 0 10px;
    font-size: 13px;
    color: #c08888;
}

.input__error.error--show {
    display: block;
}


.input--error + .modal-input__box-info {
    color: #ca2727;
}

.input--success + .modal-input__box-info {
    color: #5ebc43;
}

.modal-control__box {
    margin: 20px 0 0 0;
}

.modal-control__box .button {
    width: 100%;
    vertical-align: top;
}


.remodal--prize {
    max-width: 400px;
}
.remodal--prize .remodal__content {
    background: #232235;
}

.remodal__price-things {
    width: 192px;
    position: relative;
    margin: 6px auto 32px;
    z-index: 4;
}
.remodal__price-things:after {
    width: 400px;
    height: 192px;
    content: ' ';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -3;
    background: no-repeat center center url(../images/bgs_remodal-price-things.svg);
}
.remodal__price-things .inv__thigns-box {
    border: 1px solid rgba(0, 255, 102, 0.25);
    border-radius: 18px;
}
.remodal__price-button {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 0 0;
    border: 1px solid #636970;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #636970;
    border-radius: 34px;
    transition: border-color 0.3s ease;
    cursor: pointer;
    z-index: 5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.remodal__price-button .btn--value {
    margin: 0 0 0 8px;
    color: #ffc700;
}
.remodal__price-button:hover {
    border-color: #757c89;
}

.remodal__accounts {
    margin: 0 0 16px 0;
}
.remodal__accounts-row {
    margin: 0 0 8px 0;
}

.remodal__buttons {
    display: flex;
    margin: -8px;
}
.remodal__button-item {
    flex: 1;
    padding: 8px;
}
.remodal__button {
    min-height: 40px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #636970;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #636970;
    cursor: pointer;
    border-radius: 34px;
    transition: border-color 0.3s ease;
}
.remodal__button:hover {
    border-color: #737b84;
}

.remodal__instruction {
    padding: 31px 32px 32px;
    margin: 31px -26px -21px;
    border-top: 1px solid #2a2e32;
    color: #636970;
    line-height: 1.34;
}
.remodal__instruction .instruction__box {
    font-size: 12px;
}
.remodal__instruction .instruction__label {
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

.remodal--join {
    max-width: 678px;
    background: #1e202c;
}

.modal-joined {
    padding: 26px 22px 20px;
    margin: -26px -26px -21px;
    background: #2a2c3e;
    border-radius: 0 0 18px 18px;
}

.modal-join__step {
    display: flex;
    align-items: center;
}
.modal-join__step + .modal-join__step {
    margin: 43px 0 0 0;
}
.modal-join__step-icon {
    flex: none;
    width: 37px;
    height: 37px;
    margin: 0 24px 0 0;
    position: relative;
}
.modal-join__step-icon svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
    opacity: 0;
}
.modal-join__step.step--success .svg-modal_bonus_success {
    opacity: 1;
}
.modal-join__step.step--error .svg-modal_bonus_error {
    opacity: 1;
}
.modal-join__step.step--process .svg-modal_bonus_process {
    opacity: 1;
}

.modal-join__step-title {
    flex: 1 1 auto;
    font-weight: 600;
    font-size: 18px;
    color: #c4c4c4;
}
.modal-join__step-control {
    width: 218px;
    height: 44px;
    position: relative;
}
a.modal-join__step-button {
    color: #fff;
    text-decoration: none;
}
.modal-join__step-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border: 0;
    padding: 0 10px;
    margin: 0;
    background: #232235;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-join__step-button::after {
    width: auto;
    height: auto;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}
.modal-join__step-button:hover::after {
    opacity: 1;
}

.modal-join__step-button.button--success {
    background: #24b860;
}
.modal-join__step-button.button--error {
    background: #c1443c;
}

.modal-join__step.step--process .modal-join__step-button.button--process {
    opacity: 1;
}
.modal-join__step.step--success .modal-join__step-button.button--success {
    opacity: 1;
}
.modal-join__step.step--error .modal-join__step-button.button--error {
    opacity: 1;
}

.modal-join__accept {
    margin: 40px 0 0 0;
}
.modal-join__accept .o-button {
    width: 100%;
    height: 48px;
    font-size: 20px;
}

.remodal--withdraw-gold {
    max-width: 400px;
}
.remodal--withdraw-gold .remodal__content {
    padding: 32px 26px 26px;
    background: #232235;
}
.modal-withdraw-gold__button .o-button {
    width: 100%;
    height: 56px;
}

.inv__thigns-box {
    position: relative;
    z-index: 2;
}
.inv__thigns-item-header {
    height: 94px;
    position: relative;
}
.inv__thigns-item-image-pict {
    width: auto;
    height: auto;
    position: absolute;
    z-index: 7;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inv__thigns-item-image-pict img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.inv__thigns-item-image-src {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    background: no-repeat center center;
    background-size: cover;
    border-radius: 18px;
}
.inv__thigns-item-control {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 7;
}

.inv__thigns-item-price {
    position: absolute;
    z-index: 12;
    left: 16px;
    bottom: 7px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffc700;
}
.inv__thigns-item-title {
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    position: relative;
    z-index: 5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0 0 18px 18px;
}

.remodal--payment {
    max-width: 496px;
}

.input__box-caseinput.caseinput--coupone {
    height: 56px;
    text-align: center;
}
.input__box-caseinput.caseinput--coupone::-webkit-input-placeholder {
    color: #555a60;
    -webkit-transition: color 0.1s linear;
}
.input__box-caseinput.caseinput--coupone:focus::-webkit-input-placeholder {
    color: transparent;
}
.input__box-caseinput.caseinput--coupone:-moz-placeholder {
    color: #555a60;
    -moz-transition: color 0.1s linear;
}
.input__box-caseinput.caseinput--coupone:focus:-moz-placeholder {
    color: transparent;
}
.input__box-caseinput.caseinput--coupone::-moz-placeholder {
    color: #555a60;
    -moz-transition: color 0.1s linear;
}
.input__box-caseinput.caseinput--coupone:focus::-moz-placeholder {
    color: transparent;
}
.input__box-caseinput.caseinput--coupone:-ms-input-placeholder {
    color: #555a60;
}
.input__box-caseinput.caseinput--coupone:focus:-ms-input-placeholder {
    color: transparent;
}

/* promo modal */
.remodal__promo-modal {
    max-width: 560px;
    min-height: 232px;
    background-color: #1E202C;
}

.promo-modal {
    background: radial-gradient(100% 582.64% at 0% 100%, rgba(30, 32, 44, 0) 0%, #20B85D 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border-radius: 16px;
    position: relative;
}

.promo-modal .remodal__close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.promo-modal-content {
    display: flex;
    flex-direction: column;
    padding: 32px;
    position: relative;
    align-items: flex-start;
    gap: 16px;
}

@media all and (max-width: 480px) {
    .promo-modal-content {
        align-items: unset;
    }
    .promo-modal-content img {
        display: none;
    }
}

.promo-modal-content img {
    position: absolute;
    top: -16px;
    right: -64px;
}

.promo-modal__discription {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;

    color: #FFFFFF;
}

.promo-modal__discription p {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.promo-modal__discription p span {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.promo-modal__promo {
    font-weight: 900;
    font-size: 48px;
    line-height: 64px;
    margin: 0;
    text-transform: uppercase;
    text-align: left;

    color: #F08807;
}

.promo-modal__promo span {
    background: linear-gradient(114.91deg, #e25a0d 4.86%, #ffb800 164.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 500;
    font-size: 30px;
}

.promo-modal__copy-button {
    position: relative;
    border-radius: 15px;
    width: 100%;
    margin: 32px 0 0 0;
    max-width: 340px;
    height: 64px;
    transition: all 0.4s;
    background: none;
    border: none;
}

.promo-modal__copy-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110.12deg, rgba(190, 9, 182, 0.09) 20.27%, rgba(196, 48, 191, 0.0423) 95.17%) !important;
    border: 1.2px solid rgba(222, 67, 215, 0.1);
    border-radius: 15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 40px #bb09bb;
    background: none;
    opacity: 0;
    transition: opacity 1s;
}

.promo-modal__copy-button:hover::after {
    opacity: 1;
}

.promo-modal__copy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110.12deg, rgba(226, 90, 13, 0.09) 20.27%, rgba(255, 185, 49, 0.0288) 95.17%);
    border: 1.2px solid rgba(211, 109, 11, 0.1);
    border-radius: 15px;
    opacity: 1;
    transition: 0.3s;
}

.promo-modal__copy-button:hover::before {
    opacity: 0;
}

.promo-modal__copy-button span {
    background: linear-gradient(114.91deg, #e25a0d 4.86%, #ffb800 164.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 0px 40px #ec7a09;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.4s;
}

.promo-modal__copy-button:hover span {
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 40px #bb09bb;
}

.payment__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, calc(25% - 6px));
    grid-gap: 8px;
    gap: 8px;
}

@media all and (max-width: 600px) {
    .payment__items {
        grid-template-columns: repeat(2, calc(50% - 4px));
    }
}
.payment__item {
    flex: 1 0;
    position: relative;
}

.payment__item input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    margin: 0;
    background: 0;
    opacity: 0;
    cursor: pointer;
}
.payment__item-icon {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2C2E3B;
    border-radius: 6px;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow 0.3s ease;
}
.payment__item input:checked + .payment__item-icon {
    background: linear-gradient(180deg, rgba(32, 156, 205, 0.73) 0%, rgba(32, 184, 93, 0) 100%), #2C2E3B;
    border-radius: 8px;
    border: 2px solid #03E6FFFF;
}

.payment__item-icon img {
    width: auto;
    height: auto;
    max-width: 78%;
    max-height: 78%;
}

/* Animation :: Notify */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes bounceInDown {
    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInDown {
    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
