@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");:root {
    --container-width: 1200px;
    --sidebar-width: 400px;
    --base-font-size: 16px;
    --font-light: "Gilroy Light";
    --font-regular: "Gilroy Regular";
    --font-medium: "Gilroy Medium";
    --font-semibold: "Gilroy Semibold";
    --font-bold: "Gilroy Bold";
    --main-light-color: #FFFFFF;
    --main-dark-color: #171B3B;
    --main-accent-color: #4C9FFF;
    --main-accent-color-lighten: #4CBFFF;
    --success-color: #5EE08A;
    --error-color: #B2523D;
    --main-ui-opacity: 0.05;
    --main-ui-opacity-lighten: 0.08;
    --main-container-opacity: 0.2
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif
}

a {
    text-decoration: none
}

button,input {
    border: none;
    outline: none
}

body {
    background: #11061E url(/assets/img/bg.png);
    background-position: top;
    background-size: 100% auto;
    background-repeat: no-repeat
}

body.index {
    background: #11061E
}

img {
    user-select: none
}

html {
    overflow-x: hidden
}

h1 {
    padding: 10px 0;
    font-size: 30px
}

h2 {
    padding: 15px 0 5px;
    font-size: 20px
}

header {
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 9
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 750px) {
    header .container {
        grid-gap:30px
    }
}

header .header__mobile {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.11);
    background: linear-gradient(180deg, #32A6FF 0%, #0075FF 100%);
    box-shadow: 0px 4px 12.3px 0px rgba(0,0,0,0.25) inset,0px 4px 51.6px 0px rgba(27,144,255,0.36);
    padding: 10px;
    display: none
}

header .header__mobile svg {
    width: 30px
}

@media only screen and (max-width: 1172px) {
    header .header__mobile {
        display:flex
    }
}

header .header__logo {
    display: flex;
    align-items: center;
    transition: 0.3s all;
    position: relative;
    z-index: 4
}

header .header__logo:hover {
    opacity: 0.7;
    transition: 0.3s all
}

header .header__logo img {
    max-width: 154px;
    width: 100%
}

header .header__links {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 14px
}

@media only screen and (max-width: 1172px) {
    header .header__links {
        display:none
    }
}

header .header__links .links__link {
    padding: 12px 17px;
    color: #FFF;
    border-radius: 5px;
    background: rgba(0,0,0,0.31);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s all
}

header .header__links .links__link:hover,header .header__links .links__link.active {
    transition: 0.3s all;
    border-radius: 5px;
    background: rgba(207,69,255,0.21)
}

header .mobile__menu {
    width: 100%;
    background: #11061E;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 20px;
    height: 100vh;
    padding: 40px 30px;
    padding-top: 150px;
    transform: translateX(-100%);
    transition: 0.3s all
}

header .mobile__menu.active {
    transform: translateX(0%);
    transition: 0.3s all
}

header .mobile__menu a {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

header .header__actions {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 8px
}

header .header__actions .actions__btn {
    padding: 23px 20px;
    color: #FFF;
    height: 64px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    background: rgba(0,0,0,0.31);
    transition: 0.3s all
}

@media only screen and (max-width: 750px) {
    header .header__actions .actions__btn {
        display:none
    }
}

header .header__actions .actions__btn.orange {
    color: #272210;
    background: #FFC700
}

header .header__actions .actions__btn:hover {
    color: #FFF;
    transition: 0.3s all;
    background: rgba(207,69,255,0.21)
}

header .header__actions .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

header .header__actions .dropdown .dropdown-toggle {
    width: 73px;
    height: 64px;
    border-radius: 5px;
    background: rgba(0,0,0,0.31);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    cursor: pointer
}

header .header__actions .dropdown .dropdown-toggle .icon {
    width: 20px
}

header .header__actions .dropdown .dropdown-toggle.active .arrow {
    transform: rotate(180deg);
    transition: 0.3s all
}

header .header__actions .dropdown .dropdown-toggle .arrow {
    transition: 0.3s all;
    width: 12px
}

header .header__actions .dropdown .dropdown-menu {
    display: grid;
    grid-gap: 4px;
    top: 68px;
    position: absolute;
    width: 302px;
    padding: 10px 9px;
    border-radius: 5px;
    background: rgba(0,0,0,0.36);
    backdrop-filter: blur(10.7px);
    transform: scale(0);
    transition: 0.3s all
}

header .header__actions .dropdown .dropdown-menu.active {
    transform: scale(1);
    transition: 0.3s all
}

header .header__actions .dropdown .dropdown-menu a {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #121212;
    background: rgba(0,0,0,0.74);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

header .header__actions .dropdown .dropdown-menu a:hover,header .header__actions .dropdown .dropdown-menu a.active {
    border-radius: 5px;
    border: 1px solid #121212;
    background: rgba(207,69,255,0.74)
}

header .header__actions .mobile__btn {
    width: 40px;
    height: 30px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    margin-left: 50px
}

@media only screen and (max-width: 750px) {
    header .header__actions .mobile__btn {
        margin-left:20px
    }
}

@media only screen and (max-width: 1172px) {
    header .header__actions .mobile__btn {
        display:flex
    }
}

header .header__actions .mobile__btn.active span {
    transition: width 0.3s
}

header .header__actions .mobile__btn.active span:nth-child(1) {
    width: 30%;
    transition: width 0.3s
}

header .header__actions .mobile__btn.active span:nth-child(2) {
    width: 60%;
    transition: width 0.3s
}

header .header__actions .mobile__btn span {
    transition: width 0.3s;
    width: 100%;
    height: 3px;
    background: #FFF
}

.container {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%
}

section.privacy {
    padding: 150px 30px 80px;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff
}

section.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    width: 100%;
    overflow: hidden;
    margin-bottom: 103px;
    user-select: none
}

section.intro::after {
    width: 100%;
    height: 239px;
    background: linear-gradient(180deg, rgba(23,11,37,0) 0%, #11061E 96.39%);
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0
}

section.intro video {
    height: auto;
    width: 100%;
    position: absolute;
    pointer-events: none
}

section.intro .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-top: calc(65px + 40px)
}

section.intro .container .parallax {
    max-width: 1119px;
    width: 100%;
    position: absolute
}

section.intro .container .parallax img {
    width: 100%;
    pointer-events: none
}

section.intro .container h1 {
    position: relative;
    z-index: 3;
    margin-bottom: 66px;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 26.3px rgba(48,37,63,0.78);
    font-size: 67px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase
}

@media only screen and (max-width: 1000px) {
    section.intro .container h1 {
        font-size:57px
    }
}

@media only screen and (max-width: 770px) {
    section.intro .container h1 {
        font-size:46px
    }
}

@media only screen and (max-width: 630px) {
    section.intro .container h1 {
        font-size:34px
    }
}

@media only screen and (max-width: 470px) {
    section.intro .container h1 {
        font-size:26px
    }
}

section.intro .container .intro__actions {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 630px) {
    section.intro .container .intro__actions {
        flex-direction:column;
        grid-gap: 20px
    }
}

section.intro .container .intro__actions .actions__play {
    width: 301px;
    height: 84px;
    background: url(/assets/img/playe_btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    color: #272210;
    text-align: center;
    position: relative;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

section.intro .container .intro__actions .actions__play:hover {
    transform: scale(0.9);
    transition: 0.3s all
}

section.intro .container .intro__actions .actions__play img {
    width: 65px;
    top: -25px;
    left: -3px;
    position: absolute
}

section.intro .container .intro__actions .actions__video {
    width: 195.5px;
    height: 84px;
    background: url(/assets/img/video_btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    color: #FFF;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s all
}

section.intro .container .intro__actions .actions__video svg {
    width: 33px
}

section.intro .container .intro__actions .actions__video:hover {
    transform: scale(0.9);
    transition: 0.3s all
}

@keyframes leaves {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1.1)
    }
}

.treeLeaves {
    animation: leaves 3s ease-in-out infinite alternate;
    -webkit-animation: leaves 3s ease-in-out infinite alternate
}

section.about {
    margin-bottom: 176px
}

@media only screen and (max-width: 1172px) {
    section.about {
        margin-top:-200px
    }
}

section.about .container {
    display: grid;
    grid-template-columns: 1.9fr 2.01fr;
    grid-gap: 14px;
    position: relative
}

@media only screen and (max-width: 1172px) {
    section.about .container {
        grid-template-columns:1fr
    }
}

section.about .container::after {
    max-width: 487px;
    width: 100%;
    height: 117px;
    background: url(/assets/img/about_layer.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -77px;
    left: -188px;
    content: "";
    position: absolute;
    z-index: -1
}

@media only screen and (max-width: 1505px) {
    section.about .container::after {
        left:0
    }
}

section.about .container::before {
    width: 208px;
    height: 518px;
    content: "";
    position: absolute;
    right: 0;
    top: -86px;
    background: url(/assets/img/particles_about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

section.about .about__right {
    height: 372px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center
}

@media only screen and (max-width: 654px) {
    section.about .about__right {
        height:auto
    }
}

@media only screen and (max-width: 1172px) {
    section.about .about__right {
        justify-content:center;
        overflow: hidden
    }
}

section.about .about__right img.bg {
    position: absolute;
    left: -158px;
    top: 0;
    pointer-events: none
}

@media only screen and (max-width: 1172px) {
    section.about .about__right img.bg {
        left:unset
    }
}

section.about .about__right .right__info {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media only screen and (max-width: 1172px) {
    section.about .about__right .right__info {
        max-width:700px
    }
}

section.about .about__right .right__info svg {
    position: absolute;
    left: -31px;
    top: -24px;
    width: 37px
}

section.about .about__right .right__info b {
    color: #FFF;
    margin-bottom: 22px;
    font-size: 41px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.about .about__left {
    height: 372px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width: 1172px) {
    section.about .about__left {
        padding-left:200px;
        overflow: hidden;
        padding-top: 200px;
        height: 572px
    }
}

@media only screen and (max-width: 776px) {
    section.about .about__left {
        padding-left:0px
    }
}

section.about .about__left img.person {
    width: 225px;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1
}

@media only screen and (max-width: 1172px) {
    section.about .about__left img.person {
        left:100px;
        bottom: 0px
    }
}

section.about .about__left img.bg {
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none
}

@media only screen and (max-width: 1172px) {
    section.about .about__left img.bg {
        right:unset;
        left: 0;
        bottom: 0;
        top: unset
    }
}

@media only screen and (max-width: 776px) {
    section.about .about__left img.bg {
        left:unset
    }
}

section.about .about__left .left__counter {
    width: 324px;
    height: 138px;
    background: url(/assets/img/about_counter_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 21px;
    grid-gap: 13px;
    position: relative;
    z-index: 3
}

@media only screen and (max-width: 776px) {
    section.about .about__left .left__counter {
        margin-left:calc(100% - 424px)
    }
}

@media only screen and (max-width: 654px) {
    section.about .about__left .left__counter {
        margin-left:calc(100% - 324px)
    }
}

section.about .about__left .left__counter svg {
    width: 48px
}

section.about .about__left .left__counter::after {
    width: 126px;
    height: 124px;
    content: "";
    background: url(/assets/img/bottle_1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -102px;
    left: 71px;
    position: absolute
}

section.about .about__left .left__counter::before {
    width: 161px;
    height: 159px;
    content: "";
    background: url(/assets/img/bottle_2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -116px;
    right: 1px;
    position: absolute
}

section.about .about__left .left__counter .counter__info {
    color: #FFF;
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.about .about__left .left__counter .counter__info b {
    color: #FFF;
    text-align: right;
    font-size: 33px;
    font-style: normal;
    font-weight: 800;
    line-height: normal
}

section.play {
    margin-bottom: 154px
}

section.play .container {
    position: relative
}

@media only screen and (max-width: 1505px) {
    section.play .container {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 100px
    }
}

section.play .container::after {
    width: 168px;
    height: 168px;
    content: "";
    background: #CF45FF;
    filter: blur(173.8px);
    top: -16px;
    left: -109px;
    position: absolute
}

@media only screen and (max-width: 1505px) {
    section.play .container::after {
        right:0
    }
}

section.play .container::before {
    width: 168px;
    height: 168px;
    content: "";
    background: #FFC700;
    filter: blur(173.8px);
    bottom: -170px;
    right: -122px;
    position: absolute
}

@media only screen and (max-width: 1505px) {
    section.play .container::before {
        right:0
    }
}

section.play .play__info {
    max-width: 600px;
    width: 100%;
    position: relative
}

section.play .play__info svg.bg {
    top: -34px;
    max-width: 752px;
    width: 100%;
    left: -25px;
    position: absolute;
    z-index: -1
}

section.play .play__info .info__header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 10px;
    margin-bottom: 19px;
    position: relative
}

@media only screen and (max-width: 555px) {
    section.play .play__info .info__header {
        flex-direction:column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        grid-gap: 20px
    }
}

section.play .play__info .info__header svg.particle {
    width: 37px;
    top: -26px;
    left: -34px;
    position: absolute
}

@media only screen and (max-width: 555px) {
    section.play .play__info .info__header svg.particle {
        display:none
    }
}

section.play .play__info .info__header b {
    color: #FFF;
    font-size: 41px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 412px) {
    section.play .play__info .info__header b {
        font-size:36px
    }
}

section.play .play__info .info__header .header__platform {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #6B5881;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    grid-gap: 5px;
    margin-top: 10px
}

section.play .play__info .info__header .header__platform svg {
    width: 18px
}

section.play .play__info .info__text {
    max-width: 490px;
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px
}

@media only screen and (max-width: 555px) {
    section.play .play__info .info__text {
        text-align:center;
        max-width: unset
    }
}

section.play .play__info .info__actions {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: -10px
}

@media only screen and (max-width: 650px) {
    section.play .play__info .info__actions {
        margin-left:0;
        flex-direction: column
    }
}

section.play .play__info .info__actions .actions__btn {
    width: 301px;
    height: 84px;
    background: url(/assets/img/play_gray.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #5E4B75;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center
}

section.play .play__info .info__actions .actions__btn:hover {
    transform: scale(0.9);
    transition: 0.3s all
}

section.play .play__info .info__actions .actions__btn.yellow {
    color: #272210;
    background: url(/assets/img/play__yellow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

section.play img.play_picture {
    max-width: 752px;
    width: 100%;
    position: absolute;
    top: -81px;
    right: -164px;
    pointer-events: none
}

@media only screen and (max-width: 1505px) {
    section.play img.play_picture {
        position:relative;
        top: unset;
        right: unset
    }
}

section.favorite {
    margin-bottom: 93px
}

section.favorite .container {
    position: relative
}

section.favorite .container::after {
    max-width: 487px;
    width: 100%;
    height: 117px;
    background: url(/assets/img/about_layer.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -42px;
    right: -102px;
    content: "";
    position: absolute;
    z-index: -1
}

@media only screen and (max-width: 1370px) {
    section.favorite .container::after {
        right:20px
    }
}

section.favorite .favorite__title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    color: #FFF;
    font-size: 62px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 837px) {
    section.favorite .favorite__title {
        font-size:46px
    }
}

@media only screen and (max-width: 621px) {
    section.favorite .favorite__title {
        font-size:36px
    }
}

@media only screen and (max-width: 500px) {
    section.favorite .favorite__title {
        font-size:24px
    }
}

section.favorite .favorite__title b {
    color: #FFC700;
    font-weight: 900
}

section.favorite .favorite__title img {
    max-width: 1271px;
    position: absolute;
    z-index: -1;
    width: 100%
}

section.favorite .favorite__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px
}

@media only screen and (max-width: 800px) {
    section.favorite .favorite__grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.favorite .favorite__grid .grid__block {
    padding: 11px;
    border-radius: 28px;
    border: 1px solid #2E1D42;
    background: #1A0E28;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 24px
}

@media only screen and (max-width: 1055px) {
    section.favorite .favorite__grid .grid__block {
        flex-direction:column;
        align-items: center;
        justify-content: center
    }
}

section.favorite .favorite__grid .grid__block .block__img {
    width: 170px;
    min-height: 252px;
    border-radius: 28px;
    border: 1px solid #2E1D42
}

@media only screen and (max-width: 1055px) {
    section.favorite .favorite__grid .grid__block .block__img {
        width:100%
    }
}

section.favorite .favorite__grid .grid__block .block__info {
    width: calc(100% - 170px - 24px)
}

@media only screen and (max-width: 1055px) {
    section.favorite .favorite__grid .grid__block .block__info {
        width:100%
    }
}

section.favorite .favorite__grid .grid__block .block__info .info__title {
    color: #FFF;
    margin-bottom: 11px;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.favorite .favorite__grid .grid__block .block__info .info__text {
    color: #B9ADC8;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.slick-slider {
    margin: 0 -15px
}

.slick-slide {
    margin-right: 15px;
    margin-left: 15px;
    height: auto
}

section.news {
    margin-bottom: 138px
}

section.news.full {
    padding-top: 150px;
    padding-bottom: 90px;
    margin-bottom: 0
}

section.news .news__title {
    width: 100%;
    text-align: center;
    color: #FFF;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 63px
}

section.news .news__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    margin-bottom: 48px
}

section.news .news__header .header__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 26px;
    flex-wrap: wrap
}

@media only screen and (max-width: 450px) {
    section.news .news__header .header__title {
        grid-gap:15px
    }
}

section.news .news__header .header__title b {
    color: #FFF;
    font-size: 62px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 679px) {
    section.news .news__header .header__title b {
        font-size:48px
    }
}

@media only screen and (max-width: 450px) {
    section.news .news__header .header__title b {
        font-size:36px
    }
}

section.news .news__header .header__title a {
    color: #78668D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s all
}

section.news .news__header .header__title a:hover {
    color: #fff;
    transition: 0.3s all
}

@media only screen and (max-width: 450px) {
    section.news .news__header .header__title a {
        font-size:14px
    }
}

section.news .news__header .header__arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

section.news .news__header .header__arrows .arrows__arrow {
    width: 93px;
    cursor: pointer;
    transition: 0.3s all
}

@media only screen and (max-width: 679px) {
    section.news .news__header .header__arrows .arrows__arrow {
        width:80px
    }
}

@media only screen and (max-width: 450px) {
    section.news .news__header .header__arrows .arrows__arrow {
        width:60px
    }
}

section.news .news__header .header__arrows .arrows__arrow.left {
    margin-bottom: 30px
}

section.news .news__header .header__arrows .arrows__arrow.right {
    margin-left: -20px;
    margin-top: 30px
}

section.news .news__header .header__arrows .arrows__arrow:hover {
    transform: scale(0.9);
    transition: 0.3s all
}

section.news .news__list.grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px
}

@media only screen and (max-width: 1074px) {
    section.news .news__list.grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 856px) {
    section.news .news__list.grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 560px) {
    section.news .news__list.grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.news .news__list .list__block {
    border-radius: 20px;
    background: #221432;
    width: 100%;
    height: 330px
}

section.news .news__list .list__block .block__image {
    width: 100%;
    height: 165px;
    border-radius: 20px
}

section.news .news__list .list__block .block__content {
    padding: 20px;
    width: 100%
}

section.news .news__list .list__block .block__content .content__title {
    margin-bottom: 8px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

section.news .news__list .list__block .block__content .content__text {
    color: #9D8CB0;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-height: 50px;
    margin-bottom: 13px
}

section.news .news__list .list__block .block__content .content__link {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9D8CB0;
    border-radius: 10px;
    background: #2D1C40;
    transition: 0.3s all;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

section.news .news__list .list__block .block__content .content__link:hover {
    background: #FFC700;
    color: #fff;
    transition: 0.3s all
}

section.news__preview {
    padding-top: 104px
}

section.news__preview .container {
    padding-top: 67px;
    padding-bottom: 67px;
    min-height: calc(100vh - 170px - 104px)
}

section.news__preview .preview__title {
    margin-bottom: 45px;
    display: flex;
    padding: 57px;
    align-items: center;
    min-height: 303px;
    border-radius: 20px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 820px) {
    section.news__preview .preview__title {
        padding:57px 30px;
        font-size: 36px
    }
}

section.news__preview p {
    color: #FFF;
    text-align: justify;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 181.9%;
    padding-bottom: 50px
}

section.docs {
    padding-top: 104px
}

section.docs .container {
    padding-top: 67px;
    padding-bottom: 67px;
    min-height: calc(100vh - 170px - 104px)
}

section.docs .dosc__title {
    margin-bottom: 41px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.docs p {
    color: #FFF;
    text-align: justify;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 181.9%;
    padding-bottom: 50px
}

section.functions {
    background: url(/assets/img/functions_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 650px
}

@media only screen and (max-width: 1276px) {
    section.functions {
        background-size:cover;
        background-position: center
    }
}

section.functions .functions__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    margin-bottom: 78px
}

section.functions .functions__header .header__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 26px;
    flex-wrap: wrap
}

section.functions .functions__header .header__title svg.particle {
    width: 37px;
    top: -26px;
    left: -34px;
    position: absolute
}

@media only screen and (max-width: 555px) {
    section.functions .functions__header .header__title svg.particle {
        display:none
    }
}

@media only screen and (max-width: 450px) {
    section.functions .functions__header .header__title {
        grid-gap:15px
    }
}

section.functions .functions__header .header__title b {
    color: #FFF;
    font-size: 62px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 719px) {
    section.functions .functions__header .header__title b {
        font-size:48px
    }
}

@media only screen and (max-width: 553px) {
    section.functions .functions__header .header__title b {
        font-size:36px
    }
}

@media only screen and (max-width: 427px) {
    section.functions .functions__header .header__title b {
        font-size:26px
    }
}

section.functions .functions__header .header__title a {
    color: #78668D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s all
}

section.functions .functions__header .header__title a:hover {
    color: #fff;
    transition: 0.3s all
}

@media only screen and (max-width: 450px) {
    section.functions .functions__header .header__title a {
        font-size:14px
    }
}

section.functions .functions__header .header__arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

section.functions .functions__header .header__arrows .arrows__arrow {
    width: 93px;
    cursor: pointer;
    transition: 0.3s all
}

@media only screen and (max-width: 679px) {
    section.functions .functions__header .header__arrows .arrows__arrow {
        width:80px
    }
}

@media only screen and (max-width: 450px) {
    section.functions .functions__header .header__arrows .arrows__arrow {
        width:60px
    }
}

section.functions .functions__header .header__arrows .arrows__arrow.left {
    margin-bottom: 30px
}

section.functions .functions__header .header__arrows .arrows__arrow.right {
    margin-left: -20px;
    margin-top: 30px
}

section.functions .functions__header .header__arrows .arrows__arrow:hover {
    transform: scale(0.9);
    transition: 0.3s all
}

section.functions .functions__list {
    width: 100%
}

section.functions .functions__list .list__block {
    width: 283px;
    height: 318px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative
}

section.functions .functions__list .list__block .block__img {
    pointer-events: none;
    height: 276px;
    position: absolute;
    left: 0;
    top: 0
}

section.functions .functions__list .list__block .block__title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272210;
    text-align: center;
    width: 287px;
    height: 84px;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: url(/assets/img/function_slide_title.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

section.forbes {
    padding-top: 104px;
    padding-bottom: 87px
}

section.forbes .forbes__header {
    margin-bottom: 90px;
    margin-top: 68px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    flex-wrap: wrap
}

section.forbes .forbes__header .header__title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 1107px) {
    section.forbes .forbes__header .header__title {
        width:100%;
        text-align: center
    }
}

section.forbes .forbes__header .header__sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 20px 5px;
    flex-wrap: wrap
}

@media only screen and (max-width: 1107px) {
    section.forbes .forbes__header .header__sort {
        justify-content:center
    }
}

section.forbes .forbes__header .header__sort .sort__all {
    height: 76px;
    padding: 0 25px;
    background: #FFC700;
    transform: skewX(-26deg);
    opacity: 0.5;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

@media only screen and (max-width: 1107px) {
    section.forbes .forbes__header .header__sort .sort__all {
        margin-left:20px
    }
}

section.forbes .forbes__header .header__sort .sort__all:hover,section.forbes .forbes__header .header__sort .sort__all.active {
    transition: 0.3s all;
    opacity: 1
}

section.forbes .forbes__header .header__sort .sort__all .all__text {
    color: #000;
    transform: skewX(26deg);
    font-family: Montserrat;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: normal
}

section.forbes .forbes__header .header__sort .list__block {
    opacity: 0.5;
    transition: 0.3s all;
    cursor: pointer;
    width: 252px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 53px;
    background: url(/assets/img/server__bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    position: relative
}

section.forbes .forbes__header .header__sort .list__block:hover,section.forbes .forbes__header .header__sort .list__block.active {
    transition: 0.3s all;
    opacity: 1
}

section.forbes .forbes__header .header__sort .list__block .block__number {
    width: 48px;
    height: 50px;
    background: #CF45FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-23deg);
    position: absolute;
    right: 0px
}

section.forbes .forbes__header .header__sort .list__block .block__number .number__text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    transform: skewX(23deg)
}

section.forbes .forbes__top {
    margin-bottom: 46px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    grid-gap: 147px
}

@media only screen and (max-width: 900px) {
    section.forbes .forbes__top {
        grid-gap:20px;
        justify-content: space-between
    }
}

@media only screen and (max-width: 651px) {
    section.forbes .forbes__top {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        grid-gap: 40px
    }
}

section.forbes .forbes__top .top__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px
}

section.forbes .forbes__top .top__block:nth-child(1),section.forbes .forbes__top .top__block:nth-child(3) {
    margin-top: 80px
}

@media only screen and (max-width: 651px) {
    section.forbes .forbes__top .top__block:nth-child(1),section.forbes .forbes__top .top__block:nth-child(3) {
        margin-top:0
    }
}

@media only screen and (max-width: 651px) {
    section.forbes .forbes__top .top__block:nth-child(1) {
        order:2
    }
}

@media only screen and (max-width: 651px) {
    section.forbes .forbes__top .top__block:nth-child(2) {
        order:1
    }
}

@media only screen and (max-width: 651px) {
    section.forbes .forbes__top .top__block:nth-child(3) {
        order:3
    }
}

section.forbes .forbes__top .top__block .block__name {
    margin-bottom: 7px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.forbes .forbes__top .top__block .block__sum {
    padding: 12px 17px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border-radius: 5px;
    background: rgba(0,0,0,0.31)
}

section.forbes .forbes__top .top__block .block__circle {
    margin-bottom: 14px;
    width: 194px;
    height: 194px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,212,61,0.1);
    padding: 8px;
    position: relative
}

section.forbes .forbes__top .top__block .block__circle .circle__number {
    width: 52px;
    height: 52px;
    border-radius: 60px;
    background: #CF45FF;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
    left: 0;
    z-index: 4;
    position: absolute;
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.forbes .forbes__top .top__block .block__circle .circle__info {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 200px
}

section.forbes .forbes__top .top__block .block__circle .circle__info.gold {
    background: #FFD43D
}

section.forbes .forbes__top .top__block .block__circle .circle__info.silver {
    background: #BABDC8
}

section.forbes .forbes__top .top__block .block__circle .circle__info.bronze {
    background: #945542
}

section.forbes .forbes__top .top__block .block__circle .circle__info img {
    width: 256px;
    position: absolute;
    left: -40px;
    top: 15px
}

section.forbes .forbes__list {
    border-radius: 20px;
    border: 1px solid #241436;
    background: #180A27;
    padding: 29px 25px;
    display: grid;
    grid-gap: 11px;
    overflow-x: auto
}

section.forbes .forbes__list .list__line {
    min-width: 600px;
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid #241436;
    background: #1E1030;
    display: flex;
    align-items: center;
    justify-content: space-between
}

section.forbes .forbes__list .list__line .line__info {
    display: flex;
    align-items: center;
    grid-gap: 24px
}

section.forbes .forbes__list .list__line .line__info .info__position {
    width: 31px;
    height: 31px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #86759D;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.forbes .forbes__list .list__line .line__info .info__name {
    width: 192px;
    color: #86759D;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.forbes .forbes__list .list__line .line__info .info__server {
    color: #86759D;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5
}

section.forbes .forbes__list .list__line .line__balance {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #86759D;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.maps {
    padding-top: 151px;
    padding-bottom: 90px
}

section.maps .maps__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 44px
}

section.maps .maps__header .header__title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.maps .maps__header .input__wrap {
    max-width: 510px;
    width: 100%;
    margin-bottom: 0
}

section.maps .maps__container {
    width: 100%;
    height: 520px;
    overflow: auto;
    border-radius: 20px
}

section.maps .maps__container img {
    width: 3000px;
    height: 3000px
}

section.pictures {
    margin-bottom: 90px
}

section.pictures .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 30px
}

@media only screen and (max-width: 909px) {
    section.pictures .container {
        flex-direction:column;
        align-items: center;
        justify-content: center
    }
}

section.pictures .container .pictures__gallery {
    padding: 36px 28px;
    padding-top: 45px;
    border-radius: 19px;
    background: #221432;
    width: calc(100% - 30px - 457px);
    position: relative
}

@media only screen and (max-width: 909px) {
    section.pictures .container .pictures__gallery {
        width:100%
    }
}

section.pictures .container .pictures__gallery .picture {
    width: 189px;
    position: absolute;
    top: -67px;
    right: -44px
}

@media only screen and (max-width: 500px) {
    section.pictures .container .pictures__gallery .picture {
        display:none
    }
}

@media only screen and (max-width: 909px) {
    section.pictures .container .pictures__gallery .picture {
        right:0
    }
}

section.pictures .container .pictures__gallery .gallery__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 27px 14px
}

@media only screen and (max-width: 1059px) {
    section.pictures .container .pictures__gallery .gallery__grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 909px) {
    section.pictures .container .pictures__gallery .gallery__grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 618px) {
    section.pictures .container .pictures__gallery .gallery__grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 450px) {
    section.pictures .container .pictures__gallery .gallery__grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.pictures .container .pictures__gallery .gallery__grid .grid__block {
    height: 177.438px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer
}

section.pictures .container .pictures__gallery .gallery__grid .grid__block::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 20px;
    background: rgba(0,0,0,0.76);
    opacity: 0;
    transition: 0.3s all;
    z-index: 1
}

section.pictures .container .pictures__gallery .gallery__grid .grid__block:hover::after {
    opacity: 1;
    transition: 0.3s all
}

section.pictures .container .pictures__gallery .gallery__grid .grid__block:hover::before {
    transform: scale(1);
    transition: 0.3s all
}

section.pictures .container .pictures__gallery .gallery__grid .grid__block::before {
    transition: 0.3s all;
    content: "";
    width: 46px;
    height: 46px;
    background: url(/assets/img/gallery_plus.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 2;
    transform: scale(0)
}

section.pictures .container .pictures__gallery .gallery__title {
    margin-bottom: 32px;
    color: #FFF;
    font-size: 47px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding: 0 23px;
    position: relative
}

@media only screen and (max-width: 1059px) {
    section.pictures .container .pictures__gallery .gallery__title {
        font-size:36px
    }
}

@media only screen and (max-width: 450px) {
    section.pictures .container .pictures__gallery .gallery__title {
        font-size:26px
    }

    section.pictures .container .pictures__gallery .gallery__title br {
        display: none
    }
}

section.pictures .container .pictures__gallery .gallery__title svg.particle {
    width: 37px;
    top: -26px;
    left: -34px;
    position: absolute
}

@media only screen and (max-width: 555px) {
    section.pictures .container .pictures__gallery .gallery__title svg.particle {
        display:none
    }
}

section.pictures .container .pictures__content {
    max-width: 457px;
    width: 100%;
    height: 609px;
    border-radius: 19px;
    background: #FFC700 url(/assets/img/pictures_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 45px 23px;
    position: relative
}

section.pictures .container .pictures__content .picture {
    width: 239px;
    right: 13px;
    bottom: -58px;
    position: absolute
}

section.pictures .container .pictures__content .content__title {
    width: 100%;
    padding: 0 16px;
    position: relative;
    color: #11061E;
    font-size: 47px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-bottom: 18px
}

@media only screen and (max-width: 1059px) {
    section.pictures .container .pictures__content .content__title {
        font-size:36px
    }
}

section.pictures .container .pictures__content .content__title span {
    padding: 5px 14px;
    color: #FFF;
    position: absolute;
    right: 3px;
    transform: rotate(-26deg);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 9px;
    background: #CF45FF
}

section.pictures .container .pictures__content .content__step {
    padding: 19px;
    border-radius: 10px;
    background: #CF45FF;
    width: 100%;
    margin-bottom: 18px
}

section.pictures .container .pictures__content .content__step .step__number {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px
}

section.pictures .container .pictures__content .content__step .step__title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

section.pictures .container .pictures__content .content__step .step__link {
    width: 100%;
    height: 62px;
    border-radius: 10px;
    background: #FFC700;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 13px;
    margin-top: 25px;
    color: #272210;
    text-align: center;
    transition: 0.3s all;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

section.pictures .container .pictures__content .content__step .step__link:hover {
    opacity: 0.8;
    transition: 0.3s all
}

footer {
    border-top: 1px solid #1E122D;
    padding-top: 23px;
    padding-bottom: 31px
}

footer .footer__content {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    flex-wrap: wrap
}

@media only screen and (max-width: 540px) {
    footer .footer__content {
        justify-content:center
    }
}

footer .footer__content .content__info {
    display: flex;
    align-items: center;
    grid-gap: 24px;
    color: #564B65;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

footer .footer__content .content__info img {
    width: 137px
}

footer .footer__content .content__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 13px;
    flex-wrap: wrap
}

@media only screen and (max-width: 1066px) {
    footer .footer__content .content__links {
        justify-content:flex-start
    }
}

@media only screen and (max-width: 540px) {
    footer .footer__content .content__links {
        justify-content:center
    }
}

footer .footer__content .content__links .links__link {
    padding: 0 17px;
    height: 45px;
    border-radius: 7px;
    background: #170E23;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 6px;
    color: #78668D;
    transition: 0.3s all;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

footer .footer__content .content__links .links__link:hover {
    opacity: 0.7;
    transition: 0.3s all
}

footer .footer__content .content__links .links__link svg {
    width: 19px
}

footer .footer__content .content__links .links__link.vk {
    color: #07F;
    background: rgba(0,119,255,0.08)
}

footer .footer__content .content__links .links__link.tg {
    color: #5662F6;
    background: rgba(86,98,246,0.08)
}

.footer__other {
    padding: 11px 18px;
    border-radius: 10px;
    background: #0B0414;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 20px
}

@media only screen and (max-width: 540px) {
    .footer__other {
        justify-content:center
    }
}

.footer__other .other__links {
    display: flex;
    align-items: center;
    grid-gap: 20px 36px;
    flex-wrap: wrap
}

@media only screen and (max-width: 540px) {
    .footer__other .other__links {
        justify-content:center
    }
}

.footer__other .other__links a {
    text-align: center;
    color: #4C4258;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s all
}

.footer__other .other__links a:hover {
    color: #fff;
    transition: 0.3s all
}

.footer__other .other__images {
    width: 217px
}

section.notfound .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

section.notfound .container .logo {
    width: 162px;
    top: 57px;
    position: absolute
}

section.notfound .container img.text {
    max-width: 653px;
    width: 100%;
    position: relative;
    z-index: -1;
    margin-bottom: -70px
}

section.notfound .container h1 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 22px;
    text-align: center
}

@media only screen and (max-width: 616px) {
    section.notfound .container h1 {
        font-size:36px
    }
}

section.notfound .container h6 {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
    margin-bottom: 29px;
    text-align: center
}

section.notfound .container .notfound__link {
    padding: 23px 41px;
    color: #FFF;
    border-radius: 5px;
    background: #CF45FF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s all
}

section.notfound .container .notfound__link:hover {
    opacity: 0.7;
    transition: 0.3s all
}

section.login {
    padding-top: 104px
}

section.login .container {
    min-height: calc(100vh - 170px - 104px);
    padding: 90px 0px;
    display: flex;
    align-items: center;
    justify-content: center
}

section.login form {
    border-radius: 20px;
    border: 1px solid #161616;
    background: rgba(0,0,0,0.37);
    max-width: 853px;
    width: 100%
}

section.login .select__servers {
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

section.login .select__servers .servers__title {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 68px
}

@media only screen and (max-width: 500px) {
    section.login .select__servers .servers__title {
        font-size:42px
    }
}

section.login .select__servers .servers__label {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 27px;
    text-align: center
}

section.login .select__servers .servers__btn {
    padding: 23px 37px;
    color: #FFF;
    border-radius: 5px;
    background: #CF45FF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    opacity: 1;
    transition: 0.3s all;
    cursor: pointer
}

section.login .select__servers .servers__btn:hover {
    transition: 0.3s all;
    opacity: 0.7
}

section.login .select__servers .servers__list {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px 0px;
    flex-wrap: wrap;
    margin-bottom: 72px
}

section.login .select__servers .servers__list .list__block {
    opacity: 0.5;
    transition: 0.3s all;
    cursor: pointer;
    width: 252px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 53px;
    background: url(/assets/img/server__bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    position: relative
}

section.login .select__servers .servers__list .list__block:hover,section.login .select__servers .servers__list .list__block.active {
    transition: 0.3s all;
    opacity: 1
}

section.login .select__servers .servers__list .list__block .block__number {
    width: 48px;
    height: 50px;
    background: #CF45FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-23deg);
    position: absolute;
    right: 0px
}

section.login .select__servers .servers__list .list__block .block__number .number__text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    transform: skewX(23deg)
}

section.login .auth {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px 55px;
    padding-top: 55px
}

section.login .auth .auth__title {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 39px
}

@media only screen and (max-width: 481px) {
    section.login .auth .auth__title {
        font-size:36px
    }
}

section.login .auth .auth__server {
    top: -15px;
    position: absolute;
    cursor: pointer;
    width: 151px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 29px;
    background: url(/assets/img/select_server_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: normal
}

section.login .auth .auth__server .block__number {
    width: 31px;
    height: 33px;
    background: #CF45FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-23deg);
    position: absolute;
    right: -10px;
    top: -18px
}

section.login .auth .auth__server .block__number .number__text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    transform: skewX(23deg)
}

section.login .auth .auth__footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 20px;
    margin-top: 38px
}

@media only screen and (max-width: 515px) {
    section.login .auth .auth__footer {
        justify-content:center;
        margin-top: 20px
    }
}

section.login .auth .auth__footer .footer__prev {
    transition: 0.3s all;
    padding: 23px 17px;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer
}

section.login .auth .auth__footer .footer__prev:hover {
    transition: 0.3s all;
    background: rgba(255,255,255,0.3)
}

section.login .auth .auth__footer button {
    cursor: pointer;
    transition: 0.3s all;
    padding: 23px 67px;
    border-radius: 5px;
    background: #CF45FF;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

section.login .auth .auth__footer button:hover {
    transition: 0.3s all;
    opacity: 0.7
}

.input__wrap {
    width: 100%;
    margin-bottom: 28px
}

.input__wrap.line {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr 4fr;
    grid-gap: 10px
}

@media only screen and (max-width: 675px) {
    .input__wrap.line {
        display:block
    }
}

.input__wrap.line .wrap__label {
    margin-bottom: 0
}

@media only screen and (max-width: 675px) {
    .input__wrap.line .wrap__label {
        margin-bottom:14px
    }
}

.input__wrap .wrap__label {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    grid-gap: 14px;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.input__wrap .wrap__label svg {
    width: 18px
}

.input__wrap .wrap__label b {
    font-weight: 500;
    color: rgba(255,255,255,0.28)
}

.input__wrap .wrap__input {
    width: 100%;
    min-height: 59px;
    height: 59px;
    position: relative;
    display: flex;
    align-items: center
}

.input__wrap .wrap__input .show__password {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 17px
}

.input__wrap .wrap__input .show__password.active .show {
    display: none
}

.input__wrap .wrap__input .show__password.active .hide {
    display: block
}

.input__wrap .wrap__input .show__password svg {
    width: 22px;
    cursor: pointer
}

.input__wrap .wrap__input .show__password .show {
    display: block
}

.input__wrap .wrap__input .show__password .hide {
    display: none
}

.input__wrap .wrap__input input,.input__wrap .wrap__input select,.input__wrap .wrap__input textarea {
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0 22px;
    border-radius: 15px;
    border: 1px solid #161616;
    background: rgba(0,0,0,0.37);
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.input__wrap .wrap__input input::placeholder,.input__wrap .wrap__input select::placeholder,.input__wrap .wrap__input textarea::placeholder {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.6
}

.input__wrap .wrap__input textarea {
    padding: 20px 22px;
    min-height: 142px
}

.input__wrap .wrap__input select {
    appearance: none;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="8" viewBox="0 0 14 8" fill="none"><path opacity="0.7" d="M1 1L7 7L13 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/> </svg>');
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 26px
}

section.donate {
    padding-top: 104px;
    padding-bottom: 80px
}

section.donate .container {
    min-height: calc(100vh - 170px - 104px);
    padding-top: 74px;
    padding-bottom: 54px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 63px;
    position: relative
}

@media only screen and (max-width: 916px) {
    section.donate .container {
        flex-direction:column;
        align-items: center;
        justify-content: flex-start
    }
}

section.donate .donate__course__block {
    position: absolute;
    top: 74px;
    right: 0
}

@media only screen and (max-width: 916px) {
    section.donate .donate__course__block {
        top:65px;
        right: 20px
    }
}

@media only screen and (max-width: 518px) {
    section.donate .donate__course__block {
        top:75px;
        right: 20px
    }
}

section.donate .donate__course {
    height: 66px;
    background: rgba(0,0,0,0.47);
    width: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-26deg)
}

@media only screen and (max-width: 665px) {
    section.donate .donate__course {
        width:180px
    }
}

@media only screen and (max-width: 437px) {
    section.donate .donate__course {
        width:150px
    }
}

section.donate .donate__course .course__text {
    transform: skewX(26deg);
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

section.donate .donate__info {
    max-width: 414px;
    width: 100%;
    height: 479px;
    margin-top: 67px;
    background: url(/assets/img/shop_info__bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 63px 20px
}

@media only screen and (max-width: 488px) {
    section.donate .donate__info {
        background-size:cover
    }
}

@media only screen and (max-width: 916px) {
    section.donate .donate__info {
        margin-top:0
    }
}

section.donate .donate__info .info__title {
    margin-bottom: 12px;
    color: #11061E;
    font-size: 31px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

section.donate .donate__info .info__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 7px
}

section.donate .donate__info .info__list .list__block {
    transform: skewX(-26deg);
    height: 50px;
    width: 100%;
    background: #F8B200;
    display: flex;
    align-items: center;
    justify-content: center
}

section.donate .donate__info .info__list .list__block:nth-child(4),section.donate .donate__info .info__list .list__block:nth-child(5),section.donate .donate__info .info__list .list__block:nth-child(6) {
    transform: skewX(26deg)
}

section.donate .donate__info .info__list .list__block:nth-child(4) .block__text,section.donate .donate__info .info__list .list__block:nth-child(5) .block__text,section.donate .donate__info .info__list .list__block:nth-child(6) .block__text {
    transform: skewX(-26deg)
}

section.donate .donate__info .info__list .list__block .block__text {
    transform: skewX(26deg);
    color: #000;
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
    line-height: normal
}

section.donate .donate__info .picture {
    width: 124px;
    top: 33px;
    right: -57px;
    position: absolute;
    pointer-events: none
}

@media only screen and (max-width: 580px) {
    section.donate .donate__info .picture {
        right:20px;
        top: 0
    }
}

section.donate .donate__info .tesla {
    max-width: 540px;
    right: -57px;
    bottom: -122px;
    position: absolute;
    pointer-events: none
}

@media only screen and (max-width: 580px) {
    section.donate .donate__info .tesla {
        right:0;
        max-width: 100%;
        bottom: -50px
    }
}

section.donate .donate__form {
    width: calc(100% - 414px - 63px)
}

@media only screen and (max-width: 916px) {
    section.donate .donate__form {
        width:100%
    }
}

section.donate .donate__form .form__title {
    margin-bottom: 46px;
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

@media only screen and (max-width: 1010px) {
    section.donate .donate__form .form__title {
        font-size:38px
    }
}

@media only screen and (max-width: 665px) {
    section.donate .donate__form .form__title {
        font-size:28px
    }
}

@media only screen and (max-width: 517px) {
    section.donate .donate__form .form__title {
        font-size:28px;
        width: 50%
    }
}

section.donate .donate__form .form__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 19px
}

@media only screen and (max-width: 1010px) {
    section.donate .donate__form .form__grid {
        grid-template-columns:1fr;
        grid-gap: 0
    }
}

section.donate .donate__form button {
    margin-top: 30px;
    height: 64px;
    width: 100%;
    border-radius: 5px;
    background: #CF45FF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s all
}

section.donate .donate__form button:hover {
    opacity: 0.7;
    transition: 0.3s all
}

section.profile {
    padding-top: 161px;
    padding-bottom: 68px
}

section.profile .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 21px
}

@media only screen and (max-width: 925px) {
    section.profile .container {
        flex-direction:column;
        align-items: center
    }
}

section.profile .profile__navbar {
    width: 263px;
    border-radius: 20px;
    border: 1px solid #241436;
    background: #180A27;
    padding: 16px 13px
}

@media only screen and (max-width: 925px) {
    section.profile .profile__navbar {
        width:100%;
        max-width: 100%
    }
}

section.profile .profile__navbar .navbar__profile {
    border-radius: 20px;
    border: 1px solid #241436;
    background: #1F1031;
    width: 100%;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    grid-gap: 12px;
    margin-bottom: 14px
}

section.profile .profile__navbar .navbar__profile .user__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 3px
}

section.profile .profile__navbar .navbar__profile .user__info .info__nickname {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__navbar .navbar__profile .user__info .info__status {
    padding: 4px 11px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 16px;
    background: rgba(86,98,246,0.31)
}

section.profile .profile__navbar .navbar__profile .user__avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px
}

section.profile .profile__navbar .navbar__profile .user__avatar svg {
    position: absolute;
    bottom: -8px
}

section.profile .profile__navbar .navbar__profile .user__avatar .avatar__container {
    width: 53px;
    height: 53px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 60px;
    background: #CF45FF;
    border: 1px solid #FFC107
}

section.profile .profile__navbar .navbar__profile .user__avatar .avatar__container img {
    width: 100%
}

section.profile .profile__navbar .navbar__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    min-height: 537px;
    margin-bottom: 42px
}

@media only screen and (max-width: 925px) {
    section.profile .profile__navbar .navbar__links {
        min-height:auto
    }
}

section.profile .profile__navbar .navbar__links .menu-item {
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1F1031;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    grid-gap: 11px;
    position: relative;
    cursor: pointer;
    color: #584571;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__navbar .navbar__links .menu-item .arrow {
    position: absolute;
    right: 14px
}

section.profile .profile__navbar .navbar__links .menu-item .icon {
    border-radius: 10px;
    background: #2B1B3E;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

section.profile .profile__navbar .navbar__links .menu-item:hover,section.profile .profile__navbar .navbar__links .menu-item--active {
    border: 1px solid #241436;
    background: #2B1B3E;
    color: #CF45FF
}

section.profile .profile__navbar .navbar__links .menu-item:hover .icon svg path,section.profile .profile__navbar .navbar__links .menu-item:hover .icon svg circle,section.profile .profile__navbar .navbar__links .menu-item--active .icon svg path,section.profile .profile__navbar .navbar__links .menu-item--active .icon svg circle {
    fill: #CF45FF
}

section.profile .profile__navbar .navbar__links .menu-item:hover .arrow path,section.profile .profile__navbar .navbar__links .menu-item--active .arrow path {
    stroke: #CF45FF
}

section.profile .profile__navbar .navbar__exit {
    width: 100%;
    padding: 11px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 3px;
    border-radius: 20px;
    border: 1px solid #241436;
    background: #1F1031;
    color: #584571;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

section.profile .profile__navbar .navbar__exit svg {
    width: 24px
}

section.profile .profile__navbar .navbar__exit:hover,section.profile .profile__navbar .navbar__exit.active {
    border: 1px solid #241436;
    background: #2B1B3E;
    color: #CF45FF
}

section.profile .profile__navbar .navbar__exit:hover svg path,section.profile .profile__navbar .navbar__exit:hover svg circle,section.profile .profile__navbar .navbar__exit.active svg path,section.profile .profile__navbar .navbar__exit.active svg circle {
    fill: #CF45FF
}

section.profile .profile__container {
    max-width: calc(100% - 263px - 21px);
    width: 100%
}

@media only screen and (max-width: 925px) {
    section.profile .profile__container {
        width:100%;
        max-width: 100%
    }
}

section.profile .profile__container .container__block {
    border-radius: 20px;
    border: 1px solid #241436;
    background: #180A27
}

section.profile .profile__container .container__block.search_result {
    padding: 19px 25px
}

section.profile .profile__container .container__block.search_result .container__title {
    margin-bottom: 28px
}

section.profile .profile__container .container__block.search_result .result__table {
    width: 100%;
    display: grid;
    grid-gap: 11px
}

section.profile .profile__container .container__block.search_result .result__table .table__header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 17px;
    color: #584571;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__container .container__block.search_result .result__table .table__line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 17px;
    border-radius: 10px;
    background: #1F1031;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__container .container__block.search_user {
    padding: 19px 25px;
    margin-bottom: 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

section.profile .profile__container .container__block.search_user .container__title {
    margin-bottom: 28px
}

section.profile .profile__container .container__block.search_user input,section.profile .profile__container .container__block.search_user select {
    border-radius: 15px;
    border: 1px solid #231434;
    background: #1F1031;
    backdrop-filter: blur(2px)
}

section.profile .profile__container .container__block.search_user select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="8" viewBox="0 0 14 8" fill="none"><path opacity="0.7" d="M1 1L7 7L13 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/> </svg>');
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 26px
}

section.profile .profile__container .container__block.search_user button {
    width: 192px;
    height: 52px;
    border-radius: 10px;
    background: #CF45FF;
    color: #FFF;
    transition: 0.3s all;
    cursor: pointer;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

section.profile .profile__container .container__block.search_user button:hover {
    opacity: 0.7;
    transition: 0.3s all
}

section.profile .profile__container .container__block.achivments {
    padding: 19px 25px
}

section.profile .profile__container .container__block.achivments .container__title {
    margin-bottom: 25px
}

section.profile .profile__container .container__block.achivments .achivments__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px 18px
}

@media only screen and (max-width: 1111px) {
    section.profile .profile__container .container__block.achivments .achivments__grid {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media only screen and (max-width: 989px) {
    section.profile .profile__container .container__block.achivments .achivments__grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 611px) {
    section.profile .profile__container .container__block.achivments .achivments__grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 420px) {
    section.profile .profile__container .container__block.achivments .achivments__grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.profile .profile__container .container__block.achivments .achivments__grid .grid__block {
    opacity: 0.4;
    padding: 20px 0px;
    border-radius: 10px;
    border: 1px solid #3A2650;
    background: #1E1030;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

section.profile .profile__container .container__block.achivments .achivments__grid .grid__block.active {
    opacity: 1
}

section.profile .profile__container .container__block.achivments .achivments__grid .grid__block .block__image {
    width: 95px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px
}

section.profile .profile__container .container__block.achivments .achivments__grid .grid__block .block__image img {
    max-width: 100%;
    max-height: 100%
}

section.profile .profile__container .container__block.achivments .achivments__grid .grid__block .block__title {
    max-width: 95%;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.music {
    padding: 22px 19px;
    display: grid;
    grid-gap: 21px
}

section.profile .profile__container .container__block.music .container__title {
    margin-bottom: 0px
}

section.profile .profile__container .container__block.music .music__block {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1E1030
}

section.profile .profile__container .container__block.music .music__block .block__title {
    margin-bottom: 16px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

section.profile .profile__container .container__block.music .music__block .music__list {
    display: grid;
    grid-gap: 9px
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block {
    padding: 9px 12px;
    padding-left: 19px;
    border-radius: 10px;
    background: #190A29;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 20px
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block .block__name {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block .block__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 22px
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block .block__actions .actions__time {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 4px;
    color: #5F4D78;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block .block__actions .btn {
    cursor: pointer;
    padding: 8px 56px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1F1031;
    color: #584571;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.music .music__block .music__list .list__block .block__actions .btn:hover {
    border-radius: 10px;
    border: 1px solid #241436;
    color: #fff;
    background: #CF45FF
}

section.profile .profile__container .container__block.stats {
    padding: 22px 19px
}

section.profile .profile__container .container__block.stats .container__title {
    margin-bottom: 33px
}

section.profile .profile__container .container__block.stats .stats__header {
    width: 100%;
    margin-bottom: 18px
}

section.profile .profile__container .container__block.stats .stats__header.two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 14px
}

@media only screen and (max-width: 1025px) {
    section.profile .profile__container .container__block.stats .stats__header.two {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.profile .profile__container .container__block.stats .stats__header.two .header__grid {
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 440px) {
    section.profile .profile__container .container__block.stats .stats__header.two .header__grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.profile .profile__container .container__block.stats .stats__header .header__user {
    width: 100%;
    height: 145px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1F1031;
    padding: 23px 21px;
    display: flex;
    align-items: center;
    grid-gap: 32px
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 3px
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__info .info__nickname {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__info .info__status {
    padding: 4px 11px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 16px;
    background: rgba(86,98,246,0.31)
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99px;
    height: 99px
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__avatar svg {
    position: absolute;
    bottom: -8px;
    width: 35px
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__avatar .avatar__container {
    width: 99px;
    height: 99px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 100px;
    background: #CF45FF;
    border: 1px solid #FFC107
}

section.profile .profile__container .container__block.stats .stats__header .header__user .user__avatar .avatar__container img {
    width: 100%
}

section.profile .profile__container .container__block.stats .stats__header .header__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 19px
}

@media only screen and (max-width: 1025px) {
    section.profile .profile__container .container__block.stats .stats__header .header__grid {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media only screen and (max-width: 679px) {
    section.profile .profile__container .container__block.stats .stats__header .header__grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 515px) {
    section.profile .profile__container .container__block.stats .stats__header .header__grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

section.profile .profile__container .container__block.stats .stats__header .header__grid .grid__block {
    padding: 9px 6px;
    padding-top: 14px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1E1030;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 13px
}

section.profile .profile__container .container__block.stats .stats__header .header__grid .grid__block .block__name {
    color: #785F94;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__header .header__grid .grid__block .block__value {
    border-radius: 10px;
    border: 1px solid #241436;
    background: #2B1B3E;
    height: 91px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__header .header__grid .grid__block .block__value b {
    font-size: 32px;
    font-weight: 700
}

section.profile .profile__container .container__block.stats .stats__header .header__grid .grid__block .block__value.gold {
    border-radius: 10px;
    border: 1px solid #FFC700;
    background: rgba(255,199,0,0.2);
    color: #FFC700
}

section.profile .profile__container .container__block.stats .stats__content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 13px;
    align-items: flex-start
}

@media only screen and (max-width: 991px) {
    section.profile .profile__container .container__block.stats .stats__content {
        grid-template-columns:1fr
    }
}

section.profile .profile__container .container__block.stats .stats__content .content__list {
    display: grid;
    grid-gap: 14px
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses {
    padding: 24px 26px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1E1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__name {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 13px
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list .list__circle {
    width: 74px;
    height: 74px;
    border-radius: 100px;
    background: rgba(49,31,69,0.34);
    display: flex;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width: 421px) {
    section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list .list__circle {
        width:50px;
        height: 50px
    }
}

@media only screen and (max-width: 421px) {
    section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list .list__circle svg {
        max-width:60%;
        max-height: 60%
    }
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list .list__circle.active {
    background: #CF45FF
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__licenses .licenses__list .list__circle.active svg path {
    fill: #fff
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block {
    padding: 12px 26px;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1E1030;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block.green {
    background: #1E1030 linear-gradient(270deg, rgba(131,221,129,0.18) .07%, rgba(131,221,129,0) 57.51%)
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__name {
    color: #785F94;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 19px
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__actions .actions__block {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 9px;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__actions .actions__block svg {
    width: 18px
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__actions .arrow {
    width: 12px;
    cursor: pointer
}

section.profile .profile__container .container__block.stats .stats__content .content__list .list__block .block__value {
    color: #FFF;
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

section.profile .profile__container .container__block.report {
    padding: 27px
}

@media only screen and (max-width: 591px) {
    section.profile .profile__container .container__block.report .container__title {
        font-size:20px
    }
}

section.profile .profile__container .container__block.report .report__sort {
    margin-bottom: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 19px
}

@media only screen and (max-width: 813px) {
    section.profile .profile__container .container__block.report .report__sort {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 591px) {
    section.profile .profile__container .container__block.report .report__sort {
        grid-template-columns:repeat(1, 1fr)
    }
}

section.profile .profile__container .container__block.report .report__sort input,section.profile .profile__container .container__block.report .report__sort select {
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid #2E1944;
    background: #1F1031;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

section.profile .profile__container .container__block.report .report__sort input::placeholder,section.profile .profile__container .container__block.report .report__sort select::placeholder {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.6
}

section.profile .profile__container .container__block.report .report__sort .input__wrap {
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

section.profile .profile__container .container__block.report .report__sort .input__wrap:nth-child(1) select {
    padding-left: 53px
}

section.profile .profile__container .container__block.report .report__sort .input__wrap:nth-child(2) select {
    padding-left: 73px
}

section.profile .profile__container .container__block.report .report__sort .input__wrap:nth-child(3) select {
    padding-left: 126px
}

section.profile .profile__container .container__block.report .report__sort .input__wrap .wrap__label {
    position: absolute;
    left: 16px;
    color: rgba(255,255,255,0.6);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    z-index: 2;
    margin-bottom: 0
}

section.profile .profile__container .container__block.report .report__sort select {
    appearance: none;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="8" viewBox="0 0 14 8" fill="none"><path opacity="0.7" d="M1 1L7 7L13 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/> </svg>');
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 26px
}

section.profile .profile__container .container__block.report .report__list {
    display: grid;
    grid-gap: 15px;
    max-height: 565px;
    height: 565px;
    overflow-y: auto;
    align-items: flex-start;
    padding-right: 9px
}

section.profile .profile__container .container__block.report .report__list::-webkit-scrollbar {
    width: 4px
}

section.profile .profile__container .container__block.report .report__list::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0)
}

section.profile .profile__container .container__block.report .report__list::-webkit-scrollbar-thumb {
    background: #2C1942
}

section.profile .profile__container .container__block.report .report__list .list__block {
    padding: 13px 14px;
    border-radius: 10px;
    background: #1F1031;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 10px
}

section.profile .profile__container .container__block.report .report__list .list__block .block__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 6px
}

section.profile .profile__container .container__block.report .report__list .list__block .block__info .info__tags {
    display: flex;
    align-items: center;
    grid-gap: 6px;
    flex-wrap: wrap
}

section.profile .profile__container .container__block.report .report__list .list__block .block__info .info__text {
    max-width: 418px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 10px;
    flex-wrap: wrap
}

@media only screen and (max-width: 591px) {
    section.profile .profile__container .container__block.report .report__list .list__block .block__actions {
        justify-content:flex-start
    }
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__moore {
    border-radius: 10px;
    border: 1px solid #3A274F;
    background: #2C1942;
    padding: 11px 27px;
    color: #584571;
    text-align: center;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    line-height: normal
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__moore:hover {
    border-radius: 10px;
    border: 1px solid #241436;
    color: #fff;
    background: #CF45FF
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #3A274F;
    background: #2C1942;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    color: #584571;
    text-align: center;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn svg {
    width: 24px
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn:hover,section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn.active {
    color: #FFF
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn:hover.red,section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn.active.red {
    border-radius: 10px;
    border: 1px solid #C64040;
    background: rgba(198,64,64,0.2)
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn:hover.red svg path,section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn.active.red svg path {
    fill: #C64040
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn:hover.green,section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn.active.green {
    border-radius: 10px;
    border: 1px solid #83DD81;
    background: rgba(131,221,129,0.1)
}

section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn:hover.green svg path,section.profile .profile__container .container__block.report .report__list .list__block .block__actions .actions__btn.active.green svg path {
    fill: #83DD81
}

section.profile .profile__container .container__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

section.profile .profile__container .container__header .container__title {
    margin-bottom: 0
}

section.profile .profile__container .container__header .btn {
    padding: 17px 39px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 10px;
    background: #CF45FF;
    cursor: pointer
}

section.profile .profile__container .container__title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.dropzone {
    border-radius: 10px;
    border: 1px dashed #3D2953;
    background: #190A29;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.dropzone .dz-message {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none
}

.dropzone .dz-message.active {
    display: flex
}

.dropzone .dz-message .message {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px
}

.dropzone .dz-message .btn {
    padding: 12px 19px;
    color: #584571;
    text-align: center;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #241436;
    background: #1F1031
}

.dropzone .dz-message .btn:hover {
    border-radius: 10px;
    border: 1px solid #241436;
    color: #fff;
    background: #CF45FF
}

.dropzone .dz-preview {
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    grid-gap: 10px
}

.dropzone .dz-preview .dz-error-mark {
    display: none
}

.dropzone .dz-preview .dz-filename {
    overflow: auto;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none
}

.dropzone .dz-preview .dz-details {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px
}

.dropzone .dz-preview .dz-image {
    display: none
}

.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span {
    background-color: unset !important;
    padding: 0
}

.tags__tag {
    padding: 3px 9px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.tags__tag.blue {
    border-radius: 16px;
    background: rgba(86,98,246,0.31)
}

.tags__tag.new {
    border-radius: 16px;
    color: #634E7D;
    background: rgba(72,49,99,0.31)
}

.tags__tag.blues {
    border-radius: 16px;
    background: #07F
}

.tags__tag.orange {
    border-radius: 16px;
    background: #F49D02
}

.tags__tag.green {
    border-radius: 16px;
    background: #83DD81
}

.tags__tag.red {
    border-radius: 16px;
    color: #C64040;
    background: rgba(198,64,64,0.31)
}

.modal {
    display: none;
    position: fixed;
    z-index: 30000;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.modal--isActive {
    display: block
}

.modal__title {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.modal__body {
    color: #fff
}

.modal__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--main-container-opacity));
    backdrop-filter: blur(5px)
}

.modal__window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    background: var(--main-dark-color);
    padding: 45px 43px;
    border-radius: 35px;
    background: #11061E
}

.modal__windowSize {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    background: var(--main-dark-color);
    border-radius: 3px;
    padding: 40px;
    width: 50vw
}

.modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px
}

.modal__close {
    cursor: pointer
}

.modal__footer {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.modal__sub {
    display: flex;
    margin-bottom: 30px
}

.modal__sub span {
    margin-right: 20px
}

@media screen and (max-width: 500px) {
    .modal__window {
        width:100%;
        padding: 20px
    }

    .modal__window iframe {
        width: 100% !important
    }

    .modal__top {
        margin-bottom: 10px
    }
}

.modal.support .support__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 21px
}

@media only screen and (max-width: 453px) {
    .modal.support .support__list {
        grid-template-columns:repeat(1, 1fr)
    }
}

.modal.support .support__list .list__block {
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    border: 1px solid #2E1D42;
    background: #1A0E28;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.modal.support .support__list .list__block:hover {
    background: #2E1D42
}

.modal.support .support__list .list__block svg {
    width: 56px;
    margin-bottom: 11px
}

.form-group {
    margin-bottom: 20px
}

.form-error {
    display: flex;
    align-items: flex-start;
    background: #B2523D;
    border-radius: 3px;
    padding: 25px 25px;
    color: #fff
}

.form-error__icon {
    margin-right: 20px;
    font-size: 16px
}

.form-error__content {
    top: -5px
}

.form-error__content .text {
    line-height: 23px
}

.text {
    font-family: Montserrat;
    color: var(--main-light-color)
}

.text--secondary {
    font-size: 14px;
    line-height: 23px;
    opacity: 0.4
}

.text--primary {
    font-size: var(--base-font-size);
    line-height: 27px
}

.text--medium {
    font-size: 20px;
    line-height: 35px
}

.button {
    cursor: pointer;
    transition: 0.3s all;
    padding: 23px 67px;
    border-radius: 5px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

.button:hover {
    transition: 0.3s all;
    opacity: 0.7
}

.button--primary {
    background: #CF45FF
}

.button--secondary {
    background: rgba(255,255,255,0.08)
}

.button--secondary:hover {
    background: rgba(255,255,255,0.3)
}

.select {
    position: relative;
    outline: none;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #161616;
    background: rgba(0,0,0,0.37);
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 26px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.select::placeholder {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.6
}

.select__icon {
    position: absolute;
    font-size: 18px;
    left: 25px;
    opacity: 0.4
}

.select__caret {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px
}

.select__caret i {
    font-size: 7px;
    transition: 0.3s all
}

.select__value {
    width: 100%
}

.select__value .select__item {
    background: transparent
}

.select__value .select__item:hover {
    background: transparent
}

.select__menu {
    display: none;
    position: absolute;
    z-index: 20;
    top: 70px;
    width: 100%;
    left: 0;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0,0,0,0.95)
}

.select__menu--isActive {
    display: block
}

.select__item {
    cursor: pointer;
    background: rgba(0,0,0,0.37);
    height: 59px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.select__item:hover {
    background: #CF45FF
}

.select-mini .select__menu {
    top: 40px
}

.select-mini .select__item {
    padding: 10px 20px
}

.select--with-icon .select__control {
    padding-left: 40px
}

.select--isActive .select__control {
    border-color: #CF45FF
}

.select--isActive .select__caret i {
    transform: rotate(180deg)
}

.select--with-contents {
    display: contents
}

.music-table {
    display: flex;
    flex-direction: column;
    gap: 5px
}
