@import url("fonts.css");
@import url("reset.css");






/*-----------------------------------------------------------------------------*/
/*Colors
/*-----------------------------------------------------------------------------*/
:root {
    --background: #0b1118;
    --background_transparent: rgba(11, 17, 24, 0.97);
    --background_gradient: rgba(11, 17, 24, 0);
    --font: #ffffff;
    --element: #151d26;
    --element_gradient: rgba(21, 29, 38, 0);
    --element_rgba: rgba(21, 29, 38, .8);
    --active: #303d4b;
    --link: #738091;
    --bright: #09e5d7;

    --selection: #3E53A1;
    --red: #c72b4a;
    --green: #379C62;
    --orange: #d17536;
    --violet: #825df2;
    --blue: #5b97e8;


    --steam-blue: #66c0f4;
    --steam-yellow: #B9A074;
    --achievement-cards: #e3a33e;
    --achievement-plus: #52b845;
    --achievement-achi: #b058b3;

    --vk: #0077FF;
    --telegram: #2AA2DC;
    --steam: #0B88B9;
}






/*-----------------------------------------------------------------------------*/
/*Scroll bars
/*-----------------------------------------------------------------------------*/
body::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--active);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--link);
}

div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

div::-webkit-scrollbar-track {
    background: transparent;
}

textarea::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

textarea::-webkit-scrollbar-track {
    background: transparent;
}

textarea::-webkit-resizer {
    position: relative;
    border-radius: 8px 0px 20px 0px;
    background: var(--background) url("/assets/images/icons/arrow_dark.svg") no-repeat center / 90%;
}

ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

ul::-webkit-scrollbar-track {
    background: transparent;
}

::selection {
    background: var(--selection);
    color: var(--font);
}






/*-----------------------------------------------------------------------------*/
/*Base styles
/*-----------------------------------------------------------------------------*/
html {
    min-width: 300px;
}
body {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    overflow-x: hidden;
    background-color: var(--background);
    color: var(--font);
    font-size: 13px;
    letter-spacing: .03rem;
    line-height: 1.6;
    font-family: 'light', sans-serif;
}

.no_scroll {
    overflow: hidden;
}

.container {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: var(--link);
    transition: opacity 0.15s ease;
}

a:active {
    opacity: .7;
}

button {
    cursor: pointer;
    transition: opacity 0.15s ease;
}

button:active {
    opacity: .7;
}

h1,
h2,
h3,
h4 {
    font-family: 'black', sans-serif;
    line-height: 1.4;
}

h1,
h2 {
    line-height: 1.15;
    font-size: 24px;
}

content {
    flex-grow: 1;
}

.utter::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.touchable {
    transition: opacity 0.15s ease;
}

.touchable:active {
    opacity: .7;
}

@media only screen and (max-width: 1100px) {
    content {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1, h2 {
        line-height: 1.3;
        font-size: 22px;
    }
}





/*-----------------------------------------------------------------------------*/
/*Preloader
/*-----------------------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background_transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    transition: opacity .15s ease, visibility 0s ease .16s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    100% {
        transform: translateX(120px);
    }
}

@keyframes dot {
    100% {
        transform: translateX(120px);
    }
}

@-webkit-keyframes dots {
    100% {
        transform: translateX(-40px);
    }
}

@keyframes dots {
    100% {
        transform: translateX(-40px);
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.preloader_inner {
    position: relative;
    opacity: 0;
    width: 140px;
    height: 40px;
    background: transparent;
    animation: fade_in .15s .3s forwards;
}

.preloader_inner .dot {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    left: 0px;
    background: var(--bright);
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 1.1s .3s infinite;
}

.preloader_inner .dots {
    transform: translateX(0);
    margin-top: 10px;
    margin-left: 20px;
    animation: dots 1.1s .3s infinite;
}

.preloader_inner .dots span {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    background: var(--bright);
    border-radius: 50%;
}

@-webkit-keyframes dot_small {
    100% {
        transform: translateX(75px);
    }
}

@keyframes dot_small {
    100% {
        transform: translateX(75px);
    }
}

@-webkit-keyframes dots_small {
    100% {
        transform: translateX(-25px);
    }
}

@keyframes dots_small {
    100% {
        transform: translateX(-25px);
    }
}

.preloader_inner.mini {
    position: relative;
    opacity: 0;
    width: 90px;
    height: 40px;
    background: transparent;
    animation: fade_in .15s .3s forwards;
}

.preloader_inner.mini .dot {
    width: 15px;
    height: 15px;
    top: 13px;
    animation: dot_small 1.1s .3s infinite;
}

.preloader_inner.mini .dots {
    margin-top: 13px;
    margin-left: 15px;
    animation: dots_small 1.1s .3s infinite;
}

.preloader_inner.mini .dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
}






/*-----------------------------------------------------------------------------*/
/*Infoline
/*-----------------------------------------------------------------------------*/
.infoline {
    height: 35px;
    background-color: var(--red);
    overflow: hidden;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}

.infoline__inner {
    display: flex;
    font-size: 14px;
    line-height: 35px;
}

.infoline__inner span {
    flex: 0 0 auto;
    padding: 0 20px;
    animation: infoline var(--marqueeTime) infinite linear;
}

@keyframes infoline {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--marqueeDistance));
    }
}






/*-----------------------------------------------------------------------------*/
/*Header
/*-----------------------------------------------------------------------------*/
header {
    z-index: 10;
    -webkit-user-select: none;
    user-select: none;
}

.header__wrapper {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 35px;
    margin-right: 30px;
    font-family: 'black', sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

.header__logo img {
    height: 100%;
    margin-right: 10px;
}

.header__logo__name {
    font-size: 25px;
    line-height: 1.2;
    color: var(--font);
    text-transform: uppercase;
    line-height: 1;
    color: var(--bright);
}

.header__logo__name span {
    display: block;
}

.header__logo__name span:first-child {
    font-size: 12.8px;
}

.header__logo__name span:last-child {
    font-size: 15px;
    color: var(--font);
    margin-top: 3px;
}

.header__nav {
    display: flex;
    margin-right: auto;
}

.header__nav li a {
    font-size: 14px;
    padding: 14px;
    color: var(--font);
}

.header__online {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 10px;
    line-height: 1.2;
}

@keyframes online-icon {
    50% {
        opacity: .3;
    }
}

.header__online img {
    margin-right: 10px;
    width: 27px;
    opacity: 1;
    animation: online-icon 1.7s infinite;
}

.header__online__wrapper {
    display: flex;
    flex-direction: column;
}

.header__online__count {
    font-size: 14px;
    font-family: 'medium', sans-serif;
}

.header__online__name {
    font-size: 10px;
    color: var(--link);
}

.header__basket {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    height: 46px;
    background-color: var(--element);
    border-radius: 20px;
    padding: 14px 18px;
    margin-left: 12px;
}

.header__basket img {
    height: 18px;
}

.header__basket.orders img {
    height: 24px;
}

.header__basket__count {
    display: none;
    position: absolute;
    height: 20px;
    right: 0;
    margin-top: -43px;
    padding: 0 8px;
    background-color: var(--active);
    border-radius: 20px;
    color: var(--font);
    line-height: 20px;
    font-size: 12px;
    font-family: 'medium', sans-serif;
}

.header__basket__count.active {
    display: block;
}

.header__profile {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    height: 46px;
    background-color: var(--element);
    border-radius: 20px;
    padding: 14px 18px;
    margin-left: 12px;
}

.header__profile.active {
    background-color: var(--active);
}

.header__profile img {
    height: 18px;
}

.header__profile__arrow {
    display: flex;
    align-items: center;
    width: 25px;
    height: 22px;
    padding: 5px 4px;
    margin-left: 7px;
    background-color: var(--active);
    border-radius: 20px;
    transition: transform .1s ease;
}

.header__profile__arrow img {
    margin-top: 1px;
}

.header__profile.active .header__profile__arrow {
    transform: rotate(-180deg);
}

.header__burger {
    display: none;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background-color: var(--element);
    margin-left: 12px;
    border-radius: 20px;
}

.header__burger__lines {
    transform: rotate(0deg);
    width: 20px;
    height: 17px;
}

.header__burger__lines span {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--font);
    border-radius: 2px;
    transform: rotate(0deg);
    transition: .15s ease;
}

.header__burger__lines span:nth-child(1) {
    top: 2px
}

.header__burger__lines span:nth-child(2),
.header__burger__lines span:nth-child(3) {
    top: 8px
}

.header__burger__lines span:nth-child(4) {
    top: 14px
}

.header__burger.active .header__burger__lines span:nth-child(1),
.header__burger.active .header__burger__lines span:nth-child(4) {
    top: 8px;
    left: 50%;
    width: 0;
}

.header__burger.active .header__burger__lines span:nth-child(2) {
    transform: rotate(45deg);
}

.header__burger.active .header__burger__lines span:nth-child(3) {
    transform: rotate(-45deg);
}

.header__profile__menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    margin-top: -10px;
    margin-right: 40px;
    width: 200px;
    padding: 20px;
    background-color: var(--active);
    border-radius: 20px;
    font-size: 12px;
    font-family: 'medium', sans-serif;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    -webkit-user-select: none;
    user-select: none;
    z-index: 10;
    transition: visibility 0s, opacity 0.15s ease;
}

.header__profile__menu.active {
    visibility: visible;
    opacity: 1;
}

.header__profile__row {
    display: flex;
    justify-content: space-between;
}

.header__profile__row:not(:first-child) {
    margin-top: 10px;
}

.header__profile__row .two {
    width: 48%;
}

.header__profile__row .three {
    width: 31%;
}

.header__profile__row .four {
    width: 23%;
}

.header__profile__lang,
.header__profile__cur {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: var(--background);
    border-radius: 20px;
    color: var(--font);
}

.header__profile__lang span,
.header__profile__cur span {
    padding-top: 1px;
}

.header__profile__lang.active,
.header__profile__cur.active {
    background-color: var(--link);
}

.header__profile__lang img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 8px;
}

@media only screen and (max-width: 1100px) {
    .header__burger {
        display: flex;
    }

    .header__nav,
    .header__online,
    .header__profile {
        display: none;
    }

    .header__logo {
        margin-right: auto;
    }
}

@media only screen and (max-width: 350px) {
    .header__logo__name {
        display: none;
    }
}






/*-----------------------------------------------------------------------------*/
/*Footer
/*-----------------------------------------------------------------------------*/
footer {
    margin-top: 60px;
    padding-bottom: 40px;
    -webkit-user-select: none;
    user-select: none;
}

.footer__wrapper {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.footer__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 35px;
    margin-right: 5px;
    font-family: 'black', sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

.footer__logo img {
    height: 100%;
    margin-right: 10px;
}

.footer__nav {
    display: flex;
    margin-top: 3px;
}

.footer__nav li a {
    padding: 5px 10px;
    font-size: 13px;
    color: var(--font);
}

.footer__copyright {
    padding: 0 10px;
    font-size: 10px;
    color: var(--link);
}

.footer__online {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 10px;
    line-height: 1.2;
}

@keyframes online-icon {
    50% {
        opacity: .3;
    }
}

.footer__online img {
    margin-right: 10px;
    width: 27px;
    opacity: 1;
    animation: online-icon 1.7s infinite;
}

.footer__online__wrapper {
    display: flex;
    flex-direction: column;
}

.footer__online__count {
    font-size: 14px;
    font-family: 'medium', sans-serif;
}

.footer__online__name {
    font-size: 10px;
    color: var(--link);
}

.footer__basket {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    height: 46px;
    background-color: var(--element);
    border-radius: 20px;
    padding: 14px 18px;
    margin-left: 12px;
}

.footer__basket img {
    height: 18px;
}

.footer__basket.orders img {
    height: 24px;
}

.footer__basket__count {
    display: none;
    position: absolute;
    height: 20px;
    right: 0;
    margin-top: -43px;
    padding: 0 8px;
    background-color: var(--active);
    border-radius: 20px;
    color: var(--font);
    line-height: 20px;
    font-size: 12px;
    font-family: 'medium', sans-serif;
}

.footer__basket__count.active {
    display: block;
}

@media only screen and (max-width: 1100px) {
    footer {
        display: none;
    }
}





/*-----------------------------------------------------------------------------*/
/*Mobile menu
/*-----------------------------------------------------------------------------*/
.header__menu::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 44px;
    height: 44px;
    right: 63px;
    top: 53px;
    background-color: var(--background_transparent);
    border-radius: 50%;
    opacity: 1;
    transform: scale(1) translate(50%, -50%);
    transform-origin: top right;
    transition: transform .15s ease, opacity 1ms ease .15s;
}

.header__menu.active::before {
    opacity: 1;
    transform: scale(100) translate(20%, -20%);
    transition: transform .5s ease, opacity .5ms ease;
}


.mobile_menu {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    z-index: 20;
    height: calc(100% - var(--headerHeight));
    top: var(--headerHeight);
    overflow-y: auto;
}

.mobile_menu.active {
    visibility: visible;
}

.mobile_menu .container {
    padding: 0 40px;
    overflow-x: visible;
}

.mobile_menu__content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile_nav__menu {
    padding: 0;
}

.mobile_menu__nav li {
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .15s ease, transform .15s ease;
}

.mobile_menu__nav li a {
    display: block;
    padding: 15px 0 ;
    font-size: 17px;
    font-family: "medium", sans-serif;
    color: var(--font);
    line-height: 1.3;
}

.mobile_menu.active .mobile_menu__nav li {
    opacity: 1;
    transform: translateX(0);
}

.mobile_menu__nav li:first-child {
    transition-delay: 3ms;
}

.mobile_menu__nav li:nth-child(2) {
    transition-delay: 15ms;
}

.mobile_menu__nav li:nth-child(3) {
    transition-delay: 10ms;
}

.mobile_menu__nav li:nth-child(4) {
    transition-delay: 35ms;
}

.mobile_menu__nav li:nth-child(5) {
    transition-delay: 45ms;
}

.mobile_menu__nav li:nth-child(6) {
    transition-delay: 60ms;
}

.mobile_menu__nav li:nth-child(7) {
    transition-delay: 70ms;
}

.mobile_menu__row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.mobile_menu__row .two {
    width: 48%;
}

.mobile_menu__row .three {
    width: 31%;
}

.mobile_menu__row .four {
    width: 23%;
}

.mobile_menu__row:nth-of-type(1) {
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: 50ms;
}

.mobile_menu__row:nth-of-type(2) {
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: 70ms;
}

.mobile_menu.active .mobile_menu__row {
    opacity: 1;
}

.mobile_menu__lang, 
.mobile_menu__curr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
    border-radius: 20px;
    background-color: var(--element);
    font-family: 'medium', sans-serif;
    color: var(--font);
}

.mobile_menu__lang.active, 
.mobile_menu__curr.active {
    background-color: var(--active);
}

.mobile_menu__lang img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.mobile_menu__lang span, 
.mobile_menu__curr span {
    padding: 0 15px;
}

.mobile_menu__online {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 17px;
    font-family: "medium", sans-serif;
    width: 100%;
    padding: 20px;
    border: 2px solid var(--green);
    border-radius: 20px;
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: 90ms;
}

.mobile_menu.active .mobile_menu__online {
    opacity: 1;
}

.mobile_menu__online__count {
    margin-right: 15px;
    font-size: 28px;
}

.mobile_menu__online__name {
    font-size: 13px;
    line-height: 1.25;
    color: var(--link);
}

.mobile_menu__footer {
    margin-top: 32px;
    opacity: 0;
    font-size: 14px;
    color: var(--link);
    transition: opacity .3s ease, transform .3s ease;
    transition-delay: 100ms;
}

.mobile_menu.active .mobile_menu__footer {
    opacity: 1;
}

@media only screen and (max-width: 480px) {
    header .container::before {
        right: 43px;
    }
}






/*-----------------------------------------------------------------------------*/
/*Custom section
/*-----------------------------------------------------------------------------*/
.custom_section {
    margin-top: 30px;
}

.custom_section:not(:first-of-type) {
    margin-top: 40px;
}

.custom_section__wrapper {
    display: flex;
    justify-content: space-between;
}

.custom_section__title {
    padding-bottom: 5px;
}

.custom_section__area {
    width: 100%;
    margin-top: 15px;
    padding: 24px;
    background-color: var(--element);
    border-radius: 20px;
}

.custom_section__area.cut_down {
    padding-bottom: 16px;
}

.custom_section__area.color_promotion h3 {
    padding: 20px;
    border-radius: 20px;
    background: #379C62;
    background: linear-gradient(147deg, rgba(55, 156, 98, 1) 0%, rgba(91, 151, 232, 1) 50%, rgba(130, 93, 242, 1) 100%);
}

.custom_section__area__title h3 {
    font-size: 16px;
}

.custom_section__area.color_active h3 {
    color: var(--bright);
}

.custom_section__area__info {
    margin-top: 10px;
}

.custom_section__area__info p {
    margin-top: 10px;
}

.custom_section__area__info ul {
    padding: 5px 0;
}

@media only screen and (max-width: 720px) {
    .custom_section {
        margin-top: 10px;
    }

    .custom_section:not(:first-of-type) {
        margin-top: 30px;
    }
}







/*-----------------------------------------------------------------------------*/
/*Custom button
/*-----------------------------------------------------------------------------*/
.custom_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    padding: 7px 20px;
    margin-top: 10px;
    font-size: 13px;
    font-family: 'medium', sans-serif;
    line-height: 1.2;
    background: var(--element);
    color: var(--font);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity .15s ease, background-color .15s ease;
}

.custom_button:active {
    opacity: .7;
}

.custom_button.disabled {
    opacity: .4;
}

.custom_button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom_button.color_transparent {
    color: var(--link);
    background: transparent;
    border: 3px solid var(--element);
}

.custom_button.color_dark {
    background: var(--background);
}

.custom_button.color_light {
    background: var(--active);
}

.custom_button.weight_light {
    height: 34px;
}

.custom_button.weight_bold {
    height: 60px;
}

.custom_button.weight_black {
    height: 70px;
}

.custom_button.form {
    margin-top: 14px;
    color: var(--link);
    font-size: 18px;
    font-family: 'black', sans-serif;
}

.custom_button.top_15 {
    margin-top: 15px;
}

.custom_button.top_0 {
    margin-top: 0;
}

.custom_button.width_240 {
    max-width: 240px;
}

.custom_button.width_160 {
    max-width: 160px;
}

.custom_button.width_auto {
    width: auto;
    padding: 0 24px;
}

.custom_button.text_link {
    color: var(--link);
}








/*-----------------------------------------------------------------------------*/
/*Custom input
/*-----------------------------------------------------------------------------*/
.custom_input {
    text-align: left;
}

.custom_input__value {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 140px;
    padding: 7px 12px 6.25px;
    background: var(--element);
    font-size: 14px;
    font-family: "medium", sans-serif;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border .15s ease;
}

.custom_input__value.color_light {
    background: var(--active);
}

.custom_input__value.color_dark {
    background: var(--background);
}

.custom_input.focused .custom_input__value {
    border: 2px solid var(--active);
}

.custom_input.error .custom_input__value {
    border: 2px solid var(--red);
}

.custom_input__button {
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-left: 5px;
    background-color: var(--active);
    border-radius: 10px;
    cursor: pointer;
    transition: opacity .15s ease;
}

.filled .custom_input__button {
    visibility: visible;
    opacity: 1;
}

.custom_input__button:active {
    opacity: .7;
}

.custom_input__button img {
    height: 16px;
}

.custom_input__button.notice img {
    height: 20px;
}

.custom_input__button.eye img {
    height: 22px;
}

.custom_input__placeholder,
.custom_input__title {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-family: 'medium', sans-serif;
    line-height: 1.25;
    color: var(--link);
    width: calc(100% - 18px); 
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    transition: color .15s ease, font-size .15s ease, top .15s ease, transform .15s ease;
}

.custom_input:has(.custom_sign) .custom_input__placeholder {
    left: 54px;
}

.filled .custom_input__placeholder,
.focused .custom_input__placeholder,
.custom_input__title {
    top: 7px;
    font-size: 10px;
    transform: translateY(0);
}

.custom_input__input,
.custom_input__info {
    width: 100%;
    padding: 14px 10px 4px 6px;
    font-family: 'medium', sans-serif;
    font-size: 15px;
    line-height: 1.25;
    background-color: var(--element);
    transition: border-radius .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.color_light .custom_input__info {
    background-color: var(--active);
}

.color_dark .custom_input__info,
.color_dark .custom_input__value,
.color_dark .custom_input__input {
    background-color: var(--background);
}

.custom_input:has(.custom_sign) .custom_input__input {
    padding-left: 0;
}

.custom_input__message {
    position: relative;
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0 15px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--red);
    font-family: "medium", sans-serif;
    transition: opacity .15s ease, padding .15s ease;
}

.custom_input.error .custom_input__message {
    height: auto;
    top: 0;
    padding: 5px 15px 0;
    visibility: visible;
    opacity: 1;
}








/*-----------------------------------------------------------------------------*/
/*Custom select
/*-----------------------------------------------------------------------------*/
.custom_select {
    position: relative;
    min-width: 130px;
    font-size: 14px;
    font-family: 'medium', sans-serif;
}

.custom_select.wide {
    min-width: 240px;
}

.custom_select.width_200 {
    min-width: 200px;
    max-width: 200px;
}

.custom_select__button {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 54px;
    padding: 7px 20px;
    background: var(--element);
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity .15s ease;
}

.custom_select__button.dark {
    background-color: var(--background);
}

.custom_select__button:active {
    opacity: .7;
}

.custom_select__button:has(.custom_select__title) .custom_select__name {
    padding-top: 9px;
}

.custom_select__title {
    position: absolute;
    left: 20px;
    top: 9px;
    font-size: 10px;
    font-family: 'medium', sans-serif;
    line-height: 1.25;
    color: var(--link);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.custom_select__arrow {
    display: block;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    margin-left: auto;
    flex-shrink: 0;
}

.custom_select__arrow img {
    transform: rotate(0deg);
    transition: transform .1s ease;
}

.custom_select.active .custom_select__arrow img {
    transform: rotate(180deg);
}

.custom_select__dropdown {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    max-height: 320px;
    margin-top: 8px;
    background: var(--active);
    border-radius: 20px;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    transition: opacity .15s ease;
}

.custom_select.active .custom_select__dropdown {
    visibility: visible;
    opacity: 1;
}

.custom_select__options {
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 260px;
    overflow-y: auto;
}

.custom_select__option {
    position: relative;
    padding: 12px 20px;
    color: var(--font);
    border-bottom: 1px solid var(--background);
    cursor: pointer;
    transition: opacity .15s ease;
}

.custom_select__option:last-child {
    border-bottom: none;
}

.custom_select__option:active {
    opacity: .7;
}

@media only screen and (max-width: 600px) {
    .custom_select.width_200 {
        min-width: auto;
        max-width: 49%;
        flex-grow: 1;
    }
}

@media only screen and (max-width: 480px) {

    .custom_admin_sort {
        flex-wrap: wrap;
    }

    .custom_select.width_200 {
        min-width: 100%;
        max-width: 100%;
    }

    .custom_select.width_200:not(:first-child) {
        margin-top: 10px;
    }
}








/*-----------------------------------------------------------------------------*/
/*Custom payment method
/*-----------------------------------------------------------------------------*/
.custom_payment_method {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 150px;
    margin-top: 10px;
    margin-right: 10px;
    padding: 16px 24px;
    background-color: var(--background);
    border-radius: 20px;
    line-height: 1.2;
    font-size: 13px;
    cursor: pointer;
    transition: opacity .15s ease, background-color .15s ease;
}

.custom_payment_method.active {
    background-color: var(--active);
}

.custom_payment_method:active {
    opacity: .7;
}

.custom_payment_method__logo {
    display: flex;
    height: 20px;
    flex-shrink: 0;
}

.custom_payment_method__logo img {
    margin-right: 8px;
    height: 100%;
}

.custom_payment_method__title {
    margin-top: 8px;
    font-family: "medium", sans-serif;
}

.custom_payment_method__fees {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 11px;
    color: var(--link);
}

.custom_payment_method__fees .count {
    padding-left: 8px;
}








/*-----------------------------------------------------------------------------*/
/*Custom question
/*-----------------------------------------------------------------------------*/
.custom_question {
    width: 100%;
    margin-top: 15px;
    background-color: var(--element);
    border-radius: 20px;
}

.custom_question__title {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-family: "medium", sans-serif;
    border-radius: 20px;
}

.custom_question__answer {
    display: none;
    padding: 0 20px 25px 74px;
}

.custom_question.active .custom_question__answer {
    display: block;
}

.custom_question__question {
    font-size: 13px;
    margin-left: 7px;
    line-height: 1.4;
}

.custom_question__answer p {
    font-size: 13px;
    padding-top: 10px;
}

.custom_question__answer li {
    padding-top: 6px;
    text-indent: -6px;
    padding-left: 12px;
}

.custom_question__answer li::before {
    content: "• ";
    position: relative;
    top: -0.5px;
    display: inline-block;
    margin-right: 8px;
    font-size: 13px;
}

.custom_question__answer>p:first-child,
.custom_question__answer>h3:first-child,
.custom_question__answer>li:first-child {
    padding-top: 0;
}

.custom_question__links {
    display: none;
    padding: 0 20px 25px 70px;
}

.custom_question.active .custom_question__links {
    display: block;
}

.custom_question__links__list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
}

.custom_question__link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--active);
    border-radius: 20px;
    font-size: 13px;
    color: var(--font);
    font-family: "medium", sans-serif;
    margin-top: 10px;
    margin-right: 10px;
    white-space: nowrap;
}

.custom_question:has(.custom_question__links) .custom_question__answer {
    padding-bottom: 5px;
}

@media only screen and (max-width: 420px) {
    .custom_question__answer,
    .custom_question__links {
        display: none;
        padding: 0 30px 30px;
    }
}








/*-----------------------------------------------------------------------------*/
/*Custom sign
/*-----------------------------------------------------------------------------*/
.custom_sign {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background-color: var(--active);
    border-radius: 10px;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
    transition: background-color .15s ease;
}

.custom_sign img {
    width: 55%;
}

.custom_sign img.mail {
    width: 50%;
}

.custom_sign img.telegram {
    width: 58%;
    margin-left: -2px;
}

.custom_sign.question img {
    width: 57%;
    position: relative;
    margin-top: 1px;
}

.custom_sign.question img {
    transition: transform .15s ease, margin-top .15s ease;
}

.custom_sign.question.active img {
    transform: rotate(-180deg);
    margin-top: 0px;
}








/*-----------------------------------------------------------------------------*/
/*Custom overlay
/*-----------------------------------------------------------------------------*/
.custom_overlay {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--element);
    overflow: hidden;
    transition: opacity 0.15s ease;
}

.custom_overlay__preloader,
.custom_overlay__message {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease;
}

.custom_overlay.active,
.custom_overlay__preloader.active,
.custom_overlay__message.active {
    visibility: visible;
    opacity: 1;
}

.custom_overlay__message.active {
    visibility: visible;
    opacity: 1;
}

.custom_overlay__message {
    z-index: 4;
    visibility: hidden;
}

.custom_overlay__content {
    padding: 40px;
    font-size: 13px;
    text-align: center;
}

.custom_overlay__content h3 {
    font-size: 20px;
}

.custom_overlay__content .message {
    margin-top: 10px;
}

.custom_overlay__message.button .custom_overlay__content {
    padding: 0 20px;
    font-family: 'medium', sans-serif;
    font-size: 14px;
}

.custom_overlay__message.button.error {
    background-color: var(--red);
}








/*-----------------------------------------------------------------------------*/
/*Custom contact
/*-----------------------------------------------------------------------------*/
.custom_contact__input {
    position: relative;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: border .15s ease;
}

.custom_contact__input.focused {
    border: 3px solid var(--active);
}

.custom_contact__input.error {
    border: 3px solid var(--red);
}

.custom_contact__input .custom_input__placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    font-size: 17px;
    font-family: 'black', sans-serif;
    line-height: 1.25;
    color: var(--link);
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    transition: font-size .15s ease, top .15s ease, transform .15s ease;
}

.custom_contact__input.textarea .custom_input__placeholder {
    top: 40px;
}

.custom_contact__input.filled .custom_input__placeholder,
.custom_contact__input.focused .custom_input__placeholder {
    top: 15px;
    font-size: 13px;
    transform: translateY(0);
}

.custom_contact__input .custom_input__input {
    display: block;
    width: 100%;
    padding: 32px 30px 25px 30px;
    font-family: 'bold', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    color: var(--font);
    background: var(--element);
}

.custom_contact__input textarea {
    resize: vertical;
    height: 250px;
    min-height: 150px;
    max-height: 500px;
}

.custom_contact__input.textarea::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 35px;
    background: linear-gradient(to top, var(--element_gradient), var(--element) 15%);
    pointer-events: none;
    z-index: 0;
    border-radius: 20px 20px 0 0;
}








/*-----------------------------------------------------------------------------*/
/*Custom modal
/*-----------------------------------------------------------------------------*/
.custom_modal {
    position: fixed;
    display: flex;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--background_transparent);
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s ease;
    inset: 0;
}

.custom_modal.active {
    visibility: visible;
    opacity: 1;
}

.custom_modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom_modal__close {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-bottom: 15px;
    background: var(--active);
    border-radius: 10px;
    transition: opacity .15s ease;
    z-index: 11;
    cursor: pointer;
}

.custom_modal__close:active {
    opacity: .7;
}

.custom_modal__lines {
    position: relative;
    width: 20px;
    height: 17px;
    transition: .15s ease;
}

.custom_modal__lines span {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--font);
    border-radius: 2px;
    opacity: 1;
    transition: .15s ease;
}

.custom_modal__lines span:nth-child(1),
.custom_modal__lines span:nth-child(2) {
    top: 8px;
}

.custom_modal__lines span:nth-child(1) {
    transform: rotate(45deg);
}

.custom_modal__lines span:nth-child(2) {
    transform: rotate(-45deg);
}

.custom_modal__area {
    max-width: 680px;
    max-height: calc(100% - 55px);
    padding-bottom: 40px;
    transform: translate3d(0, 15px, 0) scale(.98);
    transition: transform .1s ease;
}

.custom_modal__area.light {
    max-width: 450px;
}

.custom_modal.active .custom_modal__area {
    transform: none;
}

.custom_modal__content {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    padding: 30px 40px 36px;
    background: var(--element);
    border-radius: 20px;
    max-height: 100%;
    overflow-y: auto;
}

.custom_modal.active .custom_modal__content {
    transform: none;
}

.custom_modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-family: 'black', sans-serif;
}

.custom_modal__box {
    display: flex;
    justify-content: center;
    padding: 15px 30px;
    border: 5px solid var(--active);
    border-radius: 20px;
    overflow: hidden;
}

.custom_modal__box.image {
    padding: 0;
    border: 0;
    border-radius: 10px;
}

.custom_modal__box.image img {
    height: 100%;
    object-fit: cover;
}

.custom_modal__body p {
    margin-top: 10px;
    display: inline-block;
}

.custom_modal__body p:first-of-type {
    margin-top: 15px;
}

.custom_modal__body>div {
    margin-top: 10px;
}

.custom_modal__body .custom_button {
    margin-top: 20px;
}

@media only screen and (max-width: 420px) {
    .custom_modal__content {
        padding: 20px 24px 24px;
    }
}








/*-----------------------------------------------------------------------------*/
/*Custom contact
/*-----------------------------------------------------------------------------*/
.custom_contact {
    margin-top: 15px;
    font-size: 13px;
}

.custom_contact__wrapper {
    margin-top: 5px;
    display: flex;
    align-items: center;
}





/*-----------------------------------------------------------------------------*/
/*Basket
/*-----------------------------------------------------------------------------*/
.basket__order {
    width: 100%;
    margin-right: 30px;
    flex-grow: 1;
}

.basket__order__inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.basket__order__inputs .custom_input {
    margin-right: 10px;
    flex-grow: 1;
}

.basket__order__receive {
    display: flex;
    justify-content: space-between;
}

.basket__order__payment_methods {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
}

.basket__total {
    position: sticky;
    top: 5px;
    align-self: flex-start; 
    width: 100%;
    max-width: 340px;
    margin-top: 5px;
    transition: opacity .15s ease;
}

.basket__total.inactive {
    opacity: .5;
}

.basket__total__action {
    margin-top: 10px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.basket__total__info {
    margin-top: 20px;
    padding: 0 10px 5px;
}

.basket__total__info__line,
.basket__total__info__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket__total__info__line {
    margin-top: 8px;
}

.basket__total__info__price {
    margin-top: 14px;
    font-size: 18px;
    font-family: "black", sans-serif;
}

@media only screen and (max-width: 1100px) {
    .basket__wrapper {
        flex-wrap: wrap;
        margin-right: 0;
    }

    .basket__order {
        margin-right: 0;
    }

    .basket__total {
        position: static;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    .basket__total__order {
        margin-top: 20px;
        order: 1;
    }

    .basket__total__action {
        width: 100%;
        order: 2;
    }
}

@media only screen and (max-width: 720px) {
    .basket__order__inputs {
        flex-wrap: wrap;
    }

    .basket__order__receive {
        margin-top: 10px;
        width: 100%;
    }

    .basket__order__inputs .custom_input.steam {
        width: 100%;
        margin-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .basket__order__receive {
        flex-wrap: wrap;
    }

    .basket__order__receive .custom_input {
        width: 100%;
        margin-right: 0;
    }

    .basket__order__receive .custom_select {
        width: 100%;
        margin-top: 10px;
    }
}






/*-----------------------------------------------------------------------------*/
/*Custom filter
/*-----------------------------------------------------------------------------*/
.custom_filter__categories {
    margin-top: 15px;
    padding-bottom: 8px;
    display: flex;
    overflow-x: auto;
    line-height: 1.2;
}

.custom_filter__category {
    flex-shrink: 0;
    padding: 15px 24px;
    padding-right: 30px;
    margin-right: 10px;
    background-color: var(--element);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity .15s ease;
}

.custom_filter__category:last-child {
    margin-right: 0;
}

.custom_filter__category:active {
    opacity: .7;
}

.custom_filter__category.active {
    background-color: var(--active);
}

.custom_filter__category__title {
    font-family: "medium", sans-serif;
}

.custom_filter__category__info {
    margin-top: 5px;
    font-size: 13px;
    color: var(--link)
}

.custom_filter__message {
    transition: opacity .15s ease;
}

.custom_filter__message.hidden {
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.custom_filter__message.hidden .notification__area {
    height: 0;
}

.custom_filter__element.hidden {
    display: none;
}






/*-----------------------------------------------------------------------------*/
/*Notification
/*-----------------------------------------------------------------------------*/
.notification {
    height: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

.notification__area {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 10px;
    position: relative;
    border-radius: 30px;
    text-align: center;
}

.notification__title h1 {
    font-size: 32px;
}

.notification__title.weight_black h1 {
    font-size: 40px;
}

.notification__line {
    background: var(--active);
    height: 3px;
    margin: 10px auto 15px;
    width: 70px;
}

.notification__buttons {
    margin-top: 10px;
}

.notification__buttons.center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.notification__button.action {
    margin-top: 10px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

content:has(section.notification) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (max-width: 480px) {
    .notification__title h1 {
        font-size: 24px;
    }
}






/*-----------------------------------------------------------------------------*/
/*Support
/*-----------------------------------------------------------------------------*/
.support__contact {
    width: 48%;
    position: relative;
    margin-left: -3px;
    margin-top: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.support__info {
    width: 48%;
    margin-top: 15px;
}

.support__info__main p {
    padding-bottom: 10px;
    font-size: 13px;
}

.support__info__main p:last-child {
    padding-bottom: 5px;
}

@media only screen and (max-width: 900px) {
    .support__wrapper {
        flex-wrap: wrap;
        margin-right: 0;
    }

    .support__contact {
        width: calc(100% + 6px);
        order: 2;
        margin-top: 25px;
    }

    .support__info {
        width: 100%;
        order: 1;
        margin-top: 10px;
    }
}






/*-----------------------------------------------------------------------------*/
/*Specification page
/*-----------------------------------------------------------------------------*/
.specification__content p {
    padding-top: 10px;
}

.specification__content h3 {
    padding-top: 25px;
}

.specification__content li {
    font-size: 13px;
    padding-top: 10px;
    text-indent: -9px;
    padding-left: 18px;
}

.specification__content li::before {
    content: "• ";
    position: relative;
    top: -0.5px;
    display: inline-block;
    margin-right: 8px;
    font-size: 13px;
}






/*-----------------------------------------------------------------------------*/
/*Сustom info
/*-----------------------------------------------------------------------------*/
.custom_info {
    display: flex;
    align-items: flex-start;
}

.custom_info img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 8px;
}

.custom_info__desc {
    margin-top: .5px;
}







/*-----------------------------------------------------------------------------*/
/*Orders
/*-----------------------------------------------------------------------------*/
.orders__count {
    margin-left: 10px;
    color: var(--link);
}






/*-----------------------------------------------------------------------------*/
/*Custom order
/*-----------------------------------------------------------------------------*/
.custom_order__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom_order__title h3 {
    padding-right: 10px;
}

.custom_order__id {
    color: var(--link);
    font-family: "medium", sans-serif;
}

.custom_order__status {
    margin-top: 10px;
}

.custom_order__status__tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 10px;
    text-align: center;
    font-family: "medium", sans-serif;
    background-color: var(--active);
}

.custom_order__status__tag.pending,
.custom_order__status__tag.new {
    background-color: var(--orange);
}

.custom_order__status__tag.paid {
    background-color: var(--green);
}

.custom_order__status__tag.processing {
    background-color: var(--violet);
}

.custom_order__status__tag.completed,
.custom_order__status__tag.closed {
    background-color: var(--blue);
}

.custom_order__status__tag.error,
.custom_order__status__tag.refund {
    background-color: var(--red);
}

.custom_order__status__info {
    display: flex;
    margin-top: 10px;
}

.custom_order__details {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
}

.custom_order__details__element {
    margin-top: 10px;
    margin-right: 10px;
    overflow-wrap: break-word;
    word-break: break-all;
}

@media only screen and (max-width: 900px) {
    .custom_order__details {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 600px) {
    .custom_order__details__element {
        width: 100%;
        margin-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .custom_order__title {
        flex-wrap: wrap;
    }

    .custom_order__title h3 {
        padding-right: 0;
        width: 100%;
    }

    .custom_order__id {
        font-size: 12px;
    }

    .custom_order__status__tag {
        width: 100%;
    }
}







/*-----------------------------------------------------------------------------*/
/*Custom statistic
/*-----------------------------------------------------------------------------*/
.custom_statistic {
    width: 100%;
    align-self: flex-start;
    padding: 20px;
}

.custom_statistic.width_25 {
    max-width: 25%;
}

.custom_statistic.width_50 {
    max-width: 50%;
}

.custom_statistic__title {
    font-family: "medium", sans-serif;
    color: var(--link);
}

.custom_statistic__value {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.4;
    font-family: "black", sans-serif;
}

.custom_statistic__description {
    display: flex;
    align-items: flex-start; 
    margin-top: 6px;
}

.custom_statistic__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 7px 20px;
    font-size: 13px;
    font-family: 'medium', sans-serif;
    line-height: 1.2;
    background: var(--background);
    color: var(--link);
    border-radius: 20px;
}

.admin_main_statistic {
    display: flex;
}

.admin_main_statistic .custom_statistic:not(:last-child) {
    margin-right: 10px;
}

@media only screen and (max-width: 900px) {
    .admin_main_statistic {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .admin_main_statistic .custom_statistic:not(:last-child) {
        margin-right: 0;
    }

    .custom_statistic.width_25 {
        max-width: 49%;
    }

    .custom_statistic.width_50 {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .custom_statistic.width_25 {
        max-width: 100%;
    }
}


/**********************************************/
/**********************************************/
/**********************************************/
/**********************************************/
/**********************************************/