@charset "UTF-8";
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: #08082b;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #08082b;
  text-decoration: underline;
}

.d-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.d-flex {
  flex-wrap: wrap;
  justify-content: center;
}

h1,
h2 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 15px; /****Default******/
  font-weight: 400;
}

body {
  font: normal 125%/1.4 "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

td {
  font-size: 16px !important;
}

.sub-label {
  margin: 0;
  padding-right: 10px;
}

.link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

p {
  line-height: 1rem;
}

h1, h2, h3, h4, h5, td {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

p, a, span, label, div {
  font-family: "DM Sans", sans-serif;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.end {
  justify-content: end;
}

.login__title {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.subpoints__Titles {
  display: flex;
  justify-content: space-between;
}

.login__flex-box {
  justify-content: center;
}

/*---------------- 1stmanagement SideNav ----------------*/
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.nav-title {
  font-size: 18px;
}

.page-wrapper {
  height: 100vh;
}
.page-wrapper .sidebar-wrapper {
  transition: all 0.3s ease;
}
.page-wrapper .page-content {
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 20px;
  overflow-x: hidden;
}
.page-wrapper .page-content > div {
  padding: 20px 40px;
}
.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}
.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

.sidebar-wrapper {
  width: 275px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}
.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.sidebar-wrapper .sidebar-brand > a {
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}
.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
}
.sidebar-wrapper .sidebar-dropdown > a:after {
  transition: all 0.3s ease;
}
.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  transition: all 0.3s ease;
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge {
  float: right;
  margin-top: 0px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}
.sidebar-wrapper .sidebar-menu ul li a {
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 8px 30px 8px 20px;
}
.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}
.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}
.sidebar-wrapper .sidebar-menu ul li a span.label {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}
.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}
.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar-wrapper ul li a i {
  transition: all 0.3s ease;
}
.sidebar-wrapper .sidebar-search input.search-menu {
  transition: all 0.3s ease;
}
.sidebar-wrapper .sidebar-search .input-group-text {
  transition: all 0.3s ease;
}
.sidebar-wrapper .sidebar-search > div {
  padding: 10px 20px;
}
.sidebar-wrapper a {
  text-decoration: none;
}
.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}
.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}
.sidebar-wrapper .sidebar-header .user-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 60px;
  width: 60px;
}
.sidebar-wrapper .sidebar-header .user-info {
  float: left;
}
.sidebar-wrapper .sidebar-header .user-info > span {
  display: block;
}
.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}
.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}
.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

.user-info--no-pic {
  float: none !important;
  text-align: center;
}

#show-sidebar {
  transition: all 0.3s ease;
  position: fixed;
  left: 0;
  top: 10px;
  border-radius: 0 4px 4px 0px;
  width: 35px;
  transition-delay: 0.3s;
}

#close-sidebar {
  transition: all 0.3s ease;
}

.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
}
.page-wrapper.toggled #show-sidebar {
  left: -40px;
}

.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

.badge-hidden {
  display: none !important;
}

.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
}
.sidebar-footer > a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.sidebar-footer > a .notification {
  position: absolute;
  top: 0;
}

.sidebar-footer-form-logout {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  position: relative;
}
.sidebar-footer-form-logout button {
  background: none;
  height: 30px;
  border: none;
  color: #d5dbe6;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}
.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #525965;
}
::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.chiller-theme .sidebar-wrapper {
  background: #1e1e22;
}
.chiller-theme .sidebar-wrapper .sidebar-header {
  border-top: 1px solid #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-header .user-info {
  color: #b8bfce;
}
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role {
  color: #d5dbe6;
}
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status {
  color: #d5dbe6;
}
.chiller-theme .sidebar-wrapper .sidebar-search {
  border-top: 1px solid #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu {
  border-color: transparent;
  box-shadow: none;
  color: #d5dbe6;
  background: #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus + span {
  color: #71b6ff;
  text-shadow: 0px 0px 10px rgb(22, 201, 255);
}
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  box-shadow: none;
  color: #d5dbe6;
  background: #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-menu {
  border-top: 1px solid #3a3f48;
  text-align: center;
}
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a {
  color: #d5dbe6;
}
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i {
  background: #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a span {
  font-size: 16px;
}
.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover > a {
  color: #71b6ff;
}
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a {
  color: #b8bfce;
}
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: #71b6ff;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div {
  background: #3a3f48;
}
.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: #818896;
}
.chiller-theme .sidebar-wrapper .sidebar-brand {
  text-align: center;
}
.chiller-theme .sidebar-wrapper .sidebar-brand > a {
  color: #d5dbe6;
}
.chiller-theme .sidebar-wrapper .sidebar-brand > a:hover {
  color: #b8bfce;
}
.chiller-theme .sidebar-wrapper ul li:hover a i {
  color: #71b6ff;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before {
  color: #71b6ff;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}
.chiller-theme .sidebar-footer {
  background: #1e1e22;
  box-shadow: 0px -1px 5px #282c33;
  border-top: 1px solid #464a52;
}
.chiller-theme .sidebar-footer > a {
  color: #d5dbe6;
}
.chiller-theme .sidebar-footer > a:hover i {
  color: #b8bfce;
}
.chiller-theme .sidebar-footer > a:first-child {
  border-left: none;
}
.chiller-theme .sidebar-footer > a:last-child {
  border-right: none;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
  color: #bdbdbd;
}
.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content {
    padding-left: 300px;
  }
}
@keyframes stripe-slide {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.btn {
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  -moz-user-select: text;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
.btn:-moz-focus-inner {
  padding: 0;
  border: 0;
}
.btn--stripe {
  overflow: hidden;
  position: relative;
  padding: 16px 36px 22px;
  margin-bottom: 16px;
  margin-left: 4px;
  margin-right: 4px;
  border: 2px solid black;
  border-radius: 6px;
  transition: all 0.5s;
}
.btn--stripe:after {
  content: "";
  display: block;
  height: 7px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg, black, black 1px, transparent 2px, transparent 5px);
  backface-visibility: hidden;
  border-top: 1px solid black;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: 7px 7px;
}
.btn--stripe:hover:not(:disabled) {
  background-color: #6e61d1;
  border-color: white;
}
.btn--stripe:hover:not(:disabled):after {
  background-image: repeating-linear-gradient(45deg, white, white 1px, transparent 2px, transparent 5px);
  border-top: 1px solid black;
  animation: stripe-slide 12s infinite linear forwards;
}
.btn--large {
  width: 50%;
}
.btn--radius {
  border-radius: 36px;
}
.btn--primary {
  border-color: transparent;
  color: #ffffff;
  border-radius: 4px;
}
.btn--primary:disabled {
  cursor: default;
  color: rgb(223, 223, 223);
  background-color: #6e7fca, 0.6;
}
.btn--primary:not(:disabled) {
  cursor: pointer;
  background-color: #6e7fca;
}
.btn--primary:not(:disabled):hover {
  transition: background-color 0.4s;
  background-color: #6e61d1;
  text-decoration: none;
}
.btn--danger {
  border-color: transparent;
  color: #ffffff;
}
.btn--danger:disabled {
  cursor: default;
  color: rgb(223, 223, 223);
  background-color: rgb(206, 72, 72), 0.6;
}
.btn--danger:not(:disabled) {
  cursor: pointer;
  background-color: rgb(206, 72, 72);
}
.btn--danger:not(:disabled):hover {
  transition: background-color 0.4s;
  background-color: #970000;
  text-decoration: none;
}
.btn--square {
  border-radius: 3px;
}
.btn--grow {
  flex-grow: 1;
}

.control {
  display: block;
  position: relative;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 18px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 2px solid #d5dbe6;
  background: transparent;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  border: 2px solid #2d2d61;
}

.control input:checked ~ .control__indicator {
  border: 2px solid #2d2d61;
  background: #2d2d61;
}

.control input:disabled ~ .control__indicator {
  background: #000000;
  opacity: 0.6;
  pointer-events: none;
  border: 2px solid #ccc;
}

.control__indicator:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #2d2d61;
  opacity: 0.2;
  border: 2px solid #2d2d61;
}

/*----------------Datatable checkbox----------------*/
.table.dataTable thead th {
  padding: 10px 12px;
}

.sub-check {
  padding: 3px !important;
}

.login__form-remember {
  margin-top: 1rem;
}

/*********************** SECTION ****************************
   *              Things importe from test                *
   ************************************************************/
/*Contracts styles*/
#dt-customers_filter {
  display: none;
}

.inline-grid {
  text-align: end;
}

/* ---------------- */
.box-center {
  justify-content: center;
}

.table-hidden {
  display: none;
}

.searchbar {
  margin-bottom: 8px;
}

.dataTables_info {
  font-size: 18px;
}

.paginate_button.current {
  border-radius: 13px !important;
}

select {
  border-radius: 9px;
}

.dataTables_length select {
  height: 30px;
}

.datatable-table {
  padding-top: 10px;
}
.datatable-table .dt-checkboxes-select-all {
  width: 30px;
}
.datatable-table thead tr,
.datatable-table thead th {
  background-color: #08082b;
  height: 45px;
  border-bottom: none !important;
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-align: inherit;
}
.datatable-table thead th {
  border-top: 1px solid rgb(253, 253, 253);
}
.datatable-table thead th:first-child {
  border-left: none !important;
}
.datatable-table thead th:last-child {
  border-right: none !important;
}
.datatable-table tbody th,
.datatable-table tbody td {
  color: black;
  font-weight: 300;
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: none !important;
}
.datatable-table tbody th small,
.datatable-table tbody td small {
  color: #b3b3b3;
  font-weight: 300;
}
.datatable-table tbody tr {
  text-align: left;
}
.datatable-table tbody tr:first-child th:first-child,
.datatable-table tbody tr:first-child td:first-child {
  border-radius: 2px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.datatable-table tbody tr:first-child th:last-child,
.datatable-table tbody tr:first-child td:last-child {
  border-radius: 2px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.datatable-table tbody tr:last-child th:first-child,
.datatable-table tbody tr:last-child td:first-child {
  border-radius: 2px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.datatable-table tbody tr:last-child th:last-child,
.datatable-table tbody tr:last-child td:last-child {
  border-radius: 2px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.datatable-table tbody tr:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.datatable-table tbody tr:not(.spacer) {
  border-radius: 7px;
  overflow: hidden;
  transition: 0.3s all ease;
}
.datatable-table tbody tr:not(.spacer):hover {
  box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.1);
}
.datatable-table tbody tr th,
.datatable-table tbody tr td {
  padding: 12px;
  transition: 0.3s all ease;
}
.datatable-table tbody tr th a,
.datatable-table tbody tr td a {
  color: #b3b3b3;
}
.datatable-table tbody tr.active th,
.datatable-table tbody tr.active td, .datatable-table tbody tr:hover th,
.datatable-table tbody tr:hover td {
  color: #ffffff;
  background: #c7cbce;
}
.datatable-table tbody tr.active th a,
.datatable-table tbody tr.active td a, .datatable-table tbody tr:hover th a,
.datatable-table tbody tr:hover td a {
  color: #ffffff;
}

.table-customer-orders {
  padding: 11px;
}

.d-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.table--warning td {
  background-color: #f6f609 !important;
  color: black !important;
}

.table--danger td {
  background-color: indianred !important;
}

table {
  border-bottom: 1px solid black !important;
  z-index: 100000000000000;
}

.container-fluid {
  width: 90%;
}

/*-----------------------------Loading-------------------------------------------------*/
.loading-hidden {
  display: none !important;
}

.loader--full-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.loading {
  opacity: 0.5;
  z-index: 1040;
  background-color: #000;
  display: flex;
  justify-content: center;
}
.loading--fill {
  height: 100%;
  width: 100%;
  align-items: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Upload Area */
@keyframes slidDown {
  from {
    height: 28.125rem;
    /* 450px */
  }
  to {
    height: 35rem;
    /* 560px */
  }
}
@keyframes progressMove {
  from {
    width: 0%;
    background-color: transparent;
  }
  to {
    width: 100%;
    background-color: rgb(63, 134, 255);
  }
}
.upload-area {
  width: 100%;
  max-width: 25rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 10px 60px rgb(218, 229, 255);
  border: 2px solid rgb(171, 202, 255);
  border-radius: 24px;
  padding: 2rem 1.875rem 5rem 1.875rem;
  margin: 0.625rem;
  text-align: center;
}

.upload-area--open {
  animation: slidDown 500ms ease-in-out;
}

.upload-area__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
  font-size: 0.9375rem;
  color: rgb(196, 195, 196);
  margin-top: 0;
}

.upload-area__tooltip {
  position: relative;
  color: rgb(171, 202, 255);
  cursor: pointer;
  transition: color 300ms ease-in-out;
}
.upload-area__tooltip:hover {
  color: rgb(63, 134, 255);
}
.upload-area__tooltip:hover .upload-area__tooltip-data {
  opacity: 1;
  visibility: visible;
}

.upload-area__tooltip-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -125%);
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: rgb(255, 255, 255);
  color: rgb(63, 134, 255);
  border: 1px solid rgb(171, 202, 255);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: none 300ms ease-in-out;
  transition-property: opacity, visibility;
}

.upload-area__drop-zoon {
  position: relative;
  height: 11.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed rgb(171, 202, 255);
  border-radius: 15px;
  margin-top: 2.1875rem;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}
.upload-area__drop-zoon:hover {
  border-color: rgb(63, 134, 255);
}

.drop-zoon__icon {
  display: flex;
  font-size: 3.75rem;
  color: rgb(63, 134, 255);
  transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
  font-size: 0.9375rem;
  color: rgb(196, 195, 196);
  margin: 0;
  margin-top: 0.625rem;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon {
  opacity: 0.7;
}
.drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}
.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}

.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: rgb(171, 202, 255);
  z-index: 10;
}

.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon__file-input {
  display: none;
}

.drop-zoon--over {
  border-color: rgb(63, 134, 255);
}
.drop-zoon--over .drop-zoon__icon {
  opacity: 0.7;
}
.drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon--Uploaded .drop-zoon__icon {
  display: none;
}
.drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}

.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}

.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.file-details__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgb(196, 195, 196);
}

.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}

.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}

.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}

.uploaded-file__icon {
  font-size: 3.4375rem;
  color: rgb(63, 134, 255);
}

.uploaded-file__icon-text {
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.uploaded-file__info::before {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
  width: 100%;
}
.uploaded-file__info::after {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
  width: 100%;
  background-color: rgb(63, 134, 255);
}

.uploaded-file__info--active::after {
  animation: progressMove 800ms ease-in-out;
  animation-delay: 300ms;
}

.uploaded-file__name {
  width: 100%;
  max-width: 6.25rem;
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploaded-file__counter {
  font-size: 1rem;
  color: rgb(196, 195, 196);
}

.form {
  display: flex;
  flex-direction: column;
}
.form__row {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}
.form__column {
  display: flex;
  flex-direction: column;
}
.form__group {
  display: flex;
  flex-direction: column;
}
.form__group--fill-1 {
  flex: 0 10%;
}
.form__group--fill-2 {
  flex: 0 20%;
}
.form__group--fill-3 {
  flex: 0 30%;
}
.form__group--fill-4 {
  flex: 0 40%;
}
.form__group--fill-5 {
  flex: 0 50%;
}
.form__group--fill-6 {
  flex: 0 60%;
}
.form__group--fill-7 {
  flex: 0 70%;
}
.form__group--fill-8 {
  flex: 0 80%;
}
.form__group--fill-9 {
  flex: 0 90%;
}
.form__group--fill-10 {
  flex: 0 100%;
}
.form__group--grow {
  flex-grow: 1;
}
.form__group--center {
  margin: auto;
}
.form--gap {
  gap: 1rem;
}
.form textarea {
  border: 1px solid #b4b4b8;
  border-radius: 4px;
  padding: 1px;
}
.form textarea {
  height: 200px;
  resize: none;
}

@keyframes top-to-down {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 90vw;
  max-width: 700px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 5px;
  animation: top-to-down 0.5s;
  animation-fill-mode: forwards;
  padding-bottom: 25px;
}
.modal--scrollable {
  overflow-y: auto;
  max-height: 95vh;
}
.modal--height-full {
  height: 95vh;
}
.modal--width-50 {
  width: 50vw;
  max-width: 50vw;
}
.modal--width-60 {
  width: 60vw;
  max-width: 60vw;
}
.modal--width-70 {
  width: 70vw;
  max-width: 70vw;
}
.modal--width-80 {
  width: 80vw;
  max-width: 80vw;
}
.modal--width-full {
  width: 95vw;
  max-width: 95vw;
}
.modal__title {
  padding: 20px;
}
.modal__show {
  display: block !important;
}
.modal__overlay {
  display: none;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__content {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}
.modal__row {
  display: flex;
  flex-direction: row;
}
.modal__close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 0.5em;
  top: 0.3em;
}
.modal__close:hover, .modal__close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal__no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.modal__footer {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
  @keyframes top-to-down {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .modal {
    top: 50%;
    transform: translate(-50%, -50%);
    animation: top-to-down 0.5s;
    animation-fill-mode: forwards;
    width: 100vw;
  }
  .modal__close {
    font-size: 50px;
  }
}
.overflow-y--hidden {
  overflow-y: hidden;
}

.searchbar {
  width: 100%;
}
.searchbar__search {
  width: 100%;
  height: 38px;
  border-radius: 3px;
}

.error {
  z-index: 9999999999999;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  overflow: hidden;
  color: #415868;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.error--hidden {
  display: none;
}
.error__title {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin: 14px 0 5px 0;
}
.error__message {
  display: none;
}
.error__copy {
  position: absolute;
  height: 40px;
  bottom: 40px;
  left: 0;
  right: 0;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: none;
}
.error__body {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 4px 8px 12px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
  overflow: hidden;
  animation: show__error 0.7s ease-in-out;
  border: 1px solid black;
}
.error__body--hide {
  animation: hide__error 0.6s ease-in-out both;
}
.error__body img {
  margin-top: 24px;
}
.error__body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  margin: 0;
  padding: 0 30px;
}
.error__body .button {
  position: absolute;
  height: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
}

@keyframes show__error {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hide__error {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
input {
  width: 100%;
  height: 40px;
  border: 1px solid #b4b4b8;
  border-radius: 4px;
  padding: 1px;
}

.input--one-line {
  position: relative;
  margin-bottom: 45px;
}
.input--one-line input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 300px;
  border: none;
  border-bottom: 1px solid #757575;
}
.input--one-line input:focus {
  outline: none;
}
.input--one-line input:focus::-moz-placeholder {
  opacity: 1;
}
.input--one-line input:focus::placeholder {
  opacity: 1;
}
.input--one-line input::-moz-placeholder {
  opacity: 0;
}
.input--one-line input::placeholder {
  opacity: 0;
}
.input--one-line input:focus ~ label, .input--one-line input:valid:not([value=""]) ~ label {
  top: -20px;
  font-size: 14px;
  color: #5264ae;
}
.input--one-line label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.input--one-line .bar {
  position: relative;
  display: block;
  width: 300px;
}
.input--one-line .bar:before, .input--one-line .bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264ae;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.input--one-line .bar:before {
  left: 50%;
}
.input--one-line .bar:after {
  right: 50%;
}

/* active state */
input:focus ~ .bar:before,
input:focus ~ .bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.box-menu {
  display: flex;
  gap: 3%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 30px;
  flex: 1 0 21%;
  flex-wrap: wrap;
}

.menu-box-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 190px;
  background-color: #eff0f3;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 4px;
  box-shadow: 3px 4px 2px 0 rgba(5, 3, 26, 0.596);
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  list-style: none;
}
.menu-box-container:hover {
  color: #5694d6;
  text-decoration: none;
  list-style: none;
}
.menu-box-container i {
  font-size: 3rem;
  margin-bottom: 3%;
  color: rgb(121, 122, 141);
}
.menu-box-container span {
  font-size: 1.5rem;
  font-weight: 600;
}
.menu-box-container:hover i {
  color: #5694d6;
}

/* Define a class for the custom select style */
.select {
  /* Define the desired padding and margin to create more spacing */
  padding: 10px;
  margin: 10px 0;
  /* Customize the appearance of the select box */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  /* Add other styles as needed (e.g., colors, hover effects, etc.) */
}

/* Style the dropdown arrow (optional) */
.select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.menu__title--span {
  font-size: 12px;
}

.modal-xl {
  max-width: 90% !important;
}

.flex__row {
  gap: 10px;
}
.flex__row .form-group {
  flex-grow: 1;
}

.row__header {
  display: flex;
}
.row__header h3 {
  flex-grow: 1;
}

.max-width {
  width: 1000px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.help__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.help__text a {
  color: blue;
}

.upload-area {
  align-self: center;
}

.file-list {
  border-top: 3px solid #dee2e6;
  border-bottom: 3px solid #dee2e6;
  display: flex;
  flex-direction: column;
  align-self: center;
  min-width: 100%;
  gap: 10px;
}
.file-list__item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}
.file-list__item:not(:last-child) {
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.file-list__item p {
  margin-block-start: 0em;
  margin-block-end: 0em;
  flex-grow: 1;
  margin-top: auto;
  margin-bottom: auto;
}

.ks-status {
  display: flex;
  flex-direction: column;
}
.ks-status p {
  margin-top: auto;
}

.box {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.box__button-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  gap: 20px;
}

.report__button {
  border: 1px solid #5694d6;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-top: 8%;
  background-color: #5694d6 !important;
  color: white !important;
  border: 1px solid #5694d6 !important;
}
.report__button:disabled {
  cursor: default;
  background-color: rgba(73, 131, 238, 0.5254901961) !important;
  border: 1px solid rgba(73, 131, 238, 0.5254901961) !important;
  color: white !important;
}
.report__button:not(:disabled) {
  cursor: pointer;
}

.ks-views__title {
  font-size: 26px !important;
  font-weight: 700;
}

.ks-text-title {
  margin-top: 1rem;
}

.d-flex {
  display: flex;
}

.ks-container {
  font-size: 35px;
  background-color: rgba(8, 8, 43, 0.8431372549) !important;
  border-radius: 4px;
  width: 8em !important;
  height: 5.4em;
  color: white;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  max-width: 1180px;
  /* 1 */
  margin: 5px;
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}

.ks-status {
  font-size: 35px;
  background-color: rgba(8, 8, 43, 0.9098039216) !important;
  border-radius: 4px;
  width: 8em !important;
  height: 5.4em;
  color: white;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  position: relative;
  max-width: 1180px;
  /* 1 */
  margin: 5px;
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}
.ks-status .fa-smile {
  color: rgb(80, 201, 86);
}
.ks-status .fa-meh {
  color: rgb(255, 217, 0);
}
.ks-status .fa-frown {
  color: red;
}
.ks-status i {
  font-size: 3rem;
}

.ks-container i {
  color: rgb(248, 248, 248);
  font-size: 3rem !important;
}
.ks-container:hover {
  color: #08082b !important;
  background-color: rgb(190, 187, 187) !important;
}
.ks-container:hover > i::before {
  color: #08082b !important;
}

.ks-icon {
  margin-top: 1rem;
}

.ks-modal__information {
  font-size: 12px;
  margin-left: 30px;
}

.report-title {
  margin-bottom: 2%;
  width: 20%;
}

.ks-views__start-btn {
  padding: 10px;
}

.file-list__item {
  color: #4982ee;
}
.file-list__item .btn {
  width: 30px;
  height: 30px;
}

.file-list__item:hover {
  cursor: pointer;
}

.subpoints .sub-check {
  flex-direction: row-reverse;
  justify-content: start;
  gap: 10px;
}

.b2-title, .b3-title, .ks-manual-title {
  font-size: 26px;
}

.ks-views__start-btn {
  width: 40%;
  margin-top: 6%;
}

.login__form {
  margin: 0 auto !important;
  width: 50%;
}
.login__form input {
  height: 44px;
}
.login__form button {
  margin-top: 20px;
  height: 50px;
}
.login__form .login__form-remember {
  border: none !important;
}

.login__form-input {
  font-size: 13px !important;
}

.login__form form {
  gap: 20px;
}

.audit-menu {
  display: flex;
  gap: 3%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 30px;
  flex: 1 0 21%;
  /* explanation below */
  flex-wrap: wrap;
}

.modal__audit--style button {
  background-color: #6e7fca;
  border-radius: 4%;
  padding: 1%;
  width: 10%;
  color: white;
  transition: all 0.3s ease;
}

.modal__audit--style button:hover {
  background-color: #2d2d61;
  transition: all 0.3s ease;
}

.deviation__scheme {
  display: flex;
}

.modal__audit--style p {
  flex-grow: 1;
  font-size: 16px;
}

.audit-menu__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 190px;
  background-color: #eff0f3;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 4px;
  box-shadow: 3px 4px 2px 0 rgba(5, 3, 26, 0.596);
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  list-style: none;
}
.audit-menu__container:hover {
  color: #5694d6;
  text-decoration: none;
  list-style: none;
}
.audit-menu__container i {
  font-size: 3rem;
  margin-bottom: 3%;
  color: rgb(121, 122, 141);
}
.audit-menu__container span {
  font-size: 1.5rem;
  font-weight: 600;
}
.audit-menu__container:hover i {
  color: #5694d6;
}

/*********************** SECTION ****************************
   *                          Machinelist                         *
   ************************************************************/
.machinelist__create-btn {
  padding: 6px 8px;
  text-transform: none;
  margin-top: 20px;
}

#modal-machine {
  display: none !important;
}

/*********************** SECTION ****************************

  /*********************** SECTION ****************************
   *                          deviations                         *
   ************************************************************/
.deviations-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deviations__yearpicker input {
  height: 34px;
  border: 1px solid #929297;
  border-radius: 4px;
  padding: 3%;
}

.deviations__yearpicker input {
  height: 34px;
  border: 1px solid #929297;
  border-radius: 4px;
  padding: 3%;
}

.machine-list__form-row input {
  height: 34px;
  border: 1px solid #929297;
  border-radius: 4px;
  padding: 3%;
}

.form-control {
  height: 30px;
}

.audit-container {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.audit-container .files p {
  margin-left: 30px;
}

.files {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.files__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.files__buttons button {
  max-width: 200px;
}

.upload {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.machine-list__form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
  padding: 1px;
}

.machine-list--flex {
  display: flex;
  gap: 2%;
}

.machine-list__image {
  align-self: center;
  flex: 0 40%;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  justify-content: center;
  display: flex;
}
.machine-list__image img {
  width: 100%;
}

.create-datacard {
  padding: 2%;
  transition: all 0.3s ease;
  text-transform: none;
}

.machine-list__locations {
  padding: 4% !important;
  border-radius: 4px !important;
}

.machine-list__submit-machine {
  margin-top: 2% !important;
}

.machine-list__col1 {
  flex: 0 60%;
}

.machine-list__col1 label {
  font-size: 22px;
}

#dt-machine_filter {
  display: none;
}

.machinelist__create-btn {
  margin-bottom: 8px;
}

.machine-list__col1 input, .machine-list__col1 select {
  height: 50px !important;
  font-family: "Poppins", sans-serif;
}
.machine-list__col1 label {
  margin-top: 12px;
}
.machine-list__col1 input .form-control {
  font-family: "Poppins", sans-serif;
}

.contract-checkboxes {
  justify-content: center;
}

.ks-view__max-width {
  gap: 26px;
}

.contract-border {
  border: 1px solid black;
  background-color: rgba(255, 255, 255, 0.425);
  border-radius: 5px;
  display: flex;
  gap: 13px;
  padding: 18px;
}
.contract-border input[type=checkbox] {
  background-color: #fff;
  font: inherit;
  color: currentColor;
  width: 30px;
  height: 30px;
  border: 30px solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
}

.ks-container-checkbox-thead {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ks-title {
  font-weight: 800;
}

.ks-container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ks-container-checkbox-thead input,
.ks-container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ks-container-checkbox-thead input:checked ~ .checkmark,
.ks-container-checkbox input:checked ~ .checkmark {
  background-color: #4a99e2;
  border-color: #4a99e2;
}
.ks-container-checkbox-thead input:checked ~ .checkmark:after,
.ks-container-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.ks-container-checkbox-thead:hover input ~ .checkmark,
.ks-container-checkbox:hover input ~ .checkmark {
  background-color: none;
}
.ks-container-checkbox-thead .checkmark,
.ks-container-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 2px solid #d5dbe6;
  border-radius: 4px;
}
.ks-container-checkbox-thead .checkmark:hover,
.ks-container-checkbox .checkmark:hover {
  border-color: #71b6ff;
}
.ks-container-checkbox-thead .checkmark:after,
.ks-container-checkbox .checkmark:after {
  width: 5px;
  height: 12px;
  left: 50%;
  transform: translate(-40%, 0%) rotate(45deg);
  border: solid white;
  border-width: 0 3px 3px 0;
  content: "";
  position: absolute;
  display: none;
}

.user-list__container {
  display: flex;
  flex-direction: column;
  border: 1px solid #616161;
  background-color: #ffffff;
  margin: 0 18% 20px;
  padding: 8px;
  border-radius: 5px;
}

.user-list__h4, .user-list__h3 {
  border-bottom: 1px solid grey !important;
}

.userlist-form button {
  padding: 6px;
  border-radius: 3px;
}

.admin-register-btn {
  padding: 0.4%;
  transition: all 0.3s ease !important;
}

.admin-register-btn:hover {
  transition: all 0.3s ease;
  color: white;
}

.user-register {
  width: 50vw;
}
.user-register button {
  margin-top: 50px;
  margin-left: 0;
}
.user-register input {
  height: 44px;
}
.user-register label {
  margin-top: 12px;
}