@charset "UTF-8";
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: #202746;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 991px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: inherit;
}
body a.text-liner:hover {
  background: linear-gradient(94.77deg, #2400FF 0%, #2400FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body h1, body .h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #202746;
  margin: 20px 0 36px 0;
}
@media (min-width: 767px) {
  body h1, body .h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 30px 0 60px 0;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  flex: 0;
}

.container-fluid {
  max-width: 1390px;
}

button:active, button:focus {
  outline: none;
}

.form-group.has-error input, .error {
  box-shadow: none;
  border-color: #E9101D !important;
}

.ws {
  white-space: nowrap;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group-sm {
  margin-bottom: 20px;
  position: relative;
}

.form-input,
.form-control {
  width: 100%;
  background: #F3F6FB;
  border: 1px solid #E5E7ED;
  box-sizing: border-box;
  border-radius: 26px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  padding: 6px 20px;
  color: #202746;
  height: 36px;
}
.form-input.textarea,
.form-control.textarea {
  height: 100%;
}
@media (min-width: 991px) {
  .form-input,
.form-control {
    font-size: 16px;
    padding: 11px 20px;
    height: 48px;
  }
}
.form-input:hover, .form-input:focus,
.form-control:hover,
.form-control:focus {
  box-shadow: none;
  border: 1px solid #909ABD;
}
.form-input::placeholder,
.form-control::placeholder {
  color: rgba(32, 39, 70, 0.25);
}
.form-input-date,
.form-control-date {
  background-image: url("/img/date.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center right 20px;
}
@media (min-width: 991px) {
  .form-input-date,
.form-control-date {
    background-size: 24px;
  }
}
.form-input-big,
.form-control-big {
  max-height: 300px;
  height: 300px;
  padding: 8px 23px;
}

.form-input-liner {
  color: transparent;
  background: linear-gradient(90.62deg, #FF8293 0.15%, #7C50FF 99.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-copy {
  position: relative;
}
.input-copy:after {
  content: "";
  background-size: cover;
  width: 14px;
  height: 14px;
  position: absolute;
  background: url(/img/copy.svg) no-repeat center right;
  background-size: cover;
  top: 50%;
  right: -45px;
  transform: translate(0%, -50%);
  z-index: 1;
}
@media (min-width: 991px) {
  .input-copy:after {
    width: 24px;
    height: 24px;
  }
}
.input-copy input {
  width: 100%;
  position: relative;
  z-index: 10;
}

::placeholder {
  color: #808080;
}

.dropdown {
  width: 100%;
}

.dropdown-toggle {
  overflow: hidden;
  background-image: url("/img/select.svg");
  background-repeat: no-repeat;
  background-position: center right 20px;
  padding-right: 35px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-size: 10px;
}
@media (min-width: 991px) {
  .dropdown-toggle {
    background-size: auto;
  }
}

.dropdown-menu.show {
  width: 100%;
  margin: 0;
}

.dropdown-item {
  white-space: break-spaces;
}
.dropdown-item:hover {
  background: rgba(18, 196, 115, 0.1);
}

.pointer {
  cursor: pointer;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=radio] {
    --active: #fff;
    --active-inner: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #909ABD;
    --border-hover: #909ABD;
    --background: #fff;
    --disabled: #909ABD;
    --disabled-inner: #909ABD;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
  }
  @media (min-width: 991px) {
    input[type=radio] {
      height: 24px;
    }
  }
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=radio]:checked {
    --b: var(--active);
    --bc: #0081FF;
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=radio]:focus {
    box-shadow: none;
  }
  input[type=radio]:not(.switch) {
    width: 18px;
  }
  @media (min-width: 991px) {
    input[type=radio]:not(.switch) {
      width: 24px;
    }
  }
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=radio] + label {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 14px;
    margin: 0 0 0 40px;
  }
  @media (min-width: 991px) {
    input[type=radio] + label {
      font-size: 16px;
    }
  }

  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    width: 9px;
    height: 9px;
    top: calc(50% - 4.5px);
    left: calc(50% - 4.5px);
  }
  @media (min-width: 991px) {
    input[type=radio]:after {
      width: 12px;
      height: 12px;
      top: calc(50% - 6px);
      left: calc(50% - 6px);
    }
  }
  input[type=radio]:checked {
    --s: .5;
  }
}
.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  padding: 0;
}

.custom-checkbox ~ label {
  display: inline;
  align-items: center;
  user-select: none;
  font-size: 14px;
}

.custom-checkbox ~ label::before {
  border-radius: 6px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #909ABD;
  margin-right: 1em;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 991px) {
  .custom-checkbox ~ label::before {
    width: 24px;
    height: 24px;
  }
}

.custom-checkbox ~ label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #6D7696;
  cursor: pointer;
}
@media (min-width: 991px) {
  .custom-checkbox ~ label {
    font-size: 16px;
  }
}

.custom-checkbox ~ label::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 9;
  top: 5px;
  left: 5px;
}
@media (min-width: 991px) {
  .custom-checkbox ~ label::after {
    top: 7px;
    left: 7px;
  }
}

.custom-checkbox:hover ~ label::before {
  border-color: #0081FF;
  cursor: pointer;
}

.custom-checkbox:checked ~ label::before {
  border-color: #0081FF;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
}

.custom-checkbox:checked ~ label::after {
  background-size: contain;
  background: url("/img/check.svg") no-repeat center center;
}

.ui-datepicker-div .ui-state-hover a,
.ui-datepicker-div .ui-state-hover a:hover,
.ui-datepicker-div .ui-state-hover a:link,
.ui-datepicker-div .ui-state-hover a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-widget-header, .ui-state-default, .ui-widget-content .ui-state-default {
  background: rgba(18, 196, 115, 0.1);
  border: none;
}

.ui-widget-header, .ui-state-default {
  background: rgba(18, 196, 115, 0.1);
  border: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: rgba(18, 196, 115, 0.1);
  color: #454545;
}

.ui-state-active {
  background: #12C473 !important;
  color: #FFFFFF;
}

.ui-state-hover, .ui-datepicker-next-hover {
  background: rgba(18, 196, 115, 0.1);
}

.border-radius-bottom {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: none;
  background: rgba(18, 196, 115, 0.1);
}

.border-radius-big {
  border-radius: 10px;
}
@media (min-width: 1199px) {
  .border-radius-big {
    border-radius: 24px;
  }
}

.border-radius-top {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.bsh {
  box-shadow: 0 2px 10px rgba(10, 10, 43, 0.2);
}

.brdr-full {
  border: 1px solid #E5E7ED;
}
.brdr-bottom {
  border-bottom: 1px solid #E5E7ED;
}

.bc-mainBlue {
  background-color: #232341;
}
.bc-lightBlue {
  background-color: #d5e5f3;
}
.bc-baseGray {
  background-color: #E5E7ED;
}
.bc-white {
  background-color: #FFFFFF;
}
.bc-darkBlue {
  background-color: #0A0A2B;
}
.bc-liner_violet {
  background: linear-gradient(94.77deg, #36D1DC 0%, #864DFF 100%);
}
.bc-liner_orange {
  background: linear-gradient(135deg, #FF9630 0%, #FFD194 100%);
}
.bc-liner_green {
  background: linear-gradient(135deg, #4CB15C 0%, #B8D942 99.99%, #BBDA41 100%);
}
.bc-liner_pink {
  background: linear-gradient(135deg, #9796F0 0%, #FF8091 0.01%, #FBC7D4 100%);
}
.bc-liner_gray {
  background: linear-gradient(135deg, #8F93B1 0%, #353748 100%);
}
.bc-liner_blue {
  background: linear-gradient(135deg, #1CD9C1 0%, #1060A4 100%);
}

.report-wrap_item {
  position: relative;
  overflow: hidden;
}
.report-wrap_item-title {
  position: relative;
  z-index: 4;
}
.report-wrap_item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 90px;
}
@media (min-width: 1199px) {
  .report-wrap_item-img {
    max-height: 135px;
  }
}
.report-wrap_item-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
}
@media (min-width: 991px) {
  .report-wrap_item-name {
    font-size: 24px;
  }
}
.report-wrap_item-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
@media (min-width: 991px) {
  .report-wrap_item-num {
    font-size: 30px;
  }
}
.report-wrap_item._child1 {
  background: url("/img/report/report1.png") no-repeat center;
  background-size: cover;
}
.report-wrap_item._child2 {
  background: url("/img/report/report2.png") no-repeat center;
  background-size: cover;
}
.report-wrap_item._child3 {
  background: url("/img/report/report3.png") no-repeat center;
  background-size: cover;
}
.report-wrap_item._child4 {
  background: url("/img/report/report4.png") no-repeat center;
  background-size: cover;
}
.report-wrap_item._child5 {
  background: url("/img/report/report5.png") no-repeat center;
  background-size: cover;
}
.report-wrap_item._child6 {
  background: url("/img/report/report6.png") no-repeat center;
  background-size: cover;
}

.text-monserrat {
  font-family: "Montserrat", sans-serif;
}
.text-inter {
  font-family: "Inter", sans-serif;
}
.text-bold {
  font-weight: 600;
}
.text-normal {
  font-weight: 400;
}
.text-colorDarkGray {
  color: #909ABD;
}
.text-blue {
  color: #2779C4;
}
.text-blue:hover {
  color: #2267A6;
}
.text-green {
  color: #12C473;
}
.text-dark {
  color: #202746;
}
.text-black {
  color: #000000;
}
.text-black:hover .text-black:active .text-black:visited {
  color: #000000;
}
.text-liner {
  text-decoration: none;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-fs24 {
  font-size: 24px;
}
.text-fs14 {
  font-size: 14px;
}
.text-fs12 {
  font-size: 12px;
}
.text-fs18 {
  font-size: 18px;
}
.text-fs16 {
  font-size: 16px;
}
.text-fs18-24 {
  font-size: 18px;
}
@media (min-width: 991px) {
  .text-fs18-24 {
    font-size: 24px;
  }
}
.text-fs28 {
  font-size: 28px;
}

.push {
  background-color: #12C473;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: bold;
  border-radius: 10px;
  position: absolute;
  padding: 1px 5px;
  top: 14px;
  left: 5px;
}
@media (min-width: 767px) {
  .push {
    top: -4px;
    left: 42px;
  }
}

.push-info {
  display: none;
  z-index: 99;
  height: 400px;
  background-color: #FFFFFF;
  position: absolute;
  top: 75%;
}
@media (min-width: 767px) {
  .push-info {
    width: 310px;
    top: 52px;
    left: -40%;
  }
}
.push-info .push-scroll {
  height: 335px;
  overflow-y: scroll;
}
.push-info .non {
  border-bottom: 1px solid #CCCCCC;
}

.icon-big {
  width: 148px;
}

.btn {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding: 9px 24px;
  border-radius: 22px;
}
@media (min-width: 991px) {
  .btn {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
  }
}
.btn:hover, .btn:focus {
  box-shadow: none;
}
.btn-icon {
  text-align: start;
  padding: 20px 30px !important;
}
.btn-green {
  background-color: #12C473;
}
.btn-green:hover {
  color: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(10, 10, 43, 0.15);
  border-radius: 6px;
}
.btn-green:active {
  color: #FFFFFF;
  background-color: #0AB466;
  box-shadow: none;
}
.btn-ghostGreen {
  border: 2px solid #12C473;
  color: #12C473;
}
.btn-ghostGreen:hover {
  background-color: #12C473;
  color: #FFFFFF;
}
.btn-gray {
  background: rgba(229, 229, 229, 0.5);
  color: #808080;
}
.btn-base {
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  color: #FFFFFF;
  transition: all 0.5ms ease;
}
.btn-base:hover {
  background: linear-gradient(94.77deg, #864DFF 0%, #864DFF 100%);
  color: #FFFFFF;
}
.btn-base:active {
  background: linear-gradient(94.77deg, #864DFF 0%, #864DFF 100%);
  color: #FFFFFF;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-blank {
  border: none;
  background: transparent;
  color: #909ABD;
}
.btn-light-liner {
  font-style: normal;
  text-decoration: none !important;
  color: #6D7696;
  background: #FFFFFF;
  border: 1px solid #E5E7ED;
  box-sizing: border-box;
}
.btn-light-liner.active {
  background: linear-gradient(94.77deg, rgba(0, 129, 255, 0.12) 0%, rgba(134, 77, 255, 0.12) 100%);
  border: 1px solid transparent;
}
.btn-light-liner.active span {
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-bg-liner {
  background: linear-gradient(94.77deg, rgba(0, 129, 255, 0.12) 0%, rgba(134, 77, 255, 0.12) 100%);
  color: white;
}
.btn-bg-liner span {
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-border-liner {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 1px 1000px 1px #fff inset;
}
.btn-border-liner span {
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-border-liner:hover, .btn-border-liner:focus {
  box-shadow: 1px 1000px 1px #fff inset;
}
.btn-bg-second-liner {
  background: linear-gradient(90deg, #1BD19A 1.76%, #10A46F 100%);
  color: white;
}
.btn-bg-second-liner:hover {
  color: white;
}

.header {
  background-color: transparent;
}
.header .logo {
  width: 97px;
}
@media (min-width: 767px) {
  .header .logo {
    width: 147px;
    height: 26px;
  }
}
.header .icon {
  width: 14px;
}
.header .header-phone {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
}

.menu {
  border-top: 1px solid #E5E7ED;
  border-bottom: 1px solid #E5E7ED;
}
.menu .link-underline {
  text-decoration: underline;
}
.menu .link-menu {
  display: block;
  color: #6D7696;
  padding: 12px 0 11px 0;
  text-decoration: none;
  margin: 0 50px 0 0;
}
.menu .link-menu:hover {
  color: #202746;
}
.menu .active a {
  position: relative;
  color: #202746;
}
.menu .active a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
}

.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  background-color: transparent;
  border-right: 1px solid #CCCCCC;
}
.iti .container:hover .iti__selected-flag {
  background-color: transparent;
}
.iti .iti__arrow {
  display: none;
}
.iti .iti__flag-container {
  border-radius: 10px;
  width: 100px;
}
.iti .iti__country-name {
  display: none;
}
.iti .iti__flag-container:hover > .iti__selected-flag {
  background-color: transparent;
}
.iti .iti__selected-flag {
  background-image: url("/img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.iti .iti__selected-flag:hover {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__selected-flag:active {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__selected-flag[aria-expanded=true] {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__country {
  padding: 10px 20px;
}
.iti .iti__country.iti__highlight {
  background: rgba(18, 196, 115, 0.1);
}
.iti .iti__flag-box {
  display: none;
}
.iti .iti__flag {
  display: none;
}
.iti .iti__container {
  height: 100px !important;
}
.iti .iti__country-list {
  border-radius: 10px;
  width: 100%;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 0 !important;
  right: 30px;
  position: fixed;
}

.navbar .navbar-collapse {
  min-height: 100vh;
  height: 100%;
  width: 100vw;
  z-index: 99;
  transition: height 0.2s ease-in;
  border-top: 1px solid #E5E7ED;
  padding: 24px 0 0 0;
  margin: 14px 0 0 0;
}
@media (min-width: 767px) {
  .navbar .navbar-collapse {
    min-height: auto;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: none;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:active {
  outline: none;
}
.navbar .navbar-toggler span {
  display: block;
  background: #202746;
  border-radius: 2px;
  height: 2.5px;
  width: 20px;
  margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
.navbar .navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}
.navbar .navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar .navbar-toggler span:nth-child(2) {
  opacity: 1;
}
.navbar .navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar .navbar-nav {
  height: 100%;
}
.navbar .navbar-nav_wrap {
  height: 60vh;
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0 0 auto 0;
}
.navbar .navbar-nav_wrap li {
  margin: 0 0 24px 0;
}
.navbar .navbar-nav_wrap .active {
  background: transparent;
}
.navbar .nav-link {
  padding: 12px 0;
  color: #6D7696;
  display: flex;
  align-items: flex-start;
}
.navbar .nav-link.nav-item:first-child {
  border-top: 1px solid #EEEBFF;
}
@media (min-width: 767px) {
  .navbar .nav-link.nav-item:first-child {
    border-top: none;
  }
}
@media (min-width: 767px) {
  .navbar .nav-link {
    padding: 0;
    display: block;
    text-align: center;
  }
  .navbar .nav-link p {
    font-size: 13px;
  }
  .navbar .nav-link img {
    height: 18px;
  }
}

.count-item {
  position: relative;
  z-index: 3;
}
.count-item_name {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
}
@media (min-width: 767px) {
  .count-item_name {
    font-size: 16px;
    line-height: normal;
  }
}
@media (min-width: 1199px) {
  .count-item_name {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
  }
}
.count-item_num {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
}
@media (min-width: 767px) {
  .count-item_num {
    font-size: 16px;
    line-height: normal;
  }
}
@media (min-width: 1199px) {
  .count-item_num {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
  }
}

main .tab_item {
  display: none;
}
main .tab_item:first-child {
  display: block;
}
main .password {
  position: relative;
}
main input[type=password] {
  font: small-caption;
}
main .password-control {
  position: absolute;
  top: 32px;
  right: 6px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain !important;
  background: url("/img/eye.svg") 0 0 no-repeat;
}
main .password-control.view {
  background-size: contain !important;
  background: url("/img/eye-green.svg") 0 0 no-repeat;
}
main .buttons-scroll {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100vw;
}
@media (min-width: 991px) {
  main .buttons-scroll {
    width: 100%;
  }
}
main .buttons-scroll::-webkit-scrollbar {
  display: none;
}
main .banner {
  padding: 30px;
  background: linear-gradient(135deg, #0C7CFF 0%, #7F50FF 100%);
  position: relative;
}
main .banner:before {
  content: "";
  width: 151px;
  height: 151px;
  background: url("/img/banner-ellipse-1.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
}
main .banner:after {
  content: "";
  width: 151px;
  height: 151px;
  background: url("/img/banner-ellipse-2.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  bottom: -20px;
  right: 0;
}
main .banner_links {
  background: linear-gradient(135deg, #50B35B 0%, #B5D742 100%);
}
@media (min-width: 1199px) {
  main .banner_links .count-item_name {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }
}
main .filters {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  opacity: 0;
}
@media (min-width: 991px) {
  main .filters {
    position: static;
    opacity: 1;
  }
}
main .filters._show {
  background: white;
  z-index: 1000;
  opacity: 1;
  top: 0;
  left: 0;
  padding: 0 15px;
  overflow: auto;
}
main .table-base {
  border: 1px solid #E5E7ED;
  border-radius: 24px;
  margin: 30px 0;
}
main .table-base > * {
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
}
@media (min-width: 991px) {
  main .table-base > * {
    font-size: 16px;
  }
}
main .table-base thead {
  background: #F3F6FB;
  font-family: "Montserrat", sans-serif;
}
main .table-base thead th {
  border-bottom: 1px solid #E5E7ED;
  border-top: none;
}
main .table-base tbody {
  border-top: 1px solid #E5E7ED;
  padding: 0 20px;
}
main #deals-report-container .collapse-link {
  text-decoration: none;
}
main #deals-report-container .collapse-link:before {
  content: "Скрыть";
  text-decoration: underline;
  font-weight: bold;
  color: #2779C4;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main #deals-report-container .collapse-link:before:hover {
  color: #2267A6;
}
main #deals-report-container .collapsed {
  text-decoration: none;
}
main #deals-report-container .collapsed:before {
  content: "Показать еще";
  text-decoration: underline;
  font-weight: bold;
  display: block;
  color: #2779C4;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main #deals-report-container .collapsed:before:hover {
  color: #2267A6;
}
main .pagination-pager .pagination {
  position: relative;
}
main .pagination-pager .pagination-item {
  border-radius: 50%;
}
main .pagination-pager .pagination-item .pagination-link {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  text-align: center;
  color: #6D7696;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  margin: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  main .pagination-pager .pagination-item .pagination-link {
    width: 52px;
    height: 52px;
    font-size: 16px;
    line-height: 26px;
  }
}
main .pagination-pager .pagination-item._active {
  background: linear-gradient(94.77deg, rgba(134, 77, 255, 0.12) 0%, rgba(0, 129, 255, 0.12) 100%);
}
main .pagination-pager .pagination-item._active .pagination-link {
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
  -webkit-background-clip: text;
}
main .pagination-pager .pagination-item_page {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #909ABD;
  position: absolute;
  cursor: pointer;
  opacity: 0.8;
}
@media (min-width: 991px) {
  main .pagination-pager .pagination-item_page {
    width: 52px;
    height: 52px;
  }
}
main .pagination-pager .pagination-item_page:hover {
  opacity: 1;
}
main .pagination-pager .pagination-item_page .pagination-icon {
  background: url("/img/select.svg") no-repeat center;
  background-size: 10px;
  transform: rotate(90deg);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  main .pagination-pager .pagination-item_page .pagination-icon {
    background-size: 18px;
  }
}
main .pagination-pager .pagination-item_page._next {
  right: 0;
  top: 0;
}
main .pagination-pager .pagination-item_page._next .pagination-icon {
  transform: rotate(-90deg);
}
main .pagination-pager .pagination-item_page._prev {
  right: 50px;
  top: 0;
}
@media (min-width: 991px) {
  main .pagination-pager .pagination-item_page._prev {
    right: 64px;
  }
}
main .pagination-count {
  font-size: 12px;
}
@media (min-width: 991px) {
  main .pagination-count {
    font-size: 16px;
  }
}

.modal-base .modal-sm {
  max-width: 488px;
}
.modal-base .modal-content {
  border: 1px solid #E5E7ED;
  border-radius: 24px;
}
.modal-base .modal-content .modal-header {
  border: none;
  padding: 50px 20px 30px;
  position: relative;
}
@media (min-width: 991px) {
  .modal-base .modal-content .modal-header {
    padding: 60px 60px 30px;
  }
}
.modal-base .modal-content .modal-header .close {
  width: 20px;
  height: 20px;
  outline: none;
  border: none;
  background-image: url("/img/closeGray.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0;
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
}
.modal-base .modal-content .modal-header .modal-title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #202746;
  margin: 0;
}
@media (min-width: 991px) {
  .modal-base .modal-content .modal-header .modal-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.modal-base .modal-content .modal-body {
  padding: 0 20px 30px;
}
@media (min-width: 991px) {
  .modal-base .modal-content .modal-body {
    padding: 0 60px 60px;
  }
}

.promo .link img {
  vertical-align: baseline;
}

.link__name {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
}
@media (min-width: 991px) {
  .link__name {
    font-size: 24px;
    line-height: 34px;
  }
}

.links-link-copy {
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-image: url("/img/copy.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  padding-right: 45px;
}
.links-link-copy-border {
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 8px 60px 8px 16px;
}
.links-link-copy-bordless {
  outline: none;
  border: none;
  width: max-content;
}

.chart-link {
  background-repeat: no-repeat;
  background-position-y: calc(100% - 18px);
}
.chart-link-nalogia {
  background-image: url("/img/nalogia-icon.svg");
}

.down {
  background-position-y: center;
  background-image: url("/img/arrowBlackDown.svg");
  -moz-transition: transform 1s;
  -webkit-transition: transform 1s;
  transition: transform 1s;
}

.flip {
  transform: rotate(-180deg);
}

.s404 {
  height: calc(100vh - 200px);
}

.help-block-error {
  color: #E9101D;
  position: absolute;
  font-size: 12px;
}

.help-block {
  color: #E9101D;
  font-size: 12px;
}

.social-wrapper {
  display: flex;
  flex-direction: row;
}
.social-wrapper._dark .social-item {
  width: 24px;
  height: 24px;
  display: flex;
}
.social-wrapper._dark .social-item:last-child {
  margin: 0;
}
.social-wrapper._dark .social-item svg {
  margin: auto;
}
.social-wrapper._dark .social-item svg * {
  transition: all 0.5s ease;
}
.social-wrapper._dark .social-item:hover svg * {
  fill: #2400FF;
}

.page-links .list-view {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-links .list-view .empty {
  margin: auto;
}

.collapse-wrapper {
  background: #F3F6FB;
  border-radius: 16px;
  text-decoration: none;
  margin: 0 0 8px 0;
  padding: 15px 80px 15px 20px;
}
@media (min-width: 991px) {
  .collapse-wrapper {
    padding: 25px 85px 25px 40px;
  }
}
.collapse-toggle {
  display: flex;
  justify-content: space-between;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #202746;
  position: relative;
}
@media (min-width: 991px) {
  .collapse-toggle {
    font-size: 20px;
    line-height: 30px;
  }
}
.collapse-toggle:hover {
  color: inherit;
  text-decoration: none;
}
.collapse-toggle:before, .collapse-toggle:after {
  content: "";
  position: absolute;
  top: 40%;
  border-radius: 2px;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
}
.collapse-toggle:before {
  right: -40px;
  width: 2px;
  height: 20px;
  transition: all 0.3s;
  margin-top: -10px;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
}
.collapse-toggle:after {
  right: -49px;
  width: 20px;
  height: 2px;
  margin-top: -1.5px;
  background: linear-gradient(94.77deg, #0081FF 0%, #864DFF 100%);
}
.collapse-toggle._active:before {
  transform: rotate(90deg);
}
.collapse-card {
  margin: 25px 0 0 0;
}

.rowEChart .grid-view .table th,
.rowEChart .grid-view .table td {
  font-size: 14px !important;
  padding: 0.75rem 0;
  border-top: 1px solid #E5E7ED;
}
.rowEChart .grid-view .table thead th {
  border-bottom: 1px solid #E5E7ED;
}

.rowEChart .pagination-pager .pagination-item .pagination-link {
  width: 25px;
  height: 25px;
}
.rowEChart .pagination-pager .pagination-item_page {
  display: none;
}

.ov-scroll {
  overflow-x: scroll;
}

.ov-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.ov-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.footer {
  background: #202746;
  padding: 30px 0;
}
.footer-split {
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/*# sourceMappingURL=styles.css.map */
