

:root{
    --font-family: Unbounded, sans-serif;
    --colorRange: #F0F0F0;
    --ScrollFirstColor: #fef7de;
    --ScrollSecondColor: #FE902F;
    --colorAutofill: #f8f9fb;
    --colorAutofillFocus: #f8f9fb;
    --colorAutofillText: #323539;
    --colorAutofillFocusText: #323539;
}

* {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.custom-input-1.active.night_theme {
    background: #fe902f30;
    border: 1px solid #fe902f;
    color: var(--FirstColorText);
}

img.loading-big {
    margin-left: 37px;
    width: 65px!important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px var(--colorAutofill) inset;
    -webkit-text-fill-color: var(--colorAutofillText);
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px var(--colorAutofillFocus) inset;
    -webkit-text-fill-color: var(--colorAutofillFocusText);
}

.discount-vault, .discount-vault-two {
    position: absolute;
    right: 19px;
    top: -16px;
    font-size: 12px;
    font-weight: 500;
    background: #1ACF66;
    padding: 8px 12px;
    color: white;
    border-radius: 4px;
    transform: translateY(16px);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;

    &.active{
        opacity: 1;
        transform: translateY(0px);
    }
}


.discount-vault-two {
    right: auto;
}

.discount-product.discount-main{
    display: flex!important;
}

p.edit-range {
    font-weight: 400;
    color: #898989;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

a, button, .slider-object, li, .checkbox-main, .edit-range, .change-theme, li, input {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: url('/img/cursor-active.png'), auto!important;
}

a.links-menu-li-a {
    display: flex;
}

li.absolute-menu-li {
    display: flex;
}

ul.ul-absolute-menu {
    display: flex;
    flex-direction: column;
    background: #2E2E2E;
    padding: 8px;
    border-radius: 8px;
    width: 216.988px;
    gap: 8px;
}

a.links-menu-li-a {
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 153.523%;
    text-decoration: none;
    width: 100%;
    transition: 0.3s;
    border-radius: 8px;
    background: rgba(161, 161, 161, 0);
    padding: 9px 11px;
}

.message-info-donate {
    width: 435px;
    font-size: 15px;
    font-weight: 400;
    padding: 15px;
}

a.link-auth-b {
    margin-right: 56px;
    display: none;
    text-decoration: none;
    position: absolute;
    right: 28px;
    top: 22px;
}

.absolute-menu {
    position: absolute;
    top: 57px;
    z-index: 1;
    transform: translateY(-12px);
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
}

a.links-menu-li-a:hover {
    background: rgba(161, 161, 161, 0.12);
    padding-left: 15px;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #F6F5FA;
    color: #323539;
    cursor: url('/img/cursor.png'), auto;
}

img.logotype-img {
    width: 175px;
}

a.link-header-a {
    color: #858C95;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    cursor: pointer;

    &:hover{
        color: #000;
    }

    &:active{
        color: #686868;
    }

    &::after {
        width: 0%;
        content: "";
        background-color: #FE902F;
        pointer-events: none;
        position: absolute;
        height: 2px;
        bottom: -38px;
        transition: 0.3s;
    }

    &:hover:after{
        width: 100%;
    }
    &.mob-el::after{
        bottom: -5px; 
    }
}

.custom-button-1 {
    background: #FE902F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    border: none;
    border-radius: 6px;
    gap: 3px;
    transition: 0.3s;
    outline: 5px solid rgba(255, 165, 0, 0);

    &:hover {
        outline: 5px solid rgba(255, 165, 0, 0.26);
    }

    &:active{
        background: #ffa353;
        transform: scale(1.02);
    }

    &.shop-button {
        padding: 9px 20px;
        font-size: 14px;
    }
    
    &.shop-button > img {
        width: 27px;
    }

    &.logout {
        border-radius: 6px;
        background: #FFF;
        border: 1px solid #E5E5E7;
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
        color: #3A3A3A;
    }

    &.logout:hover {
        outline: 5px solid rgb(189 189 189 / 26%);
    }

    &.load:after {
        background: #FE902F;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 34px;
        background-image: url(/img/loading.svg);
    }
}

a.logotype {
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    &:hover {
       transform: scale(1.05);
    }

    &:active {
        transform: scale(1.1);
    }
}

img.loading-avatar {
    position: absolute;
    left: 8px;
    top: 9px;
    transition: 0.3s;
    opacity: 0;

    &.active{
        opacity: 1;
    }
}

.learn-more-slider {
    background: #3A3A3A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    height: 47px;
    gap: 5px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border:none;

    outline: 5px solid rgb(58 58 58 / 0%);

    &:hover {
        outline: 5px solid rgb(58 58 58 / 30%);
    }

    & > img {
        transition: 0.3s;
    }

    &:hover > img {
        transform: translateX(3px);
    }

    &:active {
        background: #4d4d4d;
        transform: scale(1.02);
    }
}

.custom-button-2 {
    display: flex;
    border-radius: 6px;
    background: #313335;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    height: 36px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: 0.3s;

    outline: 5px solid rgb(58 58 58 / 0%);

    &:hover {
        outline: 5px solid rgb(58 58 58 / 30%);
    }

    & > img {
        transition: 0.3s;
    }

    &:hover > img {
        transform: translateX(3px);
    }

    &:active {
        background: #4d4d4d;
        transform: scale(1.02);
    }

    &.leader-board {
        height: 54px;
    }

    &.leader-board:hover, &.leader-board.active {
        outline: 5px solid rgba(50, 197, 96, 0.22);
        background: #32C560;
    }

    &.slider-2{
        border-radius: 12px;
        background: #0E77AD;
        height: 58px;
    }

    &.support-button {
        background: #0091FF;
        padding: 21px 18px;
        gap: 6px;
    }

    &.support-button:hover {
        outline: 5px solid #0091ff56;
    }

    &.support-button:active {
        background: #00b7ff;
        transform: unset;
    }
}


.circle-slider-object {
    --opacity: 0.3; 
    --width: 16px; 

    border-radius: 1px;
    opacity: var(--opacity);
    background: #FFF;
    height: 3px;
    width: var(--width);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 1px;

    box-shadow: 0 0 10px black, 0 0 5px black;

    &:hover{ 
        --opacity: 0.6;
    }

    &.active{
        --width: 24px; 
        --opacity: 1;
    }

}

.object-user-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    margin-bottom: 15px;
    position: relative;

    &:after {
        width: 100%;
        height: 1px;
        background: #E5E5E7;
        position: absolute;
        content: "";
        bottom: -1px;
    }

    &:last-child:after {
        width: calc(100% + 42px);
        left: -21px;
        height: 1px;
        background: #E5E5E7;
        position: absolute;
        content: "";
        bottom: -1px;
    }
}

a.social-header-a {

    --background: red;
    
    display: flex;
    background: var(--background);
    width: 100%;
    text-decoration: none;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    gap: 10px;
    border-radius: 8px;
    transition: 0.3s;
    outline: 5px solid rgb(57 150 255 / 0%);

    &:active {
        transform: scale(1.02);
    }

    &.online-a {
        --background: #7e4bcf;
        
        &:hover {
            outline: 5px solid rgba(166, 98, 255, 0.4);
        }
    }

    &.discord-a {
        --background: #626EFF;
        
        &:hover {
            outline: 5px solid rgb(98 110 255 / 40%);
        }
    }

    &.vk-a{
        --background: #3996FF;

        &:hover {
            outline: 5px solid rgb(57 150 255 / 40%);
        }
    }

    &.tg-a{
        --background: #2AABEE;

        &:hover {
            outline: 5px solid rgb(42 171 238 / 40%);
        }
    }
}

.link {
    color: #313335;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: #4b4d50;
    }

    &:active {
        transform: scale(1.02);
    }
}

.link-a-footer {
    color: #2979C9;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: rgb(94, 157, 250);
    }

    &:active {
        transform: scale(1.02);
    }
}

a.link-footer-a {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 18.2px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: #4b4d50;
    }

    &:active {
        transform: scale(1.02);
    }
}

.object-shop {
    height: 394px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;

    &:hover{
        transform: translateY(-10px);
    }
}

.left-top-block-bottom {
    display: flex;
    align-items: center;
}

h4.h4-info {
    color: #3A3A3A;
    font-size: 16px;
    font-weight: 600;
}

svg.ico-info {
    position: absolute;
    color: #FCFCFC;
    left: 7%;
    top: 15px;
    cursor: pointer;
    height: auto;
    transition: 0.3s;
    width: 21px;
    filter: drop-shadow(2px 4px 10px #323232);
    
    &:hover{
        transform: scale(1.1);
    }
}

a.link:hover {
    color: #fe902f;
}

.right-content-block-bottom {
    border-radius: 9px;
    border: 1px solid #E5E5E7;
    background: #FFF;
}

.discount-product {
    position: absolute;
    right: 19px;
    top: 12px;
    background: #F44336;
    color: white;
    padding: 6px 14px;
    border-radius: 9px;
    filter: drop-shadow(2px 4px 6px #626262);
    font-weight: 600;
    font-size: 16px;
    display: none;
}

img.ico-moon {
    position: absolute;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-15px);
}

img.ico-sun {
    position: absolute;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-15px);
}

.change-theme.night > .ico-sun {
    opacity: 1;
    transform: translateX(0px);
}

.change-theme.light > .ico-moon {
    opacity: 1;
    transform: translateX(0px);
}

.change-theme {
    position: fixed;
    top: 14%;
    background: #313335;
    padding: 12px 17px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 68px;
    cursor: pointer;
    height: 60px;
    z-index: 5;
}

img.payment-ico:hover {
    filter: grayscale(0);
}

.title-category {
    color: #323539;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 28px;
    line-height: 20px;
    letter-spacing: 0.2px;
}

li.category-object {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    height: 46px;
    padding-left: 28px;
    border-left: 3px solid #ffffff00;
    display: flex;
    cursor: pointer;
    width: 100%;
    align-items: center;
    transition: 0.2s;
    gap: 9px;
    position: relative;
    &:hover, &.active  {
        padding-left: 32px;
        border-color: #FE902F;
        background: #FFF5ED;
        color: #FE902F;
    }
}

li.category-object > img {
    height: 60%;
}



li.server-object {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    height: 46px;
    padding-left: 28px;
    border-left: 3px solid #ffffff00;
    display: flex;
    cursor: pointer;
    width: 100%;
    align-items: center;
    transition: 0.2s;
    gap: 9px;
    position: relative;
    &:hover, &.active  {
        padding-left: 32px;
        border-color: #FE902F;
        background: #FFF5ED;
        color: #FE902F;
    }
}

li.server-object > img {
    height: 60%;
}

::-webkit-scrollbar {
    height: 4px;
    width: 4px
}

::-webkit-scrollbar-track,::-webkit-scrollbar-track-piece {
    background: var(--ScrollFirstColor);
    border-radius: 12px
}

::-webkit-scrollbar-corner,::-webkit-scrollbar-thumb {
    background: var(--ScrollSecondColor);
    border-radius: 4px
}

::-webkit-resizer {
    background: var(--ScrollSecondColor);
    border-radius: 4px
}

.avatar-user-wrapper {
    max-width: 48px;
    max-height: 47px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    padding: 4px;
    cursor: pointer;
    --gradient-angle: 0deg;
    --gradient-color-1: lime;
    --gradient-color-2: green;
    background-image: linear-gradient(var(--gradient-angle), var(--gradient-color-1), var(--gradient-color-2));

    &.banned {
        --gradient-color-1: red;
        --gradient-color-2: darkred;
    }
}

.avatar-user-img-wrapper {
    border-radius: 20%;
    aspect-ratio: 1 / 1;
    padding: 4px;
    background: #FE902F;
}

img.avatar-user-img {
    width: 100%;
    height: 100%;
}

.right-profile-r {
    cursor: pointer;
}

.profile-right {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.profile-right.active > .absolute-menu {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
}

a.link-footer-social-footer {
    cursor: pointer;
    transition: 0.3s;

    &:hover{
        transform: scale(1.1);
    }
}

.buttons-content-hum > .auth-top-li {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttons-content-hum > .auth-top-li > .profile-right {
    order: -1;
}

p.nickname {
    color: #4B5162;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

p.balance {
    color: #858C95;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.object-input.prefix {
    display: none;
}

.category-shop {
    padding: 24px 0px;
    border: 1px solid #E5E5E7;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    border-radius: 12px;
}

/*Slider open*/

.absolute-image-background-sub {
    position: absolute;
    background-image: url(/img/sub/background-slider.png);
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.sub-slider {
    height: 574px;
    border-radius: 10px;
    margin-top: 35px;
    background: linear-gradient(rgb(42, 171, 238) 0%, rgb(40, 159, 220) 100%);
    display: flex;
    position: sticky !important;
    justify-content: flex-start;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: background .2s;
}

.slider-circles-absolute {
    position: absolute;
    display: flex;
    bottom: 49px;
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.header-top-slider-absolute {
    background-repeat: repeat-x;
    background-image: url(../../../img/header-top-slider.svg);
    width: 100%;
    height: 198px;
    position: absolute;
    top: 0;
    z-index: 0;
    pointer-events: none;
}
.sub-slider.absolute {
    position: absolute!important;
}

.slide-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 271px;
    padding: 27px;
    gap: 17px;
}

img.sub-slide-image-top {width: 43px;height: 43px;margin-top: 25px;}

h3.sub-text-slide-h3 {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    word-break: break-word;
    font-weight: 700;
}

p.sub-text-slide-p {
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: 14px;
    max-width: 222px;
    font-weight: 600;
    line-height: 23.5px;
    word-break: break-word;
    margin-bottom: 11px;
}

.circle {
    background-image: url(../../../img/slide.svg);
    width: 24px;
    height: 25px;
    margin-left: 14px;
    background-position: center;
    margin-right: 14px;
    transition: 0.3s;
    cursor: pointer;
    background-repeat: no-repeat;
}

.circle.active {
    background-image: url(../../../img/slide-active.svg);
}

img.vk.footer-obj {
    width: 39px;
}

img.telegram.footer-obj {
    width: 42px;
    margin-top: 2px;
}

.header-slide {
    width: 100%;
    height: 413px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--main_color);
    margin-top: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    justify-content: space-around;
}

h1.text-header-slide-1 {
    color: #FFF;
    text-align: center;
    
    font-size: 48px;
    
    margin-bottom: 16px;
    font-weight: 700;
}

p.text-header-slide-2 {
    color: #FFF;
    text-align: center;
    
    font-size: 18px;
    
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 19px;
}

img.absolute-sub.slide_1 {
    width: 123px;
    margin-bottom: 27px;
    animation: animation1 3s linear infinite;
}

img.arrow-right-slide {
    width: 25px!important;
    height: 18px;
}

/*Slider close*/

img.donate-image {
    width: 100%;
    aspect-ratio: 250 / 233;
    pointer-events: none;
}

.shop-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.object-stats-a {
    display: flex;
    gap: 18px;
}

p.text-allert {
    color: #66778F;
    font-size: 12px;
}

svg.ico-allert {
    color: #66778F;
}

a.link-allert {
    color: #66778F;
    transition: 0.3s;
    cursor: pointer;
}

a.link-allert:hover {
    color: #3f4957;
}

.info-allert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2979c924;
    padding: 10px 12px;
    width: 100%;
    border-radius: 9px;
    margin-top: 20px;
}

.object-stats-a-left {
    border-radius: 6px;
    background: #FFF;
    width: 80%;
    display: flex;
    height: 57px;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding-left: 30px;
}

.object-stats-a-right {
    display: flex;
    border-radius: 6px;
    background: #32C560;
    align-items: center;
    justify-content: center;
    height: 57px;
    gap: 6px;
    width: 20%;
}

.modal-form-cubes > .content-block-1 > .group-content-block-1 {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.modal-form-cubes > .content-block-1 > .group-content-block-1 > .right-group-block-2 {
    width: 100%;
}

.modal-form-cubes {
    position: relative;
    margin: auto;
}

img.cube-ico {
    width: 30.313px;
    height: 27.375px;
}

.checkbox-main.error > .left-checkbox > .checkbox {border: 2px solid #fa9189;background: #f443362b;}
.checkbox-main.error > p {
    color: #ff645a!important;
}

p.stats-p {
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    line-height: 87.3%;
}

p.num-user {
    color: #858C95;
    font-size: 14px;
    font-weight: 700;
    line-height: 87.3%;
    letter-spacing: 0.42px;
    min-width: 21px;
}

p.nickname-user {
    color: #3A3A3A;
    font-size: 14px;
    font-weight: 500;
    line-height: 87.3%;
}

.group-info-stats-objects {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 49px;
}

.footer-block {
    border-radius: 17px;
    background: #FFF;
}

footer.footer-main {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 50px;
}

p.title-donate {
    color: #313335;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.group-don-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

p.cost-p-discount {
    position: absolute;
    top: -15px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.4;
    left: 0;
    text-decoration: line-through;
    color: #6F7172;
    z-index: 1;
    border-radius: 9px;
}

.cost {
    position: relative;
}

p.cost {
    color: #313335;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.shop-main {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.left-shop {
    width: 19%;
}

.donate-block-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 7%;
}

img.background-absolute-slide-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

ul.category-list {
    width: 100%;
}

h2.h2-stats-info {
    color: #323539;
    font-size: 22px;
    font-weight: 500;
    line-height: 23px;
}

p.p-stats-info {
    color: #858C95;
    font-size: 14px;
    font-weight: 500;
    line-height: 176.7%;
}

ul.leader-board-ul {
    display: flex;
    gap: 28px;
}

.right-stats-info {
    width: 100%;
}

.top-stats-info {
    display: grid;
    gap: 24px;
    max-width: 647px;
}

.stats-info-block {
    margin-top: 92px;
    display: flex;
    gap: 98px;
}

.guild-background-wrapper {
    position: relative;
    margin-top: 119px;
    pointer-events: none;
}

li.leader-board-li {
    display: flex;
}

.right-shop {
    width: 81%;
}

ul.servers-list {
    width: 100%;
}



.list-last-buy {
    display: flex;
    max-width: 100%;
    overflow: hidden;
}

img.universal-studio {
    width: 106px;
}

a.universal-studio-link {
    text-decoration: none;
    display: flex;
    cursor: pointer;
    transition: 0.3s;

    &:hover{
        transform: scale(1.05);
    }
}

.top-block-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-wrap: wrap;
    gap: 10px;
}

p.text-right-info-a {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 39px;
}

newcost.old-cost-main {
    text-decoration: line-through;
    font-size: 17px;
    opacity: 0.7;
}

.group-right-inputs {
    display: grid;
    gap: 10px;
}

cb {
    color: #3A3A3A;
    font-weight: 500;
}

ul.socials-list-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

li.social-header-li {
    display: flex;
    width: 100%;
    height: 76px;
}

.left-socials-header-a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

img.social-ico {
    width: 24px;
    pointer-events: none;
}

p.text-social {
    color: #FFF;

    font-size: 14px;

    font-weight: 700;
    line-height: 28px;
}

.right-socials-header-a {
    color: #FFF;
    font-size: 14px;

    font-weight: 600;
    line-height: 28px;
    gap: 5px;
    border-radius: 25px;
    /* min-width: 90px; */
    padding: 3px 12px;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.11);
}

img.ico-users {
    pointer-events: none;
}

li.auth-top-li {
    display: flex;
    gap: 13px;
}

img.slider-absolute-background-1 {
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slider-object-main {
    background: #FE902F;
    position: relative;
    border-radius: 16px;
    height: 429.234px;
    overflow: hidden;
}

.content {
    display: flex;
    justify-content: center;
}

.text-h5 {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 55.8px;
    max-width: 570px;
}

.text-h5-description {
    color: #FFF;
    font-size: 14px;

    font-weight: 500;
    line-height: 151.9%;
    max-width: 462.038px;
}

section.slider-object {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    transition: 0.2s;
    width: 100%;
    min-width: 100%;
    justify-content: flex-start;
    opacity: 0;
}

section.slider-object.active {
    opacity: 1;
}

img.news-image-slider {
    position: absolute;
    right: 0px;
    bottom: -1px;
    height: 100%;
    pointer-events: none;
}

h4.h4-block {
    color: #323539;

    font-size: 14px;

    font-weight: 600;
    line-height: 24px;
    margin-bottom: 32px;
}

p.login-user-a {
    color: #323539;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
}

p.top-info-a {
    color: #858C95;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    letter-spacing: -0.1px;
}

.right-data-user {
    color: #313335;
    font-size: 12px;

    font-weight: 500;
    line-height: 22px;
    border-radius: 25px;
    padding: 2px 11px;
    background: #F5F5F5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-block-top {
    border-radius: 16px;
    padding: 17px 21px;
    display: grid;
    border: 1px solid #E5E5E7;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
}

img.ico-rub, img.ico-bonus {
    width: 40px;
}

.vault-top-a {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

p.text-vault {
    color: #323539;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.1px;
}

p.text-vault-sum {
    color: #313335;
    font-size: 26px;
    font-weight: 500;
    line-height: 36px; /* 138.462% */
    letter-spacing: -0.39px;
}

.vault-block {
    border-radius: 10px;
    border: 1px solid #E5E5E7;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: space-between;
    padding: 16px;
    min-width: 212px;
    position: relative;
}

.range-info-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vault-bottom-a {
    display: flex;
    gap: 7px;
    flex-direction: column;
    align-items: flex-start;
}

.group-content-block-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 84px;
}

.group-block {
    display: flex;
    align-items: center;
    gap: 22px;
}

p.text-licence-1 {
    color: #858C95;

    font-size: 12px;

    font-weight: 400;
    line-height: 140.74%;
    max-width: 440px;
}

.range-object {
    display: grid;
    gap: 26px;
}

p.range-text-right {
    display: none;
}

.left-group-block-1 {
    display: grid;
    gap: 25px;
}

.left-data-user {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
}

.content-block-group {
    display: flex;
    gap: 20px;
    margin-top: 26px;
}

.left-content-block {
    width: 24%;
}

.right-content-block {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 75%;
}

.object-input.custom-input > img {
    display: none!important;
}

.object-input.custom-input > input {
    padding-left: 15px!important;
}

.object-input.custom-input.custom-input-image > input {
    padding-left: 51px!important;
}

.object-input > .custom_input_image {
    display: none;
    position: absolute;
    left: 16px;
    top: 16px;
    width: 26.056px;
    height: 27.14px;
    transition: 0.3s;
}

.object-input.custom-input.custom-input-image > .custom_input_image {
    display: flex!important;
}

.right-content-block-bottom {
    position: relative;
    overflow: hidden;
    padding-bottom: 34px;
    min-height: 253px;
}

.users-list-a {
    display: grid;
}

p.text-down-info {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
}

img.arrow-down {
    animation: arrow 1.2s linear infinite;
}


.content-block-1 {
    border-radius: 9px;
    border: 1px solid #E5E5E7;
    background: #FFF;
    padding: 39px 50px;
}

h3.text-block-h3 {
    color: #313335;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

p.text-block-p {
    color: #858C95;
    font-size: 12px;

    font-weight: 400;
    line-height: 140.74%;
    max-width: 714px;
}

section.content-block-section {
    display: grid;
    gap: 25px;
}

/*Range style open*/
.range-slide {
    background-image: url(/img/slider-scale.svg);
    width: 100%;
    height: 10px;
    margin-top: 5px;
}

input[type="range"] {
    -webkit-appearance: none;
    margin-right: 15px;
    width: 200px;
    height: 7px;
    background: var(--colorRange);
    border-radius: 5px;
    background-image: linear-gradient(#FE902F, #FE902F);
    background-size: 70% 100%;
    background-repeat: no-repeat;
}

img.image-info {
    width: 70px;
    border-radius: 8px;
    height: 70px;
}

.info-panel {
    width: 470px;
    background: white;
    border-radius: 8px;
    padding: 31px;
    position: relative;
}

.render-products-hide {
    display: none;
}

.scroll-new::-webkit-scrollbar {
    width: 2px;
}
.scroll-new::-webkit-scrollbar-thumb {
    background-color: #FE902F;
}
.scroll-new::-webkit-scrollbar-track {
    background: #D9D9D9;
}

.message-info {
    margin-top: 25px;
    color: #6d6d6d;
    font-weight: 400;
    font-size: 14px;
}

.top-info-donate {
    display: flex;
    align-items: center;
    gap: 21px;
}

p.text-donate {
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

li.info-donate-li {color: #858C95;margin-left: 19px;font-size: 12px;}

ul.info-donate-ul {display: grid;gap: 15px;}

.info-donate {margin-top: 22px;}

.swal2-modal > .swal2-title {
    font-size: 19px!important;
}

.swal2-modal > .swal2-html-container {
    font-size: 16px;
    font-weight: 300;
}

input#range {
    width: 100%;
}

.custom-button-2.select_payment {
    display: none;
}
  
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 4px solid #FE902F;
    background: #C2600A;
    cursor: ew-resize;
    box-shadow: 0 0 2px 0 white;
    transition: background .3s ease-in-out;
}

input[type=range]::-webkit-slider-runnable-track  {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
/*Range style close*/

.down-info {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 35px;
    margin-top: 35px;
}

/*Slider-Own-1 open*/
.object-last-buy {
    height: 138px;
    border-radius: 8px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

img.avatar-img {
    width: 37px!important;
}

p.time-buy {
    color: #858C95;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.user-login {
    color: #858B98;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.donate-name {
    color: #3A3A3A;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    max-width: 81%;
    text-overflow: ellipsis;
}
button.owl-dot {
    border-radius: 1px;
    opacity: 0.3;
    background: #FFF;
    width: 16px;
    height: 3px;
    border: none;
    outline: none;
    transition: 0.3s;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 269px;
    gap: 7px;
    position: absolute;
    bottom: 66px;
}

button.owl-dot.active {
    opacity: 1;
    width: 24px;
}
/*Slider-Owl-1 close*/

.slider-circles {
    position: absolute;
    right: 80px;
    bottom: 34px;
    display: flex;
    gap: 6px;
}

.slider-main {
    width: 100%;
    height: 100%;
    display: flex;
    transition: 0.5s;
}

.slider-top {
    width: 100%;
    height: 100%;
}

.slider-left {
    display: grid;
    justify-items: start;
    gap: 20px;
    position: relative;
    padding-left: 80px;
    z-index: 1;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: white;
    height: 92.188px;
    margin-top: 50px;
    border-radius: 16px;
    padding: 0px 82px;
    margin-bottom: 35px;
    position: relative;
}

.left-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

svg.ico-help {
    position: absolute;
    right: -25px;
}

.border {
    width: 1422px;
}

.header {
    display: flex;
    justify-content: center;
}

li.links-header-li {
    display: flex;
    align-items: center;
}

ul.links-header-ul {
    display: flex;
    align-items: center;
    gap: 33px;
}

/*Footer*/
p.text-info-footer {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
}

.top-text-footer-a {
    color: #313335;
    font-size: 16.827px;
    font-weight: 600;
    line-height: 17.78px;
}

.text-info-b {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    line-height: 18.2px;
    text-decoration: none;
    transition: 0.3s;
}

a.custom-link-1 {
    color: #656565;
    cursor: pointer;
    transition: 0.3s;

    &:hover{
        color: #8a8a8a;
    }
}

li.payment-list-li {
    display: flex;
}

ul.payment-list-footer {
    display: flex;
    align-items: center;
    gap: 25px;
}

img.social-ico-footer {
    display: flex;
}

li.link-footer {
    display: flex;
}

ul.group-ul-links {
    display: flex;
    gap: 10px;
}

img.avatar-user {
    width: 37px;
    height: 40px;
}

li.footer-li {
    display: flex;
}

a.link-footer-social {
    display: flex;
}

.object-footer-a {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

ul.link-footer-ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.footer-group-a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 50px;
    justify-items: center;
}
/*Footer close*/

img.background-absolute-main {
    position: absolute;
    /* top: 64%; */
    top: 615px;
    z-index: -1;
    pointer-events: none;
    width: 100%;
}

/*Humburger Style Open*/
.humburger-menu {
    width: 65%;
    height: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(9px);
    transition: 0.3s;
    transform: translateX(-100%);
    opacity: 0;
}
body.hidden {
    overflow: hidden;
}
.humburger-menu.active {
    opacity: 1;
    transform: translateX(0px);
    pointer-events: all;
}
ul.hum-links {
    display: flex;
    gap: 30px;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.humburger-content {
    height: 100%;
    width: 100%;
    align-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
/*Payment open*/
.right-info-payment-b.custom-scroll {
    max-height: 302px;
    overflow: auto;
}
.method-payment {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}
.payment-object-a.active:after {
    transform: scale(1);
    opacity: 1!important;
}
img.payment-image{
    position: absolute;
    transform: scale(0);
    transition: 0.3s;
    /* width: 63px; */
    max-width: 50%;
}
img.payment-ico.ico-2-payment {
    width: 113px;
}
.payment-image.active{
    transition: 0.6s;
    transform: scale(1);
}
.payment-panel {
    background: white;
    padding: 40px;
    position: relative;
    border-radius: 17px;
    width: 869px;
    display: grid;
    gap: 23px;
    margin: auto;
}
h4.payment-h4 {
    color: #313335;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
}

.buttons-content-hum > li > div > .absolute-menu {
    bottom: 64px;
    top: auto;
}

.right-payment-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

p.text-left.checkbox-payment {
    color: #858C95;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    transition: 0.3s;
}

p.text-title {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.text-cost {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
     /* 0% */
    letter-spacing: 0.25px;
    z-index: 1;
}

img.logotype-img {
    width: 110px;
    transform: translateY(-3px);
}

.left-payment-panel {
    background-image: url(/img/donates/bound.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 304px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 15px 18px;
    gap: 3px;
    position: relative;
}

.top-payment-panel {
    grid-template-columns: 0.8fr 1fr;
    gap: 32px;
    display: grid;
    width: 100%;
    height: inherit;
}

.left-payment-panel:after {
    content: "";
    position: absolute;
    width: 100%;
    border-radius: 18px;
    height: 100%;
    opacity: 0.2;
    background: linear-gradient(to top, black -15%, transparent 90%);
    opacity: 0.8;
    left: 0;
    top: 0;
}

input#payment_login {
    padding-left: 51px;
}

img.payment-ico.footer-payment {
    filter: grayscale(0);
}

.tilte-payment {
    color: #313335;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
}
.group-payment {
    display: grid;
    gap: 25px;
}
.payemnt-group-object {
    display: grid;
    gap: 19px;
}
.title-payment-group {
    color: #858C95;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}
.list-payment-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    display: grid;
}
.title-payment-group {
    color: #858C95;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}
.tilte-payment {
    color: #313335;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
}
.payment-object-a {
    border-radius: 12px;
    background: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 111px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    filter: grayscale(1);
    letter-spacing: 0;
}

.payment-object-a:hover, .payment-object-a.active {
    filter: grayscale(0);
}

.payment-object-name {
    transition: inherit;
}

.payment-object-subtext {
    font-size: 9pt;
}

.payment-object-a:hover > .payment-object-name, .payment-object-a.active > .payment-object-name {
    letter-spacing: 1px;
    font-size: 14pt;
}

.payment-confirm > .custom-button-1 {
    width: 100%;
    height: 52px;
}

.object-input.count {
    display: none;
}

p.text-helper {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #919192;
}

.payment-object-a:after {
    background-image: url(/img/payment/payments/active.svg);
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-repeat: no-repeat;
    top: 12px;
    right: 12px;
    transition: 0.3s;
    transform: scale(0);
}

.payment-object-a.active:after {
    transform: scale(1);
    opacity: 1 !important;
}

/*Payment close*/
.buttons-content-hum {
    width: 100%;
    padding: 30px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.right-humburger {
    display: none;
}
#menu__toggle {
    opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
    left: 0 !important;
}
.menu__btn {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
    right: 25px;
    top: 44px;
}
.menu__btn > span, .menu__btn > span::before, .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #313335;
    transition-duration: .25s;
}
.menu__btn > span::before {
    content: '';
    top: -13px;
}
.menu__btn > span::after {
    content: '';
    top: 13px;
}
.links-header-ul.mob-el {
    display: grid;
    gap: 42px;
    justify-items: center;
    align-items: center;
}
/*Humburger Style CLOSE*/

/*Payment Period*/

input#payment_login_period {
    padding-left: 51px;
}

.group-right-inputs.periods-grpup {
    margin-top: 30px;
    margin-bottom: 16px;
}

.period-object {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E5E5E7;
    background: #F8F9FB;
    height: 191px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 46px;
    gap: 33px;
    transition: 0.3s;
    user-select: none;
}

.group-periods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.absolute-discount-period {position: absolute;border-radius: 8px;background: #FF5F00;color: #FFF;font-size: 12px;font-weight: 600;text-transform: uppercase;padding: 6px;top: -14px;right: 16px;}

p.period-object-title {
    color: #323539;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

p.text-cost-a {
    color: #858C95;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

p.period-object-cost {
    color: #323539;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.group-info-cost {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.button-select {
    position: absolute;
    bottom: 0px;
    width: 100%;
    border-radius: 0px 0px 8px 8px;
    background: #323539;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    transition: 0.3s;
}

span.ico-cross {
    position: absolute;
    transition: 0.3s;
}

span.ico-success {
    position: absolute;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(10px) scale(0);
}

.period-object:hover {transform: translateY(-10px);}

.group-info-payment-b {
    grid-template-columns: 0.8fr 1fr;
    gap: 32px;
    display: grid;
    width: 100%;
    height: inherit;
}

.period-object.active > .button-select {
    background: #FE902F;
}

.period-object.active > .button-select > .ico-cross {
    opacity: 0;
    transform: translateY(-10px) scale(0);
}

.period-object.active > .button-select > .ico-success {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.period-object.active {
    transform: translateY(-10px);
}

.cost-block-period {
    display: flex;
    align-items: center;
    gap: 5px;
}

p.period-object-cost-old {
    color: #858C95;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    text-decoration-line: line-through;
}

.top-info-form-step {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    gap: 9px;
    margin-top: 27px;
}

svg.block-line {
    width: 100%;
    height: 4px;
}

.block-num {
    border-radius: 20px;
    border: 1px solid #E5E5E7;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #858C95;
    font-weight: 500;
    transition: 0.3s;
}

.block-num.active {
    background: #FE902F;
    color: white;
    border: 1px solid #FE902F!important;
}

p.text-info-step {
    color: #858C95;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.top-info-form-step-string {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -8px;
    margin-bottom: 18px;
}

p.text-info-step.active {
    color: #323539;
}



/*Payment Period*/


@media (min-width: 1210px) and (max-width: 1499px) {
    body {
        zoom: 0.85;
    }
}

@media (min-width: 1175px) and (max-width: 1210px) {
    body {
        zoom: 0.8;
    }
}

@media (max-height: 900px) {
    .absolute-form.payment {
        display: flex;
        align-items: flex-start;
        padding-top: 10%;
    }
    
    .payment-panel {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

@media (max-width: 1175px) {
    a.link-header-a {
        font-size: 12px;
    }
    .border {
        width: calc(100% - 40px);
    }
    .content-block-group {
        flex-direction: column;
    }
    .left-content-block {
        width: 100%;
    }
    .right-content-block {
        width: 100%;
    }
    img.news-image-slider {
        display: none;
    }
    
    .slider-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
        width: 100%;
    }
    .rating {
        min-height: 907px;
    }
    .content-block-1 {
        padding: 24px 28px;
    }
    .header-top {
        padding: 0px 25px;
    }
    h5.text-h5 {
        text-align: center;
    }
    p.text-h5-description {
        text-align: center;
    }
    h5.text-h5 {
        font-size: 34px;
        line-height: 44px;
    }
    .group-content-block-1 {
        gap: 20px;
    }
    .sub-slider {
        display: none;
    }
    .shop-main {
        display: flex;
        flex-direction: column;
    }
    .left-shop {
        width: 100%;
    }
    .right-shop {
        width: 100%;
    }
    .stats-info-block {
        flex-direction: column;
    }
    .guild-background-wrapper {
        display: none;
    }
    .stats-info-block {
        gap: 33px;
        margin-top: 33px;
    }
    .header-top {
        margin-top: 32px;
    }
    .object-shop {
        height: auto;
    }
    .footer-group-a {
        grid-template-columns: repeat(2, 1fr);
        justify-items: unset;
        padding: 25px;
    }
    .object-footer-a:nth-child(2n) {
        display: flex;
        align-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }
    .object-footer-a:nth-child(2n) >  {
        display: flex;
        align-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }
    .object-footer-a:nth-child(2n) > ul {
        display: flex;
        align-items: flex-end;
    }
    .text-h5 {
        text-align: center;
    }
}
@media (min-width: 1151px) {
    .humburger-menu.active {
        display: none;
    }
}
@media (max-width: 1150px) {
    a.link-auth-b {
        display: flex;
    }
    ul.links-header-ul.head-pc {
        display: none;
    }
    .right-humburger {
        display: flex;
    }
    ul.auth-top-ul.head-pc {
        display: none;
    }
    .group-content-block-1 {
        display: flex;
        flex-direction: column;
    }
    .left-group-block-1 {
        width: 100%;
    }
    .right-group-block-2 {
        width: 100%;
    }
    .shop-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 950px) {
    ul.socials-list-header {
        grid-template-columns: repeat(1, 1fr);
    }
    .top-block-bottom {
        padding: 20px 25px;
    }
    .payment-panel {
        width: 100%;
        height: auto;
        border-radius: 0px;
        padding: 20px;
    }
    .top-payment-panel {
        display: grid;
        grid-template-columns: 1fr;
        padding-top: 54px;
    }
    .absolute-form.payment {
        background: white;
        display: flex;
        align-items: flex-start;
    }
    h4.payment-h4 {
        font-size: 17px;
    }
    .tilte-payment {
        font-size: 17px;
    }
    .absolute-form.payment {
        padding-top: 0%;
    }
    /*Payment Period*/
    .group-info-payment-b {
        display: flex;
        flex-direction: column;
    }
    .top-info-form-step {
        margin-top: 48px;
    }
    .group-periods {
        grid-template-columns: repeat(2, 1fr);
    }
    .group-periods > :nth-child(3) {
        grid-column: 1 / -1;
    }
    /*Payment Period*/
}

@media (max-width: 850px) {
    .shop-content {
        grid-template-columns: repeat(2, 1fr);
    }
    h3.text-block-h3, p.title-donate, h4.h4-info, .title-category, h2.h2-stats-info {
        font-size: 14px;
    }
    p.p-stats-info {
        font-size: 12px;
    }
    section.content-block-section {
        gap: 20px;
    }
    .group-block {
        display: flex;
        align-items: flex-start;
        gap: 22px;
        flex-direction: column;
    }
    button#buy_monets {
        width: 100%;
    }
    p.text-vault-sum {
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .list-payment-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-group-a {
        grid-template-columns: repeat(1, 1fr);
    }
    .object-footer-a {
        display: flex;
        align-items: center!important;
        text-align: center!important;
        justify-content: center!important;
    }
    .object-footer-a:nth-child(2n) > ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    li.footer-li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    h5.text-h5 {
        font-size: 21px;
        line-height: 31px;
    }
    p.text-h5-description {
        font-size: 12px;
    }
    .slider-left {
        padding-left: 25px;
        padding-right: 25px;
    }
    .text-h5 {
        font-size: 27px;
        line-height: 40px;
    }
    .object-stats-a-left {
        width: 70%;
    }
    .object-stats-a-right {
        width: 30%;
    }
}
@media (max-width: 650px) {
    button.custom-button-1.shop-button {
        width: 100%;
    }
    .group-don-block {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }
    .vault-block {
        min-width: 100%;
    }
    ul.leader-board-ul {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    .group-info-stats-objects {
        margin-top: 40px;
    }

    div#content_vault {
        border: none;
        width: 100%;
    }
    
    .modal-form-cubes {
        width: 100%;
        /* height: 100%; */
    }
}

.gradient {
    /* display: inline-block; */
    background-clip: text;
    color: transparent !important;
}

.lk-bonus-warning {
    font-size: 0;
    font-style: normal;
    font-weight: 400;
    margin: auto;
    transition: ease-in-out .2s;
}

.pa-payment-method:has(.payment-object-a[method="lk-bonus"].active) .lk-bonus-warning {
    font-size: 12px;
}

.absolute-form.donate-info, .absolute-form.referral {
    align-items: center;
}

.absolute-form.bonus-combustion-queue > div {
    margin: auto;
}

.the-world-payment-warning {
    font-size: 0;
    font-style: normal;
    font-weight: 400;
    margin: auto;
    transition: ease-in-out .2s;
    text-align: center;
}

.payemnt-group-object:has(.payment-object-a[method="the-world"].active) .the-world-payment-warning {
    font-size: 12px;
}

img.news-image-slider {
    animation: news-image-slider-move-animation 10s ease-in-out alternate infinite, news-image-slider-scale-animation 16s ease-in-out alternate infinite;
}

@keyframes news-image-slider-move-animation {
    0% {
        translate: -5% 0;
    }
    100% {
        translate: 5% 0;
    }
}

@keyframes news-image-slider-scale-animation {
    0% {
        scale: 1;
    }
    100% {
        scale: 1.1;
    }
}