<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.question-container {
  flex-grow: 1;
}
.question-container button {
  padding: 10px 15px;
  background: #3a3a3a;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}
.question-container input {
  border: 1px solid #cacaca;
}

.cart-button-link {
  position: relative;
}
.cart-button-link .cart-count {
  position: absolute;
  background: #3a3a3a;
  color: white;
  border-radius: 100px;
  font-weight: bold;
  width: 19px;
  height: 19px;
  font-size: 10px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  top: -5px;
  left: 16px;
  border: 2px solid white;
}

.discount-banner-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 0;
  transition: 0.3s height;
  display: flex;
}

.discount-banner {
  width: 100%;
  background: #A1C65B;
  padding: 12px;
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 100px;
}
.discount-banner .x img {
  height: 30px;
}

.top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px 40px;
  padding-right: 10px;
  flex-wrap: nowrap;
  border-bottom: 1px solid gainsboro;
}
@media (max-width: 750px) {
  .top-bar {
    padding: 20px 20px;
  }
}
.top-bar ul {
  background-color: white;
}
.top-bar img.logo {
  height: 58px;
  object-fit: contain;
  padding-right: 25px;
}
.top-bar li {
  display: flex;
  align-items: center;
}
.top-bar a {
  color: #3f3f3f;
}
.top-bar a:hover {
  text-decoration: underline;
}
.top-bar .menu-text {
  padding: 0;
}
.top-bar .menu-left {
  display: flex;
  justify-content: space-between;
}
.top-bar .menu-icon {
  display: none;
}
@media (max-width: 850px) {
  .top-bar .menu-icon {
    display: inline-block;
  }
}
@media (max-width: 850px) {
  .top-bar .main-menu-links {
    display: none;
  }
}
.top-bar .menu-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 30px;
}
.top-bar .menu-right img {
  height: 25px;
  margin-right: 25px;
  cursor: pointer;
}
.top-bar .menu-right .show-search-icon {
  height: 23px;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  .top-bar .menu-right {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .top-bar .menu-right .menu-icon {
    margin-right: 0;
  }
}
.top-bar .menu-right .phone {
  margin-right: 25px;
  font-size: 17px;
}
.top-bar .menu-right .phone a {
  color: #2636ac;
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .top-bar .menu-right .phone.desktop {
    display: none;
  }
}
.top-bar .menu-right .phone.mobile {
  display: none;
}
@media (max-width: 1000px) {
  .top-bar .menu-right .phone.mobile {
    display: block;
    font-size: 15px;
    margin: 6px 0 -1em;
  }
}
.top-bar .search-container {
  display: none;
  flex-grow: 1;
  justify-content: center;
  padding: 20px;
  align-items: center;
}
.top-bar .search-container img {
  height: 25px;
  margin-left: 25px;
  cursor: pointer;
}
.top-bar .search-container .search-icon {
  margin-left: 10px;
}
.top-bar .search-container .search-input {
  width: 500px;
  max-width: 80%;
  margin: 0;
}
@media (max-width: 750px) {
  .top-bar .search-container .search-input {
    width: auto;
    flex-grow: 1;
  }
}

.mobile-menu {
  overflow-y: hidden;
  transition: 0.2s max-height;
  margin: 0;
  background: white;
}
.mobile-menu li {
  border-top: 1px solid #d1d1d1;
}
.mobile-menu li a {
  color: #3c3c3c;
  padding: 15px;
  display: block;
}
.mobile-menu li:hover {
  text-decoration: underline;
}

.footer {
  background: #f0f0f0;
  padding: 45px;
  display: flex;
  flex-wrap: wrap;
}
.footer .header {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 25px;
}
.footer &gt; div.social-media {
  width: 100%;
  padding: 0;
}
.footer &gt; div.social-media img {
  height: 50px;
  margin: 20px 7px 0px;
}
.footer &gt; div {
  padding: 10px 15px;
}
.footer .legal-section {
  border-top: 1px solid gray;
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  color: gray;
  font-size: 12px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 750px) {
  .footer .legal-section {
    flex-direction: column-reverse;
  }
  .footer .legal-section .payment-types-image {
    margin-bottom: 30px;
  }
}
.footer .legal-section .payment-types-image {
  height: 30px;
}
.footer .legal-section .icons a {
  color: gray;
}
.footer .links-section {
  width: 25%;
}
@media (max-width: 750px) {
  .footer .links-section {
    width: 100%;
  }
}
.footer .links-section a {
  display: block;
  color: gray;
  margin-bottom: 5px;
}
.footer .links-section a:hover {
  text-decoration: underline;
}
.footer .newsletter {
  width: 50%;
}
@media (max-width: 750px) {
  .footer .newsletter {
    width: 100%;
  }
}
.footer .newsletter .email-input {
  display: flex;
}
.footer .newsletter .email-input input {
  margin: 0;
}
.footer .newsletter .email-input button {
  background: #3c3c3c;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 10px;
}
.footer .contact {
  width: 25%;
}
@media (max-width: 750px) {
  .footer .contact {
    width: 100%;
  }
}
.footer .contact .contact-info &gt; div {
  margin-top: 15px;
  font-size: 15px;
  color: #333232;
}

.loader {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  border: 3px solid blue;
  border-top: none;
  border-bottom: none;
}

.upsell-popup-content {
  background: white;
  width: 900px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid gray;
  box-shadow: rgba(0, 0, 0, 0.6);
}
.upsell-popup-content h2 {
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
.upsell-popup-content .soil-quantity-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upsell-popup-content .soil-quantity-container {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.upsell-popup-content .soil-quantity-container #soil-quantity {
  width: 60px;
  margin: 0;
  margin-right: 10px;
}
.upsell-popup-content .add-to-cart {
  padding: 10px 15px;
  background: #3a3a3a;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
}
.upsell-popup-content .cancel-upsell {
  padding: 10px 15px;
  border: 2px solid #3a3a3a;
  color: #3a3a3a;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
}
.upsell-popup-content .upsell-buttons {
  display: flex;
  justify-content: center;
}
.upsell-popup-content .upsell-buttons button {
  margin: 0px 20px 30px;
}
@media (max-width: 750px) {
  .upsell-popup-content .upsell-buttons {
    flex-direction: column;
  }
}

.upsell-content {
  display: flex;
}
.upsell-content div {
  padding: 10px;
}
.upsell-content div img {
  margin: 0 auto;
  display: block;
}

/*# sourceMappingURL=common.css.map */
</pre></body></html>