html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

body {
  font-family: "proxima-nova", sans-serif;
  color: #000;
}

.flex {
  display: flex;
}

.flex--center {
  justify-content: center;
  align-items: center;
}

.default-layout {
  display: flex;
  --sidebar-width: 240px;
}

.default-layout__sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  background: #F6F8FA;
  padding: 1.875rem 1.375rem 2.5rem;
}

.sidebar__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.sidebar__start img {
  display: block;
}

.sidebar__start a svg,
.sidebar__start a img {
  max-width: 190px;
  max-height: 60px;
}

.sidebar__menu {
  margin-top: 3.1875rem;
}

.sidebar__end {
  margin-top: auto;
}

.menu__item {
  font-size: 1.0625rem;
  line-height: 1.2352941176;
  font-weight: 700;
  color: #768495;
}

.menu__item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.25rem;
}

.menu__item--toggle {
  position: relative;
  cursor: pointer;
}

.menu__item--toggle:after {
  content: '';
  width: 7px;
  height: 7px;
  border: 2px solid #768495;
  display: block;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  position: absolute;
  right: 1.25rem;
}

.menu__item a svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5625rem;
}

.menu__item a svg path {
  fill: #768495;
}

.menu__item:not(:first-child) {
  margin-top: 0.9375rem;
}

.menu__item--has-children.menu__item--open .menu__item--toggle {
  border-radius: 25px;
  background: #F0F4F8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #2566EB;
}

.menu__item--has-children.menu__item--open .menu__item--toggle svg path {
  fill: #2566EB;
}

.menu__item--has-children.menu__item--open .menu__item--toggle:after {
  border-color: #2566EB;
}

.menu__item--separator {
  width: 100%;
  max-width: calc(100% - 2.5rem);
  height: 1px;
  border: none;
  background: #768495;
  opacity: 0.19;
  margin: 0.9375rem auto;
}

.menu__item--sub-menu {
  margin-top: 18px;
  display: none;
}

.menu__item--has-children.menu__item--open .menu__item--sub-menu {
  display: block;
}

.menu__item--sub-menu li a {
  font-weight: 400;
  font-size: 14px;
  padding-top: .375rem;
  padding-bottom: .375rem;
  transition: all .3s ease-in-out;
}

.menu__item--sub-menu li a:hover {
  color: #2566EB;
}

.menu__item--current > a {
  color: #2566EB;
}

.menu__item--current > a svg path {
  fill: #2566EB;
}

.menu__item--current > .menu__item--toggle:after {
  border-color: #2566EB;
}

.user {
  display: flex;
  align-items: center;
}

img.user__avatar {
  margin-right: 0.6875rem;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
  object-fit: cover;
  width: 40px !important;
  height: 40px !important;
}

.user__avatar {
  margin-right: 0.6875rem;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  /* -o-object-fit: cover; */
  /* object-fit: cover; */
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
}

.user__name {
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 700;
}

.user__position {
  display: block;
  color: rgba(0, 22, 67, 0.53);
  font-size: 0.8125rem;
  line-height: 1.2307692308;
}

.default-layout__content {
  flex: 1;
  padding: 4.25rem 3.1875rem 3.4375rem 6.1875rem;
  margin-left: var(--sidebar-width);
}

.default-layout__content .container {
  max-width: 1400px;
  padding: 0;
}

.content__title {
  margin-bottom: 3.25rem;
  font-size: 2.5rem;
  line-height: 1.225;
}

.content__title.has-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content__title.has-button svg {
  width: 1rem;
  height: 1rem;
}

.content__title.has-button h1 a:not(.content__subtitle) {
  position: absolute;
  top: .45rem;
  right: -1.45rem;
  display: flex;
  align-items: flex-start;
}

.content__title h1 {
  position: relative;
}

.content__subtitle {
  font-size: 18px;
  line-height: 1.2222222222;
  color: #768495;
  font-weight: 500;
  display: block;
}

.content__report-title {
  color: #2566EB;
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 700;
  margin-bottom: 1rem;
}

.content__report-title span {
  margin-left: 13px;
}

:root {
  --gutter: 28px;
  --gutter-xl: 72px;
}

.content__dashboard .mt-md,
.mt-md {
  margin-top: var(--gutter);
}

.content__dashboard .mt-xl,
.mt-xl {
  margin-top: var(--gutter-xl);
}

.content__dashboard--grid {
  display: grid;
}

.content__dashboard--grid.two-column {
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: var(--gutter);
  column-gap: var(--gutter);
}

.content__dashboard--grid.four-column {
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: var(--gutter);
  column-gap: var(--gutter);
}

.content__dashboard--grid__label,
.label--blue {
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 700;
  color: #2566EB;
  display: block;
  margin-bottom: 24px;
}

.label--subtitle {
  font-size: 18px;
  line-height: 1.2222222222;
  color: #768495;
  font-weight: 500;
  display: block;
}

.content__dashboard--grid__item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.content__dashboard--grid__item--header {
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 700;
  color: #768495;
  background: #F0F4F8;
  padding: 0.71875rem 1.1875rem;
  border-radius: 3px 3px 0 0;
}

.content__dashboard--grid__item--header.is-success {
  background: #099F00;
  color: #fff;
}

.content__dashboard--grid__item--content {
  font-size: 1rem;
  line-height: 1.25;
  color: #001643;
  padding: 1.875rem 1.375rem;
  background: #fff;
  border-radius: 0 0 3px 3px;
}

.content__dashboard--grid__item--content ol {
  padding: 0 1.375rem;
  font-size: 14px;
}

.content__dashboard--grid__item--content ol li {
  padding-left: 12px;
}

.content__dashboard--grid__item--content ol li:not(:last-child) {
  margin-bottom: 25px;
}

.content__dashboard--grid__item--content ol li a {
  font-size: 1rem;
}

.content__dashboard--grid__item--content ol li::marker {
  font-weight: 500;
}

.content__dashboard--grid__item--content a {
  color: #2566EB;
  text-decoration: none;
  font-weight: 500;
}

.content__dashboard--grid__item--content strong {
  display: block;
  color: #001643;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2142857143;
  margin: 11px 0 4px;
}

.content__dashboard--grid__item.is-alt {
  box-shadow: none;
  border: 1px solid #E2E2E2;
  padding: 17px 18px 15px;
}

.content__dashboard--grid__item--info-label {
  color: #768495;
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 700;
  margin-bottom: 11px;
  display: block;
}

.content__dashboard--grid__item--info-content {
  align-items: center;
  color: #001643;
  font-size: 1rem;
  line-height: 1.25;
}

.content__dashboard--grid__item--info-content img {
  width: 31px;
  height: 31px;
  margin-right: 7px;
  margin-top: -5px;
}

.content__dashboard--chart__tabs {
  max-width: 341px;
  width: 100%;
  height: 45px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0 auto 10px;
  display: flex;
}

.content__dashboard--chart__tabs--item {
  color: #768495;
  font-size: 1rem;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  border-radius: 25px !important;
}

.content__dashboard--chart__tabs--item.active {
  background: #2566EB;
  color: #fff;
}

.table {
  width: 100%;
  text-align: left;
}

.table__wrapper:not(:last-child) {
  margin-bottom: 3.5rem;
}

.table.seven-column thead th:first-child,
.table.seven-column thead td:first-child,
.table.seven-column tbody th:first-child,
.table.seven-column tbody td:first-child {
  width: 275px;
}

.table.seven-column thead th:last-child,
.table.seven-column thead td:last-child,
.table.seven-column tbody th:last-child,
.table.seven-column tbody td:last-child {
  width: 120px;
}

.table.eight-column thead th:first-child,
.table.eight-column thead td:first-child,
.table.eight-column tbody th:first-child,
.table.eight-column tbody td:first-child {
  width: 275px;
}

.table.eight-column thead th:last-child,
.table.eight-column thead td:last-child,
.table.eight-column tbody th:last-child,
.table.eight-column tbody td:last-child {
  width: 70px;
}

.table.three-column thead th:first-child,
.table.three-column thead td:first-child,
.table.three-column tbody th:first-child,
.table.three-column tbody td:first-child {
  width: 275px;
}

.table.three-column thead th:last-child,
.table.three-column thead td:last-child,
.table.three-column tbody th:last-child,
.table.three-column tbody td:last-child {
  width: 105px;
}

.table.four-column thead th:first-child,
.table.four-column thead td:first-child,
.table.four-column tbody th:first-child,
.table.four-column tbody td:first-child {
  width: 325px;
  padding-right: 50px;
}

.table.four-column thead th:nth-child(2),
.table.four-column thead td:nth-child(2),
.table.four-column tbody th:nth-child(2),
.table.four-column tbody td:nth-child(2) {
  width: 300px;
}

.table.four-column thead th:last-child,
.table.four-column thead td:last-child,
.table.four-column tbody th:last-child,
.table.four-column tbody td:last-child {
  width: 320px;
}

.table thead th {
  color: #768495;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 700;
  padding: 0.719rem 0;
  background: #F0F4F8;
}

.table thead th:first-child {
  padding-left: 1.1875rem;
  border-radius: 3px 0 0 3px;
}

.table> :not(.caption)>*>* {
  box-shadow: none !important;
  border: none !important;
}

.table thead th:last-child {
  padding-right: 2.0635rem;
  border-radius: 0 3px 3px 0;
}

.table thead th.text-centered {
  text-align: center;
}

.table tbody tr {
  border-bottom: 1px solid rgba(118, 132, 149, 0.19);
}

.table tbody {
  border: none !important;
}

.table tbody tr:nth-child(even) {
  background: rgba(240, 244, 248, 0.35);
}

.table.table--split tbody:not(:last-child) {
  border-bottom: 3px solid #798493 !important;
}

.table tbody tr td {
  height: 87px;
  min-width: 80px;
  vertical-align: middle;
}

.table tbody tr td:first-child {
  font-weight: 700;
  padding-left: 1.1875rem;
}

.table tbody tr td:last-child {
  padding-right: 2.0635rem;
}

.table tbody tr td span:not(.status),
.table tbody tr td a {
  display: block;
  line-height: 1.25;
}

.table tbody tr td a {
  color: #2566EB;
  text-decoration: none;
}

.table tbody tr td a.no-color {
  color: inherit;
}

.table__label {
  color: #2566EB;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
  display: block;
  margin-bottom: 1.0625rem;
}

.status {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  padding: 0.4375rem 0.8125rem;
  font-weight: 700;
  border-radius: 16px;
}

.status--completed {
  background: #DDF0DC;
  color: #1B9614;
}

.status--running {
  background: #E2E9F8;
  color: #2566EB;
}

.button {
  display: inline-block;
  border: none;
  background: #2566EB;
  border-radius: 25px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
  padding: 0.6875rem 1.125rem;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.button:hover {
  color: #fff;
  background: #1d52ba;
}

.button.button--danger {
  background: #FF4D4F;
}

.button.button--danger:hover {
  background: #d40e0e;
}

.text-centered {
  text-align: center;
}

.form {
  max-width: 600px;
}

.form__row .form__group input:not(.select2-search__field),
.form__row .form__group select {
  border: 1px solid rgba(118, 132, 149, 0.19) !important;
  border-radius: 3px;
  padding: 0.6875rem 0.9375rem !important;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  width: 100% !important;
  min-height: 49px;
}

.form__row .form__group input::placeholder,
.form__row .form__group select::placeholder {
  color: #768495;
  opacity: 1;
}

.form__row .form__group select:focus,
.form__row .form__group input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form__row .form__group label {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.form__row .form__group {
  margin-bottom: 12px;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container.select2-container--default {
  background: #fff;
  max-width: 600px;
  width: 100%;
}

.select2-container.select2-container--default.select2-container--open .select2-selection--multiple {
  border-radius: 3px 3px 0 0;
}

.select2-container .select2-selection--multiple {
  display: block;
  min-height: 48px;
  border: 1px solid rgba(118, 132, 149, 0.19) !important;
  border-radius: 3px;
  padding: 0.6875rem 0.9375rem !important;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: inline-block;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container.select2-container--default .select2-results__options li {
  padding: 0.6875rem 0.9375rem !important;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  transition: .1s ease-in-out;
  cursor: pointer;
}

.select2-container.select2-container--default .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid rgba(118, 132, 149, 0.19);
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.select2-container.select2-container--default .select2-results__options li:hover,
.select2-results__option[aria-selected="true"] {
  color: #fff !important;
  background: #2566EB;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  float: left;
  margin-top: -2px;
  margin-right: 6px;
  margin: -2px 6px 8px 0;
  background: #2566EB2E;
  padding: 4px 10px;
  border-radius: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  font-weight: 700;
  margin-right: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  float: right;
  cursor: pointer;
  margin-top: 2px;
  font-weight: 700;
}

.table td svg.fa-check path {
  fill: #099F00;
}

.full-width {
  width: 100%;
}

.ml-md {
  margin-left: var(--gutter);
}

.url-partial-form {
  position: relative;
}

.url-partial-form .counter {
  width: 10px;
}

.url-partial-form .url-close {
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0;
}

.form__group .bootstrap-autocomplete.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
}

.user {
  position: relative;
  cursor: pointer;
}

.user__menu {
  position: absolute;
  background: #f6f8fa;
  bottom: 100%;
  width: 100%;
  padding: 1.375rem;
  opacity: 0;
  pointer-events: none;
}

.user__menu.active {
  opacity: 1;
  pointer-events: all;
}

.user__menu ul li {
  font-size: 1rem;
  color: #768495;
}

.user__menu ul li:not(:last-child) {
  margin-bottom: 12px;
}

.user__menu ul li a {
  color: inherit;
  text-decoration: none;
}

.is-underline {
  text-decoration: underline !important;
}

.table__menu {
  position: relative;
}

.table__menu--trigger {
  cursor: pointer;
}

.table__menu--content {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: .75rem;
  font-size: .875rem;
  opacity: 0;
  pointer-events: none;
}

.table__menu--content.active {
  opacity: 1;
  pointer-events: all;
}

.table__menu--content ul li:not(:last-child) {
  margin-bottom: 8px;
}

form h2 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}