﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #1f1f1f;
  background-color: #ffffff;
  overflow-x: hidden;
}

.brand-logo {
  max-height: 40px;
  width: auto;
  margin-right: 15px;
}

.header_section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: transparent !important;
  z-index: 999;
  transition: background 0.3s;
}

.header_section.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero_area {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_area .bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_area .slider_section,
.hero_area .detail-box {
  position: relative;
  z-index: 2;
}

.navbar-brand {
  font-family: "Open Sans", sans-serif;
}
.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}
.custom_nav-container .navbar-nav {
  padding-left: 18%;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 5px;
  transition: color 0.3s;
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link, .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #e63946;
}
.custom_nav-container .nav_search-btn {
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 10px;
  transition: color 0.3s;
}
.custom_nav-container .nav_search-btn:hover {
  color: #e63946;
}
.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: transform 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  border-radius: 5px;
  transition: transform 0.3s;
  position: relative;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  transition: transform 0.3s;
}
.custom_nav-container .navbar-toggler span::before {
  top: -10px;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

.user_option {
  display: flex;
  align-items: center;
}
.user_option a {
  margin: 0 10px;
}
.user_option .user_link, .user_option .cart_link svg {
  color: #ffffff;
  transition: color 0.3s, fill 0.3s;
}
.user_option .user_link:hover, .user_option .cart_link:hover svg {
  color: #e63946;
}
.user_option .cart_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_option .cart_link svg {
  width: 17px;
  margin-bottom: 2px;
  fill: #ffffff;
}
.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
}
.user_option .order_online:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}

.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 75px;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 145px;
}
.slider_section .detail-box h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.slider_section .detail-box p {
  font-size: 14px;
}
.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
  margin-top: 10px;
}
.slider_section .detail-box a:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}
.slider_section .img-box img {
  width: 100%;
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  display: flex;
  align-items: center;
}
.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #e63946;
}

.offer_section {
  position: relative;
  padding-top: 45px;
}
.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 45px;
  padding: 20px 15px;
  background-color: #222831;
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.2s;
}
.offer_section .box .img-box {
  width: 175px;
  height: 175px;
  margin-right: 15px;
  border: 5px solid #e63946;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.2s;
}
.offer_section .box .img-box img {
  width: 100%;
  transition: all 0.2s;
}
.offer_section .box .detail-box h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  margin: 0;
}
.offer_section .box .detail-box h6 {
  font-family: "Open Sans", sans-serif;
  margin: 10px 0;
}
.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: bold;
}
.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
}
.offer_section .box .detail-box a:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}
.offer_section .box .detail-box a svg {
  width: 20px;
  margin-left: 5px;
  fill: #ffffff;
}
.offer_section .box:hover .img-box img {
  transform: scale(1.1);
}

.food_section .filters_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 45px 0 20px;
  padding: 0;
}
.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
}
.food_section .filters_menu li.active {
  background: #222831;
  color: #ffffff;
}
.food_section .box {
  position: relative;
  margin-top: 25px;
  background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
  border-radius: 15px;
  overflow: hidden;
  color: #ffffff !important;
}
.food_section .box .img-box {
  background: #f1f2f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 215px;
  padding: 25px;
  border-radius: 0 0 0 45px;
}
.food_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  transition: transform 0.2s;
}
.food_section .box .detail-box {
  padding: 25px;
}
.food_section .box .detail-box h5 {
  font-weight: 600;
}
.food_section .box .detail-box p {
  font-size: 15px;
  color: #ffffff !important;
}
.food_section .box .detail-box h6 {
  margin-top: 10px;
}
.food_section .box .options {
  display: flex;
  justify-content: space-between;
}
.food_section .box .options a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e63946;
}
.food_section .box .options a i.fa,
.food_section .box .options a svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}
.food_section .box .options a svg {
  width: 18px;
  fill: #ffffff;
}
.food_section .box:hover .img-box img {
  transform: scale(1.1);
}
.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
}
.food_section .btn-box a:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}

.about_section {
  background: #222831;
  color: #ffffff;
}
.about_section .row {
  align-items: center;
}
.about_section .img-box {
  display: flex;
  justify-content: center;
}
.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  z-index: 2;
}
.about_section .detail-box p {
  margin-top: 15px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
  margin-top: 15px;
}
.about_section .detail-box a:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}

.book_section .heading_container {
  margin-bottom: 25px;
}
.book_section .form_container .form-control {
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
}
.book_section .form_container .form-control::placeholder {
  color: #222222;
}
.book_section .form_container .nice-select .current {
  font-size: 16px;
}
.book_section .form_container button {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 55px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
}
.book_section .form_container button:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}
.book_section .map_container {
  height: 345px;
  border-radius: 10px;
  overflow: hidden;
}
.book_section .map_container #googleMap {
  width: 100%;
  height: 100%;
}

.client_section .heading_container {
  margin-bottom: 30px;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 15px;
}
.client_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  margin-top: 30px;
  position: relative;
}
.client_section .box .img-box img {
  border-radius: 50%;
  border: 5px solid #e63946;
}
.client_section .box .img-box::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #e63946;
  top: 0;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}
.client_section .box .detail-box {
  background: #222831;
  padding: 25px;
  color: #ffffff;
  border-radius: 5px;
}
.client_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0 5px;
}
.client_section .box .detail-box p {
  font-size: 15px;
  margin-bottom: 10px;
}
.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 45px;
  padding: 0 15px;
}
.client_section .owl-carousel .owl-nav .owl-prev, .client_section .owl-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e63946;
  color: #ffffff;
  font-size: 24px;
}

.contact_section .heading_container {
  margin-bottom: 45px;
}
.contact_section .form_container .form-group {
  margin-bottom: 25px;
}
.contact_section .form_container input {
  width: 100%;
  height: 50px;
  padding-left: 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: transparent;
  outline: none;
}
.contact_section .form_container input::placeholder {
  color: #222222;
}
.contact_section .form_container input.message-box {
  height: 120px;
}
.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
}
.contact_section .form_container button {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 55px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}
.contact_section .form_container button:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}

.sub_page .hero_area {
  min-height: 50px;
  padding: 40px 0 20px 0;
}
.sub_page .hero_area .slider_section,
.sub_page .hero_area .detail-box {
  position: relative;
  z-index: 2;
}
.sub_page .hero_area .container h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.footer_section {
  background: #222831;
  color: #ffffff;
  padding: 75px 0 40px;
  text-align: center;
}
.footer_section h4, .footer_section .footer-logo {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer_section p {
  color: #dbdbdb;
}
.footer_section .footer-col {
  margin-bottom: 30px;
}
.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}
.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}
.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}
.footer_section .footer_contact .contact_link_box a:hover {
  color: #e63946;
}
.footer_section .footer-logo {
  display: block;
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
}
.footer_section .footer_social {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px;
}
.footer_section .footer_social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #222831;
  font-size: 18px;
}
.footer_section .footer_social a:hover {
  color: #e63946;
}
.footer_section .footer-info p {
  margin: 0;
  color: #ffffff;
}
.footer_section .footer-info p a {
  color: inherit;
}
.footer_section .footer_section {
  font-family: "Poppins", sans-serif !important;
}
.footer_section .contact_link_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.footer_section .contact_link_box a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.footer_section .contact_link_box a i {
  margin-right: 10px;
  font-size: 18px;
  color: #E53935;
  text-align: center;
}
.footer_section .contact_link_box a:hover span {
  color: #E53935;
}
.footer_section .social-link i {
  font-size: 28px;
  color: #E53935;
  transition: color 0.3s ease;
}
.footer_section .social-link:hover i {
  color: #fff;
}
.footer_section .footer-col h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.footer_section .footer-col p,
.footer_section .footer-col span,
.footer_section .footer-col a {
  font-size: 14px;
  line-height: 1.45;
}
.footer_section .contact_link_box {
  gap: 8px;
}
.footer_section .contact_link_box a i {
  font-size: 16px;
  width: 18px;
  margin-top: 1px;
}
.footer_section .social-link i {
  font-size: 22px;
}
.footer_section .footer-col.text-center p {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .footer_section .footer-col h4 {
    font-size: 22px;
  }
  .footer_section .footer-col p,
  .footer_section .footer-col span,
  .footer_section .footer-col a {
    font-size: 13px;
  }
}

html {
  scroll-behavior: smooth;
}

.client_section .overall-rating .rating-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}
.client_section .overall-rating .stars i {
  color: #e63946;
}
.client_section .write-review .btn {
  border-color: #ffffff;
  color: #ffffff;
}
.client_section .write-review .btn:hover {
  background: #ffffff;
  color: #222831;
}
.client_section .review-list .review-card {
  background: #ffffff;
  color: #1f1f1f;
}
.client_section .review-list .review-card .avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.client_section .review-list .review-card .stars i {
  color: #e63946;
}
.client_section .review-list .review-card .badge-success {
  background: #e63946;
  color: #ffffff;
}
.client_section .review-list .review-card .review-source i {
  color: black;
}

#reviews {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

#reviews .reviews-header {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

#reviews .header-controls {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}

#reviews .write-review .btn-primary {
  background-color: #e63946 !important;
  border-color: #e63946 !important;
  color: #ffffff !important;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

#reviews .overall-rating {
  font-size: 1.1rem;
}

#reviews .stars i {
  color: #e63946;
}

.write-review .btn {
  display: inline-block;
  padding: 8px 30px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 45px;
  border: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.write-review .btn:hover {
  background-color: rgb(186.9013452915, 23.5986547085, 35.869955157);
}

.btn-brand {
  background-color: #E53935;
  border-color: #E53935;
  color: #fff;
}

.btn-brand:hover {
  background-color: #c62828;
  border-color: #c62828;
}

.btn-brand:focus {
  box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.35);
}

.card .form-control {
  font-size: 0.95rem;
}

.resena-modal .modal-dialog {
  max-width: 920px;
  width: calc(100% - 1.5rem);
  margin: 2rem auto;
}

.resena-modal__content {
  border-radius: 32px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.65rem;
}

.resena-modal__panel {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 28px 70px rgba(16, 6, 32, 0.45);
}

.resena-modal__badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffcf66;
  margin-bottom: 1rem;
}

.resena-modal__heading h3 {
  font-weight: 700;
}

.resena-modal__form {
  background: #ffffff;
  padding: 2.5rem 2rem;
}

@media (min-width: 992px) {
  .resena-modal__form {
    padding: 3rem 3rem;
  }
}
.resena-modal__pill {
  background: #f7f1ff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.resena-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  z-index: 10;
  font-size: 1.6rem;
  color: #2d2d2d;
  opacity: 0.9;
}

.resena-modal__close:hover {
  opacity: 1;
}

#resenaModal .form-control,
#resenaModal .custom-select {
  border-radius: 14px;
  font-size: 0.95rem;
}

#resenaModal textarea.form-control {
  border-radius: 16px;
}

#resenaModal .btn.btn-primary {
  border-radius: 999px;
}

.modal-backdrop.show {
  opacity: 0.7;
}

#resenaModal .star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#resenaModal .star-rating i {
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.1s ease, color 0.15s ease;
  color: #e0e0e0 !important;
}

#resenaModal .star-rating i.filled {
  color: #ffc107 !important;
}

#resenaModal .star-rating i:hover {
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  .resena-modal .modal-dialog {
    width: calc(100% - 1rem);
    margin: 1.5rem auto;
  }

  .resena-modal__content {
    padding: 0.45rem;
    border-radius: 24px;
  }

  .resena-modal__form {
    padding: 2rem 1.5rem;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/dev/qchimbaops/qchimbaops_web/wwwroot/scss/style.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAUQ;AA4BR;EAvBI;EAyBA,OAjCM;EAkCN,kBAtCI;EAuCJ;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;AAAA;EAEI;EACA;;;AAIR;EAzFI;;AA4FA;EACI;EACA;EACA,OA3GA;;;AA+GR;EACI;;AAEA;EACI;;AAGI;EACI;EACA,OAxHR;EAyHQ;EACA;EACA;;AAIA;EACI,OA9HT;;AAoIP;EACI;EACA;EACA,OAzIA;EA0IA;EACA;;AAEA;EACI,OA5ID;;AAgJP;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBA5JJ;EA6JI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,kBAxKR;EAyKQ;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;;AAEA;EACI;EACA;;;AAOpB;EACI;EACA;;AAEA;EACI;;AAGJ;EACI,OA9MA;EA+MA;;AAGJ;EACI,OAjNG;;AAoNP;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA,MA9NJ;;AAkOJ;EAlNA;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eA+MoD;EA9MpD;EACA;;AAEA;EACI;;;AA+MR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI,OAzPA;EA0PA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAGJ;EArPJ;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAkPyD;EAjPzD;EACA;EAiPQ;;AA/OR;EACI;;AAkPJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI,kBAtRJ;EAuRI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,kBA9RL;;;AAoSX;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA,kBA5SG;EA6SH;EACA,OAjTA;EAkTA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKJ;EAxTR;EA0TY;EACA;;AAGJ;EA9TR;EAgUY;;AAEA;EACI;EACA;;AAIR;EApUR;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAiU6D;EAhU7D;EACA;;AAEA;EACI;;AA8TQ;EACI;EACA;EACA,MA1VZ;;AA+VA;EACI;;;AAOR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI,YAlXL;EAmXK,OAtXR;;AA2XJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YA7aL;;AA+aK;AAAA;EAEI;EACA;;AAGJ;EACI;EACA,MAzbZ;;AA8bA;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EAxbJ;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAqbyD;EApbzD;EACA;;AAEA;EACI;;;AAsbR;EACI,YA7cO;EA8cP,OAjdI;;AAmdJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAKJ;EACI;;AAGJ;EAvdJ;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAodyD;EAndzD;EACA;EAmdQ;;AAjdR;EACI;;;AAudJ;EACI;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;EAzfR;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAsfyD;EArfzD;EACA;;AAEA;EACI;;AAqfJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;;AAMR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA,YApjBL;EAqjBK;EACA;EACA;;AAIR;EACI,YA3jBD;EA4jBC;EACA,OAhkBJ;EAikBI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,YAxlBD;EAylBC,OA3lBJ;EA4lBI;;;AAOR;EACI;;AAIA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;;AAGJ;EACI;EApnBR;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAinByD;EAhnBzD;EACA;;AAEA;EACI;;;AAknBJ;EACI;EACA;;AAKA;AAAA;EAEI;EACA;;AAGJ;EACI;EACA;;;AAKZ;EACI,YA7pBO;EA8pBP,OAjqBI;EAkqBJ;EACA;;AAEA;EAzpBA;EA2pBI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA,OAzrBJ;;AA2rBI;EACI;;AAGJ;EACI,OA9rBL;;AAmsBP;EACI;EACA;EACA;EACA;EACA,OA1sBA;;AA6sBJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YAztBJ;EA0tBI,OAvtBD;EAwtBC;;AAEA;EACI,OA5tBL;;AAiuBP;EACI;EACA,OAruBA;;AAuuBA;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;IACI;;EAGJ;AAAA;AAAA;IAGI;;;;AAKZ;EACI;;;AAKI;EACI;EACA;EACA,OA10BJ;;AA60BA;EACI,OA50BD;;AAg1BP;EACI,cAn1BA;EAo1BA,OAp1BA;;AAs1BA;EACI,YAv1BJ;EAw1BI,OAr1BD;;AA01BH;EACI,YA91BJ;EA+1BI,OA31BF;;AA61BE;EACI;EACA;EACA;EACA;;AAGJ;EACI,OAv2BL;;AA02BC;EACI,YA32BL;EA42BK,OA92BR;;AAi3BI;EACI;;;AAMhB;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,OAn5BO;;;AAu5BP;EAz4BA;EACA;EACA,kBAhBO;EAiBP,OAnBI;EAoBJ,eAu4BoD;EAt4BpD;EACA;EAs4BI;;AAp4BJ;EACI;;;AAu4BR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAIJ;EACI;EACA;;;AAGJ;EACI;IACI;;;AAKR;EACI;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAIJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;;;AAIJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI%22%7D */
