/* ---------------------------------------------------

    C S S    A U T O M A T A     1.0

    - Release Date:  Octubre 2022
    - Developed by:  Eduardo León | Twitter: @SoyEduardoLeon

--------------------------------------------------- */
/*-----------------------------
    # V A R S
-----------------------------*/
/* F O N T S
-----------------------------*/
/* B R E A K P O I N T S
-----------------------------*/
/* C O L O R S
-----------------------------*/
/*-----------------------------
    # R E S E T   C S S
-----------------------------*/
@import "icons/icons.css";
*:before,
*:after,
*:not(dialog) {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
body {
  margin: 0;
  font-family: sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/*-----------------------------
    # B A S E
-----------------------------*/
*::selection {
  background-color: #0c9ffb;
  color: #ffffff;
}
html,
body {
  font-family: 'Exo 2', sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  font-weight: 300;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.125;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
}
a {
  color: #0c9ffb;
}
p {
  margin-bottom: 1rem;
}
b,
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
hr {
  box-sizing: content-box;
  height: 0;
  margin: 5px 0 40px 0;
  border: 0;
  border-top: 1px solid #f5f5f5;
}
/*-----------------------------
    # A L E R T
-----------------------------*/
.alert {
  padding: 1rem;
  margin-bottom: 1em;
  border-radius: 6px;
  display: inline-block;
  width: 100%;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert .alert__close {
  line-height: 1;
  cursor: pointer;
}
.alert p {
  flex: 1;
  margin-bottom: 0;
}
.alert.alert--info {
  color: #2196f3;
  background-color: #ecf6fe;
}
.alert.alert--success {
  color: #1abc9c;
  background-color: #e4fbf7;
}
.alert.alert--warning {
  color: #f1aa3f;
  background-color: #fef8ef;
}
.alert.alert--danger {
  color: #ff4550;
  background-color: #fff2f3;
}
/*-----------------------------
    # B U T T O N
-----------------------------*/
button {
  cursor: pointer;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 0.5rem;
  font-family: 'Exo 2', sans-serif;
  white-space: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  border-radius: 99px;
  margin: auto 0.5rem 1rem auto;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button:hover {
  text-decoration: none;
}
.button .icon {
  color: inherit;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button i {
  font-style: normal;
  font-size: 20px;
  color: inherit;
  vertical-align: text-top;
}
.button.button--link {
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #dd1c26;
  padding: 0.5rem 0;
  position: relative;
  justify-content: start;
}
.button.button--link i {
  font-style: normal;
}
.button.button--link-invert {
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  padding: 0.5rem 0;
  position: relative;
  justify-content: start;
}
.button.button--link-invert i {
  font-style: normal;
}
.button.button--primary {
  background-color: #0c9ffb;
  border-color: #0c9ffb;
  color: #ffffff;
}
.button.button--secondary {
  background-color: #dd1c26;
  border-color: #dd1c26;
  color: #ffffff;
}
.button.button--dark {
  background-color: #444444;
  border-color: #444444;
  color: #fff;
}
.button.button--light {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #444444;
}
.button.button--success {
  background-color: #1abc9c;
  border-color: #1abc9c;
  color: #fff;
}
.button.button--info {
  background-color: #2196f3;
  border-color: #2196f3;
  color: #fff;
}
.button.button--warning {
  background-color: #f1aa3f;
  border-color: #f1aa3f;
  color: #fff;
}
.button.button--danger {
  background-color: #ff4550;
  border-color: #ff4550;
  color: #fff;
}
.button.button--primary-invert {
  background-color: #fff;
  border: none;
  color: #0c9ffb;
}
.button.button--primary-invert i {
  color: #0c9ffb;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button.button--primary-invert:hover i {
  color: #0c9ffb;
}
.button.button--secondary-invert {
  background-color: #fff;
  border: none;
  color: #dd1c26;
}
.button.button--secondary-invert i {
  color: #dd1c26;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button.button--secondary-invert:hover i {
  color: #dd1c26;
}
.button.button--primary-outline {
  background-color: transparent;
  border-color: #0c9ffb;
  color: #0c9ffb;
}
.button.button--secondary-outline {
  background-color: transparent;
  border-color: #dd1c26;
  color: #dd1c26;
}
.button.button--secondary-outline:hover {
  background-color: #dd1c26;
  color: #ffffff;
}
.button.button--dark-outline {
  background-color: #fff;
  border-color: #444444;
  color: #444444;
}
.button.button--dark-outline:hover {
  background-color: #444444;
  color: #fff;
}
.button.button--light-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.button--light-outline:hover {
  background-color: #f5f5f5;
  color: #dd1c26;
}
.button.button--success-outline {
  background-color: #fff;
  border-color: #1abc9c;
  color: #1abc9c;
}
.button.button--success-outline:hover {
  background-color: #1abc9c;
  color: #fff;
}
.button.button--info-outline {
  background-color: #fff;
  border-color: #2196f3;
  color: #2196f3;
}
.button.button--info-outline:hover {
  background-color: #2196f3;
  color: #fff;
}
.button.button--warning-outline {
  background-color: #fff;
  border-color: #f1aa3f;
  color: #f1aa3f;
}
.button.button--warning-outline:hover {
  background-color: #f1aa3f;
  color: #fff;
}
.button.button--danger-outline {
  background-color: #fff;
  border-color: #ff4550;
  color: #ff4550;
}
.button.button--danger-outline:hover {
  background-color: #ff4550;
  color: #fff;
}
.button.button--white-text {
  border-color: transparent;
  color: #ffffff;
  padding: 0.5rem 0;
  font-weight: 600;
}
.button.button--white-text:hover {
  background-color: none;
}
.button.button--primary-text {
  border-color: transparent;
  color: #0c9ffb;
  font-weight: 600;
}
.button.button--primary-text .icon {
  font-size: 18px;
}
.button.button--primary-text:hover {
  background-color: #cbeafe;
}
.button.button--secondary-text {
  border-color: transparent;
  color: #dd1c26;
  padding: 0.5rem 0;
  font-weight: 600;
}
.button.button--secondary-text:hover .icon {
  margin-left: 5px;
  color: #dd1c26;
}
.button.button--dark-text {
  border-color: transparent;
  color: #444444;
}
.button.button--dark-text:hover {
  background-color: #dddddd;
}
.button.button--light-text {
  border-color: transparent;
  color: #5b5d6b;
}
.button.button--light-text:hover {
  background-color: #fff;
}
.button.button--success-text {
  border-color: transparent;
  color: #1abc9c;
}
.button.button--success-text:hover {
  background-color: #e4fbf7;
}
.button.button--info-text {
  border-color: transparent;
  color: #2196f3;
}
.button.button--info-text:hover {
  background-color: #ecf6fe;
}
.button.button--warning-text {
  border-color: transparent;
  color: #f1aa3f;
}
.button.button--warning-text:hover {
  background-color: #fdf6ea;
}
.button.button--danger-text {
  border-color: transparent;
  color: #ff4550;
}
.button.button--danger-text:hover {
  background-color: #fff7f8;
}
.button.button--large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}
.button.button--small {
  font-size: 0.75rem;
  padding: 0rem 0.5rem;
}
.button.button--full-width {
  width: 100%;
}
.button.button--full-width:after {
  padding-top: 100%;
  padding-left: 100%;
}
.button:disabled,
.button[disabled],
.button.button--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.button:after {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  top: auto;
  left: auto;
  padding-top: 200%;
  padding-left: 200%;
  opacity: 0;
  transition: all 0.8s;
  border-radius: 999px;
}
.button:active:after {
  padding: 0;
  margin: 0;
  opacity: 0.5;
  transition: 0s;
}
.button-group {
  display: flex;
}
.button-group .button {
  flex: auto;
}
.button-group.button-group--collapsed {
  gap: 0;
}
.button-group.button-group--collapsed .button {
  margin: auto;
  border-radius: 0px;
}
.button-group.button-group--collapsed .button:first-child {
  border-radius: 4px 0px 0px 4px;
}
.button-group.button-group--collapsed .button:last-child {
  border-radius: 0px 4px 4px 0px;
}
/*-----------------------------
    # B R E A D C R U M B
-----------------------------*/
.breadcrumb {
  display: inline-flex;
  list-style: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #777986;
}
.breadcrumb li icon {
  font-size: 18px;
}
.breadcrumb li:not(:first-child):before {
  content: "/";
  color: #9496a1;
  padding: 0 0.5rem;
}
.breadcrumb li.is--current a {
  color: #0c9ffb;
}
/*-----------------------------
    # C A R D
-----------------------------*/
.card {
  background: #fff;
  position: relative;
  padding: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}
.card .card__header {
  padding: 1.25rem 1.75rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card:has(>.card__header) {
  padding: 0;
}
.card:has(>.card__header) .card__body {
  padding: 1.25rem 1.75rem;
}
.card.card--primary {
  background: #0c9ffb;
}
.card.card--primary * {
  color: #ffffff;
}
.card.card--secondary {
  background: #dd1c26;
}
.card.card--secondary * {
  color: #ffffff;
}
.card.card--light {
  background: #f5f5f5;
}
/*-----------------------------
    # C O L L A P S E
-----------------------------*/
.collapse {
  list-style: none;
  border: 1px solid #dddfe9;
  border-radius: 0.4rem;
  margin: 1rem 0;
}
.collapse .collapse__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1rem;
  box-shadow: inset 0px 1px 0px #dddfe9;
  cursor: pointer;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.collapse .collapse__title span {
  flex: 1;
}
.collapse .collapse__title icon {
  color: #0c9ffb;
  font-size: 19px;
}
.collapse .collapse__title icon.icon--chevron-down {
  color: #777986;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.collapse .collapse__title:hover {
  background-color: #f5f5f5;
}
.collapse .collapse__title.is--active {
  background-color: #f5f5f5;
  color: #0c9ffb;
}
.collapse .collapse__title.is--active .icon--chevron-down {
  transform: rotate(180deg);
}
.collapse .collapse__body {
  height: 0px;
  box-shadow: inset 0px 1px 0px #dddfe9;
  overflow: hidden;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.collapse .collapse__body .collapse__content {
  padding: 1rem;
}
.collapse li {
  overflow: hidden;
}
.collapse li:first-child .collapse__title {
  box-shadow: none;
}
.collapse.collapse--primary {
  border-color: #0c9ffb;
}
.collapse.collapse--primary .collapse__title {
  background: #0c9ffb;
  color: #ffffff;
  box-shadow: none;
}
.collapse.collapse--primary .collapse__title:hover {
  background-color: #16a3fb;
}
.collapse.collapse--primary icon {
  color: #ffffff !important;
}
/*-----------------------------
    # C O L U M N S
-----------------------------*/
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.row.row--vertical-center {
  align-items: center;
}
.row.row--auto > .column {
  flex-grow: 1;
}
@media screen and (min-width: 1281px) {
  .row > .widescreen--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .widescreen--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .row > .desktop--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .desktop--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .row > .tablet--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .tablet--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (max-width: 640px) {
  .row > .mobile--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .row > .mobile--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
.row .column--expand {
  flex: 1;
  min-width: 1px;
  margin-left: auto;
}
.row .column--auto-height {
  align-self: stretch;
}
/*-----------------------------*\
    # C O N T A I N E R
\*-----------------------------*/
.container {
  width: 100%;
  max-width: 1290px;
  margin: auto;
  position: relative;
  padding: 0px;
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 1.5rem;
  }
}
.container.container--fluid {
  max-width: none;
}
.container.container--collapsed {
  padding: 0;
}
.container.container--small {
  max-width: 600px;
}
/*-----------------------------
    # F O R M
-----------------------------*/
.form .form__item {
  position: relative;
  margin-bottom: 1.5rem;
}
.form .form__item:last-child {
  margin-bottom: 0;
}
.form .form__item .form__input {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid #dddfe9;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
  font-family: 'Exo 2', sans-serif;
  color: #444444;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item .form__input:focus {
  border-color: #0c9ffb;
  color: #444444;
  box-shadow: 0px 6px 20px -12px rgba(68, 68, 68, 0.5);
}
.form .form__item .form__input:out-of-range {
  background-color: red;
}
.form .form__item .form__input::placeholder {
  color: #b3b5bd;
}
.form .form__item .form-arrow {
  font-family: 'feather' !important;
  position: absolute;
  content: '\e842';
  background: #fff;
  top: 2.35rem;
  right: 0.25rem;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #9496a1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item:has(input[type='file']) input {
  padding: 0px;
  border: none;
  box-shadow: 0 0 0 1px inset #dddfe9;
}
.form .form__item:has(input[type='file']) input::file-selector-button {
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  background: #0c9ffb;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  margin-right: 1rem;
}
.form .form__item:has(input[type='file']) icon {
  top: 2.5rem;
  left: 0.5rem;
  right: auto;
  font-size: 18px;
  color: #fff;
}
.form .form__item .drag-file {
  width: 180px;
  height: 180px;
  background: #f5f5f5;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px dashed #dddfe9;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item .drag-file:hover {
  border-color: #b3b5bd;
}
.form .form__item .drag-file:hover label {
  color: #0c9ffb;
}
.form .form__item .drag-file:hover .drag-file__preview {
  opacity: 0;
}
.form .form__item .drag-file .drag-file__preview {
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 70;
  top: 0;
  left: 0;
  opacity: 0.25;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item .drag-file input {
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.form .form__item .drag-file icon {
  position: initial;
  color: #0c9ffb !important;
}
.form .form__item label:has(input[type='checkbox']) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}
.form .form__item label:has(input[type='checkbox']):before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: 0px 0px 0px 1px #b3b5bd;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label:has(input[type='checkbox']):after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  width: 0.5rem;
  height: 0.75rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label:has(input[type='checkbox']:checked):before {
  box-shadow: 0px 0px 0px 1px #0c9ffb;
  background-color: #0c9ffb;
}
.form .form__item label:has(input[type='radio']) {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.form .form__item label:has(input[type='radio']):before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 2rem;
  box-shadow: 0px 0px 0px 1px #b3b5bd;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label:has(input[type='radio']):after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 0.95rem;
  height: 0.95rem;
  background-color: #0c9ffb;
  border-radius: 2rem;
  opacity: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label:has(input[type='radio']:checked):before {
  box-shadow: 0px 0px 0px 1px #0c9ffb;
}
.form .form__item label:has(input[type='radio']:checked):after {
  opacity: 1;
}
.form .form__item label.switch:has(input[type='checkbox']) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  line-height: 1rem;
}
.form .form__item label.switch:has(input[type='checkbox']):before {
  content: '';
  width: 36px;
  height: 16px;
  border-radius: 3rem;
  box-shadow: 0px 0px 0px 1px #b3b5bd;
  background: #f5f5f5;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label.switch:has(input[type='checkbox']):after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  top: -2px;
  left: 0;
  box-shadow: 0px 0px 0px 1px #b3b5bd;
  border-radius: 3rem;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item label.switch:has(input[type='checkbox']:checked):before {
  box-shadow: 0px 0px 0px 1px #0c9ffb;
  background-color: #0c9ffb;
}
.form .form__item label.switch:has(input[type='checkbox']:checked):after {
  box-shadow: 0px 0px 0px 1px #0c9ffb;
  left: 1.25rem;
}
.form .form__item label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  font-size: 18px;
}
.form .form__item:has(select) select {
  color: #b3b5bd !important;
}
.form .form__item:has(select) select:focus {
  color: #444444 !important;
}
.form .form__item:has(select):after {
  font-family: 'feather' !important;
  position: absolute;
  content: '\e842';
  background: #fff;
  top: 2.35rem;
  right: 0.25rem;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #9496a1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item:has(datalist) datalist {
  color: #b3b5bd !important;
}
.form .form__item:has(datalist) datalist:focus {
  color: #444444 !important;
}
.form .form__item:has(datalist):after {
  font-family: 'feather' !important;
  position: absolute;
  content: '\e842';
  background: #fff;
  top: 2.35rem;
  right: 0.25rem;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #9496a1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item [data-toggle="show-password"] {
  cursor: pointer;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.form .form__item [data-toggle="show-password"]:hover {
  color: #0c9ffb;
}
.form .form__item [data-toggle="show-password"].is--active {
  color: #0c9ffb;
}
.form .form__item [data-toggle="show-password"].is--active:before {
  content: "\e86a" !important;
}
.form .form__item:has(input[type='text']) label,
.form .form__item:has(input[type='password']) label,
.form .form__item:has(input[type='file']) label,
.form .form__item:has(input[type='tel']) label,
.form .form__item:has(input[type='email']) label,
.form .form__item:has(textarea) label,
.form .form__item:has(datalist) label,
.form .form__item:has(select) label {
  font-weight: 800;
  letter-spacing: 0.1rem;
  line-height: 2.3;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.form .form__item:has(icon) input {
  padding-right: 2.5rem;
}
.form .form__item icon {
  position: absolute;
  top: 2.4rem;
  right: 0.5rem;
  color: #9496a1;
  font-size: 18px;
  padding: 0.25rem;
}
.form .form__item .input__validation {
  font-size: 0.876rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.form .form__item:not(:has(.form__input[required])):has(input[type='text']) label:after,
.form .form__item:not(:has(.form__input[required])):has(input[type='password']) label:after,
.form .form__item:not(:has(.form__input[required])):has(input[type='file']) label:after,
.form .form__item:not(:has(.form__input[required])):has(input[type='email']) label:after,
.form .form__item:not(:has(.form__input[required])):has(input[type='tel']) label:after,
.form .form__item:not(:has(.form__input[required])):has(textarea) label:after,
.form .form__item:not(:has(.form__input[required])):has(datalist) label:after,
.form .form__item:not(:has(.form__input[required])):has(select) label:after {
  content: ' (Opcional)';
  font-size: inherit;
  color: #777986;
  font-weight: 600;
}
.form .form__item.form__item--success .form__input {
  border-color: #1abc9c;
}
.form .form__item.form__item--success .input__validation {
  color: #1abc9c;
}
.form .form__item.form__item--danger .input__validation {
  color: #ff4550;
}
.form .form__item.form__item--danger:has(.form__input[required]) label:after {
  content: '*';
  font-size: 1rem;
  line-height: 1;
  vertical-align: sub;
  margin-left: 0.15rem;
  color: #ff4550;
}
.form .form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.form .form__row .form__item {
  flex-grow: 1;
}
@media screen and (min-width: 1281px) {
  .form .form__row .widescreen--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .widescreen--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .form .form__row .desktop--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .desktop--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .form .form__row .tablet--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .tablet--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
@media screen and (max-width: 640px) {
  .form .form__row .mobile--1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--3 {
    flex: 0 0 25%;
    max-width: 25%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--6 {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--9 {
    flex: 0 0 75%;
    max-width: 75%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .form .form__row .mobile--12 {
    flex: 100%;
    max-width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
  }
}
/*-----------------------------
    # G R I D
-----------------------------*/
.grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1281px) {
  .grid.widescreen--1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.widescreen--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.widescreen--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.widescreen--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.widescreen--5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.widescreen--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.widescreen--7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.widescreen--8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.widescreen--9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.widescreen--10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.widescreen--11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.widescreen--12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .grid.desktop--1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.desktop--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.desktop--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.desktop--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.desktop--5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.desktop--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.desktop--7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.desktop--8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.desktop--9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.desktop--10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.desktop--11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.desktop--12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .grid.tablet--1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.tablet--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.tablet--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.tablet--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.tablet--5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.tablet--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.tablet--7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.tablet--8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.tablet--9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.tablet--10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.tablet--11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.tablet--12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .grid.mobile--1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.mobile--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.mobile--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.mobile--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.mobile--5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.mobile--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.mobile--7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.mobile--8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.mobile--9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.mobile--10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.mobile--11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.mobile--12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.grid.grid--collapsed {
  grid-gap: 0px;
  margin-bottom: 0;
}
/*-----------------------------
    # H I G H T
-----------------------------*/
.height.height--large {
  min-height: 800px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .height.height--large {
    min-height: 600px;
  }
}
/*-----------------------------
    # L I S T
-----------------------------*/
ul.list,
ol.list {
  margin: 0px;
  padding: 0px;
  margin-bottom: 2rem;
}
ul.list li,
ol.list li {
  list-style-type: none;
  line-height: 2;
}
ul.list li icon,
ol.list li icon {
  margin: 0 5px 0 0;
}
ul.list.list--disc li,
ol.list.list--disc li {
  margin-left: 1.25rem;
  list-style-type: disc;
}
ul.list.list--circle li,
ol.list.list--circle li {
  margin-left: 1.25rem;
  list-style-type: circle;
}
ul.list.list--decimal,
ol.list.list--decimal {
  list-style: none;
  counter-reset: counter-list;
}
ul.list.list--decimal li,
ol.list.list--decimal li {
  counter-increment: counter-list;
}
ul.list.list--decimal li:before,
ol.list.list--decimal li:before {
  content: counters(counter-list, ".") ". ";
  color: #dd1c26;
  margin-right: 0.5rem;
  width: 1rem;
  display: inline-block;
  text-align: right;
}
ul.list.list--square li,
ol.list.list--square li {
  margin-left: 1.25rem;
  list-style-type: square;
}
ul.list.list--alpha li,
ol.list.list--alpha li {
  margin-left: 1.25rem;
  list-style-type: upper-alpha;
}
ul.list.list--roman li,
ol.list.list--roman li {
  margin-left: 1.25rem;
  list-style-type: upper-roman;
}
ul.list.list--dash li,
ol.list.list--dash li {
  padding-left: 30px;
}
ul.list.list--dash li:before,
ol.list.list--dash li:before {
  content: "–";
  font-weight: 600;
  color: #0c9ffb;
  position: relative;
  left: -24px;
  width: 24px;
  height: 1.5em;
  margin-bottom: -1.5em;
  display: list-item;
  list-style-position: inside;
  text-align: right;
  padding-right: 24px;
}
@media screen and (min-width: 961px) {
  ul.list.list--columns,
  ol.list.list--columns {
    columns: 2;
  }
}
/*-----------------------------
    # M I X I N S
-----------------------------*/
/* Transitions
-----------------------------*/
/* Translate
-----------------------------*/
/* Scale
-----------------------------*/
/* Clear default apareance
-----------------------------*/
.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* Blink animation
-----------------------------*/
.sonar__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 2px solid rgba(12 159 251 / 100%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@keyframes sonar {
  from {
    opacity: 0.5;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.rotate--right {
  animation: rotation-right 18s infinite linear;
}
@keyframes rotation-right {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.rotate--left {
  animation: rotation-left 12s infinite linear;
}
@keyframes rotation-left {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
/*-----------------------------
    # M O D A L
-----------------------------*/
.modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(68, 68, 68, 0.6);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: auto;
  pointer-events: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.modal .modal__container {
  margin: auto;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.4);
  border-radius: 0.4rem;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: scale(0.8, 0.8);
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -o-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}
.modal .modal__container p {
  margin-bottom: 0;
}
.modal .modal__container .modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1.75rem;
  line-height: 1;
  border-bottom: 1px solid #f3f4f8;
}
.modal .modal__container .modal__body {
  padding: 1.75rem;
}
.modal .modal__container .modal__footer {
  padding: 1rem;
  text-align: right;
  border-top: 1px solid #f3f4f8;
}
.modal .modal__container .modal__close {
  cursor: pointer;
  line-height: 1;
  color: #444444;
  font-weight: 300;
  text-decoration: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.modal .modal__container .modal__close:hover {
  color: #0c9ffb;
}
.modal .modal__container .modal__close icon {
  pointer-events: none;
}
.modal.is--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is--visible .modal__container {
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.modal.modal--small .modal__container {
  max-width: 300px;
}
.modal.modal--large .modal__container {
  max-width: 800px;
}
.modal.modal--loading {
  text-align: center;
  user-select: none;
}
/*-----------------------------
    # N A V
-----------------------------*/
.nav {
  display: block;
}
.nav .nav__item {
  color: #f5f5f5;
  list-style: none;
}
.nav .nav__item > a {
  display: flex;
  align-items: center;
  color: #444444;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  line-height: 2;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nav .nav__item > a:hover {
  background-color: #0c9ffb;
  text-decoration: none;
  padding-left: 1.25rem;
}
.nav .nav__item span {
  flex: 1;
}
.nav .nav__item icon {
  font-size: 18px;
}
.nav .nav__item--parent {
  overflow: hidden;
}
.nav .nav__item--parent .nav__submenu {
  padding-left: 1.5rem;
  list-style: none;
  pointer-events: none;
  height: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nav .nav__item--parent .nav__submenu a {
  display: block;
  padding: 0.5rem 1rem;
  line-height: 2;
  border-radius: 0.25rem;
  opacity: 0.6;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nav .nav__item--parent .nav__submenu a:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
  text-decoration: none;
  padding-left: 1.5rem;
}
.nav .nav__item--parent .nav__submenu.is--active {
  pointer-events: auto;
}
nav .nav__version {
  color: #9496a1;
  background: #444444;
  position: absolute;
  bottom: 0;
  width: 18rem;
  border-top: 1px solid #5b5d6b;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
nav .nav__version icon {
  font-size: 18px;
}
/*-----------------------------
    # P R O G R E S S
-----------------------------*/
.progress {
  border-radius: 2px;
  height: 8px;
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0;
}
.progress:has(span) {
  background-color: #f5f5f5;
}
.progress span {
  background-color: #0c9ffb;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  width: 50%;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: progress-loop;
}
.progress.progress--global {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  border-radius: 0px;
  margin: 0;
  z-index: 70;
  background: transparent;
}
.progress.progress--global span {
  border-radius: 0px;
}
@keyframes progress-loop {
  from {
    left: -50%;
  }
  to {
    left: 100%;
  }
}
/*-----------------------------
    # S E C T I O N
-----------------------------*/
.section {
  position: relative;
}
.section.section--small {
  padding: 3rem 0;
}
@media screen and (max-width: 960px) {
  .section.section--small {
    padding: 1rem 0;
  }
}
.section.section--medium {
  padding: 6.25rem 0;
}
@media screen and (max-width: 960px) {
  .section.section--medium {
    padding: 4rem 0;
  }
}
.section.section--large {
  padding: 240px 0;
}
.section.section--fullheight {
  min-height: 100vh;
}
.section.section--light {
  background-color: #f5f5f5;
}
.section.section--dark {
  background-color: #444444;
}
.section.section--primary {
  background-color: #0c9ffb;
  color: #ffffff;
}
.section.section--secondary {
  background-color: #dd1c26;
  color: #ffffff;
}
.section.section--collapsed {
  padding: 0;
}
/*-----------------------------
    # T A B S
-----------------------------*/
ul.tabs {
  padding: 0px;
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: -2rem;
}
@media screen and (max-width: 960px) {
  ul.tabs {
    flex-direction: column;
  }
}
ul.tabs li {
  background: none;
  color: inherit;
  display: flex;
  flex: auto;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  border-right: 1px solid #dddfe9;
  background: #fff;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  ul.tabs li {
    border-right: none;
    border: 1px solid #dddfe9;
    border-top: none;
  }
}
@media screen and (min-width: 961px) {
  ul.tabs li:last-child {
    border-right: none;
  }
  ul.tabs li::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: #dddfe9;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -ms-transform: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  ul.tabs li::after {
    content: '';
    display: block;
    height: 4px;
    width: 0%;
    background: #0c9ffb;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -ms-transform: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
}
ul.tabs li:hover {
  color: #0c9ffb;
}
ul.tabs li:hover::after {
  background: #0c9ffb;
  width: 100%;
}
ul.tabs li icon {
  font-size: 14px;
  vertical-align: baseline;
  margin-right: 4px;
  color: inherit;
}
ul.tabs li.is--active {
  color: #0c9ffb;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  ul.tabs li.is--active {
    color: #fff;
    background: #0c9ffb;
    border-color: #0c9ffb;
  }
}
ul.tabs li.is--active::after {
  background: #0c9ffb;
  width: 100%;
}
.tabs-container .tab {
  display: none;
}
.tabs-container .tab.is--active {
  display: block;
  animation: fadeIn 0.5s;
}
/*-----------------------------
    # T A B L E
-----------------------------*/
.table-container {
  overflow-x: auto;
}
.table,
.datatable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1rem;
  overflow: auto;
  letter-spacing: 1px;
  border: 1px solid #dddfe9;
  line-height: 2;
  font-feature-settings: 'tnum';
  /* TABLE VERTICAL BORDERED */
  /* TABLE HORIZONTAL BORDER */
}
.table td,
.datatable td {
  padding: 0.5rem 1rem;
  position: relative;
}
.table tbody tr,
.datatable tbody tr {
  border-bottom: 1px solid #f5f5f5;
}
.table thead,
.datatable thead {
  background: #f5f5f5;
  text-align: left;
  vertical-align: bottom;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.table thead th,
.datatable thead th {
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
}
.table thead th:hover,
.datatable thead th:hover {
  color: #0c9ffb;
}
.table thead th::after,
.datatable thead th::after {
  font-family: 'feather' !important;
  content: '\e82d';
  color: #9496a1;
  padding-left: 1rem;
}
.table thead th.sorting_asc::after,
.datatable thead th.sorting_asc::after {
  content: '\e82d';
  color: #0c9ffb;
}
.table thead th.sorting_desc::after,
.datatable thead th.sorting_desc::after {
  content: '\e82a';
  color: #0c9ffb;
}
.table.table--cols td,
.datatable.table--cols td,
.table.table--cols th,
.datatable.table--cols th {
  border-width: 0 0 0 1px;
}
.table.table--cols td > tr:last-child > td,
.datatable.table--cols td > tr:last-child > td,
.table.table--cols th > tr:last-child > td,
.datatable.table--cols th > tr:last-child > td {
  border-bottom-width: 0;
}
.table.table--rows td,
.datatable.table--rows td,
.table.table--rows th,
.datatable.table--rows th {
  border-width: 0 0 1px 0;
}
.table.table--rows td > tr:last-child > td,
.datatable.table--rows td > tr:last-child > td,
.table.table--rows th > tr:last-child > td,
.datatable.table--rows th > tr:last-child > td {
  border-bottom-width: 0;
}
.table button,
.datatable button {
  padding: 0.25rem;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.table button icon,
.datatable button icon {
  font-size: 18px;
}
.table button:hover,
.datatable button:hover {
  color: #0c9ffb;
}
.datatable {
  margin-top: 1rem;
}
.dataTables_length {
  float: left;
  position: relative;
  margin-bottom: 1rem;
}
.dataTables_length label {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
}
.dataTables_filter {
  display: inline-flex;
  float: right;
  margin-bottom: 1rem;
}
.dataTables_paginate {
  display: inline-flex;
  margin-bottom: 1rem;
  align-items: center;
  border: 1px solid #dddfe9;
  border-radius: 4px;
  float: right;
}
.dataTables_paginate .paginate_button {
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.dataTables_paginate .paginate_button:not(.disabled):hover {
  background: #f5f5f5;
}
.dataTables_paginate .paginate_button.disabled {
  color: #9496a1;
  cursor: auto;
}
.dataTables_paginate span {
  border-right: 1px solid #dddfe9;
}
.dataTables_paginate span:first-of-type {
  border-left: 1px solid #dddfe9;
}
.dataTables_info {
  display: inline-flex;
  margin-bottom: 1rem;
}
.table__input,
.table__select {
  display: block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dddfe9;
  border-radius: 0.3rem;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
  font-family: 'Exo 2', sans-serif;
  color: #444444;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.table__input:focus,
.table__select:focus {
  border-color: #0c9ffb;
  color: #444444;
  box-shadow: 0px 6px 20px -12px rgba(68, 68, 68, 0.5);
}
.table__input:out-of-range,
.table__select:out-of-range {
  background-color: red;
}
.table__input::placeholder,
.table__select::placeholder {
  color: #b3b5bd;
}
.form-arrow {
  font-family: 'feather' !important;
  position: absolute;
  content: '\e842';
  background: #fff;
  top: 0.5rem;
  right: 5.5rem;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.25rem;
  pointer-events: none;
  color: #9496a1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.dataTables_length:has(select) select {
  color: #b3b5bd !important;
}
.dataTables_length:has(select) select:focus {
  color: #444444 !important;
}
.dataTables_length:has(select):after {
  font-family: 'feather' !important;
  position: absolute;
  content: '\e842';
  background: #fff;
  top: 0.5rem;
  right: 5.5rem;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.25rem;
  pointer-events: none;
  color: #9496a1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.dataTables_length .table__select {
  width: 6rem;
}
/*-----------------------------
    # T E X T
-----------------------------*/
.text--primary {
  color: #0c9ffb !important;
}
.text--secondary {
  color: #dd1c26 !important;
}
.text--primary-invert {
  color: #ffffff !important;
}
.text--secondary-invert {
  color: #ffffff !important;
}
.text--info {
  color: #2196f3 !important;
}
.text--success {
  color: #1abc9c !important;
}
.text--warning {
  color: #f1aa3f !important;
}
.text--danger {
  color: #ff4550 !important;
}
.text--muted {
  color: #777986 !important;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--center {
  text-align: center;
}
.text--justify {
  text-align: justify;
}
.text--large {
  font-size: 4rem;
}
@media screen and (max-width: 960px) {
  .text--large {
    font-size: 3rem;
  }
}
.text--uppercase {
  text-transform: uppercase;
}
/*-----------------------------
    # T O A S T
-----------------------------*/
#toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.toast {
  background: #fff;
  display: flex;
  align-items: center;
  width: auto;
  border: 1px solid #fff;
  max-width: 350px;
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem 1.4rem 2.85rem;
  gap: 0.5rem;
  border-radius: 4px;
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  animation: toast-show 0.3s ease, toast-hide 0.2s ease var(--duration) 1;
}
.toast::before {
  font-size: 18px;
  content: '';
  font-family: 'feather' !important;
  position: absolute;
  top: 0.85rem;
  left: 1rem;
}
.toast .toast__progress {
  display: block;
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  animation-duration: var(--duration);
  animation-name: toast-progress;
  animation-timing-function: ease;
}
.toast.toast--info {
  color: #2196f3;
  background-color: #ecf6fe;
  border-color: #2196f3;
}
.toast.toast--info::before {
  content: '\e87f';
}
.toast.toast--info .toast__progress {
  background-color: #2196f3;
}
.toast.toast--success {
  color: #1abc9c;
  background-color: #e4fbf7;
  border-color: #1abc9c;
}
.toast.toast--success::before {
  content: '\e83e';
}
.toast.toast--success .toast__progress {
  background-color: #1abc9c;
}
.toast.toast--warning {
  color: #f1aa3f;
  background-color: #fef8ef;
  border-color: #f1aa3f;
}
.toast.toast--warning::before {
  content: '\e81c';
}
.toast.toast--warning .toast__progress {
  background-color: #f1aa3f;
}
.toast.toast--danger {
  color: #ff4550;
  background-color: #fff2f3;
  border-color: #ff4550;
}
.toast.toast--danger::before {
  content: '\e8f7';
}
.toast.toast--danger .toast__progress {
  background-color: #ff4550;
}
@keyframes toast-show {
  0% {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  60% {
    -webkit-transform: translate(-10%, 0);
    -moz-transform: translate(-10%, 0);
    -ms-transform: translate(-10%, 0);
    -o-transform: translate(-10%, 0);
    transform: translate(-10%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes toast-hide {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
}
@keyframes toast-progress {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
/*-----------------------------
    # S P I N N E R
-----------------------------*/
.spinner-container {
  width: 100%;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 75px;
  height: 40px;
}
.spinner span {
  position: absolute;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #0c9ffb;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.spinner span:nth-child(1) {
  left: 8px;
  animation: spinner1 0.6s infinite;
}
.spinner span:nth-child(2) {
  left: 8px;
  animation: spinner2 0.6s infinite;
}
.spinner span:nth-child(3) {
  left: 32px;
  animation: spinner2 0.6s infinite;
}
.spinner span:nth-child(4) {
  left: 56px;
  animation: spinner3 0.6s infinite;
}
@keyframes spinner1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes spinner2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes spinner3 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
/*-----------------------------
    # U T I L I T Y
-----------------------------*/
/* DIVIDER
-----------------------------*/
.divider {
  width: 100%;
  height: 1px;
  margin: 2rem 0;
  display: inline-block;
}
.divider.divider--line {
  border-top: 1px solid #dddfe9;
  clear: both;
  display: block;
  height: 1px;
  width: 100%;
}
.divider.divider--dashed {
  border-top: 1px dashed #ccc;
}
.divider.divider--dotted {
  border-top: 1px dotted #ccc;
}
/* LINES
-----------------------------*/
.line {
  border-top: 1px solid #333333;
  clear: both;
  display: block;
  height: 1px;
  margin: 20px 0px;
  width: 100%;
}
.line.line--dashed {
  border-top: 1px dashed #eee;
}
.line.line--dotted {
  border-top: 1px dotted #eee;
}
.line.line--double {
  border-top: 1px double #eee;
}
/* SHADOWS
-----------------------------*/
.shadow--small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.shadow--medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.shadow--large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1);
}
/* BORDER RADIUS
-----------------------------*/
.border--rounded {
  border-radius: 6px;
}
.border--circle {
  border-radius: 99px;
}
/* ANIMATIONS
-----------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
@import "components/badge";
@import "components/avatar";
@import "components/badge";
@import "components/divider";
@import "components/flex";
@import "components/form";
@import "components/hero";
@import "components/list";
@import "components/modal";
@import "components/section";
@import "components/table";
@import "components/tab";
@import "components/text";
@import "components/utility";
@import "components/visibility";
@import "components/width";*/
/*------------------------------------
    # ZENCASE THEME
-------------------------------------*/
html,
body {
  background: #050612;
  background: linear-gradient(0deg, #050612 5%, #171a2d 60%, #061047 100%);
}
header,
main,
footer {
  z-index: 1;
  position: relative;
}
main {
  padding-top: 8rem;
}
@media screen and (max-width: 960px) {
  main {
    overflow: hidden;
  }
}
.main-banner {
  z-index: 99;
}
.button--primary-outline:hover {
  box-shadow: 0 0 10px #0c9ffb;
  text-shadow: 0 0 10px #0c9ffb;
}
.button--primary-invert:hover {
  box-shadow: 0 0 10px #0c9ffb;
}
.button--light-outline:hover {
  box-shadow: 0 0 10px #dd1c26;
}
.button--link {
  padding: 0 1rem !important;
}
.button--link:hover {
  text-shadow: 0 0 10px #0c9ffb;
}
.emergency-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
  display: block;
  opacity: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.emergency-button.is--visible {
  opacity: 1;
}
.emergency-button.is--visible .button {
  animation: glow 2s linear infinite;
}
@keyframes glow {
  50% {
    box-shadow: 0 0 20px #0c9ffb;
  }
}
.header {
  padding: 2.5rem 0;
  z-index: 99;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .header {
    padding: 1.5rem 0;
  }
}
.header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__logo {
  width: 250px;
}
@media screen and (max-width: 960px) {
  .header .header__menu {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100vh;
    border-radius: none;
    padding: 1rem;
    background: #061046;
    z-index: 99;
    webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -ms-transform: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .header .header__menu.is--open {
    right: 0;
  }
  .header .header__menu.is--open #close-menu {
    opacity: 1;
  }
  .header .header__menu.is--open #open-menu {
    pointer-events: none;
    opacity: 0;
  }
}
.header .header__menu #close-menu,
.header .header__menu #open-menu {
  cursor: pointer;
  position: fixed;
  z-index: 999;
  right: 1rem;
  opacity: 0;
  top: 2rem;
  font-size: 1.25rem;
  background: #0000007a;
  padding: 10px;
  line-height: 1;
  border-radius: 99px;
  color: #0c9ffb;
  display: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  .header .header__menu #close-menu,
  .header .header__menu #open-menu {
    display: block;
  }
}
.header .header__menu #open-menu {
  opacity: 1;
}
.header .header__menu .menu {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 0.5rem;
  gap: 0.5rem;
}
@media screen and (max-width: 960px) {
  .header .header__menu .menu {
    border: 0px;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 50%;
    margin-top: 1rem;
  }
}
.header .header__menu .menu .menu__group {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  .header .header__menu .menu .menu__group {
    margin: 0 1rem;
  }
  .header .header__menu .menu .menu__group a {
    width: 100%;
    font-size: 1rem !important;
  }
}
.header .header__menu .menu .menu__group:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .header__menu .menu .menu__group:hover .menu__item:not(.is--active) a {
  background: transparent;
}
.header .header__menu .menu .menu__group .menu__item:not(:last-child) {
  margin-right: -0.5rem;
}
@media screen and (max-width: 960px) {
  .header .header__menu .menu .menu__item {
    width: 100%;
  }
}
.header .header__menu .menu .menu__item a {
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  .header .header__menu .menu .menu__item a {
    width: 100%;
    font-size: 1.25rem;
  }
}
.header .header__menu .menu .menu__item a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}
.header .header__menu .menu .menu__item.is--active a {
  background: #fff;
  color: #0c9ffb;
}
.main__subtitle {
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .main__subtitle {
    font-size: 1.25rem;
  }
}
.light-header {
  top: 0;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  left: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  .light-header {
    width: 1900px;
    left: -500px;
  }
}
.red-light {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 400px 200px #db131b;
  z-index: 1;
  animation: blink 2s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.red-light.red-light--left {
  left: -8%;
}
@media screen and (max-width: 960px) {
  .red-light.red-light--left {
    left: -32%;
    height: 70%;
    box-shadow: 0 0 200px 100px #db131b;
  }
}
.red-light.red-light--right {
  right: -8%;
}
@media screen and (max-width: 960px) {
  .red-light.red-light--right {
    right: -32%;
    height: 70%;
    box-shadow: 0 0 200px 100px #db131b;
  }
}
.blue-light {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 400px 200px #0c9ffb;
  animation: blink 2s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.blue-light.blue-light--small {
  box-shadow: 0 0 200px 100px #0c9ffb;
  animation-delay: 1s;
}
.blue-light.blue-light--left {
  left: -8%;
}
@media screen and (max-width: 960px) {
  .blue-light.blue-light--left {
    left: -60%;
  }
}
.blue-light.blue-light--right {
  right: -8%;
}
@media screen and (max-width: 960px) {
  .blue-light.blue-light--right {
    right: -60%;
  }
}
.isotipo-container {
  position: absolute;
  top: 0;
  height: 100%;
  right: 15%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .isotipo-container {
    right: -200px;
  }
}
.isotipo-container .isotipo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  position: relative;
  opacity: 40%;
  animation: blink 2.5s linear infinite;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@keyframes blink {
  50% {
    opacity: 10%;
  }
}
@media screen and (max-width: 960px) {
  .isotipo-container .isotipo {
    width: 400px;
  }
}
.isotipo-container .isotipo img {
  position: absolute;
  width: 100%;
  height: 100%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.isotipo-container .isotipo img:nth-child(1) {
  width: 30%;
}
.isotipo-container .isotipo img:nth-child(2) {
  width: 60%;
}
.isotipo-container .isotipo img:nth-child(3) {
  width: 80%;
}
.about .about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .about__logo .isotipo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  position: relative;
  opacity: 60%;
  animation: blink 2.5s linear infinite;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@keyframes blink {
  50% {
    opacity: 10%;
  }
}
.about .about__logo .isotipo img {
  position: absolute;
  width: 100%;
  height: 100%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.about .about__logo .isotipo img:nth-child(1) {
  width: 30%;
}
.about .about__logo .isotipo img:nth-child(2) {
  width: 60%;
}
.about .about__logo .isotipo img:nth-child(3) {
  width: 80%;
}
.about .about__content {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about .blue-light {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: -80%;
  top: auto;
}
.blueteam .cybersoc {
  padding-right: 2rem;
}
.blueteam .service {
  background: rgba(255 255 255 2%);
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(12 159 251 / 10%);
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.blueteam .service:hover {
  border: 1px solid rgba(12 159 251 / 30%);
  background: rgba(12 159 251 / 8%);
}
.blueteam .service:hover .service__title {
  color: #0c9ffb;
}
.blueteam .service:hover .service__text {
  opacity: 1;
}
.blueteam .service:hover .service__icon {
  background: rgba(0, 0, 0, 0.6);
  color: rgba(12 159 251 / 100%);
}
.blueteam .service:hover .service__icon::after {
  border-color: rgba(12 159 251 / 100%);
  animation: blink 2s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0.5;
  }
}
.blueteam .service:hover .sonar__wave--1 {
  animation: sonar 2s linear infinite;
}
.blueteam .service:hover .sonar__wave--2 {
  animation: sonar 2s 1s linear infinite;
}
.blueteam .service .service__text {
  line-height: 1.5;
  opacity: 0.45;
}
.blueteam .service .service__title {
  margin-top: -10px;
  font-size: 21px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.blueteam .service .service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: relative;
  color: rgba(12 159 251 / 50%);
  font-size: 30px;
  flex-shrink: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.blueteam .service .service__icon i {
  width: 28px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.blueteam .service .service__icon::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border: 2px rgba(12 159 251 / 30%) solid;
  border-radius: 50%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .redteam__header {
  text-align: center;
}
.redteam .services {
  gap: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .redteam .services {
    gap: 1.5rem;
  }
}
.redteam .service {
  background: rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .service .sonar__wave {
  border-color: rgba(255 31 40 / 100%);
}
.redteam .service:hover {
  border: 1px solid rgba(255, 31, 40, 0.1);
  background: rgba(0, 0, 0, 0.3);
}
.redteam .service:hover .service__title {
  color: #ff1f28;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .service:hover .service__text {
  opacity: 1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .service:hover .service__icon {
  background: rgba(0 0 0 / 60%);
  color: rgba(255 31 40 / 100%);
}
.redteam .service:hover .service__icon::after {
  border: 2px rgba(255 31 40 / 100%) solid;
  animation: blink 2s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0.1;
  }
}
.redteam .service:hover .sonar__wave--1 {
  animation: sonar 2s linear infinite;
}
.redteam .service:hover .sonar__wave--2 {
  animation: sonar 2s 1s linear infinite;
}
.redteam .service .service__text {
  line-height: 1.5;
  opacity: 35%;
}
.redteam .service .service__title {
  margin-top: -10px;
  font-size: 21px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .service .service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(0 0 0 / 15%);
  border-radius: 50%;
  position: relative;
  color: rgba(255 31 40 / 50%);
  font-size: 30px;
  flex-shrink: 0;
  margin-bottom: 4rem;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.redteam .service .service__icon::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border: 2px rgba(255 31 40 / 20%) solid;
  border-radius: 50%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  .other-services {
    text-align: center;
  }
  .other-services .row {
    flex-direction: column-reverse;
  }
}
.other-services .service__icon {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .other-services .service__icon {
    padding: 0 6rem;
  }
}
.other-services .service__icon .blue-light {
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  #anti-espionaje .row {
    flex-direction: column;
  }
}
.footer {
  background: #050612;
}
.footer .footer__contact {
  border-bottom: 1px solid rgba(12, 159, 251, 0.2);
  padding: 4rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .footer .footer__contact {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer .footer__contact .button {
    margin-top: 1rem;
  }
}
.footer .footer__contact .footer__logo {
  width: 250px;
  display: block;
}
.footer .footer__menu a {
  display: inline-block;
  margin-bottom: 0;
  color: #0c9ffb;
}
.footer .footer__disclaymer {
  padding: 1rem 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .footer .footer__disclaymer {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
.particles {
  top: 0;
  height: 105vh;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  position: fixed;
  z-index: 998;
  pointer-events: none;
}
.particles span {
  animation: squares 9.5s linear infinite;
  align-self: flex-end;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(100%);
  background: #0c9ffb;
  border-radius: 50px;
  filter: blur(6px);
  -webkit-filter: blur(3px);
}
.particles span:nth-child(2) {
  height: 0.6em;
  width: 0.6em;
  animation-delay: 1s;
  animation-duration: 17s;
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.particles span:nth-child(3) {
  height: 0.3em;
  width: 0.3em;
  animation-delay: 1.5s;
  animation-duration: 8s;
  filter: blur(3px);
  -webkit-filter: blur(3px);
}
.particles span:nth-child(4) {
  height: 0.6em;
  width: 0.6em;
  animation-delay: 0.5s;
  filter: blur(6px);
  -webkit-filter: blur(4px);
  animation-duration: 13s;
}
.particles span:nth-child(5) {
  height: 0.5em;
  width: 0.5em;
  animation-delay: 4s;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  animation-duration: 11s;
}
.particles span:nth-child(6) {
  height: 1.2em;
  width: 1.2em;
  animation-delay: 2s;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  animation-duration: 9s;
}
.particles span:nth-child(7) {
  height: 0.6em;
  width: 0.6em;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  animation-duration: 12s;
}
.particles span:nth-child(8) {
  height: 1em;
  width: 1em;
  animation-delay: 5s;
  filter: blur(6px);
  -webkit-filter: blur(6px);
  animation-duration: 18s;
}
.particles span:nth-child(9) {
  height: 0.6em;
  width: 0.6em;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  animation-duration: 9s;
}
.particles span:nth-child(9) {
  height: 1.25em;
  width: 1.25em;
  animation-delay: 6s;
  filter: blur(6px);
  -webkit-filter: blur(6px);
  animation-duration: 12s;
}
@keyframes squares {
  from {
    transform: translateY(100%) rotate(-50deg);
  }
  to {
    transform: translateY(calc(-100vh + -100%)) rotate(20deg);
  }
}
