/** VARIALBES **/
:root {
  --purple-color: #7229af;
  --purple-border-color: #6c18b4;
  --purple-light-color: #8f29e5;
  --purple-lighter-color: #b492d1;
  --green-color: rgb(100, 236, 59);
  --yellow-color: #f7d246;
  --black-color: #2a2a2a;
  --gray-color: #949494;
  --heavy-gray-color: #808080;
  --light-gray-color: #e5e5e5;
  --hover-gray-color: #d8d8d8;
  --lighter-gray-color: #f6f6f6;
  --red-color: #c33;
  --overlay-color: rgba(117, 117, 117, 0.82);
  --active-opacity: 0.65;
  --box-shadow-selected: -4px 0px 3px -2px rgb(0 0 0 / 16%), 4px 0px 3px -2px rgb(0 0 0 / 16%);
  --selected-border-top: 0px -3px 0px 0px var(--yellow-color);
  --box-shadow-overlay: 0px 0px 10px 1px rgb(0 0 0 / 33%);
  --inner-width: 95%;
  --body-max-width: 1800px;
  --border-triangle-selected-dates: 0.35rem;
  --box-shadow: -5px 0 0 var(--lighter-gray-color), 5px 0 0 var(--lighter-gray-color);
  --box-shadow-left: -5px 0 0 var(--lighter-gray-color), 0 0 0 var(--lighter-gray-color);
  --box-shadow-right: 0 0 0 var(--lighter-gray-color), 5px 0 0 var(--lighter-gray-color);
  --checkbox-height: 20px;
  --checkbox-width: 20px;
  --checkbox-font-size: 14px;
}

/** LOCAL BOOTSTRAP **/
select,
input {
  outline: none;
}

.h-100 {
  height: 100% !important;
}

.h-50 {
  height: 50% !important;
}

.h-52px {
  height: 52px !important;
}

.h-46px {
  height: 46px !important;
}

.h-32px {
  height: 32px !important;
}

.h-25px {
  height: 25px !important;
}

.h-24px {
  height: 24px !important;
}

.h-20px {
  height: 20px !important;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.w-50px {
  width: 50px !important;
}

.minw-50px {
  min-width: 50px !important;
}

.max-h-auto {
  max-height: auto !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 0.5rem;
}

.row,
.g-3,
.gx-3 {
  --bs-gutter-x: 0.5rem !important;
}

/** FORM FLOATING **/
label {
  display: inline-block;
}

.form-floating {
  position: relative;
}

.overflow-hidden {
  overflow: hidden !important;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 2rem 0.75rem;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: none;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out;
}

/** POSITION STUFF **/
.position-relative {
  position: relative !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.position-fixed {
  position: fixed !important;
}

.position-absolute {
  position: absolute !important;
}

/** FLEX STUFF **/
.d-flex {
  display: flex !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-content-space-around {
  justify-content: space-around !important;
}

.justify-content-space-between {
  justify-content: space-between !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-none {
  flex: none !important;
}

.o-scroll {
  overflow: scroll !important;
}

.oy-scroll {
  overflow-y: scroll !important;
}

.ox-scroll {
  overflow-x: scroll !important;
}

/** PADDING STUFF **/
.p-0 {
  padding: 0 !important;
}

.p-5px {
  padding: 5px !important;
}

.p-10px {
  padding: 10px !important;
}

.p-15px {
  padding: 15px !important;
}

.p-20px {
  padding: 20px !important;
}

.p-25px {
  padding: 25px !important;
}

.p-30px {
  padding: 30px !important;
}

.p-tb-5px {
  padding: 5px 0 !important;
}

.p-tb-15px {
  padding: 15px 0 !important;
}

.p-tb-25px {
  padding: 25px 0 !important;
}

.p-tb-10px {
  padding: 10px 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-10px {
  padding-top: 10px !important;
}

.pt-20px {
  padding-top: 20px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-3px {
  padding-bottom: 3px !important;
}

.pb-5px {
  padding-bottom: 5px !important;
}

.pb-20px {
  padding-bottom: 20px !important;
}

.pr-5px {
  padding-right: 5px !important;
}

.pr-10px {
  padding-right: 10px !important;
}

.pr-20px {
  padding-right: 20px !important;
}

.pl-20px {
  padding-right: 20px !important;
}

.pb-20px {
  padding-bottom: 20px !important;
}

.pb-10px {
  padding-bottom: 10px !important;
}

.pl-5px {
  padding-left: 5px !important;
}

.pl-8px {
  padding-left: 8px !important;
}

.pl-10px {
  padding-left: 10px !important;
}

.pl-15px {
  padding-left: 15px !important;
}

.pl-gx {
  padding-left: calc(var(--bs-gutter-x) / 2) !important;
}

.pr-gx {
  padding-right: calc(var(--bs-gutter-x) / 2) !important;
}

.ml-gx {
  margin-left: calc(var(--bs-gutter-x) / 2) !important;
}

.mr-gx {
  margin-right: calc(var(--bs-gutter-x) / 2) !important;
}

.p-sides-1rem {
  padding: 0 1rem;
}

.p-sides-10px {
  padding: 0 10px !important;
}

/** MARGIN STUFF **/
.mt-0 {
  margin-top: 0 !important;
}

.mr-1 {
  margin-right: 0.25em !important;
}

.mr-5px {
  margin-right: 5px !important;
}

.mr-10px {
  margin-right: 10px !important;
}

.m-10px {
  margin: 10px !important;
}

.m-sides-10px {
  margin: 0 10px !important;
}

.m-0 {
  margin: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5px {
  margin-left: 5px !important;
}

.ml-10px {
  margin-left: 10px !important;
}

.ml-15px {
  margin-left: 15px !important;
}

.ml-20px {
  margin-left: 20px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-15px {
  margin-right: 15px !important;
}

.m-sides-1px {
  margin: 0 1px;
}

.mt-10px {
  margin-top: 10px !important;
}

.mt-15px {
  margin-top: 15px !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mt-25px {
  margin-top: 25px !important;
}

.mt-30px {
  margin-top: 30px !important;
}

.mt-50px {
  margin-top: 50px !important;
}

.mr-5px {
  margin-right: 5px !important;
}

.mx-5px {
  margin-bottom: 5px !important;
  margin-top: 5px !important;
}

.mb-5px {
  margin-bottom: 5px !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.mb-25px {
  margin-bottom: 25px !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.m-tb-20px {
  margin: 20px 0 !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.d-grid {
  display: grid !important;
}

/** POS STUFF **/
.t-35px {
  top: 35px !important;
}

.t-20px {
  top: 20px !important;
}

.l-0 {
  left: 0 !important;
}

.r-0 {
  right: 0 !important;
}

.t-0 {
  top: 0 !important;
}

.b-0 {
  bottom: 0 !important;
}

.l-auto {
  left: auto !important;
}

.r-auto {
  right: auto !important;
}

.t-auto {
  top: auto !important;
}

.b-auto {
  bottom: auto !important;
}

.g-p {
  padding: calc(var(--bs-gutter-x) / 2);
}

.g-p-sides {
  padding: 0 calc(var(--bs-gutter-x) / 2);
}

.g-p-left {
  padding-left: calc(var(--bs-gutter-x) / 2);
}

.g-p-right {
  padding-right: calc(var(--bs-gutter-x) / 2);
}

.g-p-top {
  padding-top: calc(var(--bs-gutter-x) / 2);
}

.g-p-bottom {
  padding-bottom: calc(var(--bs-gutter-x) / 2);
}

.g-m {
  margin: calc(var(--bs-gutter-x) / 2);
}

.g-m-sides {
  margin: 0 calc(var(--bs-gutter-x) / 2);
}

.g-m-left {
  margin-left: calc(var(--bs-gutter-x) / 2);
}

.g-m-right {
  margin-right: calc(var(--bs-gutter-x) / 2);
}

.g-m-top {
  margin-top: calc(var(--bs-gutter-x) / 2);
}

.g-m-bottom {
  margin-bottom: calc(var(--bs-gutter-x) / 2);
}

[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.hidden:not(.flatpickr-day),
.hidden *,
html:not(.ua-mobile) .mobile-active,
html:not(.ua-mobile) .mobile-active *,
html.ua-mobile .mobile-hidden,
html.ua-mobile .mobile-hidden *,
html.ua-mobile .desktop-active,
html.ua-mobile .desktop-active *,
html:not(.ua-mobile) .desktop-hidden,
html:not(.ua-mobile) .desktop-hidden * {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  font-weight: normal !important;
  font-size: 0 !important;
}

.bold {
  font-weight: bold;
}

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

.text-up {
  text-transform: uppercase;
}

.text-low {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: lowercase;
}

.text-capitalize::first-letter {
  text-transform: uppercase;
}

/** BORDERS **/
.bl-light-gray {
  border-left: 1px solid var(--light-gray-color);
}

.bl-black {
  border-left: 1px solid var(--black-color);
}

.text-pre {
  white-space: pre;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.text-nowrap {
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

/** OVERFLOW **/
.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

html.ua-desktop .desktop-ml-10px {
  margin-left: 10px !important;
}

html.ua-desktop .desktop-flex-row {
  flex-direction: row !important;
}

html.ua-desktop .desktop-align-items-center {
  align-items: center !important;
}

@media (max-width: 1199px) {
  .xl-active,
  .xl-active * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }
}

@media (max-width: 766px) {
  .ms-active,
  .ms-active * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }
}

@media (max-width: 599px) {
  .xs-active,
  .xs-active * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }
}

@media (max-width: 400px) {
  .dropdown .dropdown-menu li {
    font-size: 14px !important;
  }
}

@media (min-width: 600px) {
  .xs-hidden,
  .xs-hidden * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }

  .xs-flex-1 {
    flex: 1 !important;
  }

  .xs-flex-none {
    flex: none !important;
  }

  .xs-pr-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 767px) {
  .ms-hidden,
  .ms-hidden * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }
}

@media (min-width: 992px) {
  .lg-pr-10px {
    padding-right: 10px !important;
  }

  .lg-pl-10px {
    padding-left: 10px !important;
  }

  .lg-h-auto {
    height: auto !important;
  }
}

@media (min-width: 1200px) {
  body {
    padding: 0 calc((100% - var(--inner-width)) / 2) !important;
  }

  .xl-position-absolute {
    position: absolute !important;
  }

  .xl-h-100 {
    height: 100% !important;
  }

  .xl-w-100 {
    width: 100% !important;
  }

  .xl-w-25 {
    width: 25% !important;
  }

  .xl-w-50 {
    width: 50% !important;
  }

  .xl-h-50 {
    height: 50% !important;
  }

  .xl-w-auto {
    width: auto !important;
  }

  .xl-t-35px {
    top: 35px !important;
  }

  .xl-l-0 {
    left: 0 !important;
  }

  .xl-r-0 {
    right: 0 !important;
  }

  .xl-t-0 {
    top: 0 !important;
  }

  .xl-b-0 {
    bottom: 0 !important;
  }

  .xl-l-auto {
    left: auto !important;
  }

  .xl-r-auto {
    right: auto !important;
  }

  .xl-t-auto {
    top: auto !important;
  }

  .xl-b-auto {
    bottom: auto !important;
  }

  .xl-mt-auto {
    margin-top: auto !important;
  }

  .xl-mt-0 {
    margin-top: 0 !important;
  }

  .xl-m-sides-50px {
    margin: 0 50px !important;
  }

  .xl-p-tb-25px {
    padding: 25px 0 !important;
  }

  .xl-p-sides-25px {
    padding: 0 25px !important;
  }

  .xl-p-l-25px {
    padding-left: 25px !important;
  }

  .xl-p-15px {
    padding: 15px !important;
  }

  .xl-p-20px {
    padding: 20px !important;
  }

  .xl-p-25px {
    padding: 25px !important;
  }

  .xl-pt-0 {
    padding-top: 0 !important;
  }

  .xl-pt-5px {
    padding-top: 5px !important;
  }

  .xl-pt-15px {
    padding-top: 15px !important;
  }

  .xl-pt-20px {
    padding-top: 20px !important;
  }

  .xl-mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .xl-p-auto {
    padding: auto !important;
  }

  .xl-pr-auto {
    padding-right: auto !important;
  }

  .xl-pr-15px {
    padding-right: 15px !important;
  }

  .xl-pl-auto {
    padding-left: auto !important;
  }

  .xl-p-5px {
    padding: 5px !important;
  }

  .xl-p-sides-5px {
    padding: 0 5px !important;
  }

  .xl-pr-10px {
    padding-right: 10px !important;
  }

  .xl-pl-10px {
    padding-left: 10px !important;
  }

  .xl-g-m {
    margin: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-p-sides {
    padding: 0 calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-m-sides {
    margin: 0 calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-m-left {
    margin-left: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-m-right {
    margin-right: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-m-top {
    margin-top: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-g-m-bottom {
    margin-bottom: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-pl-gx {
    padding-left: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-pr-gx {
    padding-right: calc(var(--bs-gutter-x) / 2) !important;
  }

  .xl-pl-0 {
    padding-left: 0 !important;
  }

  .xl-pr-0 {
    padding-right: 0 !important;
  }

  .xl-pr-10px {
    padding-right: 10px !important;
  }

  .xl-pl-10px {
    padding-left: 10px !important;
  }

  .xl-flex-column {
    flex-direction: column !important;
  }

  .xl-flex-row {
    flex-direction: row !important;
  }

  .xl-mt-25px {
    margin-top: 25px !important;
  }

  .xl-mt-50px {
    margin-top: 50px !important;
  }

  .xl-hidden,
  .xl-hidden * {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-weight: normal !important;
    font-size: 0 !important;
  }

  .xl-pr-10px {
    padding-right: 10px !important;
  }

  .xl-flex-1 {
    flex: 1 !important;
  }

  .xl-flex-none {
    flex: none !important;
  }

  .xl-m-25px {
    margin: 25px !important;
  }

  .xl-ml-10px {
    margin-left: 10px !important;
  }

  .xl-h-auto {
    height: auto !important;
  }
}

@media screen and (max-width: 992px) {
  .max-lg-h-auto {
    height: auto !important;
  }
}

@media screen and (max-width: 1200px) {
  .max-xl-h-auto {
    height: auto !important;
  }
}

/** Tener en cuenta que hay que cambiar la media-query de 1800px si cambia el width. **/
@media (min-width: 1800px) {
  body {
    margin-left: calc((100% - var(--body-max-width)) / 2) !important;
  }
}

html,
body {
  font-family: 'Roboto Condensed', sans-serif;
}

html {
  border-top: 5px solid var(--yellow-color);
}

body {
  max-width: var(--body-max-width);
  margin: 0;
}

.background-children *,
.background-children *:before,
.background-children *:after {
  background-color: inherit;
}

.background-inherit {
  background-color: inherit;
}

.color-white {
  color: #fff;
}

.background-white {
  background-color: #fff;
}

.color-purple {
  color: var(--purple-color);
}

.color-green {
  color: var(--green-color);
}

.background-purple {
  background-color: var(--purple-color);
}

.color-dark-purple {
  color: var(--purple-light-color);
}

.background-dark-purple {
  background-color: var(--purple-light-color);
}

.color-yellow {
  color: var(--yellow-color);
}

.background-yellow {
  background-color: var(--yellow-color);
}

.color-black {
  color: var(--black-color);
}

.background-black {
  background-color: var(--black-color);
}

.color-gray {
  color: var(--gray-color);
}

.background-gray {
  background-color: var(--gray-color);
}

.color-heavy-gray {
  color: var(--heavy-gray-color);
}

.color-light-gray {
  color: var(--light-gray-color);
}

.background-light-gray {
  background-color: var(--light-gray-color);
}

.color-lighter-gray {
  color: var(--lighter-gray-color);
}

.background-lighter-gray {
  background-color: var(--lighter-gray-color);
}

.color-red {
  color: var(--red-color);
}

.color-overlay {
  color: var(--overlay-color);
}

.background-transparent {
  background-color: transparent !important;
}

.scroll-locked {
  position: fixed !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}

.text-xl {
  font-size: 24px;
}

.text-lg {
  font-size: 18px;
}

.text-md {
  font-size: 16px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

.loading-popup {
  min-height: 110px;
}

body.show-popup {
  border-top-color: #9e8525fc;
}

.btn.popup-button {
  padding: 5px 10px;
}

.popup-button:not(:last-child) {
  margin-right: 10px;
}

/* .popup-container.dialog-popup > * {
  min-height: auto !important;
} */

.container-progress-bar {
  width: 100%;
  background-color: var(--purple-lighter-color);
  overflow: hidden;
}

.loading-text,
.container-progress-bar {
  margin: 5px 0;
}

.progress-bar {
  animation: progress 2s infinite;
  -webkit-animation-name: progress;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  padding: 0.3em;
  text-align: center;
  background-color: var(--purple-color);
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/** ACCORDITION **/
.hiper-accordition-content {
  transition: 0.35s max-height linear;
}

.hiper-accordition-content.collapsed {
  max-height: 0 !important;
}

/** CHECKBOX **/

.checkbox-container {
  display: flex;
  align-items: center;
}

.checkbox-container,
.checkbox-container > input[type='checkbox'] {
  position: relative;
  min-width: var(--checkbox-width);
  min-height: var(--checkbox-height);
}

.checkbox-container > input[type='checkbox'] {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  opacity: 1;
  font-weight: bold;
  /* padding-left: calc(var(--checkbox-width) + 10px); */
  font-size: var(--checkbox-font-size);
}

.checkbox-container > input[type='checkbox']:before {
  width: var(--checkbox-width);
  height: var(--checkbox-height);
  position: absolute;
  top: calc(50% - (var(--checkbox-height) / 2));
  left: 0;
  content: '';
  border: 2px solid var(--black-color);
  background: white;
}

.checkbox-container > input[type='checkbox'].color-red:before {
  border-color: var(--red-color);
}

.checkbox-container > input[type='checkbox']::selection,
.checkbox-container > input[type='checkbox']:before::selection,
.checkbox-container > input[type='checkbox']::selection:before,
.checkbox-container > input[type='checkbox']:after::selection,
.checkbox-container > input[type='checkbox']::selection:after {
  color: transparent;
  background: transparent;
}

.checkbox-container > input[type='checkbox']:after {
  font-family: 'Material Icons';
  content: '\e5ca';
  position: absolute;
  top: calc(100% / 2);
  left: 3px;
  color: var(--black-color);
  line-height: 0;
  font-size: 14px;
  font-weight: bold;
}

.checkbox-container > input[type='checkbox']:checked:after {
  opacity: 1;
}

.checkbox-container > input[type='checkbox']:not(:checked):after {
  opacity: 0;
}

.checkbox-container.checkbox-center > input[type='checkbox'],
.checkbox-container.checkbox-center > input[type='checkbox']:before {
  padding-left: 0 !important;
  left: calc(50% - (var(--checkbox-width) / 2));
}

.checkbox-container.checkbox-white > input[type='checkbox']:before {
  background-color: #fff;
  border-color: #fff;
}

.checkbox-container.checkbox-white > input[type='checkbox']:after {
  left: 2.5px;
}

.checkbox-container > input[type='checkbox']:checked + .checkbox-hide-text,
.checkbox-container > input[type='checkbox']:not(:checked) + .checkbox-hide-text-reverse {
  color: transparent;
}

.checkbox-container > .checkbox-text {
  cursor: pointer;
  padding-left: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: bold;
  min-height: var(--checkbox-height);
}

/** BUTTON **/

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  border: 0;
  color: white;
  background-color: var(--purple-color);
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 0.75em;
  border-color: var(--purple-border-color);
  border-radius: 0;
}

.btn-secondary {
  border: 0;
  color: black;
  background-color: var(--light-gray-color);
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 0.75em;
  border-color: var(--light-gray-color);
  border-radius: 0;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--hover-gray-color);
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle,
.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:hover {
  background-color: var(--purple-light-color);
  border-color: var(--purple-border-color);
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgb(143 41 229 / 50%);
  -moz-box-shadow: 0 0 0 0.25rem rgb(143 41 229 / 50%);
  box-shadow: 0 0 0 0.25rem rgb(143 41 229 / 50%);
}

.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.btn-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgb(216, 216, 216 / 50%);
  -moz-box-shadow: 0 0 0 0.25rem rgb(216, 216, 216 / 50%);
  box-shadow: 0 0 0 0.25rem rgb(216, 216, 216 / 50%);
}

a.disabled {
  pointer-events: none;
}

.btn.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}

.btn-primary.disabled {
  color: var(--black-color);
  background-color: var(--purple-lighter-color);
}
.btn.agotado {
  border: 0;
  color: rgba(42,42,42,1);
  background-color: var(--light-gray-color);
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 0.75em;
  border-color: var(--light-gray-color);
  border-radius: 0;
  opacity: 0.5;
  cursor: default;
  pointer-events: none;

}

.btn-secondary.disabled {
  color: var(--black-color);
  background-color: var(--lighter-gray-color);
}

.btn-check:active + .btn-primary.disabled:focus,
.btn-check:checked + .btn-primary.disabled:focus,
.btn-primary.disabled.active:focus,
.btn-primary.disabled:active:focus,
.show > .btn-primary.disabled.dropdown-toggle:focus,
.btn-check:focus + .btn-primary.disabled,
.btn-primary.disabled:focus,
.btn-check:focus + .btn.disabled,
.btn.disabled:focus {
  box-shadow: none;
}

/** FLOATING **/

.text-floating-container > .text-floating {
  opacity: 1;
  z-index: 7;
  font-size: 18px;
  padding: 0;
  font-weight: bold;
  width: 100%;
  position: absolute;
  transform: scale(1) translateY(-0.5rem);
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
}

.text-floating-container.active > .text-floating,
.text-floating-container > .text-floating.active {
  font-size: 14px;
  transform: translateY(-3rem);
}

/** DROPDOWN **/
.dropdown {
  outline: 0;
  font-size: 14px;
  height: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown.active {
  box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 50%), 0px -3px 0px 0px var(--black-color);
  background: white;
}

.dropdown .dropdown-menu {
  position: absolute;
  text-align: right;
  width: calc(100% + 20px);
  overflow: hidden;
  display: none;
  max-height: 160px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  top: 67px;
  z-index: 11;
  margin: 0;
  right: 0;
}

.dropdown.active .dropdown-menu {
  box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 50%);
  display: block;
  background-color: white;
}

.dropdown .dropdown-menu li {
  cursor: pointer;
  padding: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: var(--black-color);
  opacity: var(--active-opacity);
}

.dropdown .dropdown-menu li:hover,
.dropdown .dropdown-menu li:active,
.dropdown .dropdown-menu li.active {
  opacity: 1;
}

.dropdown .hidden-input-value {
  opacity: 1;
  font-size: 18px;
  padding: 35px 5px 11px 5px;
  font-weight: bold;
  width: 100%;
  border-bottom: 2px var(--black-color) solid;
  z-index: 1;
  min-height: auto;
}

.dropdown.active .hidden-input-value {
  border-bottom: none;
  background-color: white;
  z-index: 12;
}

.dropdown label {
  color: var(--black-color);
  position: absolute;
  bottom: 13px;
  left: 5px;
  pointer-events: none;
  border: none;
  transform-origin: 0 0;
  opacity: 1;
  z-index: 13;
  font-size: 18px;
  font-weight: bold;
  width: calc(100% - 5px);
  padding: 0;
  padding-right: 12px;
  text-transform: uppercase;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
}

.hiper-input-text input::placeholder {
  color: transparent;
  visibility: hidden;
  opacity: 0;
  display: none;
}

.dropdown.active label,
.dropdown.has-value label {
  font-size: 14px;
  transform: translateY(-2rem);
}

.dropdown:not(.has-value) .hidden-input-value,
.dropdown:not(.active) .hidden-input-value {
  min-height: calc(18px + 35px + 11px + 6px);
}

.dropdown > input.hidden-input-value{
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  background-color: white;
  position: absolute;
  z-index: 999;
}

.ui-autocomplete li{
  list-style: none;
  padding: 5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: bold;
}

/** POPUP **/

.popup-container {
  --popup-close-button-size: 28px;
  --popup-close-icon-size: 2px;
  --popup-close-icon-color: #fff;
  --popup-internal-min-height: 50px;
  --popup-vertical-padding: 20px;
  --popup-horizontal-padding: 5px;
  --popup-max-height: 95vh;
  --popup-header-height: 24px !important;
}

body.show-popup {
  overflow: hidden;
  background: rgba(0, 0, 0, 50%);
}

body.show-popup > *:not(.popup-backdrop) {
  filter: brightness(50%);
}

.popup-backdrop {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-container {
  background: white;
  box-shadow: var(--box-shadow-overlay);
  position: relative;
  max-width: 90vw;
  max-height: var(--popup-max-height);
  min-width: 250px;
  min-height: 100px;
}

.popup-container > *:not(.popup-close-button) {
  width: 100%;
  min-height: var(--popup-internal-min-height);
  padding: var(--popup-horizontal-padding) var(--popup-vertical-padding);
}

.popup-container .popup-footer {
  padding: var(--popup-horizontal-padding) var(--popup-vertical-padding) var(--popup-vertical-padding) var(--popup-vertical-padding);
}

.popup-container .popup-header {
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 20px;
  min-height: var(--popup-header-height);
  background-color: var(--light-gray-color);
}

.popup-body:not(.popup-html) {
  white-space: pre-line;
}

.popup-close-button {
  background: var(--black-color);
  height: var(--popup-close-button-size);
  width: var(--popup-close-button-size);
  top: calc(-1 * (var(--popup-close-button-size) / 2));
  right: calc(-1 * (var(--popup-close-button-size) / 2));
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
}

.close-icon,
.close-icon:after {
  position: absolute;
  background: var(--popup-close-icon-color);
}

.close-icon {
  height: calc(var(--popup-close-button-size) / 2);
  width: var(--popup-close-icon-size);
  right: calc((var(--popup-close-button-size) / 2) - (var(--popup-close-icon-size) / 2));
  bottom: calc(3 * var(--popup-close-icon-size));
  transform: rotate(45deg);
}

.close-icon:after {
  content: '';
  left: calc(3 * (-1 * var(--popup-close-icon-size)));
  top: calc(3 * var(--popup-close-icon-size));
  height: var(--popup-close-icon-size);
  width: calc(var(--popup-close-button-size) / 2);
}

html:not(.ua-mobile) .full-screen-popup.popup-container {
  width: 90vw;
  height: 95vh;
}

html.ua-mobile .full-screen-popup.popup-container {
  width: 90vw;
  height: 75vh;
}

.full-screen-popup .popup-body {
  height: calc(100% - ((2 * var(--popup-internal-min-height))));
  overflow-y: scroll;
}

.validation-popup .popup-body {
  display: flex;
  align-items: center;
}
.big-padding-popup.html-popup {
  min-height: auto;
}
.big-padding-popup .popup-header,
.big-padding-popup .popup-body {
  padding: 15px var(--popup-vertical-padding);
}

/** POPUP POLÍTICAS DE DATOS Y PRIVACIDAD **/
.privacy-conditions-popup .popup-body {
  max-height: calc(var(--popup-max-height) - var(--popup-header-height) - var(--popup-horizontal-padding) - var(--popup-vertical-padding));
  overflow-y: scroll;
}

/** FLATPICKR **/

.hiper-desktop-date input {
  font-weight: bold;
  font-size: 18px;
}

.flatpickr-current-month input.cur-year {
  padding-right: 15px;
}

.flatpickr.form-control:disabled,
.flatpickr.form-control[readonly] {
  background-color: #fff;
}

.flatpickr-current-month span.cur-month:hover {
  background: none;
}

span.flatpickr-weekday {
  font-size: 15px;
  color: var(--black-color);
}

.hiper-desktop-date.active input.flatpickr {
  z-index: 6;
}

.flatpickr-calendar {
  top: 64px !important;
  border: 0;
  border-radius: 0px;
  width: 100% !important;
  left: 0 !important;
  cursor: default;
  -webkit-box-shadow: -4px 0px 3px -2px rgb(0 0 0 / 16%), 4px 0px 3px -2px rgb(0 0 0 / 16%), 0px 4px 3px -2px rgb(0 0 0 / 16%);
  -moz-box-shadow: -4px 0px 3px -2px rgb(0 0 0 / 16%), 4px 0px 3px -2px rgb(0 0 0 / 16%), 0px 4px 3px -2px rgb(0 0 0 / 16%);
  box-shadow: -4px 0px 3px -2px rgb(0 0 0 / 16%), 4px 0px 3px -2px rgb(0 0 0 / 16%), 0px 4px 3px -2px rgb(0 0 0 / 16%);
}

.flatpickr-days,
.flatpickr-rContainer {
  width: 100%;
}

.dayContainer {
  min-width: 100%;
  max-width: 100%;
}

.flatpickr-day {
  width: calc(100% / 7);
  min-width: calc(100% / 7);
  max-width: calc(100% / 7);
  font-weight: bold;
}

.dayContainer,
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  padding: 0;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  content: none;
}

.hiper-desktop-date {
  background-color: #fff;
  padding: 0px 1px;
}

.rangeMode .flatpickr-day {
  font-weight: bold;
  font-size: 18px;
}

.flatpickr-current-month {
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  font-size: 26px;
  left: 0;
}

.cur-year {
  font-size: 18px;
  text-align: right;
  padding-right: 20px;
}

.flatpickr-current-month span.cur-month {
  margin-left: 0;
}

.flatpickr-day.today {
  border: none;
  color: var(--purple-color);
}

.flatpickr-months,
.flatpickr-prev-month,
.flatpickr-next-month {
  margin: 15px 0;
}

.flatpickr-months {
  margin: 15px 25px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange,
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  color: var(--black-color);
  background-color: var(--yellow-color);
  border-color: var(--yellow-color);
  border-radius: 0;
}

#hiperFinder .flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.inRange {
  color: var(--black-color);
  background-color: var(--lighter-gray-color);
  border-color: var(--lighter-gray-color);
  border-radius: 0;
  box-shadow: var(--lighter-gray-color) !important;
}

.flatpickr-day.inRange {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.flatpickr-day.startRange {
  -webkit-box-shadow: var(--box-shadow-right);
  box-shadow: var(--box-shadow-right);
}

.flatpickr-day.endRange {
  -webkit-box-shadow: var(--box-shadow-left) !important;
  box-shadow: var(--box-shadow-left) !important;
}

.flatpickr-day.startRange.endRange {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n + 1) .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: var(--box-shadow-right) !important;
  box-shadow: var(--box-shadow-right) !important;
}

.flatpickr-day.flatpickr-disabled:before,
.flatpickr-day.flatpickr-disabled:after {
  content: none !important;
}

.flatpickr-day.hidden {
  visibility: visible;
  height: 39px;
  opacity: 1;
}

.flatpickr-calendar.open {
  z-index: 10;
}

.flatpickr-input-container,
.flatpickr.form-control[readonly] {
  cursor: pointer;
}

/** NAV BUTTON **/

.nav-button {
  cursor: pointer;
  height: 0.825rem;
  position: absolute;
  width: 0.825rem;
  border: solid var(--black-color);
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  top: calc(50% - 0.825rem / 2);
}

.nav-button-prev {
  left: 15px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.nav-button-next {
  right: 15px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/** INPUT **/

.hiper-input-text {
  position: relative;
  width: 100%;
  height: 70px;
}

.hiper-input-text > input {
  display: block;
  width: 100%;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-bottom: 2px solid var(--black-color);
  border-radius: 0;
  height: 100%;
  color: var(--black-color);
  padding: 10px 5px;
  padding-top: 35px;
  font-weight: bold;
  font-size: 18px;
}

.hiper-input-text > input.color-red {
  color: var(--red-color);
}

.hiper-input-text > label.color-red {
  color: var(--red-color);
}

.dropdown label.color-red {
  color: var(--red-color);
}

.hiper-input-text > input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: var(--black-color);
}

.hiper-input-text > label {
  color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 5px;
  pointer-events: none;
  border: none;
  transform-origin: 0 0;
  opacity: 1;
  z-index: 4;
  font-size: 18px;
  font-weight: bold;
  width: calc(100% - 5px);
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
}

.hiper-input-text > label.color-red {
  color: var(--red-color);
}

.hiper-input-text > input::placeholder {
  color: transparent;
  visibility: hidden;
  opacity: 0;
  display: none;
}

.hiper-input-text > input:placeholder-shown ~ label {
  transform: none;
  top: 35px;
}

.hiper-input-text > input:focus ~ label,
.hiper-input-text > input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 14px;
}

/** INPUT DATE **/

/** DISABLED STYLES **/
.hiper-input-date.disabled {
  pointer-events: none;
}

.hiper-input-date.disabled > .hiper-desktop-date,
.hiper-input-date.disabled > .hiper-desktop-date > .hiper.flatpickr.input,
.hiper-input-date.disabled > .hiper-mobile-date {
  background-color: #e9ecef;
  opacity: 1;
}

.hiper-input-date {
  color: var(--black-color);
}

.hiper-input-date,
.hiper-input-date .hiper-desktop-date,
.hiper-input-date .hiper-mobile-date {
  width: 100%;
}

.hiper-input-date .hiper-mobile-date,
.hiper-input-date .hiper-desktop-date {
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  height: 70px;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.hiper-input-date .hiper-mobile-date,
.hiper-input-date .hiper-desktop-date,
.hiper-input-date .hiper-mobile-date > input,
.hiper-input-date .hiper-desktop-date > input {
  position: relative;
}

.hiper-input-date .hiper-mobile-date > input,
.hiper-input-date .hiper-desktop-date > input {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-bottom: 2px solid var(--black-color);
  border-radius: 0;
  cursor: pointer;
}

.hiper-input-date .hiper-mobile-date > span,
.hiper-input-date .hiper-desktop-date > span,
.hiper-input-date .hiper-mobile-date > label,
.hiper-input-date .hiper-desktop-date > label {
  position: absolute;
}

.hiper-input-date .hiper-mobile-date > label {
  font-size: 18px;
  padding: 0;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
}

.hiper-input-date .hiper-mobile-date > label.active {
  font-size: 14px;
  transform: translateY(-2.5rem);
}

.hiper-input-date .hiper-desktop-date > label {
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
}

.hiper-input-date .hiper-mobile-date > span {
  left: 5px;
  width: calc(100% - 30px);
  bottom: 10px;
  font-size: 18px;
  height: 35px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
}

.hiper-input-date .hiper-mobile-date > input {
  z-index: 8;
  height: 100%;
  font-size: 0.0001em;
  padding: 0;
  cursor: pointer;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJXaW5kb3dUZXh0IiBkPSJNMjAgM2gtMVYxaC0ydjJIN1YxSDV2Mkg0Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE2YzEuMSAwIDItLjkgMi0yVjVjMC0xLjEtLjktMi0yLTJ6bTAgMThINFY4aDE2djEzeiIvPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Ik0wIDBoMjR2MjRIMHoiLz48L3N2Zz4=);
  background-color: transparent;
  background-origin: content-box;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: calc(100% - 10px);
  color: transparent;
}

.hiper-input-date .hiper-mobile-date > input::-webkit-calendar-picker-indicator {
  width: calc(100% - 5px);
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0 5px 9px 0;
  cursor: pointer;
  background: transparent;
}

.hiper-input-date .hiper-mobile-date > input::-webkit-datetime-edit,
.hiper-input-date .hiper-mobile-date > input::-webkit-inner-spin-button,
.hiper-input-date .hiper-mobile-date > input::-webkit-clear-button {
  display: none;
  color: transparent;
}

.hiper-input-date .hiper-desktop-date {
  display: flex;
  align-items: flex-end;
  height: 70px;
  z-index: 10;
}

.hiper-desktop-date.active label,
.hiper-desktop-date label.active {
  font-size: 14px;
  transform: translateY(-2rem);
}

.hiper-input-date .hiper-desktop-date > input.hiper-flatpickr-input {
  font-weight: bold;
  font-size: 18px;
  padding: 0;
  height: 45px;
  padding: 10px 5px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJXaW5kb3dUZXh0IiBkPSJNMjAgM2gtMVYxaC0ydjJIN1YxSDV2Mkg0Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE2YzEuMSAwIDItLjkgMi0yVjVjMC0xLjEtLjktMi0yLTJ6bTAgMThINFY4aDE2djEzeiIvPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Ik0wIDBoMjR2MjRIMHoiLz48L3N2Zz4=);
  background-origin: content-box;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: right;
  text-transform: uppercase;
}

html:not(.ua-mobile) .hiper-input-date .hiper-mobile-date,
html:not(.ua-mobile) .hiper-input-date .hiper-mobile-date *,
html.ua-mobile .hiper-input-date .hiper-desktop-date,
html.ua-mobile .hiper-input-date .hiper-desktop-date * {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  font-weight: normal !important;
  font-size: 0 !important;
}

.hiper-desktop-date.active {
  -webkit-box-shadow: var(--box-shadow-selected);
  -moz-box-shadow: var(--box-shadow-selected);
  box-shadow: var(--box-shadow-selected);
  border-top: 3px solid var(--black-color);
  background: white;
  border-bottom: none;
}

.hiper-desktop-date.active input.hiper-flatpickr-input {
  border-bottom: none;
  z-index: 12;
}

.hiper-input-date.disabled .hiper-mobile-date,
.hiper-input-date.disabled .hiper-desktop-date,
.hiper-input-date.disabled .hiper-mobile-date > input,
.hiper-input-date .hiper-mobile-date > input:disabled,
.hiper-input-date.disabled .hiper-desktop-date > input,
.hiper-input-date .hiper-desktop-date > input:disabled,
.hiper-input-date.disabled .hiper-desktop-date > label,
.hiper-input-date.disabled .hiper-mobile-date > label,
.dropdown.disabled,
.checkbox-container > input[type='checkbox']:disabled,
select.hiper-select:disabled {
  cursor: default;
}
.hiper-input-date.disabled .hiper-mobile-date > input,
.hiper-input-date .hiper-mobile-date > input:disabled,
.hiper-input-date.disabled .hiper-desktop-date > input,
.hiper-input-date .hiper-desktop-date > input:disabled {
  padding-top: 35px;
  height: 100%;
}

.hiper-input-date.disabled .hiper-mobile-date > input,
.hiper-input-date .hiper-mobile-date > input:disabled {
  z-index: 0;
}

.hiper-input-date.disabled .hiper-mobile-date > input,
.hiper-input-date .hiper-mobile-date > input:disabled,
.hiper-input-date.disabled .hiper-desktop-date > input,
.hiper-input-date .hiper-desktop-date > input:disabled,
.hiper-input-text > input:disabled,
.hiper-input-text > input[readonly],
.dropdown.disabled .hidden-input-value {
  background-color: #e9ecef;
  opacity: 1;
}

/** HIPER SELECT **/

select.hiper-select {
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  border-radius: 2px;
  padding-right: 20px;
  border: none;
  font-weight: bold;
  color: var(--black-color);
  border-bottom: 2px solid var(--black-color);
  height: 100%;
  font-size: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%232A2A2A' height='48' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><g transform='translate(0, 20)'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></g></svg>");
}

select.hiper-select + label {
  color: var(--black-color);
  position: absolute;
  bottom: 10px;
  left: 5px;
  pointer-events: none;
  border: none;
  transform-origin: 0 0;
  opacity: 1;
  z-index: 4;
  font-size: 18px;
  font-weight: bold;
  width: calc(100% - 5px);
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, text-size 0.1s ease-in-out, top 0.1s ease-in-out;
  font-size: 14px;
  top: 0;
}

.z-index-up.z-active {
  z-index: 999;
}

/** HIPER LINEA **/
hr.hiper-line {
  margin: 0;
  color: transparent;
  height: 0;
  border: 0;
  border-bottom: 1px solid var(--light-gray-color);
}
