/* COLORS */
/* YELLOW */
/* YELLOW HOVER */
/* DARK GRAY */
/* PURPLE */
/* DARK PURPLE */
/* LIGHT PURPLE */
/* NEW COLORS */
/* DARK GREEN */
/* LIGHT GREEN */
/* SALMON */
/* WHITE */
/* FONT SIZES */
/* SPACING */
/* RADIUS */
@font-face {
  font-family: "Centrale Sans Bold";
  src: url("/fonts/CentraleSans-Bold.woff2") format("woff2"), url("/fonts/CentraleSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Galano Grotesque DEMO";
  src: url("/fonts/GalanoGrotesqueDEMO-Bold.woff2") format("woff2"), url("/fonts/GalanoGrotesqueDEMO-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Centrale Sans XLight";
  src: url("/fonts/CentraleSans-XLight.woff2") format("woff2"), url("/fonts/CentraleSans-XLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Centrale Sans XLight";
  src: url("/fonts/CentraleSans-Bold.woff2") format("woff2"), url("/fonts/CentraleSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Centrale Sans XLight";
  font-size: 14px;
  overflow-x: hidden;
  background: #005959;
  color: #fff;
  width: 100%;
}

a {
  transition: all 0.2s ease-out;
}

img {
  max-width: 100%;
}

/* ASSETS */
.rounded-md {
  border-radius: 0.375rem;
}

.left-bordered-color1 {
  border-left: 3px solid #8bc44a;
}

@media (min-width: 768px) {
  .left-bordered-md-color1 {
    border-left: 3px solid #8bc44a;
  }
}

.border-dashed-color1 {
  border: 2px dashed #8bc44a;
}

.left-bordered-white {
  border-left: 3px solid white;
}

@media (min-width: 768px) {
  .left-bordered-md-white {
    border-left: 3px solid white;
  }
}

.border-dashed-white {
  border: 2px dashed white;
}

.btn {
  border: none;
  padding: 7px 20px;
  border-radius: 8px;
}
.btn:hover, .btn:focus, .btn:active {
  border: none;
  box-shadow: none;
}

.btn-primary {
  background: #8bc44a;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #e2b42d;
}

.btn-color1 {
  background: #8bc44a;
  color: #fff;
}
.btn-color1:hover, .btn-color1:focus, .btn-color1:active {
  background: #e2b42d;
  color: #fff;
}

.btn-outline-color1 {
  background: transparent;
  color: #8bc44a;
  border: 1px solid #8bc44a;
}
.btn-outline-color1:hover, .btn-outline-color1:focus, .btn-outline-color1:active {
  background: #8bc44a;
  color: #fff;
  border: 1px solid #8bc44a;
}

.btn-clean {
  background: transparent;
  border: none;
  padding: 0;
}

/* TEXT COLOR */
.text-color1 {
  color: #8bc44a;
}

.text-color4 {
  color: #005959;
}

/* LINK COLORS */
.link-color1 {
  color: #8bc44a;
}
.link-color1:hover, .link-color1:focus, .link-color1:active {
  color: #e2b42d;
}
.link-color1.hover-white:hover, .link-color1.hover-white:focus, .link-color1.hover-white:active {
  color: #fff;
}

/* BACKGROUNDS */
.background-color1 {
  background: #8bc44a;
}

.form-control {
  border: none;
  font-size: 14px;
}
.form-control:focus, .form-control:hover {
  box-shadow: none;
}

.form-default .form-control {
  border: 1px solid #fff;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
  color: #8bc44a;
}
.form-default select.form-control option {
  color: #495057;
}
.form-default ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8bc44a;
  opacity: 0.8;
  /* Firefox */
}
.form-default :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8bc44a;
  opacity: 0.8;
  /* Firefox */
}
.form-default ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8bc44a;
  opacity: 0.8;
  /* Firefox */
}
.form-default :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8bc44a;
  opacity: 0.8;
  /* Firefox */
}
.form-default ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8bc44a;
  opacity: 0.8;
  /* Firefox */
}
.form-default .custom-checkbox input {
  display: none;
}
.form-default .custom-checkbox input + span {
  display: inline-block;
  position: relative;
  background: transparent;
  height: 12px;
  width: 12px;
  border-radius: 30px;
  border: 2px solid #8bc44a;
  margin-right: 2px;
}
.form-default .custom-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 4px;
  height: 4px;
  background: #8bc44a;
  border-radius: 30px;
}
.form-default .custom-checkbox-square input {
  display: none;
}
.form-default .custom-checkbox-square input + span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  background: transparent;
  height: 12px;
  width: 12px;
  border: 2px solid #8bc44a;
  margin-right: 2px;
}
.form-default .custom-checkbox-square input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 4px;
  height: 4px;
  background: #8bc44a;
}

@media (min-width: 768px) {
  .list-4-items-row .item {
    width: calc(100% / 4);
    padding-right: 10px;
  }
}

.default-modal {
  top: 40px;
}
.default-modal .modal-content {
  background: #1f1f1f;
  border: none;
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.2);
}
.default-modal .modal-header {
  text-align: center;
  border: none;
}
.default-modal .modal-header h5 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #8bc44a;
  width: 100%;
}
.default-modal .modal-header .close {
  color: #8bc44a;
  opacity: 1;
  text-shadow: none;
}
.default-modal .modal-header .close:hover {
  opacity: 1;
}

#nprogress .bar {
  background: #8bc44a;
}
#nprogress .peg {
  box-shadow: 0 0 10px #8bc44a, 0 0 5px #8bc44a;
}
#nprogress .spinner-icon {
  border-top-color: #8bc44a;
  border-left-color: #8bc44a;
}

.font-size-xxxSmall {
  font-size: 10px !important;
}

.font-size-xxSmall {
  font-size: 10px !important;
}

.font-size-xSmall {
  font-size: 12px !important;
}

.font-size-small {
  font-size: 14px !important;
}

.font-size-regular {
  font-size: 18px !important;
}

.font-size-medium {
  font-size: 25px !important;
}

.font-size-large {
  font-size: 32px !important;
}

.font-size-xLarge {
  font-size: 42px !important;
}

.font-size-xxLarge {
  font-size: 55px !important;
}

.font-size-xxxLarge {
  font-size: 65px !important;
}

@media (min-width: 768px) {
  .font-size-md-xxxSmall {
    font-size: 10px !important;
  }

  .font-size-md-xxSmall {
    font-size: 10px !important;
  }

  .font-size-md-xSmall {
    font-size: 12px !important;
  }

  .font-size-md-small {
    font-size: 14px !important;
  }

  .font-size-md-regular {
    font-size: 18px !important;
  }

  .font-size-md-medium {
    font-size: 25px !important;
  }

  .font-size-md-large {
    font-size: 32px !important;
  }

  .font-size-md-xLarge {
    font-size: 42px !important;
  }

  .font-size-md-xxLarge {
    font-size: 55px !important;
  }

  .font-size-md-xxxLarge {
    font-size: 65px !important;
  }
}
@media (min-width: 1024px) {
  .font-size-lg-xxxSmall {
    font-size: 10px !important;
  }

  .font-size-lg-xxSmall {
    font-size: 10px !important;
  }

  .font-size-lg-xSmall {
    font-size: 12px !important;
  }

  .font-size-lg-small {
    font-size: 14px !important;
  }

  .font-size-lg-regular {
    font-size: 18px !important;
  }

  .font-size-lg-medium {
    font-size: 25px !important;
  }

  .font-size-lg-large {
    font-size: 32px !important;
  }

  .font-size-lg-xLarge {
    font-size: 42px !important;
  }

  .font-size-lg-xxLarge {
    font-size: 55px !important;
  }

  .font-size-lg-xxxLarge {
    font-size: 65px !important;
  }
}
@media (min-width: 1280px) {
  .font-size-xl-xxxSmall {
    font-size: 10px !important;
  }

  .font-size-xl-xxSmall {
    font-size: 10px !important;
  }

  .font-size-xl-xSmall {
    font-size: 12px !important;
  }

  .font-size-xl-small {
    font-size: 14px !important;
  }

  .font-size-xl-regular {
    font-size: 18px !important;
  }

  .font-size-xl-medium {
    font-size: 25px !important;
  }

  .font-size-xl-large {
    font-size: 32px !important;
  }

  .font-size-xl-xLarge {
    font-size: 42px !important;
  }

  .font-size-xl-xxLarge {
    font-size: 55px !important;
  }

  .font-size-xl-xxxLarge {
    font-size: 65px !important;
  }
}
.font-family1 {
  font-family: "Centrale Sans XLight";
}

.font-family1-bold {
  font-family: "Centrale Sans Bold";
}

.font-family2 {
  font-family: "Galano Grotesque DEMO";
}

/* VISIBILITY */
.hover-effect .show-on-hover {
  display: none;
}
.hover-effect:hover .show-on-hover {
  display: inline-block;
}
.hover-effect:hover .hide-on-hover {
  display: none;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow) !important;
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0,0,0,0.05) !important;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow) !important;
}

.default-tabs {
  border-bottom: 0;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .default-tabs {
    flex-direction: row;
  }
}
.default-tabs .nav-tabs {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: none;
}
@media (min-width: 768px) {
  .default-tabs .nav-tabs {
    flex-direction: row;
  }
}
.default-tabs .nav-item {
  max-width: 320px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .default-tabs .nav-item {
    margin-right: 40px;
    margin-bottom: 0;
  }
}
.default-tabs .nav-item:last-child {
  margin-right: 0;
}
.default-tabs .nav-item a.nav-link {
  background: #005959;
  border-radius: 10px;
  color: #8bc44a;
  border: 1px solid #8bc44a;
  font-size: 16px;
  font-weight: bold;
}
.default-tabs .nav-item a.nav-link.active {
  background: #8bc44a;
  color: #005959;
}

.default-table {
  background: #005959;
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.527);
  border-collapse: separate;
}
.default-table thead th,
.default-table tbody td {
  border: none;
  color: #fff;
}
.default-table thead th {
  border-bottom: 1px solid #fff;
}

/* PAGES */
/*#login {
    background: url('/assets/images/pages/welcome/header-bg.jpg') center center no-repeat;
    background-size: cover;
    min-height: 100vh;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.8)),color-stop(60%,rgba(0,0,0,0)),to(rgba(0,0,0,.8)));
        background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
        background-image: -o-linear-gradient(bottom,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
        background-image: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
    }

    .form-wrap {
        background: rgba(0,0,0,0.7);
        border-radius: 6px;
    }
}
*/
/* PARTS */
.heading.small-base-heading {
  background-size: cover;
  min-height: 300px;
}
.heading.small-base-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.text-heading-with-arrow-left {
  position: relative;
}
.text-heading-with-arrow-left:not(.arrow-white)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 16px;
  height: 25px;
  background: url("/assets/images/icons/arrow-right.png") left top no-repeat;
}
.text-heading-with-arrow-left.arrow-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 16px;
  height: 25px;
  background: url("/assets/images/icons/arrow-right-white.png") left top no-repeat;
}
.text-heading-with-arrow-left.arrow-size-sm::before {
  width: 9px;
  height: 14px;
  background-size: 100% auto;
  top: 4px;
  left: -15px;
}
.text-heading-with-arrow-left.arrow-md::before {
  display: none;
}
@media (min-width: 768px) {
  .text-heading-with-arrow-left.arrow-md::before {
    display: block;
  }
}

#messages {
  margin: 15px auto;
  width: 80%;
  position: absolute;
  top: 100px;
  left: calc( 10% );
  z-index: 100;
}
@media (min-width: 768px) {
  #messages {
    width: 600px;
    left: calc( 50% - 300px );
  }
}
#messages ul {
  padding: 0 15px;
}