/* Font Face Definitions */
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Utility */
.pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Typography Mixins */
.paragraph-large {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.heading-small-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

.heading-medium-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

.heading-large-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
}

.h1 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
}

.h2 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

.h3 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

* {
  font-family: "Quicksand";
}

body {
  background-color: #F8F3EC;
}

.plant-details {
  padding: 0 16px 16px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .plant-details--carousel {
    margin-top: 0 !important;
  }
}
.plant-details--summary {
  background-color: white;
}
@media (min-width: 768px) {
  .plant-details--summary {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .plant-details--summary {
    border-radius: 0 !important;
    margin: -48px 0 !important;
  }
}
.plant-details--summary-container {
  width: 100%;
}
.plant-details--summary h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--summary h2 {
    font-size: 48px;
    margin-bottom: 18px;
  }
}
.plant-details--summary p {
  color: #705C3E;
  margin: 8px 0;
}
@media (min-width: 768px) {
  .plant-details--summary p {
    font-size: 20px;
  }
}
.plant-details--summary span {
  color: #4E3D22;
}
.plant-details--summary span.bold {
  font-weight: 700;
}
.plant-details--activity {
  width: 100%;
  background-color: white;
  align-self: flex-end;
}
.plant-details--activity-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .plant-details--activity-container {
    justify-content: flex-end;
  }
}
.plant-details--activity-item {
  background-color: #EBE9E5;
  padding: 16px;
  width: 100%;
  border-radius: 16px;
  color: #4E3D22;
  text-align: center;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .plant-details--activity-item {
    width: 84px;
    height: 76px;
  }
}
.plant-details--activity-item:nth-child(2) {
  margin: 16px 16px;
}
.plant-details--activity-item-value {
  font-weight: 700;
}
.plant-details--detail {
  background-color: white;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .plant-details--detail {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
}
.plant-details--detail-container {
  background-color: white;
  border: 2px solid #ECE5DA;
  border-radius: 16px;
  padding: 16px !important;
}
.plant-details--detail-list {
  margin-top: -16px;
  margin-bottom: -16px;
}
.plant-details--detail-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .plant-details--detail-list ul {
    display: flex;
    gap: 16px;
    position: relative;
  }
}
.plant-details--detail-list ul li {
  padding: 16px 0;
  border-bottom: 2px solid #ECE5DA;
}
@media (min-width: 768px) {
  .plant-details--detail-list ul li {
    border-bottom: none;
    display: flex;
    flex-grow: 1;
    position: relative;
  }
  .plant-details--detail-list ul li::before {
    content: "";
    position: absolute;
    top: 30%;
    bottom: 30%;
    left: -10px;
    width: 1px;
    background-color: #ECE5DA;
  }
  .plant-details--detail-list ul li:first-child::before {
    display: none;
  }
}
.plant-details--detail-list ul li:last-child {
  border-bottom: none;
}
.plant-details--detail-list ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #4E3D22;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .plant-details--detail-list ul li a {
    padding: 8px;
    text-align: center;
  }
}
.plant-details--detail-list ul li a img {
  vertical-align: sub;
  margin-right: 8px;
}
.plant-details--characteristics {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .plant-details--characteristics {
    margin: 32px 0;
  }
}
@media (min-width: 768px) {
  .plant-details--characteristics {
    margin: 48px 0;
  }
}
.plant-details--characteristics-item {
  flex: 0 1 calc(50% - 8px);
  border-radius: 16px;
  background-color: #EBE9E5;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .plant-details--characteristics-item {
    flex: 0 1 calc((100% - 32px) / 3);
  }
}
@media (min-width: 1024px) {
  .plant-details--characteristics-item {
    flex: 0 1 calc((100% - 80px) / 6);
    flex-flow: column;
  }
}
.plant-details--characteristics-item img {
  background-color: #F7D5C9;
  height: 32px;
  width: 32px;
  padding: 32px 16px;
}
@media (min-width: 1024px) {
  .plant-details--characteristics-item img {
    height: 23px;
    width: 100%;
    padding: 16px;
  }
}
.plant-details--characteristics-item-wrapper {
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1024px) {
  .plant-details--characteristics-item-wrapper {
    margin: 24px 0;
    text-align: center;
  }
}
.plant-details--characteristics-item-label, .plant-details--characteristics-item-value {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .plant-details--characteristics-item-label, .plant-details--characteristics-item-value {
    max-width: 130px;
    font-size: 18px;
  }
}
.plant-details--characteristics-item-value {
  font-weight: 700;
}
.plant-details--about {
  margin-top: 24px;
  width: 100%;
  background-color: white;
}
.plant-details--about-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.plant-details--about-title img {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.plant-details--about-title h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--about-title h2 {
    font-size: 32px;
  }
}
.plant-details--about p {
  color: #4E3D22;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .plant-details--about p {
    font-size: 18px;
  }
}
.plant-details--about-content {
  position: relative;
  padding-left: 20px !important;
}
.plant-details--about-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #DBE0D7;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .plant-details--about-list {
    width: 65%;
  }
}
@media (min-width: 768px) {
  .plant-details--about-list-container {
    flex-flow: row;
    display: flex;
  }
}
.plant-details--about-list-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
}
.plant-details--about-list-item:nth-child(odd) {
  background-color: #F8F3EC;
  border-radius: 8px;
}
.plant-details--about-list-item:nth-child(even) {
  background-color: white;
}
.plant-details--about-list-item-value {
  font-weight: 700;
}
.plant-details--about-tags {
  margin-top: 16px;
  display: inline-block;
  color: #4E3D22;
}
@media (min-width: 768px) {
  .plant-details--about-tags {
    margin-top: 0;
    margin-left: 32px;
  }
}
.plant-details--about-tags h2 {
  margin-right: 8px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .plant-details--about-tags h2 {
    margin-top: 0;
  }
}
.plant-details--about-tags-items {
  display: flex;
  gap: 8px;
  flex-flow: wrap;
}
.plant-details--about-tags-items .plant-details--about-tag {
  display: flex;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background-color: #EBE9E5;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .plant-details--about-tags-items .plant-details--about-tag {
    font-size: 16px;
  }
}
.plant-details--calendar {
  margin-top: 24px;
  width: 100%;
  background-color: white;
}
.plant-details--calendar-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.plant-details--calendar-title h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--calendar-title h2 {
    font-size: 32px;
  }
}
.plant-details--calendar-title img {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.plant-details--caring {
  margin-top: 24px;
  width: 100%;
  color: #4E3D22;
  background-color: white;
}
.plant-details--caring-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.plant-details--caring-title h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--caring-title h2 {
    font-size: 32px;
  }
}
.plant-details--caring-title img {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.plant-details--caring-item {
  margin-bottom: 8px;
  border-bottom: 2px solid #ECE5DA;
  overflow: hidden;
}
.plant-details--caring-item:last-child {
  border-bottom: none;
}
.plant-details--caring-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.plant-details--caring-list-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  /* alternating backgrounds */
}
.plant-details--caring-list-item:nth-child(odd) {
  background-color: #F8F3EC;
  border-radius: 8px;
}
.plant-details--caring-list-item:nth-child(even) {
  background-color: white;
}
.plant-details--caring-summary {
  margin-top: 8px;
  margin-bottom: 16px;
  background-color: #F8F3EC;
  border-radius: 16px;
}
.plant-details--caring-summary p {
  color: #4E3D22;
  font-size: 14px;
  padding: 32px;
}
@media (min-width: 768px) {
  .plant-details--caring-summary p {
    font-size: 20px;
  }
}
.plant-details--caring .collapsible {
  background-color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  transition: 0.15s ease-in-out;
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .plant-details--caring .collapsible {
    font-size: 16px;
  }
}
.plant-details--caring .collapsible .chevron {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  transition: transform 0.22s ease;
  transform: rotate(0deg);
}
.plant-details--caring .collapsible .chevron img {
  width: 100%;
  height: 100%;
}
.plant-details--caring .collapsible.active .chevron {
  transform: rotate(180deg);
}
.plant-details--tip {
  margin-top: 24px;
  width: 100%;
  background-color: #F8F3EC;
}
.plant-details--tip-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  background-color: #F7EBC1;
  border-radius: 16px;
  padding: 16px 32px 32px 32px;
}
@media (min-width: 768px) {
  .plant-details--tip-content {
    padding: 32px 48px 48px 48px;
  }
}
.plant-details--tip-content h3, .plant-details--tip-content p {
  font-family: "Kalam";
}
.plant-details--tip-content h3 {
  color: #322716;
  margin-bottom: 8px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .plant-details--tip-content h3 {
    font-size: 32px;
  }
}
.plant-details--tip-content p {
  color: #705C3E;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 768px) {
  .plant-details--tip-content p {
    font-size: 26px;
  }
}
.plant-details--tip-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 8px;
  background: linear-gradient(225deg, #F8F3EC 45%, rgba(251, 241, 202, 0.5607843137) 50%, #F7EBC1 55%);
  z-index: 2;
}
@media (min-width: 768px) {
  .plant-details--tip-content::after {
    width: 80px;
    height: 80px;
  }
}
.plant-details--friends {
  margin-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  background-color: #F3EFF6;
}
.plant-details--friends-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.plant-details--friends-title h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--friends-title h2 {
    font-size: 32px;
  }
}
.plant-details--friends-title img {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.plant-details--friends-card {
  border-radius: 16px;
  background-color: #E6DEEB;
  padding: 32px !important;
}
@media (min-width: 768px) {
  .plant-details--friends-card {
    display: flex;
    justify-content: space-between;
  }
}
.plant-details--friends-card hr {
  height: 2px;
  background-color: #C0ADCD;
  margin: 16px 0;
  border: 0;
}
.plant-details--friends-amount {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .plant-details--friends-amount {
    display: flex;
  }
  .plant-details--friends-amount img {
    width: 18px;
    height: auto;
  }
}
.plant-details--friends-amount span {
  margin: auto 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .plant-details--friends-amount span {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .plant-details--friends-explainer {
    width: 60%;
    position: relative;
  }
  .plant-details--friends-explainer::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -32px;
    width: 2px;
    background-color: #C0ADCD;
    border-radius: 999px;
  }
}
.plant-details--friends-explainer span {
  font-size: 12px;
  color: #4E3D22;
}
@media (min-width: 768px) {
  .plant-details--friends-explainer span {
    font-size: 18px;
  }
}
.plant-details--friends-explainer button {
  margin-top: 16px;
  height: 51px;
  background-color: #F8F3EC;
  border-radius: 16px;
  color: #4E3D22;
  font-weight: 700;
  width: 100%;
  border-style: none;
}
@media (min-width: 768px) {
  .plant-details--friends-explainer button {
    display: block;
    width: 30%;
    font-size: 18px;
  }
}
.plant-details--friends-explainer button a {
  text-decoration: none;
  color: inherit;
}
.plant-details--suggest {
  margin-top: 24px;
  width: 100%;
  background-color: #F8F3EC;
}
.plant-details--suggest-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  background-color: #FBE8DF;
  border-radius: 16px;
  padding: 32px !important;
  text-align: center;
  font-size: 14px;
}
.plant-details--suggest-card h2 {
  color: #322716;
  font-size: 20px;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--suggest-card h2 {
    font-size: 32px;
  }
}
.plant-details--suggest-card img {
  height: 24px;
  width: 24px;
  margin: 0 auto;
}
.plant-details--suggest-card button {
  margin-top: 16px;
  height: 51px;
  background-color: #F7D5C9;
  border-radius: 20px;
  color: #4E3D22;
  font-weight: 700;
  width: 100%;
  border-style: none;
}
.plant-details--suggest-card button a {
  text-decoration: none;
  color: inherit;
}
.plant-details--reviews {
  display: none;
}
@media (min-width: 768px) {
  .plant-details--reviews {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.plant-details--reviews-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .plant-details--reviews-container {
    flex-direction: row;
    gap: 32px;
  }
}
.plant-details--reviews-image {
  position: relative;
  text-align: center;
}
.plant-details--reviews-image::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 100%;
  background: url("../../gfx/leafs-group.svg") center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .plant-details--reviews-image::before {
    width: 60px;
  }
}
.plant-details--reviews-image img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
}
.plant-details--reviews-image h3 {
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
  margin: 24px auto 8px;
  width: 90%;
  color: #4E3D22;
}
.plant-details--reviews-image span {
  color: #705C3E;
  font-size: 14px;
}
.plant-details--reviews-content {
  font-size: 20px;
  max-width: 439px;
}
@media (min-width: 768px) {
  .plant-details--reviews-content {
    max-width: 643px;
  }
}
.plant-details--reviews-content h2 {
  font-family: "Kalam";
  font-weight: 700;
  margin: 8px 0;
  color: #4E3D22;
}
.plant-details--reviews-content .review-text {
  font-size: 20px;
  font-family: "Kalam";
  font-weight: 400;
  color: #705C3E;
}
.plant-details--reviews-content .review-date {
  font-size: 14px;
  color: #705C3E;
}
.plant-details--reviews-more {
  align-content: flex-end;
}
.plant-details--reviews-more button {
  height: 32px;
  width: 100%;
  min-width: 85px;
  border-radius: 8px;
  background-color: #ECE5DA;
  border: none;
  font-weight: 700;
}
.plant-details--reviews-more button a {
  text-decoration: none;
  color: #4E3D22;
}
.plant-details--reviews-more img {
  transform: rotate(-90deg);
  vertical-align: middle;
  height: 14px;
}
.plant-details--stores {
  margin-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  background-color: white;
}
.plant-details--stores-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.plant-details--stores-title h2 {
  color: #322716;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  .plant-details--stores-title h2 {
    font-size: 32px;
  }
}
.plant-details--stores-title img {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.plant-details--stores-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plant-details--stores-list p {
  font-weight: 700;
  color: #705C3E;
  margin: 0px;
}
.plant-details--stores-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plant-details--stores-list ul li {
  padding: 16px 0;
  border-bottom: 2px solid #ECE5DA;
}
.plant-details--stores-list ul li:first-child {
  border-top: 2px solid #ECE5DA;
}
.plant-details--stores-list ul li:last-child {
  border-bottom: none;
}
.plant-details--stores-list ul li a {
  text-decoration: none;
  color: #4E3D22;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.plant-details--stores-list ul li a img {
  vertical-align: middle;
  margin-right: 8px;
  height: 40px;
  width: 40px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.plant-details--stores-list ul li a span {
  font-weight: 700;
  font-size: 16px;
  /* allow truncation if needed */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.plant-details--stores-list ul li a .chevron {
  margin-left: auto;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform: rotate(-90deg);
}
.plant-details--stores-list ul li a .chevron img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.plant-details--stores-other {
  padding-top: 24px;
  background-color: #F8F3EC;
  border-radius: 16px;
}
.plant-details--stores-other .plant-details--stores-list {
  padding: 24px 32px 32px;
}
.plant-details--stores-other .plant-details--stores-list p {
  margin-bottom: 16px;
}
.plant-details--stores-other .plant-details--stores-list span {
  font-weight: 400;
}

.plant-details {
  overflow: hidden;
}

.background-card {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
@media (min-width: 1024px) {
  .background-card {
    position: unset;
    margin: 48px 0;
    width: unset;
    border-radius: 16px;
  }
}

.padding-wrapper {
  margin: 0 16px;
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .padding-wrapper {
    margin: 0 48px;
    padding: 16px 0;
  }
}

.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-tablet {
  display: none;
}

.hidden-desktop {
  display: block;
}
@media (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}

.slideshow-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.slideshow-container .slideshow {
  position: relative;
}
.slideshow-container .slideshow .image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .slideshow-container .slideshow .image-wrapper {
    height: 615px;
  }
}
@media (min-width: 1024px) {
  .slideshow-container .slideshow .image-wrapper {
    height: 670px;
  }
}
.slideshow-container .slideshow .slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.slideshow-container .slideshow .slide-track img {
  flex-basis: 100%;
  flex-shrink: 0;
  width: 100%;
  object-fit: cover;
}
.slideshow-container .slideshow .info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #DBE0D7;
  padding: 0 16px;
  z-index: 0;
}
.slideshow-container .slideshow .info-bar .photo-credit {
  font-size: 12px;
}
@media (min-width: 480px) {
  .slideshow-container .slideshow .info-bar .photo-credit {
    font-size: 16px;
  }
}
.slideshow-container .slideshow .info-bar .navigation-controls {
  display: flex;
  align-items: center;
}
.slideshow-container .slideshow .info-bar #slide-counter {
  font-weight: 700;
  font-size: 12px;
  color: #4E3D22;
}
@media (min-width: 480px) {
  .slideshow-container .slideshow .info-bar #slide-counter {
    font-size: 16px;
  }
}
.slideshow-container .slideshow .info-bar .nav-arrow {
  display: none;
}
@media (min-width: 480px) {
  .slideshow-container .slideshow .info-bar .nav-arrow {
    display: flex;
  }
}
.slideshow-container .slideshow .info-bar .nav-arrow, .slideshow-container .slideshow .info-bar .action-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
}
@media (min-width: 480px) {
  .slideshow-container .slideshow .info-bar .nav-arrow, .slideshow-container .slideshow .info-bar .action-btn {
    margin: 0 5px;
  }
}

/*# sourceMappingURL=_plantdetails-new.css.map */
