@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
body, html {
  font-size: 10px;
  font-weight: normal;
  margin: 0;
  padding: 0;
  width: 100%;
}

.row {
  margin-right: calc(-0.25 * var(--bs-gutter-x));
  margin-left: calc(-0.25 * var(--bs-gutter-x));
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.25);
  padding-left: calc(var(--bs-gutter-x) * 0.25);
}

.w-10 {
  width: 10% !important;
}

.w-20 {
  width: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.btn {
  font-size: 1.3rem;
  padding: 7px 25px;
}

.btn-outline-dark {
  --bs-btn-color: #007090;
  --bs-btn-border-color: #007090;
  --bs-btn-hover-color: #007090;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #007090;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #007090;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #007090;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #007090;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #007090;
  --bs-gradient: none;
}

.btn-dropdown {
  background-color: white !important;
  color: #0A2342 !important;
  font-size: 1.4rem !important;
  padding: 8px 16px !important;
  border: 1px solid transparent !important;
  text-align: left;
  cursor: pointer;
}

.dropdown button.btn-dropdown-white {
  background-color: #e8f1f3 !important;
  color: #0A2342 !important;
  font-size: 1.4rem !important;
  padding: 8px 16px !important;
  border: none !important;
  border-bottom: 1px solid #b1d1dc !important;
  text-align: left;
  cursor: pointer;
  min-height: 5.2rem;
}

.dropdown-toggle::after {
  position: absolute;
  content: "";
  top: 35%;
  right: 10px;
  width: 0;
  height: 0;
  border: solid #6D6F74;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.dropdown-toggle.show::after {
  top: 40%;
  border: solid #6D6F74;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.dropdown-menu {
  background-color: #fff;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  border: 0px solid #ddd;
  width: auto;
  min-width: 16rem;
  padding: 1rem;
  box-shadow: 1px 1px 5px #ddd;
}
.dropdown-menu .dropdown-item {
  white-space: wrap;
  color: #444;
  margin: 0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f7f7f7;
}
.dropdown-menu .dropdown-item:focus {
  background-color: #FFF6DF;
}
.dropdown-menu .dropdown-item span {
  margin-right: 8px;
}
.dropdown-menu .dropdown-item p {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
.dropdown-menu .dropdown-item h4 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}
.dropdown-menu .dropdown-item small {
  margin: 0;
  display: block;
}

.modal {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.modal.innerModal {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  background: none !important;
}

.modal-backdrop {
  background: none;
}

.modal-content {
  border-color: #ccc;
}

.modal-dialog {
  width: 90%;
  margin: 0 auto;
}

.modal-header {
  border: none;
}

.modal-title {
  font-size: 3rem !important;
}

.modal-body .list-info {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 2rem;
}
.modal-body .list-info ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.modal-body .list-info ul li {
  margin: 0;
  padding: 0 0 1rem;
}
.modal-body .list-info ul li label {
  font-size: 1.4rem;
}
.modal-body .list-info ul li span {
  font-size: 1.4rem;
}

.modal-footer {
  border: none;
}

.modal-btn-close {
  position: absolute;
  top: 7px;
  right: 7px;
}

.modal-360 {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-360.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal-360.fade .modal-360.fade .modal-dialog {
    transition: none;
  }
}

.modal-360.show .modal-dialog {
  transform: none;
}
.modal-360.modal-static .modal-dialog {
  transform: scale(1.02);
}

label {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.form-control {
  font-size: 1.4rem;
  padding: 0.5rem;
  margin: 0 0 10px;
}
.form-control.is-correct {
  padding-right: calc(1.5em + 0.75rem);
  background-image: url(../img/icon-check.png);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.7rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid {
  box-shadow: 0px 0px 8px #dc3545;
}

.invalid {
  color: #dc3545 !important;
}

.form-text {
  font-size: 1.4rem;
}

.form-floating label {
  font-size: 1.1rem;
  font-weight: normal;
}
.form-floating .form-control {
  font-weight: bold;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(4.5rem + 2px);
  line-height: 1.5;
}

/* invalid filed for password page */
.password .form-control.is-invalid, .password .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.password .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.password .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-edit {
  border: 0;
  background: #eee;
  padding: 8px 15px;
  border-radius: 4px;
  width: 64%;
}

.carousel-indicators {
  margin-bottom: 0;
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  background-color: #bbb;
}

.carousel-item .layer-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 1;
}
.carousel-item img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .carousel-item img {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}
@media screen and (max-width: 550px) {
  .carousel-item img {
    height: 250px;
  }
}
@media screen and (max-width: 428px) {
  .carousel-item img {
    height: 160px;
  }
}
.carousel-item video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .carousel-item video {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-item video {
    height: 300px;
  }
}
@media screen and (max-width: 550px) {
  .carousel-item video {
    height: 250px;
  }
}
@media screen and (max-width: 428px) {
  .carousel-item video {
    height: 160px;
  }
}
.carousel-item.prodimage img {
  width: 100% !important;
  height: auto;
  margin: 0 auto !important;
  border-radius: 0px;
}
.carousel-item .caption-icon {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  z-index: 3;
}
.carousel-item .caption-icon a {
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 4rem;
  display: block;
  margin-left: 1rem;
  padding: 0.8rem;
  text-align: center;
  cursor: pointer;
}

.carousel-caption {
  left: 1.5rem;
  top: 0.8rem;
  bottom: unset;
  text-align: left;
  z-index: 3;
}
.carousel-caption p {
  font-size: 1.4rem;
  font-weight: 600;
}
.carousel-caption p b {
  font-size: 2rem;
  line-height: 1.2;
}
.carousel-caption.bottom-caption {
  top: unset;
  bottom: 2rem;
  right: unset;
  padding: 0;
}
.carousel-caption.bottom-caption p {
  margin: 0;
}

.overflow-scroll {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.overflow-scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.popover-header {
  font-size: 1.15rem;
}

.popover-body {
  font-size: 1.15rem;
}

.nav {
  flex-wrap: unset;
}

.nav-pills {
  display: flex;
}
.nav-pills .nav-item {
  padding: 0 8px 0 0;
}
.nav-pills .nav-item .nav-link {
  padding: 12px;
  border-radius: 20px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  background-color: white;
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #999;
  letter-spacing: 1px;
  line-height: 1;
}
.nav-pills .nav-item .nav-link.active {
  color: white;
  background-color: #FFF6DF;
}

.nav-tabs .nav-link {
  color: black;
  padding: 5px 30px;
}
.nav-tabs .nav-link.active {
  color: #F40039;
}/*# sourceMappingURL=overwrite-bootstrap.css.map */