.app-preloder {
    height: 100vh;
    background: #272931;
    display: flex;
    align-items: center
}

.app-preloder svg {
    max-height: 30vh
}

.blue-link {
    color: var(--primary-blue);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .32px
}

.blue-link:hover {
    color: var(--primary-blue-hover)
}

.blue-link:active,
.blue-link:focus {
    color: var(--primary-blue-click)
}

.circle {
    width: 452px;
    height: 452px;
    border-radius: 50%;
    opacity: .3;
    background: var(--primary-blue);
    filter: blur(45px)
}

.heading {
    color: #fff;
    font-family: Poppins Medium
}

.heading_h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: -.48px
}

.heading_h3 {
    font-size: 40px;
    line-height: 52px;
    letter-spacing: -.4px
}

.heading_h3,
.heading_h4 {
    font-style: normal;
    font-weight: 500
}

.heading_h4 {
    font-size: 20px;
    line-height: 28px
}

.heading_center {
    text-align: center
}

.container .heading_h1 {
    margin-bottom: 60px
}

@media(max-width:767px) {

    .heading_h1,
    .heading_h3 {
        font-size: 24px;
        line-height: 28px
    }

    .heading_h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .container .heading_h1 {
        margin-bottom: 20px
    }
}

.paragr {
    color: var(--secondary-gray, #8a9ba8);
    font-family: Poppins;
    font-style: normal;
    font-weight: 400
}

.paragr_lg {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .56px
}

@media(max-width:600px) {
    .paragr_lg {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: unset
    }
}

.checkbox {
    cursor: pointer
}

.checkbox__input {
    display: none
}

.checkbox__label {
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer
}

.checkbox__label:before {
    content: "";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 2px solid var(--secondary-gray);
    border-radius: 6px;
    box-sizing: border-box
}

.checkbox input[type=checkbox]:checked+label:before {
    border: 2px solid var(--primary-blue);
    background: url(/Check_blue.svg) no-repeat 50%;
    background-size: cover
}

@font-face {
    font-family: Poppins;
    src: url(/wizer/fonts/Poppins-Regular.4b4ebe20.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Poppins Medium;
    src: url(/wizer/fonts/Poppins-Medium.a52d0bf0.ttf);
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Poppins SemiBold;
    src: url(/wizer/fonts/Poppins-SemiBold.98512bf8.ttf);
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Poppins Bold;
    src: url(/wizer/fonts/Poppins-Bold.8001a01b.ttf);
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    src: url(/wizer/fonts/Montserrat-Medium.62e48611.ttf);
    font-style: normal
}

:root {
    --max-width: 1100px;
    --border-radius: 12px;
    --font-site: "Poppins";
    --basic-font: "Poppins";
    --secondary-gray: #8a9ba8;
    --background: #272931;
    --primary-blue: #006cff;
    --primary-blue-hover: #0162e5;
    --primary-blue-click: #378afb;
    --neutral-black-800: #272931;
    --neutral-black-900: #1e2027;
    --secondary-red: #ff3439;
    --dashboard-secondary-green: #48dd4b;
    --gutter-x: 20px;
    --primary-glow: conic-gradient(from 180deg at 50% 50%, #16abff33 0deg, #0885ff33 55deg, #54d6ff33 120deg, #0071ff33 160deg, transparent 360deg);
    --secondary-glow: radial-gradient(#fff, hsla(0, 0%, 100%, 0));
    --tile-start-rgb: 239, 245, 249;
    --tile-end-rgb: 228, 232, 233;
    --tile-border: conic-gradient(#00000080, #00000040, #00000030, #00000020, #00000010, #00000010, #00000080);
    --callout-rgb: 238, 240, 241;
    --callout-border-rgb: 172, 175, 176;
    --card-rgb: 180, 185, 188;
    --card-border-rgb: 131, 134, 135
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

html {
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth
}

body,
html {
    max-width: 100vw;
    min-height: 100%
}

body {
    color: var(--secondary-gray);
    font-family: var(--font-site);
    height: 100%;
    flex: 1 1;
    display: flex;
    flex-direction: column;
    background: url(/pbg.png) no-repeat top;
    background-color: #272931;
    background-size: cover;
    overflow-x: hidden;
}

body.ru * {
    font-family: Montserrat !important
}

.no-ibg {
    background: #272931
}

.bg-a {
    background-image: url(/pbg-a.png);
    background-size: cover
}

body:before {
    content: "";
    display: block;
    width: 755px;
    height: 755px;
    border-radius: 755px;
    opacity: .15;
    background: var(--primary-blue-click, #378afb);
    filter: blur(55px);
    position: absolute;
    z-index: -1;
    top: -378px;
    left: -390px
}

.custom-tooltip__wrap-st {
    display: flex;
    padding: 12px;
    border: 1px solid rgba(138, 155, 168, .2);
    border-radius: 39px;
    background: #1e2027
}

.custom-tooltip__label-st,
.custom-tooltip__val-st {
    font-size: 14px;
    line-height: 16px
}

.overflow-y-hidden {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s ease-in-out
}

a,
button {
    cursor: pointer
}

input:active,
input:focus,
input:focus-visible,
textarea:active,
textarea:focus,
textarea:focus-visible {
    box-shadow: none;
    border: none;
    outline: none
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent
}

textarea {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll
}

textarea::-webkit-scrollbar {
    display: none
}

main {
    flex: 1 1;
    overflow: hidden
}

main section,
main>* {
    z-index: 1;
    position: relative
}

.page-content {
    max-width: 1360px;
    margin-bottom: 160px
}

.container,
.page-content {
    margin-left: auto;
    margin-right: auto
}

.container {
    max-width: 1380px;
    width: 100%;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5)
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--gutter-x));
    margin-left: calc(-.5 * var(--gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5)
}

.col {
    flex: 1 0
}

.col_sidebar {
    max-width: 346px
}

.col_content {
    max-width: 1014px
}

@media (min-width:1200px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:1440px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }
}

@media (max-width:1023px) {
    .col_sidebar {
        display: none
    }

    .col_content {
        margin-top: 20px
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-8 {
        width: 66.66666667%
    }
}

@media (max-width:767px) {
    body {
        background: #272931;
    }

    .accp-bg,
    .bg-a,
    .bg-n {
        background: #272931 url(/mobpage-bg.png) no-repeat top;
        background-size: cover
    }

    body:before {
        content: "";
        display: block;
        width: 400px;
        height: 400px;
        border-radius: 400px;
        opacity: .1;
        background: var(--primary-blue-click, #378afb);
        filter: blur(45px);
        z-index: -1;
        top: -220px;
        left: -200px
    }

    .page-content {
        margin-bottom: 32px
    }

    .custom-tooltip__wrap-st {
        flex-direction: column;
        padding: 8px 24px;
        align-items: center;
        margin-left: 20px
    }

    .custom-tooltip__label-st,
    .custom-tooltip__val-st {
        font-size: 12px;
        line-height: 14px
    }

    .custom-tooltip__wrap-st span,
    .test {
        display: none
    }
}

@keyframes levitate {

    0%,
    to {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(-17px)
    }
}

@media (max-width:600px) {
    .hidden-scroll {
        overflow: hidden
    }
}

.spline {
    position: relative
}

.spline__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-blue, #006cff);
    color: #feffff;
    font-family: Poppins;
    border: none;
    transition: all .3s ease-in-out;
    width: 100%;
    white-space: nowrap
}

.btn-primary:hover {
    background: var(--primary-blue-hover, #0162e5)
}

.btn-primary:active,
.btn-primary:focus {
    background: var(--primary-blue-click, #378afb)
}

.btn-primary[disabled],
.btn-primary[disbled=disabled] {
    background: var(--neutral-black-800, #272931);
    color: hsla(0, 0%, 100%, .3);
    cursor: not-allowed
}

.btn-primary[disabled] svg,
.btn-primary[disbled=disabled] svg {
    opacity: .3
}

.btn-primary_sm {
    padding: 12px 24px;
    gap: 8px;
    border-radius: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: .14px
}

.btn-primary_xs {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 16px
}

.btn-primary_lg {
    padding: 16px 32px;
    gap: 8px;
    border-radius: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .16px
}

.btn-primary_tr {
    background: transparent
}

.btn-primary_gray {
    background: var(--neutral-black-700, #31343d)
}

.btn-primary_black {
    background: #1f1f1f
}

.btn-primary_border {
    background: transparent;
    border: 1px solid var(--primary-blue, #006cff)
}

.btn-primary_border:hover {
    border-color: var(--primary-blue-hover, #0162e5)
}

.btn-primary_border:active,
.btn-primary_border:focus {
    border-color: var(--primary-blue-click, #378afb)
}

.btn-primary_border-gr {
    background: transparent;
    border: 1px solid var(--neutral-black-700, #31343d)
}

.btn-primary_border-gr:active,
.btn-primary_border-gr:focus,
.btn-primary_border-gr:hover {
    background: transparent;
    border-color: #fff
}

.btn-primary_cab {
    border-radius: 8px
}

.btn-primary_cab.btn-primary_lg {
    padding-left: 24px;
    padding-right: 24px
}

.btn-primary_border-cab {
    display: flex;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #242424;
    color: #fff;
    font-family: Poppins Medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    background: transparent
}

.btn-primary_preloader span {
    display: none
}

.btn-primary_anim:hover svg,
.btn-primary_preloader svg {
    animation-name: spinloader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes spinloader {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@media(max-width:600px) {
    .btn-primary_lg {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: .14px;
        padding: 12px 24px
    }
}

.form-field {
    min-height: 73px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.form-field__label {
    will-change: transform, visibility, opacity;
    visibility: hidden;
    color: var(--secondary-gray, #8a9ba8);
    opacity: 0;
    transition: transform .2s ease-in-out, visibility .2s ease-in-out, opacity .2s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(35px) translateY(23px)
}

.form-field__input,
.form-field__label {
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .56px
}

.form-field__input {
    color: var(--secondary-white, #fff);
    background: transparent;
    border: unset;
    padding: 24px 0 24px 36px;
    border-bottom: 1px solid #31343d;
    will-change: border-bottom;
    transition: all .2s ease-in-out;
    border-radius: 0
}

.form-field__input::placeholder {
    color: var(--secondary-gray, #8a9ba8);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .56px;
    opacity: 1
}

.form-field__input:focus {
    border-bottom: 1px solid #fff
}

.form-field svg {
    position: absolute;
    left: 0;
    bottom: 25px;
    transition: all .3s ease-in-out
}

.form-field_active .form-field__label {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0)
}

.form-field_active .form-field__input {
    padding: 12px 0 12px 36px;
    border-bottom-color: #c4ccd3
}

.form-field_active .form-field__textarea {
    border-bottom-color: #c4ccd3
}

.form-field_active svg {
    bottom: 13px
}

.form-field_active svg path {
    stroke: #fff
}

.form-field_error .form-field__input,
.form-field_error .form-field__textarea {
    border-bottom: 1px solid var(--secondary-red)
}

.form-field_error svg path {
    stroke: var(--secondary-red)
}

.form-field__textarea {
    will-change: border-bottom;
    color: var(--secondary-white, #fff);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .56px;
    background: transparent;
    border: unset;
    padding: 24px 0;
    border-bottom: 1px solid #31343d;
    transition: all .2s ease-in-out;
    box-sizing: border-box;
    resize: none;
    height: 73px
}

.form-field__textarea::placeholder {
    color: var(--secondary-gray, #8a9ba8);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .56px;
    opacity: 1
}

.form-field__textarea:focus {
    border-bottom: 1px solid #fff
}

.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #272931;
    -webkit-text-fill-color: #fff;
    font-size: 16px
}

.form-field input:-webkit-autofill:hover {
    font-size: 16px
}

@media(max-width:767px) {
    .form-field {
        height: 64px;
        min-height: 64px
    }

    .form-field__label {
        transform: translateX(32px) translateY(19px)
    }

    .form-field__input,
    .form-field__label {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .24px
    }

    .form-field__input {
        font-family: Poppins;
        padding: 20px 0 24px 32px
    }

    .form-field__input::placeholder {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .24px
    }

    .form-field__textarea {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .24px
    }

    .form-field__textarea::placeholder {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .24px
    }

    .form-field svg {
        width: 20px;
        height: 20px
    }

    .form-field_active .form-field__input {
        padding: 12px 0 12px 32px
    }

    .form-field input:-webkit-autofill,
    .form-field input:-webkit-autofill:focus {
        font-size: 12px
    }

    .form-field input:-webkit-autofill:hover {
        font-size: 12px
    }
}