* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* --primary-color: #1f224f; */
  --primary-color: #282064;
  --secondary-color: #6c5ce7;
  /* --grey: #f2f3f8; */
  --grey: #eeeeee;
  --blackish-color: #404040;
  --box-shadow-float: 0px 17px 10px -10px rgb(0 0 0 / 40%);

  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg1: hsl(var(--hue), 10%, 10%);
  --fg2: hsl(var(--hue), 10%, 30%);
  --fg3: hsl(var(--hue), 10%, 70%);
  --primary: hsl(var(--hue), 90%, 55%);
  --primary-t: hsla(var(--hue), 90%, 55%, 0);
  --primary-t-hover: hsla(var(--hue), 90%, 55%, 0.15);
  --trans-dur1: 0.3s;
  --trans-dur2: 0.6s;
}

html {
  font-size: 9px;
}

body {
  font-size: 1.6rem !important;
  font-family: "Montserrat", cursive !important;
  height: 100%;
}

h1 {
  font-size: 4rem !important;
}

h2 {
  font-size: 3.2rem !important;
}

h3 {
  font-size: 2.8rem !important;
}

h4 {
  font-size: 2.4rem !important;
}

h5 {
  font-size: 2rem !important;
}

h6 {
  font-size: 1.6rem !important;
}

.btn {
  font-size: 1.6rem !important;
  border-radius: 5px !important;
}

input {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.container,
.container-fluid {
  padding: 0;
}

.datepicker-container {
  z-index: 10000 !important;
}

.hidden {
  visibility: hidden;
  height: 0;
  width: 0;
}

select {
  appearance: none !important;
  /*background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.9rem top 50% !important;
  background-size: 1em !important;*/
  cursor: pointer;
}

/*-----------------------------------------------------------Scroller----------------------------------------------------------------*/

/* width */

::-webkit-scrollbar {
  width: 0;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 199, 199);
}

/*-----------------------------------------------------------Empty----------------------------------------------------------------*/

.empty-state {
  width: 100%;
  /* margin: 40px auto; */
  margin: 1rem auto;
  background: #ffffff;
  /* box-shadow: 1px 2px 10px #e1e3ec; */
  border-radius: 4px;
}

.empty-state__content {
  /* padding: 48px; */
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.empty-state .empty-state__icon {
  width: 20rem;
  height: 20rem;
  display: flex;
  align-items: center;
  border-radius: 200px;
  justify-content: center;
  background-color: #f7fafc;
  box-shadow: 0px 2px 1px #e1e3ec;
}

.empty-state .empty-state__icon img {
  width: 17rem;
}

.empty-state__content .empty-state__message {
  /* color: #38a169; */
  color: #da3030;
  /* font-size: 1.5rem; */
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0.85rem;
}

.empty-state__content .empty-state__help {
  /* color: #a2a5b9; */
  color: #888a96;
  /* font-size: 0.875rem; */
  font-size: 1.2rem;
}

.empty-state__content .empty-state__help i {
  /* color: #a2a5b9; */
  color: #888a96;
  /* font-size: 0.875rem; */
  margin-top: 1rem;
  font-size: 3rem;
}

/*-----------------------------------------------------------Swal----------------------------------------------------------------*/

.swal2-popup {
  font-size: 1rem !important;
}

.swal2-title {
  font-size: 2rem !important;
}

.swal2-html-container {
  font-size: 1.6rem !important;
}

/*-----------------------------------------------------------Loader----------------------------------------------------------------*/

.loader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  display: block;
  background-color: #00000093;
}
.loading {
  position: absolute;
  /* width: 70px; */
  /* height: 70px; */
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loading i {
  font-size: 12rem;
  color: white;
  text-shadow: 2px 2px 5px red;
}

/*-----------------------------------------------------------Wrapper----------------------------------------------------------------*/

#wrapper {
  display: flex;
  height: -webkit-fill-available;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

#wrapper #mainPanel {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

#mainPanelBg {
  background: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  z-index: 0;
  box-shadow: 0px 0px 30px 8px #7c7c7c;
}

#mainPanelHeader,
#mainPanelBody,
#mainPanelFooter {
  z-index: 2;
}

#mainPanelHeader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 4rem;
}

#mainPanelFooter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 4rem;
}

#mainPanelBody {
  flex: 1;
  width: calc(100% - 8rem);
  margin: auto;
  background: white;
  border-radius: 2rem;
  border: 1px solid gainsboro;
  -webkit-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.15);
}

/*-----------------------------------------------------------Footer----------------------------------------------------------------*/

footer {
  background: var(--secondary-color);
  margin: 0 -4rem -2rem -4rem;
  padding: 1rem 2rem;
}

p.copyright {
  margin: 0;
  text-align: center;
  color: white;
}

p.copyright a {
  margin: 0;
  text-align: center;
  color: rgb(226, 226, 226);
  font-weight: 700;
}

/*-----------------------------------------------------------Header----------------------------------------------------------------*/

header {
  padding: 0 0;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

header #softHead {
  text-align: center;
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Josefin Sans";
  text-shadow: 3px 3px 2px #ff0000;
  flex: 1;
}


/*-----------------------------------------------------------Sidebar----------------------------------------------------------------*/

#sidebarPanel {
  position: relative;
}

#sidebar {
  background: var(--primary-color);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s;
  z-index: 10;
  position: relative;
  height: 100%;
  width: 25rem;
}

.sidebarUnderline {
  width: 90%;
  height: 1px;
  background: gainsboro;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

#sidebar .side-fix {
  position: relative;
  padding: 2rem 2rem;
}

#sidebar .logo {
  width: 20rem;
  height: 100%;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--box-shadow-float);
}

#sidebar .logo img {
  width: 100%;
  height: 100%;
}

#sidebar .logo .img span {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  background: #48f945;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 3px #48f945a2;
}

#sidebar .logo h3 {
  text-align: center;
  font-size: 1.6rem !important;
  font-style: italic;
  color: white;
}

/*---Log Det Start---*/

#sidebar .logDet {
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-align: center;
  padding-bottom: 0;
}

#sidebar .logDet .img {
  width: 12rem;
  height: 100%;
  padding: 1rem;
  margin: auto;
  border-radius: 50%;
  box-shadow: var(--box-shadow-float);
  position: relative;
}

#sidebar .logDet .img img {
  width: 100%;
  height: 100%;
}

#sidebar .logDet .img span {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  background: #48f945;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 3px #48f945a2;
}

#sidebar .logDet .textMain {
  text-align: center;
  font-size: 1.8rem !important;
  color: white;
  font-weight: 700;
  margin-top: 1rem;
}

#sidebar .logDet .textSec {
  text-align: center;
  font-size: 1.6rem !important;
  font-style: italic;
  color: white;
  margin-top: 0.5rem;
}

/*---Log Det End---*/

#sidebar ul.components {
  padding: 20px 0;
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100% - 29rem);
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

#sidebar ul li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

#sidebar ul li.active > a {
  font-weight: 500;
  background: #363b81 !important;
  border-left: 5px solid #13cd13;
  color: #13cd13;
}

#sidebar li a span {
  flex: 1;
}

#sidebar li a i {
  width: 40px;
  padding: 0 2.5rem;
}

#sidebar li a i:last-child {
  text-align: end;
  transition: all .3s ease;
}

.text-c {
  text-transform: capitalize;
}
.text-i {
  font-style: italic;
}

#sidebar ul li ul {
    background: #3c3193;
    text-align: right;
    padding-right: 2rem;
}

#sidebar ul li:has(ul.show) > a i:last-child {
    transform: rotate(90deg);
}


/*-----------------------------------------------------------Main Panel----------------------------------------------------------------*/

.contentHeader {
  padding: 1rem 2rem;
  border-bottom: 1px solid gainsboro;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.contentFooter {
  padding: 1rem 2rem;
}

.mainContent {
  padding: 2rem 2rem;
  overflow-y: auto;
  overflow-x: auto;
}

.title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

@media screen and (max-width: 765px) {
    .title {
      font-size: 2rem;
    }
    .contentHeader > .d-flex {
      display: block !important;
    }
}

/*---------------------------------------------------------Responsive-----------------------------------------------------------------------*/

.hamburger {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: #f83a14;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    box-shadow: var(--box-shadow-float);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    z-index: 99;
    transition: all 0.3s ease;
}

#sidebar.closed {
    overflow: hidden;
    transform: translateX(-100%);
}
.hamburger.closed {
    transform: translateX(-100%);
    transform: scale(-1, 1);
}

#sidebar .hamburger {
    position: absolute;
    right: -2rem;
    top: 2.5rem;
    display: none;
}

#mainPanel.closed {
    margin-left: -25rem;
}

@media screen and (max-width: 765px) {
  header #softHead {
    font-size: 2.5rem;
  }
  #sidebar {
    position: fixed;
  }
  #sidebar .hamburger {
    display: flex;
  }
  #mainPanel.closed {
    margin-left: 0;
  }
  #mainPanelBody {
    width: calc(100% - 3rem);
  }
  #mainPanelHeader {
    padding: 2rem 1.5rem;
  }
  #mainPanelFooter {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------Table-----------------------------------------------------------------------------*/

table {
    white-space: nowrap;
    width: 100% !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    top: auto !important;
    margin-top: 0 !important;
    line-height: 1.1em !important;
}

.dataTables_scrollBody thead tr[role="row"]{
    visibility: collapse !important;
}

td,
th {
  vertical-align: middle !important;
  /* white-space: nowrap; */
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px 10px !important;
}

table.dataTable tfoot th, table.dataTable tfoot td {
  padding: 10px 10px !important;
}

/*--------------------Switch-----------------------*/

.switch-input {
  display: none;
}
.switch-input,
.switch-input:after,
.switch-input:before,
.switch-input *,
.switch-input *:after,
.switch-input *:before,
.switch-input + .switch-btn {
  box-sizing: border-box;
}
.switch-input::-moz-selection,
.switch-input:after::-moz-selection,
.switch-input:before::-moz-selection,
.switch-input *::-moz-selection,
.switch-input *:after::-moz-selection,
.switch-input *:before::-moz-selection,
.switch-input + .switch-btn::-moz-selection {
  background: none;
}
.switch-input::selection,
.switch-input:after::selection,
.switch-input:before::selection,
.switch-input *::selection,
.switch-input *:after::selection,
.switch-input *:before::selection,
.switch-input + .switch-btn::selection {
  background: none;
}
.switch-input + .switch-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch-input + .switch-btn:after,
.switch-input + .switch-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}
.switch-input + .switch-btn:after {
  left: 0;
}
.switch-input + .switch-btn:before {
  display: none;
}
.switch-input:checked + .switch-btn:after {
  left: 50%;
}

.switch-input + .switch-btn {
  background: #ff7070;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
  border: 1px solid #e8eae9;
}
.switch-input + .switch-btn:after {
  border-radius: 2em;
  background: #fbfbfb;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}
.switch-input + .switch-btn:hover:after {
  will-change: padding;
}
.switch-input + .switch-btn:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}
.switch-input + .switch-btn:active:after {
  padding-right: 0.8em;
}
.switch-input:checked + .switch-btn {
  background: #86d993;
}
.switch-input:checked + .switch-btn:active {
  box-shadow: none;
}
.switch-input:checked + .switch-btn:active:after {
  margin-left: -0.8em;
}

/*-----------------------------------------------------------Table----------------------------------------------------------------*/

select[name="table_length"] {
  width: 7rem;
  border: 1px solid gainsboro;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
select[name="table_length"]:focus {
  outline: none;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
  border: 1px solid gainsboro;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.dataTables_wrapper .dataTables_paginate {
  margin-top: 2rem;
}
.dataTables_wrapper .dataTables_info {
  margin-top: 2rem;
}

/*-----------------------------------------------------------Responsive----------------------------------------------------------------*/

.btn {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn:hover,
.btn:focus,
.btn:active {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn:active {
  transform: scale(0.8);
}

.accentBtn {
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  animation: all 0.3s ease;
}

.accentBtn:hover,
.accentBtn:focus,
.accentBtn:active {
  background: var(--secondary-color);
  color: white;
}

.iconBtn {
  background: rgb(126, 171, 255);
  color: white;
  padding: 0.5rem 1.5rem;
  animation: all 0.3s ease;
  border-radius: 50% !important;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem !important;
}

.iconBtn:hover,
.iconBtn:focus,
.iconBtn:active {
  background: rgb(126, 171, 255);
  color: white;
}

.criticalBtn {
  background: rgb(255, 100, 100);
  color: white;
  padding: 0.5rem 1.5rem;
  animation: all 0.3s ease;
}

.criticalBtn:hover,
.criticalBtn:focus,
.criticalBtn:active {
  background: rgb(255, 100, 100);
  color: white;
}

.modal-dialog {
  -webkit-animation: flipInX 1s ease;
  top: 30%;
  transform: translateY(-30%) !important;
  box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 15%);
  border-radius: 2rem;
  overflow: hidden;
  border: none;
}

.modal-content {
  border-radius: 2rem;
  border: none;
}

.modal-header {
  padding: 1.5rem 2rem;
  background: var(--secondary-color);
  color: white;
  border: 1px solid rgb(126, 171, 255);
  border-bottom: 0;
  border-radius: 2rem 2rem 0 0;
}

.modal-footer {
  padding: 1rem 2rem;
}

.modal-body {
  padding: 2rem;
}

/*-----------------------------------------------------------Form Inputs----------------------------------------------------------------*/

/**********Switch--------------------------------------------------*/

.uk-switch {
  position: relative;
  display: block;
  height: 2rem;
  width: 4rem;
}

.uk-switch input {
  display: none;
}

.uk-switch-slider {
  background-color: rgba(0, 0, 0, 0.22);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.2s;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
}

.uk-switch-slider:before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: calc(2rem - 4px);
  height: calc(2rem - 4px);
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}

/* Pointer active animation */
.uk-switch input:checked + .uk-switch-slider:before {
  transform: translateX(24px);
  left: -2px;
}

.uk-switch-slider.uk-switch-on-off {
  background-color: #f0506e;
}
.uk-switch input:checked + .uk-switch-slider.uk-switch-on-off {
  background-color: #32d296 !important;
}

/* Inverse Modifier - affects only default */
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
  background-color: rgba(255, 255, 255, 0.22);
}

/**********Form--------------------------------------------------*/

textarea {
  margin: 0;
}

::file-selector-button {
  display: none;
}

.form-input-control {
  position: relative;
}
.form-input-control.error {
  margin-bottom: 0.5rem;
}

.form-input-control .input__field {
  padding: 1.8rem 0px;
  position: relative;
}
.form-input-control.hidden .input__field {
  padding: 0 0px;
}
.form-input-control .input__field label {
  position: absolute;
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 1.4rem;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  top: 0.8rem;
  left: 0;
}
.form-input-control .input__field label span {
  color: var(--color-text-sec);
}
.form-input-control .form__input__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--secondary-color);
  transform: translateY(-50%);
  z-index: 9;
}
.form-input-control:has(textarea) .form__input__icon {
  top: 3.7rem;
}
.form-input-control:has(textarea) .input__field {
  padding-bottom: 1.1rem;
}
.form-input-control i {
  font-size: 1.4rem;
}

.form-input-control .form__input {
  border: 1px solid gainsboro;
  background: #f1f1f1;
  padding: 1rem 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  width: 100%;
  outline: none;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #424242;
}

.form-input-control > i {
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.form-input-control:has(textarea) > i {
  top: 3.7rem;
}

.form-input-control small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 1rem;
  font-size: 1.2rem !important;
  visibility: hidden;
}
.form-input-control small::first-letter {
  text-transform: capitalize;
}
.form-input-control.error .input__field .form__input {
  border-color: #e74c3c;
}
.form-input-control.error i.fa-exclamation-circle {
  color: #e74c3c;
  visibility: visible;
}
.form-input-control.error small {
  visibility: visible;
}
.form-input-control.success .input__field .form__input {
  border-color: #2ecc71;
}
.form-input-control.success i.fa-check-circle {
  color: #2ecc71;
  visibility: visible;
}

/*-----------------------Checkbox---------------------------*/

.form-input-control .checkbox__field {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, calc(50% - 0.5rem));
}

.form-input-control .checkbox__label {
  position: relative !important;
  padding: 1rem !important;
  transform: none !important;
  pointer-events: all !important;
  top: 0 !important;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
  background: #f1f1f1;
  border: 1px solid gainsboro;
  width: 100%;
  border-radius: 0.5rem;
  margin: 0;
}

.form-input-control .checkbox__label .label {
  flex: 1;
}

.form-input-control .checkbox__label input[type="checkbox"],
.form-input-control .checkbox__label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-input-control .checkbox__label input[type="checkbox"] ~ .checkmark,
.form-input-control .checkbox__label input[type="radio"] ~ .checkmark {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 2px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(99, 99, 99);
}

.form-input-control .checkbox__label input[type="checkbox"] ~ .checkmark::after,
.form-input-control .checkbox__label input[type="radio"] ~ .checkmark::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.form-input-control
  .checkbox__label
  input[type="checkbox"]:checked
  ~ .checkmark::after,
.form-input-control
  .checkbox__label
  input[type="radio"]:checked
  ~ .checkmark::after {
  background: rgb(104 70 241);
}

/*--------------------Select Two---------------------------------*/

.select2-container {
  border: 1px solid gainsboro;
  background: #f1f1f1;
  padding: 1rem 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  width: 100%;
  outline: none;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #424242;
  width: 100% !important;
}

body > .select2-container {
  width: auto !important;
}

.form-input-control.error .select2-container {
  border-color: #e74c3c;
}

.select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
  border-radius: 0;
  height: auto;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: inherit;
  padding: 0;
}

.select2-container--open .select2-dropdown--below {
  top: -0.5rem;
  left: -0.1rem;
}

.select2-dropdown {
  border: 1px solid gainsboro;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered:focus-visible {
  outline: none !important;
}

.select2-selection__arrow {
  display: none;
}

/*----------------------------------------------------------Styles-------------------------------------------------------------*/

.heading {
  margin-bottom: 2rem;
  color: #e70303;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.heading span {
  text-decoration: underline;
}

.heading i {
  font-size: 2rem;
}

.gradient-custom {
  /* fallback for old browsers */
  background: #f6d365;

  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(
    to right bottom,
    rgba(246, 211, 101, 1),
    rgba(253, 160, 133, 1)
  );

  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: linear-gradient(
    to right bottom,
    rgba(246, 211, 101, 1),
    rgba(253, 160, 133, 1)
  );
}

p.icon-text {
  display: flex;
  gap: 1rem;
  align-items: center;
}

p.icon-text i {
  width: 2rem;
}

/*-----------------------------------------------------------Receipt----------------------------------------------------------------*/

.receiptCard {
  border: 1px solid gray;
  padding: 2rem 2rem;
  margin: auto;
  width: 100%;
}

.receiptHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.receiptHeader .left {
  position: relative;
  padding-left: 30px;
}

.receiptHeader .left .logo {
  width: 10rem;
  height: auto;
  border: 2px solid red;
}

.receiptHeader .left .logo img {
  width: 100%;
  height: 100%;
}

.receiptHeader .left .textMain {
  color: red;
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
  margin-top: 1rem;
}

.receiptHeader .left .textSec {
  color: black;
}

.receiptHeader .left .line {
  position: absolute;
  height: 100%;
  width: 4px;
}

.receiptHeader .left .line1 {
  background: rgb(9, 0, 139);
  left: 0;
}

.receiptHeader .left .line2 {
  background: rgb(204, 82, 0);
  left: 8px;
}

.receiptHeader .left .line3 {
  background: rgb(9, 0, 139);
  left: 16px;
}

.receiptHeader .right {
  width: 30%;
}

.receiptBody {
  padding: 2rem 0;
}

.receiptCard .det {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  align-items: flex-end;
}

.receiptCard .det .title {
  font-size: 1.8rem;
  display: inline;
}

.receiptCard .det .text {
  font-size: 1.8rem;
  flex: 1;
  position: relative;
  padding: 0 10px;
}

.receiptCard .det .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: black;
}

.receiptFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.receiptFooter .left p {
  font-weight: 700;
}

.receiptFooter .right p {
  font-weight: 700;
  text-align: center;
}

.receiptFooter .right p.sign {
  height: 30px;
}

.receiptFooter .right p span {
  color: red;
}

.receiptSeperator {
  margin: 3rem 0;
}


/*-----------------------------------------------------------Tree----------------------------------------------------------------*/


    /*.tree {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .tree ul {
        padding-top: 2rem;
        position: relative;
        transition: .5s;
        margin: auto;
        width: max-content;
    }
    .tree li {
        display: inline-table;
        text-align: center;
        list-style-type: none;
        position: relative;
        padding: 1rem .5rem;
        transition: .5s;
    }
    .tree li::before, .tree li::after {
        content: "";
        position: absolute;
        top: 0;
        right: 50%;
        border-top: 1px solid #4fde5a;
        width: 51%;
        height: 1rem;
    }
    .tree li::after {
        right: auto;
        left: 50%;
        border-left: 1px solid #4fde5a;
    }
    .tree li:only-child::after, .tree li:only-child::before {
        display: none;
    }
    .tree li:only-child {
        padding-top: 0;
    }
    .tree li:first-child:before, .tree li:last-child::after {
        border: 0 none
    }
    .tree li:last-child::before {
        border-right: 1px solid #4fde5a;
        border-radius: 0px 5px 0px 0px;
    }
    .tree li:last-child::after {
        border-radius: 5px 0px 0px 0px;
    }
    .tree ul ul:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        border-left: 1px solid #4fde5a;
        width: 0;
        height: 2rem;
    }
    .tree a {
        display: inline-grid;
        border-radius: 5px;
        text-decoration-line: none;
        transition: .5s;
    }
    .tree a img {
        width: 2rem;
        height: 2rem;
        margin-bottom: 0 !important;
        border-radius: 50%;
        margin: auto;
    }
    .tree a span {
        border-radius: 5px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }*/
    
    
    
    .tree {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .tree ul {
        padding-top: 2rem;
        position: relative;
        transition: .5s;
        margin: auto;
        width: max-content;
    }
    .tree li {
        display: inline-table;
        text-align: center;
        list-style-type: none;
        position: relative;
        padding: 1rem .5rem;
        transition: .5s;
        cursor: pointer;
    }
    .tree li::before, .tree li::after {
        content: "";
        position: absolute;
        top: 0;
        right: 50%;
        border-top: 1px solid #4fde5a;
        width: 51%;
        height: 1rem;
    }
    .tree li::after {
        right: auto;
        left: 50%;
        border-left: 1px solid #4fde5a;
    }
    .tree li:only-child::after, .tree li:only-child::before {
        display: none;
    }
    .tree li:only-child {
        padding-top: 0;
    }
    .tree li:first-child:before, .tree li:last-child::after {
        border: 0 none
    }
    .tree li:last-child::before {
        border-right: 1px solid #4fde5a;
        border-radius: 0px 5px 0px 0px;
    }
    .tree li:last-child::after {
        border-radius: 5px 0px 0px 0px;
    }
    .tree ul ul:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        border-left: 1px solid #4fde5a;
        width: 0;
        height: 2rem;
    }
    .tree a {
        position: relative;
        display: inline-grid;
        border-radius: 5px;
        text-decoration-line: none;
        transition: .5s;
    }
    .tree a img {
        width: 2rem;
        height: 2rem;
        margin-bottom: 0 !important;
        border-radius: 50%;
        margin: auto;
    }
    .tree a span {
        border-radius: 5px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }
    
    .tree li a:hover .branch-det {
        display: block;
    }
    .branch-det {
        display: none;
        position: absolute;
        left: 100%;
        top: 100%;
        z-index: 9;
    }
    .tree a table {
        border-color: black;
        box-shadow: var(--box-shadow-float);
    }
    .tree a table th {
        padding: 2px 5px;
        background: white;
        font-size: 1.4rem;
    }


/*---------Annimation-----------*/

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}


/*-----------------------------------------------------------Responsive----------------------------------------------------------------*/

@media screen and (max-width: 1700px) {
  html {
    font-size: 8px;
  }
}