*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  display: flex;
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}
@media only screen and (max-width: 992px) {
  body {
    padding: 0;
  }
}

::-webkit-scrollbar {
  width: 10px;
}
@media only screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 5px;
  }
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #a7a9ac;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a7a9ac;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hidden {
  display: none;
}

.main {
  width: calc(100vw - 260px);
  background-color: white;
}

.color-primary {
  color: #109CF1;
}

.color-grey {
  color: #6f6f6f;
}

/* ----- FOR IE ----- */
/* ----- FOR IOS DEVICES ----- */
:root {
  --blue:#007bff;
  --indigo:#6610f2;
  --purple:#6f42c1;
  --pink:#e83e8c;
  --red:#dc3545;
  --orange:#fd7e14;
  --yellow:#ffc107;
  --green:#28a745;
  --teal:#20c997;
  --cyan:#17a2b8;
  --white:#fff;
  --gray:#6c757d;
  --gray-dark:#343a40;
  --primary:#007bff;
  --secondary:#6c757d;
  --success:#28a745;
  --info:#17a2b8;
  --warning:#ffc107;
  --danger:#dc3545;
  --light:#f8f9fa;
  --dark:#343a40;
  --breakpoint-xs:0;
  --breakpoint-sm:576px;
  --breakpoint-md:768px;
  --breakpoint-lg:992px;
  --breakpoint-xl:1200px;
  --font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

b, strong {
  font-weight: bolder;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1, h1 {
  font-size: 25px;
}

.h2, h2 {
  font-size: 20px;
}

.h3, h3 {
  font-size: 17px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 1260px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1470px;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 32px;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  padding: 0 14px;
  transition: background-color 0.3s;
}
.btn:hover {
  cursor: pointer;
}
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary {
  background-color: #109CF1;
  box-shadow: 0px 4px 10px rgba(16, 156, 241, 0.24);
}
.btn-primary:hover {
  background-color: #0b7dc3;
  box-shadow: 0px 4px 6px rgba(16, 156, 241, 0.2);
}

.btn-save {
  background-color: #4E67EC;
}
.btn-save:hover {
  background-color: #203fe7;
}

.btn-cancel {
  background-color: #D34A6B;
}
.btn-cancel:hover {
  background-color: #bc2e50;
}

.btn-row {
  display: flex;
  align-items: center;
}
.btn-row-bottom {
  margin-left: 30px;
}
.btn-row .btn {
  margin-right: 20px;
}
.btn-row.justify-end {
  justify-content: flex-end;
}
.btn-row-text {
  margin-right: 30px;
}

.btn-signout {
  background-color: #F7685B;
  border-radius: 4px;
  padding: 4px 18px;
  color: white !important;
  font-size: 14px;
  transition: background-color 0.3s;
}
.btn-signout:hover {
  color: white;
  background-color: #f53b2a;
}

.btn-red {
  background-color: red;
}

.btn-white {
  background-color: white;
  border: 1px solid #ccc;
  color: black;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  background-color: #F2F2F2;
  padding: 0 40px;
}
.nav-top-user {
  margin-right: 20px;
}
.nav-top-title {
  font-size: 20px;
  font-weight: 300;
}
.nav-top-panel {
  display: flex;
  align-items: center;
}

.nav-sidebar {
  width: 260px;
  height: 100vh;
  background: #1B1A24;
  box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
  position: relative;
}
.nav-sidebar-logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 40px;
}
.nav-sidebar-logo img {
  width: 130px;
}
.nav-sidebar-menu {
  color: #334D6E;
  font-size: 14px;
  padding-top: 40px;
  height: calc(100vh - 60px);
  overflow-y: scroll;
}
.nav-sidebar-menu::-webkit-scrollbar {
  width: 0;
}
.nav-sidebar-menu::-webkit-scrollbar-track {
  width: 0;
  background-color: transparent;
}
.nav-sidebar-menu::-webkit-scrollbar-thumb {
  width: 0;
  background-color: transparent;
}
.nav-sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.nav-sidebar-menu .nav-item-head {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  color: white;
  font-size: 16px;
  font-weight: 300;
}
.nav-sidebar-menu .nav-item-head:hover {
  cursor: pointer;
}
.nav-sidebar-menu .nav-item-head .icon {
  margin-right: 10px;
}
.nav-sidebar-menu .nav-item.active .nav-item-submenu {
  display: block;
}
.nav-sidebar-menu .nav-item.active .nav-item-head {
  font-weight: 400;
}
.nav-sidebar-menu .nav-item-submenu {
  display: none;
  width: 100%;
}
.nav-sidebar-menu .nav-item-submenu__link {
  display: block;
  width: 100%;
  color: white;
  font-size: 14px;
  font-weight: 300;
  padding: 7px 0 7px 54px;
}
.nav-sidebar-menu .nav-item-submenu__link.active {
  color: #109CF1;
  font-weight: 400;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}
.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 19px;
  min-width: 19px;
  background-color: #F2F2F2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 8px;
  padding: 0 4px;
}
.pagination-item.inactive {
  opacity: 0.5;
}
.pagination-item.active {
  background-color: #109CF1;
  color: white;
}

.content {
  height: calc(100vh - 60px);
  overflow-y: scroll;
  background-color: #F2F2F2;
  padding-bottom: 80px;
}
.content-block {
  padding: 25px 35px;
}
.content-block:not(:last-of-type) {
  border-bottom: 2px solid #F2F2F2;
}
.content-block-title {
  color: rgba(27, 26, 36, 0.5);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
.content-block-title small {
  font-size: 12px;
}
.content-panel {
  display: none;
  width: 300px;
  background-color: white;
  height: max-content;
  padding: 20px;
}
.content-panel.active {
  display: block;
}

.tabs-nav {
  display: flex;
}
.tabs-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
  margin-right: 3px;
}
.tabs-nav-item:hover {
  cursor: pointer;
}
.tabs-nav-item.active {
  background-color: white;
  font-weight: 700;
}

.tabs-wrapper {
  display: flex;
  justify-content: space-between;
}

.tab {
  display: none;
  background-color: white;
  padding-bottom: 30px;
  margin-bottom: 40px;
  margin-right: 20px;
  flex: 1;
}
.tab-wrapper {
  max-width: 1200px;
}
.tab.active {
  display: block;
}

.tab-list {
  display: block;
}
.tab-list-top {
  display: flex;
  justify-content: space-between;
  padding: 12px 30px;
  border-bottom: 1px solid #F2F2F2;
}

#module-response {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 80px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #00ff80;
  color: white;
}

.breadcrumbs {
  padding: 10px 30px;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
}
.breadcrumbs-item {
  display: inline-block;
  margin-right: 5px;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  transition: visibility 0.1s;
}
@media only screen and (max-width: 768px) {
  .modal {
    align-items: flex-start;
  }
}
.modal.open {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.modal-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-content {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  max-height: 100vh;
  height: auto;
  min-height: 100px;
  overflow-y: scroll;
  padding: 30px 40px;
  background-color: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s 0.3s;
}
@media screen and (max-height: 400px) {
  .modal-content {
    height: 100vh;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 992px) {
  .modal-content {
    width: 100vw;
  }
}
@media only screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
    min-height: 200px;
    height: auto;
    padding: 20px;
    overflow-y: scroll;
  }
}
.modal.open .modal-bg {
  opacity: 1;
}
.modal.open .modal-content {
  opacity: 1;
  transform: translateY(0);
}
.modal-close {
  width: 11px;
  height: 11px;
  background: url("../img/icons/icon-close.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal-close:hover {
  cursor: pointer;
}
.modal-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.modal-text {
  font-size: 16px;
  margin-bottom: 20px;
}
.modal-success {
  font-size: 2rem;
}
.modal-buttons {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  .modal-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.modal-buttons .btn {
  padding: 0 20px;
}
.modal-buttons .btn:first-child {
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .modal-buttons .btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.modal-buttons .btn-confirm {
  background-color: #109CF1;
}
.modal-buttons .btn-cancel {
  border: 1px solid black;
  background-color: #fff;
  color: black;
}

.modal-register .modal-content {
  max-width: 700px;
}
.modal-register .row {
  display: flex;
  border-bottom: 1px solid #F2F2F2;
  padding: 10px 0;
}
.modal-register .row-title {
  width: 320px;
  font-size: 15px;
  font-weight: 500;
}
.list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  padding: 15px 30px;
}
.list-top-panel {
  display: flex;
  align-items: center;
}
.list-top-panel-back {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}
.list-top-panel-back img {
  margin-right: 10px;
}
.list-top-panel-count {
  display: none;
}
.list-top-panel-count.show {
  display: flex;
}
.list-top-filter__select {
  border: none;
  color: #109CF1;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.list-table .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-table thead th {
  color: #848484;
  font-size: 13px;
  font-weight: 300;
  padding: 5px 0;
}
.list-table thead th:first-child {
  padding-left: 30px;
}
.list-table thead th:last-child {
  padding-right: 30px;
}
.list-table-row {
  border-bottom: 1px solid #F2F2F2;
}
.list-table-row td {
  height: 60px;
  font-size: 14px;
  padding: 5px 0;
}
.list-table-row td:first-child {
  padding-left: 30px;
}
.list-table-row td:last-child {
  padding-right: 30px;
}
.list-table-image {
  width: 55px;
  height: 55px;
  border: 1px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.list-table-image img {
  max-width: 90%;
  max-height: 90%;
}
.list-table-image__zoom {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 150px;
  height: 150px;
  border: 1px solid #F2F2F2;
  background-color: white;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15));
  display: none;
  align-items: center;
  justify-content: center;
}
.list-table-image__zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.list-table-image:hover {
  cursor: pointer;
}
.list-table-image:hover > .list-table-image__zoom {
  display: flex;
}
.list-table-icon {
  display: inline-block;
}
.list-table-icon:hover {
  cursor: pointer;
}
.list-table-icon:not(:last-child) {
  margin-right: 10px;
}
.list-table-icon img {
  width: 24px;
}

.label-action {
  display: inline-block;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
}
.label-action-add {
  background: #5BAC4F;
}
.label-action-edit {
  background: #EE821E;
}
.label-action-delete {
  background: #B71C1C;
}

.image-editor-item {
  margin-bottom: 30px;
}

.edit-thumb {
  display: inline-block;
  max-width: 500px;
}
.edit-thumb:hover {
  cursor: pointer;
}
.edit-thumb-container {
  display: flex;
  margin-bottom: 20px;
}
.edit-thumb-container__left {
  margin-right: 30px;
}

.gallery-grid {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  grid-gap: 25px;
  position: relative;
}
.gallery-grid-panel {
  display: none;
  align-items: center;
  position: absolute;
  top: -44px;
  right: 0;
}
.gallery-grid-panel.show {
  display: flex;
}
.gallery-grid-item {
  height: 250px;
  position: relative;
}
.gallery-grid-item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid-item__check {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.gallery-grid-item__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #F2F2F2;
}
.gallery-grid-item__panel .title {
  flex: 1;
}

.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #4E67EC !important;
}

.form-grid {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  grid-gap: 0 30px;
  align-items: flex-end;
}
.form-grid-2 {
  grid-template: auto/repeat(2, 1fr);
}
.form-grid-2 .form-group {
  width: 90%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}
.form-group.grid-2 {
  grid-column: span 2;
}
.form-group label, .form-group-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.form-group-label {
  margin-bottom: 10px;
}
.form-group.checkboxes {
  display: flex;
  flex-direction: row;
}
.form-group.checkboxes .checkbox-item {
  align-self: center;
}
.form-group.checkboxes .checkbox-item-add .checkmark {
  top: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 30px;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  font-size: 14px;
  padding-left: 14px;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #109CF1;
}

.form-select.multiple {
  height: auto;
}

.form-textarea {
  height: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 7px 14px;
}

.search-input {
  position: relative;
  width: 290px;
}
.search-input button {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.icons-grid .checkbox-item .checkmark {
  top: 50%;
  transform: translateY(-50%);
}

.checkbox-item {
  position: relative;
  padding-left: 26px;
  margin-bottom: 20px;
  cursor: pointer;
  color: black;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  user-select: none;
}
.checkbox-item a, .checkbox-item strong {
  font-family: "DM Sans Bold", sans-serif;
  color: black;
}
.checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-item .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #D5D5D5;
  border-radius: 4px;
}
.checkbox-item .checkmark.white {
  background-color: white;
}
.checkbox-item .checkmark.check-error {
  border-color: red;
}
.checkbox-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-item-add {
  padding-left: 18px;
}
.checkbox-item-add .checkmark {
  top: 8px;
}
.checkbox-item input:checked ~ .checkmark {
  background: #109CF1;
  border-color: #109CF1;
}
.checkbox-item input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-item-col {
  display: flex;
  flex-direction: column;
}

.switch-btn {
  display: flex;
  align-items: center;
}
.switch-btn input {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.switch-btn label {
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 16px;
  background: white;
  display: block;
  border-radius: 13px;
  position: relative;
  border: 1px solid #B8BBBC;
  margin-bottom: 0;
}
.switch-btn label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #B8BBBC;
  border-radius: 50%;
  transition: 0.3s;
}
.switch-btn input:checked + label {
  background: white;
}
.switch-btn input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.check-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.check-icon input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-icon-img {
  width: 180px;
  height: 100px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  margin-bottom: 7px;
}
.check-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.check-icon input:checked ~ .check-icon-img {
  border: 1px solid #1B1A24;
}

.radio-item {
  align-self: end;
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  cursor: pointer;
  color: black;
  font-size: 14px;
  line-height: 18px;
  user-select: none;
}
.radio-item a, .radio-item strong {
  font-family: "DM Sans Bold", sans-serif;
  color: black;
}
.radio-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-item .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #D5D5D5;
  border-radius: 50%;
}
.radio-item .checkmark.white {
  background-color: white;
}
.radio-item .checkmark.check-error {
  border-color: red;
}
.radio-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.radio-item input:checked ~ .checkmark {
  background: #109CF1;
  border-color: #109CF1;
}
.radio-item input:checked ~ .checkmark:after {
  display: block;
}
.radio-item-col {
  display: flex;
  flex-direction: column;
}

.switch-btn {
  display: flex;
  align-items: center;
}
.switch-btn input {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.switch-btn label {
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 16px;
  background: white;
  display: block;
  border-radius: 13px;
  position: relative;
  border: 1px solid #B8BBBC;
  margin-bottom: 0;
}
.switch-btn label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #B8BBBC;
  border-radius: 50%;
  transition: 0.3s;
}
.switch-btn input:checked + label {
  background: white;
}
.switch-btn input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.switch {
  cursor: pointer;
  text-indent: -9999px;
  width: 24px;
  height: 15px;
  background: grey;
  display: block;
  border-radius: 10px;
  position: relative;
  margin-right: 10px;
}
.switch:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 9px;
  transition: 0.1s;
}
.switch-input {
  height: 0;
  width: 0;
  visibility: hidden;
}

.switch-input:checked + .switch {
  background: green;
}

.switch-input:checked + .switch:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.checkbox-switch {
  display: flex;
  align-items: center;
}

.drop-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  background: #F2F2F2;
  border: 1px dashed #8D8C91;
  padding: 30px;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}
.drop-container.dragover {
  background: #ccc;
}
.drop-container .icon {
  margin-bottom: 20px;
}
.drop-container .text {
  color: #86868B;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
}
.drop-container .button {
  color: #86868B;
  border: 1px solid #86868B;
  border-radius: 4px;
  padding: 2px 14px;
}
.drop-container .button:hover {
  cursor: pointer;
}
.drop-container .button input {
  display: none;
}

.image-preview {
  display: none;
  flex-wrap: wrap;
}
.image-preview-item {
  width: 160px;
  height: 160px;
  border: 1px solid #F2F2F2;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-preview-item__delete {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  padding: 2px;
  transition: background-color 0.3s;
}
.image-preview-item__delete:hover {
  cursor: pointer;
  background-color: #e8e8e8;
}
.image-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.login-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(129.79% 125.81% at 50% 73.26%, rgba(242, 242, 242, 0) 0%, #C4C4C4 100%);
  transform: rotate(-180deg);
}
.login-form {
  display: flex;
  flex-direction: column;
  width: 470px;
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 50px 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}
.login-form-title {
  color: black;
  font-size: 30px;
  text-align: center;
  margin-bottom: 35px;
}
.login-form .form-group {
  height: 60px;
  margin-bottom: 10px;
  position: relative;
}
.login-form .form-group input {
  height: 100%;
  font-size: 18px;
  padding-left: 60px;
}
.login-form .form-group .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.login-form .btn {
  width: 140px;
  height: 40px;
  align-self: flex-end;
  background-color: black;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.login-remind {
  color: #C9C9C9;
  font-size: 14px;
}
.login-ip {
  font-size: 16px;
}
.login-error {
  color: red;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin-top: 40px;
}
.login-logo {
  position: absolute;
  bottom: 80px;
  z-index: 20;
}

.order-block .list-table {
  margin-bottom: 40px;
}
.order-block .list-table-row td {
  height: 44px;
}
.order-block-customer {
  background: #FAFCFC;
  border: 1px solid #F2F2F2;
  padding: 15px 20px;
  margin-bottom: 30px;
}
.order-block-customer .row {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin-bottom: 10px;
}
.order-block-customer .row .label {
  width: 220px;
  font-weight: 700;
}
.order-block .form-grid {
  margin-bottom: 0;
}
.order-block .form-grid .btn-row {
  align-items: flex-end;
}

.companies-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
}
.companies-catalogue-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.companies-catalogue-grid .checkbox-item {
  margin: 0;
}
