@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap);@import url(https://fonts.googleapis.com/css?family=Heebo:400,500,700);:root {
  --primary-dark: rgb(244, 0, 90, 1);
  --primary: rgb(255, 30, 113, 1);
  --primary-70: rgba(255, 30, 113, .7);
  --primary-50: #66afe9;
  --primary-30: rgba(255, 30, 113, .3);
  --primary-10: rgba(255, 30, 113, .1);
  --logo: #011c7a;
  --sidebar-icon: white;
  --shades-20: #f6fbff;
  --shades-30: #f4f7fa;
  --shades-40: #eef1f4;
  --shades-50: #e3e7eb;
  --shades-60: #bacad6;
  --shades-70: #b3b9bf;
  --shades-80: #182d41;
  --shades-90: #3c4b5f;
  --border-color: rgba(149, 164, 165, .4);
  --inactive-color: #eaeff0;
}

html {
  font-size: 14px;
}

h1,
h2,
h3 {
  font-weight: 500 !important;
}

.w-sidebar {
  width: 16.5em;
}

.text-2xl {
  font-size: 1.25em;
}

.bg-20 {
  background-color: var(--shades-30);
}

.font-sans {
  font-family: 'Poppins', sans-serif;
}

.login-separator {
  position: relative;
  border-bottom: 2px solid #dae1e7;
  margin-bottom: 25px;
}

.login-separator span {
  display: block;
  position: relative;
  width: 30px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  bottom: -7px;
}

.indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  position: relative;
  background-color: #999;
  top: -1px;
  margin-right: 4px;
}

.indicator.indicator-stop {
  background-color: #d43535;
}

.indicator.indicator-moving {
  background-color: #2ecc71;
}

/* Buttons
---------------------------------------------------------------------------- */

.btn {
  font-weight: 500;
}

.btn-default,
.btn-link {
  font-size: .875em;
}

.btn-default {
  line-height: 1.3;
  padding: .6em 1em .5em 1em;
  border-radius: 3px;
}

.form-file-btn {
  padding-top: .8em;
}

.btn-large {
  height: auto;
  padding: 1em;
}

.btn-default:not([disabled]):not(.btn-disabled):focus,
.btn-default:not([disabled]):not(.btn-disabled):active {
  box-shadow: 0 0 0 2px var(--primary-50);
}

#katsana-id-button {
  background-color: #002aba;
}

#katsana-id-button:hover {
  background-color: var(--logo);
}

/* Card
---------------------------------------------------------------------------- */

.card {
  font-size: .875em;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  box-shadow: none;
}

/* Content
---------------------------------------------------------------------------- */

.content {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.h-header .dropdown-trigger.h-dropdown-trigger span svg {
  background-color: transparent;
  height: 1.25em;
  width: auto;
}

/* Checkbox
---------------------------------------------------------------------------- */

.checkbox {
  width: 1em;
  height: 1em;
}

.checkbox:focus,
.checkbox:active {
  box-shadow: 0 0 0 2px var(--primary-50);
}

div[dusk$="select-all-dropdown"] > div > button:focus {
  outline: none;
  box-shadow: none;
}

/* Dropdown
---------------------------------------------------------------------------- */

.trigger button:focus {
  outline: none;
  box-shadow: none;
  background-color: var(--shades-40);
}

.trigger button div {
  padding: .5em;
  border-radius: 3px;
}

div[direction$="rtl"],
div[direction$="ltr"] {
  border-radius: 3px;
  font-size: .875em;
  border: none;
}

div[direction$="rtl"] .text-base,
div[direction$="ltr"] .text-base {
  font-size: .875em !important;
}

.dropdown-trigger h3.text-base {
  font-size: .875em;
}

/* Form
---------------------------------------------------------------------------- */

form .card {
  padding: 1em 0em;
}

form .card .flex.border-b.border-40 {
  border: 0;
}

form .card .flex.border-b.border-40 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

form .card .flex.border-b.border-40 .px-8.py-6 {
  padding: 0em 1em;
}

form .card .flex.border-b.border-40 .px-8.py-6:nth-child(1) {
  margin-bottom: .5em;
  width: 100%;
}

form .card .flex.border-b.border-40 .px-8.py-6:nth-child(2) {
  margin-bottom: .5em;
  width: 100%;
}

@media screen and (min-width: 576px) {
  form .card .flex.border-b.border-40 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  form .card .flex.border-b.border-40 .px-8.py-6 {
    padding: .5em 2em;
  }

  form .card .flex.border-b.border-40 .px-8.py-6:nth-child(1) {
    margin-bottom: 0;
    width: 20%;
  }

  form .card .flex.border-b.border-40 .px-8.py-6:nth-child(2) {
    margin-bottom: 0;
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  form .card .flex.border-b.border-40 .px-8.py-6:nth-child(2) {
    width: 60%;
  }
}

.form-input,
.form-select,
.form-search,
.form-global-search {
  border-radius: 3px;
  border: 1px solid var(--border-color);
}

.form-global-search {
  width: 20em !important;
}

.form-search,
.form-global-search {
  border: 1px solid var(--border-color);
  box-shadow: none;
}

.form-input:focus,
.form-input:active,
.form-select:focus,
.form-select:active {
  background-color: var(--white);
  border: 1px solid var(--primary-50);
  border-radius: 3px;
  outline: 0;
  box-shadow: none;
}

.form-search:active,
.form-global-search:active,
.form-search:focus,
.form-global-search:focus {
  border: 0px;
  box-shadow: 0 0 0 2px var(--primary-50);
}

.form-input-bordered {
  border: 1px solid var(--border-color);
}

/* Modal Action
---------------------------------------------------------------------------- */

.action {
  font-size: .875em;
}

.action .flex.border-b.border-40 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  border: 0;
}

.action .flex.border-b.border-40 .px-8.py-6 {
  padding: .5em 2em;
}

.action .flex.border-b.border-40 .px-8.py-6:nth-child(1) {
  margin-bottom: 0;
  width: 20%;
}

.action .flex.border-b.border-40 .px-8.py-6:nth-child(2) {
  margin-bottom: 0;
  width: 80%;
}

/* Icon
---------------------------------------------------------------------------- */

svg[role$="presentation"] {
  height: .875em;
  width: auto;
}

svg[role$="presentation"][aria-labelledby$="x-circle"],
svg[role$="presentation"][aria-labelledby$="check-circle"] {
  height: 1.5em;
}

/* Details
---------------------------------------------------------------------------- */

.card .flex.border-b.border-40.-mx-6.px-6 .py-4 {
  padding: .5em 0;
}

/* Tables
---------------------------------------------------------------------------- */

.table th {
  height: 3em;
  border-bottom-width: 1px;
  padding: .5em .875em;
  vertical-align: middle;
  font-size: .875em;
  line-height: 1.25em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025em;
  color: var(--shades-80);
  border-color: var(--shades-50);
  background-color: var(--shades-30);
}

.table th span.cursor-pointer.inline-flex.items-center svg {
  height: 1em;
}

.table td {
  height: auto;
  min-width: 56px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: var(--shades-50);
  padding: .5em .875em;
  vertical-align: middle;
  font-weight: 400;
  color: var(--shades-80);
}

.table td a {
  font-weight: 500;
}

.table tr:hover td {
  background-color: transparent;
}

.font-bold {
  font-weight: 600;
}

.router-link-active {
  font-weight: 700 !important;
}

/* Tab 
---------------------------------------------------------------------------- */

.relationship-tabs-panel.card .tabs-wrap.border-b-2.border-40.w-full .tabs.flex.flex-row.overflow-x-auto {
  height: 62px;
}

.z-50.open {
  border: 1px solid var(--border-color);
}

.z-50.open .flex.justify-between.bg-40.text-90.p-4 {
  background-color: var(--shades-10);
  border-bottom: 1px solid var(--border-color);
}

.z-50.open .flex.justify-between.bg-40.text-90.p-4 h3 {
  font-weight: 600 !important;
}
