* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

/* Sets value of the rem units. */
html {
    font-size: 16px;
}

.header{
    /*background-color: #1e1d4fDD;*/
    background-color: var(--color-bg-main);
}

body {
    /*background-color: #1e1d4f;*/
    background-color: var(--color-bg-main);
    /*background-image: url(/img/back.png);*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #D2DAFC;
}

.text-modal {
    color: #1e1d4f;
}

p, div, span {
    font-size: 0.875rem;
    color: var(--color-text-main);
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.datepickers-container {
    z-index: 100000;
}

a {
    /*color: #0b7da8;*/
    text-decoration: none;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

a:hover {
    /*text-decoration: underline;*/
}


.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}
.no-wrap {
    flex-wrap: nowrap;
}

.column {
    flex-direction: column;
}

.jc-center {
    justify-content: center;
}

.jc-start {
    justify-content: flex-start;
}

.jc-end {
    justify-content: flex-end;
}

.jc-sb {
    justify-content: space-between;
}

.jc-sa {
    justify-content: space-around;
}

.ai-center {
    align-items: center;
}

.ai-start {
    align-items: flex-start;
}

.ai-end {
    align-items: flex-end;
}

.w-100 {width: 100%;}

.m {margin: 0.25rem;}
.m-0 {margin: 0;}
.m-1 {margin: 0.5rem;}
.m-2 {margin: 1rem;}
.m-3 {margin: 1.5rem;}
.m-4 {margin: 2rem;}

.mb {margin-bottom: 0.25rem;}
.mb-auto {margin-bottom: auto;}
.mb-0 {margin-bottom: 0;}
.mb-1 {margin-bottom: 0.5rem;}
.mb-2 {margin-bottom: 1rem;}
.mb-3 {margin-bottom: 1.5rem;}
.mb-4 {margin-bottom: 2rem;}

.mt {margin-top: 0.25rem;}
.mt-auto {margin-top: auto;}
.mt-1 {margin-top: 0.5rem;}
.mt-2 {margin-top: 1rem;}
.mt-3 {margin-top: 1.5rem;}
.mt-4 {margin-top: 2rem;}

.ml {margin-left: 0.25rem;}
.ml-auto {margin-left: auto;}
.m-0 {margin-left: 0;}
.ml-1 {margin-left: 0.5rem;}
.ml-2 {margin-left: 1rem;}
.ml-3 {margin-left: 1.5rem;}
.ml-4 {margin-left: 2rem;}

.mr {margin-right: 0.25rem;}
.mr-auto {margin-right: auto;}
.mr-0 {margin-right: 0;}
.mr-1 {margin-right: 0.5rem;}
.mr-2 {margin-right: 1rem;}
.mr-3 {margin-right: 1.5rem;}
.mr-4 {margin-right: 2rem;}

.mh-auto {margin-left: auto; margin-right: auto;}
.mv-auto {margin-top: auto; margin-bottom: auto;}
.mv-1 {margin-top: 0.5rem; margin-bottom: 0.5rem;}
.mv-2 {margin-top: 1rem; margin-bottom: 1rem;}
.mv-3 {margin-top: 1.5rem; margin-bottom: 1.5rem;}
.mv-4 {margin-top: 2rem; margin-bottom: 2rem;}
.m-auto {margin: auto;}


.p {padding: 0.25rem;}
.p-1 {padding: 0.5rem;}
.p-2 {padding: 1rem;}
.p-3 {padding: 1.5rem;}
.p-4 {padding: 2rem;}

.pb {padding-bottom: 0.25rem;}
.pb-1 {padding-bottom: 0.5rem;}
.pb-2 {padding-bottom: 1rem;}
.pb-3 {padding-bottom: 1.5rem;}
.pb-4 {padding-bottom: 2rem;}

.pt {padding-top: 0.25rem;}
.pt-1 {padding-top: 0.5rem;}
.pt-2 {padding-top: 1rem;}
.pt-3 {padding-top: 1.5rem;}
.pt-4 {padding-top: 2rem;}

.pl {padding-left: 0.25rem;}
.pl-1 {padding-left: 0.5rem;}
.pl-2 {padding-left: 1rem;}
.pl-3 {padding-left: 1.5rem;}
.pl-4 {padding-left: 2rem;}

.pr {padding-right: 0.25rem;}
.pr-1 {padding-right: 0.5rem;}
.pr-2 {padding-right: 1rem;}
.pr-3 {padding-right: 1.5rem;}
.pr-4 {padding-right: 2rem;}



.w-100 {width: 100%;}
.w-1 {width: 1rem;}
.w-2 {width: 2rem;}
.w-3 {width: 3rem;}
.w-4 {width: 4rem;}
.w-5 {width: 5rem;}
.w-6 {width: 6rem;}
.w-7 {width: 7rem;}
.w-8 {width: 8rem;}
.w-9 {width: 9rem;}
.w-10 {width: 10rem;}
.w-15 {width: 15rem;}
.w-20 {width: 20rem;}
.w-25 {width: 25rem;}
.w-30 {width: 30rem;}
.w-auto {width: auto;}
.max-w-100 {max-width: 100%;}


.h-100 {height: 100%;}
.h-1 {height: 1rem;}
.h-2 {height: 2rem;}
.h-3 {height: 3rem;}
.h-4 {height: 4rem;}
.h-5 {height: 5rem;}
.h-10 {height: 10rem;}
.h-15 {height: 15rem;}
.h-20 {height: 20rem;}
.h-25 {height: 25rem;}
.h-30 {height: 30rem;}
.h-auto {height: auto;}
.max-h-100 {max-height: 100%;}

.min-h-5 {min-height: 5rem;}
.min-h-10 {min-height: 10rem;}
.min-h-15 {min-height: 15rem;}
.min-h-20 {min-height: 20rem;}

.round {border-radius: 100rem;}

.b-0 {border-width: 0;}
.b-1 {border: 1px solid var(--color-primary-line);}
.br-1 {border-right: 1px solid var(--color-primary-line);}
.bl-1 {border-left: 1px solid var(--color-primary-line);}
.bt-1 {border-top: 1px solid var(--color-primary-line);}
.bb-1 {border-bottom: 1px solid var(--color-primary-line);}


.grow {flex-grow: 1;}
.no-grow {flex-grow: 0;}
.shrink {flex-shrink: 1;}
.no-shrink {flex-shrink: 0;}


.bg-white {background-color: #fff;}
.b-radius-0 {border-radius: 0;}
.b-radius {border-radius: 0.15rem;}
.b-radius-1 {border-radius: 0.25rem;}
.b-radius-2 {border-radius: 0.5rem;}
.shadow {box-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.25);}

.scroll-y {
    overflow-y: scroll;
}

.scroll-y-20 {
    overflow-y: scroll;
    max-height: 20rem;
}

.scroll-y-25 {
    overflow-y: scroll;
    max-height: 25rem;
}

.scroll-y-30 {
    overflow-y: scroll;
    max-height: 30rem;
}

.scroll-y-35 {
    overflow-y: scroll;
    max-height: 35rem;
}

hr {
    width: 100%;
    /*border: none;*/
    /*height: 1px;*/
    background-color: var(--color-gray-lighter);
}
hr.faded {
    opacity: 0.5;
}


.uppercase {
    text-transform: uppercase;
}

h1.thin, h2.thin, h3.thin,
h4.thin, h5.thin, h6.thin {
    font-weight: 300;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 1rem;
    background: #333;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #333;
}
::-webkit-scrollbar-corner {
    background: none;
}



.modal-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2rem;
}


.hint-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
}

.hint-description {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #aaa;
}

.pd-edit-mode-button {
    display: none !important;
}


.relief {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.flex-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-field.date-picker{
    width: 6rem;
}
.field__input_round{
    padding: 0 1rem 0 2rem;
    border-radius: 1rem;
}
.arrow-down {
    width: 0.5rem;
    height: 0.5rem;
    transform: rotate(45deg);
    border-bottom: 2px solid #98989E;
    border-right: 2px solid #98989E;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}
.arrow-up {
    width: 0.5rem;
    height: 0.5rem;
    transform: rotate(-135deg);
    border-bottom: 2px solid #98989E;
    border-right: 2px solid #98989E;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}
.field__input_round.has-error{
    border: 1px solid #a9302a;
}
.field__input_round:focus.has-error{
    border: 1px solid #a9302a;
}
.form__field-error{
    line-height: 1rem;
    font-size: .8rem;
    color: #a9302a;
}
.click-field{
    width: 1.5rem;
    height: 1.5rem;
}
.xls-field-name{
    margin: .5rem;
    padding: 0rem 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg-active);
}

input {
    background: var(--color-bg-active);
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    /*border-bottom: 2px #4F5AF6 solid;*/
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    /*color: rgba(177, 183, 231, 0.6);*/
    color: var(--color-text-main);
    height: 2.8rem;
}
input:active, input:focus {
    outline: none;
}

select {
    background: var(--color-bg-active);
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    color: var(--color-text-main);
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
    height: 2.8rem;
}
select option{
    color: var(--color-text-main);
}

:root {
    --color-primary: #252b45;
    --color-primary-dark: #171a2d;
    --color-primary-darkest: #121523;
    --color-primary-light: #8395e5;
    --color-primary-line: #B7FF00;
    --color-secondary: #bf4c62;

    --color-red: #c03636;
    --color-orange: #de7e0c;

    --color-gray: #595f66;
    --color-gray-light: #848c97;
    --color-gray-lighter: #a8b3c1;
    --color-gray-lightest: #f9f9f9;

    --input-border-width: 1px;
    --input-border-radius: 0.5rem;
    --button-border-radius: 0.5rem;

    --pad-bg-color: #121212;

    --color-bg-main: #000;
    --color-bg-base: #121212;
    --color-bg-active: #262626;
    --color-bg-border: #555555;

    --color-bg-btn-main: #B7FF00;
    --color-bg-btn-main-text: #000;
    --color-bg-btn-main-border: #B7FF00;

    --color-fg-active: #B7FF00;

    --color-text-main: #9A9A9A;
    --color-text-active: #FFFFFF;
    --color-text-title: #FFFFFF;
    --color-text-disabled: #595f66;
    --color-text-highlight: #B7FF00;
}

/* Montserrat */
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat/Montserrat-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat/Montserrat-Italic.ttf");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat/Montserrat-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

/* Gotham Pro */
@font-face {
    font-family: "Gotham Pro";
    src: url("/fonts/GothamPro/GothamPro.ttf");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Pro";
    src: url("/fonts/GothamPro/GothamPro-Italic.ttf");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Gotham Pro";
    src: url("/fonts/GothamPro/GothamPro-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Pro";
    src: url("/fonts/GothamPro/GothamPro-MediumItalic.ttf");
    font-weight: 500;
    font-style: italic;
}



/*NORMAL*/

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


/*ITALIC*/

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_lightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_mediumitalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_bolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gotham-pro/gothampro_blackitalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/*Italic*/

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SFProText/SFProText-HeavyItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}


/* Inter Display */
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-Thin.ttf");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-ThinItalic.ttf");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-SemiBold.ttf");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-SemiBoldItalic.ttf");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-Bold.ttf");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Inter Display";
    src: url("/fonts/InterDisplay/ttf/InterDisplay-BoldItalic.ttf");
    font-weight: 600;
    font-style: italic;
}

code {
    font-family: monospace;
}

.text-smallest {
    font-size: 0.75rem;
}
.text-small {
    font-size: 0.85rem;
}
.text-normal {
    font-size: 0.95rem;
}
.text-large {
    font-size: 1.1rem;
}
.text-larger {
    font-size: 1.25rem;
}
.text-largest {
    font-size: 1.2rem;
}
.text-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.page-title {
    font-size: 1.8rem;
    color: var(--color-text-title);
}

.bold {
    font-weight: 600;
}


.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}


.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-600 {
    font-weight: 600;
}

.text-light {
    color: #D2DAFC;
}
.text-white {
    color: #fff;
}
.text-white-50 {
    color: rgba(255, 255, 255, 0.50);
}
.text-white-35 {
    color: rgba(255, 255, 255, 0.35);
}
.text-title {
    color: var(--color-text-title);
}
.text-cabinet {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.4rem;
    color: var(--color-text-main);
}

.text-danger {
    color: #b61c19;
}

.smallest-text-block {
    display: block;
    font-size: 0.75rem;
    line-height: 1.1;
    padding: 0.5rem;
}


.btn-form{
    display: flex;
    flex-flow: row;
}
.btn-form label{
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #B1B7E7;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    display: flex;
}
.btn-form button{
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #B1B7E7;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
}
.text-center-div{
    max-width: 50%;
    text-align: center;
}

.field-label {
    display: inline-block;
    color: #9A9A9A;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.988px; /* 207.06% */
}

.field-label.required::after {
    content: '*';
    color: var(--color-red);
    margin-left: 0.15rem;
}

.btn-form{
    display: flex;
    flex-flow: row;
}
.btn-form label{
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #B1B7E7;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    display: flex;
}
.btn-form button{
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #B1B7E7;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
}
.text-center-div{
    max-width: 50%;
    text-align: center;
}

.pad {
    /*background-color: #242363;*/
    background-color: var(--color-bg-base);
    border-radius: 0.75rem;
    box-shadow: 2px 2px 1.5rem rgba(0, 0, 0, 0.25);
}

.pad_white {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 2px 2px 1rem rgb(0 0 0 / 18%);
}

.pad.pad-highlighted{
    background-color: var(--color-fg-active);
    color: #000;
}
/*.pad input {*/
/*    background: none;*/
/*    border: none;*/
/*    border-bottom: 2px var(--color-primary-line) solid;*/
/*    font-family: 'Montserrat';*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    font-size: 12px;*/
/*    line-height: 21px;*/
/*    color: #B1B7E7;*/
/*}*/

/*.pad input:focus {*/
/*    outline: none;*/
/*}*/
/*.pad select {*/
/*    background: none;*/
/*    border: none;*/
/*    border-bottom: 2px var(--color-primary-line) solid;*/
/*    font-family: 'Montserrat';*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    font-size: 12px;*/
/*    line-height: 21px;*/
/*    color: #FFF;*/
/*    !*-webkit-appearance: none;*!*/
/*    !*-moz-appearance: none;*!*/
/*    !*appearance: none;*!*/
/*}*/

/*.pad select option{*/
/*    color: black;*/
/*}*/

.pad-blue {
    background: linear-gradient(90deg, #343292 0%, #31299E 100%);
    border-radius: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    color: #D2DAFC;
}
.pad-blue .code {
    display: flex;
    padding: 0 1rem;
    background: #1E1D4F;
    border-radius: 7px;
    height: 57px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pad-blue-input {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 1rem 1rem;
    background: #1E1D4F;
    border-radius: 7px;
    height: 57px;
    border: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    color: #B1B7E7;
}
.pad-blue-input:focus {
    outline: 2px #B1B7E7 solid;
}
.pad-blue-button{
    border: 1px #4E55F5 solid;
    border-radius: 10px;
    /*background: #242363;*/
    background: rgba(36, 35, 99, 0.39);

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4rem;
    text-align: center;
    color: #FFFFFF;

    padding: 0.5rem 2rem;
    cursor: pointer;
}
.pad-blue-button.d-height{
    padding: 1rem 2rem;
}
.code-link-header{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 8px;
    line-height: 23px;
    color: #D2DAFC;
}
.link-text{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
    color: #FFFFFF;
    display: flex;
}

@media (max-width: 800px) {
    .pad-blue-input {
        display: flex;
        flex-flow: column;
        justify-content: center;
        padding: 0.5rem 0.5rem;
        background: #1E1D4F;
        border-radius: 0px;
        height: auto;
        border: none;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 21px;
        color: #B1B7E7;
        border-bottom: 1px #4E55F5 solid;
        margin: 5px;
    }
    .pad-blue-input:focus {
        outline: none;
    }
    .pad-blue-button{
        border: 1px #4E55F5 solid;
        border-radius: 10px;
        /*background: #242363;*/
        background: rgba(36, 35, 99, 0.39);

        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
        color: #FFFFFF;
        width: auto;
        flex-grow: 1;

        padding: 0.5rem 0.5rem;
        cursor: pointer;
    }
    .pad-blue-button.d-height{
        padding: 0.5rem 1rem;
    }
}

.pad-btn{
    border: 1px var(--color-bg-btn-main-border) solid;
    border-radius: 10px;
    background: var(--color-bg-btn-main);

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4rem;
    text-align: center;
    color: var(--color-bg-btn-main-text);

    width: 213px;
    height: 44px;
    cursor: pointer;
}

.active-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px var(--color-bg-btn-main-border) solid;
    border-radius: 10px;
    background: var(--color-bg-btn-main);

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4rem;
    text-align: center;
    color: var(--color-bg-btn-main-text);

    height: 44px;
    cursor: pointer;
}
.active-btn span{
    color: var(--color-bg-btn-main-text);
}

.secondary-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--color-bg-active);

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4rem;
    text-align: center;
    color: var(--color-text-active);

    height: 44px;
    cursor: pointer;
}

.text-button {
    background: none;
    border: none;
    outline: none;
    color: var(--color-text-main);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
}

.link-copy-text {
    cursor: pointer;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4rem;
    border-radius: 10px;
    color: var(--color-text-main);
    background: var(--color-bg-active);
    height: 44px;
    display: inline-block;
}

.pad-btn:hover{
    /*border: 2px #4E55F5 solid;*/
}

.btn-transparent{
    background: none;
    border: none;
    outline: none;
}

.no-acc-link {
    font-size: 0.75rem;
    color: #98989E;
    font-family: Montserrat, sans-serif;
}

.forgot-pass-link, .reg-link {
    font-size: 0.75rem;
    color: #212429;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
}
.no-acc-link {
    font-size: 0.75rem;
    color: #98989E;
    font-family: Montserrat, sans-serif;
}

.img-drop-down{
    position: relative;
    display: flex;
    flex-flow: row;
    margin: 0.5rem 0;
    padding: 0.5rem;
    cursor: pointer;
    overflow: visible;
    align-items: center;
}
.img-drop-down .img-drop-down__value,.img-drop-down__current-value{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #0e0e0eA0;
    font-size: 0.625rem;
    font-weight: 500;
}
.img-drop-down .img-drop-down__value{
    padding: 0.3rem 1rem;
}
.img-drop-down .img-drop-down__value:hover{
    background-color: #4a556830;
}
.img-drop-down .img-drop-down__value img{
    margin-right: 0.5rem;
}
.img-drop-down .img-drop-down__values{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #FFFFFF;
    z-index: 4;
}
.img-drop-down.shown .img-drop-down__values{
    display: flex;
    flex-flow: column;
}

.width-limiter {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
.modal-wrapper{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.75);;
    justify-content: center;
    align-items: flex-start;
    z-index: 1010;
}
.new-Modal-Pad{
    padding: 18px 40px !important;
}
.for-Href-Modal-Div1{
    color: #FFF;
    font-family: "Gotham Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.div-With-Ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 235px;
}
.ref-Href-Text{
    color: #565656;
    text-align: center;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.333px; /* 123.81% */
}
.for-Href-Modal-Div2{
    color: #565656;
    text-align: center;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.333px; /* 123.81% */
}
.title-Form-Modal{
    color: #FFF;
    font-family: "Inter Display";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 65px;
    width: 100%;
    padding-left: 21px;
}
.new-Modal-Pad-Div{
    min-width: 403px !important;
}

.modal-wrapper .window-content{
    display: flex;
    flex-flow: column;
    /*justify-content: center;*/
    align-items: center;
    overflow: scroll;
    min-height: 100px;
    background-color: var(--color-bg-base);
    border-radius: 10px;
}
.limit-Height-Custom-Select{
    max-height: 190% !important;
}
.modal-window{
    margin-top: 100px;
    position: relative;
    min-width: 350px;
    max-height: 80vh;
    padding: 0.5rem;
    /*border-radius: 10px;*/
    /*box-shadow: #2d3748 2px 2px 15px;*/
    display: flex;
    flex-flow: column;
    animation: appear  0.3s linear;
}

.modal-window .row-wrapper{
    display: flex;
    justify-content: center;
}

.modal-window .row-wrapper > div{
    margin: 5px;
}

@keyframes appear {
    from{opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-window .close-modal{
    position: absolute;
    right: 1.2rem;
    top: 1.5rem;
    border-radius: 50%;
    background-color: var(--color-bg-btn-main);
    border: none;
    /*box-shadow: #718096 1px 1px 3px;*/
    font-weight: 600;
    width: 24px;
    height: 24px;
    color: #000;
    z-index: 150;
}
.modal-window .close-modal div{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/*.modal-window .close-modal:hover{*/
/*    box-shadow: #718096 2px 2px 4px;*/
/*}*/

.modal-menu{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: absolute;
    top: 2px;
    left: .5rem;
    z-index: 10;
}

.modal-menu.menu-right{
    left: auto;
    right: .5rem;
    align-items: flex-end;
}

.modal-menu .menu-items{
    display: none;
    flex-flow: column;
    align-items: flex-start;
    font-size: 14px;
    cursor: pointer;
    padding: 0.5rem;
    background-color: white;
    box-shadow: #718096 1px 1px 3px;
    border-radius: 5px;
    z-index: 3;
}
.modal-menu.menu-right .menu-items{
    align-items: flex-end;
}
.modal-menu .menu-items > *{
    margin-bottom: 5px;
}
.menu-items .menu-item{
    border: none;
    background: none;
}
.modal-menu.shown .menu-items {
    display: flex !important;
}
.modal-menu .menu-items div:hover,
.modal-menu .menu-items button:hover{
    color: #c69500;
}
.modal-menu .modal_menu_btn{
    font-size: 22px;
    color: #2e5ea9;
}

.modal-menu.shown .modal_menu_btn{
    color: #718096;
}

.modal-menu .back-user-btn{
    font-size: 20px;
    color: #2e5ea9;
    border: none;
    background: none;
    padding: 0;
}

.modal-window .modal-title{
    padding-top: 5px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    align-self: center;
}

.modal-window .field{
    font-family: var(--bs-font-monospace);
    font-size: .875em;
    color: #718096;
    position: relative;
    z-index: 2;
    margin-top: 3px;
}

.modal-window .field-value:before{
    content: ": ";
    color: black;
}

.modal-window .field-value{
    display: inline-flex;
    color: black;
}

.modal-window .bonus-list{
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 20px;
    height: 180px;
    overflow-y: scroll;
}

.modal-window .bonus-list > div:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #69b6d5;
}

.modal-window .bonus-list.active-bonus{
    height: 100px;
}

.modal-window .bonus-info{
    font-size: 14px;
    font-weight: 500;
    color: black;
    line-height: 22px;
}

.modal-window .bonus-info .bonus-id{
    font-style: italic;
    margin-right: 15px;
}

.modal-window .main-block{
    display: flex;
}

.modal-window .main-block img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
}

.modal-window .data-block{
    position: relative;
    margin: 10px 0;
    box-shadow: #718096 1px 1px 3px;
    border-radius: 10px;
    padding: 10px;
    background-color: white;
    min-width: 350px;
}

/*.modal-window .data-block input[type="text"],input[type="number"],input[type="password"]{*/
/*    border: none;*/
/*    border-bottom: #718096 1px solid;*/
/*    background: none;*/
/*    outline: none;*/
/*}*/
/*.modal-window .data-block input[type="text"]:focus,input[type="number"]:focus,input[type="password"]:focus{*/
/*    border-bottom: #718096 2px solid;*/
/*}*/

.modal-window .data-block.params-block{
    display: flex;
    flex-flow: column;
}
.modal-content{
    background-color: #0e0e28;
    max-width: 860px;
    padding: 2rem;
    color: #FFFFFF90;
    font-size: 1rem;
    line-height: 1.2rem;
}

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

.param-field .field-value{
    flex-grow: 1;
}

.modal-window .data-block select{
    margin: 5px 10px 0px 10px;
    background-color: white;
    border: none;
    border-bottom: #718096 1px solid;
}
.user-list-window table .date-column{
    min-width: 130px;
}

.user-control-buttons{
    display: inline-flex;
    margin-left: 10px;
}
.user-control-buttons button{
    border: none;
    background: none;
    text-shadow: #718096 0 0 2px;
    margin-left: 5px;
}
.user-control-buttons .user-refresh-btn{
    color: #00d62d;
}
.user-control-buttons .user-block-btn{
    color: #00d62d;
}
.user-control-buttons .user-unblock-btn{
    color: #d62a00;
}

.user-control-buttons .user-delete-btn{
    color: red;
}

.user-info{
    cursor: pointer;
}

.modal-btn{
    min-width: 3rem;
}

.modal-link{
    color: #0a53be;
    font-weight: bold;
    text-decoration: #0a53be dotted 1px underline;
}

.ref-currency-background-text{
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 40px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 140px;
    line-height: 57px;
    text-align: right;
    text-transform: uppercase;
    color: #d5d4d350;
    z-index: 0;
}

.modal-controls {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    margin-top: 10px;
}

.modal-controls-btn{
    margin-left: 5px;
    border-radius: 5px;
    min-width: 50px;
}

.scroll-after-200{
    max-height: 200px;
    overflow-y: scroll;
}
.scroll-after-250{
    max-height: 250px;
    overflow-y: scroll;
}
.scroll-after-300{
    max-height: 300px;
    overflow-y: scroll;
}
.scroll-after-350{
    max-height: 350px;
    overflow-y: scroll;
}
.scroll-after-400{
    max-height: 400px;
    overflow-y: scroll;
}
.scroll-after-600{
    max-height: 600px;
    overflow-y: scroll;
}

.bonus-info__description{
    max-width: 400px;
}

.bonus-info.user-report-link{
    cursor: pointer;
}

.bonus-info.user-report-link:hover{
    color: #2e5ea9;
}

.field-descr{
    font-size: 1rem;
    color: #5a6268;
    max-width: 30rem;
}

.field.break-word{
    word-break: break-all;
    max-width: 20rem;
}

.modal-window .bonus-statistic{
    border: #0e0e0e 1px dashed;
    border-radius: 0.5rem;
    padding: 0.5rem;
}


/*  spinner */
.lds-spinner {
    color: #0e90d2;
    display: none;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 100;
    top: 40lvh;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #0e90d2;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.header__exit-btn{
    background: none;
    border: none;
    margin-left: 4px;
    margin-top: 3.5px;
}

.header__icon{
    margin-right: 0.5rem;
}

.landing {
    --color-bg-main: #000;
    --land-bg-top: url(/img/landing/bg-t.svg);
    --land-bg-bottom: url(/img/landing/bg-b.svg);
    --top-img: url(/img/landing/top.png);
    --demo-img: url(/img/landing/site_demo.png);
}

.landing {
    font-family: "Gotham Pro";
    background-color: var(--color-bg-main);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-top: 7rem;
    background-image: var(--land-bg-top), var(--land-bg-bottom);
    background-repeat: no-repeat;
    background-size: contain, contain;
    background-position: top, bottom left;
}


.landing .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding-top: 1rem;
    z-index: 200;
}

.landing-menu .menu__item {
    font-family: "Gotham Pro";
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    color: #fff;
    list-style: none;
    padding: 0;
    margin: 0 1rem;
}

.modal__close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-weight: 300;
    border-radius: 100%;
    cursor: pointer;
    font-size: 2rem;
    color: #000;
    background-color: var(--color-fg-active);;
    z-index: 500;
}

.modal__close-button::after {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: #000;
    transform: rotate(
        -45deg
    );
    left: 7px;
    top: 14px;
}

.modal__close-button::before {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: #000;
    transform: rotate(
        45deg
    );
    left: 7px;
    top: 14px;
}

.landing .modal__wrap {
    max-width: min(26rem, 100%);
}

#login-form {
    font-size: 1.2rem;
    max-width: min(26rem, 100%);
    background-color: var(--pad-bg-color);
    width: 26rem;
}

#login-form button {
    width: 10rem;
}

.landing .form-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Gotham Pro";
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--color-text-active);
    padding: .5rem;
    margin: 0;
}

.landing .modal .form-title {
    margin: 1rem 0 0 0;
}

.landing .reg-link,
.landing .forgot-pass-link {
    color: var(--color-text-highlight);
    font-weight: 600;
}


.field__input_round {
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
}

.field__input_round:focus {
    border: none;
    outline: none;
}

.landing .field__input-icon-right {
    position: absolute;
    right: .5rem;
    top: 0.3rem;
}

.field__label_round {
    color: var(--color-text-main);
}

.field__input_round.left-icon {
    padding-left: 2.5rem;
}

.landing .field__input-icon-left {
    position: absolute;
    left: .5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
}

.landing section {
    position: relative;
    margin-bottom: 2rem;
    --color-text-main: #fff;
}

.landing section button {
    width: 12rem;
}

.landing-title {
    font-family: "Inter Display";
    font-weight: 600;
    font-style: "SemiBold";
    font-size: 56px;
    line-height: 65px;
}

.section-title {
    font-family: "Inter Display";
    font-weight: 600;
    /*font-style: "SemiBold";*/
    font-size: 44px;
    line-height: 60px;
}

.section-text {
    font-family: "Gotham Pro";
    font-weight: 400;
    /*font-style: Regular;*/
    font-size: 21px;
    line-height: 29px;
}

.top__container {
    height: 34rem;
}

.top__container .login-link {
    display: none;
}

.top__container .landing-title {
    padding-top: 5rem;
    max-width: 50rem;
    margin-bottom: 2rem;
}

.top__img {
    position: absolute;
    right: -7rem;
    top: -3rem;
    width: 45rem;
    height: 40rem;
    z-index: -1;
    background: var(--top-img) no-repeat center;
}

section .advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8rem;
}

section .advantages .advantages__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem;
    font-family: "Gotham Pro";
}

section .advantages .advantages__item div:first-child {
    color: #000;
    display: flex;
    justify-content: flex-start;
    height: 2rem;
    font-size: 1rem;
    font-weight: 400;
    border-right: 1px solid #000;
}

section .advantages .advantages__item div:nth-child(2) {
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    text-wrap: nowrap;
    white-space: nowrap;
    height: 8rem;
    border-right: 1px solid #000;
}

section .advantages .advantages__item div:last-child {
    color: #000;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 3.8rem;
    font-size: 1rem;
    font-weight: 400;
    padding-right: 1rem;
    border-right: 1px solid #000;
}

section .advantages .advantages__item:last-child div {
    border-right: none;
}

section.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 20rem 10rem;
    gap: 2rem 2rem;
}

.stats__item {
    background-color: var(--color-bg-active);
    padding: 1rem;
}

section .pad-title {
    font-family: Inter Display;
    font-size: 2rem;
    line-height: 2.7rem;
}

section .pad-text {
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 500;
}

.stats__item.graph {
    background: url("/img/landing/graph.svg") no-repeat center;
    background-size: contain;
    background-position: right;
    grid-column: 1/4;
    grid-row: 1/2;
    background-color: var(--color-bg-active);
    border-radius: 10px;
    padding-right: 10rem;
}

.stats__item.platform {
    grid-column: 4/6;
    grid-row: 1/2;
    border-radius: 10px;
    padding-right: 3rem;
}

.stats__item.retention {
    grid-column: 1/6;
    grid-row: 2/3;
    border-radius: 10px;
}

.stats__item .white-btn {
    margin-top: 1rem;
    border: none;
    outline: none;
    background-color: #fff;
    color: #000;
    width: 10rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

section.product {
    margin-top: 8rem;
}

section .product__container {
    max-width: 35rem;
}

.demo__img {
    position: absolute;
    right: -20rem;
    top: -3rem;
    width: 65rem;
    height: 42rem;
    z-index: -1;
    background: var(--demo-img) no-repeat center;
    background-size: contain;
}

section.contacts {
    margin-top: 15rem;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

section.contacts .reg-form {
    grid-column: 1/2;
    grid-row: 1/3;
}

section.contacts .contacts__title {
    grid-column: 2/3;
    grid-row: 1/2;
}

section.contacts .contacts__links {
    grid-column: 2/3;
    grid-row: 2/3;
}

section.contacts .reg-form {
    padding: 2rem;
}

.contacts {
    display: flex;
    margin-top: 2rem;
    justify-content: flex-end;
}

.contacts__item {
    border-radius: 1rem;
    background-color: var(--color-bg-base);
    display: flex;
    align-items: center;
    margin-left: 1rem;
    padding: .5rem;
}

.contacts__item-title {
    color: var(--color-text-main);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

.contacts__item-content {
    color: var(--color-text-active);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}

.contacts__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

section .reg-form .field__input_round {
    border: 1px var(--color-bg-border) solid;
}

section .reg-form button {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .modal {
        width: 100vw;
        height: 100%;
    }

    .width-limiter {
        width: 100vw;
        padding: 0 .5rem;
        margin: 0;
    }

    .landing {
        --land-bg-top: url(/img/landing/bg-m-t.svg);
        --land-bg-bottom: url(/img/landing/bg-m-b.svg);
        --top-img: url(/img/landing/top-m.png);
        --demo-img: url(/img/landing/site_demo2.png);
    }

    .header .landing-menu {
        display: none;
    }

    .header .reg-btn {
        display: none;
    }

    .landing-title {
        font-family: Inter Display;
        font-weight: 500;
        font-size: 24px;
        line-height: 23px;
        text-align: center;
    }

    section.top {
        display: flex;
        flex-flow: column;
        flex-direction: column-reverse;
        margin: 1rem auto;
    }

    section {
        padding: 0 1rem;
        max-width: 40rem;
        margin: 0 auto;
    }

    .landing section button {
        height: 1.8rem;
    }

    .top__container .landing-title {
        padding: 0;
        max-width: 20rem;
    }

    .top__container {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        height: auto;
        margin-bottom: 2rem;
    }

    .landing section .top__container button {
        width: 100%;
    }

    .top__img {
        position: relative;
        height: 18rem;
        width: 100%;
        right: 0;
        top: 0;
        z-index: 0;
    }

    .top__container .login-link {
        display: flex;
    }

    section .advantages {
        margin: 2rem auto;
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: .5rem;
    }

    section .advantages .advantages__item {
        border-bottom: 1px solid #000;
        font-family: Gotham Pro;
        font-weight: 400;
        line-height: 19px;
        text-align: center;
        padding: 1rem 0;
    }

    section .advantages .advantages__item:last-child {
        border-bottom: none;
    }

    section .advantages .advantages__item div:first-child {
        justify-content: center;
        height: 1.2rem;
        font-size: 12px;
        font-weight: 400;
        border-right: none;
    }

    section .advantages .advantages__item div:nth-child(2) {
        font-size: 50px;
        height: 5rem;
        border-right: none;
    }

    section .advantages .advantages__item div:last-child {
        height: auto;
        font-size: 12px;
        font-weight: 400;
        padding-right: 0;
        border-right: none;
    }

    section.stats {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 1rem 0;
    }

    section .pad-title {
        font-family: Inter Display;
        font-weight: 600;
        font-size: 22px;
        line-height: 24px;
    }

    section .pad-text {
        font-family: Gotham Pro;
        font-weight: 400;
        font-size: 12px;
        line-height: 21px;
    }

    .stats__item.graph {
        background: url("/img/landing/graph.svg") no-repeat center;
        background-size: contain;
        background-position: right;
        background-color: var(--color-bg-active);
        grid-column: 1/2;
        grid-row: 2/3;
        border-radius: 10px;
        padding-right: 5rem;
        height: 10rem;
    }

    .stats__item.platform {
        grid-column: 1/2;
        grid-row: 1/2;
        border-radius: 10px;
        padding-right: 3rem;
    }

    .stats__item.retention {
        grid-column: 1/2;
        grid-row: 3/4;
        border-radius: 10px;
    }

    .stats__item .white-btn {
        margin-top: .5rem;
        border: none;
        outline: none;
        background-color: #fff;
        color: #000;
        width: 5rem;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        cursor: pointer;
        font-family: Gotham Pro;
        font-weight: 700;
        font-size: 11px;
        line-height: 12px;
    }

    .section-title {
        font-family: Inter Display;
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
        text-align: center;
    }

    .section-text {
        font-family: Gotham Pro;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
    }

    section.product {
        margin-top: 3rem;
        display: flex;
        flex-flow: column;
        flex-direction: column-reverse;
    }

    section.product .section-text {
        display: none;
    }

    section.product .active-btn {
        width: 100%;
        margin-top: 1rem;
    }

    section .product__container {
        max-width: 100%;
    }

    .demo__img {
        margin-top: 2rem;
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        height: 12rem;
    }

    section.contacts {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: repeat(3, auto);
    }

    section.contacts .reg-form {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    section.contacts .contacts__title {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    section.contacts .contacts__links {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .contacts {
        display: flex;
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    .contacts__item {
        border-radius: 1rem;
        display: flex;
        align-items: center;
        margin-left: 0;
        padding: .3rem .4rem;
        flex-wrap: wrap;
    }

    .contacts__item img {
        width: 50px;
        height: 50px;
    }

    .contacts__links {
        margin-top: 1rem;
        align-items: flex-start;
    }

    .contacts__item-title {
        color: #9A9A9A;
        font-family: Gotham Pro;
        font-weight: 400;
        font-size: 11px;
        line-height: 12px;
    }

    section.contacts .reg-form {
        padding: 0;
    }

    section.contacts .reg-form button {
        height: 2.5rem;
    }

    .contacts__item-content {
        color: var(--color-text-active);
        text-align: center;
        margin-top: 4px;
        font-family: Gotham Pro;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
    }
}

.lang-selector {
    display: flex;
    align-items: center;
    height: 2.5rem;
    position: relative;
    padding: 2px 10px 2px 7px;
    border-radius: 0.5rem;
    background-color: transparent;
    transition: 250ms;
    cursor: pointer;
}
#layout-wrap.collapsed .lang-selector {
    justify-content: center;
    padding: 0 0.5rem 0 0.5rem;
}
.lang-selector.expanded,
.lang-selector:hover {
    background-color: var(--color-bg-base);
}
body.light .lang-selector.expanded,
body.light .lang-selector:hover {
    background-color: #d5d5e8;
}
.lang-selector__flag {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 1.5rem;
}
.lang-selector__dropdown {
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: scale(0);
    position: absolute;
    top: 3rem;
    left: 0;
    width: 5rem;
    border-radius: 0.5rem;
    background-color: var(--color-bg-base);
    z-index: 10;
}
body.light .lang-selector__dropdown {
    background-color: #ffffff;
    box-shadow: 0 0 1rem #00000030;
}
#layout-wrap.collapsed .lang-selector__dropdown {
    width: 10rem;
}
.lang-selector__dropdown::before {
    content: '';
    display: block;
    width: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-bg-base);
    position: absolute;
    top: -10px;
    transform: rotate(180deg);
    left: calc(50% - 5px);
}
body.light .lang-selector__dropdown::before {
    border-top: 10px solid #fff;
}
#layout-wrap.collapsed .lang-selector__dropdown::before {
    left: 0.6rem;
}
.lang-selector__value {
    margin-left: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: auto;
}
#layout-wrap.collapsed .lang-selector__value,
#layout-wrap.collapsed .arrow-down {
    display: none;
}
.lang-selector__option {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-main);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.lang-selector__option:hover {
    color: var(--color-text-active);
    background-color: var(--color-bg-active);
}
body.light .lang-selector__option:hover {
    background-color: #eee;
}
.lang-selector__option:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}
.lang-selector__option:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}
