@font-face {
  font-family: "Conv_SharpGrotesk-Book25";
  src: url("../fonts/SharpGrotesk-Book25.eot");
  src: local("â˜º"), url("../fonts/SharpGrotesk-Book25.woff") format("woff"),
    url("../fonts/SharpGrotesk-Book25.ttf") format("truetype"),
    url("../fonts/SharpGrotesk-Book25.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Conv_SharpGrotesk-Medium25";
  src: url("../fonts/SharpGrotesk-Medium25.eot");
  src: local("â˜º"), url("../fonts/SharpGrotesk-Medium25.woff") format("woff"),
    url("../fonts/SharpGrotesk-Medium25.ttf") format("truetype"),
    url("../fonts/SharpGrotesk-Medium25.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Conv_SharpGrotesk-SemiBold25";
  src: url("../fonts/SharpGrotesk-SemiBold25.eot");
  src: local("â˜º"), url("../fonts/SharpGrotesk-SemiBold25.woff") format("woff"),
    url("../fonts/SharpGrotesk-SemiBold25.ttf") format("truetype"),
    url("../fonts/SharpGrotesk-SemiBold25.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  width: 100% !important;
  font-family: "Conv_SharpGrotesk-Medium25";
  /*background: #f5f6f7;*/
  background: #fff;
  /* transition: all 0.3s ease; */
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

/*////// Loader /////////*/
.loader_custom {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* @keyframes loader{
  from{
    stroke-dashoffset:0
  }
  to{
    stroke-dashoffset:2114
  }
}

.loader-wrapper{
  position:fixed;
  width:200px;
  height:160px;
  top:calc(50% - 80px);
  left:calc(50% - 100px);
}
.loader{
  fill:none;
  stroke:#23a34d;
  stroke-width:2px;
  stroke-dasharray:1072;
  stroke-dashoffset:0;
  animation:loader 3s linear infinite;
} */

.loader_cstm {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #23a34d #23a34d transparent #23a34d;
  box-sizing: border-box;
  animation: rotation 1.5s linear infinite;
}
.loader_cstm::after,
.loader_cstm::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #cccccc #cccccc;
  width: calc(80px - 15px);
  height: calc(80px - 15px);
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.7s linear infinite;
  transform-origin: center center;
}
.loader_cstm::before {
  width: calc(80px - 30px);
  height: calc(80px - 30px);
  border-color: #23a34d #23a34d transparent transparent;
  animation: rotation 2s linear infinite;
}

.loader_custom h6 {
  font-size: 14px;
  margin-top: 20px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.position-fixed {
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  position: fixed;
  border-radius: 0;
  transition: all 0.3s ease;
}

.position-fixed.active {
  transition: all 0.3s ease;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

img {
  width: 100%;
}

.cart {
  padding-left: 100px;
}

.logged.position-fixed,
.navigation_menu {
  background-color: #fff;
}

.logged .navbar {
  padding: 15px 0 15px;
  margin-bottom: 0;
}

.navbar {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.navbar.cstm_nav {
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.home_menu.navbar {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.navbar.cstm_nav.home_menu {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.sub_menu {
  z-index: 998;
  /* padding: 14px 0; */
  margin-top: 82px;
  position: relative;
  background-color: #fff;
}

.sub_menu_all {
  padding: 14px 0;
  border-top: 1px solid #000;
}

.sub_menu_all ul {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

.navbar-nav > li > a,
.sub_menu_all a {
  color: #777;
  transition: all 0.3s ease;
}

.cstm_login,
.log_opt {
  color: #332a31 !important;
}

.home_menu .navbar-nav > li > a {
  color: #332a31;
}

.navbar-nav > li > a.add_count,
.navbar-nav > li > a.add_count:hover {
  color: #23a34d !important;
}

.sub_menu_all a.active {
  color: #23a34d !important;
  transition: all 0.3s ease;
}

.sub_menu_all a:hover {
  color: #23a34d !important;
  transition: all 0.3s ease;
}

.h-100 {
  height: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

ul {
  list-style: none;
  padding-left: 0;
}

.navbar-nav {
  margin: 0;
}

.navbar-brand {
  padding: 10px 15px;
}

.navbar-brand img {
  width: 155px;
}

.banner {
  height: 100vh;
  width: 100%;
  margin-top: -1px;
  background-color: #23a34d;
}

.banner_text h1 {
  font-size: 58px;
  text-transform: uppercase;
  color: #000000;
  line-height: 68px;
  font-family: "Conv_SharpGrotesk-SemiBold25";
}

.banner .row {
  display: flex;
  height: 100%;
  align-items: end;
  width: 100%;
  justify-content: center;
}

.banner_text {
  width: 70%;
  position: relative;
  padding-bottom: 150px;
}

.banner_text .hen_img {
  bottom: 24%;
  left: -9%;
  position: absolute;
}

/* .banner_text .hen_img img {
    width: 330px;
} */

.banner_text .hen_img img {
  /* width: 20vw; */
  width: 100%;
  height: 78vh;
}

.after_view {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hide,
.visib_mob,
.cart_ipad {
  display: none;
}

.after_view.visible {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  display: block !important;
}

.text_content {
  z-index: 10;
  position: relative;
}

.custom_form {
  max-width: 440px;
  margin-top: 65px;
}

.form-group {
  position: relative;
}

.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.checkoutcart_sec {
  width: 100%;
  border-top: 1px solid #000;
  padding-top: 8px;
}

.form-control:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.custom_form .form-control {
  font-size: 25px;
  color: #000;
  height: auto;
  border: none;
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 2px solid #000;
  background-color: transparent;
  font-family: "Conv_SharpGrotesk-Book25";
}
.custom_form .form-control::placeholder {
  color: #000;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.custom_form span {
  right: 0;
  top: 8px;
  color: #000;
  position: absolute;
  font-size: 26px;
  font-family: "Conv_SharpGrotesk-Book25";
}

.custom_form span a {
  color: #000;
}

/*//////// Footer ////////*/
.border_top {
  border-top: 1px solid #000;
}

.footer {
  padding: 30px 0;
  background-color: #d1d1d1;
}

.cstm_pdng {
  padding: 28px 0 40px;
}

.footer_left img {
  width: 190px;
}

.footer h4,
.product_head h4 {
  color: #000000;
  font-size: 16px;
  font-family: "Conv_SharpGrotesk-Medium25";
  text-transform: uppercase;
  margin-bottom: 26px;
  margin-top: 0;
}
.top_padding {
  padding-top: 100px !important;
}

.footer p {
  color: #000;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Conv_SharpGrotesk-Book25";
}

.footer_logo img {
  width: 200px;
}

.services ul li {
  padding: 0 0 15px;
  font-family: "Conv_SharpGrotesk-Book25";
}
.footer a {
  color: #727272;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Conv_SharpGrotesk-Book25";
  cursor: pointer;
}

.footer a:hover,
.footer .contact_us a:hover {
  color: #23a34d;
  transition: all 0.3s ease;
}

.footer .contact_us a {
  color: #000;
}

.contact_top {
  padding-bottom: 30px;
}

.social_media {
  display: flex;
  margin-bottom: 0;
  gap: 40px;
  margin-left: auto;
}

.social_media a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s ease;
}

.social_media a svg:hover {
  fill: #23a34d;
  transition: all 0.3s ease;
}

.email_subscription {
  padding-top: 14px;
}

.email_subscription input {
  width: 100%;
  border: 0px;
  background: none;
  font-family: "Conv_SharpGrotesk-Book25";
  color: #000;
  font-size: 16px;
  padding: 0;
  margin-bottom: 36px;
}

.email_subscription input::placeholder {
  color: #727272;
}

.email_subscription a {
  color: #23a34d !important;
  font-size: 16px;
  font-family: "Conv_SharpGrotesk-Medium25";
  text-transform: capitalize;
}
.email_subscription a span {
  margin-left: 20px;
}

.copyright {
  padding: 24px 0 0;
}

.copyright span {
  font-size: 12px;
  color: #000000;
  font-family: "Conv_SharpGrotesk-Book25";
}

.margin-top {
  margin-top: 60px;
}

.visib_ipad,
.visib_mob {
  display: none;
}

.product_listing {
  padding-bottom: 40px;
}

.product_listing .row {
  display: flex;
  flex-wrap: wrap;
}

.product_listing_no_padding {
  padding-bottom: 0px;
}

.product_name_right {
  gap: 60px;
  color: #777;
  font-size: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.product_info,
.farm_info {
  padding-bottom: 60px;
}

.product_info,
.farm_info,
.top_brd_nw2 {
  margin-top: 84px;
}

.product_cart {
  height: 100%;
}

.product_descriptions {
  padding: 20px 0;
}

.product_descriptions p {
  line-height: 24px;
  font-family: "Conv_SharpGrotesk-Book25" !important;
  color: #333 !important;
}

.farm_name h4 {
  text-transform: uppercase !important;
}

.visit_farm_btn {
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #23a34d;
}

/*//////// Product Listing ///////*/
.banner_img img {
  width: 100%;
  min-height: 305px;
  max-height: 305px;
  object-fit: cover;
}

.banner_text_head {
  padding-top: 20px;
  margin-top: 20px;
}

.item_name_head h5 {
  font-size: 16px;
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Conv_SharpGrotesk-Medium25";
}

.item_name_content p {
  margin-bottom: 0;
  font-family: "Conv_SharpGrotesk-Book25";
}

.products_single {
  margin-top: 30px;
  margin-bottom: 10px;
}

.product_img,
.product_visual {
  position: relative;
}

.product_img img {
  width: 100%;
  min-height: max-content;
  max-height: max-content;
  object-fit: cover;
}

/* .product_img img {
  width: 100%;
  min-height: 251px;
  max-height: 251px;
  object-fit: cover;
}  */

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
  background-color: rgb(0 0 0 / 45%);
}

.overlay:hover {
  opacity: 1;
  transition: all 0.3s ease;
}

.product_img a {
  color: #fff;
  transition: all 0.3s ease;
}

.product_avail_status {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  height: 100%;
}

.add_card {
  top: 0;
  right: 0;
  z-index: 10;
  position: absolute;
  padding: 16px 24px;
  background-color: #000;
}

.add_cart a {
  width: 60px;
  height: 60px;
  display: flex;
  color: #fff;
  align-items: center;
  transition: all 0.3s ease;
  justify-content: center;
  background-color: #000;
}

.add_cart a svg {
  width: 26px;
  height: 26px;
}

.add_cart a:hover {
  background-color: #333;
  transition: all 0.3s ease;
}

.sold_out {
  color: #fff;
  display: block;
  padding: 14px 26px;
  text-transform: uppercase;
  background-color: #777;
}
.modal-backdrop.fade {
  opacity: 0.5 !important;
}

/*////// Plus and Minus /////*/
.incrs {
  width: 100%;
  height: 60px;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  background-color: #23a34d;
}
.incrs:hover {
  background-color: #00882d;
  transition: all 0.3s ease;
}
.input_value {
  width: 60px;
  display: flex;
  color: #fff !important;
  align-items: center;
  justify-content: center;
  height: calc(100% - 120px);
  background-color: #23a34d;
}
.input line {
  stroke: #fff;
}
.input-row {
  display: flex;
  padding: var(--space-8) 0;
  border-bottom: var(--border);
}
.input-row:last-child {
  border-bottom: 0;
}
.title {
  margin-right: var(--space-8);
}
.label {
  margin-bottom: var(--space-1);
  font-weight: bold;
}
.description {
  color: var(--color-gray-600);
}
.input {
  height: 100%;
  width: 60px;
}
.number {
  font-size: var(--text-lg);
  min-width: var(--space-12);
  text-align: center;
}
.icon {
  user-select: none;
}
.dim {
  color: var(--color-gray-400);
}
/*/// End ///*/

.product_description {
  padding-top: 10px;
}

.product_name a {
  color: #000;
  font-size: 12px;
  transition: all 0.3s ease;
}

.product_name a:hover {
  color: #22a34c;
  transition: all 0.3s ease;
}

.product_name {
  width: 50%;
  word-break: break-word;
}

.product_pricing {
  width: 48%;
  word-break: break-word;
}

.product_pricing {
  text-align: right;
}

.product_pricing span {
  color: #22a34c;
  font-size: 12px;
  text-align: right;
  font-family: "Conv_SharpGrotesk-Book25";
  font-weight: normal;
}
/* .product_pricing {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  overflow: hidden;
  line-height: 1.5em;
  color: #22a34c;
} */

.product_pricing {
  /* display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  overflow: hidden;
  line-height: 1.5em; */
  color: #22a34c;
}

.seller,
.farm_details {
  color: #777;
  font-size: 12px;
  margin-top: 6px;
}

.seller.cstm_adjst {
  min-height: 31px;
  font-size: 11px;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.align_adjst.seller.cstm_adjst {
  margin-left: auto;
  text-align: right;
}

.mt-0 {
  margin-top: 0 !important;
}

.farm_details span {
  width: calc(100% - 100px);
}

.certified {
  margin-left: auto;
}

.farm_details {
  color: #000;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #000;
}

.cms_content .modal-dialog {
  width: 760px !important;
}

.visit_farm {
  margin-left: auto;
  color: #22a34c;
  width: 100px;
  transition: all 0.3s ease;
  text-align: right;
}

/*//// Modal Custom ////*/
button.close {
  background: #000 !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 15px !important;
  margin-top: 0px !important;
  opacity: inherit !important;
  font-family: "Conv_SharpGrotesk-Book25" !important;
}

button.close span {
  float: left;
  width: 10px;
  height: 10px;
  font-size: 0px;
  text-indent: -999em;
  background: url(../images/popup_close_btt_bg.png) no-repeat center center;
}

.modal-header {
  padding: 0 0 0 !important;
  border-bottom: 1px solid #000 !important;
  margin-left: 30px !important;
}

.modal-content .nav-pills {
  padding-bottom: 40px;
}

.modal-content {
  border-radius: 0;
}

.loginreg .nav > li {
  width: 49%;
}

.modal-body.loginreg {
  padding: 10px 30px 30px 30px !important;
}

.loginreg .nav > li > a {
  padding: 0;
  width: 100%;
  font-size: 14px;
  color: #777777;
  font-family: "Conv_SharpGrotesk-Medium25";
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  color: #000;
  background: none;
  font-size: 18px;
  font-family: "Conv_SharpGrotesk-Medium25";
}

.padding_B_15 {
  padding-bottom: 20px !important;
}

.custom_select_big {
  width: 100% !important;
  height: 35px !important;
  background: url(../images/custom_select_big.png) no-repeat right center !important;
  padding: 0px 20px 0px 0px !important;
  font-family: "Conv_SharpGrotesk-Medium25";
  color: #000 !important;
  font-size: 16px;
  padding-right: 20px;
  border-top: 1px solid #000 !important;
  border: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
  outline: none;
  resize: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

select,
input:-webkit-autofill,
select,
input:-webkit-autofill:hover,
select,
input:-webkit-autofill:active,
select,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  background-color: #ffffff !important;
  color: #555 !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #555555 !important;
}

.searchbox_blk {
  border: 0;
  border-top: 1px solid #000000 !important;
  box-sizing: border-box;
  border-radius: 0px;
  /* overflow: hidden; */
  position: relative;
  /* padding-bottom: 10px; */
  padding-bottom: 15px;
}

.searchbox_blk input,
.searchbox_blk textarea {
  border: 0 !important;
  background: transparent;
  padding: 5px 0;
  width: 100%;
  color: #23a34d;
  font-family: "Conv_SharpGrotesk-Book25";
  font-size: 14px;
  margin-bottom: 5px;
}

.searchbox_blk .fa-arrow-right {
  position: absolute;
  right: 0;
  top: 6px;
}

.keepmelogsec {
  margin-top: 35px;
  margin-bottom: 15px;
}

#exampleModalLong .clearfix {
  line-height: 0;
}

.margin_T_0 {
  margin-top: 0;
}

/*////// Custom Checkbox ////////*/
.keepmelogsec .custom_checkbox {
  padding-left: 40px;
  font-size: 13px !important;
}

.custom_checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  line-height: 24px;
  font-family: "Conv_SharpGrotesk-Book25";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.keepmelogsec .checkmark {
  height: 30px;
  width: 30px;
}

.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #23a34e;
}

.custom_checkbox .checkmark:after {
  left: 8px;
  top: 2px;
  width: 5px;
  height: 10px;
  content: "\2713";
  color: #fff;
  font-size: 15px;
  position: absolute;
}

.custom_checkbox input:checked ~ .checkmark {
  background-color: #23a34e;
  border: 1px solid #23a34e;
}

.keepmelogsec .custom_checkbox:hover .checkmark {
  background-color: #23a34e;
  border: 1px solid #23a34e;
}

.custom-radios input[type="radio"] {
  display: none;
}

.custom_radio {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  color: #000;
  line-height: 24px;
  font-family: "Conv_SharpGrotesk-Book25";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.custom-radios .checkmark {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  border: 1px solid #39a24f;
  text-align: center;
  line-height: 44px;
  transition: all 0.3s ease;
}
.custom_radio:hover .checkmark {
  background-color: #39a24f;
  transition: all 0.3s ease;
}

.custom-radios input[type="radio"]:checked + .checkmark {
  background-color: #39a24f;
}
.custom-radios input[type="radio"]:checked + .checkmark:after {
  left: 8px;
  top: -7px;
  width: 5px;
  height: 10px;
  content: "\2713";
  color: #fff;
  font-size: 15px;
  position: absolute;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}

.primarylink .fas {
  float: right;
}

/*/// End ////*/

.forgotplink {
  padding-top: 5px;
  font-family: "Conv_SharpGrotesk-Book25";
}

.forgotplink a {
  color: #777777;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.add_count {
  color: #23a34d !important;
  font-family: "Conv_SharpGrotesk-Book25" !important;
}

.keepmelogsec a:hover {
  color: #23a34d;
  transition: all 0.3s ease;
}

.wildkalepopup .modal-footer {
  padding: 15px 0 0 0;
  margin: 0 15px;
  text-align: left;
  border-top: 1px solid #000;
  font-family: "Conv_SharpGrotesk-Book25";
}

a.cancellink {
  color: #777777;
  font-size: 18px;
  font-family: "Conv_SharpGrotesk-Book25";
  text-transform: capitalize;
}

a.primarylink {
  color: #23a34d;
  font-size: 18px;
  display: block;
  font-family: "Conv_SharpGrotesk-Book25";
}

a.primarylink:hover,
a.cancellink:hover {
  color: #000;
}

.loginreg h3 {
  padding: 15px 0 10px 0;
  border-top: 1px solid #000;
  color: #000;
  font-family: "Conv_SharpGrotesk-Medium25";
  font-size: 16px;
}

.errordis_none {
  display: block;
  color: red !important;
  font-size: 10px;
  font-weight: normal !important;
  margin-top: 5px;
  font-family: "Conv_SharpGrotesk-Book25";
  letter-spacing: 1px;
  /* padding-top: 10px; */
}

.custom_select_big_gray {
  width: 100% !important;
  height: 35px !important;
  background: url(../images/custom_select_big_gray.png) no-repeat right center !important;
  padding: 0px 20px 0px 0px !important;
  font-family: "Conv_SharpGrotesk-Book25";
  color: #777 !important;
  font-size: 15px;
  padding-right: 20px;
  border-top: 1px solid #000 !important;
  border: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.active {
  color: #23a34d !important;
}

.custom_form .form-control.ng-dirty.ng-invalid.ng-invalid-required {
  border-bottom: 2px solid #f00 !important;
}

.zipcode_box.ng-dirty.ng-invalid.ng-invalid-required {
  border-bottom: 2px solid #f00 !important;
}

input.ng-invalid.ng-dirty {
  border-bottom: 2px solid #f00;
}

.product_head {
  padding: 20px 0;
}

.product_head h4 {
  text-transform: uppercase;
}

.product_wrapper {
  gap: 40px;
}

.product_left_wrapper h4,
.product_right_wrapper h4 {
  text-transform: none;
  font-size: 14px;
}

.product_left_wrapper h4 {
  font-size: 16px;
}

.product_left_wrapper {
  width: 40%;
  overflow: hidden;
  position: relative;
}
.farm_left_wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product_left_wrapper img {
  width: 100%;
  min-height: auto;
  max-height: max-content;
  object-fit: contain;
}
.subcnt {
  font-size: 11px !important;
  /* color: #979797; */
  /* line-height: 5px !important; */
  font-weight: 300 !important;
}
.product_right_wrapper {
  width: 60%;
}

.prdct_head_cstm.product_left_wrapper {
  width: 80%;
}

.product_right_wrapper.price_date_show {
  width: 20%;
}

.product_right_wrapper.price_date_show .prdt_price {
  margin-left: auto;
}

.product_right_wrapper h4 {
  color: #22a34c;
}

.product_wrapper h4 {
  margin-bottom: 0;
}

.farm_rating ul {
  gap: 6px;
  margin-bottom: 0;
}

.farm_review_num p {
  margin-bottom: 0;
  font-family: "Conv_SharpGrotesk-Book25";
}

.farm_rating {
  gap: 24px;
  justify-content: flex-end;
}

.farm_rating svg {
  fill: #dd9500;
}

.farm_wrapper .product_name_right {
  color: #000;
}

.centerSpinner {
  background: url("../images/ajax-loader-big.gif") no-repeat scroll 50% 50% #fff;
  border-radius: 20px;
  height: 129px;
  left: 46%;
  position: absolute;
  text-align: center;
  top: 36%;
  width: 146px;
  z-index: 99999;
}

.centerSpinnerInv {
  background: url("../images/ajax-loader-big.gif") no-repeat scroll 50% 50% #fff;
  border-radius: 20px;
  height: 129px;
  left: 46%;
  position: absolute;
  text-align: center;
  top: 36%;
  width: 146px;
  z-index: 99999;
}

.opaqueWrap {
  opacity: 0.5;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
}

.opaqueWrapInv {
  opacity: 0.5;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
}

#product_list .owl-item {
  /* margin-right: 30px; */
}

.owl-theme .owl-controls .owl-page span {
  background: #fff !important;
  opacity: 0.6 !important;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  opacity: 1 !important;
  background: #000 !important;
}

.owl-theme .owl-controls {
  bottom: 0;
  width: 100%;
  position: absolute;
  margin-top: 0 !important;
  margin-bottom: 5px;
  text-align: left !important;
}

.product_left_wrapper.w-100,
.product_right_wrapper.w-100 {
  width: 100%;
}

.product_left_wrapper.w-100 img {
  max-height: 500px;
  min-height: 500px;
}

.product_right_wrapper.w-100 .product_descriptions {
  /* margin-top: 26px; */
  border-top: 1px solid #000;
}

.product_left_wrapper.border_top.w-100 {
  padding: 20px 0;
  margin-top: 30px;
}

.product_left_wrapper.no_margin_top.w-100 {
  padding: 20px 0;
}
/* .pt-top {
  padding-top: 110px;
} */

.cart_items_custom {
  min-width: 480px;
  padding: 20px;
  text-align: left;
  border: none;
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #f1f1f1;
}

.cstm_arrow {
  position: absolute;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #f1f1f1;
  top: -16px;
  right: 22px;
}

.cart_left h5 {
  color: #000;
  font-size: 11px;
  font-family: "Conv_SharpGrotesk-Book25";
}

.remove_cart {
  color: #777777;
  font-size: 10px;
  padding: 5px 0 !important;
  font-family: "Conv_SharpGrotesk-Book25";
}

.remove_cart:hover {
  color: #000;
}

.cart_right {
  margin-left: auto;
  text-align: right;
}

.item_img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.item_img img {
  min-height: 60px;
  max-height: 60px;
  object-fit: cover;
}

.cart_qty svg {
  width: 9px;
  height: 9px;
}

.cart_plus svg {
  width: 8px;
  height: 8px;
}

.cart_qty {
  gap: 8px;
}

.cart_minus {
  padding: 5px;
  line-height: 0;
}

.cart_minus:hover {
  background-color: #ccc;
}

.cart_minus svg {
  stroke: #000000;
}

.qty_show {
  font-size: 12px;
}

.item_details h5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.amount_show span {
  color: #22a34c;
  font-size: 12px;
  text-align: right;
  font-family: "Conv_SharpGrotesk-Book25";
}

.amount_show {
  padding-top: 5px;
}

.checkout_btn {
  background: #23a34d;
  padding: 12px 16px;
  color: #fff !important;
  font-size: 11px;
  float: left;
  width: auto;
  margin-top: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: "Conv_SharpGrotesk-Book25";
}

.checkout_btn:hover {
  background: #117d34;
  transition: all 0.3s ease;
}

/*////////// Custom Delivery Date Design ///////////*/
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
  pointer-events: none;
}

.side-nav--visible {
  pointer-events: auto;
}

.side-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav__container {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: #fff;
  height: 100%;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
  transform: translateX(-102%);
  display: flex;
  flex-direction: column;
  will-change: transform;
  overflow: hidden;
  overflow-y: auto;
}

.side-nav--animatable .side-nav__container {
  transition: transform 0.13s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav--visible.side-nav--animatable .side-nav__container {
  transition: transform 0.33s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav--visible::before {
  opacity: 1;
}

.side-nav--visible .side-nav__container {
  transform: none;
}

.side-nav__hide {
  position: absolute;
  left: 16px;
  top: 16px;
  background: none;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
}

.side-nav__header {
  height: 80px;
  background: #23a34d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 30px 0;
}

.side-nav__content {
  padding-top: 32px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.side-nav__content li {
  padding: 0 16px;
  padding: 45px 25px;
  border-bottom: 1px solid #000;
}

.side-nav__content li:last-child {
  border-bottom: none;
}

.side-nav__content li h6 {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Conv_SharpGrotesk-Medium25";
}

.side-nav__content li p {
  font-size: 10px;
  font-family: "Conv_SharpGrotesk-Book25";
}

.delivery_left {
  width: 80%;
}

.side-nav__content .checkmark {
  position: relative;
  display: block;
  left: auto;
  right: 0;
  top: -4px;
}

.side-nav__content li p {
  margin-bottom: 0;
}

.side-nav__content .custom_checkbox {
  padding-left: 0;
  margin-bottom: 0;
}

/*///// Custom Scrollbar for delivery date ////*/

.side-nav__container {
  --sb-track-color: #232e33;
  --sb-thumb-color: #39a24f;
  --sb-size: 4px;
}

.side-nav__container::-webkit-scrollbar {
  width: var(--sb-size);
}

.side-nav__container::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 0;
}

.side-nav__container::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 0;
}

@supports not selector(::-webkit-scrollbar) {
  .side-nav__container {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
/*/// End ///*/

.delivery_date_show {
  margin-left: auto;
  width: 265px;
  text-align: right;
}
.delivery_date_show a {
  text-align: right;
}

.sub_menu_list {
  width: calc(100% - 265px);
}

.cstm_nav {
  border-bottom: 1px solid #e7e7e7;
}

.toast-success {
  background-color: #23a34d !important;
}

.FarmerSuggestionSaved {
  color: #23a34d !important;
}

#toast-container .toast-message {
  font-size: 14px !important;
  font-weight: normal !important;
  font-family: "Conv_SharpGrotesk-Book25" !important;
}

.modal-body.contactform {
  padding: 15px 30px 30px 30px;
}

.formhd {
  width: 100%;
  margin-bottom: 40px;
}

.formhd h4 {
  margin: 0;
}

.margin_center {
  margin: 0 auto !important;
  float: none !important;
}

.cont-side h2 {
  font-size: 16px;
  margin-top: 18px;
}

.cont-side h3 {
  color: #6c6c6c;
  font-size: 14px;
  font-family: "Conv_SharpGrotesk-Book25";
  line-height: 23;
  line-height: 28px;
  margin-bottom: 10px;
}

.sect-top-1 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.sect-top-2 {
  margin-top: 30px;
  margin-bottom: 35px;
}

.cont-side h2 {
  font-size: 16px;
  margin-top: 18px;
}

.pb-80 {
  padding-bottom: 80px;
}

.logged_menu ul li a {
  color: #000;
  font-size: 12px;
  font-family: "Conv_SharpGrotesk-Book25";
  padding: 8px 0;
  transition: all 0.3s ease;
}

.logged_menu ul li a:hover {
  color: #23a34d;
  transition: all 0.3s ease;
}

.logged_menu ul {
  background: #f1f1f1;
  border: 0px;
  padding: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.col-lg-4,
.col-sm-6 {
  transition: all 0.3s ease;
}

.cstm_arrow_rgt {
  right: 0;
  top: 8px;
  cursor: pointer;
  position: absolute;
}

.delivery_date_show.jDeliveryText {
  color: #22a34c;
  font-family: "Conv_SharpGrotesk-Book25" !important;
}

.mbt-0 {
  margin-top: 0 !important;
}

.nothing_found {
  padding: 60px 0;
}

.nothing_found_msg {
  text-align: center;
}

.nothing_found_msg img {
  width: 200px;
}

/*////// Cart Custom Loader /////*/
.loading-stater {
  position: absolute;
  /* top: 0; */
  left: 50%;
  /* width: 100%;
  height: 100%; */
  /* background-color: rgba(0, 0, 0, 0.3); */
  /* z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center; */
}
.loadings {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #000;
  border-top-color: #23a34d;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

/*///// Confrm Popup ///////*/
.head-frm {
  margin-bottom: 20px;
}
.formhd h3 {
  font-size: 18px;
  font-family: "Conv_SharpGrotesk-Medium25";
  color: #000000 !important;
  margin-top: 0;
}
.head-1-form {
  margin-bottom: 30px;
  font-size: 16px !important;
}
.addr-suggstion {
  border-top: 1px solid #000;
  padding-top: 6px;
  padding-bottom: 15px;
}
.addr-suggstion h3 {
  text-transform: uppercase;
  border-top: 0;
  margin-top: 0;
  color: #000;
  font-family: "Conv_SharpGrotesk-Medium25";
  font-size: 14px;
  padding: 15px 0 10px 0;
}
.contactform p {
  font-size: 12px;
  color: #000;
  font-family: "Conv_SharpGrotesk-Book25";
  margin: 25px 0 0 0;
  line-height: 20px;
}

.addr-suggstion {
  border-top: 1px solid #000;
  padding-top: 6px;
  padding-bottom: 15px;
}
.addr-suggstion p {
  color: #777777;
  text-transform: uppercase;
  font-family: "Conv_SharpGrotesk-Book25";
}

.addr-suggstion a {
  font-size: 14px;
  color: #777777;
  margin-top: 9px;
  text-transform: initial;
}
.addr-suggstion-selected {
  text-decoration: none !important;
  color: #23a34d !important;
}
#addressInfo .modal-footer {
  border-top: 1px solid #000;
}
.contactform .modal-footer {
  margin-top: 30px !important;
}
a.cancellink {
  color: #777777;
  font-size: 18px;
  font-family: "Conv_SharpGrotesk-Book25";
  text-transform: capitalize;
}
.linkDisabled {
  font-size: 18px !important;
  display: block;
  font-family: "Conv_SharpGrotesk-Book25" !important;
  color: grey !important;
}
.primarylink .fas {
  float: right;
}
.product_attr span,
.prdt_bottom span {
  color: #22a34c;
  font-style: italic;
}
.product_info_cstm {
  overflow: hidden;
}

.product_info_cstm .product_descriptions p {
  word-wrap: break-word;
}

.prdt_attr_top {
  padding-top: 20px;
  padding-bottom: 20px;
}

.custom_prdt_desc {
  padding-top: 0;
}

.product_second strong {
  font-weight: 500 !important;
}

.product_second em {
  font-style: normal !important;
}

.product_descriptions.product_second p {
  font-family: "Conv_SharpGrotesk-Book25" !important;
}
/*///////// Custom Scroll for listubg ///////*/

/* .sub_menu_list {
  --sb-track-color: #232E33;
  --sb-thumb-color: #6BAF8D;
  --sb-size: 6px;
}

.sub_menu_list::-webkit-scrollbar {
  width: var(--sb-size)
}

.sub_menu_list::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.sub_menu_list::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .sub_menu_list {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
} */

.product_name_right.no_brdr {
  border: none !important;
  padding: 0 0 20px;
}

.border_cstm {
  border-bottom: 1px solid #000;
}

.name_farm span {
  color: #777;
  font-style: normal;
}

.mb_cst {
  margin-bottom: 20px;
}

.farm_info_img img {
  height: 500px;
  min-height: 500px;
  object-fit: cover;
}

.product_descriptions.pts-0 {
  padding: 0;
}

.clr_cstm {
  color: #777;
}

.pt_0 {
  padding-top: 0;
}

.p-0 {
  padding: 0 !important;
}

.border-0 {
  border: none !important;
}

.no-scroll {
  overflow: hidden;
  min-height: 100vh;
}
.home_menu {
  position: relative !important;
  background: none !important;
  background-color: transparent;
  border: none !important;
}

.logged.position-fixed,
.homemenu_outer {
  background-color: #23a34d !important;
  /* background: none !important; */
}
.mob_menu {
  display: none !important;
}

/*///////// Media Query ////////*/
@media (max-height: 415px) {
  .right_nav_items {
    overflow-y: auto;
    max-height: 256px;
  }
}
@media (min-width: 768px) {
  .navbar-right {
    float: none;
    margin-right: 0;
  }
  .navbar {
    padding: 15px 0 15px;
    margin-bottom: 0;
    /* background-color: #fff; */
  }

  .navbar-nav > li > a {
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    /* color: #332a31 !important; */
    /* font-family: "Conv_SharpGrotesk-Book25"; */
  }
  .navbar-header {
    min-width: 225px;
  }
  .nav .open > a,
  .nav .open > a:focus,
  .nav .open > a:hover {
    background-color: transparent;
  }
  .nav > li > a:focus,
  .nav > li > a:hover {
    color: #000 !important;
    transition: all 0.3s ease;
    background-color: transparent;
  }
  .navbar-collapse.collapse,
  .navbar-nav {
    display: flex !important;
    padding: 0;
  }
  .navbar-nav,
  .navbar-nav > li {
    float: none !important;
  }
  .navbar-right {
    margin-left: auto;
    float: none !important;
  }
  .cart_top {
    min-width: 200px;
    text-align: right;
  }
  .container {
    width: 100% !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
  }
  .modal-dialog {
    width: 780px !important;
    margin: 90px auto 30px auto !important;
  }
  .ipad_view {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .container {
    width: 100% !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1199px) {
  .banner_text h1 {
    font-size: 44px;
    line-height: 54px;
  }
  .social_media {
    gap: 18px;
  }
}

@media (max-width: 1450px) {
  .banner_text {
    padding-bottom: 45px;
  }
  .banner_text .hen_img {
    bottom: 2%;
  }
}

@media (max-width: 1366px) {
  .banner_text {
    width: 56%;
    padding-bottom: 30px;
  }
  .banner_text h1 {
    font-size: 42px;
  }
  .custom_form .form-control {
    font-size: 20px;
  }
  .custom_form {
    margin-top: 24px;
  }
  .banner_text .hen_img {
    bottom: 0;
  }
}

@media (max-width: 992px) {
  .cart_adj {
    top: 40px;
    right: -110px;
    left: auto;
  }

  .cart_adj .cstm_arrow {
    right: 130px;
  }
  .hide_ipad {
    display: none !important;
  }
  .cart_dektop {
    display: none !important;
  }
  .visib_ipad,
  .cart_ipad {
    display: block;
  }
  .social_media {
    gap: 26px;
  }
  .sub_menu {
    margin-top: 86px;
  }
  .sub_menu_all ul {
    gap: 14px;
    width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }
  .sub_menu_all ul li {
    width: auto;
    white-space: nowrap;
    padding: 0 5px 4px;
  }
  .banner_text h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .banner_text {
    width: 90%;
    padding-left: 25%;
  }
  .banner_text .hen_img {
    bottom: 0%;
    left: 2%;
  }
  .custom_form .form-control {
    font-size: 20px;
  }
  .after_view {
    display: none;
  }
  .after_view.visible {
    display: block;
  }
  .navbar-toggle .icon-bar {
    background-color: #000;
    width: 24px;
    height: 3px;
  }
  .logged .navbar-nav {
    display: block !important;
  }
  .cart {
    padding-left: 0;
  }
  .cart_ipad a {
    color: #000;
  }
  .nav_ipad {
    display: flex;
    float: right;
    gap: 40px;
    align-items: center;
  }
  .mob_menu {
    display: block !important;
  }

  /*//// Nav Menu break point ///*/
  .navbar-header {
    float: none;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
    margin-right: 0;
  }
  .navbar-right .dropdown-menu {
    float: left !important;
    left: 0 !important;
    right: auto;
    width: 100%;
  }
  .navbar-collapse {
    padding: 0 !important;
    /* border-top: 1px solid #a9a9a9; */
    /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); */
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    margin-top: 0;
    flex-wrap: wrap;
  }
  .navbar-nav.navbar-right {
    margin-top: 8px;
  }
  .navbar-nav > li {
    float: none;
    width: 100%;
  }
  .navbar-nav > li > a {
    color: #332a31 !important;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .collapse.in {
    display: block !important;
  }
  .nav > li > a:focus,
  .nav > li > a:hover {
    color: #22a34c !important;
  }
  /*/// end ///*/

  .cart_ipad .cart_items_custom {
    min-width: 98vw;
    left: auto;
    right: -112px;
    float: none;
    top: 36px;
  }

  .mt_new {
    margin-top: 30px;
    border-top: 1px solid #000;
  }
  .product_left_wrapper.no_margin_top.w-100.border_cstm_farm {
    margin-top: 20px;
    border-top: 1px solid #000;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }
  .navbar {
    padding: 12px 0 12px;
    background-color: #fff;
  }
  .sub_menu_all {
    display: block;
  }
  .product_name_right.visib_mob div {
    color: #22a34c;
    font-style: italic;
    white-space: wrap;
    width: 100% !important;
    padding: 0 8px 4px;
  }
  .banner_text {
    width: 100%;
    padding-left: 0;
  }
  .banner_text .hen_img {
    bottom: 10%;
  }
  .banner_text .hen_img img {
    width: 220px;
  }
  .banner_text {
    padding-bottom: 50px;
  }
  .hide_mob {
    display: none;
  }
  .visib_mob {
    display: block;
  }
  .Ipad_mob_view {
    display: flex;
    gap: 30px;
  }
  .footer_logo,
  .services,
  .left_name_wrapper,
  .product_left_wrapper {
    width: 50%;
  }
  .product_name_right.visib_mob {
    display: flex;
    gap: 0;
    border-bottom: none;
    border-top: 1px solid #000;
  }
  .services ul li {
    padding: 0 0 15px;
  }
  .services ul li:last-child {
    padding-bottom: 0;
  }
  .item_name_content p {
    margin-top: 15px;
  }
  .navbar {
    margin-bottom: 0;
  }
  .product_listing .row {
    display: block;
  }
  .cart_ipad .cart_items_custom {
    min-width: 97vw;
    right: -102px;
  }
  .sub_menu {
    margin-top: 80px;
  }
  .price_date_show {
    flex-wrap: wrap;
  }
  .price_date_show .delivery_date_show {
    margin-left: 0;
    text-align: left;
    margin-top: 10px;
    border-top: none;
  }
  .product_left_wrapper.no_margin_top.w-100 {
    margin-top: 20px;
    border-top: 1px solid #000;
  }
  .mb_cst.border_cstm {
    border: none;
  }
  .product_name_right.flex.adjust_mob .left_name_wrapper {
    width: 100%;
  }
  .farm_info_img img {
    height: 100%;
    min-height: 100%;
  }
  .cart_adj {
    right: -100px;
  }
  .ipad_view {
    display: block !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    padding-left: 0;
  }
  .delivery_left {
    width: 90%;
  }
  .banner_img img {
    min-height: 100%;
    max-height: 100%;
  }
  .keepmelogsec {
    margin-top: 0;
  }
  .banner_text h1 {
    font-size: 22px;
    line-height: 32px;
  }
  .custom_form {
    margin-top: 20px;
  }
  .custom_form .form-control {
    font-size: 16px;
  }
  .sub_menu_all ul li {
    padding: 0 5px 12px;
  }
  .banner_text .hen_img {
    bottom: 100%;
  }
  .banner_text .hen_img img {
    width: 100%;
    height: 50vh;
  }
  .footer_logo img,
  .product_left_wrapper,
  .product_right_wrapper,
  .sub_menu_list {
    width: 100%;
  }
  .footer_logo {
    width: 40%;
  }
  .services {
    width: 60%;
  }
  .footer a {
    font-size: 10px;
  }
  .services ul li {
    padding: 0 0 10px;
  }
  .footer p {
    font-size: 12px;
    line-height: 22px;
  }
  .footer h4 {
    font-size: 14px;
  }
  .email_subscription input {
    margin-bottom: 20px;
  }
  .sub_menu_all a {
    font-size: 16px;
    color: #000 !important;
  }
  .sub_menu_list a {
    color: #777 !important;
    font-size: 14px;
  }
  .sub_menu_all ul {
    gap: 12px;
  }
  .loginreg .searchbox_blk input {
    font-size: 12px;
  }
  .product_wrapper,
  .sub_menu_all {
    flex-wrap: wrap;
  }
  .product_head .product_left_wrapper,
  .product_head .product_right_wrapper {
    width: 50%;
  }
  .product_wrapper.product_head {
    gap: 0;
    flex-wrap: nowrap;
  }
  .pdrt_mob {
    border-top: 1px solid #000;
  }
  .cart_ipad .cart_items_custom {
    width: 100vw;
    right: -78px;
  }
  .cart_adj {
    right: -75px;
  }
  .nav_ipad {
    gap: 15px;
  }
  .cart_ipad .cart_items_custom .cstm_arrow {
    right: 85px;
  }
  .delivery_date_show {
    margin-left: 0;
    margin-top: 10px;
    padding-top: 10px;
    width: 100%;
    text-align: right;
    font-size: 12px;
    border-top: 1px solid #e7e7e7;
  }
  .price_date_show {
    margin-left: 15px;
  }
  .price_date_show .delivery_date_show {
    margin-top: 0;
    font-size: 11px;
  }
  .product_left_wrapper h4 {
    font-size: 14px;
  }
  .product_wrapper.product_head.prdt_rating {
    flex-wrap: wrap;
  }
  .product_wrapper.product_head.prdt_rating .product_left_wrapper,
  .product_wrapper.product_head.prdt_rating .product_right_wrapper {
    width: 100%;
  }
  .prdt_rating .farm_rating {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .product_wrapper.gap_mob {
    gap: 0;
  }
  .adjust_mob {
    margin-top: 20px;
    border-top: 1px solid #000;
  }
  .product_descriptions.pdrt_mob.custom_prdt_desc {
    padding-top: 20px;
  }
  .product_right_wrapper.price_date_show {
    width: 40%;
  }
  .prdct_head_cstm.product_left_wrapper {
    width: 60%;
  }
  .cart_adj .cstm_arrow {
    right: 80px;
  }
}

@media (max-height: 400px) {
  .cart_items_custom {
    max-height: 280px;
  }
  .cart_adj .cstm_arrow {
    right: 110px;
  }
}
