/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  background-color: #75af28;
  padding: 10px;
}

.logo {
  height: 50px;
  font-size: 16px;
  color: #0075b2;
  border-radius: 5px;
  cursor: pointer;
  margin-top: -20px;
  margin-bottom: -20px;
}

.search-container {
  display: flex;
  margin-left: 0px;
  width: 70%;
  height: 30px;
  background-color: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* style program */
.search-container1 {
  display: flex;
  width: 100%;
  height: 30px;
  background-color: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex-grow: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-button {
  background-color: #75af28;
  border: none;
  margin-right: 5px;
  cursor: pointer;
  color: white;
  border-radius: 13px;
  margin-top: 2px;
  margin-bottom: 2px;
  width: 50px;
}

.search-button img {
  width: 20px;
  height: 20px;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.setting-container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: 0.4s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

.icon-user:before {
  content: "\e971";
}

.icon-user-profile::before {
  content: url("/assets/img/icon-user.svg");
  display: inline-block;
  width: 18px;
  height: 18px;
}

.icon {
  width: 24px;
  height: 24px;
  fill: #ffffff; /* Change the color of the SVG */
}

.icon:hover {
  fill: #3ce783; /* Change color on hover */
}

.icon-color {
  fill: #999999; /* Change color on hover */
}

.label-home {
  color: #999999;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}

.label-transaction {
  color: #999999;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}

.label-dana {
  color: #999999;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}

.label-program {
  color: #999999;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}

.label-profil {
  color: #999999;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}

.icon-color-selected {
  fill: #00aeef;
}

.content-box {
  background-color: rgba(247, 247, 247, 0.986);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 100%;
  text-align: center;
  position: relative;
  height: 250px;
}

p {
  color: #333;
  /* font-size: 16px; */
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}

.btn-donation:hover {
  background-color: #a9de65;
}

.btn-donation {
  background-color: #75af28; /* Biru */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}

.left-button {
  position: absolute;
  left: 20px;
}

.vertical-container {
  display: flex;
  flex-direction: column; /* Arrange items in a column (vertical layout) */
  gap: 10px; /* Adjust the space between items */
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
}

.horizontal-container {
  display: flex;
  flex-direction: row; /* This is the default value, so it can be omitted */
  gap: 10px; /* Adjust the space between items */
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.vertical-left {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the left */
  padding: 10px;
}

.horizontal-left {
  display: flex;
  justify-content: flex-start; /* Align items to the left */
  padding: 4px;
}

.horizontal-left div {
  margin-right: 10px; /* Add spacing between items */
}

.zstack-container {
  position: relative;
  width: 100%;
  height: 250px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dana-container {
  max-width: 1200px;
  margin: 0 auto;
}

.base-cards {
  display: flex;
  gap: 20px;
}

.base-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  overflow: hidden;
}

.base-card:hover {
  background-color: rgb(250, 250, 250);
}

.base-cards img {
  width: 100%;
  height: auto;
}

.card-body {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.base-cards h3 {
  font-size: 12px;
  margin-bottom: 10px;
  color:#000;
}

.base-cards p {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.progress-bar {
  background-color: #e0e0e0;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress {
  background-color: #742e7e;
  height: 100%;
  width: 0%;
}

.hero-section {
  position: relative;
  text-align: center;
  color: white;
}

.hero-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(255, 136, 0, 0.8) 0%,
    rgba(255, 136, 0, 0.6) 60%,
    transparent 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-section h1 {
  font-size: 2em;
  margin: 0;
}

.hero-section p {
  margin: 10px 0;
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.program-container {
  max-width: 100%;
  margin: 0 auto;
  /* background-color: rgba(243, 242, 245, 0.849); */
  padding: 10px;
  border-radius: 8px;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.program-card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
}

.transaction-card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
}

.program-image {
  /* display: flex; */
  gap: 10px;
  width: 40%;
  overflow: hidden; 
  flex-wrap: wrap; 
}

.program-image img {
  width: 420px;
  /* height: 170px; */
}

.transaction-image {
  /* display: flex; */
  gap: 10px;
  /* width: 20%; */
  overflow: hidden; 
  flex-wrap: wrap; 
  margin-top: 10px;
  margin-left: 10px;
}

.transaction-image img {
  width: 50px;
  /* height: 170px; */
}

.address-image {
  /* display: flex; */
  gap: 10px;
  /* width: 20%; */
  overflow: hidden; 
  flex-wrap: wrap; 
  margin-top: 0px;
  margin-left: 10px;
}

.address-image img {
  width: 50px;
  /* height: 170px; */
}

.program-details {
  flex-grow: 1;
  padding-left: 15px;
  width: 30%;
}

.program-details h3 {
  font-size: 12px;
}

.program-details p {
  font-size: 8px;
  color: #666;
  margin-bottom: 10px;
}

.program-details .verified {
  color: #00f;
}

.progress-bar {
  background-color: #e0e0e0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.details{
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.details-2 {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: bold;
  overflow-wrap: break-word;
  white-space: normal;
}

.more-button {
  width: 220px;
  padding: 5px;
  background-color: #75af28;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.more-button:hover {
  background-color: #487909;
}

.user-container {
  max-width: 100%;
  margin: 0 auto;
}

.subscribe-section {
  background-color: #4e8a00;
  padding: 20px;
  border-radius: 8px;
  /* margin-bottom: 30px; */
  margin-top: 10px;
}

.subscribe-section h2 {
  font-size: 24px;
  /* margin-left: 30%; */
  color: #fff;
}

.subscribe-section p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.subscribe-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.subscribe-section input {
  padding: 10px;
  max-width: 400px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.subscribe-section button {
  width: 30%;
  padding: 10px 30px;
  background-color: #538a0b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.subscribe-section button:hover {
  background-color: #65a017;
}

.news-section {
  margin-top: 20px;
}

.news-section h3 {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  /* margin-bottom: 20px; */
}

.news-section h3 a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.news-cards {
  display: flex;
  gap: 20px;
}

.news-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 200px;
  height: 300px;
}

.news-card img {
  width: 100%;
  height: auto;
}

.shipping-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 200px;
  height: 300px;
}

.shipping-card img {
  width: 100%;
  height: auto;
}

.news-details {
  padding: 10px;
}

.news-details .date {
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}

.news-details .title {
  font-size: 14px;
  color: #333;
  overflow-wrap: break-word;
  white-space: normal;
}

.news-details .subtitle {
  font-size: 10px;
  color: #333;
  overflow-wrap: break-word;
  white-space: normal;
  margin-top: 10px;
}

.cart-header h3 {
  display: flex;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px; 
  margin-top: 20px;
  /* margin-bottom: 20px; */
}

.grid-card-page {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.grid-card-page:hover {
  background-color: rgb(248, 248, 248);
}

.scroll-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
}

.scroll-content {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.item {
  border-radius: 50%;
  background-color: #cce7f3;
  margin: 0 10px;
  padding: 15px;
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.scroll-btn {
  font-size: 2em;
  color: #888;
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
}

.scroll-btn:hover {
  color: #555;
}

.footer {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.footer p {
  margin: 0 0 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-links {
  margin: 20px 0;
}

.footer .footer-links a {
  text-decoration: none;
}

.footer .footer-links a:hover {
  color: #555;
}

 
.footer .copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  padding-bottom: 50px;
}

/* Social media icons */
.style-media{
  border-radius: 12px;
  background-color: rgba(146, 143, 143, 0.397);
  padding: 4px;
  width: 24px;
  height: 24px;
  display: inline-block;
}

html {
  scroll-behavior: smooth;
  max-width: 500px; 
  margin: 0 auto; 
  background-color: #f4f4f4;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  /* background-color: #f4f4f4; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.tab-bar {
  display: flex;
  justify-content: center;
  background-color: #f9f9f9;
  position: fixed;
  bottom: 0;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.tab-button {
  background-color: #ffffff;
  border: none;
  color: #00aeef;
  padding: 10px 0; 
  cursor: pointer;
  transition: background-color 0.3s;
  width: 125px;
  text-align: center;
}

.tab-button:hover {
  background-color: #c2c2c2;
}

.tab-button.active {
  background-color: #ffffff;
}

.tab-content {
  display: none;
  /* padding: 20px; */
  /* margin-top: 20px; */
  background-color: white;
}

.vertical-button {
  display: flex;
  flex-direction: column; /* Arrange items in a column (vertical layout) */
  gap: 10px; /* Adjust the space between items */
  align-items: center;
}

.zstack-item {
  position: absolute;
  top: 0;
  width: 95%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(87, 18, 167, 0.486);
  margin-left: 2.5%;
  margin-right: 20px;
}
.badge-text{
  display: flex;
  margin-top: 0px;
}

.icon11{
  width: 16px;
  height: 16px;
  margin-top:2px;
}

.icon-card{
  width: 15px;
  height: 15px;
  margin-top: 5px;
}

.wrapping-text {
  overflow-wrap: break-word; /* Ensures text wraps */
  white-space: normal; /* Default text wrapping behavior */
}

.logo-original {
  width: 200px;
  /* height: 90px; */
  margin-top: -30px;
  margin-bottom: -30px;
}

.footer-container {
  display: flex;
  flex-direction: column; /* Arrange items in a column (vertical layout) */
  gap: 10px; /* Adjust the space between items */
  align-items: center;
}

/* style program */
.filter-option {
  width: 60%;
  align-content: flex-start;
}

.filter-option2 {
  width: 60%;
  align-content: flex-start;
}
/* style program */

.program-card2 {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
}

.facebook{
 height: 15px;
 width: 15px;
}

.instagram{
  height: 15px;
  width: 15px;
 }

 .tiktok{
  height: 15px;
  width: 15px;
 }

 .whatsapp{
  height: 15px;
  width: 15px;
 }

 .gmail{
  height: 15px;
  width: 15px;
 }

 .phone{
  height: 15px;
  width: 15px;
 }

 /* style detal donasi*/

 .container-detail-donation {
  /* font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem; */
  margin-left:10px;
  margin-right:10px;
}

.w3-light-grey w3-round-xlarge{
  color: #000 !important;
  background-color: #e0e0e0 !important;
}

.w3-container w3-blue w3-round-xlarge{
  border-radius: 16px;
}

.horizontal-detail-container{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.vertical-detail-container {
  background-color: #ffffff;
  margin: 0 auto;
    margin-top: 0px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.title-lembaga-name {
  font-weight: bold;
  color: #333;
  margin-top: 20px;
  margin-left: 20px;
  display: inline-block;
  margin-top: 20px;
}

.info-lembaga, .rincian-penggunaan {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}

.horizontal-campaign-container{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.lembaga-header, .rincin-header{
  display: flex;
  align-items: center;
  justify-content: end;
}

.lembaga-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.lembaga-details {
  display: flex;
  flex-direction: column;
}

.lembaga-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.lembaga-verifikasi {
  background-color: #00aeef;
}

.verifikasi-icon {
  color: #3b82f6; /* Warna biru verifikasi */
  margin-right: 5px;
}

.arrow-icon {
  float: right;
  font-size: 18px;
  color: #6c757d;
  max-width: 100%;
}

.rincian-icon {
  font-size: 24px;
  margin-right: 10px;
  color: #6c757d;
}

.box {
  background-color: #f2f2f2; /* Warna latar belakang elemen */
  padding: 20px; /* Padding di dalam elemen */
  border: 1px solid #ccc; /* Border di sekitar elemen */
  flex: 1; /* Membuat elemen menempati ruang yang sama */
  text-align: center; /* Mengatur teks menjadi di tengah */
}

.buy-button {
  width: 100%;
  background-color: #75af28;
  color: #ffffff;
  border-radius: 10px;
  border: none;
}

.buy-button:hover {
  background-color: #5a950c;
}

.buy-via-wa-button {
  margin-top: 10px;
  width: 100%;
  height:50px;
  background-color: #eecf1a;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  border: none;
}

.buy-via-wa-button:hover {
  background-color: #cfcfcf;
}

.save-button {
  width: 100%;
  background-color: #e8e8e8;
  color: #484848;
  border-radius: 10px;
  border: none;
}

.save-button:hover {
  background-color: #d1d1d1;
}

.share-button {
  border-color: #75af28;
  border-radius: 10px;
  width: 120px;
  height: 50px;
}

.vertical-detail-container {
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vertical-container div:last-child {
  margin-bottom: 0; /* Remove margin from the last item */
}

.title-lembaga-name {
  font-weight: bold;
  color: #333;
  /* margin-top: 20px; */
  margin-left: 20px;
  display: inline-block;
  margin-top: 20px;
}

.badge-container {
  display: flex;
  align-items: center;
  background-color: #f0f4f7; /* Light background color */
  padding: 5px 15px;
  border-radius: 50px; /* Rounded edges */
  font-family: Arial, sans-serif;
  color: #4a6572; /* Text color */
  font-size: 14px;
  font-weight: bold;
  width: 190px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  background-color: #48659f; /* Blue color for the icon background */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.badge-icon i {
  color: white; /* White checkmark */
  font-size: 12px;
}

.rincian-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab.active {
  font-weight: bold;
  color: black;
  background-color: white;
  border-bottom: 2px solid white;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  color: #9a9a9a;
  background-color: #f9f9f9;
  margin-right: 5px;
  transition: background-color 0.3s ease;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab.active {
  font-weight: bold;
  color: #75af28;
  background-color: white;
  border-bottom: 2px solid white;
}

.dialogue {
  font-size: 16px;
}

.dialogue strong {
  font-weight: bold;
  color: #000;
}

.dialogue em {
  font-style: italic;
  color: #555;
}

.button-container {
  text-align: center;
  margin: 20px 0;
}

.button {
  width: 100%;
  display: inline-block;
  padding: 10px 20px;
  background-color: #75af28;
  color: #edeef0;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #579308;
}

.fundraiser-section {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  margin: 20px auto;
}

.image-container {
  flex-shrink: 0;
}

.fundraiser-img { 
  width: 210px;
  height: 125px;
  margin-right: 125px;
}

.text-container h2 {
  font-size: 18px;
  color: #333;
}

.text-container .highlight {
  color: #791086;
  font-weight: bold;
}

.btn-program {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-program:hover {
  background-color: #007bff;
  color: white;
}

 /* .horizontal-section-container:hover{
  background-color: #490752;
}  */

.horizontal-section-container{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.download-img {
  width: 10%;
  border-radius: 50%;
  margin-right: 10px;
}

.lorem-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.count {
  background-color: #00bfa5;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 16px;
}

.card-detail {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.time {
  font-size: 14px;
  color: #888;
}

.login-text1{
  text-align: center;
  padding: 20px;
}

.form-container {
  background-color: #fff;
  border-radius: 8px;
}

form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #d7d3d3;
  border-radius: 4px;
  font-size: 12px;
}

form input:focus {
  border-color: #007bff;
  outline: none;
}

.password-container {
  position: relative;
  width: 300px;
}

.password-input {
    width: 181%;
    padding: 15px;
    padding-right: 40px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.toggle-password {
    position: absolute;
    right: -219px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.toggle-password:hover {
     opacity: 1;
}

  .filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    width: 100%; /* Adjust width as needed */
  }

  .filter-item {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .filter-item svg {
    margin-right: 5px;
  }

  .icon-folder, .icon-filter, .icon-arrow, .icon-sort {
    width: 16px;
    height: 16px;
    fill: #00aeef;
  }

  .filter-item .text {
    font-size: 14px;
    color: #333;
  }

  .filter-divider {
    border-left: 1px solid #ddd;
    height: 20px;
    margin: 0 15px;
  }

  /* style login */
  .login-container {
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .login-box {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      max-width: 100%;
  }

  .back-button:hover{
      background-color: #559500;
  }

  .back-button{
      /* width: 100%; */
      /* padding: 10px; */
      background-color: #75af28;
      /* color: rgb(0, 0, 0); */
      border: none;
      font-size: 16px;
      cursor: pointer;
      margin-left: 10px;
  }


  h2 {
      font-size: 18px;
      margin-top: 10px;
  }
  
  p {
      /* font-size: 14px; */
      color: #555;
      margin-bottom: 20px;
  }
  
  .forgot-password a {
      color: #6a1b9a;
      text-decoration: none;
      margin-bottom: 20px;
  }

  .login-button:hover{
    background-color: #61a20d;
  }
  
  .login-button {
      width: 100%;
      padding: 10px;
      background-color: #61a20d;
      color: white;
      border: none;
      font-size: 16px;
      cursor: pointer;
  }
  
  .register-link {
      text-align: center;
      margin-top: 20px;
  }
  
  .register-link p {
      font-size: 14px;
  }
  
  .register-link a {
      color: #6a1b9a;
      text-decoration: none;
  }
  
  .quick-login {
      text-align: center;
      margin-top: 20px;
  }
  
  .quick-login p {
      font-size: 30px;
      color: #555;
      padding: 10px;
  }
  
  .google-login {
      width: 100%;
      padding: 10px;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
  }

    .horizontal-login-container{
        display: flex;
        justify-content: space-between;
        gap: 10px;
  }
  
  /* .google-login:before {
      content: url('https://www.gstatic.com/firebasejs/ui/2.0.0/images/auth/google.svg');
      margin-right: 10px;
  } */


  .google-button {
      display: flex;
      align-items: center;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px 20px;
      cursor: pointer;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
      width: 90%;
  }

  .google-button:hover {
      background-color: #f1f1f1;
  }

  .google-button img.google-logo {
      width: 20px;
      height: 20px;
  }

  .google-button span {
      font-size: 16px;
      color: #333;
      font-weight: 500;
      padding-left: 25%;
}

/* style register */
  .form-register-container {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
  }

  form {
      display: flex;
      flex-direction: column;
  }

  .password-register-input{
    width: 187%;
    padding: 15px;
    padding-right: 15px;
    padding-right: 40px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

  .toggle-register-password {
    position: absolute;
    right: -233px;
    top: 40%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  .daftar-register button {
      width: 100%;
      padding: 10px;
      background-color: #6a1b9a;
      color: white;
      border: none;
      font-size: 16px;
      cursor: pointer;
      text-align: center;
  }
/* 
  button:hover {
    background-color: #660066;
  } */


  a {
      color: #61a20d;
      text-decoration: none;
  }

  a:hover {
      text-decoration: underline;
  } 

  .quick-register p {
    text-align: center;
      font-size: 20px;
      color: #555;
      padding: 10px ;
  }

/* style list login */

  .container-list {
      background-color: white;
      border-radius: 8px;
  }

  .main-content {
      padding: 20px;
      text-align: center;
  }

  .main-content p {
      margin-bottom: 20px;
      color: #0b0101;
  }

  .login-list {
      background-color: white;
      border: 1px solid #800080;
      color: #800080;
      padding: 10px;
      width: 100%;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .login-list span {
      margin-right: 8px;
  }

  .login-list:hover {
      background-color: #490752;
      color: white;
  }

  .main-content a {
      color: #61a20d;
      text-decoration: none;
  }

  .main-content a:hover {
      text-decoration: underline;
  }

  .links {
      list-style-type: none;
      padding: 0;
      margin-top: 20px;
  }

  .links li {
      margin-bottom: 10px;
  }

  .links a {
      text-decoration: none;
      color: #333;
      display: flex;
      align-items: center;
      font-size: 16px;
  }

  .links a span {
      margin-right: 10px;
  }

  .links a:hover {
    color: #61a20d;
  }

  .footer-list {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 0 0 8px 8px;
      text-align: center;
  }

  .footer-logo img {
      width: 150px;
      margin-bottom: 10px;
  }

  .footer p {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
  }

  .hubungi-btn {
      background-color: white;
      border: 1px solid #800080;
      color: #800080;
      padding: 10px;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
  }

  .hubungi-btn:hover {
      background-color: #61a20d;
      color: white;
  }

/* style forgot */

  .container-forgot {
      background-color: white;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
      padding: 20px;
  }

  .back-link a {
      color: #fff;
      text-decoration: none;
      background-color: #61a20d;
      padding: 10px;
      border-radius: 5px;
      display: inline-block;
      margin-bottom: 20px;
  }

  .container-forgot-img {
      background-color: white;
      padding: 70px;
      text-align: center;
  }

  .icon-forgot-img {
      background-color: #ff3366;
      border-radius: 50%;
      padding: 20px;
      margin-bottom: 20px;
      display: inline-block;
  }

  .icon-forgot img {
      width: 100px;
  }

  h2 {
      font-size: 24px;
      color: #333;
      margin-bottom: 10px;
  }

  p {
      /* font-size: 16px; */
      color: #666;
      margin-bottom: 0;
  }

  .reset-form {
      padding: 20px;
  }

  .reset-password button {
      width: 100%;
      padding: 10px;
      background-color: #6a1b9a;
      color: white;
      border: none;
      font-size: 16px;
      cursor: pointer;
  }

  .reset-password button:hover {
      background-color: #61a20d;
  }

  /* style list */
  .list-container {
      background-color: white;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
}

  .list-header {
      background-color: #800080;
      color: white;
      padding: 15px;
      border-radius: 8px 8px 0 0;
      text-align: center;
  }

  .list-login {
      background-color: white;
      border: 1px solid #800080;
      color: #800080;
      padding: 10px;
      width: 100%;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .list-login span {
      margin-right: 8px;
  }

  .list-login:hover {
      background-color: #61a20d;
      color: white;
  }

  .link-list-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
      background-color: white;
      border-bottom: 1px solid #e0e0e0;
  }

  .link-list-info-icon {
      background-color: #d1e4e4;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .link-list-info-icon i {
      color: #006666;
      font-size: 18px;
      font-weight: bold;
  }

  .link-list-arrow {
      color: #d3d3d3;
      font-size: 18px;
  }

  .links {
      list-style-type: none;
      padding: 0;
      margin-top: 20px;
  }

  .list-banner {
      display: flex;
      align-items: center;
      /* background-color: #8b4fac; */
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .list-logo img {
      width: 500px;
      margin-right: 20px;
  }

  .list-text-content {
      display: flex;
      flex-direction: column;
  }

  .list-text-content h3 {
      margin: 0;
      /* font-size: 20px; */
  }

  .list-text-content p {
      margin: 5px 0 0 0;
      font-size: 14px;
      line-height: 1.5;
  }

  .list-hubungi-btn {
      background-color: #61a20d;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
  }

  .list-hubungi-btn:hover {
      background-color: #61a20d;
  }

  .button-cart {
    width:25px; 
    height:25px; 
    margin-right:10px;
  }

  .rounded-border {
    border: 1px solid rgb(240, 240, 240);
    border-radius: 10px; /* Makes the border rounded */
    margin-left: 10px;
    margin-right: 10px;
  }

  .styled-line {
    border: none;
    height: 0.5px;
    background-color: rgb(208, 208, 208);
    width: 100%; /* Full width */
    margin-top: 20px;
  }

  /* Start style for testimonial */
  .testimonial-container {
    margin-left: 15px;
    margin-right: 15px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
  }

  .testimonial {
    display: none;
  }

  .testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }

  .testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
  }

  .testimonial p {
    font-size: 16px;
    color: #555;
  }

  .testimonial h4 {
    margin-top: 15px;
    color: #333;
  }

  .nav-buttons {
    margin-top: 20px;
  }

  .nav-buttons button {
    background: #75af28;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 8px;
    cursor: pointer;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease-out forwards;
    animation-delay: 0.1s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    background-color: #1ebd5b;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  
/* Responsive Design */
@media (max-width: 568px) {
  .tab-bar {
      width: 100%;
      left: 50%;
      transform: translateX(-50%); 
      border-radius: 20px 20px 0 0;
  }
}