.color-facebook {
  color: #1877f2;
  /* Facebook Blue */
}

.color-instagram {
  color: #e1306c;
  /* Instagram Pink */
}

.color-x {
  color: #000000;
  /* X (Twitter) Black */
}

.color-linkedin {
  color: #0077b5;
  /* LinkedIn Blue */
}

.color-facebook:hover,
.color-instagram:hover,
.color-x:hover,
.color-linkedin:hover {
  opacity: 0.8;
}

.social-facebook {
  color: #3b5998;
}

.social-x {
  color: #000;
}

.social-linkedin {
  color: #0077b5;
}

.social-pinterest {
  color: #e60023;
}

.social-whatsapp {
  color: #25D366;
}

.social-telegram {
  color: #0088cc;
}

.card-title {
  margin-bottom: 0px;
}

@media (max-width: 576px) {
  .modal-fullscreen-sm-down {
    max-width: 100%;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border-radius: 0;
  }
}
.footer-menu {
  list-style-type: none;
}
.logo {
  margin: 0;
  width: 150px;
}
@media (max-width: 768px) {
  .logo {
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .top-menu:not(.top-link-menu) > li {
    padding-right: 0px;
  }
  .top-menu:not(.top-link-menu) > li a i {
    font-size: 2rem;
    color: black;
  }
  .top-menu:not(.top-link-menu) > li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    font-size: 0em;
    line-height: 0;
    margin-top: 0;
  }
}
.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-popup .video-popup-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
}
.video-popup .video-popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 36px;
  padding: 10px;
  color: white;
  cursor: pointer;
  touch-action: manipulation;
  z-index: 10;
}
.video-popup .video-popup-content .video-wrapper {
  position: relative;
  padding-top: 56.25%;
}
.video-popup .video-popup-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.save-on-product {
  display: flex;
  align-items: center;
  color: green;
  font-size: 1.2rem;
  margin-top: 5px;
}
.save-on-product svg {
  width: 20px;
  margin-right: 5px;
}
.save-on-product img {
  width: 15px !important;
  margin-right: 5px;
}

.variants-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.variants-ul li {
  display: inline-block;
}
.variants-ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333;
  border: 1px solid black;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.variants-ul li a .discount {
  display: inline-block;
  background-color: green;
  color: white;
  padding: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 1rem;
}
.variants-ul li a .info {
  padding: 2rem;
}
.variants-ul li a.active {
  border-color: green;
  background: linear-gradient(to top right, rgba(0, 128, 0, 0.2), rgba(173, 216, 230, 0.5));
}
.variants-ul li a:hover {
  border-color: green;
  background: linear-gradient(to top right, rgba(0, 128, 0, 0.2), rgba(173, 216, 230, 0.5));
}
.variants-ul li:not(:last-child) {
  margin-right: 10px;
}

.footer-bottom > .container {
  display: block;
}
.footer-bottom > .container .social-icons {
  justify-content: center;
}

body {
  background-color: rgba(211, 211, 211, 0.3);
}

.custom-hero {
  text-align: center;
}
.custom-hero .hero-overlay {
  background-color: rgba(46, 125, 50, 0.7);
  color: white;
}
.custom-hero .hero-overlay .desc {
  color: white;
}

.btn-filter-symptom {
  color: #2E7D32 !important;
  text-decoration: underline;
}
.btn-filter-symptom:hover {
  text-decoration: underline;
}

.plant-disease-card {
  --critical-color: #dc3545;
  --moderate-color: #ffc107;
  --mild-color: #28a745;
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  background-color: white;
  transition: all 0.3s ease;
}
.plant-disease-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.plant-disease-card .disease-image {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .plant-disease-card .disease-image {
    height: 180px;
  }
}
.plant-disease-card .card-body .card-text {
  line-height: 1.5em;
  min-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.plant-disease-card .card-body .severity-badge {
  background-color: var(--critical-color);
  color: white;
}
.plant-disease-card .find-cure-btn {
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 5px;
  margin-top: 10px;
  background-color: #2E7D32;
  color: white;
}
.plant-disease-card .find-cure-btn:hover {
  background-color: #205823;
}

#symptomsModal {
  --primary-color: $color-primary;
}
#symptomsModal .btn-filter-symptom {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}
#symptomsModal .btn-filter-symptom:hover {
  color: var(--primary-green);
  text-decoration: underline;
}
#symptomsModal .symptom-btn {
  margin: 5px;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  background-color: white;
  transition: all 0.3s ease;
}
#symptomsModal .symptom-btn.active {
  background-color: var(--primary-green);
  color: white;
}
#symptomsModal .modal-header {
  background-color: var(--light-green);
  border-bottom: 2px solid var(--primary-green);
}
#symptomsModal .modal-title {
  color: var(--primary-green);
  font-weight: bold;
}
#symptomsModal #symptomsSearch {
  border-color: var(--primary-green);
  focus-visible: var(--primary-green);
}
#symptomsModal .symptoms-container {
  max-height: 400px;
  overflow-y: auto;
}/*# sourceMappingURL=diagnosis.css.map */