@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
header *, footer * {
  box-sizing: border-box;
  line-height: 17px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
}

.site-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .site-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 1366px) {
  .site-container {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}

.mobile-buttons {
  margin-left: auto;
  display: flex;
}
.mobile-buttons_search {
  background: none;
  display: flex;
  align-items: center;
  outline: none;
  border: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .mobile-buttons_search {
    display: none;
  }
}
.mobile-buttons_menu {
  background: none;
  width: 32px;
  height: 32px;
  margin: 0 12px;
  display: block;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 0;
  outline: none;
}
@media (min-width: 600px) {
  .mobile-buttons_menu {
    margin: 0 12px;
  }
}
@media (min-width: 1024px) {
  .mobile-buttons_menu {
    display: none;
  }
}
.mobile-buttons_menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: white;
  opacity: 1;
  left: 3px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.mobile-buttons_menu span:nth-child(1) {
  top: 7px;
}
.mobile-buttons_menu span:nth-child(2),
.mobile-buttons_menu span:nth-child(3) {
  top: 14px;
}
.mobile-buttons_menu span:nth-child(4) {
  top: 21px;
}
.mobile-buttons_menu.active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mobile-buttons_menu.active span:nth-child(2) {
  transform: rotate(45deg);
}
.mobile-buttons_menu.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.mobile-buttons_menu.active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header {
  background: grey;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 400;
}
.header_topbar form {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.header_topbar {
  background: #292929;
  width: 100%;
  height: 50px;
  margin: 0;
  position: relative;
  z-index: 10;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .header_topbar {
    height: 60px;
  }
}
.header_topbar.hide-topbar {
  height: 0;
  overflow: hidden;
}
.header_topbar .site-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 600px) {
  .header_topbar .site-container {
    padding: 0 45px 0 25px;
  }
}
@media (min-width: 768px) {
  .header_topbar .site-container {
    padding: 0 55px 0 25px;
  }
}
@media (min-width: 1366px) {
  .header_topbar .site-container {
    padding: 0;
  }
}
.header_topbar p {
  margin-right: 10px;
  color: white;
}
.header_topbar p span.mob {
  display: none;
}
@media (min-width:0px) and (max-width:767px) {
  .header_topbar p span {
    display: none;
  }
  .header_topbar p span.mob {
    display: block;
  }
}
@media (min-width:0px) and (max-width:480px) {
  .header_topbar p span.mob {
    font-size: 12px;
  }
}
.header_topbar-language {
  margin: 0 10px;
  position: relative;
  border: 1px white solid;
  border-radius: 8px;
  transition: max-height 0.5s ease;
}
.header_topbar-language.language-active .header_topbar-language-list {
  border-bottom: 1px white solid;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header_topbar-language-selected {
  background-color: #4b4b4b;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 28px) 50%;
  width: auto;
  min-width: 205px;
  height: 25px;
  margin: 0;
  padding: 8px 56px 8px 8px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: white;
  outline: none;
  position: relative;
  cursor: pointer;
  font-size: 12px;
}
@media (min-width: 768px) {
  .header_topbar-language-selected {
    height: 31px;
  }
}
@media (min-width:0px) and (max-width:420px) {
  .header_topbar-language-selected {
    background-position: calc(100% - 26px) 50%;
    min-width: 175px;
    padding: 8px 44px 8px 6px;
    line-height: 12px;
  }
}
.header_topbar-language-selected::after {
  background: url("https://www.barneysfarm.us/images/down-arrow.svg") 50% 0% no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  content: "";
  position: absolute;
  right: 7px;
}
.header_topbar-language-list {
  background-color: #4b4b4b;
  width: calc(100% + 2px);
  padding: 10px 0 0;
  position: absolute;
  top: 20px;
  left: -1px;
  overflow: hidden;
  border: 1px white solid;
  border-top: 0 !important;
  border-bottom: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .header_topbar-language-list {
    top: 26px;
  }
}
.header_topbar-language-list a {
  background-color: #4b4b4b;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
  margin: 0 0 5px;
  padding: 5px 40px 5px 10px;
  display: block;
  color: white;
  text-decoration: none;
  transition: all 0.5s ease;
  font-size: 12px;
}
.header_topbar-language-list a:last-child {
  margin: 0;
}
.header_topbar-language-list a:hover {
  background-color: #292929;
}
.header_topbar-continue {
  background: #fdfdfd;
  padding: 4px 8px;
  font-weight: 600;
  border: 0;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s;
  overflow: hidden;
  color: black;
  position: relative;
  border-radius: 5px;
  border: 1px transparent solid;
}
@media (min-width: 768px) {
  .header_topbar-language-list a {
    padding: 10px 40px 10px 10px;
  }
  .header_topbar-continue {
    padding: 8px 10px;
  }
}
@media (min-width: 1024px) {
  .header_topbar-continue {
    display: block;
  }
}
.header_topbar-continue:hover {
  box-shadow: inset 0 1.5em 0em 0em #292929, inset 0 -1.5em 0em 0em #292929;
  border-color: #292929;
  color: #fff;
  border: 1px white solid;
}
.header_topbar-close {
  background: url("https://www.barneysfarm.us/images/close.svg") 50% 0% no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 25px;
  cursor: pointer;
  border: 0;
  outline: none;
  transition: all 0.5s ease;
}
@media (min-width: 1024px) {
  .header_topbar-close {
    right: 25px;
  }
}
@media (min-width: 1366px) {
  .header_topbar-close {
    right: 0;
  }
}
@media (min-width: 0) and (max-width: 350px) {
  .header_topbar-close {
    right: 12px;
  }
}
@media (min-width: 351px) and (max-width: 620px) {
  .header_topbar-close {
    right: 25px;
  }
}
.header_topbar-close:hover {
  transform: rotate(360deg);
}
.header_main {
  background: #1c1c1c;
  min-height: 50px;
  margin: 0;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
@media (min-width: 1024px) {
  .header_main {
    padding: 20px 0;
  }
}
.header_main::after {
  background: #ffc300;
  content: "";
  width: 0%;
  height: 1px;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
}
.header_main.active::after {
  width: 100%;
}
.header_main .site-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1366px) {
  .header_main .site-container {
    padding: 0;
  }
}
.header_main-logo {
  width: 130px;
}
.header_main-logo img {
  width: 100%;
}
@media (min-width: 768px) {
  .header_main-logo {
    width: 253px;
  }
}
.header_main form {
  width: auto;
  position: relative;
  height: 40px;
}
.header_main input[type="submit"] {
  width: 0;
  height: 0;
  visibility: hidden;
}
.header_main-search {
  background: #060606 url("https://www.barneysfarm.us/images/search-yellow.svg") 16px 50% no-repeat !important;
  width: 100%;
  max-width: 100%;
  height: 40px !important;
  margin: 0 30px 0 20px !important;
  padding: 0 20px 0 48px !important;
  color: #ffc300 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: "Noto Sans", sans-serif !important;
  border: 1px #ffc300 solid !important;
  border-radius: 8px !important;
  outline: none !important;
  margin-right: auto !important;
  display: none;
}
@media (min-width: 1024px) {
  .header_main-search {
    max-width: 180px;
    display: block;
  }
}
@media (min-width: 1366px) {
  .header_main-search {
    max-width: 210px;
  }
}
.header_main-search::-moz-placeholder {
  color: #ffc300;
  font-size: 14px;
}
.header_main-search::placeholder {
  color: #ffc300;
  font-size: 14px;
}
.header_main nav {
  display: flex;
  align-items: center;
}
.header_main nav a {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
  display: none;
}
@media (min-width: 1024px) {
  .header_main nav a {
    margin-right: 40px;
    display: block;
  }
  .header_main nav a:not(.collections):not(.wholesale):not(.login):not(.cart) {
    display: none;
  }
  .header_main nav a.collections {
    margin-right: 60px;
  }
  .header_main nav a.login {
    margin-right: 20px;
  }
}
@media (min-width: 1100px) {
  .header_main nav a:not(.collections):not(.wholesale):not(.login):not(.cart) {
    display: none;
  }
  .header_main nav a.blog {
    display: block !important;
  }
  .header_main nav a.collections {
    margin-right: 40px;
  }
  .header_main nav a.login {
    margin-right: 30px;
  }
}
@media (min-width: 1280px) {
  .header_main nav a {
    display: block !important;
  }
}
@media (min-width: 1366px) {
  .header_main nav a {
    margin: 0 48px 0 0;
  }
  .header_main nav a.collections {
    margin-right: 50px;
  }
}
.header_main nav a:hover {
  color: #ffc300;
}
.header_main nav a.special, a.special:hover {
  color: #ffc300;
  margin: 0 32px 0 0;
}

.header_main nav a.collections::before {
  background: url("/us/images/down-arrow.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 16px;
  height: 16px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 0;
  right: -22px;
}
.header_main nav a.collections:hover::before {
  background:unset;
  background-color: #ffc300;
  -webkit-mask-image: url("/us/images/down-arrow.svg");
  mask-image: url("/us/images/down-arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}
.header_main nav a.collections.active {
  color: #ffc300;
}
.header_main nav a.collections.active::before {
  background-color: unset;
  -webkit-mask-image: unset;
  mask-image: unset;
  -webkit-mask-size: unset;
  mask-size: unset;
  background: url("https://www.barneysfarm.us/images/up-arrow.svg") 50% 0% no-repeat;
  top: 5px;
  right: -22px;

}

.header_main nav a.customer-service::before {
  background: url("/us/images/phone-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 12px;
  height: 12px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: -19px;
}
.header_main nav a.customer-service:hover::before {
  background:unset;
  background-color: #ffc300;
  -webkit-mask-image: url("/us/images/phone-icon.svg");
  mask-image: url("/us/images/phone-icon.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}

.header_main nav a.wholesale::before {
  background: url("/us/images/truck-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 16px;
  height: 16px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 1px;
  left: -22px;
}
.header_main nav a.wholesale:hover::before {
  background:unset;
  background-color: #ffc300;
  -webkit-mask-image: url("/us/images/truck-icon.svg");
  mask-image: url("/us/images/truck-icon.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}

.header_main nav a.login {
  display: none !important;
}
.header_main nav a.login::before {
  background: url("/us/images/login-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 12px;
  height: 12px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: -22px;
}
.header_main nav a.login:hover::before {
  background:unset;
  background-color: #ffc300;
  -webkit-mask-image: url("/us/images/login-icon.svg");
  mask-image: url("/us/images/login-icon.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}

.header_main nav a.cart {
  background: url("/us/images/cart-icon.svg") 50% 50% no-repeat;
  -o-object-fit: contain;
  object-fit: contain;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  transition: transform 0.3s ease;
}
.header_main nav a.cart span {
  width: 100%;
  height: 100%;
  padding: 9px 0 0 1px;
  display: block;
  color: white;
  font-size: 10px;
  font-weight: 700;
  opacity: 1;
  visibility: visible;
  text-align: center;
}
.header_main nav a.cart.active {
  background: #ffc300 url("/us/images/cart-icon-black.svg") 50% 50% no-repeat;
  transform: none !important;
}
.header_main nav a.cart.active span {
  opacity: 1;
  visibility: visible;
}
.header_main nav a.cart::after {
  display: none;
}
.header_main nav a.cart:hover {
  transform: translateX(5px);
}
.header_main-collections {
  width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all 0.2s ease;
  overflow: hidden;
  display: none;
}
@media (min-width: 1024px) {
  .header_main-collections {
    display: flex;
  }
}
.header_main-collections.collections-active {
  max-height: 1000px;
}
.header_main-collections p {
  width: 100%;
  padding-top: 20px;
  display: block;
  color: #ffc300;
  font-size: 14px;
  font-weight: 600;
}
.header_main-collections-block {
  width: 100%;
}
@media (min-width: 768px) {
  .header_main-collections-block {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .header_main-collections-block {
    width: auto;
  }
}
.header_main-collections-block a {
  margin: 15px 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header_main-collections-block a img, .header_main-collections-block a svg {
  width: 16px;
  margin-right: 10px;
}
.header_main-collections-block a:hover {
  color: #ffc300;
}
.header_main-collections-block a:hover img {
  filter: sepia(100%) saturate(1547%) brightness(81%) hue-rotate(344deg);
}
.header_mobile-menu {
  background: #1c1c1c;
  height: 100%;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  display: block;
}
.header_mobile-menu input[type="submit"] {
  width: 0;
  height: 0;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .header_mobile-menu {
    display: none;
  }
}
.header_mobile-menu.active {
  max-height: 1000px;
}
.header_mobile-menu-close {
  background: url("https://www.barneysfarm.us/images/close.svg") 50% 0% no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 0;
  outline: none;
  transition: all 0.5s ease;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100;
}
.header_mobile-menu .site-container {
  height: 100%;
  margin-top: 145px;
  margin-bottom: 45px;
  padding: 0 25px 25px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
  border-bottom: 1px #ffc300 solid;
  box-shadow: 0px 20px 20px 0px rgba(255, 195, 0, 0.1019607843);
}
.header_mobile-menu .mobile-search {
  background: #060606 url("https://www.barneysfarm.us/images/search-yellow.svg") 16px 50% no-repeat;
  width: 100%;
  height: 40px;
  margin: 0 0 30px 0;
  padding: 0 20px 0 48px;
  color: #ffc300;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif !important;
  border: 1px #ffc300 solid;
  border-radius: 8px;
  outline: none;
  margin-right: auto;
}
.header_mobile-menu .mobile-search::-moz-placeholder {
  color: #ffc300;
  font-size: 14px;
}
.header_mobile-menu .mobile-search::placeholder {
  color: #ffc300;
  font-size: 14px;
}
.header_mobile-menu-block {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .header_mobile-menu-block {
    width: 22%;
  }
  .header_mobile-menu-block:last-child {
    width: 100%;
  }
}
.header_mobile-menu-block a {
  margin: 15px 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header_mobile-menu-block a img, .header_mobile-menu-block a svg {
  width: 16px;
  margin-right: 10px;
}
.header_mobile-menu-block a:hover {
  color: #ffc300;
}
.header_mobile-menu-block a:hover img {
  filter: sepia(100%) saturate(1547%) brightness(81%) hue-rotate(344deg);
}

.footer {
  background: #1c1c1c;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 0;
}
.footer .site-container {
  height: 100%;
  padding: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 1024px) {
  .footer .site-container {
    padding: 32px 25px;
    align-items: flex-start;
  }
}
@media (min-width: 1366px) {
  .footer .site-container {
    padding: 32px 0;
    align-items: flex-start;
  }
}
.footer p {
  margin: 0;
  padding-bottom: 20px;
  color: white;
  font-size: 16px;
  font-family: "Lato", serif;
  line-height: 19px;
  font-weight: 700;
}
.footer_signup {
  width: 100%;
  padding: 0 25px 30px;
}
.footer_signup .newsletter-success {
  font-size: 15px;
  color: #fff;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .footer_signup {
    width: 40%;
    padding: 0;
  }
}
@media (min-width: 1366px) {
  .footer_signup {
    width: 40%;
    padding: 0;
  }
}
.footer_signup-check .custom-checkbox {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.footer_signup-check .custom-checkbox p {
  padding-bottom: 0;
  color: white;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
}
.footer_signup-check .custom-checkbox input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  margin: 0;
}
.footer_signup-check .custom-checkbox input:checked + span {
  background-color: #ffc300;
  border-color: #ffc300;
}
.footer_signup-check .custom-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
}
.footer_signup-check .custom-checkbox span {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-right: 10px;
  border: 1px solid #ffc300;
  border-radius: 4px;
  display: inline-block;
  background-color: white;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.footer_signup-check input[type="text"] {
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 15px;
  color: white;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif !important;
  border: 2px #ffc300 solid;
  border-radius: 8px;
  outline: none;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .footer_signup-check input[type="text"] {
    max-width: calc(70% - 15px);
    margin: 0 10px 0 0;
  }
}
.footer_signup-check input[type="text"]::-moz-placeholder {
  color: white;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
}
.footer_signup-check input[type="text"]::placeholder {
  color: white;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
}
.footer_signup-check input[type="submit"] {
  background: #ffc300;
  margin: 0;
  padding: 0 20px;
  width: 100%;
  height: 51px;
  margin: 14px 0 0;
  border: 0;
  outline: none;
  border: 1px white solid;
  border-radius: 8px;
  color: black !important;
  font-size: 18px;
  line-height: 21px;
  font-family: "Lato", serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s;
}
@media (min-width: 1024px) {
  .footer_signup-check input[type="submit"] {
    width: 30%;
    margin: 0;
  }
}
.footer_signup-check input[type="submit"]:hover {
  box-shadow: inset 0 1.5em 0em 0em #1c1c1c, inset 0 -1.5em 0em 0em #1c1c1c;
  border-color: #1c1c1c;
  color: #ffc300 !important;
  border: 1px #ffc300 solid;
}
.footer_follow {
  background: black;
  width: 50%;
  padding: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  border-top: 1px white solid;
  border-bottom: 1px white solid;
}
@media (min-width: 1024px) {
  .footer_follow {
    background: none;
    width: 15%;
    padding: 0;
    border: 0;
  }
}
@media (min-width: 1366px) {
  .footer_follow {
    background: none;
    width: 12%;
    padding: 0;
    border: 0;
  }
}
.footer_follow p {
  width: 100%;
}
.footer_follow a {
  width: 40%;
  margin: 5px 0 20px;
  display: block;
}
@media (min-width: 768px) {
  .footer_follow a {
    width: 15%;
  }
}
@media (min-width: 1024px) {
  .footer_follow a {
    width: 40%;
  }
}
.footer_payments {
  background: black;
  width: 50%;
  padding: 30px 0 0 0;
  text-align: center;
  border-top: 1px white solid;
  border-bottom: 1px white solid;
}
@media (min-width: 1024px) {
  .footer_payments {
    background: none;
    width: auto;
    padding: 0;
    border: 0;
    text-align: left;
  }
}
@media (min-width: 1366px) {
  .footer_payments {
    background: none;
    width: auto;
    padding: 0;
    border: 0;
    text-align: left;
  }
}
.footer_payments img {
  width: auto;
  height: auto;
  margin: 5px auto 30px;
  display: block;
  max-width: 80%;
}
@media (min-width: 1024px) {
  .footer_payments img {
    margin: 5px 0 30px;
  }
}
.footer_links {
  width: 100%;
  padding: 30px 25px 0;
}
@media (min-width: 1024px) {
  .footer_links {
    width: auto;
    padding: 0;
    display: block;
  }
}
.footer_links a {
  width: 100%;
  min-height: 32px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
}
.footer_links a.login {
  display: none;
}
.footer_links a.login::before {
  background: url("https://www.barneysfarm.us/images/login-icon-yellow.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  content: "";
  margin: 0 15px 0 0;
  padding: 0;
  display: block;
}
.footer_links a.location::before {
  background: url("https://www.barneysfarm.us/images/us-flag-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  content: "";
  margin: 0 15px 0 0;
  padding: 0;
  display: block;
}
.footer_links a.wholesale::before {
  background: url("https://www.barneysfarm.us/images/truck-icon-yellow.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  content: "";
  margin: 0 15px 0 0;
  padding: 0;
  display: block;
}
.footer_links a:hover {
  color: #ffc300;
}
.footer_bottom {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer_bottom {
    background: black;
  }
}
.footer_bottom-info,
.footer_bottom-links {
  width: 100%;
  padding: 0 25px 25px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer_bottom-info,
  .footer_bottom-links {
    width: 50%;
    padding: 0 25px 25px;
  }
}
@media (min-width: 1024px) {
  .footer_bottom-info,
  .footer_bottom-links {
    width: 32%;
    padding: 0;
  }
}
@media (min-width: 1366px) {
  .footer_bottom-info,
  .footer_bottom-links {
    width: 38%;
    padding: 0;
  }
}
.footer_bottom-info p,
.footer_bottom-links p {
  width: 100%;
}
.footer_bottom-info div,
.footer_bottom-links div {
  width: 100%;
  margin: 0;
  padding: 0 10px 0 0;
  display: block;
}
@media (min-width: 1024px) {
  .footer_bottom-info div,
  .footer_bottom-links div {
    width: 50%;
  }
}
.footer_bottom-info div a,
.footer_bottom-links div a {
  width: 100%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffc300;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
}
.footer_bottom-info div a::before,
.footer_bottom-links div a::before {
  background: #ffc300;
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  display: block;
  border-radius: 50%;
}
.footer_bottom-info div a:hover,
.footer_bottom-links div a:hover {
  color: white;
}
.footer_bottom-address {
  width: 100%;
  padding: 0 25px 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .footer_bottom-address {
    width: 28%;
    padding: 0;
  }
}
@media (min-width: 1366px) {
  .footer_bottom-address {
    width: 22%;
    padding: 0;
  }
}
.footer_bottom-address .address,
.footer_bottom-address .reg {
  margin: 0 0 10px 0;
  padding: 0 0 0 30px;
  font-size: 14px;
  line-height: 19px;
  position: relative;
}
.footer_bottom-address .address::before {
  background: url("https://www.barneysfarm.us/images/address-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 10px;
  height: 14px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
.footer_bottom-address .reg::before {
  background: url("https://www.barneysfarm.us/images/reg-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 14px;
  height: 17px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
.footer_bottom-address a {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0 0 0 30px;
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
}
.footer_bottom-address a:hover {
  color: #ffc300;
}
.footer_bottom-address a.tel {
  position: relative;
}
.footer_bottom-address a.tel::before {
  background: url("https://www.barneysfarm.us/images/tel-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 13px;
  height: 13px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
.footer_bottom-address a.email {
  position: relative;
}
.footer_bottom-address a.email::before {
  background: url("https://www.barneysfarm.us/images/email-icon.svg") 50% 0% no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  width: 17px;
  height: 17px;
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

main {
  width: 100%;
  min-height: 500px;
}

div#detail_wrap div#detail_img .img {
  width: 100%;
  min-height: unset;
  max-height: unset;
}
div#detail_img div#detail_thumbs_row_large {
    width: 100%;
    height: 92px;
    margin: 0;
    padding: 10px 0 10px 0;
    display: block;
    clear: both;
    position: relative;
    overflow: hidden;
      overflow-x: hidden;
    overflow-x: none;
    white-space: nowrap;
    box-sizing: border-box;
}
@media (min-width:0) and (max-width:620px) {
  div#detail_img div#detail_thumbs_row_large {
    overflow-x: scroll;
  }
}
div#detail_thumbs_row_large a.dimg {
    margin: 0px 11px 0px 11px;
    display: inline-block;
    white-space: normal;
}
div#detail_thumbs_row_large a img {
  border-radius: 8px;
}
.subhead2 {
  padding-top: 2px !important;
}
.detail_descbrieftop {
  width: 100%;
  padding: 0 0 12px 0;
  display: block;
  clear: both;
  box-sizing: border-box;
  position: relative;
}
#detail_descbrief {
  width: 100%;
  padding: 10px 0 10px 0;
  margin: 0 0 30px 0;
  color: #fff;
  display: block;
  clear: both;
  box-sizing: border-box;
  position: relative;
}
.truncated {
  overflow: hidden;
  height: 136px;
  text-overflow: ellipsis;
}
.truncated::after {
  content: "...";
  display: none;
  position: absolute;
  bottom: 3px;
  right: 0;
  color: #fff;
  background: #000;
  width: 20px;
  height: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.89);
}
#detail_descbrief, #detail_descbrief p {
  color: #fff;
  line-height: 18px;
}
.detail_descbrieftop a.readmorepdetail, .detail_descbrieftop a.readmorepdetail:hover {
  background: #060606;
  padding: 0 2px 0 10px;
  color: #FBC000;
  position: absolute;
  bottom: -8px;
  right: 0px;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
}
#detail_inf {
  color: #fff;
}

.detail_seed_type {
  color: #FFC300;
  display: block;
  clear: both;
  padding: 10px 0 10px 0;
  box-sizing: border-box;
  font-size: 16px;
}
@media (min-width: 0px) and (max-width:720px) {
  .detail_descbrieftop a.readmorepdetail, .detail_descbrieftop a.readmorepdetail:hover {
    left: 0;
    right: unset;
    padding: 0 2px 0 0px;
  }
}
@media (min-width: 120px) and (max-width: 599px) {
  div#detail_right div#detail_inf {
    margin: 0;
    border-bottom: 0;
  }
}

.header_main a#closeSugg, .header_main a#closeSugg:hover {
  background: transparent;
    color: #fff;
    cursor: pointer;
    display: none;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    height: 12px;
    position: absolute;
    right: 4px;
    top: 12px;
    width: 16px;
    z-index: 2000;
}
.header_main .suggestionsBox {
  position: absolute;
  overflow: hidden;
  z-index: 3000;
  left: 20px;
  top: 44px;
  margin: 0;
  min-width: 320px;
  width: calc(100% - 30px);
  padding: 0px;
  background-color: #060606;
  color: #fff;
  border-top: 0;
  border-right: 1px #FEC200 solid;
  border-left: 1px #FEC200 solid;
  border-bottom: 1px #FEC200 solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 2px 30px #000;
  border-top: 1px #FEC200 solid;
  border-radius: 8px;
}
.header_main .suggestionList {
  margin: 0px;
  padding: 0px;
}
.header_main .suggestionList ul li {
  list-style:none;
  display: block;
  clear: both;
  margin: 0px;
  padding: 6px;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-style: normal;
}
.header_main .suggestionList ul li:hover, .header_main .suggestionList ul li.hovered {
  background-color: #d68119;
  color:#000;
}
.header_main .suggestionList ul {
  font-size:11px;
  color:#FFF;
  padding:0;
  margin:0;
  display: block;
  clear: both;
}

@media (max-width:1024px) {
  .header_main .suggestionsBox, .header_main a#closeSugg, .header_main a#closeSugg:hover {
    display: none !important;
  }
}
.header_mobile-menu form {
  width: calc(100% - 50px);
  position: absolute;
  top: 75px;
}
.header_mobile-menu a#closeSugg, .header_mobile-menu a#closeSugg:hover {
  background: transparent;
    color: #fff;
    cursor: pointer;
    display: none;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    height: 12px;
    position: absolute;
    right: 6px;
    top: 12px;
    width: 16px;
    z-index: 2000;
}
.header_mobile-menu .suggestionsBox {
  position: absolute;
  overflow: hidden;
  z-index: 3000;
  left: 0;
  top: 44px;
  margin: 0;
  width: 100%;
  padding:0px;
  background-color: #060606;
  color: #fff;
  border-top: 0;
  border-right: 1px #FEC200 solid;
  border-left: 1px #FEC200 solid;
  border-bottom: 1px #FEC200 solid;
  border-top: 1px #FEC200 solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 2px 30px #000;
  border-radius: 8px;
}
.header_mobile-menu .suggestionList {
  margin: 0px;
  padding: 0px;
}
.header_mobile-menu .suggestionList ul li {
  list-style:none;
  display: block;
  clear: both;
  margin: 0px;
  padding: 6px;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-family: Arial;
}
.header_mobile-menu .suggestionList ul li:hover, .header_mobile-menu .suggestionList ul li.hovered {
  background-color: #d68119;
  color:#000;
}
.header_mobile-menu .suggestionList ul {
  font-size:11px;
  color:#FFF;
  padding:0;
  margin:0;
  display: block;
  clear: both;
}

.header_main-search:focus::placeholder {
  color: transparent;
}
.header_mobile-menu .mobile-search:focus::placeholder {
  color: transparent;
}

/* product page specs etc */
.product-info {
  width: 100%;
  max-width: unset;
}
@media (min-width: 0px) and (max-width: 1245px) {
  .product-info {
    width: 100%;
    max-width: unset;
  }
}
.product-info__spec {
  background: #1c1c1c;
  width: 100%;
  margin: 20px 0 20px 0;
  padding: 20px 25px;
  box-sizing: border-box;
}
.product-info__spec h3 {
  margin: 0 0 20px 0;
  color: #ffc300;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-align: left;
  font-family: "Lato", serif;
}
.product-info__spec .subtitle {
  margin: 18px 0 10px 0;
  color: #ffc300;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-align: left;
  font-family: "Lato", serif;
}
@media (min-width: 600px) {
  .product-info__spec h3 {
    font-size: 21px;
    line-height: 28px;
  }
}
.product-info__spec-tabs {
  width: 100%;
  display: flex;
}
.product-info__spec-tabs button {
  background: none;
  width: 50%;
  margin: 0 0 10px 0;
  padding: 0 0 5px 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-align: left;
  font-family: "Lato", serif;
  border: 0;
  border-bottom: 1px #9c9c9c solid;
  cursor: pointer;
}
@media (min-width: 600px) {
  .product-info__spec-tabs button {
    width: 70%;
    font-size: 18px;
    line-height: 22px;
  }
}
.product-info__spec-tabs button:first-child {
  width: 50%;
}
@media (min-width: 600px) {
  .product-info__spec-tabs button:first-child {
    width: 48%;
  }
}
.product-info__spec-tabs button.active {
  color: #ffc300;
  border-bottom: 1px #ffc300 solid;
}
.product-info p {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.product-info table {
  width: 100%;
  display: none;
}
.product-info table.active {
  display: table;
}
.product-info table tbody {
  width: 100%;
}
.product-info table tr {
  width: 100%;
  display: flex;
}
.product-info table tr td {
  width: 50%;
  margin: 0;
  padding: 10px 0;
  display: flex;
  vertical-align: top;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
  border-bottom: 1px #424242 solid;
}
@media (min-width: 600px) {
  .product-info table tr td {
    width: 70%;
    font-size: 16px;
    line-height: 20px;
  }
}
.product-info table tr td span {
  width: 30px;
  padding-top: 3px;
}
.product-info table tr td span img {
  width: 16px;
}
.product-info table tr td span img.genetics {
  width: 20px;
}
.product-info table tr td:first-child {
  width: 50%;
}
@media (min-width: 600px) {
  .product-info table tr td:first-child {
    width: 48%;
  }
}
.product-info table tr:last-child td {
  border-bottom: 0;
}
.product-info__accordion {
  margin: 20px 0;
  padding: 0;
  display: block;
  overflow: hidden;
}
.product-info__accordion.active .product-info__accordion-heading::after {
  transform: rotate(0) !important;
}
.product-info__accordion.active .product-info__accordion-block {
  max-height: unset !important;
}
.product-info__accordion.active .product-info__accordion-block::after {
  width: 100% !important;
}
.product-info__accordion-heading {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #ffc300;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
@media (min-width: 600px) {
  .product-info__accordion-heading {
    font-size: 21px;
    line-height: 28px;
  }
}
.product-info__accordion-heading::after {
  background: url("https://www.barneysfarm.us/images/product-icons/up-arrow.svg") 50% 50% no-repeat;
  background-size: 12px;
  transform: rotate(180deg);
  width: 16px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 600px) {
  .product-info__accordion-heading::after {
    background-size: 22px;
    width: 22px;
  }
}
.product-info__accordion-block {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.product-info__accordion-content {
  margin: 0;
  padding: 0;
    font-size: 14px;
}
.product-info__accordion-content p {
  font-size: 14px;
}
@media (min-width: 120px) and (max-width: 599px) {
  div#detail_wrap div#detail_img::after {
    content: "" !important;
    display: none;
  }
}
@media (min-width: 120px) and (max-width: 599px) {
  div#detail_wrap div#detail_img {
    padding-bottom: 10px;
  }
}