* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #333;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: inherit;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body.login {
  background-color: #f8f8f8;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  /* min-height: 100%; */
  height: 100vh; 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  /* height: 100vh; */
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

h1,
h2,
h3,
h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

._button {
  background-color: #E9E9E9;
  color: #000;
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

._button._green {
  color: #fff;
  background-color: #4ED176;
  border-color: #4cae4c;
}

._button._green:hover {
  background-color: #27B953;
  border-color: #398439;
}

._button._blue {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

._button._blue:hover {
  background-color: #286090;
  border-color: #204d74;
}

._button._yellow {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

._button._yellow:hover {
  background-color: #ec971f;
  border-color: #d58512;
}

._button._red {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

._button._red:hover {
  background-color: #c9302c;
  border-color: #ac2925;
}

#alert {
  position: fixed;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

._alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
}

._alert._blue {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

._alert._yellow {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

._alert._red {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1
}

._alert._green {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6
}

._overflow_wrapper {
  overflow-x: scroll;
  width: 100%;
}

input,
textarea {
  display: inline-block;
  width: auto;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 140%;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

input:focus,
textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
}

._link {
  color: #5E60B9;
  text-decoration: underline !important;
}

._block {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  padding: 10px 15px;
}

._block._grey {
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

._loader {
  position: relative;
}

._loader.loading {
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

._loader.loading::before,
._loader.loading::after {
  content: "";
}

._loader::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 5;
}

._loader::after {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 5px solid #2e6da4;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation-loader 1s linear infinite;
          animation: rotation-loader 1s linear infinite;
  z-index: 6;
  left: 50%;
  top: 50%;
}

.copyable-text {
  cursor: pointer;
  text-decoration: underline;
}

.copy-input {
  display: none;
}

@-webkit-keyframes rotation-loader {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotation-loader {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

._row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}


._column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}


#tippy-1 {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

i {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .3s ease;
}

i._arrow-right {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' height='64px' width='64px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 330 330' xml:space='preserve' stroke='%23fff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath id='XMLID_222_' d='M250.606,154.389l-150-149.996c-5.857-5.858-15.355-5.858-21.213,0.001 c-5.857,5.858-5.857,15.355,0.001,21.213l139.393,139.39L79.393,304.394c-5.857,5.858-5.857,15.355,0.001,21.213 C82.322,328.536,86.161,330,90,330s7.678-1.464,10.607-4.394l149.999-150.004c2.814-2.813,4.394-6.628,4.394-10.606 C255,161.018,253.42,157.202,250.606,154.389z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

i._question {
  width: 12px;
  height: 14px;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1536.0 2048' width='1536.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'%3E%3Cpath d='M896,1504v-192c0-9.333-3-17-9-23s-13.667-9-23-9H672c-9.333,0-17,3-23,9s-9,13.667-9,23v192c0,9.333,3,17,9,23 s13.667,9,23,9h192c9.333,0,17-3,23-9S896,1513.333,896,1504z M1152,832c0-58.667-18.5-113-55.5-163s-83.167-88.667-138.5-116 s-112-41-170-41c-162,0-285.667,71-371,213c-10,16-7.333,30,8,42l132,100c4.667,4,11,6,19,6c10.667,0,19-4,25-12 c35.333-45.333,64-76,86-92c22.667-16,51.333-24,86-24c32,0,60.5,8.667,85.5,26s37.5,37,37.5,59c0,25.333-6.667,45.667-20,61 s-36,30.333-68,45c-42,18.667-80.5,47.5-115.5,86.5S640,1103.333,640,1148v36c0,9.333,3,17,9,23s13.667,9,23,9h192 c9.333,0,17-3,23-9s9-13.667,9-23c0-12.667,7.167-29.167,21.5-49.5c14.333-20.333,32.5-36.833,54.5-49.5 c21.333-12,37.667-21.5,49-28.5c11.333-7,26.667-18.667,46-35c19.333-16.333,34.167-32.333,44.5-48s19.667-35.833,28-60.5 S1152,861.333,1152,832z M1536,1024c0,139.333-34.333,267.833-103,385.5s-161.833,210.833-279.5,279.5S907.333,1792,768,1792 s-267.833-34.333-385.5-103S171.667,1527.167,103,1409.5S0,1163.333,0,1024s34.333-267.833,103-385.5S264.833,427.667,382.5,359 S628.667,256,768,256s267.833,34.333,385.5,103s210.833,161.833,279.5,279.5S1536,884.667,1536,1024z'/%3E%3C/svg%3E");
}

i._cross {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%0A%3Csvg class='svg-icon' style='width: 1em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M810.65984 170.65984q18.3296 0 30.49472 12.16512t12.16512 30.49472q0 18.00192-12.32896 30.33088l-268.67712 268.32896 268.67712 268.32896q12.32896 12.32896 12.32896 30.33088 0 18.3296-12.16512 30.49472t-30.49472 12.16512q-18.00192 0-30.33088-12.32896l-268.32896-268.67712-268.32896 268.67712q-12.32896 12.32896-30.33088 12.32896-18.3296 0-30.49472-12.16512t-12.16512-30.49472q0-18.00192 12.32896-30.33088l268.67712-268.32896-268.67712-268.32896q-12.32896-12.32896-12.32896-30.33088 0-18.3296 12.16512-30.49472t30.49472-12.16512q18.00192 0 30.33088 12.32896l268.32896 268.67712 268.32896-268.67712q12.32896-12.32896 30.33088-12.32896z' /%3E%3C/svg%3E");
}

i._search {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96'%3E%3Cswitch%3E%3Cg%3E%3Cpath d='M90.829 85.172 68.128 62.471A35.846 35.846 0 0 0 76 40C76 20.118 59.883 4 40 4 20.118 4 4 20.118 4 40s16.118 36 36 36c8.5 0 16.312-2.946 22.471-7.873l22.701 22.701A3.988 3.988 0 0 0 88 92a4 4 0 0 0 2.829-6.828zM40 68c-15.464 0-28-12.536-28-28s12.536-28 28-28c15.465 0 28 12.536 28 28S55.465 68 40 68z'/%3E%3C/g%3E%3C/switch%3E%3C/svg%3E");
}

i._lock {
  width: 24px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2776px%27 height=%2790px%27 viewBox=%270 0 76 90%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:sketch=%27http://www.bohemiancoding.com/sketch/ns%27%3E%3C%21-- Generator: bin/sketchtool 1.4 %28311%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3ELock icon%3C/title%3E%3Cdesc%3ECreated with bin/sketchtool.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id=%27Page-1%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27 sketch:type=%27MSPage%27%3E%3Cg id=%27Style-guide%27 sketch:type=%27MSArtboardGroup%27 transform=%27translate%28-98.000000, -391.000000%29%27 fill=%27%235E60BA%27%3E%3Cg id=%27Lock-icon%27 sketch:type=%27MSLayerGroup%27 transform=%27translate%2896.000000, 389.000000%29%27%3E%3Cpath d=%27M50.3784783,3.29685185 C51.2553913,3.52555556 52.1463913,3.705 53.0021739,3.99 C58.3587391,5.76333333 62.0248696,10.8722222 62.0072609,16.4948148 C61.9966957,19.3096296 62.0037391,22.127963 62.0002174,24.9462963 C61.9966957,26.6985185 60.8908696,27.8842593 59.2708696,27.8842593 C57.657913,27.8877778 56.5309565,26.6809259 56.5309565,24.9533333 C56.5344783,22.2475926 56.5415217,19.5453704 56.5344783,16.8431481 C56.523913,12.1775926 53.202913,8.79277778 48.5471739,8.76814815 C42.8771739,8.74 37.2106957,8.74 31.5406957,8.77166667 C27.1631739,8.79277778 23.7435652,12.2057407 23.7224348,16.5792593 C23.6942609,22.8422222 23.7224348,29.1016667 23.6977826,35.3611111 C23.6942609,35.9838889 23.8914783,36.1 24.4690435,36.1 C38.2531304,36.0859259 52.0407391,36.1 65.8283478,36.0788889 C72.2026957,36.0718519 77.0380435,40.8288889 77.0415652,47.1938889 C77.045087,57.95 77.0380435,68.7096296 77.0521304,79.4657407 C77.0591739,85.1340741 73.5268696,89.4618519 67.9378696,90.5842593 C67.8322174,90.6053704 67.7406522,90.6827778 67.6455652,90.7355556 L12.6043043,90.7355556 C12.4775217,90.6792593 12.3577826,90.5948148 12.2274783,90.5701852 C6.89556522,89.5709259 3.20830435,85.1481481 3.20478261,79.7261111 C3.20126087,68.7694444 3.19773913,57.8162963 3.20830435,46.8631481 C3.21534783,41.9548148 6.69482609,37.5918519 11.4491739,36.4025926 C13.3931739,35.917037 15.3583043,36.1175926 17.3163913,36.1105556 C18.0383478,36.107037 18.2743043,35.9627778 18.2672609,35.1851852 C18.2320435,28.982037 18.2496522,22.7788889 18.2461304,16.5757407 C18.2461304,10.4992593 22.2785217,5.24259259 28.1351739,3.70148148 C28.7092174,3.55018519 29.2903043,3.43055556 29.8678696,3.29685185 L50.3784783,3.29685185 L50.3784783,3.29685185 Z M40.1231739,41.5466667 C31.575913,41.5466667 23.0321739,41.5431481 14.4884348,41.5501852 C11.030087,41.5537037 8.67404348,43.8864815 8.67052174,47.3240741 C8.66347826,57.9359259 8.66347826,68.5512963 8.67404348,79.1666667 C8.67756522,83.0862963 10.9033043,85.2712963 14.8335652,85.2712963 C31.7238261,85.2748148 48.614087,85.2712963 65.5043478,85.2748148 C69.3043043,85.2783333 71.5828696,82.9772222 71.5828696,79.1561111 C71.5723043,68.5688889 71.5723043,57.9851852 71.5793478,47.397963 C71.5793478,43.9216667 69.240913,41.5501852 65.7543913,41.5501852 C57.2106522,41.5431481 48.666913,41.5466667 40.1231739,41.5466667 L40.1231739,41.5466667 Z%27 id=%27Fill-1%27 sketch:type=%27MSShapeGroup%27%3E%3C/path%3E%3Cpath d=%27M67.6455652,91.6151852 L12.2556522,91.5448148 L12.3331304,90.6053704 L11.9985652,91.4181481 C6.3356087,90.3625926 2.32786957,85.5492593 2.32434783,79.7261111 C2.32082609,68.772963 2.31730435,57.8162963 2.32786957,46.8596296 C2.33491304,41.5924074 6.08204348,36.8388889 11.2343478,35.5475926 C12.8437826,35.1464815 14.4391304,35.1746296 15.9746087,35.2133333 C16.4218696,35.2238889 16.8585652,35.2344444 17.3128696,35.2309259 L17.3868261,35.2309259 L17.3868261,35.1887037 C17.3621739,30.4633333 17.3656957,25.7309259 17.3656957,21.0055556 L17.3692174,16.5757407 C17.3656957,10.1298148 21.7009565,4.48611111 27.9133043,2.85 C28.3112609,2.74444444 28.7162609,2.65296296 29.1212609,2.56148148 L29.6671304,2.43833333 L50.4946957,2.4137037 L51.4455652,2.65648148 C52.0618696,2.80777778 52.6781739,2.95907407 53.2768696,3.15611111 C58.9574348,5.035 62.9053043,10.5203704 62.8841739,16.4948148 L62.8771304,24.9498148 C62.8736087,27.1911111 61.3909565,28.7638889 59.2708696,28.7638889 L59.2638261,28.7638889 C58.2847826,28.7638889 57.3867391,28.405 56.7316957,27.7540741 C56.0343913,27.0503704 55.6505217,26.0581481 55.6540435,24.9498148 L55.6575652,16.8431481 C55.6434783,12.6314815 52.716913,9.66888889 48.5401304,9.64777778 C42.8806957,9.61611111 37.2142174,9.61962963 31.5442174,9.6512963 C27.6703043,9.66888889 24.6204783,12.7159259 24.6028696,16.5862963 C24.5852609,19.8057407 24.5887826,23.0216667 24.5887826,26.2411111 C24.5887826,29.2318519 24.5887826,32.2225926 24.5746957,35.2133333 L44.0604783,35.2133333 C51.3152609,35.2133333 58.5700435,35.2098148 65.8248261,35.1992593 L65.838913,35.1992593 C69.1563913,35.1992593 72.2097391,36.4166667 74.4425217,38.6227778 C76.6823478,40.8394444 77.9184783,43.882963 77.922,47.1938889 L77.922,57.9535185 C77.922,65.1242593 77.922,72.2914815 77.9325652,79.4657407 C77.9396087,85.5492593 74.0833043,90.25 68.1104348,91.4462963 L67.6455652,91.6151852 L67.6455652,91.6151852 Z M12.812087,89.8559259 L67.406087,89.8559259 C67.5046957,89.7996296 67.6244348,89.7503704 67.7653043,89.7222222 C72.9563478,88.6807407 76.1787391,84.7505556 76.1716957,79.4657407 C76.1611304,72.295 76.1611304,65.1242593 76.1611304,57.9535185 L76.1611304,47.1938889 C76.1611304,44.3544444 75.1081304,41.7577778 73.2028696,39.8718519 C71.3046522,37.992963 68.688,36.9585185 65.838913,36.9585185 L65.8248261,36.9585185 C58.5735652,36.9690741 51.3152609,36.9725926 44.0604783,36.9725926 L24.4690435,36.9831481 C24.057,36.9831481 23.585087,36.9338889 23.2258696,36.5714815 C22.8525652,36.1985185 22.8138261,35.7024074 22.8138261,35.3611111 C22.827913,32.3175926 22.827913,29.2811111 22.827913,26.2411111 C22.827913,23.0216667 22.8243913,19.7987037 22.842,16.5792593 C22.8666522,11.7307407 26.6842174,7.91666667 31.5371739,7.89203704 C37.2106957,7.86037037 42.8771739,7.86037037 48.5471739,7.88851852 C53.6713043,7.91666667 57.4043478,11.677963 57.4184348,16.8396296 L57.414913,24.9533333 C57.414913,25.5901852 57.6121304,26.1425926 57.9783913,26.5085185 C58.305913,26.8322222 58.7496522,27.0046296 59.2638261,27.0046296 L59.2673478,27.0046296 C60.4083913,27.0046296 61.1127391,26.212963 61.1197826,24.9427778 L61.1233043,16.4877778 C61.1444348,11.2627778 57.6896087,6.46703704 52.7274783,4.82388889 C52.1675217,4.64092593 51.6005217,4.5037037 51.03,4.36296296 L50.2693043,4.17296296 L29.5051304,4.27851852 C29.1247826,4.36296296 28.740913,4.45092593 28.3605652,4.55296296 C22.923,5.98148148 19.1265652,10.925 19.130087,16.5757407 L19.1265652,21.0090741 C19.1265652,25.7274074 19.1230435,30.4562963 19.1476957,35.1781481 C19.1582609,36.8635185 18.0172174,36.9972222 17.2177826,36.9901852 C16.7916522,36.9901852 16.3655217,36.9796296 15.9358696,36.9725926 C14.4461739,36.9409259 13.041,36.9162963 11.6604783,37.2540741 C7.27943478,38.3483333 4.09578261,42.3911111 4.08873913,46.8596296 C4.07817391,57.8162963 4.08169565,68.772963 4.08521739,79.7261111 C4.08873913,84.6837037 7.50482609,88.7898148 12.3894783,89.7046296 C12.5655652,89.7433333 12.702913,89.8031481 12.812087,89.8559259 L12.812087,89.8559259 Z M65.5043478,86.1544444 L14.8335652,86.1509259 C10.4278696,86.1509259 7.79713043,83.5401852 7.7936087,79.1666667 C7.78304348,68.5512963 7.78304348,57.9394444 7.79008696,47.3240741 C7.7936087,43.4114815 10.5476087,40.6740741 14.4884348,40.6705556 L65.7543913,40.6705556 C69.7022609,40.6740741 72.4597826,43.4431481 72.4597826,47.4014815 C72.4527391,57.9816667 72.4527391,68.5688889 72.4597826,79.1561111 C72.4633043,81.2707407 71.8188261,83.0405556 70.5932609,84.2685185 C69.3676957,85.5035185 67.6068261,86.1544444 65.5043478,86.1544444 L65.5043478,86.1544444 Z M27.5012609,84.3916667 L65.5043478,84.3951852 C67.1243478,84.3951852 68.459087,83.9237037 69.3430435,83.0335185 C70.2305217,82.1362963 70.698913,80.7957407 70.698913,79.1561111 C70.6918696,68.5688889 70.6918696,57.9816667 70.698913,47.4014815 C70.698913,44.3825926 68.754913,42.4333333 65.7543913,42.4298148 L14.4884348,42.4298148 C11.4949565,42.4333333 9.55447826,44.3509259 9.55095652,47.3240741 C9.54391304,57.9394444 9.54391304,68.5512963 9.55447826,79.1666667 C9.558,82.5866667 11.3822609,84.3916667 14.8335652,84.3916667 L27.5012609,84.3916667 L27.5012609,84.3916667 Z%27 id=%27Fill-2%27 sketch:type=%27MSShapeGroup%27%3E%3C/path%3E%3Cpath d=%27M42.8595652,68.0235185 L42.8595652,72.6257407 C42.8595652,73.8607407 42.3946957,74.3392593 41.1832174,74.3427778 C40.4718261,74.3427778 39.7604348,74.3392593 39.0525652,74.3357407 C37.8551739,74.3287037 37.3973478,73.8818519 37.3938261,72.7031481 C37.3867826,69.6314815 37.3832609,66.5633333 37.4008696,63.4916667 C37.4043913,62.9709259 37.2916957,62.6261111 36.8268261,62.2953704 C34.9286087,60.9231481 34.1749565,58.4285185 34.9180435,56.2188889 C35.6470435,54.0444444 37.7107826,52.4998148 39.9118696,52.4822222 C42.4721739,52.4611111 44.5323913,53.8790741 45.3318261,56.2224074 C46.0713913,58.3898148 45.345913,60.8598148 43.482913,62.2461111 C42.9863478,62.6190741 42.8278696,62.9955556 42.8419565,63.5901852 C42.8806957,65.0644444 42.8560435,66.5457407 42.8560435,68.0235185 L42.8595652,68.0235185%27 id=%27Fill-3%27 sketch:type=%27MSShapeGroup%27%3E%3C/path%3E%3Cpath d=%27M41.1867391,75.2224074 L39.0455217,75.2153704 C37.3656522,75.2048148 36.5133913,74.3603704 36.5133913,72.7031481 C36.5063478,69.6314815 36.5028261,66.5598148 36.5204348,63.4916667 C36.5239565,63.1714815 36.4852174,63.1327778 36.3196957,63.0131481 C34.1256522,61.4333333 33.2135217,58.527037 34.0798696,55.9374074 C34.9321304,53.4075926 37.3304348,51.6237037 39.9048261,51.6025926 L39.9787826,51.6025926 C42.8806957,51.6025926 45.2508261,53.2598148 46.1629565,55.9374074 C47.0293043,58.4777778 46.1453478,61.3594444 44.0111739,62.9498148 C43.7611304,63.1362963 43.7153478,63.2383333 43.7223913,63.5655556 C43.7505652,64.6387037 43.7470435,65.7118519 43.74,66.785 L43.7364783,68.0235185 L43.74,68.0235185 L43.74,72.6292593 C43.74,74.3462963 42.8806957,75.2188889 41.1867391,75.2224074 L41.1867391,75.2224074 Z M39.9787826,53.3618519 L39.918913,53.3618519 C38.0805652,53.3759259 36.3654783,54.6672222 35.7491739,56.5038889 C35.1258261,58.3651852 35.7773478,60.4551852 37.341,61.5846296 C38.1826957,62.1792593 38.2848261,62.9216667 38.2813043,63.5022222 C38.2636957,66.5668519 38.2672174,69.6314815 38.2742609,72.6996296 C38.2742609,73.3681481 38.3200435,73.4525926 39.056087,73.4561111 L41.1832174,73.4631481 C41.8805217,73.4596296 41.9791304,73.4068519 41.9791304,72.6292593 L41.9826522,66.6548148 C41.9861739,65.6414815 41.9896957,64.6246296 41.9615217,63.6112963 C41.9403913,62.7105556 42.2467826,62.0737037 42.9546522,61.5388889 C44.4901304,60.4024074 45.1205217,58.3335185 44.5006957,56.5074074 C43.8245217,54.5335185 42.1376087,53.3618519 39.9787826,53.3618519 L39.9787826,53.3618519 Z%27 id=%27Fill-4%27 sketch:type=%27MSShapeGroup%27%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

i._sort {
  width: 8px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg contentscripttype='text/ecmascript' viewBox='0 0 1024 2048' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1024 1216c0 17.333-6.333 32.333-19 45l-448 448c-12.667 12.667-27.667 19-45 19s-32.333-6.333-45-19L19 1261c-12.667-12.667-19-27.667-19-45s6.333-32.333 19-45 27.667-19 45-19h896c17.333 0 32.333 6.333 45 19s19 27.667 19 45zm0-384c0 17.333-6.333 32.333-19 45s-27.667 19-45 19H64c-17.333 0-32.333-6.333-45-19S0 849.333 0 832s6.333-32.333 19-45l448-448c12.667-12.667 27.667-19 45-19s32.333 6.333 45 19l448 448c12.667 12.667 19 27.667 19 45z' fill='%23c4c4c4' class='fill-000000'%3E%3C/path%3E%3C/svg%3E");
 
}

th.sortable[data-sort="desc"] i._sort{
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1024.0 2048' width='1024.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'%3E%3Cpath fill='%23c4c4c4' d='M1024,1216c0,17.333-6.333,32.333-19,45l-448,448c-12.667,12.667-27.667,19-45,19c-17.333,0-32.333-6.333-45-19L19,1261 c-12.667-12.667-19-27.667-19-45s6.333-32.333,19-45s27.667-19,45-19h896c17.333,0,32.333,6.333,45,19S1024,1198.667,1024,1216z'/%3E%3Cpath d='M1024,832c0,17.333-6.333,32.333-19,45s-27.667,19-45,19H64c-17.333,0-32.333-6.333-45-19S0,849.333,0,832s6.333-32.333,19-45 l448-448c12.667-12.667,27.667-19,45-19c17.333,0,32.333,6.333,45,19l448,448C1017.667,799.667,1024,814.667,1024,832z'/%3E%3C/svg%3E");
}

th.sortable[data-sort="asc"] i._sort{
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1024.0 2048' width='1024.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'%3E%3Cpath d='M1024,1216c0,17.333-6.333,32.333-19,45l-448,448c-12.667,12.667-27.667,19-45,19c-17.333,0-32.333-6.333-45-19L19,1261 c-12.667-12.667-19-27.667-19-45s6.333-32.333,19-45s27.667-19,45-19h896c17.333,0,32.333,6.333,45,19S1024,1198.667,1024,1216z'/%3E%3Cpath fill='%23c4c4c4' d='M1024,832c0,17.333-6.333,32.333-19,45s-27.667,19-45,19H64c-17.333,0-32.333-6.333-45-19S0,849.333,0,832s6.333-32.333,19-45 l448-448c12.667-12.667,27.667-19,45-19c17.333,0,32.333,6.333,45,19l448,448C1017.667,799.667,1024,814.667,1024,832z'/%3E%3C/svg%3E");
}

i._camera {
  background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 64 64%27 enable-background=%27new 0 0 64 64%27 xml:space=%27preserve%27%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d=%27M36,25c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10S41.5,25,36,25z%27/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d=%27M59,15h-8l-6.4-8.2C44.2,6.3,43.6,6,43,6H29c-0.6,0-1.2,0.3-1.6,0.8L21,15c0,0-3.3,0-6,0v-2c0-1.1-0.9-2-2-2H7 c-1.1,0-2,0.9-2,2v2c-2.8,0-5,2.2-5,5v32c0,2.8,2.2,5,5,5h54c2.8,0,5-2.2,5-5V20C64,17.2,61.8,15,59,15z M36,51 c-8.8,0-16-7.2-16-16s7.2-16,16-16s16,7.2,16,16S44.8,51,36,51z%27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 14px;
  height: 14px;
}

i._user {
  width: 9px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1408.0 2048' width='1408.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'%3E%3Cpath d='M1408,1533c0,80-24.333,143.167-73,189.5s-113.333,69.5-194,69.5H267c-80.667,0-145.333-23.167-194-69.5S0,1613,0,1533 c0-35.333,1.167-69.833,3.5-103.5s7-70,14-109S33.333,1245.333,44,1212s25-65.833,43-97.5s38.667-58.667,62-81 c23.333-22.333,51.833-40.167,85.5-53.5s70.833-20,111.5-20c6,0,20,7.167,42,21.5s46.833,30.333,74.5,48 c27.667,17.667,63.667,33.667,108,48S659.333,1099,704,1099s89.167-7.167,133.5-21.5s80.333-30.333,108-48 c27.667-17.667,52.5-33.667,74.5-48s36-21.5,42-21.5c40.667,0,77.833,6.667,111.5,20s62.167,31.167,85.5,53.5 c23.333,22.333,44,49.333,62,81s32.333,64.167,43,97.5s19.5,69.5,26.5,108.5s11.667,75.333,14,109S1408,1497.667,1408,1533z M1088,640c0,106-37.5,196.5-112.5,271.5S810,1024,704,1024s-196.5-37.5-271.5-112.5S320,746,320,640s37.5-196.5,112.5-271.5 S598,256,704,256s196.5,37.5,271.5,112.5S1088,534,1088,640z'/%3E%3C/svg%3E");
}

i._filters {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='-6.333000183105469 0 1420.666015625 2048' width='1420.666015625px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify' fill='%23868686'%3E%3Cpath d='M1403,423c11.333,27.333,6.667,50.667-14,70L896,986v742c0,28-13,47.667-39,59c-8.667,3.333-17,5-25,5c-18,0-33-6.333-45-19 l-256-256c-12.667-12.667-19-27.667-19-45V986L19,493c-20.667-19.333-25.333-42.667-14-70c11.333-26,31-39,59-39h1280 C1372,384,1391.667,397,1403,423z'/%3E%3C/svg%3E");
}

i._info {
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cg%3E%3Cpath fill=%27%23fff%27 class=%27st0%27 d=%27M256,0C115.2,0,0,115.2,0,256s115.2,256,256,256s256-115.2,256-256S396.8,0,256,0z M256,128 c19.2,0,32,12.8,32,32s-12.8,32-32,32s-32-12.8-32-32S236.8,128,256,128z M320,384H192v-32h32v-96h-32v-32h96v128h32V384z%27/%3E%3C/g%3E%3C/svg%3E");
}

i._info._blue {
  background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cg%3E%3Cpath fill=%27%2331708f%27 class=%27st0%27 d=%27M256,0C115.2,0,0,115.2,0,256s115.2,256,256,256s256-115.2,256-256S396.8,0,256,0z M256,128 c19.2,0,32,12.8,32,32s-12.8,32-32,32s-32-12.8-32-32S236.8,128,256,128z M320,384H192v-32h32v-96h-32v-32h96v128h32V384z%27/%3E%3C/g%3E%3C/svg%3E");
}

i._fingerprint {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1667 9.83333V10.6667C13.1667 12.975 12.6134 15.2042 11.5709 17.205L11.3817 17.555L9.92585 16.7433C10.8925 15.01 11.4342 13.0683 11.4942 11.0467L11.5 10.6667V9.83333H13.1667ZM8.16669 7.33333H9.83335V10.6667L9.82919 10.9825C9.76619 13.2639 8.98102 15.4665 7.58669 17.2733L7.39419 17.515L6.10252 16.4617C7.37451 14.9082 8.09832 12.9784 8.16169 10.9717L8.16669 10.6667V7.33333ZM9.00002 4C10.1051 4 11.1649 4.43898 11.9463 5.22039C12.7277 6.00179 13.1667 7.0616 13.1667 8.16666H11.5C11.5 7.50362 11.2366 6.86774 10.7678 6.3989C10.2989 5.93006 9.66306 5.66666 9.00002 5.66666C8.33698 5.66666 7.70109 5.93006 7.23225 6.3989C6.76341 6.86774 6.50002 7.50362 6.50002 8.16666V10.6667C6.50002 12.5292 5.81669 14.2867 4.60752 15.6475L4.43085 15.8392L3.22419 14.6892C4.19915 13.6691 4.76939 12.329 4.82835 10.9192L4.83335 10.6667V8.16666C4.83335 7.0616 5.27234 6.00179 6.05374 5.22039C6.83514 4.43898 7.89495 4 9.00002 4V4ZM9.00002 0.666665C10.9891 0.666665 12.8968 1.45684 14.3033 2.86336C15.7098 4.26989 16.5 6.17754 16.5 8.16666V10.6667C16.5 12.0817 16.3317 13.475 16.0025 14.825L15.8867 15.2742L14.2784 14.8358C14.605 13.6383 14.7892 12.4008 14.8267 11.14L14.8334 10.6667V8.16666C14.8334 7.08405 14.5321 6.0228 13.9632 5.10167C13.3944 4.18054 12.5805 3.43588 11.6125 2.95103C10.6445 2.46618 9.56072 2.26027 8.48238 2.35634C7.40403 2.45241 6.3737 2.84667 5.50669 3.495L4.31919 2.30666C5.64708 1.24273 7.29847 0.664141 9.00002 0.666665V0.666665ZM3.14002 3.48583L4.32835 4.67333C3.61363 5.62602 3.20924 6.77549 3.17002 7.96583L3.16669 8.16666L3.17002 9.83333C3.17002 10.7667 2.95002 11.6692 2.53502 12.4808L2.40502 12.7225L0.95752 11.8958C1.27419 11.3417 1.45919 10.7233 1.49585 10.0767L1.50335 9.83333V8.16666C1.49841 6.46527 2.07598 4.81345 3.14002 3.48583V3.48583Z' fill='%23000'/%3E%3C/svg%3E%0A");
}

i._mail {
  width: 13px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.49996 0H16.5C16.721 0 16.9329 0.0877973 17.0892 0.244078C17.2455 0.400358 17.3333 0.61232 17.3333 0.833333V14.1667C17.3333 14.3877 17.2455 14.5996 17.0892 14.7559C16.9329 14.9122 16.721 15 16.5 15H1.49996C1.27895 15 1.06698 14.9122 0.910704 14.7559C0.754423 14.5996 0.666626 14.3877 0.666626 14.1667V0.833333C0.666626 0.61232 0.754423 0.400358 0.910704 0.244078C1.06698 0.0877973 1.27895 0 1.49996 0ZM15.6666 3.53167L9.05996 9.44833L2.33329 3.51333V13.3333H15.6666V3.53167ZM2.75913 1.66667L9.05079 7.21833L15.2516 1.66667H2.75913Z' fill='%23000'/%3E%3C/svg%3E%0A");
}

i._phone {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.805 6.40167C6.58695 7.7754 7.7246 8.91305 9.09833 9.695L9.835 8.66333C9.95346 8.49745 10.1286 8.38073 10.3273 8.33528C10.526 8.28982 10.7345 8.31878 10.9133 8.41667C12.0919 9.06077 13.3935 9.44815 14.7325 9.55333C14.9415 9.56989 15.1365 9.66461 15.2788 9.8186C15.421 9.97259 15.5 10.1745 15.5 10.3842V14.1025C15.5 14.3088 15.4235 14.5078 15.2853 14.661C15.1471 14.8142 14.9569 14.9106 14.7517 14.9317C14.31 14.9775 13.865 15 13.4167 15C6.28333 15 0.5 9.21667 0.5 2.08333C0.5 1.635 0.5225 1.19 0.568333 0.748333C0.589379 0.543081 0.68582 0.352934 0.838991 0.214695C0.992163 0.076456 1.19117 -4.44648e-05 1.3975 1.93894e-08H5.11583C5.32547 -2.62654e-05 5.52741 0.0789596 5.6814 0.221209C5.83539 0.363458 5.93011 0.55852 5.94667 0.7675C6.05185 2.10649 6.43923 3.40807 7.08333 4.58667C7.18122 4.76547 7.21018 4.97395 7.16472 5.17266C7.11927 5.37137 7.00255 5.54653 6.83667 5.665L5.805 6.40167V6.40167ZM3.70333 5.85417L5.28667 4.72333C4.83732 3.75341 4.52946 2.72403 4.3725 1.66667H2.175C2.17 1.805 2.1675 1.94417 2.1675 2.08333C2.16667 8.29667 7.20333 13.3333 13.4167 13.3333C13.5558 13.3333 13.695 13.3308 13.8333 13.325V11.1275C12.776 10.9705 11.7466 10.6627 10.7767 10.2133L9.64583 11.7967C9.19055 11.6198 8.74834 11.4109 8.3225 11.1717L8.27417 11.1442C6.63965 10.2139 5.28607 8.86035 4.35583 7.22583L4.32833 7.1775C4.08909 6.75166 3.88024 6.30945 3.70333 5.85417V5.85417Z' fill='%23000'/%3E%3C/svg%3E");
}


i._exit {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33901 13.378H5.00854V15.0041H15.0257V1.99594H5.00854V3.62195H3.33901V1.18293C3.33901 0.967304 3.42696 0.760512 3.58351 0.608043C3.74005 0.455575 3.95238 0.369919 4.17377 0.369919H15.8605C16.0819 0.369919 16.2942 0.455575 16.4507 0.608043C16.6073 0.760512 16.6952 0.967304 16.6952 1.18293V15.8171C16.6952 16.0327 16.6073 16.2395 16.4507 16.392C16.2942 16.5444 16.0819 16.6301 15.8605 16.6301H4.17377C3.95238 16.6301 3.74005 16.5444 3.58351 16.392C3.42696 16.2395 3.33901 16.0327 3.33901 15.8171V13.378ZM5.00854 7.68699H10.8519V9.31301H5.00854V11.752L0.834717 8.5L5.00854 5.24797V7.68699Z' fill='%23000'/%3E%3C/svg%3E");
}


i._pencil {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.16667 13.3333H3.345L11.1067 5.57167L9.92833 4.39333L2.16667 12.155V13.3333ZM15.5 15H0.5V11.4642L11.6958 0.268334C11.8521 0.112108 12.064 0.0243454 12.285 0.0243454C12.506 0.0243454 12.7179 0.112108 12.8742 0.268334L15.2317 2.62583C15.3879 2.78211 15.4757 2.99403 15.4757 3.215C15.4757 3.43597 15.3879 3.64789 15.2317 3.80417L5.7025 13.3333H15.5V15ZM11.1067 3.215L12.285 4.39333L13.4633 3.215L12.285 2.03667L11.1067 3.215V3.215Z' fill='%23000'/%3E%3C/svg%3E%0A");
}

i._ok {
  width: 13px;
  height: 10px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='11' fill='none' viewBox='0 0 15 11'%3E%3Cpath fill='%23000' d='m5.333 8.643 7.66-7.66 1.18 1.178L5.332 11 .03 5.697l1.178-1.179 4.125 4.125Z'/%3E%3C/svg%3E");
}

i._cancel {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23000' d='M7 5.822 12.125.697l1.178 1.178L8.178 7l5.125 5.125-1.178 1.178L7 8.178l-5.125 5.125-1.178-1.178L5.822 7 .697 1.875 1.875.697 7 5.822Z'/%3E%3C/svg%3E");
}

i._orders {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1792.0 2048' width='1792.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify' fill='%235d60b8'%3E%3Cpath d='M512,1376v192c0,26.667-9.333,49.333-28,68s-41.333,28-68,28H96c-26.667,0-49.333-9.333-68-28s-28-41.333-28-68v-192 c0-26.667,9.333-49.333,28-68s41.333-28,68-28h320c26.667,0,49.333,9.333,68,28S512,1349.333,512,1376z M512,864v192 c0,26.667-9.333,49.333-28,68s-41.333,28-68,28H96c-26.667,0-49.333-9.333-68-28s-28-41.333-28-68V864c0-26.667,9.333-49.333,28-68 s41.333-28,68-28h320c26.667,0,49.333,9.333,68,28S512,837.333,512,864z M1792,1376v192c0,26.667-9.333,49.333-28,68 s-41.333,28-68,28H736c-26.667,0-49.333-9.333-68-28s-28-41.333-28-68v-192c0-26.667,9.333-49.333,28-68s41.333-28,68-28h960 c26.667,0,49.333,9.333,68,28S1792,1349.333,1792,1376z M512,352v192c0,26.667-9.333,49.333-28,68s-41.333,28-68,28H96 c-26.667,0-49.333-9.333-68-28S0,570.667,0,544V352c0-26.667,9.333-49.333,28-68s41.333-28,68-28h320c26.667,0,49.333,9.333,68,28 S512,325.333,512,352z M1792,864v192c0,26.667-9.333,49.333-28,68s-41.333,28-68,28H736c-26.667,0-49.333-9.333-68-28 s-28-41.333-28-68V864c0-26.667,9.333-49.333,28-68s41.333-28,68-28h960c26.667,0,49.333,9.333,68,28S1792,837.333,1792,864z M1792,352v192c0,26.667-9.333,49.333-28,68s-41.333,28-68,28H736c-26.667,0-49.333-9.333-68-28s-28-41.333-28-68V352 c0-26.667,9.333-49.333,28-68s41.333-28,68-28h960c26.667,0,49.333,9.333,68,28S1792,325.333,1792,352z'/%3E%3C/svg%3E");
}

/* .select2-container--default .select2-selection--single .select2-selection__clear {
  margin-top: -2px;
} */

.select2-container .select2-selection--single {
  height: 33px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 31px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 33px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2; */
  background-color: #fff;
}

.header__container {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header .logo p {
  color: #777;
  font-size: 18px;
  display: none;
}

.header .logo {
  max-width: 120px;
}

.header .logo img {
  width: 100%;
}

.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header__list li a {
  font-size: 15px;
}

.header__list li.active a {
  font-weight: 700;
}

.header__cabinet {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
}

.popup--show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup.popup--show .popup__wrapper {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.popup__wrapper {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background-color: #fff;
  border-radius: 0;
  padding: 60px 20px 20px;
}

.popup__content {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.popup__close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 0;
  z-index: 3;
}

.popup__close span {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.popup__close span::before,
.popup__close span::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #333;
  top: 50%;
  left: 50%;
}

.popup__close span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close span::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.form {
  margin-top: 100px;
}

.form__container {
  padding-bottom: 20px;
}

.form__logo {
  display: block;
  margin: 0 auto;
}

.form__wrapper {
  max-width: 555px;
  width: 100%;
  background: #FFFFFF;
  margin: 35px auto 0;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.form__login {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  gap: 3px;
}

.form__form {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.form__label input {
  padding: 14px 12px;
  width: 100%;
  border-radius: 0;
}

.form__submit,
.form__reset {
  text-transform: uppercase;
  padding: 10px 16px;
  font-size: 18px;
}

.form__forgotpass {
  display: block;
  text-align: center;
}

.cabinet__main {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 20px;
}

.header__filters-button.active i._filters {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='-6.333000183105469 0 1420.666015625 2048' width='1420.666015625px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify' fill='%235d60b8'%3E%3Cpath d='M1403,423c11.333,27.333,6.667,50.667-14,70L896,986v742c0,28-13,47.667-39,59c-8.667,3.333-17,5-25,5c-18,0-33-6.333-45-19 l-256-256c-12.667-12.667-19-27.667-19-45V986L19,493c-20.667-19.333-25.333-42.667-14-70c11.333-26,31-39,59-39h1280 C1372,384,1391.667,397,1403,423z'/%3E%3C/svg%3E");
}

.header__filters-button.active span {
  color: #5d60b8;
}


.filters__container {
  margin-bottom: 20px;
}
.filters {
  gap: 10px;
}

.filters__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.filters__wrapper > * {
  flex: 1 1 0;
}

.filters__search {
  position: relative;
  max-width: 300px;
}


.filters__search .search__reset,
.filters__search .search__find{
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 100%;
  width: 30px;
  cursor: pointer;
}

.filters__search .search__reset i,
.filters__search .search__find i {
  margin: auto;
  display: block;
}

.search__input {
  width: 100%;
  padding: 6px 72px 6px 12px;
}

.search__reset {
  display: none;
}

.filters__search .search__find {
  right: 0px;
}

.filters__search .search__reset {
  right: 30px;
}

.filters__chekbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}

/* .filters__selects .select2:not(:last-child) {
  margin: 0 10px 0 0;
} */

/* .content__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
} */

.cabinet__container {
  height: 100%;
}


.cabinet__table {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: scroll;
}

.table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.table tr.popup__open-button {
  cursor: pointer;
}

.table tr.popup__open-button:hover {
  background-color: #f5f5f5;
}

.table > thead > tr {
  border-bottom: 2px solid #ddd;
}

.table > thead > tr > th,
.table > tbody > tr > th {
  vertical-align: bottom;
  padding: 8px;
  line-height: 140%;
  text-align: left;
  width: fit-content;
  /* white-space: nowrap; */
  position: relative;
  /* max-width: fit-content; */
}
.table__th-name {
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
    line-height: 100%;
}

.table th.sortable {
  cursor: pointer;
}

.table > thead > tr > th i._sort,
.table > tbody > tr > th i._sort {
  display: inline-block;
  margin-bottom: -2px;
}

.table-left-width {
  width: 30%;
  text-align: right;
  font-weight: bold;
}

.table tr{
  border-top: 1px solid #ddd;
}



.table > tbody > tr > td,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th,
.table > tbody > tr > th {
  padding: 8px;
  line-height: 140%;
  vertical-align: center;
}

.table > tbody > tr > th {
  text-align: left;
  background-color: #fff;
}

.table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}




.attachment__table a:link,
.attachment__table a:visited {
    color: #3838e9;
}







.invoice__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}


.vehicle__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* .payment__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
} */

.vehicle__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(67% - 15px);
  height: fit-content;
}

.vehicle__images {
  width: calc(33% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.vehicle__download-images {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vehicle__gallery {
  gap: 10px;
  margin-bottom: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.vehicle__gallery a {
  width: calc(25% - 7.5px);
  height: auto;
  aspect-ratio: 1/1;
}

.vehicle__gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vehicle__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: calc(50% - 15px);
  height: fit-content;
}

.vehicle__item b {
  display: block;
  margin-bottom: 5px;
}

.vehicle__item ._button._green {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.vehicle__item textarea {
  display: block;
  width: 100%;
}

.menu__link.active {
  font-weight: 700;
  position: relative;
}

.menu__link.active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #5d60b8;
  border-radius: 1px;
}


.user {
  position: relative;
  max-width: 100%;
  width: 100%;
}
.popup.user__popup {
  max-width: 300px;
  height: auto;
  right: 20px;
  left: auto;
  bottom: auto;
  top: 45px;
  z-index: 150;
}

.overlay_popup--transparent {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: transparent;
  z-index: 3;
  display: none;
}



.user__wrapper {
  padding: 10px 15px;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.user__block i {
  min-width: 13px;
}

.user__block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.user__block:not(:last-child){
  margin-bottom: 10px;
}
.user__block.active .user__password input{
  display: block;
}

.user__block.active .user__buttons {
  display: flex;
}

.user__block span {
  width: 100%;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 140%;
}

.user__block.active .user__edit,
.user__block.active .user__message {
  display: none;
}
.user__password input {
  display: none;
}


.user__buttons {
  display: none;
  align-items: center;
  gap: 10px;
}

.user__message {
  min-width: 80%;
}

.user__message.success {
  color: #27B953;
}

.user__message.fail {
  color: #ac2925;
}

.user__password {
  width: 100%;
}

/* .pagination__container {
  padding-bottom: 20px;
} */

.pagination {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: fit-content;
  justify-self: flex-end;
}

.pagination > a {
  padding: 6px 12px;
  line-height: 140%;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
}

.pagination > a:hover {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > a:not(:last-child){
  border-right: 1px solid #ddd;
}

.pagination__number.active {
  background-color: #337ab7;
  border-color: #337ab7;
  color: #fff;
}


/* Table Cells */
.memo__cell {
  width: 330px;
}

.issued_by__cell {
  min-width: 150px;
  width: 150px;
}

.details__cell {
  width: 75px;
}


.amount__cell {
  color: blue;
    text-align: right;
}
.amount_paid__cell {
  color: green;
    text-align: right;
}
.amount_due__cell {
  color: red;
    text-align: right;
}


.client__cell > .select2 {
  width: 120px !important;
}

.location__cell {
  width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

.has_photo__cell {
  width: 30px !important;
}


/* Table TH Cells*/

th[data-col_name="exact_date"] > .table__th-name{
  width: 75px;
}

th[data-col_name="location"]{
  display: none;
}

th[data-col_name="status"]{
  min-width: 72px;
}

th[data-col_name="has_photo"]{
  width: 30px !important;
}

/* TABS */

.tabs__links {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.tabs__link {
  cursor: pointer;
  padding: 10px;
  color: #555;
  background-color: transparent;
  line-height: 140%;
  border: 1px solid transparent;
}

.tabs__link:hover {
  background-color: #eee;
}

.tabs__link.active {
  cursor: default;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  border-radius: 4px 4px 0 0;
  background-color: #eee;
}
.tabs__link.active:hover {
  background-color: #fff;
}

.tabs__content {
  display: none;
}
/* TABS END */

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list__item {
  position: relative;
  overflow: hidden;
}

.list__info span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.list__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 50px);
}

.client-list-item .list__info {
  width: 100%;
}

.client-list-item .list__button {
  display: none;
}
.list__vin span {
  width: 100%;
  display: block;
}

.list__button {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2e6da4;
  background-color: #337ab7;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.list__button {
  background-color: #286090;
  border-color: #204d74;
}

.list__item._red .list__button {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.list__item._green .list__button{
  background-color: #4ED176;
  border-color: #4cae4c;
}

footer.footer {
  height: auto;
  /* position: fixed;
  bottom: 0;
  left: 0;
  right: 0; */
  background-color: #f8f8f8;
  border-top: 1px solid #e7e7e7;
  padding: 10px 0;
  z-index: 2;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: flex-end;
}

.footer__container .export__button {
  margin-right: auto;
}


.show-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* MEDIA */

@media (max-width: 767.98px) {

  .form__form {
    padding: 30px;
  }

  .vehicle__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .vehicle__main {
    width: 100%;
  }

  .vehicle__images {
    width: 100%;
  }
  .header__username {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .filters__search {
    max-width: 230px;
  }
}

@media (max-width: 560px) {
  .vehicle__item {
    width: 100%;
  }
  .header .logo  {
    max-width: none;
    flex-basis: 15%;
   }
   .menu__link.active::after {
    bottom: -13px;
   }
   .export__button  span{
    display: none;
   }
}

@media (max-width: 479.98px) {
  .header__list {
    gap: 10px;
  }
  footer .footer__container{
    justify-content: flex-end;
  }
  .menu__link,
  .header__cabinet,
  .header__filters-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }
  .menu__link span,
  .header__cabinet span{
    color: #5d60b8;
    font-size: 12px;
  }

  .header__filters-button span  {
    transition: all .3s ease;
    color: #868686;
  }

  .header__cabinet i._user {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg contentScriptType='text/ecmascript' contentStyleType='text/css' enable-background='new 0 0 2048 2048' height='2048px' id='Layer_1' preserveAspectRatio='xMidYMid meet' version='1.1' viewBox='0.0 0 1408.0 2048' width='1408.0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify' fill='%235d60b8'%3E%3Cpath d='M1408,1533c0,80-24.333,143.167-73,189.5s-113.333,69.5-194,69.5H267c-80.667,0-145.333-23.167-194-69.5S0,1613,0,1533 c0-35.333,1.167-69.833,3.5-103.5s7-70,14-109S33.333,1245.333,44,1212s25-65.833,43-97.5s38.667-58.667,62-81 c23.333-22.333,51.833-40.167,85.5-53.5s70.833-20,111.5-20c6,0,20,7.167,42,21.5s46.833,30.333,74.5,48 c27.667,17.667,63.667,33.667,108,48S659.333,1099,704,1099s89.167-7.167,133.5-21.5s80.333-30.333,108-48 c27.667-17.667,52.5-33.667,74.5-48s36-21.5,42-21.5c40.667,0,77.833,6.667,111.5,20s62.167,31.167,85.5,53.5 c23.333,22.333,44,49.333,62,81s32.333,64.167,43,97.5s19.5,69.5,26.5,108.5s11.667,75.333,14,109S1408,1497.667,1408,1533z M1088,640c0,106-37.5,196.5-112.5,271.5S810,1024,704,1024s-196.5-37.5-271.5-112.5S320,746,320,640s37.5-196.5,112.5-271.5 S598,256,704,256s196.5,37.5,271.5,112.5S1088,534,1088,640z'/%3E%3C/svg%3E");
  }
  .menu__link.active::after {
    bottom: -10px;
  }
  .header__cabinet .header__username {
    display: none;
  }
  .cabinet__main {
    position: relative;
  }
  .filters__selects {
    display: none;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 20; */
  }
  /* .filters__selects .select2:not(:last-child) {
    margin: 0 0 10px 0;
  } */
  .filters__wrapper .select2,
  .search__input,
  .filters__search {
    width: 100% !important;
  }

  .cabinet__filters._block {
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .table__main {
    display: none;
  }
  .pagination > a {
    padding: 4px 8px;
  }

  .pagination__first span:first-child,
  .pagination__last span:first-child {
    display: none;
  }
  .show-by {
    gap: 5px;
  }
  .show-by b {
    font-size: 12px;
  }



  .footer__container {
    gap: 10px 10px;
  }
}



@media (min-width: 479.98px){
  .menu__link i,
  .header__cabinet .header__profile,
  .header__filters-button,
  .cabinet__list {
    display: none;
  }

  .filters__selects {
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .pagination__first span:last-child,
  .pagination__last span:last-child {
    display: none;
  }
}

@media (max-width: 399.98px){
  [class*=__container] {
    padding: 0 10px;
  }
  .menu__link span,
  .header__cabinet span,
  .header__filters-button span {
    font-size: 10px;
  }
  .header__navigation {
    gap: 10px 5px;
  }
  .show-by > b {
    display: none;
  }
}

/* MEDIA END */


/* 404 */
body.error404 header,
body.error404 footer {
  display: none;
}

.error-404 {
  margin-top: 30vh;
}

.wrap-404 {
  text-align: center;
}

.cls404 {
  font-size: 150px;
  color: #2e6da4;
}
.text404 {
  margin-bottom: 30px;
}

.back_btn_404 {
  max-width: 200px;
  margin: 0 auto;
}

/* 404 END */