.row {
  margin-left: -5px;
  margin-right: -5px;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

/* colunas */
.col {
  display: inline-block;
  vertical-align: top;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  margin-right: -4px;
  *zoom: 1;
  *display: inline;
}

.col-1 {
  width: 8.333%;
}

.col-1:last-child {
  margin-right: 0;
}

.col-2 {
  width: 16.6666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333%;
}

.col-5 {
  width: 41.6666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333%;
}

.col-8 {
  width: 66.6666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333%;
}

.col-11 {
  width: 91.666%;
}

.col-12 {
  width: 100%;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding: 2px;
  float: left;
  min-height: 100%;
}

.col-2 .row {
  margin: -2px;
}

.col-4 .row {
  margin: -2px;
}

.col-6 .row {
  margin: -2px;
}

.col-8 .row {
  margin: -2px;
}

@media screen and (max-width: 768px) {
  .row {
    margin-top: -0.5%;
    margin-bottom: -0.5%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100% !important;
    margin-bottom: 0.5%;
  }
}

@media screen and (max-width: 640px) {
  .row {
    margin-top: -0.5%;
    margin-bottom: -0.5%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    margin-bottom: 0.5%;
  }

  .modal_body > .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    margin-bottom: 0.5%;
  }
}

@media screen and (max-width: 600px) {
  .row {
    margin-top: -0.5%;
    margin-bottom: -0.5%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    margin-bottom: 0.5%;
  }
}

@media screen and (max-width: 480px) {
  .row {
    margin-top: -0.5%;
    margin-bottom: -0.5%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    margin-bottom: 0.5%;
  }
}

@media screen and (max-width: 320px) {
  .row {
    margin-top: -0.5%;
    margin-bottom: -0.5%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    margin-bottom: 2%;
  }
}

/* FORM ELEMENTS */

.form-control {
  width: 100%;
  padding: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 54px;
}

label,
.form-control label,
.profile-info-item label {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--font-color);
}

.form-control input,
.form-control select,
.form-control textarea,
.fake-input {
  width: 100%;
  height: 32px;
  min-height: 32px;
  border: 1px solid var(--input-border-300);
  font-size: 0.8rem;
  padding: 6px;
  border-radius: 6px;
  color: var(--font-color);
  font-weight: 400;
  background: var(--background-color-200);
}

.no-border {
  border: none;
  background: transparent !important;
}

.label-text {
  width: 100%;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  padding: 6px;
  color: var(--font-color);
  font-weight: 400;
  border-bottom: 1px solid var(--input-border-300);
}
/*.fake-input {
    font-size: 0.8rem;
}*/

/* SELECT */
.form-control select {
  padding: 5px 4px;
}

.select {
  position: relative;
  width: 100%;
  border: 1px solid var(--input-border-300);
  border-radius: 6px;
}
.select-focus {
  border: 1px solid var(--info-color) !important;
}

.select select {
  display: none;
}

.select-selected {
  background-color: var(--background-color-200);
  font-size: 0.8rem;
}

.select-selected:after {
  position: absolute;
  content: "\ea67";
  font-family: "Icofont";
  top: 10px;
  right: 20px;
  width: 0;
  height: 0;
  color: var(--mute-color-100);
}

.select-selected.select-arrow-active:after {
  content: "\ea6a";
  font-family: "Icofont";
  top: 7px;
}

.select-items div,
.select-selected {
  color: var(--font-color);
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
  border-radius: 6px;
}

.select-items {
  position: absolute;
  background-color: var(--background-color-200);
  border: 1px solid var(--input-border-300);
  font-size: 0.8rem;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  /* max-height: calc(100vh / 2);*/
  max-height: 315px;
  overflow-y: scroll;
}
.select-items::-webkit-scrollbar,
.select-items::-webkit-scrollbar-track {
  background-color: var(--background-color-200);
  width: 5px;
}
.select-items::-webkit-scrollbar-thumb {
  background-color: var(--mute-color-100);
  width: 5px;
  border-radius: 5px;
}

.select-items::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-color);
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.06);
  background-color: var(--theme-color);
  color: var(--background-color-200);
}

.form-control textarea {
  resize: none;
}

.form-control input[type="radio"],
.form-control input[type="checkbox"] {
  display: none;
  width: auto !important;
}

.form-control label {
  cursor: pointer;
  display: flex;
  gap: 24px;
}

.form-control input[type="radio"] + label:before,
.form-control input[type="checkbox"] + label:before {
  border: 1px solid var(--info-color);
  content: "\00a0";
  display: inline-block;
  font: 16px/1em sans-serif;
  height: 16px;
  margin: 0 0.25em 0 0;
  padding: 0;
  vertical-align: top;
  width: 16px;
  border-radius: 4px;
}

.form-control input[type="radio"]:checked + label:before,
.form-control input[type="checkbox"]:checked + label:before {
  background: var(--mute-color-100);
  color: var(--background-color-200);
  content: "\2713";
  text-align: center;
}

.form-control input[type="radio"]:checked + label:after,
.form-control input[type="checkbox"]:checked + label:after {
  font-weight: bold;
}

.form-control span,
.profile-info-item span {
  width: 100%;
  font-size: 0.8rem;
  padding: 4px 2px;
  text-align: left;
}

.form-control input::placeholder,
.form-control select::placeholder,
.form-control textarea::placeholder {
  color: var(--mute-color-100);
}

.form-control input::-webkit-input-placeholder,
.form-control select::-webkit-input-placeholder,
.form-control textarea::-webkit-input-placeholder {
  color: var(--mute-color-100);
}

.form-control input:-ms-input-placeholder,
.form-control select:-ms-input-placeholder,
.form-control textarea:-ms-input-placeholder {
  color: var(--mute-color-100);
}

.form-control input[type="text"]:read-only,
.form-control textarea:read-only,
.form-control select:disabled {
  background-color: var(--background-color-300);
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--info-color) !important;
  box-shadow: 0 0 1.6px 0.1px var(--blue-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--input-border-300);
  -webkit-text-fill-color: var(--font-color);
  -webkit-box-shadow: 0 0 0px 1000px var(--background-color-200) inset;
  transition: background-color 5000s ease-in-out 0s;
}

input.mask-money,
input.mask-float {
  text-align: right;
}

.checkbox-v-label,
.checkbox-h-label,
.checkbox-t-label {
  padding: 5px;
  cursor: pointer;
  font-weight: 600;
  color: var(--font-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
}

.checkbox-v-label {
  height: 52px;
  font-size: 0.7rem !important;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.checkbox-h-label {
  height: 34px;
  font-size: 0.8rem !important;
  margin-top: 18px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
}

.checkbox-t-label {
  font-size: 0.8rem !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
}
/* Hide the browser's default checkbox */
.checkbox-v-label input,
.checkbox-h-label input,
.checkbox-t-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  /* position: absolute;*/
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  min-height: 24px;
  min-width: 24px;
  max-height: 24px;
  max-width: 24px;
  margin-right: 8px;
  border-radius: 4px;
  padding: 0 !important;
  background-color: var(--background-color-200);
  border: 1px solid var(--input-border-300);
}

.checkbox-v-label .checkmark,
.checkbox-h-label .checkmark {
  /* margin-left: 20px;*/
  border-radius: 6px;
}
.checkbox-t-label .checkmark {
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-v-label:hover input ~ .checkmark,
.checkbox-h-label:hover input ~ .checkmark,
.checkbox-t-label:hover input ~ .checkmark {
  border: 1px solid var(--info-color);
}

/* When the checkbox is checked, add a blue background */
.checkbox-v-label input:checked ~ .checkmark,
.checkbox-h-label input:checked ~ .checkmark,
.checkbox-t-label input:checked ~ .checkmark {
  background-color: var(--background-color-200);
  border: 1px solid var(--theme-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: relative;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-v-label input:checked ~ .checkmark:after,
.checkbox-h-label input:checked ~ .checkmark:after,
.checkbox-t-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-v-label .checkmark:after,
.checkbox-h-label .checkmark:after,
.checkbox-t-label .checkmark:after {
  left: 5px;
  top: 0;
  width: 8px;
  height: 12px;
  border: solid var(--theme-color);
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*   RADIO */
.radio-h-label {
  padding: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--font-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.radio-v-label {
  padding: 5px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--font-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

/* Hide the browser's default radio button */
.radio-h-label input,
.radio-v-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  min-height: 20px;
  min-width: 20px;
  background-color: var(--background-color-200);
  border-radius: 50%;
  border: 1px solid var(--input-border-300);
}

/* On mouse-over, add a grey background color */
.radio-h-label:hover input ~ .radiomark,
.radio-v-label:hover input ~ .radiomark {
  border: 1px solid var(--info-color);
}

/* When the radio button is checked, add a blue background */
.radio-h-label input:checked ~ .radiomark,
.radio-v-label input:checked ~ .radiomark {
  background-color: var(--background-color-200);
  border: 1px solid var(--theme-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: relative;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-h-label input:checked ~ .radiomark:after,
.radio-v-label input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-h-label .radiomark:after,
.radio-v-label .radiomark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color);
}

.checkbox-h-label.list,
.radio-h-label.list,
.checkbox-t-label {
  font-size: 0.8rem !important;
  text-transform: none;
  font-weight: 400;
}
.list > .checkmark {
  min-height: 20px;
  min-width: 20px;
  width: 20px;
  height: 20px;
}
.list > .checkmark:after {
  left: 4px;
  top: 2px;
  width: 6px;
  height: 8px;
}
.radiolist > .radio-h-label.list {
  font-size: 0.8rem !important;
}

/* switch */
.switch-label-v,
.switch-label-h {
  padding: 2px;
  cursor: pointer;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--font-color);
  display: flex;
  align-items: center;
}
.switch-label-v {
  flex-direction: column;
  justify-content: space-between;
}

.switch-label-h {
  gap: 12px;
}

.switch {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.switch + span {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.switch--shadow + span {
  padding: 2px;
  width: 42px;
  height: 22px;
  background-color: var(--background-color-300);
  border-radius: 20px;
  border: 1px solid var(--input-border-200);
}

.switch-label-v .switch--shadow + span {
  margin-top: 8px;
}

.switch--shadow + span:before,
.switch--shadow + span:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}

.switch--shadow + span:before {
  right: 1px;
  background-color: var(--background-color-300);
  border-radius: 20px;
  transition: all 0.4s;
}

.switch--shadow + span:after {
  width: 18px;
  height: 18px;
  left: 2px;
  background-color: var(--background-color-100);
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
}

.switch--shadow:checked + span:before {
  background-color: var(--theme-color);
}

.switch--shadow:checked + span:after {
  transform: translateX(20px);
}

.form-control .input-file {
  width: 100%;
  border: 1px solid var(--input-border-300);
  font-size: 0.8rem;
  height: 26px;
  padding: 7px 3px 2px 8px;
  border-radius: 4px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-file label:hover ~ .input-file {
  border: 1px solid var(--info-color);
}

.form-control input[type="file"] {
  display: none;
}

.file-container {
  max-height: 54px;
  overflow: hidden;
}

.filebox {
  background-color: var(--background-color-200) !important;
  padding: 2px;
  width: 95%;
  font-size: 0.9em;
}

.form-control .input-file.file-focus {
  border: 1px solid var(--info-color);
  box-shadow: 0 0 1.8px 0.1px var(--info-color);
}

input.disabled {
  pointer-events: none;
  background-color: var(--default) !important;
}

.form-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* BUTTONS */
.btn,
.btn-block {
  /* min-width: 186px !important;*/
  padding: 6px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  /* display: flex;
     align-items: center;   */
  gap: 8px;
  min-height: 32px;
  max-height: 32px;
}
.btn-block {
  width: 100%;
}
.btn.btn-icon {
  padding: 6px;
  min-height: 32px;
  max-height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon span {
  font-size: 0.8rem;
  /* display: none; */
}
.btn-icon i {
  font-size: 0.9rem;
  margin-top: 4px;
}
.btn-sm {
  padding: 3px 8px;
  font-size: 0.8rem;
}
.btn-sm.bnt-icon {
  padding: 3px;
}

.btn-primary {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-default {
  color: var(--font-color);
  background-color: var(--background-color-300);
  border: 1px solid var(--background-color-300);
}

.btn-out {
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.btn-secondary,
.btn-primary:disabled,
.btn-primary:disabled:hover {
  color: var(--mute-color-100);
  background-color: transparent;
  border: 1px solid var(--mute-color-100);
}

.btn-link {
  font-size: 1rem;
  font-weight: 700;
  padding: 0 2px;
  color: var(--font-color);
}
.btn-primary:hover {
  /*transform: scale(1.1);*/
  background: linear-gradient(to right, var(--green), var(--primary-color));
}

.btn-out:hover {
  color: var(--mute-color-100);
  border-color: var(--mute-color-100);
}

/*.btn-out:hover { 
   background-color: var(--background-color-300);
 /*  background-color: #60ba621c;*/
/* font-weight: 600;
   color: var(--green);
  /* border: 2px solid var(--theme-color);*/
/*}*/
.form-control .btn {
  margin-top: 18px;
  width: 100%;
  height: 32px;
}
.form-control .btn-icon {
  margin-top: 18px;
  width: auto;
  min-width: 48px;
}
.form-link {
  display: flex;
  align-items: center;

  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}
.form-link i {
  font-size: 1.2rem;
}

.btn-file {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  float: right;
  top: -28px;
  margin-left: calc(100% - 28px);
  font-size: 0.9rem;
  background-color: var(--input-border-400);
  border: none;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--font-color);
  cursor: pointer;
}

.search-box {
  width: 100%;
  padding: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.search-box i {
  position: relative;
  top: 0;
  left: 32px;
  z-index: 1;
  color: var(--mute-color-100);
  font-size: 1.2rem;
}
.search-box input {
  position: relative;
  height: 52px;
  border: none;
  width: 100%;
  border-radius: 10px;
  outline: none;
  padding: 10px;
  padding-left: 40px;
  font-size: 1rem;
}

.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-thin {
  font-weight: 200 !important;
}
.text-normal {
  font-weight: 400 !important;
}
.text-medium {
  font-weight: 600 !important;
}
.text-bold {
  font-weight: 700 !important;
}
.text-strong {
  font-weight: 800 !important;
}
.text-black {
  font-weight: 900 !important;
}

/* TEXT COLOR */
.text-mute,
.text-mute td {
  color: var(--input-border-300) !important;
}
.text-dark,
.text-dark td {
  color: var(--dark-color) !important;
}
.text-primary,
.text-primary td {
  color: var(--theme-color) !important;
}
.text-light,
.text-light td {
  color: var(--light-color) !important;
}
.text-secondary,
.text-secondary td {
  color: var(--secondary-color) !important;
}
.text-white,
.text-white td {
  color: var(--background-color-200) !important;
}
.text-danger,
.text-danger td {
  color: var(--danger-color) !important;
}
.text-success,
.text-success td {
  color: var(--success-color) !important;
}
.text-info,
.text-info td {
  color: var(--info-color) !important;
}
.text-blue,
.text-blue td {
  color: var(--darkblue-color) !important;
}
.text-warning,
.text-warning td {
  color: var(--warning-color) !important;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}

.bg-danger {
  background: var(--danger-color);
}
.bg-warning {
  background: var(--warning-color);
}
.bg-success {
  background: var(--success-color);
}
.bg-info {
  background: var(--info-color);
}
.bg-mute {
  background: var(--mute-color-100);
}
.bg-dark {
  background: var(--dark-color);
}

.w2 {
  width: 2% !important;
}

.w3 {
  width: 3% !important;
}
.w4 {
  width: 4% !important;
}

.w5 {
  width: 5% !important;
}
.w6 {
  width: 6% !important;
}
.w7 {
  width: 7% !important;
}
.w8 {
  width: 8% !important;
}
.w9 {
  width: 9% !important;
}
.w10 {
  width: 10% !important;
}
.w12 {
  width: 12% !important;
}
.w14 {
  width: 14% !important;
}
.w15 {
  width: 15% !important;
}
.w16 {
  width: 16% !important;
}
.w18 {
  width: 18% !important;
}
.w20 {
  width: 20% !important;
}
.w25 {
  width: 25% !important;
}
.w30 {
  width: 30% !important;
}
.w35 {
  width: 35% !important;
}
.w40 {
  width: 40% !important;
}
.w45 {
  width: 45% !important;
}
.w50 {
  width: 50% !important;
}
.w55 {
  width: 55% !important;
}
.w60 {
  width: 60% !important;
}
.w65 {
  width: 65% !important;
}
.w70 {
  width: 70% !important;
}
.w75 {
  width: 75% !important;
}
.w80 {
  width: 80% !important;
}
.w85 {
  width: 85% !important;
}
.w90 {
  width: 90% !important;
}
.w95 {
  width: 95% !important;
}
.w100 {
  width: 100% !important;
}

/*
.w5 {width: 5% !important; min-width: 75px;}
.w6 {width: 6% !important; min-width: 90px;}
.w7 {width: 7% !important; min-width: 105px;}
.w8 {width: 8% !important; min-width: 120px;}
.w9 {width: 9% !important; min-width: 135px;}
.w10 {width: 10% !important; min-width: 150px;}
.w12 {width: 12% !important; min-width: 180px;}
.w14 {width: 14% !important; min-width: 210px;}
.w15 {width: 15% !important; min-width: 225px;}
.w16 {width: 16% !important; min-width: 240px;}
.w18 {width: 18% !important; min-width: 270px;}
.w20 {width: 20% !important; min-width: 300px;}
.w25 {width: 25% !important; min-width: 375px;}
.w30 {width: 30% !important; min-width: 450px;}
.w35 {width: 35% !important; min-width: 525px;}
.w40 {width: 40% !important; min-width: 600px;}
.w45 {width: 45% !important; min-width: 675px;}
.w50 {width: 50% !important; min-width: 750px;}
.w55 {width: 55% !important; min-width: 825px;}
.w60 {width: 60% !important; min-width: 900px;}
.w65 {width: 65% !important; min-width: 975px;}
.w70 {width: 70% !important; min-width: 1050px;}
.w75 {width: 75% !important; min-width: 1125px;}
.w80 {width: 80% !important; min-width: 1200px;}
.w85 {width: 85% !important; min-width: 1275px;}
.w90 {width: 90% !important; min-width: 1350px;}
.w95 {width: 95% !important; min-width: 1425px;}
.w100 {width: 100% !important; min-width: 1500px;}
*/

.mt-2 {
  margin-top: 2px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-64 {
  margin-top: 64px;
}
.mt-72 {
  margin-top: 72px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-96 {
  margin-top: 96px;
}
.mt-100 {
  margin-top: 100px;
}

.mb-2 {
  margin-bottom: 2px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-64 {
  margin-bottom: 64px;
}
.mb-72 {
  margin-bottom: 72px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-96 {
  margin-bottom: 96px;
}
.mb-100 {
  margin-bottom: 100px;
}

.ml-2 {
  margin-left: 2px;
}
.ml-4 {
  margin-left: 4px;
}
.ml-6 {
  margin-left: 6px;
}
.ml-8 {
  margin-left: 8px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-16 {
  margin-left: 16px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-24 {
  margin-left: 24px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-32 {
  margin-left: 32px;
}
.ml-36 {
  margin-left: 36px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-48 {
  margin-left: 48px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-64 {
  margin-left: 64px;
}
.ml-72 {
  margin-left: 72px;
}
.ml-80 {
  margin-left: 80px;
}
.ml-90 {
  margin-left: 90px;
}
.ml-96 {
  margin-left: 96px;
}
.ml-100 {
  margin-left: 100px;
}

.mr-2 {
  margin-right: 2px;
}
.mr-4 {
  margin-right: 4px;
}
.mr-6 {
  margin-right: 6px;
}
.mr-8 {
  margin-right: 8px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-16 {
  margin-right: 16px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-24 {
  margin-right: 24px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-32 {
  margin-right: 32px;
}
.mr-36 {
  margin-right: 36px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-48 {
  margin-right: 48px;
}
.mr-50 {
  margin-right: 50px;
}
.mr-60 {
  margin-right: 60px;
}
.mr-64 {
  margin-right: 64px;
}
.mr-72 {
  margin-right: 72px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-90 {
  margin-right: 90px;
}
.mr-96 {
  margin-right: 96px;
}
.mr-100 {
  margin-right: 100px;
}

.pd-10 {
  padding: 10px !important;
}
.pdt-10 {
  padding-top: 10px;
}
.pdb-10 {
  padding-bottom: 10px;
}
.pdl-10 {
  padding-left: 10px;
}
.pdr-10 {
  padding-right: 10px;
}

.pd-20 {
  padding: 20px !important;
}
.pdt-20 {
  padding-top: 20px;
}
.pdb-20 {
  padding-bottom: 20px;
}
.pdl-20 {
  padding-left: 20px;
}
.pdr-20 {
  padding-right: 20px;
}

.pd-30 {
  padding: 30px !important;
}
.pdt-30 {
  padding-top: 30px;
}
.pdb-30 {
  padding-bottom: 30px;
}
.pdl-30 {
  padding-left: 30px;
}
.pdr-30 {
  padding-right: 30px;
}

.pd-40 {
  padding: 40px !important;
}
.pdt-40 {
  padding-top: 40px;
}
.pdb-40 {
  padding-bottom: 40px;
}
.pdl-40 {
  padding-left: 40px;
}
.pdr-40 {
  padding-right: 40px;
}

.pd-50 {
  padding: 50px !important;
}
.pdt-50 {
  padding-top: 50px;
}
.pdb-50 {
  padding-bottom: 50px;
}
.pdl-50 {
  padding-left: 50px;
}
.pdr-50 {
  padding-right: 50px;
}

.table-container {
  width: 100%;
  overflow-x: scroll;
  /*overflow: hidden;   */
  table-layout: fixed;
}
.table-container::-webkit-scrollbar {
  height: 5px;
}

.table-default,
.table-listview,
.table-dark {
  width: 100%;
  border-spacing: 0;

  overflow-x: scroll;
}
.table-full {
  min-width: 1380px;
}

.table-default tbody,
.table-listview tbody,
.table-dark tbody {
  display: block;
  width: 100% !important;
  min-width: 100%;
  /* overflow-y: scroll;*/
}
.table-slim tbody {
  overflow: hidden !important;
}

.table-default tbody::-webkit-scrollbar,
.table-listview tbody::-webkit-scrollbar,
.table-dark tbody::-webkit-scrollbar {
  background: var(--background-color-300);
  width: 5px;
}

.table-default tbody::-webkit-scrollbar-track,
.table-listview tbody::-webkit-scrollbar-track,
.table-dark tbody::-webkit-scrollbar-track {
  background: var(--background-color-300);
  width: 5px;
}

.table-default tbody::-webkit-scrollbar-thumb,
.table-listview tbody::-webkit-scrollbar-thumb,
.table-dark tbody::-webkit-scrollbar-thumb {
  background: #dee6eb;
  width: 5px;
  border-radius: 5px;
}

.table-default tbody::-webkit-scrollbar-thumb:hover,
.table-listview tbody::-webkit-scrollbar-thumb:hover,
.table-dark tbody::-webkit-scrollbar-thumb:hover {
  background: var(--mute-color-100);
}

.table-stripped tr:nth-child(even),
.even-row {
  background: var(--background-color-300);
  border-radius: 6px;
}

.table-stripped tr:nth-child(odd) {
  background-color: var(--background-color-200);
}

.odd-row {
  background: var(--background-color-300);
  border-radius: 6px;
}

.table-dark tr:nth-child(odd) {
  background-color: var(--theme-color);
}

.table-default thead,
.table-listview thead,
.table-dark thead {
  display: block;
}

.table-default tr,
.table-listview tr,
.table-dark tr {
  display: flex;
  min-width: 100%;
  width: 100%;
  align-items: center;
  padding: 1px 0;
}

.table-default th,
.table-default td,
.table-listview th,
.table-listview td,
.table-dark th,
.table-dark td {
  padding: 10px;
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 400;
  height: 30px;
}

.table-slim tr {
  padding: 0 2px;
  min-height: 24px;
  height: 24px;
}
.table-slim th,
.table-slim td {
  padding: 2px;
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  /*height: 24px;*/
}
.table-slim th {
  font-weight: 800;
}

.table-default th,
.table-listview th {
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--background-color-300);
}

.table-slim th {
  height: 32px;
}
.active-row td {
  background-color: var(--background-color-300);
}
.active-row td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.active-row td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.table-default tbody tr td,
.table-default thead tr th {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-listview td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.table-listview td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.table-listview tbody tr td {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  background-color: var(--background-color-300);
}

.table-default tbody tr td span:not(.pill) {
  display: none;
}
.table-default tbody tr td span.checkmark {
  display: flex !important;
}

.table-default tbody tr td:nth-child(1) {
  font-weight: 600;
  color: var(--font-color);
  gap: 20px;
}
.table-default tbody tr td i {
  font-size: 1rem;
}

.active-row td {
  color: var(--text-primary) !important;
}

.table-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.table-default tbody tr:hover td {
  background-color: var(--theme-color);
  /* background-color: var(--green-color-100);*/
  color: var(--background-color-200);
  /*color: var(--green-color-800);*/
  cursor: pointer;
}

.table-default tbody tr:hover td:first-child {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px;
}

.table-default tbody tr:hover td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.table-default tbody tr:hover td > i {
  color: var(--background-color-200) !important;
}

.td-right {
  justify-content: flex-end;
}
.td-left {
  justify-content: flex-start;
}
.td-center {
  justify-content: center;
}

.table-slim tbody tr:hover td {
  background-color: transparent !important;
  color: var(--theme-color);
  border-bottom: 1px dashed var(--theme-color);
}
.responsive-table {
  width: 100%;
  margin: 0 auto;
  /* overflow-x: scroll;*/
}

.table-slim tfoot tr td {
  text-align: left;
  font-weight: 700;
  border-top: 1px solid var(--background-color-300);
}

/*TABLE FIXED COLUMN*/

.table-fixed {
  white-space: nowrap;
  margin: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  min-width: 1480px;
  width: 100%;
}
.table-fixed tbody {
  overflow-x: none !important;
}
.table-fixed td,
.table-fixed th {
  border: none;
  padding: 0.5rem 1rem;
  /* min-width: fit-content;*/
  white-space: nowrap;
}
/*.table-fixed thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100px;
    background-color: #CFE8F0 !important;
}*/
/*.table-fixed thead th:first-child, 
.table-fixed tbody td:first-child  {
    min-width: 200px;
    width: 200px;
    background: #fff;
}*/

.table-fixed tbody tr:nth-child(even) > td {
  background: var(--background-color-300);
}
.table-fixed tbody tr:nth-child(odd) > td {
  background: var(--background-color-200);
}

.table-fixed tbody tr:nth-child(even) > td:first-child {
  background: var(--even);
}
.table-fixed tbody tr:nth-child(odd) > td:first-child {
  background: var(--odd);
}

.table-fixed thead th:first-child,
.table-fixed tbody td:first-child {
  position: sticky;
  left: -1px;
  z-index: 2;
  text-align: left;
  width: 300px;
  /* min-width: 300px;*/
  max-width: 300px;
  background-color: var(--background-color-200);
  text-align: left;
}
.table-fixed thead th:first-child span {
  /* width: 20px;
     height: 20px;*/
  /* border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.table-fixed thead th:first-child {
  /* width: 20px;
    height: 20px;*/
  /* border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-fixed thead th:first-child span {
  display: none;
}
.table-fixed thead th:first-child i {
  font-size: 0.9rem;
  color: var(--theme-color);
}
/*.table-fixed tbody th {
    position: sticky;
    left: 0;
    font-weight: 600;
    z-index: 1;
}*/

.table-fixed thead th:not(:first-child),
.table-fixed tbody td:not(:first-child) {
  min-width: 120px;
}

.table-fixed tbody tr:hover td,
.table-fixed tbody tr:hover td:first-child {
  background: var(--theme-color);
  /* background: var(--green-color-100);
  color: var(--green-color-800);*/
}

.paginator {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 24px 0;
}
.paginator_center {
  justify-content: center;
}
.paginator_left {
  justify-content: flex-start;
}
.paginator_right {
  justify-content: flex-end;
}
.paginator_item {
  min-width: 32px;
  height: 32px;
  padding: 4px;
  background: var(--background-color-300);
  color: var(--font-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.8rem;
}
.paginator_item:first-child::before {
  content: "\eb1a";
  font-family: uicons-thin-chubby !important;
  font-size: 1rem;
}
.paginator_item:last-child::before {
  content: "\ef7c";
  font-family: uicons-thin-chubby !important;
  font-size: 1rem;
}
.paginator_active {
  background-color: var(--theme-color);
  color: var(--background-color-200);
  font-weight: 700;
  transform: scale(1.1);
}
.paginator_item:hover {
  transform: scale(1.2);
  font-weight: 600;
}

.paginator_active:hover {
  transform: scale(1.3);
}

.input-search button,
.input-search span {
  position: relative;
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: none;
  border-radius: 4px;
  top: -28px;
  left: calc(100% - 28px);
  background-color: var(--input-border-400);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--font-color);
}
/*.input-search i {
    font-size: 0.9rem;
}*/

#table-5-row tbody {
  height: 300px;
  max-height: 300px;
}

#table-10-row tbody {
  height: 600px;
  max-height: 600px;
}

#table-15-row tbody {
  height: 900px;
  max-height: 900px;
}

/*DEFAULT LOAD*/
.ajax_load,
.ajax_overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8;
}

.ajax_load_box {
  margin: auto;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
  border: 16px solid #e3e3e3;
  border-top: 16px solid var(--theme-color);
  border-radius: 50%;
  margin: auto;
  width: 80px;
  height: 80px;

  -webkit-animation: spin 1.2s linear infinite;
  -o-animation: spin 1.2s linear infinite;
  animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
  margin-top: 15px;
  font-weight: 700;
}

.message {
  position: absolute;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  border: none;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.2) !important;
  z-index: 2;
  color: var(--font-color);
}
.message i {
  margin-bottom: 5px;
  /* font-size: 2.5rem;*/
  font-size: 4rem;
}
form .message {
  text-align: center;
}

.message.success i {
  /* color: #fff;
    background-color: var(--success-color);*/
  color: var(--success-color);
}

.message.info i {
  /* color: #fff;
    background-color: var(--blue-color);*/
  color: var(--blue-color);
}

.message.warning i {
  /* color: #fff;
    background-color: var(--warning-color);*/
  color: var(--warning-color);
}

.message.error i {
  /* color: #fff;
    background-color: var(--danger-color);*/
  color: var(--danger-color);
}

.message_btn {
  display: inline-block;
  padding: 5px 10px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
  transition-duration: 0.2s;
}

.message_btn:hover {
  opacity: 1;
}

/*AJAX RESPONSES MESSAGES*/

.ajax_response {
  position: fixed;
  z-index: 998;
  width: calc(100vw - 310px);
  width: 100%;
  min-width: 280px;
  margin-top: 50px;
}
.login-container .ajax_response {
  position: fixed;
  z-index: 998;
  top: 200px !important;
  width: 100%;
  max-width: 400px;
  min-width: 280px;
  margin-top: 50px;
}

.ajax_response .message {
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 380px;
  margin: 0 auto;
  padding: 15px 15px 20px 15px;
  background: #333333;
  background: var(--background-color-100);
  margin-bottom: 30px;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  gap: 32px;
  color: var(--font-color);
}

.ajax_response .message:before {
  flex-basis: 0;
  margin: -5px 15px 0 0 !important;
  font-size: calc(1rem * 1.2);
  color: rgba(0, 0, 0, 0.5);
}

.ajax_response .message_time {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4%;
  height: 5px;
  /*background: rgba(0, 0, 0, 0.5);*/
}

.ajax_response .message.success i {
  color: var(--success-color) !important;
}

.ajax_response .message.info i {
  color: var(--blue-color) !important;
}

.ajax_response .message.warning i {
  color: var(--warning-color) !important;
}

.ajax_response .message.error i {
  color: var(--danger-color) !important;
}

.ajax_response .message.success .message_time {
  background: var(--success-color) !important;
}
.ajax_response .message.info .message_time {
  background: var(--blue-color) !important;
}
.ajax_response .message.warning .message_time {
  background: var(--warning-color) !important;
}
.ajax_response .message.error .message_time {
  background: var(--danger-color) !important;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* AJAX CONFIRM*/

.ajax_overlay {
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*opacity: 0;*/
  transition: opacity 0.2s ease;
  z-index: 9999;
}
.ajax_overlay.show-confirm {
  opacity: 1;
  display: flex;
}

.ajax_confirm_box {
  background: var(--background-color-100);
  /*color: #333;*/
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.ajax_confirm_message {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  font-size: 1em;
}
.ajax_confirm_message p {
  text-align: left;
  font-size: 1rem;
}
.ajax_confirm_message i {
  color: var(--danger-color);
  font-size: 3rem;
}
.ajax_confirm_actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ajax_btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
/*.ajax_btn_confirm {
  background: #28a745;
  color: white;
}
.ajax_btn_cancel {
  background: #dc3545;
  color: white;
}*/

/* END AJAX CONFIRM*/
/*
.hithere {
  animation: hithere 1s ease;
}

.bounce {
  animation: bounce 1.3s ease !important;
}*/
/*
@keyframes bounce { 
  0%,
  50%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  75% {
    transform: translateY(-4px);
  }
}

@keyframes hithere {
  30% {
    transform: scale(1.2);
  }
  40%,
  60% {
    transform: rotate(-4deg) scale(1.2);
  }
  50% {
    transform: rotate(4deg) scale(1.2);
  }
  70% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}*/

@media screen and (max-width: 400px) {
  .ajax_response .message {
    width: 320px;
    gap: 24px;
    font-size: 0.9rem;
  }
  .message i {
    font-size: 3rem;
  }
}
