@charset "UTF-8";
/*

    1. BASE
    reset
    base

    2. Element
    Forms
    Header
    Text
    TextColor
    TextSize
    Module
    Footer
    Modal
    Nav     
    Icon
    Box
    Pin
    Alert
    Badge
    Tracking
    Map
    Graphics
    Table
    Accordion
    FAQ

    3. Layout
    Layout  

    4. responsive
    Large
    Medium
    Small

*/
/* ------------------------------------------------------------
     MIXINGS
------------------------------------------------------------ */
/* ------------------------------------------------------------
     VARIABLES
------------------------------------------------------------ */
/* ------------------------------------------------------------
     RESET
------------------------------------------------------------ */
html,
body {
  -webkit-text-size-adjust: none;
  /* For iphone Landscape */
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  /* For font looks antialiased */
  -moz-osx-font-smoothing: grayscale;
  /* Moz antialiased */
  text-rendering: optimizeLegibility;
  /* optimezy fonts */
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  color: #142A38;
  font-size: 16px;
  line-height: 25px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}

/* outline */
* {
  letter-spacing: 0;
}
*:focus {
  outline: none !important;
}

/* Placeholder */
::-webkit-input-placeholder {
  color: #979797 !important;
}

::-moz-placeholder {
  color: #979797 !important;
} /* firefox 19+ */
:-ms-input-placeholder {
  color: #979797 !important;
} /* ie */
:-moz-placeholder {
  color: #979797 !important;
}

/* Selection */
::-moz-selection {
  background: #0F9ECF;
  color: #fff;
  opacity: 1 !important;
}
::selection {
  background: #0F9ECF;
  color: #fff;
  opacity: 1 !important;
}

::-moz-selection {
  background: #0F9ECF;
  color: #fff;
  opacity: 1 !important;
}

/* mx auto */
.mx-auto {
  margin: 0 auto;
}

.col-reset {
  padding: 0 !important;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Address */
address {
  font-style: initial;
}

/* margin */
.mt-0 {
  margin-top: 0 !important;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-28 {
  padding-top: 28px;
}

.pt-32 {
  padding-top: 32px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-0 {
  padding-right: 0 !important;
}

/* ------------------------------------------------------------
     BASE
------------------------------------------------------------ */
/* row align center */
.row-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.row--module {
  margin: 0;
  background: #023E5A;
  padding: 32px 32px 100px 32px;
}

/* bordered image */
.bordered-image img {
  border-radius: 24px;
  overflow: hidden;
}

/* main */
main {
  background: #F5F6FA;
  width: 100%;
  height: 100dvh;
  min-height: 900px;
  position: relative;
  display: block;
}

/* :::::::::

Responsive

::::::::::*/
@media all and (max-width: 768px) {
  .row.h-100 {
    height: auto !important;
  }
}
/* ------------------------------------------------------------
     FORM
------------------------------------------------------------ */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.form-control,
.form-select {
  height: 52px;
  width: 100%;
  background-color: #F5F6FA;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #142A38;
  cursor: pointer;
  border: 1px solid #D5D5D5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #0F9ECF;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(15, 158, 207, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(15, 158, 207, 0.25);
}
.form-control.form--small,
.form-select.form--small {
  height: 30px;
  width: 180px;
  font-size: 14px;
}

textarea.form-control {
  height: 300px;
}

.form-select {
  padding: 0 30px 0 20px;
}
.form-select.country-select option {
  padding: 10px;
  font-size: 16px;
}
.form-select.select--shadow {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.form-row {
  margin-bottom: 32px;
  width: 100%;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-row label {
  margin-bottom: 8px;
  color: #606060;
}

.js-country-selects {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .js-country-selects {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* custom select */
.custom-select {
  position: relative;
  width: 100%;
}

.selected-option {
  width: 100%;
  background-color: #F5F6FA;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  border-radius: 5px;
  padding: 16px 20px;
  font-size: 16px;
  color: #142A38;
  cursor: pointer;
  border: 1px solid #D5D5D5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.selected-option span {
  display: block;
  font-size: 14px;
}

.almacen-direccion {
  color: #979797;
}

.options-list {
  display: none;
  position: absolute;
  width: 95%;
  background: #F5F6FA;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.option {
  padding: 16px 24px;
  cursor: pointer;
  font-size: 14px;
  color: #142A38;
  border-top: 1px solid #D5D5D5;
  cursor: pointer;
}
.option:first-child {
  border-top: none;
}
.option:hover {
  background: #DDE4FF;
}
.option.active {
  background: #dcdbda;
}
.option.add-new {
  background: #0F9ECF;
  color: #fff;
  border-radius: 0 0 5px 5px;
  border-top: 0;
}
.option.add-new:hover {
  background: #023E5A;
}

.form-check.check--big .form-check-input {
  width: 30px;
  height: 30px;
  margin-right: 16px;
}
.form-check.form-switch .form-check-input {
  border-color: #142A38;
  height: 26px;
  width: 48px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba%280, 0, 0, 1%29'/></svg>");
}
.form-check.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba%28255,255, 255, 1%29'/></svg>");
  border-color: #0F9ECF;
}
.form-check.form-switch label {
  padding-left: 16px;
  font-size: 12px;
  line-height: 20px;
  width: 90%;
}
.form-check.form-switch label small {
  font-size: 10px;
}
.form-check small {
  display: block;
  width: 100%;
}

.form-check-input {
  background-color: #F5F6FA;
  border: 1px solid #D5D5D5;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #0F9ECF;
  border-color: #0F9ECF;
}
.form-check-input:focus {
  border-color: #0F9ECF;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(15, 158, 207, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(15, 158, 207, 0.25);
}

.custom-list-select {
  width: 100%;
  position: relative;
}
.custom-list-select .options-list .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-selected-option {
  width: 100%;
  background-color: #F5F6FA;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  border-radius: 5px;
  padding: 16px 20px;
  font-size: 16px;
  color: #142A38;
  cursor: pointer;
  border: 1px solid #D5D5D5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 60px;
}

/* search bar */
.search-bar {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 32px;
}
.search-bar .form-control {
  width: 100%;
  border-radius: 50px;
}
.search-bar button {
  position: absolute;
  top: 0;
  right: 32px;
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  border-radius: 0 50px 50px 0;
}
.search-bar button:hover {
  background: #D5D5D5;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 992px) {
  .form-row.pt-32 {
    padding-top: 0;
  }
}
/* ------------------------------------------------------------
     HEADER
------------------------------------------------------------ */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
  padding: 16px 0;
}

.main-mav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.notifications {
  position: relative;
  width: 30px;
}
.notifications a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.notifications a:hover {
  opacity: 0.6;
}
.notifications span {
  position: absolute;
  right: 0;
  top: -8px;
  width: 16px;
  height: 16px;
  background: #F93C65;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

.main-nav__user {
  position: relative;
}
.main-nav__user:hover ul {
  display: block;
}
.main-nav__user > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #57534E;
  font-size: 14px;
  font-weight: 500;
}
.main-nav__user > a > .material-symbols-outlined {
  width: 18px;
  height: 18px;
  color: #57534E;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-nav__user ul {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  padding: 16px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: none;
  overflow: hidden;
}
.main-nav__user ul li a {
  color: #57534E;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-nav__user ul li a:hover {
  background: #F5F6FA;
}
.main-nav__user ul li.main-nav__out {
  border-top: 1px solid #D5D5D5;
}

.main-nav__name {
  margin: 0 8px;
}
.main-nav__name p {
  margin: 0;
  color: #404040;
  font-weight: 700;
  line-height: 16px;
}
.main-nav__name span {
  color: #979797;
  line-height: 16px;
}

.header__logo {
  display: none;
}

.open-nav {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  color: #142A38;
  border: 0;
  width: 24px;
  height: 15px;
  padding: 0;
}
.open-nav.active {
  position: relative;
  z-index: 20;
  color: #142A38;
}
.open-nav.active .open-nav__icon {
  height: 24px;
}
.open-nav.active .open-nav__icon span {
  background: #142A38;
}
.open-nav.active .open-nav__icon span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
  -webkit-transform-origin: top;
          transform-origin: top;
}
.open-nav.active .open-nav__icon span:nth-child(2) {
  opacity: 0;
}
.open-nav.active .open-nav__icon span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 11px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.open-nav__icon {
  width: 24px;
  height: 15px;
  position: relative;
}
.open-nav__icon span {
  width: 100%;
  height: 2px;
  display: block;
  background: #142A38;
  position: absolute;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.open-nav__icon span:first-child {
  top: 0;
  left: 0;
}
.open-nav__icon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.open-nav__icon span:last-child {
  bottom: 0;
  right: 0;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #D5D5D5;
  -webkit-box-shadow: 0 30px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 30px 10px 0 rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav ul li {
  border-bottom: 1px solid #D5D5D5;
}
.mobile-nav ul li:last-child {
  border-bottom: 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 16px;
  color: #142A38;
  text-decoration: none;
}

.mobile-nav__user {
  background: rgba(213, 213, 213, 0.2);
}
.mobile-nav__user > a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #57534E;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #D5D5D5;
}
.mobile-nav__user > a > .material-symbols-outlined {
  width: 18px;
  height: 18px;
  color: #57534E;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-nav__user ul {
  list-style: none;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 992px) {
  header .row .justify-content-end {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .header__logo {
    display: block;
  }
  .main-mav .btn--chest,
  .main-mav .main-nav__user {
    display: none !important;
  }
  .open-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-nav__out {
    background: #E0E0E0;
  }
  .mobile-nav__chest {
    padding: 8x 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
  .mobile-nav__chest a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/* ------------------------------------------------------------
     TEXT
------------------------------------------------------------ */
.text-uppercase {
  text-transform: uppercase;
}

.text-letter-25,
.text-letter-25 * {
  letter-spacing: -2.5px;
}

.text-letter-0,
.text-letter-0 * {
  letter-spacing: 0px;
}

.text-400 *, .text-400 {
  font-weight: 400;
}

.text-600 *, .text-600 {
  font-weight: 600;
}

.text-left {
  text-align: left;
}

.text-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.text-icon .material-symbols-outlined,
.text-icon i {
  font-size: 18px;
  color: #0F9ECF;
}

/* ------------------------------------------------------------
     TEXT COLOR
------------------------------------------------------------ */
.text-white,
.text-white * {
  color: #fff !important;
}

.text-blue400,
.text-blue400 * {
  color: #0F9ECF;
}

.text-blue800,
.text-blue800 * {
  color: #023E5A;
}

.text-blue900,
.text-blue900 * {
  color: #142A38;
}

.text-yello400,
.text-yello400 * {
  color: #FFD56D;
}

.text-yello400,
.text-yello400 * {
  color: #FFD56D;
}

.text-gray350,
.text-gray350 * {
  color: #606060;
}

.text-gray300,
.text-gray300 * {
  color: #979797;
}

.text-gray350,
.text-gray350 * {
  color: #606060;
}

.text-base,
.text-base * {
  color: #142A38;
}

/* ------------------------------------------------------------
     TEXT SIZE
------------------------------------------------------------ */
.text-12,
.text-12 * {
  font-size: 12px;
  line-height: 18px;
}

.text-14,
.text-14 * {
  font-size: 14px;
  line-height: 20px;
}

.text-16,
.text-16 * {
  font-size: 16px !important;
  line-height: 25px !important;
}

.text-20,
.text-20 * {
  font-size: 20px;
  line-height: 28px;
}

.text-small,
.text-small * {
  font-size: 11px;
  line-height: 20px;
}

.text-21,
.text-21 * {
  font-size: 21px;
  line-height: 25px;
}

.text-24,
.text-24 * {
  font-size: 24px;
  line-height: 35px;
}

.text-28,
.text-28 * {
  font-size: 28px;
  line-height: 35px;
}

.text-40,
.text-40 * {
  font-size: 40px;
  line-height: 45px;
}

.text-64,
.text-64 * {
  font-size: 64px !important;
  line-height: 75px !important;
}

.text-96,
.text-96 * {
  font-size: 96px !important;
  line-height: 90px !important;
}

.text-18,
.text-18 * {
  font-size: 18px;
  line-height: 28px;
}

h1,
h1 *,
.h1,
.h1 * {
  font-size: 60px;
  line-height: 65px;
}

h2,
h2 *,
.h2,
.h2 * {
  font-size: 48px;
  line-height: 50px;
}

h3,
h3 *,
.h3,
.h3 * {
  font-size: 32px;
  line-height: 40px;
}

h4,
h4 *,
.h4,
.h4 * {
  font-size: 24px;
  line-height: 30px;
}

h5,
h5 *,
.h5,
.h5 * {
  font-size: 20px;
  line-height: 28px;
}

h6,
h6 *,
.h6,
.h6 * {
  font-size: 18px;
  line-height: 25px;
}

/* :::::::::

Responsive

::::::::::*/
@media all and (max-width: 1200px) {
  .text-96,
  .text-96 * {
    font-size: 60px !important;
    line-height: 60px !important;
  }
  .text-64,
  .text-64 * {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  h1,
  h1 *,
  .h1,
  .h1 * {
    font-size: 42px;
    line-height: 50px;
  }
}
@media all and (max-width: 992px) {
  h2,
  h2 *,
  .h2,
  .h2 * {
    font-size: 34px;
    line-height: 40px;
  }
  h3,
  h3 *,
  .h3,
  .h3 * {
    font-size: 28px;
    line-height: 35px;
  }
  h4,
  h4 *,
  .h4,
  .h4 * {
    font-size: 21px;
    line-height: 30px;
  }
  h5,
  h5 *,
  .h5,
  .h5 * {
    font-size: 18px;
    line-height: 25px;
  }
  h6,
  h6 *,
  .h6,
  .h6 * {
    font-size: 16px;
  }
  .text-40,
  .text-40 *,
  .text-28,
  .text-28 * {
    font-size: 24px;
    line-height: 30px;
  }
}
@media all and (max-width: 768px) {
  .text-96,
  .text-96 * {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  .text-21,
  .text-21 * {
    font-size: 18px;
  }
  .text-24,
  .text-24 *,
  .text-28,
  .text-28 *,
  .text-20,
  .text-20 * {
    font-size: 18px;
    line-height: 25px;
  }
  .text-64,
  .text-64 * {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .text-18,
  .text-18 * {
    font-size: 16px;
  }
  h1,
  h1 *,
  .h1,
  .h1 * {
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
  }
  h2,
  h2 *,
  .h2,
  .h2 * {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
  }
}
@media all and (max-width: 680px) {
  .text-55 {
    font-size: 32px;
    line-height: 45px;
  }
}
/* ------------------------------------------------------------
    MODULE
------------------------------------------------------------ */
.module {
  padding-top: 60px;
  padding-bottom: 60px;
}
.module.module--color1 {
  background: #0F9ECF;
}

.module-bottom {
  padding-bottom: 60px;
}

.module-top {
  padding-top: 60px;
}

.module-bottom24 {
  padding-bottom: 24px;
}

/* ------------------------------------------------------------
     BUTTON
------------------------------------------------------------ */
a:hover {
  text-decoration: none;
}

.btn.btn--type1 {
  background: #0F9ECF;
  color: #fff;
  border-radius: 10px;
  padding: 8px 32px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  min-width: 240px;
}
.btn.btn--type1:hover {
  background: #142A38;
}
.btn.btn--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.btn.btn--icon i,
.btn.btn--icon span {
  font-size: 20px;
}
.btn.btn--type2 {
  background: #142A38;
  border-radius: 8px;
  color: #fff;
  height: 43px;
  line-height: 43px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.btn.btn--type2 i,
.btn.btn--type2 span {
  font-size: 20px;
}
.btn.btn--type2:hover {
  background: #000002;
}
.btn.btn--type3 {
  background: #fff;
  border: 1px solid #979797;
  height: 34px;
  line-height: 34px;
  border-radius: 17px;
  padding: 0 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.btn.btn--type3 i,
.btn.btn--type3 span {
  font-size: 18px;
}
.btn.btn--type3:hover {
  background: #F5F6FA;
}
.btn.btn--type4 {
  background: #023E5A;
  color: #fff;
  border-radius: 10px;
  padding: 8px 32px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  min-width: 240px;
}
.btn.btn--type4:hover {
  background: #142A38;
}
.btn.btn--full {
  width: 100%;
  max-width: 100%;
}
.btn.btn--danger {
  background: transparent;
  border: 0;
  color: #EA0234;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.btn.btn--danger i,
.btn.btn--danger span {
  font-size: 19px;
}
.btn.btn--add {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
  border: 0;
}
.btn.btn--add span {
  background: #F5F6FA;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  color: #0F9ECF;
}
.btn.btn--test {
  background: rgba(0, 182, 155, 0.2);
  color: #00B69B;
  border-radius: 10px;
  padding: 2px 32px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
}
.btn.btn--test:hover {
  background: rgba(0, 182, 155, 0.4);
}
.btn.btn--faq {
  color: #0F9ECF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
.btn.btn--faq:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/icon/arrow-right.svg) no-repeat center center;
  background-size: 100%;
  margin-left: 12px;
}
.btn.btn--faq:hover {
  opacity: 0.6;
}
.btn.btn--chest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #dcdbda;
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn.btn--chest i {
  font-size: 24px;
}
.btn.btn--chest:hover {
  background: #F9F9FB;
}

.btn--simple {
  color: #0F9ECF;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn--simple:hover {
  color: #142A38;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
/* ------------------------------------------------------------
  FOOTER
------------------------------------------------------------ */
/* ------------------------------------------------------------
     MODAL
------------------------------------------------------------ */
.swal2-container .swal2-modal {
  width: 100%;
  border-radius: 16px;
  max-width: 500px;
}
.swal2-container .swal2-confirm {
  border-radius: 10px;
  font-weight: 600;
  background: #0F9ECF;
}
.swal2-container .swal2-confirm:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(15, 158, 207, 0.23);
          box-shadow: 0 0 0 3px rgba(15, 158, 207, 0.23);
}
.swal2-container .swal2-close {
  opacity: 1;
  color: #142A38;
  position: relative;
  top: 16px;
  right: 16px;
}
.swal2-container .swal2-close:hover {
  color: #0F9ECF;
}
.swal2-container .swal2-html-container {
  padding: 24px 64px;
}
.swal2-container .swal2-title {
  color: #023E5A;
}

/* ------------------------------------------------------------
     NAV
------------------------------------------------------------ */
.nav-aside {
  background: #fff;
  border-right: 1px solid #E0E0E0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  overflow-y: auto;
  padding: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
.nav-aside > section {
  width: 100%;
}

.nav-aside__nav {
  width: 100%;
}
.nav-aside__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-aside__nav ul li {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.nav-aside__nav ul li:last-child {
  margin-bottom: 0;
}
.nav-aside__nav ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-aside__nav ul li a:hover {
  opacity: 0.8;
}
.nav-aside__nav ul li a.active svg path {
  fill: #142A38;
}
.nav-aside__nav ul li a.active span {
  color: #142A38;
}
.nav-aside__nav ul li svg {
  margin-bottom: 8px;
  width: 25px;
  height: 25px;
}
.nav-aside__nav ul li svg path {
  fill: #979797;
}
.nav-aside__nav ul li span {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #979797;
}

.nav-aside__logo {
  width: 100%;
  max-width: 50px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.nav-aside__logo img {
  width: 100%;
}

.nav-aside__help {
  display: block;
  text-decoration: none;
  color: #979797;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 24px;
}
.nav-aside__help:hover {
  opacity: 0.8;
}

/* top navigation */
.top-navigation {
  width: 100%;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.top-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.top-navigation ul li a {
  text-decoration: none;
  color: #404040;
  background: #fff;
  padding: 4px 16px;
  height: 24px;
  line-height: 17px;
  min-width: 83px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.top-navigation ul li a:hover {
  background: #D5D5D5;
}
.top-navigation ul li a.active {
  background: #0F9ECF;
  color: #fff;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 992px) {
  .nav-aside {
    display: none;
  }
}
/* ------------------------------------------------------------
     ICON
------------------------------------------------------------ */
.icon {
  display: inline-block;
}

.icon--help {
  width: 32px;
  height: 32px;
  background-image: url(../images/icon/help.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--chest {
  width: 32px;
  height: 22px;
  background-image: url(../images/icon/chest.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--notification {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/notifications.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--user {
  width: 36px;
  height: 36px;
  background-image: url(../images/icon/user.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--box {
  width: 100px;
  height: 100px;
  background-image: url(../images/icon/box.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--send {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/send.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--plus {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--cart {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--edit {
  width: 17px;
  height: 17px;
  background-image: url(../images/icon/edit.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--filter {
  width: 30px;
  height: 30px;
  background-image: url(../images/icon/filter.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--up {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/up.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ------------------------------------------------------------
     BOX
------------------------------------------------------------ */
.box-main {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #D5D5D5;
  height: 100%;
}

.box-single {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}

.box-single__icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.box-option {
  width: 100%;
  height: 100%;
}
.box-option.box--light a {
  background: #F5F6FA;
}
.box-option.box--light a:hover {
  background: #D5D5D5;
}
.box-option.box--light a img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.box-option.box--light a article p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.box-option.box--light a article p span {
  color: #0F9ECF;
}
.box-option img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
}
.box-option a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #142A38;
  border-radius: 24px;
  padding: 32px;
  display: block;
  height: 100%;
}
.box-option a:hover {
  background: #000002;
}

.box-main__col {
  padding: 0 32px;
}

/* center box */
.center-box {
  border-radius: 15px;
  background: #FFF;
  padding: 32px;
  width: 90%;
  max-width: 420px;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.center-box:hover {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}
.center-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: #57534E;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.center-box a:hover {
  opacity: 0.6;
}
.center-box a span {
  color: #0F9ECF;
}
.center-box a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.box-tab {
  width: 100%;
  height: 100%;
}

.box-tab__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box-tab__head-title {
  background: #fff;
  border-radius: 14px 14px 0px 0px;
  padding: 16px 32px;
}
.box-tab__head-title * {
  margin-bottom: 0;
}

.box-tab__head-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.box-tab__body {
  background: #fff;
  border-radius: 0 14px 14px 14px;
  padding: 32px;
  height: 99%;
  overflow-y: auto;
}
.box-tab__body.body--auto {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  overflow: initial;
}
.box-tab__body.body--bordered {
  border-radius: 14px;
  border: 1px solid #D5D5D5;
}
.box-tab__body.body--bordered-white {
  border-radius: 14px;
}
.box-tab__body.body--color {
  border-radius: 14px;
  border: 1px solid #D5D5D5;
  background: #F9F9FB;
}
.box-tab__body.body--module {
  padding: 60px;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 1200px) {
  .aside-box-indicator .pin-indicator.pin--relative {
    left: 0;
    top: 18px;
    min-height: initial;
    height: auto;
  }
  .aside-box-indicator .pin-indicator.pin--relative:after {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .box-tab__body #step1 aside,
  .box-tab__body #step2 aside,
  .box-tab__body #step3 aside,
  .box-tab__body #step4 aside {
    display: none;
  }
}
@media all and (max-width: 992px) {
  .box-tab__body.body--module {
    padding: 32px;
  }
  .box-tab.module {
    padding: 32px 0;
  }
  .box-main.module {
    padding: 32px 0;
  }
  .box-tab__head-title {
    border-radius: 14px;
  }
  .box-tab__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 16px;
  }
  .box-tab__head > * {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .box-tab__head-title {
    padding: 16px;
  }
  .box-tab__body.body--module {
    padding: 16px;
  }
  .box-main.module {
    padding: 16px;
  }
  .box-main.module:last-child {
    margin-bottom: 24px;
  }
  .box-tab__head-options {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .box-tab__head-options > * {
    width: 100%;
  }
  #step1 {
    margin-bottom: 16px;
  }
  .box-tab.module {
    padding: 16px 0;
  }
  .box-tab__body {
    height: auto;
  }
}
/* ------------------------------------------------------------
     PIN
------------------------------------------------------------ */
.pin-indicator {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 6px;
}
.pin-indicator.pin--relative {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 20px;
  top: 60px;
}
.pin-indicator.pin--relative:after {
  left: 8px;
  -webkit-transform: initial;
          transform: initial;
}
.pin-indicator.pin--center {
  top: 0;
  left: 20px;
}
.pin-indicator.pin--center span,
.pin-indicator.pin--center label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pin-indicator.pin--first-step {
  height: 104px;
}
.pin-indicator.pin--last-step:after {
  height: 50%;
}
.pin-indicator.active span {
  background: #0F9ECF;
  border-color: #0F9ECF;
}
.pin-indicator.pin--last:after {
  display: none;
}
.pin-indicator:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  border-right: 1px dashed #023E5A;
}
.pin-indicator span {
  background: #fff;
  border: 1px solid #023E5A;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.pin-indicator label {
  position: absolute;
  left: 30px;
  top: 0;
  width: 200px;
}

/* ------------------------------------------------------------
     ALERT
------------------------------------------------------------ */
.alert {
  font-size: 12px;
  padding: 4px 10px;
}
.alert.alert-success {
  background: rgba(149, 182, 0, 0.2);
  color: #95B600;
  border: 0;
}
.alert.alert-info {
  background: rgba(0, 182, 155, 0.2);
  color: #00B69B;
  border: 0;
}

/* ------------------------------------------------------------
     BADGE
------------------------------------------------------------ */
.badge {
  border-radius: 20px;
  font-weight: 400;
}
.badge.badge--add {
  background: #023E5A;
}
.badge.badge--medium {
  border-radius: 4.5px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
}
.badge.text-bg-success {
  background: rgba(0, 182, 155, 0.2) !important;
  color: #00B69B !important;
}
.badge.text-bg-primary {
  background: rgba(98, 38, 239, 0.2) !important;
  color: #6226EF !important;
}
.badge.text-bg-danger {
  background: rgba(249, 60, 101, 0.2) !important;
  color: #F93C65 !important;
}
.badge.text-bg-warning {
  background: rgba(255, 168, 86, 0.2) !important;
  color: #FFA756 !important;
}
.badge.status--process {
  background: rgba(98, 38, 239, 0.2);
  color: #6226EF;
}
.badge.status--approved {
  background: rgba(0, 182, 155, 0.2);
  color: #00B69B;
}

.status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.status.status--process {
  background: #FFA756;
}
.status.status--approved {
  background: #00B69B;
}
.status.status--cancelled {
  background: #F93C65;
}

/* ------------------------------------------------------------
     TRACKING
------------------------------------------------------------ */
.tracking-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 40px;
}

.tracking-indicator__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tracking-indicator__item:before, .tracking-indicator__item:after {
  content: "";
  width: 50%;
  position: absolute;
  top: 8px;
  border-bottom: 1px dashed #023E5A;
}
.tracking-indicator__item:before {
  left: 0;
}
.tracking-indicator__item:after {
  right: 0;
}
.tracking-indicator__item:first-child:before {
  display: none;
}
.tracking-indicator__item:last-child:after {
  display: none;
}
.tracking-indicator__item.active i {
  background: #BAE5F5;
  border-color: #BAE5F5;
}
.tracking-indicator__item.current i {
  background: url(../images/icon/ship.svg) no-repeat center center;
  background-size: contain;
  border: 0;
  border-radius: 0;
  width: 20px;
  height: 20px;
}
.tracking-indicator__item i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #023E5A;
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tracking-indicator__item p {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

/*

::: RESPONSIVE :::

*/
@media all and (max-width: 768px) {
  .tracking-indicator__item p,
  .tracking-indicator__item p * {
    font-size: 10px !important;
    line-height: 14px !important;
  }
}
/* ------------------------------------------------------------
     MAP
------------------------------------------------------------ */
.map {
  width: 100%;
  height: 400px;
  background: #dcdbda;
  border-radius: 14px;
}

.frame {
  width: 100%;
  height: 235px;
  background: #dcdbda;
  border-radius: 14px;
}

/* ------------------------------------------------------------
     GRAPHICS
------------------------------------------------------------ */
.img-200 {
  width: 200px;
  height: 200px;
}

.img-57 {
  width: 57px;
  height: 57px;
}

.img-35 {
  width: 35px;
  height: 35px;
}

.img-23 {
  width: 23px;
  height: 13px;
}

.img-fix {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* ------------------------------------------------------------
     TABLE
------------------------------------------------------------ */
.table-main-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
}

.table-main-filters__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  height: 70px;
  padding: 0 24px;
  border-right: 1px solid #E0E0E0;
}
.table-main-filters__item:first-child, .table-main-filters__item:nth-child(2) {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
.table-main-filters__item:last-child {
  border-right: none;
}
.table-main-filters__item * {
  margin: 0;
  font-weight: bold;
}
.table-main-filters__item select {
  background: transparent;
  width: 100%;
  border: 0;
}

#table_wrapper .dt-scroll-head {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
#table_wrapper .dt-scroll-body {
  border-bottom: 0;
}
#table_wrapper .dt-empty {
  text-align: center !important;
  padding: 60px 0 !important;
  color: #606060;
}

.table.table-filters td {
  padding: 24px 16px;
}
.table.table-filters tr:last-child td {
  border-bottom: 0 !important;
}
.table.table-filters thead th {
  background: #142A38;
  color: #fff;
}
.table.table-filters thead th span:after {
  opacity: 0.6;
}
.table.table-filters th,
.table.table-filters td {
  text-align: left !important;
}
.table.table-main {
  border-radius: 10px;
}
.table.table-main.js-direcciones-table .edit-options {
  max-width: 100px;
}
.table.table-main td {
  padding: 10px 8px;
  font-weight: 400 !important;
}
.table.table-main tr:last-child td {
  border-bottom: 0 !important;
}
.table.table-main thead th {
  background: #023E5A;
  color: #fff;
  border-right: 1px solid #fff;
}
.table.table-main thead th:first-child {
  border-radius: 10px 0 0 0;
}
.table.table-main thead th:last-child {
  border-radius: 0 10px 0 0;
}
.table.table-main thead th:last-child {
  border-right: 0;
}
.table.table-main thead th span:after {
  opacity: 0.6;
}
.table.table-main th,
.table.table-main td {
  text-align: left !important;
}
.table.table-main td {
  border-right: 1px dashed #E0E0E0;
  border-bottom: 1px dashed #E0E0E0;
}
.table.table-main td:last-child {
  border-right: 0;
}
.table.table-main .dt-column-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.table.table-main .d-flex * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table.dataTable td:not(.fw-400) {
  font-weight: bold;
}

.table-prices {
  border-radius: 20px;
  border: 1px solid #F5F6FA;
  overflow-x: hidden;
  overflow-y: auto;
}
.table-prices table {
  background: #fff;
  width: 100%;
}
.table-prices table thead tr {
  background: #023E5A;
}
.table-prices table thead tr th {
  color: #fff;
  border-right: 1px solid #F5F6FA;
}
.table-prices table thead tr th:last-child {
  border-right: 0;
}
.table-prices table th,
.table-prices table td {
  padding: 15px 24px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}
.table-prices table tbody tr td {
  border-right: 1px dashed #F5F6FA;
  border-bottom: 1px dashed #F5F6FA;
  vertical-align: middle;
}
.table-prices table tbody tr td:last-child {
  border-right: 0;
}
.table-prices table tbody tr td p {
  margin-bottom: 0;
}

.table-prices__item.item--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.table-prices__item.item--horizontal img {
  width: 100px;
  height: 60px;
  margin-bottom: 0;
}
.table-prices__item img {
  height: 30px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
.table-prices__item p {
  margin-bottom: 0;
}

.table-main-filters.filters-head {
  border: 0;
  margin-bottom: 24px;
  background: transparent;
}
.table-main-filters.filters-head .table-main-filters__item {
  height: auto;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-right: 0;
}
.table-main-filters.filters-head .table-main-filters__item:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table-main-filters.filters-head .table-main-filters__item div {
  width: 100%;
}
.table-main-filters.filters-head .dt-search label {
  display: none;
}
.table-main-filters.filters-head .dt-search input {
  width: 100%;
  height: 24px;
  border-radius: 20px;
  padding: 0 16px;
  height: 42px;
  border: 1px solid #D5D5D5;
  background-image: url(../images/icon/search.svg);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 21px;
  font-weight: 400;
}

.table-main-filters.filters-footer {
  border: 0;
  background: rgba(213, 213, 213, 0.2);
  border-radius: 0 0 10px 10px;
  padding: 0 24px;
}
.table-main-filters.filters-footer .table-main-filters__item {
  padding: 0;
  width: 100%;
}
.table-main-filters.filters-footer .table-main-filters__item > div {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  width: 100%;
}
.table-main-filters.filters-footer .table-main-filters__item > div > div:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.table-main-filters.filters-footer .table-main-filters__item > div > div:first-child label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.table-main-filters.filters-footer .table-main-filters__item > div > div:first-child label .form-select {
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.table-main-filters.filters-footer .table-main-filters__item > div > div:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.table-main-filters.filters-footer .pagination .dt-paging-button {
  padding: 0;
  border: 0 !important;
}
.table-main-filters.filters-footer .pagination .dt-paging-button:hover {
  background: transparent;
  border: 0 !important;
}
.table-main-filters.filters-footer .pagination .dt-paging-button.disabled {
  opacity: 0.6;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button {
  color: #142A38;
  background: transparent;
  border: 0 !important;
  padding: 0;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button:hover {
  color: #0F9ECF;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[aria-current=page] {
  color: #0F9ECF;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=first], .table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=last], .table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=previous], .table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=next] {
  font-size: 0;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=first]:before {
  content: var(--fa);
  --fa: "";
  --fa--fa: "";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[data-dt-idx=previous]:before {
  content: var(--fa);
  --fa: "";
  --fa--fa: "";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[aria-label=Next]:before {
  content: var(--fa);
  --fa: "";
  --fa--fa: "";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
}
.table-main-filters.filters-footer .pagination .dt-paging-button button[aria-label=Last]:before {
  content: var(--fa);
  --fa: "";
  --fa--fa: "";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
}

table .badge {
  width: 100%;
  max-width: 100px;
}

.edit-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 200px;
  margin: 0 auto;
}
.edit-options a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}
.edit-options a:hover {
  opacity: 0.6;
}

/* icon */
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.4;
  color: #fff;
}

table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 1;
}

/*

::: RESPONSIVE :::

*/
@media all and (min-width: 1201px) {
  .dt-scroll-headInner {
    width: 100% !important;
  }
  .dt-scroll-headInner .table {
    width: 100% !important;
  }
}
@media all and (max-width: 992px) {
  .table-prices {
    overflow-x: auto;
  }
  .table-prices table th,
  .table-prices table td {
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }
  table th .btn,
  table td .btn {
    max-width: 100%;
    width: 100%;
    min-width: 150px !important;
  }
}
@media all and (max-width: 768px) {
  .table-main-filters {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table-main-filters.custom-filters .table-main-filters__item {
    margin-bottom: 0;
    border-bottom: 1px solid #E0E0E0;
  }
  .table-main-filters.custom-filters .table-main-filters__item:first-child {
    display: none;
  }
  .table-main-filters > * {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    gap: 0;
    margin-bottom: 16px;
  }
  .table-main-filters > *:last-child {
    margin-bottom: 0;
  }
  .table-main-filters > * .btn {
    width: 100%;
    min-width: 100% !important;
  }
  .table-main-filters.filters-footer {
    height: 110px;
  }
  .table-main-filters.filters-footer .table-main-filters__item > div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 !important;
  }
  .table-main-filters.filters-footer .table-main-filters__item > div > * {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    gap: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .table-main-filters.filters-footer .table-main-filters__item > div > *:last-child {
    margin-bottom: 0;
  }
  .table.table-main td .d-flex,
  .table.table-main th .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table.table-main td .d-flex *,
  .table.table-main th .d-flex * {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
/* ------------------------------------------------------------
     ACCORDION
------------------------------------------------------------ */
.accordion .accordion-item {
  border: 0;
}
.accordion .accordion-item .accordion-header .accordion-button {
  border: 0;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.accordion .accordion-item .accordion-collapse {
  border: 0;
}

.accordion-button {
  background: rgba(0, 157, 208, 0.2);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 16px 24px;
}
.accordion-button:not(.collapsed) {
  background: #BAE5F5;
}

/* ------------------------------------------------------------
     FAQ
------------------------------------------------------------ */
.faq-section {
  overflow: hidden;
}

.faq-item {
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  height: 100%;
  width: 100%;
}
.faq-item img {
  width: 100%;
  height: 170px;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-item h3 {
  min-height: 70px;
}

.faq-box {
  width: 100%;
  height: 120px;
}
.faq-box a {
  background: #E7E8EA;
  border-radius: 24px;
  padding: 16px;
  width: 100%;
  height: 100%;
  color: #142A38;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #142A38;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  gap: 16px;
}
.faq-box a:hover {
  background: #fff;
}
.faq-box p {
  font-weight: bold;
  margin: 0;
  width: 90%;
}

/* ------------------------------------------------------------
     HOME
------------------------------------------------------------ */
.main-body {
  width: 100%;
  height: 100%;
  padding-top: 92px;
  padding-left: 132px;
  overflow: hidden;
  padding-right: 16px;
}
.main-body.main--body-110 {
  padding-left: 110px;
}

.main-body__bottom {
  height: calc(100vh - 190px);
  overflow-y: auto;
}

/* :::::::::

Responsive

::::::::::*/
@media (max-width: 992px) {
  .main-body {
    padding-left: 16px;
    overflow-y: auto;
  }
  .main-body__bottom {
    height: auto;
    overflow: initial;
    margin-bottom: 24px;
  }
  .main-body__bottom.mt-5 {
    margin-top: 0 !important;
  }
  .main-body.main--body-110 {
    padding-left: 0;
  }
}
/* ------------------------------------------------------------
    LARGE
------------------------------------------------------------ */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1360px;
  }
}
/* ------------------------------------------------------------
    MEDIUM
------------------------------------------------------------ */
@media (max-width: 768px) {
  .mb-5 {
    margin-bottom: 2rem !important;
  }
}
/* ------------------------------------------------------------
    SMALL
------------------------------------------------------------ */