/* ------------------------------------*\
    #RESET
\*------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ------------------------------------*\
    #PAGE
\*------------------------------------ */
html {
  min-height: 100vh;
  color: #262626;
  font-family: "Exo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400; }
  html.active {
    overflow-x: hidden; }
    html.active body {
      overflow: hidden; }

body {
  background-color: #EFEFEF; }

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 20px; }

img {
  max-width: 100%; }

strong {
  font-weight: 700; }

svg, path, circle {
  transition: all .3s ease; }

*::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

*::-webkit-scrollbar-track {
  background: #e2e2e2;
  border-radius: 50px; }

*::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #222;
  width: 4.5px; }

::-webkit-scrollbar-thumb:horizontal {
  background: #222;
  border-radius: 50px; }

* {
  scrollbar-color: #222 #e2e2e2;
  scrollbar-width: thin; }

main {
  overflow: hidden; }

/* ------------------------------------*\
    #HEADINGS
\*------------------------------------ */
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: inherit; }

h1,
.h1 {
  font-size: 18px; }

h2,
.h2 {
  font-size: 16px; }

h3,
.h3 {
  font-size: 14px; }

/* ------------------------------------*\
    #link
\*------------------------------------ */
a {
  color: #262626;
  transition: color .15s ease; }
  a:hover {
    color: black; }
  a:focus, a:active {
    outline: none;
    color: black; }

/* ------------------------------------*\
    #HEADER
\*------------------------------------ */
.header-main {
  background-color: #EFEFEF;
  padding: 10px 12px 10px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 9999; }
  .header-main:before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #002E58;
    height: 1px;
    width: 55%; }
  .header-main h1 {
    font-weight: 500; }
  @media (max-width: 991px) {
    .header-main {
      padding: 10px; }
      .header-main:before {
        width: 100%; } }

.bars {
  display: none;
  width: 16px;
  height: 12px;
  margin-top: 2px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-right: 10px; }
  .bars:hover, .bars:focus {
    color: #000000; }
  .bars span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .3s ease-in-out; }
  .bars span:nth-child(1) {
    top: 0px; }
  .bars span:nth-child(2), .bars span:nth-child(3) {
    top: 4px; }
  .bars span:nth-child(4) {
    top: 8px; }
  .bars.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%; }
  .bars.active span:nth-child(2) {
    transform: rotate(45deg); }
  .bars.active span:nth-child(3) {
    transform: rotate(-45deg); }
  .bars.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%; }
  @media (max-width: 1279px) {
    .bars {
      display: block; } }

/* ------------------------------------*\
    #FOOTER
\*------------------------------------ */
.footer-main {
  background-color: #CAE1D5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  position: fixed;
  right: 0;
  bottom: 0;
  width: calc(100% - 254px); }
  .footer-main h2, .footer-main p {
    font-family: 'Titillium Web', sans-serif; }
  .footer-main .btn-outline-warning {
    width: 300px;
    max-width: 100%;
    justify-content: space-between;
    margin-left: 150px; }
  @media (max-width: 1279px) {
    .footer-main {
      width: 100%; } }
  @media (max-width: 991px) {
    .footer-main .btn-outline-warning {
      margin-left: 10px;
      width: 200px; } }

/* ------------------------------------*\
    #INPUT
\*------------------------------------ */
.form-floating {
  position: relative; }
  .form-floating label {
    font-size: 15px;
    letter-spacing: -0.015em;
    color: rgba(0, 0, 0, 0.25); }
    .form-floating label span {
      color: #FF6600; }
  .form-floating .form-control-plaintext ~ label, .form-floating .form-control:focus ~ label, .form-floating .form-control:not(:placeholder-shown) ~ label, .form-floating .form-floating > .form-select ~ label, .form-floating .form-floating > .custom-select ~ label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.015em;
    color: rgba(0, 0, 0, 0.25); }
  .form-floating .form-control {
    padding: 0 10px;
    border-radius: 0;
    height: 48px;
    transition: all .3s ease;
    font-size: 15px;
    letter-spacing: -0.015em;
    color: #262626;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-color: black; }
    .form-floating .form-control:focus, .form-floating .form-control:focus-visible {
      box-shadow: none; }
    .form-floating .form-control.error {
      border-bottom-color: #FF6600; }
  .form-floating select.form-control {
    padding: 15px 36px 0 10px !important; }
  .form-floating span.error {
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: -0.015em;
    color: #FF6600;
    margin-top: 3px;
    margin-bottom: -10px; }

.form-date {
  width: 210px; }

.form-select, .custom-select {
  background-image: url("../images/angle-down.svg"); }
  .form-select.form-select--custom, .form-select--custom.custom-select {
    background-position: calc(100% - 10px) 25px;
    padding: 15px 36px 0 10px !important; }

.switch {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .switch p {
    font-family: 'Titillium Web';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.015em; }

.switch-box input {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  opacity: 0; }

.switch-box label {
  height: 22px;
  width: 52px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  overflow: hidden;
  border-radius: 16px;
  background-color: #C4D9ED; }
  .switch-box label span {
    background-color: #fff;
    display: flex;
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    top: 2px;
    transform: translate(2px, 0);
    box-shadow: 0px 2px 4px rgba(0, 35, 11, 0.2); }
    .switch-box label span:after {
      position: absolute;
      right: 100%;
      top: 0;
      height: 100%;
      content: "YES";
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      width: 26px;
      font-family: 'Roboto';
      font-weight: 400;
      font-size: 12px;
      line-height: 20px;
      margin-right: 2px;
      margin-top: 1px; }

.switch-box input:checked + label {
  background-color: #00A1DE; }
  .switch-box input:checked + label span {
    transform: translate(32px, 0); }

.switch-box input:disabled + label {
  pointer-events: none;
  background-color: #C4D9ED; }

.daterangepicker {
  z-index: 999999 !important; }

.bootstrap-select {
  width: 100% !important; }
  .bootstrap-select .dropdown-toggle {
    padding: 19px 36px 0 10px !important;
    border-radius: 0;
    height: 48px;
    transition: all .3s ease;
    font-size: 15px;
    letter-spacing: -0.015em;
    color: #262626;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-color: black;
    filter: none; }
    .bootstrap-select .dropdown-toggle:after {
      background-image: url("../images/angle-down.svg");
      border: none;
      width: 15px;
      height: 9px;
      top: 27px;
      right: 10px;
      position: absolute; }
    .bootstrap-select .dropdown-toggle:hover, .bootstrap-select .dropdown-toggle:focus, .bootstrap-select .dropdown-toggle:active, .bootstrap-select .dropdown-toggle:focus:hover, .bootstrap-select .dropdown-toggle:focus-visible {
      box-shadow: none !important;
      border: 1px solid rgba(0, 0, 0, 0.05) !important;
      border-bottom-color: black !important;
      background-color: #fff !important;
      filter: none !important;
      outline: none !important; }
  .bootstrap-select .btn-light:not(:disabled):not(.disabled).active, .bootstrap-select .btn-light:not(:disabled):not(.disabled):active, .bootstrap-select .show > .btn-light.dropdown-toggle {
    background-color: #fff !important; }

.datepicker-days th {
  vertical-align: middle;
  line-height: 24px;
  font-size: 12px; }

.datepicker-days td {
  vertical-align: middle;
  line-height: 24px;
  font-size: 12px; }
  .datepicker-days td.active {
    background-color: #00A1DE !important;
    border-color: #00A1DE !important; }

.daterangepicker td.active, .daterangepicker td.end-date.active, .daterangepicker td.active:hover {
  background-color: #00A1DE !important; }

.daterangepicker td.in-range {
  background-color: #E6F4FB !important; }

/* Daterangepicker buttons and chips */
.daterangepicker .applyBtn {
  background-color: #00A1DE !important;
  border-color: #00A1DE !important;
  color: #FFFFFF !important;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:active,
.daterangepicker .applyBtn:focus {
  background-color: #008CC0 !important;
  border-color: #008CC0 !important;
  color: #FFFFFF !important;
}
.daterangepicker .cancelBtn {
  background-color: #003C71 !important;
  border-color: #003C71 !important;
  color: #FFFFFF !important;
}
.daterangepicker .cancelBtn:hover,
.daterangepicker .cancelBtn:active,
.daterangepicker .cancelBtn:focus {
  background-color: #004C92 !important;
  border-color: #004C92 !important;
  color: #FFFFFF !important;
}
.daterangepicker .ranges li {
  border: 1px solid #003C71;
  color: #003C71;
  background-color: #FFFFFF;
}
.daterangepicker .ranges li:hover {
  background-color: #E6F4FB;
  color: #003C71;
}

/* ------------------------------------*\
    #BUTTON
\*------------------------------------ */
.btn {
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px; }

.btn-primary {
  border: none;
  background-color: #00A1DE;
  color: #FFFFFF;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15)); }
  .btn-primary:hover, .btn-primary:focus:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    box-shadow: none;
    background-color: #008CC0;
    color: #FFFFFF; }

.btn-light {
  border: none;
  border-left: 5px solid #5AB146;
  background-color: #fff;
  display: flex;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15)); }
  .btn-light:hover, .btn-light:focus:hover, .btn-light:focus, .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active {
    border-left: 5px solid #5AB146;
    box-shadow: none;
    background-color: #f2f2f2; }

.btn-secondary {
  border: none;
  background-color: #003C71;
  color: #FFFFFF;
  display: flex;
  align-items: center; }
  .btn-secondary:hover, .btn-secondary:focus:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
    box-shadow: none;
    background-color: #004C92;
    color: #FFFFFF; }

/* Tertiary/Ghost button */
.btn-ghost {
  border: 1px solid #003C71;
  background-color: #FFFFFF;
  color: #003C71;
}
.btn-ghost:hover, .btn-ghost:focus, .btn-ghost:active {
  background-color: #E6F4FB;
  color: #003C71;
}

.btn-warning {
  border: none;
  border-left: 5px solid #fff;
  background-color: #FF6600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15)); }
  .btn-warning:hover, .btn-warning:focus:hover, .btn-warning:focus, .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active {
    border-left: 5px solid #fff;
    box-shadow: none;
    color: #fff;
    background-color: #e65c00; }

.btn-success {
  border: none;
  border-left: 5px solid #50A574;
  background-color: #fff;
  display: flex;
  align-items: center;
  color: #262626;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15)); }
  .btn-success:hover, .btn-success:focus:hover, .btn-success:focus, .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active {
    border-left: 5px solid #50A574;
    box-shadow: none;
    color: #262626;
    background-color: #f2f2f2; }

.btn-outline-warning {
  border: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  color: rgba(38, 38, 38, 0.25);
  font-family: 'Titillium Web';
  font-weight: 600;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15)); }
  .btn-outline-warning:hover, .btn-outline-warning:focus:hover, .btn-outline-warning:focus, .btn-outline-warning:not(:disabled):not(.disabled):active {
    box-shadow: none;
    color: rgba(38, 38, 38, 0.25);
    background-color: #f2f2f2; }
  .btn-outline-warning .plus {
    display: block; }
  .btn-outline-warning .check {
    display: none; }
  .btn-outline-warning.active {
    border-left: 5px solid #fff !important;
    background-color: #FF6600 !important;
    color: #fff !important; }
    .btn-outline-warning.active .triangle path {
      fill: #fff; }
    .btn-outline-warning.active .plus {
      display: none; }
    .btn-outline-warning.active .check {
      display: block; }

.btn-outline-dark {
  font-size: 14px;
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center; }
  .btn-outline-dark:hover, .btn-outline-dark:focus:hover, .btn-outline-dark:focus, .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active {
    color: #262626;
    box-shadow: none;
    background-color: #f2f2f2; }

.avatar {
  border-radius: 2px; }
  .avatar img {
    border-radius: 0; }
  .avatar .avatar-status {
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    left: 100%;
    bottom: 100%;
    transform: translate(-50%, 50%); }

/* ------------------------------------*\
    #CARD
\*------------------------------------ */
.card {
  border-radius: 0;
  border: none;
  box-shadow: none; }


.card-panel {
  padding: 6px;
  border-top: 2px solid #EFEFEF;
  border-left: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF; }
  .card-panel .card-panel-header {
    background-color: #CAE1D5;
    border-bottom: 3px solid #50A574;
    padding: 8px 11px 8px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    .card-panel .card-panel-header .numb {
      clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
      width: 32px;
      height: 32px;
      background-color: #50A574;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      padding-left: 7px;
      padding-top: 5px;
      position: absolute;
      left: 0;
      top: 0; }
    .card-panel .card-panel-header .list {
      gap: 25px; }
      .card-panel .card-panel-header .list a {
        text-decoration: none;
        font-weight: 600;
        font-size: 9px;
        line-height: 12px;
        letter-spacing: -0.015em; }
        .card-panel .card-panel-header .list a svg {
          margin-bottom: 6px; }
      @media (max-width: 480px) {
        .card-panel .card-panel-header .list {
          gap: 5px; } }
  .card-panel .card-panel-body {
    min-height: 140px;
    padding: 12px 25px;
    position: relative; }
    .card-panel .card-panel-body.card-panel-body--full-width {
      min-height: 350px; }
    .card-panel .card-panel-body p {
      font-weight: 500; }
    .card-panel .card-panel-body .warning-text {
      position: absolute;
      left: 30px;
      bottom: 10px; }
      .card-panel .card-panel-body .warning-text.warning-text--center {
        left: 50%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%); }
      .card-panel .card-panel-body .warning-text svg {
        min-width: 23px; }
    @media (max-width: 991px) {
      .card-panel .card-panel-body {
        padding: 10px; } }

/* ------------------------------------*\
    #ALERT
\*------------------------------------ */
.alert {
  height: 29px;
  display: flex;
  align-items: center;
  padding: 0 10px; }

.alert-warning {
  background-color: #FBB149;
  border-radius: 0;
  letter-spacing: -0.015em;
  font-weight: 500;
  font-size: 13.7842px;
  color: #262626; }

/* ------------------------------------*\
    #AUTH
\*------------------------------------ */
.auth {
  background-color: #EFEFEF; }

.auth-section {
  height: 100vh;
  display: flex; }
  .auth-section article {
    flex: 1 1 520px;
    display: flex;
    align-items: center; }
  .auth-section .auth-image-wrapper {
    width: calc(100% - 520px);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover; }
  .auth-section .card {
    background-color: #fff;
    padding: 70px 65px 44px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
    transform: translate(105px, 0);
    width: 480px;
    max-width: 100%; }
  .auth-section .card-body {
    padding: 0; }
  .auth-section .auth-logo {
    margin-bottom: 64px; }
  .auth-section h1 {
    line-height: 40px; }
  .auth-section .forgot-pass {
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 24px; }
  .auth-section .language-dropdown {
    margin-top: 60px; }
    .auth-section .language-dropdown label, .auth-section .language-dropdown .form-select, .auth-section .language-dropdown .custom-select {
      font-size: 14px; }
    .auth-section .language-dropdown .form-select, .auth-section .language-dropdown .custom-select {
      height: 33px;
      font-family: 'Roboto', sans-serif; }
  @media (max-width: 991px) {
    .auth-section article {
      padding: 0 20px;
      justify-content: center;
      flex: 1;
      max-width: 100%; }
    .auth-section .auth-image-wrapper {
      display: none; }
    .auth-section .auth-logo {
      margin-bottom: 30px;
      width: 150px; }
    .auth-section .card {
      padding: 50px 20px;
      transform: translate(0, 0); } }

/* ------------------------------------*\
    #TABS
\*------------------------------------ */
.tab-nav {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .tab-nav::-webkit-scrollbar {
    width: 2px;
    height: 2px; }
  .tab-nav::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 50px; }
  .tab-nav::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #f1f1f1;
    width: 4.2px; }
  .tab-nav::-webkit-scrollbar-thumb:horizontal {
    background: #f1f1f1;
    border-radius: 50px; }
  .tab-nav {
    scrollbar-color: #f1f1f1 transparent;
    scrollbar-width: thin; }
  .tab-nav .btn-warning {
    display: none; }
    @media (max-width: 1279px) {
      .tab-nav .btn-warning {
        display: flex;
        margin-right: 10px !important;
        margin-top: 3px; } }
  .tab-nav .nav {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap; }
    @media (max-width: 991px) {
      .tab-nav .nav {
        gap: 0; } }
  .tab-nav .nav-link {
    padding: 16px 17px;
    display: flex;
    align-items: center;
    color: rgba(38, 38, 38, 0.5);
    font-size: 16px;
    position: relative;
    white-space: nowrap; }
    .tab-nav .nav-link:before {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, -4px);
      width: calc(100% - 30px);
      height: 6px;
      background: #50A574;
      box-shadow: 0px 4px 4px rgba(24, 160, 251, 0.25);
      border-radius: 1px;
      content: "";
      transition: all .3s ease;
      visibility: hidden;
      opacity: 0; }
    .tab-nav .nav-link.active, .tab-nav .nav-link:hover {
      color: #262626; }
      .tab-nav .nav-link.active:before, .tab-nav .nav-link:hover:before {
        visibility: visible;
        opacity: 1; }
    .tab-nav .nav-link.no-border:before {
      display: none; }
    @media (max-width: 991px) {
      .tab-nav .nav-link {
        padding: 10px; } }
  @media (max-width: 991px) {
    .tab-nav {
      padding-bottom: 5px; } }

/* ------------------------------------*\
    #DASHBOARD
\*------------------------------------ */
.badge {
  height: 22px;
  padding: 0 6px;
  display: flex;
  align-items: center; }
  .badge.text-bg-warning {
    background-color: #FBB149;
    font-weight: 400;
    font-family: 'Exo';
    font-size: 16px;
    color: #262626; }

/* ------------------------------------*\
    #TABLE
\*------------------------------------ */
.table {
  display: table;
  min-width: 700px; }
  .table th {
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #003C71;
    background: #E6F4FB;
    border-top: 0;
    padding: 17px 16px;
    border-bottom: 1px solid #f0f0f0 !important; }
  .table td {
    border-top: 0;
    padding: 17px 16px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #545F66;
    background: #FFFFFF;
    border-bottom: 1px solid #f0f0f0; }

/* Striped rows */
.table.table-striped tbody tr:nth-of-type(odd),
.table.table-striped > tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) {
  --bs-table-accent-bg: #E6F4FB;
  background-color: #E6F4FB;
}

.table--border td {
  border-bottom: 1px solid #262626;
  padding: 10px 5px;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #262626;
  vertical-align: middle; }

.table--border .edit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; }

/**
 * Bootstrap Multiselect (http://davidstutz.de/bootstrap-multiselect/)
 *
 * Apache License, Version 2.0:
 * Copyright (c) 2012 - 2021 David Stutz
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a
 * copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *
 * BSD 3-Clause License:
 * Copyright (c) 2012 - 2021 David Stutz
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *    - Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *    - Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *    - Neither the name of David Stutz nor the names of its contributors may be
 *      used to endorse or promote products derived from this software without
 *      specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
span.multiselect-native-select {
  position: relative;
  width: 100%;
  display: flex; }
  span.multiselect-native-select .btn-group {
    display: flex;
    width: 100%;
    text-align-last: left; }

span.multiselect-native-select select {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px -1px -1px -3px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  left: 50%;
  top: 30px; }

.multiselect.dropdown-toggle:after {
  display: none; }

.multiselect {
  overflow: hidden;
  text-overflow: ellipsis; }

.custom-select {
  padding: 15px 36px 0 10px !important;
  border-radius: 0;
  height: 48px;
  transition: all .3s ease;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: #262626;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  border-bottom-color: black;
  background-size: 16px 12px;
  background-position: calc(100% - 10px) 25px; }

.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%; }

.custom-select:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.05); }

.multiselect-container .multiselect-filter > .fa-search {
  z-index: 1;
  padding-left: 0.75rem; }

.multiselect-container .multiselect-filter > input.multiselect-search {
  border: none;
  border-bottom: 1px solid lightgrey;
  padding-left: 2rem;
  margin-left: -1.625rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.multiselect-container .multiselect-filter > input.multiselect-search:focus {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.multiselect-container .multiselect-filter > .multiselect-moz-clear-filter {
  margin-left: -1.5rem;
  display: none; }

.multiselect-container .multiselect-option.multiselect-group-option-indented {
  padding-left: 1.75rem; }

.multiselect-container .multiselect-option,
.multiselect-container .multiselect-group,
.multiselect-container .multiselect-all {
  padding: 0.25rem 0.25rem 0.25rem 0.75rem; }

.multiselect-container .multiselect-option.dropdown-item,
.multiselect-container .multiselect-group.dropdown-item,
.multiselect-container .multiselect-all.dropdown-item,
.multiselect-container .multiselect-option.dropdown-toggle,
.multiselect-container .multiselect-group.dropdown-toggle,
.multiselect-container .multiselect-all.dropdown-toggle {
  cursor: pointer; }

.multiselect-container .multiselect-option .form-check-label,
.multiselect-container .multiselect-group .form-check-label,
.multiselect-container .multiselect-all .form-check-label {
  cursor: pointer; }

.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active {
  background-color: #fff;
  color: black; }

.multiselect-container .multiselect-option:hover,
.multiselect-container .multiselect-group:hover,
.multiselect-container .multiselect-all:hover,
.multiselect-container .multiselect-option:focus,
.multiselect-container .multiselect-group:focus,
.multiselect-container .multiselect-all:focus {
  background-color: #066B37 !important; }
  .multiselect-container .multiselect-option:hover .form-check-label,
  .multiselect-container .multiselect-group:hover .form-check-label,
  .multiselect-container .multiselect-all:hover .form-check-label,
  .multiselect-container .multiselect-option:focus .form-check-label,
  .multiselect-container .multiselect-group:focus .form-check-label,
  .multiselect-container .multiselect-all:focus .form-check-label {
    color: #fff !important; }

.multiselect-container .multiselect-option .form-check,
.multiselect-container .multiselect-group .form-check,
.multiselect-container .multiselect-all .form-check {
  padding: 0 5px 0 20px;
  display: flex;
  align-items: center; }

.multiselect-container .multiselect-option:focus,
.multiselect-container .multiselect-group:focus,
.multiselect-container .multiselect-all:focus {
  outline: none; }

.form-inline .multiselect-container span.form-check {
  padding: 3px 20px 3px 40px; }

.input-group.input-group-sm > .multiselect-native-select .multiselect {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  padding-right: 1.75rem;
  height: calc(4em); }

.input-group > .multiselect-native-select {
  flex: 1 1 auto;
  width: 1%; }

.input-group > .multiselect-native-select > div.btn-group {
  width: 100%; }

.input-group > .multiselect-native-select:not(:first-child) .multiselect {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group > .multiselect-native-select:not(:last-child) .multiselect {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.form-check-input {
  float: none;
  margin-top: 0; }

.aside-pullout {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 427px;
  max-width: 100%;
  transition: all .3s ease-in-out;
  transform: translate(100%, 0);
  z-index: 999999;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff; }
  .aside-pullout.is-active {
    transform: translate(0, 0); }
  .aside-pullout.aside-pullout--shipment {
    width: 1024px; }

.aside-pullout__header {
  padding: 30px;
  margin-bottom: 15px; }
  .aside-pullout__header h1 {
    font-family: 'Titillium Web';
    font-size: 24px;
    line-height: 37px;
    color: #262626;
    margin-bottom: 0; }
  .aside-pullout__header h2 {
    font-weight: 600;
    font-family: 'Titillium Web'; }
  .aside-pullout__header img {
    mix-blend-mode: luminosity; }

.aside-pullout__body {
  padding: 0 30px 30px;
  height: 100%;
  overflow: auto; }
  .aside-pullout__body h3 {
    font-family: 'Titillium Web';
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.015em;
    color: #262626; }
  .aside-pullout__body input.form-control {
    font-size: 15px;
    background-color: transparent; }
  .aside-pullout__body .row {
    margin: 0 -5px; }
    .aside-pullout__body .row > div {
      padding: 0 5px; }
  .aside-pullout__body .form-floating .form-control-plaintext ~ label, .aside-pullout__body .form-floating .form-control:focus ~ label, .aside-pullout__body .form-floating .form-control:not(:placeholder-shown) ~ label, .aside-pullout__body .form-floating .form-floating > .form-select ~ label, .aside-pullout__body .form-floating .form-floating > .custom-select ~ label, .aside-pullout__body .form-floating .form-floating > .custom-select ~ label {
    font-weight: 500;
    color: #262626;
    opacity: 1;
    font-size: 12px; }
  .aside-pullout__body .form-control-wrapper {
    border-radius: 0;
    height: 48px;
    transition: all .3s ease;
    font-size: 15px;
    letter-spacing: -0.015em;
    color: #262626;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-color: black; }
  .aside-pullout__body .remove {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    color: #FF4D4F; }
  .aside-pullout__body .form-select-green {
    border-bottom-color: #50a574; }
  @media (max-width: 480px) {
    .aside-pullout__body button.btn-warning span {
      display: none; } }

.aside-pullout--shipment .aside-pullout__body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 30px; }

.aside-pullout--shipment h2 {
  font-weight: 600;
  font-family: 'Titillium Web'; }

.aside-pullout--shipment .table {
  display: table; }
  .aside-pullout--shipment .table th {
    border-bottom: 3px solid #262626 !important;
    font-family: 'Titillium Web';
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -0.015em; }
  .aside-pullout--shipment .table td {
    border-bottom: 1px solid #262626;
    font-family: 'Titillium Web';
    color: #262626;
    padding-top: 12px;
    padding-bottom: 12px;
    display: table-cell;
    vertical-align: middle; }

.aside-pullout--shipment .aside-pullout__footer {
  background-color: #CAE1D5;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between; }
  .aside-pullout--shipment .aside-pullout__footer p {
    font-family: 'Titillium Web';
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -0.015em;
    color: #262626; }
  @media (max-width: 768px) {
    .aside-pullout--shipment .aside-pullout__footer {
      flex-direction: column; } }

@media (max-width: 768px) {
  .aside-pullout--shipment .aside-pullout__body {
    padding: 20px 0 0; }
    .aside-pullout--shipment .aside-pullout__body > div:not(.aside-pullout__footer) {
      padding: 0 20px; } }

/* ------------------------------------*\
    #DASHBOARD
\*------------------------------------ */
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  transition: all .3s ease-in-out;
  visibility: hidden;
  opacity: 0; }
  .overlay.is-active {
    visibility: visible;
    opacity: 1; }

.notification {
  position: absolute;
  top: 11px;
  right: 50px;
  z-index: 999999;
  border: none; }
  @media (max-width: 1279px) {
    .notification {
      position: relative;
      top: 0;
      right: 0;
      width: 100%; } }
  @media (max-width: 768px) {
    .notification {
      flex-wrap: wrap;
      height: auto;
      line-height: 1.3;
      padding: 10px; }
      .notification a {
        margin-left: 0 !important; } }

.dashboard {
  padding-left: 254px; }
  @media (max-width: 1279px) {
    .dashboard {
      padding-left: 0; } }

.control-panel {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: all .3s ease; }
  .control-panel.control-panel-footer-fixed {
    padding-bottom: 70px; }
  .control-panel.active {
    transform: translate(254px, 0); }

.control-panel-wrapper {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column; }

.dashboard-wrapper {
  overflow: hidden;
  padding-right: 32px;
  padding-bottom: 30px; }
  .dashboard-wrapper .card-body-gray {
    padding: 0; }
  @media (max-width: 1279px) {
    .dashboard-wrapper {
      padding-right: 0; }
      .dashboard-wrapper > .row {
        margin: 0 -5px; }
        .dashboard-wrapper > .row > div {
          padding: 0 5px; } }
  @media (max-width: 991px) {
    .dashboard-wrapper {
      padding-right: 0; }
      .dashboard-wrapper .card-body {
        padding: 20px 10px !important; }
      .dashboard-wrapper .card-body-gray {
        padding: 0 !important; } }

.shipments-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1; }

.aside-main {
  background-color: #066B37;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 254px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease; }
  .aside-main.active {
    transform: translate(0, 0); }
  .aside-main .aside-header {
    display: flex;
    justify-content: center;
    padding: 40px 0; }
  .aside-main .aside-body {
    flex: 1 1 100%;
    overflow: auto; }
  .aside-main .aside-footer {
    padding: 20px; }
  .aside-main .aside-link {
    background-color: transparent;
    box-shadow: none;
    padding: 13px 16px;
    font-size: 14px;
    color: #50A574;
    font-family: 'Titillium Web', sans-serif;
    display: flex;
    align-items: center;
    text-decoration: none; }
  .aside-main .accordion-item {
    background-color: transparent;
    border: none; }
  .aside-main .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 13px 16px;
    font-size: 14px;
    color: #50A574;
    font-family: 'Titillium Web', sans-serif;
    display: flex;
    align-items: center; }
    .aside-main .accordion-button path {
      fill: #50A574; }
    .aside-main .accordion-button.collapsed {
      color: #fff; }
      .aside-main .accordion-button.collapsed path {
        fill: #fff; }
    .aside-main .accordion-button:after {
        background-image: none;
        width: 8px;
        height: 5px;
        background-size: 8px;
    }
  .aside-main .accordion-body {
    padding: 8px 10px 8px 40px; }
  .aside-main .list-group {
    border-radius: 0; }
  .aside-main .list-group-item {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 10px 0;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px; }
  .aside-main .language-dropdown label, .aside-main .language-dropdown .form-select, .aside-main .language-dropdown .custom-select {
    font-size: 14px;
    color: #fff; }
  .aside-main .language-dropdown .form-select, .aside-main .language-dropdown .custom-select {
    height: 33px;
    border-radius: 16px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #fff;
    background-color: #066B37;
    background-image: url("../images/select-arrow-white.svg");
    background-size: 10px 7px;
    background-position: right .75rem center; }
  @media (max-width: 1279px) {
    .aside-main {
      transform: translate(-100%, 0); } }

.tab-content .grid {
  display: flex;
  gap: 14px; }

.tab-content .row {
  width: 100%;
  margin: 0 -7px; }
  .tab-content .row > div {
    padding: 0 7px; }

.tab-content .status-wrapper-box {
  flex: 1 1 60%; }

.tab-content .table a {
  color: #50A574;
  font-size: 14px;
  font-family: "Roboto", sans-serif; }

@media (max-width: 991px) {
  .tab-content .row {
    width: auto; }
  .tab-content .grid {
    display: block; }
  .tab-content .status-wrapper-box {
    width: 100%;
    margin-top: 15px; } }

.number-box {
  margin-bottom: 16px; }
  .number-box .number-box-header {
    padding-top: 10px;
    border-bottom: 3px solid #262626; }
    .number-box .number-box-header h2 {
      margin-bottom: 13px; }
  .number-box .number-box-body {
    margin-top: 40px;
    font-size: 48px;
    line-height: 40px;
    color: #262626;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative; }
    .number-box .number-box-body .percent-numb {
      position: absolute;
      left: 0;
      bottom: 100%;
      display: flex;
      align-items: center;
      font-weight: 400;
      font-size: 14px;
      line-height: 19px;
      color: rgba(38, 38, 38, 0.75);
      margin-bottom: 10px; }

.status-wrapper-box {
  background-image: url("../images/status-img.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding: 20px 25px 23px; }

.status-wrapper-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .status-wrapper-box .status-wrapper-box-header {
    margin-bottom: 110px;
    border-bottom: 1px solid #fff; }
    .status-wrapper-box .status-wrapper-box-header h2 {
      color: #fff;
      margin-bottom: 13px; }
  .status-wrapper-box .status-wrapper-box-body .form-control {
    border: none; }
  .status-wrapper-box .status-wrapper-box-body .form-floating label {
    color: #262626;
    opacity: 1; }

.latest-shipments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: 3px solid #262626;
  padding-bottom: 6px;
  padding-top: 6px; }

.list-group-bullet {
  padding-left: 10px; }
  .list-group-bullet .list-group-item {
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
    padding-right: 0; }
    .list-group-bullet .list-group-item:last-child .bullet:before {
      display: none; }
    .list-group-bullet .list-group-item svg {
      min-width: 18px; }
  .list-group-bullet h3 {
    color: #212B36;
    margin-bottom: 0;
    font-weight: 600; }
  .list-group-bullet small {
    font-size: 12px;
    line-height: 18px;
    color: #637381; }
  .list-group-bullet .bullet {
    width: 12px;
    height: 12px;
    background-color: #262626;
    border-radius: 50%;
    position: absolute;
    right: 100%;
    top: 10px; }
    .list-group-bullet .bullet:before {
      position: absolute;
      left: 5px;
      height: 32px;
      width: 1px;
      content: "";
      top: 100%;
      background-color: rgba(145, 158, 171, 0.24);
      margin-top: 7px; }
    .list-group-bullet .bullet.text-bg-warning {
      background-color: #FFAB00; }
    .list-group-bullet .bullet.text-bg-info {
      background-color: #00B8D9; }
    .list-group-bullet .bullet.text-bg-danger {
      background-color: #FF5630; }
    .list-group-bullet .bullet.text-bg-success {
      background-color: #36B37E; }

.panel-header {
  margin-bottom: 40px; }

.shipments-accordion-wrapper {
  border: 3px solid #000000;
  border-radius: 0px 5px 5px 0px;
  margin-bottom: 37px;
  position: relative; }
  .shipments-accordion-wrapper.disabled {
    pointer-events: none;
    border: 3px solid #DADADA; }
    .shipments-accordion-wrapper.disabled .accordion-trigger {
      background-color: #DADADA; }
  .shipments-accordion-wrapper .accordion-left {
    padding: 20px;
    flex: 1; }
  .shipments-accordion-wrapper .accordion-right {
    background-color: #F7F7F7;
    padding: 20px;
    flex: 0 0 266px;
    display: flex;
    flex-direction: column; }
  .shipments-accordion-wrapper .accordion-trigger {
    position: absolute;
    left: 100%;
    top: 100%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 5; }
    .shipments-accordion-wrapper .accordion-trigger .minus {
      display: none; }
    .shipments-accordion-wrapper .accordion-trigger.active .plus {
      display: none; }
    .shipments-accordion-wrapper .accordion-trigger.active .minus {
      display: flex !important; }
  @media (max-width: 991px) {
    .shipments-accordion-wrapper .accordion-visible-body {
      display: block !important; }
    .shipments-accordion-wrapper .accordion-trigger {
      left: 50%; }
    .shipments-accordion-wrapper .accordion-right {
      padding-bottom: 40px; } }

.accordion-hidden-body {
  border-top: 1px solid #DDDDDD;
  height: auto;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  max-height: 0; }
  .accordion-hidden-body.active {
    max-height: 99999px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0); }
  .accordion-hidden-body .accordion-left-body {
    padding: 20px 10px; }
    .accordion-hidden-body .accordion-left-body article {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px; }
    .accordion-hidden-body .accordion-left-body small {
      font-weight: 700;
      font-size: 9px;
      line-height: 11px;
      letter-spacing: -0.015em;
      color: #DADADA;
      white-space: nowrap; }
  .accordion-hidden-body .accordion-right-body {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #000000; }
  .accordion-hidden-body .flag {
    display: flex; }
    .accordion-hidden-body .flag .flag-icon {
      margin-right: 14px; }
    .accordion-hidden-body .flag .flag-content p {
      font-size: 15px;
      line-height: 20px;
      letter-spacing: -0.015em;
      color: #000000;
      font-weight: 500;
      margin-bottom: 0; }
  @media (max-width: 991px) {
    .accordion-hidden-body {
      display: block !important; }
      .accordion-hidden-body .accordion-right {
        padding-bottom: 40px; }
      .accordion-hidden-body .accordion-left-body {
        padding: 0; }
      .accordion-hidden-body small {
        margin-left: 20px; } }

.accordion-left-header,
.accordion-right-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px; }
  .accordion-left-header p,
  .accordion-right-header p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.015em;
    color: #000000;
    line-height: 20px; }
  .accordion-left-header strong.text-warning,
  .accordion-right-header strong.text-warning {
    font-size: 9px;
    line-height: 11px;
    letter-spacing: -0.015em; }

.accordion-left-body {
  padding-right: 10px; }
  .accordion-left-body ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px; }
    .accordion-left-body ul.step-1 .line:before {
      width: 0; }
    .accordion-left-body ul.step-1 li:nth-child(2) .icon-wrapper {
      background-color: #000;
      border-color: #000; }
    .accordion-left-body ul.step-1 li:nth-child(2) p {
      color: #000; }
    .accordion-left-body ul.step-2 .line:before {
      width: 25%; }
    .accordion-left-body ul.step-2 li:nth-child(2) .icon-wrapper,
    .accordion-left-body ul.step-2 li:nth-child(3) .icon-wrapper {
      background-color: #000;
      border-color: #000; }
    .accordion-left-body ul.step-2 li:nth-child(2) p,
    .accordion-left-body ul.step-2 li:nth-child(3) p {
      color: #000; }
    .accordion-left-body ul.step-3 .line:before {
      width: 50%; }
    .accordion-left-body ul.step-3 li:nth-child(2) .icon-wrapper,
    .accordion-left-body ul.step-3 li:nth-child(3) .icon-wrapper,
    .accordion-left-body ul.step-3 li:nth-child(4) .icon-wrapper {
      background-color: #000;
      border-color: #000; }
    .accordion-left-body ul.step-3 li:nth-child(2) p,
    .accordion-left-body ul.step-3 li:nth-child(3) p,
    .accordion-left-body ul.step-3 li:nth-child(4) p {
      color: #000; }
    .accordion-left-body ul.step-4 .line:before {
      width: 75%; }
    .accordion-left-body ul.step-4 li:nth-child(2) .icon-wrapper,
    .accordion-left-body ul.step-4 li:nth-child(3) .icon-wrapper,
    .accordion-left-body ul.step-4 li:nth-child(4) .icon-wrapper,
    .accordion-left-body ul.step-4 li:nth-child(5) .icon-wrapper {
      background-color: #000;
      border-color: #000; }
    .accordion-left-body ul.step-4 li:nth-child(2) p,
    .accordion-left-body ul.step-4 li:nth-child(3) p,
    .accordion-left-body ul.step-4 li:nth-child(4) p,
    .accordion-left-body ul.step-4 li:nth-child(5) p {
      color: #000; }
    .accordion-left-body ul.step-5 .line:before {
      width: 100%; }
    .accordion-left-body ul.step-5 li:nth-child(2) .icon-wrapper,
    .accordion-left-body ul.step-5 li:nth-child(3) .icon-wrapper,
    .accordion-left-body ul.step-5 li:nth-child(4) .icon-wrapper,
    .accordion-left-body ul.step-5 li:nth-child(5) .icon-wrapper,
    .accordion-left-body ul.step-5 li:nth-child(6) .icon-wrapper {
      background-color: #000;
      border-color: #000; }
    .accordion-left-body ul.step-5 li:nth-child(2) p,
    .accordion-left-body ul.step-5 li:nth-child(3) p,
    .accordion-left-body ul.step-5 li:nth-child(4) p,
    .accordion-left-body ul.step-5 li:nth-child(5) p,
    .accordion-left-body ul.step-5 li:nth-child(6) p {
      color: #000; }
  .accordion-left-body .line {
    position: absolute;
    left: 20px;
    top: 20px;
    height: 1px;
    width: calc(100% - 42px);
    content: "";
    background-color: #DADADA; }
    .accordion-left-body .line:before {
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 1px;
      content: "";
      background-color: #000; }
  .accordion-left-body li {
    text-align: center;
    position: relative; }
  .accordion-left-body .icon-wrapper {
    width: 44px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DADADA;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    position: relative;
    background-color: #fff;
    z-index: 5; }

.accordion-visible-body .accordion-left-body p {
  font-size: 9px;
  color: #DADADA;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  margin-top: 10px;
  white-space: nowrap; }
  @media (max-width: 480px) {
    .accordion-visible-body .accordion-left-body p {
      font-size: 7px; } }

.accordion-right-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; }
  .accordion-right-body > div {
    text-align: center;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .accordion-right-body > div p {
      font-weight: 700;
      font-size: 9px;
      line-height: 11px;
      letter-spacing: -0.015em;
      color: #000000;
      margin-bottom: 0;
      margin-top: 15px; }
  .accordion-right-body .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .accordion-right-body .icon-wrapper .badge {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(0, -50%); }
      .accordion-right-body .icon-wrapper .badge.text-bg-warning {
        background-color: #FF5722 !important;
        color: #fff !important; }
  .accordion-right-body .vertical-divider {
    height: 90px;
    width: 1px;
    background-color: #000; }

.aside-reports {
  padding-top: 28px;
  padding-right: 30px; }
  .aside-reports .btn-success {
    margin-bottom: 37px; }
  .aside-reports .btn-outline-dark {
    height: 40px;
    color: #262626;
    font-weight: 500;
    font-size: 16px;
    line-height: 40px;
    margin-top: 15px; }

.booking-success {
  border-top: 7px solid #066B37;
  text-align: center;
  padding-top: 50px; }
  .booking-success h1 {
    font-family: 'Titillium Web';
    font-weight: 300;
    font-size: 48px;
    line-height: 40px;
    color: #262626;
    margin-bottom: 27px; }
  .booking-success p {
    margin-bottom: 40px;
    font-family: 'Titillium Web';
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.015em;
    color: #262626; }

.dropup .dropup-body {
  height: auto;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  max-height: 0; }
  .dropup .dropup-body.active {
    max-height: 99999px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0); }

.dropup .dropup-trigger {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: space-between;
  font-family: 'Titillium Web';
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.015em; }
  .dropup .dropup-trigger svg {
    transition: all .3s ease; }
  .dropup .dropup-trigger.active svg {
    transform: rotate(180deg); }

.mobile-buttons {
  display: none; }
  @media (max-width: 991px) {
    .mobile-buttons {
      display: flex; } }

.filter-aside-pullout h2, .filter-aside-pullout .button-wrapper {
  display: none; }

@media (max-width: 991px) {
  .filter-aside-pullout {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 427px;
    max-width: 100%;
    transition: all .3s ease-in-out;
    transform: translate(100%, 0);
    z-index: 999999;
    padding: 0;
    background-color: #fff;
    display: block !important;
    padding: 32px; }
    .filter-aside-pullout h2 {
      display: block;
      font-family: 'Titillium Web';
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: -0.015em;
      color: #262626; }
    .filter-aside-pullout .remove {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-family: 'Titillium Web', sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 40px;
      color: #FF4D4F; }
    .filter-aside-pullout .button-wrapper {
      display: flex !important;
      margin-top: 30px; }
    .filter-aside-pullout .form-floating {
      margin-bottom: 10px; }
    .filter-aside-pullout.is-active {
      transform: translate(0, 0); } }

.aside-reports h2 {
  display: none; }

@media (max-width: 991px) {
  .aside-reports {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 400px;
    max-width: 100%;
    transition: all .3s ease-in-out;
    transform: translate(100%, 0);
    z-index: 999999;
    padding: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 32px; }
    .aside-reports h2 {
      display: block;
      font-family: 'Titillium Web';
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: -0.015em;
      color: #262626; }
    .aside-reports .btn-success {
      display: none; }
    .aside-reports.is-active {
      transform: translate(0, 0); }
    .aside-reports .row {
      padding: 50px 50px 0; }
    .aside-reports .aside-reports-body {
      flex: 1; }
    .aside-reports .aside-reports-footer {
      display: flex;
      justify-content: flex-end;
      margin-top: 0; }
      .aside-reports .aside-reports-footer .btn-outline-dark {
        border: none;
        border-left: 5px solid #fff;
        background-color: #FF6600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
        width: 175px; }
        .aside-reports .aside-reports-footer .btn-outline-dark path {
          fill: #fff; }
        .aside-reports .aside-reports-footer .btn-outline-dark:hover, .aside-reports .aside-reports-footer .btn-outline-dark:focus:hover, .aside-reports .aside-reports-footer .btn-outline-dark:focus, .aside-reports .aside-reports-footer .btn-outline-dark:not(:disabled):not(.disabled).active, .aside-reports .aside-reports-footer .btn-outline-dark:not(:disabled):not(.disabled):active {
          border-left: 5px solid #fff;
          box-shadow: none;
          color: #fff;
          background-color: #cc5200 !important; } }

.text-body {
  color: #262626 !important; }

.text-warning {
  color: #FF6600 !important; }

.text-success {
  color: #50A574 !important; }

.text-secondary {
  color: #C8C8C8 !important; }

.text-bg-success {
  background-color: #5AB146 !important; }

.fs-6 {
  font-size: 14px !important; }

@media (max-width: 768px) {
  .mobile-remove {
    display: none !important; } }

/*# sourceMappingURL=app.css.map */
