:root {
  --primary: rgb(209, 137, 64); /* Warna cokelat tua seperti biji kopi */
  --bg: #010101; /* Warna latar belakang yang lebih gelap tapi nyaman */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.8);
  border-bottom: 1px solid rgb(131, 110, 90);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #fff;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar .navbar-nav a:hover {
  color: var(--primary);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  margin-bottom: 0.5rem; /* Mengganti padding-bottom */
  border-bottom: 0.1rem solid var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* Navbar search form */
.navbar .search-form {
  position: absolute;
  top: calc(100% + 20px); /* Memberi jarak 20px dari bagian bawah navbar */
  right: 7%;
  background-color: #fff;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar .search-form.active {
  transform: scaleY(1);
}

.navbar .search-form:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.navbar .search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.6rem;
  color: var(--bg);
  padding: 1rem;
  background: transparent;
}

.navbar .search-form label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1.5rem;
  color: var(--bg);
  padding: 0 1.5rem;
  transition: color 0.3s ease;
}

.navbar .search-form label:hover {
  color: var(--primary);
}

/* Shopping Cart */
#shopping-cart-button {
  position: relative;
}

#shopping-cart-button .quantity-badge {
  display: inline-block;
  padding: 1px 5px;
  background-color: red;
  border-radius: 6px;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  right: -10px;
}

.shopping-cart {
  position: absolute;
  top: 100%;
  right: -100%;
  height: 100vh;
  width: 35rem;
  padding: 0 1.5rem;
  background-color: #fff;
  color: var(--bg);
  transition: 0.3s;
}

.shopping-cart.active {
  right: 0;
}

.shopping-cart .cart-item {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #666;
  position: relative;
  transition: background-color 0.3s ease;
}

.shopping-cart .cart-item:hover {
  background-color: #f9f9f9;
}

.shopping-cart img {
  height: 4rem;
  border-radius: 50%;
}

.shopping-cart h3 {
  font-size: 1.4rem;
}

.shopping-cart .item-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.shopping-cart .cart-item #add,
.shopping-cart .cart-item #remove {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  margin: 0 8px;
  background: linear-gradient(135deg, #333, #000); /* Gradien hitam */
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 6px; /* Sudut membulat */
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.shopping-cart .cart-item #add:hover {
  background: #28a745; /* Warna hijau untuk tambah */
  border-color: #218838;
  transform: scale(1.1); /* Efek zoom */
}

.shopping-cart .cart-item #remove:hover {
  background: #dc3545; /* Warna merah untuk hapus */
  border-color: #c82333;
  transform: scale(1.1); /* Efek zoom */
}

.shopping-cart h4 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  padding: 12px 0; /* Menambah ruang atas dan bawah */
  margin-top: 20px; /* Menurunkan posisi agar tidak mepet */
  color: #fff;
  background: linear-gradient(135deg, #333, #222);
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Checkout Form */
.form-container {
  width: 100%;
  max-width: 800px; /* Batasi lebar agar tidak terlalu lebar di layar besar */
  display: flex;
  justify-content: center;
  align-items: center; /* Pastikan elemen dalamnya terpusat */
  gap: 1rem; /* Jarak antar elemen di dalamnya */
  border-top: 2px solid rgba(0, 0, 0, 0.2); /* Border lebih halus */
  margin: 2rem auto; /* Tambah margin agar lebih turun */
  padding: 1.5rem;
  border-radius: 8px; /* Membuat sudut lebih halus */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan untuk efek elegan */
  background: rgba(
    255,
    255,
    255,
    0.05
  ); /* Tambahkan efek transparan sedikit untuk tampilan modern */
}

.form-container h5 {
  text-align: center;
  font-size: 1.2rem; /* Sedikit lebih besar untuk keterbacaan */
  font-weight: 600;
  color: #333; /* Warna sedikit lebih gelap agar lebih jelas */
  margin-bottom: 1rem; /* Tambahkan jarak bawah */
}

/* Form */
.form-container form {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Label */
.form-container label {
  display: flex;
  justify-content: space-between; /* Atur jarak antara label dan input */
  align-items: center;
  width: 100%;
  max-width: 500px;
  font-size: 1rem;
  color: #444;
  gap: 10px; /* Beri jarak antara teks dan input */
  margin: 0.8rem 0;
}

/* Span */
.form-container span {
  text-align: right;
  flex: 1; /* Agar sejajar dengan input */
  font-weight: 500;
}

/* Input */
.form-container input {
  background-color: #f1f1f1; /* Warna lebih lembut */
  padding: 8px 12px;
  font-size: 1rem;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.form-container input:focus {
  outline: none;
  border-color: royalblue;
  box-shadow: 0px 0px 5px rgba(65, 105, 225, 0.5);
}

/* Tombol Checkout */
.form-container .checkout-button {
  padding: 10px 18px;
  background: royalblue;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 25px;
  margin-top: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border: none;
  box-shadow: 0px 4px 6px rgba(65, 105, 225, 0.3);
}

.form-container .checkout-button:hover {
  background: #4169e1;
  box-shadow: 0px 6px 10px rgba(65, 105, 225, 0.4);
  transform: translateY(-2px);
}

.form-container .checkout-button.disabled {
  background-color: #999;
  cursor: not-allowed;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/header-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* Pastikan gambar menutupi seluruh area */
  background-position: center; /* Posisikan gambar di tengah */
  position: relative;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
}

/* .hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 50%
  );
} */

.hero .mask-container {
  position: absolute;
  /* background: sandybrown; */
  inset: 0;
  -webkit-mask-image: url("../img/header-bg.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}

.hero .content {
  padding: 1.4rem 5%; /* Mengurangi padding kiri agar teks lebih ke kiri */
  /* max-width: 60rem; */
  width: 100%;
  text-align: center;
  position: fixed;
  top: 80px;
}

.hero .content h1 {
  font-size: 5em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary); /* Tetap menggunakan warna utama */
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* Memberikan latar belakang putih dengan sedikit transparansi untuk kesan lebih lembut */
  padding: 0.3rem 0.5rem; /* Memberikan sedikit lebih banyak ruang di sekitar teks */
  border-radius: 0.5rem; /* Tetap dengan sudut yang lebih lembut */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08); /* Mengurangi bayangan agar lebih halus dan ringan */
}

.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem; /* Perbaiki penulisan properti menjadi 'margin-top' */
  line-height: 1.6; /* Meningkatkan jarak antar baris untuk keterbacaan yang lebih baik */
  font-weight: 500; /* Meningkatkan ketebalan font untuk kesan lebih tegas */
  color: rgb(
    255,
    255,
    255
  ); /* Warna yang lebih terang agar kontras dengan latar belakang */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); /* Bayangan lebih tegas untuk kedalaman */
  mix-blend-mode: difference;
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4 rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

/* About Section */
.about,
.products,
.menu,
.contact {
  padding: 8rem 7% 1.4rem;
}

.about h2,
.products h2,
.menu h2,
.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.about h2 span,
.products h2 span,
.menu h2 span,
.contact h2 span {
  color: var(--primary);
}

.about .row {
  display: flex;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .row .about-img img {
  width: 100%;
  -webkit-mask-image: url("../img/menu/splash.svg");
  -webkit-mask-size: 50%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.about .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.about .row .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about .row .content p {
  margin-bottom: 0.8 rem;
  font-size: 1.3rem;
  font-weight: 100;
  line-height: 1.6;
}

/* Menu Section */
.menu h2,
.contact h2 {
  margin-bottom: 1rem;
}
.menu p,
.products p,
.contact p {
  text-align: center;
  max-width: 30rem;
  margin: auto;
  font-weight: 100;
  line-height: 1.6;
}

.menu .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  justify-content: center;
}

.menu .row .menu-card {
  text-align: center;
  padding-bottom: 4rem;
}

.menu .row .menu-card img {
  border-radius: 50%;
  width: 80%;
  aspect-ratio: 1 / 1; /* Menjaga proporsi tetap bulat */
  object-fit: cover; /* Mencegah distorsi dan memastikan gambar tetap utuh */
}

.menu .row .menu-card .menu-card-tittle {
  margin-top: 1rem auto 0.5rem;
}

/* Products Section */
.products {
  padding: 4rem 2rem;
  background-color: var(--bg);
}

.products h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #fff;
}

.products p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #fff;
}

/* Grid Layout untuk Product Cards */
.products .row {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Minimum 300px agar tidak terlalu mepet */
  gap: 2rem;
  margin-top: 4rem;
}

/* Product Card */
.products .product-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Ikon Produk */
/* Penempatan ikon: di tengah atas card */
.products .product-icons {
  position: absolute;
  top: 1.5rem; /* Jarak dari atas card */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.products .product-card:hover .product-icons {
  opacity: 1;
  transform: translate(-50%, -10px); /* Menaikkan ikon saat hover */
}

/* ==============================
   Link Ikon (dengan efek lingkaran eksternal)
   ============================== */
.products .product-icons a {
  position: relative; /* Agar pseudo-element bisa diposisikan relatif */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #fff;
  margin: 0.3rem;
  border: 1px solid #666;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease, border 0.3s ease;
  overflow: visible;
}

/* Efek lingkaran tambahan di sekitar ikon */
.products .product-icons a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.products .product-icons a:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transform: scale(1.1);
}

.products .product-icons a:hover::after {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-color: var(--primary);
}

/* ==============================
   Gambar Produk
   ============================== */
.products .product-image {
  padding-top: 2rem; /* Jarak antara ikon dan gambar */
}

.products .product-image img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.products .product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ==============================
   Konten Produk
   ============================== */
.products .product-content h3 {
  font-size: 2rem;
  margin-top: 1rem;
  color: #333;
}

.products .product-stars {
  font-size: 1.7rem;
  margin: 0.8rem 0;
  color: var(--primary);
}

.products .product-stars .star-full {
  fill: var(--primary);
}

/* ==============================
   Harga Produk
   ============================== */
.products .product-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-top: 1rem;
}

/* Contact Section */
.contact .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  background-color: #222;
  border-radius: 12px; /* Sudut lebih halus */
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  align-items: stretch; /* Pastikan semua elemen punya tinggi yang sama */
}

/* Styling untuk pembungkus peta */
.contact .row .map {
  flex: 1 1 50%;
  width: 100%;
  height: auto; /* Pastikan tidak ada masalah dengan tinggi */
  min-height: 100%; /* Pastikan mengisi sepenuhnya */
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  display: flex;
}

/* Styling untuk iframe peta */
.contact .row .map iframe {
  width: 100%;
  height: 100%; /* Pastikan iframe mengisi seluruh tinggi */
  min-height: 400px; /* Pastikan tidak terlalu kecil */
  border: none;
}

/* Styling untuk form */
.contact .row form {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 0 12px 12px 0;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Agar konten form tetap tengah */
}

/* Input Group Styling */
.contact .row form .input-group {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  background-color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
  border-radius: 8px; /* Sudut lebih halus */
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.contact .row form .input-group:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.contact .row form .input-group input {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: none;
  color: #fff;
  border: none;
  outline: none;
}

.contact .row form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Button Styling */
.contact .row form .btn {
  margin-top: 2.5rem;
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.contact .row form .btn:hover {
  background: linear-gradient(135deg, #ff8c00, var(--primary));
  box-shadow: 0 6px 12px rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
  }

  .contact .row .map {
    border-radius: 12px 12px 0 0;
    min-height: 300px; /* Sesuaikan tinggi peta di mobile */
  }

  .contact .row form {
    border-radius: 0 0 12px 12px;
  }
}

/* Footer */
footer {
  background-color: var(--primary);
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  color: #fff;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

footer .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

footer .socials a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .socials a:hover {
  color: var(--bg);
  transform: translateY(-5px);
}

footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

footer .links a {
  color: #fff;
  padding: 0.7rem 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .links a:hover {
  color: var(--bg);
  transform: scale(1.1);
}

footer .credit {
  font-size: 0.85rem;
  opacity: 0.8;
}

footer .credit a {
  color: var(--bg);
  font-weight: 700;
  transition: color 0.3s ease;
}

footer .credit a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  footer .links {
    flex-direction: column;
    align-items: center;
  }

  footer .socials {
    gap: 0.7rem;
  }
}

/* Modal Box */
/* Item Detail */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-container {
  position: relative;
  background-color: #fefefe;
  color: var(--bg);
  margin: 15% auto;
  padding: 1.2rem;
  border: 1px solid #666;
  width: 80%;
  animation: animateModal 0.5s;
}

/* Modal Animation */
@keyframes animateModal {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.modal-container .close-icon {
  position: absolute;
  right: 1rem;
}

.modal-content {
  display: flex;
  flex-wrap: nowrap;
}

.modal-content img {
  height: 17rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.modal-content p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-top: 1.2rem;
}

.modal-content a {
  display: flex;
  gap: 1rem;
  width: 12rem;
  background-color: var(--primary);
  color: #fff;
  margin-top: 1rem;
  padding: 1rem 1.6rem;
}

/* Media Queries */

/* Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

/* Tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
    font-size: 1.8rem;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100vw; /* Menyembunyikan dengan lebih aman */
    background-color: #fff;
    width: 30rem;
    height: 100vh;
    transition: 0.3s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
  }

  .navbar .search-form {
    width: 90%;
    right: 2rem;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .about .row .about-img img {
    height: 24rem;
    object-fit: cover;
    object-position: center;
  }

  .about .row .content {
    padding: 0;
  }

  .about .row .content h3 {
    margin-top: 1rem;
    font-size: 1.6rem;
  }

  .about .row .content p {
    font-size: 1.6rem;
  }

  .menu p {
    font-size: 1.2rem;
  }

  .contact .row {
    flex-wrap: wrap;
  }

  .contact .row .map {
    height: 30rem;
  }

  .contact .row form {
    padding-top: 0;
  }

  .modal-content {
    flex-wrap: wrap;
  }
}

/* Mobile Phone */
@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
}
