@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-Light.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-LightItalic.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-Book.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-BookItalic.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-Medium.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-MediumItalic.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-BoldItalic.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/Futura-Bold.woff2") format("woff2"),
    url("./fonts/futura/Futura-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* @font-face {
    font-family: 'Futura';
    src: url('./fonts/futura/Futura-Black-Bold.woff2') format('woff2'),
        url('./fonts/futura/Futura-Black-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
} */

@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-Heavy.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-HeavyItalic.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-HeavyItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("./fonts/futura/FuturaBT-ExtraBlack.woff2") format("woff2"),
    url("./fonts/futura/FuturaBT-ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

body {
  font-size: 14px;
  color: var(--darkblue);
  background-color: var(--white);
  margin: 0;
  overflow-x: hidden;
  font-family: "Futura";
  font-style: normal;
  font-smoothing: antialiased;
  moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1617px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.big_container {
  max-width: 1800px;
}

:root {
  --green: #89eedd;
  --darkblue: #1d1e41;
  --white: #fff;
  --yellow: #f3f7aa;
  --pink: rgb(238 134 164 / 60%);
  --light-gray: #f6f6f6;
}

/* background color class */

.bg_green {
  background: var(--green);
}
.bg_darkblue {
  background: var(--darkblue);
}
.bg_yellow {
  background: var(--yellow);
}
.bg_pink {
  background: var(--pink);
}
.bg_light_gray {
  background: var(--light-gray);
}

/* ********************** Button css start ********************** */

.a_btn {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  padding: 28px;
  transition: all ease 0.5s;
  text-decoration: none;
  font-style: normal;
  display: inline-flex !important;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--darkblue);
  background-color: var(--green);
  position: relative;
  z-index: 0;
  max-width: fit-content;
  text-transform: uppercase;
  font-family: "futura-pt-condensed";
}
.a_btn:hover {
  background-color: var(--darkblue);
  color: var(--green);
}
.secondary_btn {
  color: var(--darkblue);
  background-color: var(--white);
}

/********************* TYPOGRAPHY ********************/

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Futura";
  font-style: normal;
  text-transform: uppercase;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  user-select: none;
  width: auto;
}
h1,
.title_h1 {
  font-weight: 700;
  font-size: 55px;
  line-height: 65px;
}
h1,
.title_h1_big {
  font-weight: 500;
  font-size: 48.83px;
  line-height: 50px;
}

h2,
.title_h2 {
  /* font-weight: 400; */
  font-weight: 700;
  font-size: 31.25px;
  line-height: 41.25px;
}
h3,
.title_h3_big {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
h3,
.title_h3 {
  font-weight: 500;
  font-size: 27.34px;
  line-height: 44px;
}
h4,
.title_h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
h5,
.title_h6 {
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
}
h6,
.title_h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin: 0;
  padding: 0;
  font-style: normal;
  text-transform: uppercase;
}

/* ============================= header ============================= */

header.header {
  position: relative;
}
.header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_listing_left ul,
.header_listing_right ul,
.header_icons {
  display: flex;
  gap: 16px;
}
.header_logo {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 218px;
  width: 213px;
  margin: 0 auto;
  display: flex;
  margin-top: 11px;
}
.header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu_info {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header_listing_left ul li a,
.header_listing_right ul li a {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--darkblue);
  background: transparent;
  padding: 25px 10px;
  font-family: "futura-pt-condensed";
}
.mobile_menu.right_menu {
  display: none;
}
.header_listing_left ul li a:hover,
.header_listing_right ul li a:hover {
  background: var(--darkblue);
  padding: 25px 10px;
  color: var(--white);
}

/* ============================= hero-banneer ============================= */

section.hero_banner {
  position: relative;
}
.hero_banner_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.hero_banner_data {
  position: relative;
  z-index: 1;
  padding: 187px 0 64px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.header_logo {
  z-index: 9;
}
.hero_banner_btn {
  margin-top: 33px;
}
.hero_banner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_banner_data h1 {
  font-size: 100px;
  line-height: 133px;
  color: transparent;
  -webkit-text-stroke: 2px white;
  font-weight: bold;
}
.hero_banner_data p {
  font-size: 20px;
  line-height: 27px;
  font-family: "futura-pt-condensed";
  font-weight: 700;
}

/* ============================= footer ============================= */

footer.footer {
  padding: 87px 0;
}
.footer_info {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
}
.footer_listing ul {
  display: flex;
  gap: 40px;
}
.footer_listing ul ul.sub-menu {
  display: block;
}
.follow_us_icon {
  display: flex;
  align-items: center;
}
.footer_listing ul a,
.follow_us h6 {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 14px;
  margin-bottom: 21px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--white);
  display: block;
  font-weight: 700;
}
.footer_listing ul ul.sub-menu a {
  text-transform: unset;
  border-bottom: unset;
  padding-bottom: 0px;
  margin-bottom: 0;
  font-weight: 500;
}
.footer_logo {
  width: 12.9%;
  margin-right: 25px;
}
.footer_listing {
  width: 52.22%;
}
.follow_us {
  width: 26.9%;
}
.footer_listing ul li {
  width: 32%;
}
.footer_listing ul ul.sub-menu li {
  width: unset;
}
.follow_us h6 {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.follow_us_icon {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 25px;
  border-top: 1px solid var(--white);
  padding-top: 21px;
  margin-top: 14px;
  width: fit-content;
}
.follow_us_text a,
.follow_us_text p {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
}
.follow_us_text p:last-child {
  font-size: 12.5px;
  line-height: 16px;
  padding-top: 19px;
  font-weight: 500;
}
.follow_us_text p {
  text-transform: capitalize;
}
.footer_listing ul ul.sub-menu a:hover {
  color: var(--green);
}
.follow_us_icon a:hover img {
  scale: 1.2;
}
.follow_us_icon a img {
  transition: all ease 0.3s;
}
.follow_us_text a:hover {
  color: var(--green);
}

/* ============================= featured-food ============================= */

.featured_food_top_listing ul {
  display: flex;
  margin: 0 auto;
  gap: 50px;
  text-align: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 20px 0;
}
.featured_food_top_listing a {
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "futura-pt-condensed";
  font-weight: 700;
}
.follow_us_text * {
  font-weight: 500;
}
.featured_food_top_listing {
  position: relative;
  background: #1d1e41;
  margin-top: -1px;
}
.featured_food_top_listing:after {
  content: "";
  position: absolute;
  top: 34px;
  width: 100%;
  height: 100%;
  background-image: url(https://underground-food-collective.demodevsite.info/wp-content/uploads/2024/10/Repeat-Grid-1.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.featured_info_otr {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  max-width: 1509px;
  margin: 0px auto;
}
.featured_title h2 {
  text-align: center;
  font-weight: 700;
}
.featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(29 30 65 / 25%);
  border-radius: 8px;
}
.featured_image,
.event-image {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.featured_info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured_box {
  position: relative;
}
.featured_text {
  color: var(--white);
}

.featured_text p {
  border-bottom: 2px solid;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.our_artisan_shops .featured_text {
  min-height: 102px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.featured_text p:last-of-type {
  color: unset;
  border-bottom: unset;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-weight: 500;
  font-size: 12px;
}
.featured_Logo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.btn_otr .featured_main_btn a {
  padding: 20px 33.5px;
  gap: 0;
  line-height: normal;
}
.featured_title:after,
.featured_title_info :after,
.featured_title_for_showcase h2:after,
.why_choose_us_right h2:after,
.what_our_member_say_title h2:after,
.join_over_main h2:after,
.our_story_title h2:after,
.about_faq_data h2:after,
.our_team_title h2:after,
.membership_title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -23px;
  right: 0;
  background: var(--darkblue);
  width: 59px;
  height: 4px;
  margin: 0 auto;
}
.our_story_title h2:after {
  bottom: 30px;
  left: 0%;
  margin: 0;
}

.our_story_title h2 {
  position: relative;
  padding-bottom: 52px;
  width: fit-content;
  font-weight: 700;
}
.featured_title {
  position: relative;
}
.featured_main {
  padding: 78px 0 65px;
}
.btn_otr .featured_main_btn {
  display: flex;
  justify-content: end;
  margin-top: -95px;
  padding-bottom: 22px;
}
.featured_text p:first-child {
  font-size: 20px;
  font-weight: 700;
}
.featured_food_top_listing a:hover {
  color: var(--green);
}
.event_page_para {
  display: none;
}
.featured_box:hover .event_page_para {
  display: block;
}
.event_page_para a.a_btn,
.event_page_para button.a_btn {
  font-size: 14px;
  padding: 9px;
  margin-top: 20px;
  border: unset;
}
button.a_btn:hover {
  background-color: var(--darkblue);
  color: var(--green);
}
/* ============================= our artisan shop ============================= */

/* .our_artisan_shops_info {
    padding: 153px 0 94px 0;
    margin-top: -64px;
    background: #F6F6F6;
} */

.our_artisan_shops_info {
  /* padding: 70px 0; */
  padding: 257px 0 97px 0;
  margin-top: -110px;
  background: #f6f6f6;
}

.featured_info_otr.our_artisan_shops {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 40px 41px;
  max-width: 1507px;
}
.our_artisan_shops_btn {
  justify-content: center;
  display: flex;
  margin-top: 47px;
}
.our_artisan_shops_info h2 {
  text-align: center;
  font-weight: 700;
}
.featured_title_info {
  position: relative;
  margin-bottom: 71px;
}
/* .featured_data:nth-child(n+9) {
    display: none;
} */
#seeAllShopsBtn {
  cursor: pointer;
}
/* =============================  artisans_showcase ============================= */

.featured_title_for_showcase h2 {
  position: relative;
  font-weight: 700;
}

.featured_title_for_showcase {
  padding: 54px 0 42px;
  text-align: center;
}
.featured_title_for_showcase p {
  padding-top: 46px;
  text-transform: none;
  font-weight: 500;
}
.featured_title_for_showcase span {
  text-decoration: underline;
}

/* =============================  why-choose-us ============================= */

.why_choose_info {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}
.why_choose_us_left {
  width: 50%;
}
.why_choose_us_right {
  padding: 75px;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.why_choose_us_right {
  padding: 75px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 54px;
}
.why_choose_content {
  gap: 28px;
  display: flex;
  flex-direction: column;
}
.why_choose_us_right h2 {
  position: relative;
  font-weight: 700;
}
.why_choose_content h3 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--darkblue);
  font-weight: bold;
}
.why_choose_content h3 {
  font-weight: bold;
  color: var(--darkblue);
  -webkit-text-stroke: none;
  line-height: 37px;
}
.why_choose_us_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why_choose_btn a.a_btn {
  padding: 23px;
}

/* ============================= what_our_member_say ============================= */

section.what_our_member_say {
  padding: 139px 0 120px;
}
.what_our_member_say_title h2 {
  position: relative;
  font-weight: 700;
  text-align: center;
}
.what_our_member_say_info {
  display: flex;
  max-width: 992px;
  margin: 0 auto;
}
.what_our_member_say_data {
  width: 50%;
  padding: 45px;
  text-align: center;
}
.what_our_member_img {
  flex: 1;
}
.what_our_member_say_title {
  padding-bottom: 71px;
}
.what_our_member_say_sub_title h3 {
  line-height: 32px;
  padding-top: 54px;
  font-family: "futura-pt-condensed";
  font-weight: 400;
}
.what_our_member_say_sub_title p {
  padding-top: 39px;
  font-family: "futura-pt-condensed";
  font-weight: 400;
}
.what_member_say_small_img:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 34px;
  background: var(--green);
  display: flex;
  margin: 0 auto;
}
.what_member_say_small_img {
  position: relative;
}
.what_our_member_say_data {
  width: 50%;
  padding: 68px 40px 45px 50px;
  text-align: center;
}
.what_our_member_say_sub_title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.what_member_say_small_img {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 55px;
}
.what_our_member_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.what_our_member_say_sub_title h2 {
  max-width: 294px;
  margin: 0 auto;
  font-family: "futura-pt-condensed";
  font-weight: 400;
  position: relative;
}
.what_our_member_say_sub_title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -23px;
  right: 0;
  background: var(--darkblue);
  width: 59px;
  height: 4px;
  margin: 0 auto;
}

/* ============================= image-section ============================= */

.images_main {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}
.galary_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galary_content_otr:hover .galary_img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(29 30 65 / 60%);
  border-radius: 8px;
}
.galary_content_otr:hover .galary_img {
  position: relative;
}
.galary_content_otr:hover .home_page_content {
  opacity: 1;
}
.home_page_content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home_page_content {
  opacity: 0;
  transition: all ease 0.3s;
}
.galary_content_otr {
  position: relative;
}

/* ============================= counting-section ============================= */

section.counting_section {
  padding: 181px 0 124px 0;
  margin-top: -65px;
  background: var(--white);
}
.count {
  font-size: 2em;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(10px);
}
.count.visible {
  opacity: 1;
  transform: translateY(0);
}
.counting_section_main {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 75px;
}
.counting_section_box h2 {
  font-size: 100px;
  line-height: 133px;
  color: var(--green);
  padding-bottom: 10px;
}

/* ============================= category-page ============================= */

.header_logo.inner_banner {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  width: 105px;
  margin: 0 auto;
  display: flex;
  margin-top: 11px;
}

section.image_section.category_page {
  background: var(--white);
  margin-top: -65px;
  padding-top: 122px;
}

/* ============================= inner-banner ============================= */

section.inner_banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(29 30 65 / 40%);
  background-repeat: no-repeat;
  background-size: cover;
}
section.inner_banner {
  position: relative;
}
.inner_banner_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.inner_banner_data {
  position: relative;
  z-index: 1;
  padding: 153px 0 109px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.inner_banner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_banner_data h1 {
  font-size: 100px;
  line-height: 133px;

  font-weight: bold;
}
.inner_banner_data h1 span {
  color: transparent;
  -webkit-text-stroke: 2px white;
}

/* ============================= join-over ============================= */

section.join_over {
  padding: 20px 0 50px 0;
  background: #f6f6f6 !important;
}
.join_over_main {
  max-width: 991px;
  margin: 0 auto;
  text-align: center;
}
.join_over_main h2 {
  margin: 0 auto;
  position: relative;
  margin-bottom: 55px;
  font-weight: 700;
  max-width: 710px;
}
.join_over_main p {
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}
.join_over_main p:last-child {
  padding-bottom: 0px;
}

/* ============================= product-page ============================= */

section.product-banner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(./images/product-before.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.product_info h2 {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.store-page-wrap .product_image {
  margin-bottom: 28px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.store-page-wrap .product_image::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(29 30 65 / 6%);
  transform: translateY(-50%);
  z-index: -1;
  content: "";
}
.product_image img {
  margin: 0 auto;
  padding-bottom: 0;
  max-width: 60px;
  position: relative;
}

.artisans_main {
  display: flex;
  gap: 85px;
  margin-top: -33px;
}
section.product_parts {
  padding: 85px 0 170px;
}
.product_left_right_main {
  /* display: flex;
    align-items: flex-start; */
  width: 45.5%;
}
.seller-items.products_listing_main {
  flex: 1;
}
.seller-items.products_listing_main > p {
  padding-bottom: 40px;
  font-family: "futura-pt-condensed";
  font-weight: 700;
}
.product_left_main .compney_info_otr {
  border-right: 1px solid #cbd5e1;
  padding-right: 82px;
}
.product_right_main {
  flex: 1;
}
.product_image_info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.product_top {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
}
.product_image_info:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.product_image_info:first-child img {
  height: 400px;
}

.product_accordian_main svg {
  width: 100%;
  height: 100%;
}
.product_bottom {
  padding-top: 34px;
}
.product_que {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 25px;
  margin-top: 24px;
  align-items: center;
}
.product_bottom .product_accordian_main:first-child .product_que {
  margin-top: 84px;
}
.product_ans {
  padding-top: 40px;
  padding-bottom: 60px;
}
.product_accordian_main .close_icon {
  display: none;
}
.product_accordian_main.active .open_icon {
  display: none;
}
.product_accordian_main.active .close_icon {
  display: block;
}

.product_ans p:last-child {
  padding-bottom: 0;
}
.product_ans p {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
}
.product_sub_title {
  padding-bottom: 44px;
}
section.sign_up {
  padding: 74px 0 135px;
}
.sign_up_main_title h2 {
  color: #ee86a4;
  padding-bottom: 69px;
  text-align: center;
}
.sign_up_main {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 130px;
  background: var(--white);
}
.sign_up_main .sign_up_left {
  width: 42%;
}
.sign_up_right {
  flex: 1;
}
.sign_up_right h2 {
  padding-bottom: 18px;
}
.sign_up_right p {
  padding-bottom: 30px;
}
.location {
  display: flex;
  align-items: flex-start;
  padding-top: 70px;
  gap: 50px;
}
.location_text h3 {
  line-height: 30px;
  font-family: "futura-pt-condensed";
  font-weight: 700;
}
.location .location_icon {
  margin-top: 5px;
}

.product_top .product_image_info:nth-child(2) img,
.product_top .product_image_info:nth-child(3) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_top .product_image_info:nth-child(2),
.product_top .product_image_info:nth-child(3) {
  position: relative;
  aspect-ratio: 4 / 3;
  flex: 1;
}
.product_bottom h2 {
  text-transform: capitalize;
  font-weight: bold;
}
.artisans_main span.onsale {
  display: none !important;
}
.artisans_main .products_listing_main .products_otr.products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/*============================================================== 24-09 =========================================================================*/

.featured_text p a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
.featured_main_info {
  display: flex;
  gap: 41px;
  max-width: 1507px;
  margin: 0px auto;
}
#dokan-seller-listing-wrap .featured_info_otr {
  grid-gap: 39px 42px;
}
.featured_rpt {
  width: 22.894%;
}
.event_item_info {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
}
section.event_main_info {
  padding-bottom: 100px;
}
.event-image img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  border-radius: 8px;
  background: linear-gradient(
      0deg,
      rgba(29, 30, 65, 0.65) 0%,
      rgba(29, 30, 65, 0.65) 100%
    ),
    url(<path-to-image>) lightgray 50% / cover no-repeat;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}
.event-item {
  position: relative;
  border-radius: unset !important;
}
.featured_text.event-dates {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  /* font-family: 'Futura Bk BT'; */
}
.event-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(
    0deg,
    rgb(3 3 3 / 65%) 0%,
    rgba(29, 30, 65, 0.65) 100%
  );
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}
.event-image {
  position: relative;
}
.event_data_rtp h5.featured_Logo.event-title {
  color: #fff;
  text-transform: capitalize;
}
.featured_info.evet_info {
  justify-content: end;
  gap: 30px;
}
.join_over_main.event_page h2 {
  text-transform: capitalize;
  font-size: 70px;
  line-height: normal;
  margin-bottom: 21px;
}
.join_over_main.event_page h2:after {
  bottom: -3px;
}

.join_over_main.event_page p {
  font-weight: 400;
  /* font-family: 'Futura Lt BT'; */
  font-size: 16px;
}
.event-item:hover .event_page_para {
  display: block;
}

.featured_text.event-dates span {
  font-size: 18px;
}
.event_page_para a.a_btn {
  font-size: 20px;
  padding: 10px 30px;
  margin-top: 25px;
}
.event_item_info .event_page_para a {
  margin-top: 0;
}

/*============================================================== 25-09 =========================================================================*/

.our_artisan_shops_info .featured_logo_img img {
  aspect-ratio: 60 / 60;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  max-height: 60px;
}

.event_otr .article_otr {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
.article_otr .event_detail_img {
  width: 39.552%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.event_title_content {
  flex: 1;
}
.event-details {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.event-details p {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(29 30 65 / 20%);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: capitalize;
}
.event-details p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.event_img img {
  aspect-ratio: 533/350;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
.article_otr .event_title_content h2 {
  padding-bottom: 30px;
  text-transform: capitalize;
}
.article_otr .entry-content h4 {
  padding-bottom: 16px;
  padding-top: 16px;
  text-transform: capitalize;
}
.article_otr .entry-content p,
.blog_title_content .entry-content p {
  padding-bottom: 8px;
}
.article_otr .entry-content > h4:first-child {
  padding-top: 0;
}
.article_otr .entry-content p:last-of-type,
.blog_title_content .entry-content p:last-of-type {
  padding: 0;
}
.event_title_content .entry-content li {
  padding-left: 25px;
}
.event_title_content .entry-content li {
  margin-bottom: 16px;
  position: relative;
}
.event_title_content .entry-content li:last-child {
  margin-bottom: 0;
}
.event_title_content .entry-content li:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #2a2947;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% 1000%;
}

.featured_shop_data.featured_data img,
section.artisans_showcase .featured_image img {
  aspect-ratio: 475 / 380;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

.featured_info_otr.our_artisan_shops .featured_image img,
.our_artisan_shops_info .featured_image img {
  aspect-ratio: 346 / 469;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
.featured_shop_data.featured_data .featured_box .featured_logo_img img {
  max-height: 96px;
  aspect-ratio: 96 / 96;
}
.featured_box:hover .featured_image,
.event-item:hover .event-image {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.featured_box,
.event-item {
  overflow: hidden;
  border-radius: 8px;
}

section.event_detail {
  padding: 100px 0 50px;
}

.blog_main_info {
  padding: 100px 0;
}
.blog_image img,
.blog_detail_img img {
  width: 100%;
  aspect-ratio: 950 /502;
  object-fit: cover;
  border-radius: 8px;
}
.blog_data_rtp {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 25px;
}
.blog_item_info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1050px;
  margin: 0 auto;
}

.blog_otr {
  /* padding: 100px 0; */
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.blog_title_content h2.entry-title {
  padding-bottom: 20px;
}

.our_story_main {
  display: flex;
  gap: 90px;
  align-items: center;
  max-width: 1730px;
  margin-left: auto;
  padding-left: 50px;
}
.our_story_main .our_story_title {
  width: 35.5%;
}
.our_story_main .our_story_images {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.two_tree_comn {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.our_story {
  padding: 100px 0;
  max-width: 1920px;
  margin: 0 auto;
}
.our_story_title p {
  padding-bottom: 14px;
  /* font-family: 'Futura Bk BT'; */
  color: rgb(29 30 65 / 80%);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
.about_faq_main {
  display: flex;
  align-items: center;
  gap: 64px;
}
.about_infoo {
  display: flex;
  flex-direction: column;
  width: 47.74%;
}
.about_faq_image {
  flex: 1;
}
section.about_faq {
  padding: 100px 0 0 0;
}
section.what_our_member_say.about-us {
  padding: 100px 0 100px 0;
}
.faq_que_ans_main .faq_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq_que_ans_main {
  padding: 25px;
  border: 1px solid rgba(29, 30, 65, 0.6);
  background: #fff;
  margin-bottom: 30px;
}
.about_faq_data h2 {
  position: relative;
  width: fit-content;
  padding-bottom: 46px;
  font-weight: 700;
}
.about_faq_data p {
  padding-bottom: 25px;
  color: #1d1e41;
  /* font-family: "Futura Hv BT"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.faq_que_ans_main .faq_ans {
  padding-top: 16px;
}
.about_faq_data h2:after {
  bottom: 22px;
}
.faq_que_ans_main .faq_ans p {
  color: #1d1e41;
  /* font-family: "Futura Bk BT"; */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  opacity: 0.8;
  text-transform: none;
  max-width: 596px;
}
.faq_que_ans_main .faq_qus h4 {
  text-transform: none;
  color: #4a4b67;
}
.faq_que_ans_main:last-child {
  margin-bottom: 0;
}
section.our_team {
  padding: 100px 0 0 0;
}
.our_team_main {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.member_name {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.our_team_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our_team_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.our_team_title {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 50px;
}
.our_team_title h2 {
  padding-bottom: 46px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.our_team_title h2:after {
  bottom: 22px;
}
.our_team_title p {
  max-width: 724px;
  color: #1d1e41;
  text-align: center;
  /* font-family: "Futura Hv BT"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.member_name h6 {
  font-weight: 400;
  /* font-family: 'Futura Bk BT'; */
  text-transform: none;
}
.hover_image {
  position: absolute;
  top: 16px;
  height: 30px;
  width: 30px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
.our_team_image {
  position: relative;
}
.our_team_box:hover .hover_image {
  opacity: 1;
}
.faq_que_ans_main.active .faq_top h4 {
  color: #ff84a7;
}
.faq_que_ans_main.active .faq_btn svg {
  transform: rotate(45deg);
}
.faq_que_ans_main.active .faq_btn svg path {
  fill: #ff84a7;
}
.header_icons.mobile {
  display: none;
}

/*==================================================== 26-09 ==================================================================*/

.featured_main_btn.home_featured_btn.mobile {
  display: none;
}
.all_checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 25px 16px 10px;
}
.featured_rpt .function_list h3 {
  text-align: start;
  font-size: 16px;
  line-height: 21px;
  padding: 13px 16px;
  background: #1d1e41;
  color: #89eedd;
  border-radius: 8px 8px 0 0;
  margin: 30px 0 0 0px;
  font-family: "futura-pt-condensed";
  font-weight: 400;
}
.all_checkbox label {
  padding-bottom: 10px;
  font-weight: 500;
}
.filter_btn button.a_btn {
  border: unset;
  font-size: 20px;
  padding: 20px 50px !important;
  width: 100%;
  max-width: 100%;
  margin-top: 30px !important;
  cursor: pointer;
}
section.image_section.our_artisan {
  margin-top: -64px;
  background: #fff;
  padding-top: 122px;
}
.featured_rpt .function_list h3:first-of-type {
  margin: 0;
}
h1.entry-title {
  display: none;
}

.products-details-content h1.product_title.entry-title {
  display: block;
  padding-bottom: 30px;
  font-size: 30px;
  line-height: 36px;
}
.dokan-icons {
  display: none;
}

/* Pagination For Blogs Listing  */

.blog_item_info .pagination {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.blog_item_info .pagination a,
.blog_item_info .pagination span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
  padding: 15px 26px !important;
  color: #1d1e41 !important;
  background-color: #89eedd !important;
  text-decoration: none !important;
}

.blog_item_info .pagination span,
.blog_item_info .pagination a:hover,
.blog_item_info .pagination span:hover {
  color: #fff !important;
  background: #009a80 !important;
}

/* Mebership  */

.membership_box_rpt {
  border: 1px solid rgba(29, 30, 65, 0.3);
  background: #fff;
  padding: 40px;
  transition: all ease 0.3s;
}
.pdp_ct {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1166px;
  margin: 0 auto;
}
.member_ship_tabing {
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19);
  max-width: 290px;
  margin: 0 auto;
  padding: 15px;
  margin-bottom: 70px;
}
section.membership {
  padding: 146px 0 100px;
}
.membership_title {
  max-width: 534px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}
.membership_title h2 {
  padding-bottom: 34px;
  text-transform: none;
  /* font-family: 'Futura Hv BT'; */
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  position: relative;
}

.pdp_listing ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdp_listing li a.active {
  width: 130px;
  color: #fff;
  background: #1d1e41;
}
.pdp_listing li a {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #1d1e41;
  text-align: center;
  /* font-family: "Futura Bk BT"; */
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  padding: 15px 30px;
}
.membership_box_rpt:hover {
  background: #89eedd;
  border: 1px solid #89eedd;
}
.membership_title h2:after {
  bottom: 10%;
}
.membership_box span {
  display: flex;
  align-items: end;
  color: #1d1e41;
  /* font-family: "Futura Hv BT"; */
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  padding-bottom: 30px;
}
.membership_box h2 {
  color: #1d1e41;
  /* font-family: "Futura Hv BT"; */
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-bottom: 14px;
  text-transform: none;
}
.membership_box p {
  padding-bottom: 20px;
  color: #1d1e41;
  /* font-family: "Futura Bk BT"; */
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-transform: math-auto;
}
.membership_box span p {
  padding-bottom: 0;
  color: rgba(29, 30, 65, 0.8);
  /* font-family: "Futura Bk BT"; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.membership_box_listing ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  /* font-family: "Futura Bk BT"; */
}
.membership_box_listing p {
  color: #1d1e41;
  /* font-family: "Futura Hv BT"; */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 16px;
  text-transform: none;
}

.membership_box a {
  text-decoration: none;
  justify-content: center;
  display: flex;
  color: #1d1e41;
  text-align: center;
  font-family: Futura;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: 1px solid rgba(29, 30, 65, 0.3);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.32) inset;
  padding: 12px 14px;
  margin-bottom: 40px;
}

.membership_box_listing {
  border-top: 1px solid #ededed;
  padding-top: 40px;
}
.membership_box_rpt:hover a {
  border: 1px solid #1d1e41;
  box-shadow: unset;
}

.membership_box_rpt:hover .membership_box_listing {
  border-top: 1px solid rgb(29 30 65 / 16%);
}
.membership_title p {
  color: #1d1e41;
  text-align: center;
  /* font-family: "Futura Bk BT"; */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
}

/* Recipe Listing */

.recipe-list-grid .recipe-item h2 {
  color: #1d1e41;
  /* font-family: "Futura Hv BT"; */
  font-size: 30px;
  font-weight: 400;
  line-height: 119.807%;
  text-decoration: none !important;
  text-transform: none;
  padding-top: 18px;
}
.recipe-list-grid .recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-list-grid {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.load_more_btn button#load-more {
  border: 0;
}
.load_more_btn {
  padding-top: 100px;
  display: flex;
  justify-content: center;
}
section.recipe_info {
  padding: 100px 0;
}
.recipe-item a {
  text-decoration: none;
}

/* recipe Detail */

.recipe-content p {
  color: rgb(42 41 71 / 80%);
  /* font-family: "Futura Bk BT"; */
  text-transform: none;
  padding-bottom: 16px;
}
section.recipe_details_page {
  padding: 100px 0;
}

.post-navigation {
  padding-top: 100px;
}
.recipe-content p strong {
  font-weight: 700;
  color: #2a2947;
  font-size: 20px;
  line-height: 20px;
}
.recipe-content p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 14px 0;
}
.recipe-content .recipe-description h2 {
  text-transform: none;
  line-height: 31px;
  padding-bottom: 30px;
}

.blog_list {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 15px 0;
}

.blog_data {
  width: 46.2%;
}

.blog_image {
  flex: 1;
}

.recipe-content {
  max-width: 1440px;
  margin: 0 auto;
}
.blog_list .blog_image img {
  aspect-ratio: 705 / 527;
}
.post-navigation .cmn_next_prev a {
  color: #1d1e41;
  text-align: center;
  font-family: Futura;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  padding: 26px 23px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #89eedd;
  text-decoration: none;
}
.post-navigation {
  display: flex;
  justify-content: center;
  max-width: 292px;
  gap: 50px;
  margin: 0 auto;
}

.blog_otr + .post-navigation {
  display: none;
}
.blog_list_description {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #2a2947;
}

.recipe-content p:last-child {
  padding-bottom: 0;
}

/* Form  */

.page-id-162 .u-column1.col-1.login {
  display: none;
}
.page-id-602 .u-column2.col-2.register {
  display: none;
}
div#customer_login {
  padding: 100px 0;
  background: #f6f6f6;
}
#customer_login .cmn_form {
  max-width: 800px !important;
  width: 100% !important;
  margin: 0px auto !important;
  float: unset !important;
  padding: 22px 23px !important;
  background: #fff !important;
  border-radius: 5px;
}
.cmn_form form {
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.cmn_form form label,
form.woocommerce-ResetPassword.cmn_form_css label {
  color: #1d1e41;
  /* font-family: 'Futura Hv BT'; */
  font-size: 14px;
  font-style: normal !important;
  font-weight: 400;
  line-height: normal !important;
  text-transform: uppercase !important;
  padding-bottom: 15px;
}
.cmn_form form p {
  margin: 0 !important;
  padding: 0 0 20px 0 !important;
}
.cmn_form form > p:last-child {
  padding: 0 !important;
}
.cmn_form form p input,
form.woocommerce-ResetPassword.cmn_form_css input {
  margin: 0 !important;
  /* font-family: 'Futura Hv BT'; */
  padding: 15px 10px !important;
  display: block !important;
  outline: none !important;
  border: 1px solid rgba(29, 30, 65, 1) !important;
  font-size: 16px !important;
  color: #1d1e41 !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal !important;
}

.cmn_form form p.form-row.form-group label.radio {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cmn_form form p.form-row:before,
.cmn_form form p.form-row:after {
  display: none;
}
.cmn_form form p.form-row.form-group br {
  display: none;
}
.cmn_form form p.form-row.form-group label.radio {
  padding-bottom: 25px;
}
.cmn_form form p.form-row.form-group label.radio:last-child {
  padding-bottom: 0;
}
.cmn_form form p .a_btn,
form.woocommerce-ResetPassword.lost_reset_password.cmn_form_css
  .form_btn
  .a_btn,
form.woocommerce-ResetPassword.lost_reset_password.change_pass_otr .a_btn {
  color: #1d1e41 !important;
  text-align: center !important;
  font-family: Futura !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  background: #89eedd !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}
.cmn_form form p .a_btn:hover,
form.woocommerce-ResetPassword.lost_reset_password.cmn_form_css
  .form_btn
  .a_btn:hover,
form.woocommerce-ResetPassword.lost_reset_password.change_pass_otr
  .a_btn:hover {
  background-color: var(--darkblue) !important;
  color: var(--green) !important;
  transition: 0.3s all ease-in-out;
}
.cmn_form form p.form-row.form-group small {
  margin-top: 15px !important;
  display: block;
}
#customer_login .login.cmn_form p.message {
  font-size: 14px;
}
#customer_login .login.cmn_form p.message a {
  font-size: 16px;
  font-weight: 600;
}
/* #customer_login .cmn_form a {
    font-size: 14px !important;
} */

.check_box_articians {
  display: grid;
  grid-template-columns: auto auto;
}
.check_box_articians label:last-of-type {
  padding-bottom: 0;
}

.show_if_seller div {
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 20px !important;
}
.show_if_seller div:last-child {
  padding-bottom: 0 !important;
}
.check_box_articians > input {
  grid-column: span 2;
  margin-top: 15px !important;
  padding: 8px 16px !important;
  font-size: 18px !important;
  color: #1d1e41 !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal !important;
}
.show_if_seller > div.form-row > label {
  font-weight: 600;
  font-family: "Futura";
}

.split-row.form-row-wide.flast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.split-row.form-row-wide.flast p.form-row.form-group {
  padding: 0 !important;
}

/* Login Page */

#customer_login .login.cmn_form {
  max-width: 650px !important;
}
#customer_login .login.cmn_form .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 15px;
  align-items: center;
}
.login.cmn_form p.woocommerce-LostPassword.lost_password {
  display: block !important;
  width: 100%;
}
.login.cmn_form p.woocommerce-LostPassword.lost_password a {
  display: block !important;
  font-weight: 600;
}
#customer_login .password-input span.show-password-input {
  top: 50%;
  transform: translateY(-50%);
}

/* ====================================== 30-09-24 ========================================== */

body.single-product
  .products-details-content
  .woocommerce-product-details__short-description
  p {
  text-transform: none !important;
  font-family: "Futura Bk BT" !important;
  padding-bottom: 20px !important;
}
body.single-product .products-details-content form.cart {
  display: flex;
  align-items: center;
}
main#main {
  padding: 100px 0;
}
body.single-product .products-details-content p.price {
  padding-bottom: 20px !important;
  font-size: 20px !important;
}
body.single-product .products-details-content button {
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 20px;
  padding: 10px;
  transition: all ease 0.5s;
  text-decoration: none;
  font-family: "Futura";
  font-style: normal;
  display: inline-flex !important;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--darkblue) !important;
  background-color: var(--green) !important;
  position: relative;
  z-index: 0;
  max-width: fit-content;
  text-transform: uppercase;
}
body.single-product .products-details-content button:hover {
  background: var(--darkblue) !important;
  color: var(--white) !important;
}
body.single-product .products-details-content span.posted_in a {
  color: #b3af54;
  text-decoration: none;
}
.product_details_review .woocommerce-tabs h2 {
  padding-bottom: 20px !important;
}

.product_details_review .woocommerce-tabs p {
  /* font-family: 'Futura Bk BT' !important; */
  text-transform: none;
}
.product_details_review .woocommerce-tabs li {
  background: transparent !important;
  /* font-family: 'Futura Bk BT' !important; */
  padding: 10px 10px !important;
  margin: 0 !important;
  border: unset !important;
  border-radius: unset !important;
  color: rgb(0 0 0 / 30%) !important;
  width: 8%;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}
.product_details_review .woocommerce-tabs li.active {
  border-bottom: 2px solid #1d1e41 !important;
  color: #1d1e41 !important;
}
.product_details_review ul.tabs.wc-tabs {
  padding: 0 !important;
  margin: 30px 0px !important;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.product_details_review {
  margin-top: 80px !important;
}
body.single-product .woocommerce-message {
  border-top-color: #72d8cc !important;
  color: #000 !important;
  outline: unset !important;
}
body.single-product .woocommerce-message a.button.wc-forward {
  background: #72d8cc !important;
  color: #1d1e41 !important;
}

body.single-product .woocommerce-message:before {
  color: #72d8cc !important;
}

/* Breadcrums */

/* .woocommerce-breadcrumb {
    margin-bottom: 30px !important;
} */
.custom-store-breadcrumb {
  padding: 30px 0;
  background: #f6f6f6 !important;
}
.custom-store-breadcrumb nav.woocommerce-breadcrumb,
.custom-store-breadcrumb nav.woocommerce-breadcrumb a,
nav.woocommerce-breadcrumb a,
nav.woocommerce-breadcrumb {
  font-size: 14px !important;
  text-decoration: none !important;
  color: var(--darkblue) !important;
  margin: 0 !important;
  font-family: "futura-pt";
  font-weight: 400;
}
.dokan-store .custom-store-breadcrumb {
  background: #ffffff !important;
}
/* .woocommerce-breadcrumb a ,.woocommerce-breadcrumb {
    font-size: 19px !important;
    color: var(--darkblue) !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    color: var(--green) !important;
    font-size: 20px !important;
    text-decoration: none;
} */

.products_listing_main .products_otr.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0 !important;
}
.products_listing_main header {
  margin: 70px 0 100px !important;
}
.products_listing_main .products_otr.products::before,
.products_listing_main .products_otr.products::after {
  display: none;
}
.products_listing_main .products_otr .product {
  margin: 0 !important;
  width: 100% !important;
  float: unset !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products_listing_main .products_otr .product img {
  margin: 0 !important;
  aspect-ratio: 346 / 469;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  max-height: 460px;
  min-height: 460px;
}
.products_listing_main .products_otr .product ins {
  text-decoration: none !important;
}
.products_listing_main .products_otr .product .star-rating {
  font-size: 1.157em !important;
  margin-bottom: 20px !important;
}
.products_listing_main .products_otr .product .star-rating span::before {
  color: #1d1e41 !important;
}
.products_listing_main header {
  margin: 40px 0 60px !important;
}
.products_listing_main .woocommerce-ordering {
  position: relative;
  z-index: 1;
  width: 35%;
  max-width: 400px;
  margin-bottom: 40px !important;
}
.products_listing_main .woocommerce-ordering select {
  padding: 16px !important;
  appearance: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-family: "Futura";
}
.products_listing_main .woocommerce-ordering::after {
  position: absolute;
  content: "";
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(https://underground-food-collective.demodevsite.info/wp-content/uploads/2024/09/down.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 22px;
  height: 10px;
}
.products_otr .product a {
  text-decoration: none;
}
.products_otr .product h2.woocommerce-loop-product__title {
  line-height: normal !important;
  color: var(--darkblue) !important;
  font-size: 20px !important;
  padding: 20px 0 15px !important;
  text-align: left !important;
  font-weight: 700;
}
.products_otr .product span.price span {
  color: rgb(29 30 65);
}
.products_listing_main p.woocommerce-result-count {
  margin: 18px 0 0 0 !important;
}
.woocommerce ul.products li.product .add_to_cart_button {
  margin: 0px !important;
  padding: 18px 20px !important;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  transition: all ease 0.5s;
  text-decoration: none;
  font-style: normal;
  color: var(--darkblue);
  background-color: var(--green);
  text-transform: uppercase;
  text-align: center;
  font-family: "futura-pt-condensed";
}
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background-color: var(--darkblue);
  color: var(--green);
}
.products_otr .product span.price {
  font-size: 16px !important;
  margin: 10px 0 0 !important;
  margin-top: auto !important;
}
.products_otr .product > .woocommerce-LoopProduct-link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products_listing_main .products_otr .product span.onsale {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  line-height: normal !important;
}

.products-details-content .quantity input {
  padding: 10px !important;
  outline: unset !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  position: unset !important;
  border: unset !important;
}
.product_details_review .products_otr span.price {
  text-align: left !important;
  padding-bottom: 15px !important;
}
.products_otr a.button.product_type_simple {
  width: 100% !important;
}
.product_details_review ul {
  margin: 0 !important;
}
.product_details_review p.woocommerce-noreviews {
  padding-bottom: 6px;
}
.product_details_review span#reply-title {
  padding-bottom: 10px !important;
  display: block !important;
}
.product_details_review .comment-form-rating {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px !important;
}
.product_details_review p.form-submit input {
  background: var(--green) !important;
  color: #1d1e41 !important;
  transition: all ease 0.3s !important;
}
.product_details_review p.form-submit input:hover {
  color: var(--green) !important;
  background: #1d1e41 !important;
}

.cartpage_new
  .wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block {
  margin: 0 !important;
  padding: 0 !important;
}
.cartpage_new,
.checkoutpage_new {
  padding: 100px 0 100px;
}
.cartpage_new p,
.cartpage_new span,
.cartpage_new p,
.checkoutpage_new span,
.checkoutpage_new label,
.checkoutpage_new input,
.checkoutpage_new select,
.checkoutpage_new em {
  font-size: 16px !important;
  line-height: 22px !important;
  /* font-family: 'Futura Bk BT' !important; */
  color: #1d1e41 !important;
}
.cartpage_new button.wc-block-cart-item__remove-link {
  color: #ff0000 !important;
  /* font-family: 'Futura Bk BT' !important; */
  font-size: 20px !important;
  text-decoration: none !important;
}
.cartpage_new a span.wc-block-components-button__text {
  color: #5fb15f !important;
  text-decoration: none !important;
  font-size: 20px !important;
  border: 1px solid #5fb15f !important;
  padding: 10px 50px !important;
  border-radius: 5px !important;
  margin-top: 40px !important;
}
.cartpage_new a {
  text-decoration: none !important;
}
/* .cartpage_new a img {
    width: 100% !important;
    height: 100% !important;
} */
.cartpage_new td.wc-block-cart-item__image {
  padding: 20px 0 0 0 !important;
}
.cartpage_new a.wc-block-components-product-name {
  color: #1d1e41 !important;
}
.cartpage_new
  table.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block {
  margin: 0 !important;
}
.checkoutpage_new .wc-block-components-validation-error p {
  font-size: 12px !important;
  text-transform: none !important;
  /* font-family: 'Futura Bk BT' !important; */
}
.checkoutpage_new input,
.checkoutpage_new textarea {
  outline: unset !important;
  box-shadow: none !important;
  color: #1d1e41 !important;
}
.checkoutpage_new
  .wc-block-checkout__actions_row
  button.wc-block-components-button {
  background: #5fb15f !important;
  color: #fff !important;
  border: unset !important;
}
.checkoutpage_new
  .wc-block-checkout__actions_row
  button.wc-block-components-button
  span {
  color: #fff !important;
}
.checkoutpage_new
  label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: none !important;
  outline: unset !important;
  border: 1px solid hsla(0, 0%, 7%, 0.8) !important;
}
.checkoutpage_new
  .wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border: 1px solid hsla(0, 0%, 7%, 0.8) !important;
  box-shadow: none !important;
  outline: unset !important;
}

/* Wishlist */

.wishlist-main {
  padding: 125px 0 80px !important;
}
.wishlist-main .product,
.wishlist-main .product-price,
.wishlist-main .add_to_cart_btn,
.wishlist-main .product-removal {
  font-size: 20px !important;
  line-height: 22px !important;
  /* font-family: 'Futura Bk BT' !important; */

  padding: 0 !important;
}
.wishlist-main td.add-to-cart-btn {
  padding: 0 !important;
}
.wishlist-main tr td.product-thumbnail a,
.wishlist-main tr td.product-name a,
.wishlist-main tr td.product-price.wishlist-main tr td.add-to-cart-btn a,
.wishlist-main tr td.product-removal a {
  font-size: 16px !important;
  line-height: 20px !important;
  color: #000 !important;
  text-decoration: none !important;
  /* font-family: 'Futura Bk BT' !important; */
}
.wishlist-main tr td.product-price bdi {
  font-size: 16px !important;
  line-height: 20px !important;
  color: #000 !important;
  text-decoration: none !important;
  /* font-family: 'Futura Bk BT' !important; */
}
.wishlist-main tr td.add-to-cart-btn a {
  background: var(--green);
  color: var(--darkblue);
  font-size: 16px !important;
  line-height: 20px !important;
  transition: all ease 0.3s;
}
.wishlist-main tr td.add-to-cart-btn a:hover {
  color: var(--green);
  background: var(--darkblue);
}
.checkoutpage_new .thank_you_for_order p {
  font-size: 20px !important;
  line-height: 26px !important;
  padding-bottom: 30px !important;
}
.checkoutpage_new .thank_you_for_order li strong {
  font-size: 16px !important;
  line-height: 20px !important;
  padding-top: 10px !important;
}
.checkoutpage_new .thank_you_for_order li {
  font-size: 16px !important;
  line-height: 20px !important;
  /* font-family: 'Futura Bk BT' !important; */
}
.checkoutpage_new .thank_you_for_order h2 {
  padding-bottom: 20px !important;
}
.checkoutpage_new .thank_you_for_order th,
.checkoutpage_new .thank_you_for_order td,
.checkoutpage_new .thank_you_for_order span {
  /* font-family: 'Futura Bk BT' !important; */
  font-weight: 400 !important;
}
.checkoutpage_new
  .thank_you_for_order
  section.woocommerce-customer-details
  address {
  font-size: 16px !important;
  line-height: 20px !important;
  /* font-family: 'Futura Bk BT' !important; */
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 20px !important;
}
.checkoutpage_new
  .thank_you_for_order
  section.woocommerce-customer-details
  address
  p {
  font-size: 16px !important;
  line-height: 20px !important;
  /* font-family: 'Futura Bk BT' !important; */
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.checkoutpage_new
  .thank_you_for_order
  td.woocommerce-table__product-name.product-name
  a {
  color: #1d1e41 !important;
  text-decoration: none !important;
}
.checkoutpage_new .thank_you_for_order section.woocommerce-customer-details {
  margin: 0 !important;
}

.products-details-content a.woocommerce-review-link {
  text-decoration: none !important;
  color: #1d1e41 !important;
}
.products-details-content .woocommerce-product-rating .star-rating {
  margin: 0 !important;
}
.products-details-content a.woocommerce-review-link span.count.visible {
  font-size: 16px !important;
}
.products-details-content .woocommerce-product-rating {
  display: flex !important;
  align-items: center !important;
}
.product_details_review ol.commentlist {
  padding: 0 !important;
  margin: 0 !important;
}

.product_details_review ol.commentlist li {
  width: 100%;
  padding: 0 0 20px 0 !important;
}

.product_details_review div#reviews {
  width: 50% !important;
}
.product_details_review .description p {
  text-align: start !important;
}
.product_details_review p.meta {
  text-align: start !important;
}

body.single-product span.onsale {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  line-height: normal !important;
}
.wishlist-main tr td.product-thumbnail,
.wishlist-main tr td.product-name,
.wishlist-main tr td.product-price.wishlist-main tr td.add-to-cart-btn,
.wishlist-main tr td.product-removal {
  padding: 0 !important;
}
.privacy-policy-content h2 {
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 30px;
  text-transform: none;
  font-weight: 700;
  padding-top: 14px;
}
.privacy-policy-content p {
  font-size: 16px;
  line-height: 22px;
  /* font-family: 'Futura Bk BT' !important; */
  text-transform: none;
  padding-bottom: 16px;
}

section.privacy-main {
  padding: 100px 0;
}
.privacy-main .privacy-policy-content p:last-of-type {
  padding-bottom: 0;
}

.services-content {
  max-width: 1440px;
  margin: 0 auto;
}
.services-listing .service-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
section.services-list-sec {
  padding: 100px 0;
}

.services-listing {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.services-listing .service-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.service-item .service_image {
  width: 49%;
}
.service-item .service_data {
  flex: 1;
}
.service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item .service_data h2 {
  font-size: 30px;
  line-height: 36px;
  text-transform: none;
  padding-bottom: 16px;
}
.service-details h3 {
  text-align: start;
  text-transform: none;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 24px;
}
.service-details p {
  /* font-family: 'Futura Bk BT' !important; */
  text-transform: none;
  padding-bottom: 16px;
}

/* Login Dashboard */

.dash_otr {
  padding: 100px 50px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce:after {
  display: none !important;
}
.dash_sidebar ul {
  display: flex;
  flex-direction: column;
}
.dash_sidebar ul li {
  padding-bottom: 17px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
}
.dash_sidebar ul li:last-child {
  padding: 0;
  margin: 0;
  border: unset;
}
.dash_sidebar ul a {
  text-decoration: none;
  color: #fff;
  font-family: Futura;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.woocommerce-account
  nav.woocommerce-MyAccount-navigation.dash_sidebar
  li.is-active
  a {
  color: #72d8cc;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation.dash_sidebar {
  width: 20% !important;
  float: unset !important;
  padding: 20px;
  background: #1d1e41;
  border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content.dash_content {
  flex: 1;
  width: 100% !important;
  float: unset !important;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content.dash_content a {
  color: #1d1e41;
  font-weight: 500;
}
.woocommerce-account.woocommerce-orders a.woocommerce-button.button.view {
  background: #89eedd;
  color: #1d1e41;
}
.woocommerce-account .woocommerce-MyAccount-content.dash_content p {
  padding-bottom: 25px;
}
.woocommerce-account .woocommerce-MyAccount-content.dash_content p:last-child {
  padding-bottom: 0 !important;
}
.woocommerce-MyAccount-content.dash_content
  form.cmn_form_css
  p#billing_address_1_field {
  padding-bottom: 8px !important;
}
.dash_content a.dokan-btn.dokan-btn-theme.vendor-dashboard {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 14px 15px;
  transition: all ease 0.5s;
  text-decoration: none;
  font-family: "Futura";
  font-style: normal;
  display: inline-flex !important;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--darkblue);
  background-color: var(--green);
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.dash_content a.dokan-btn.dokan-btn-theme.vendor-dashboard:hover {
  background-color: var(--darkblue);
  color: var(--green) !important;
}

.woocommerce-account .woocommerce-MyAccount-content.dash_content a:hover {
  text-decoration: none;
  color: #120e5778;
}

/* Address  */
.cmn_form_css h3 {
  padding-bottom: 15px;
}
.addresses.address_otr {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.addresses.address_otr:after,
.addresses.address_otr:before {
  display: none !important;
}
.dash_content .addresses.address_otr .woocommerce-Address {
  float: unset !important;
  width: 100% !important;
}
.addresses.address_otr:after,
.addresses.address_otr:before,
.address_otr header.woocommerce-Address-title.title:before,
.address_otr header.woocommerce-Address-title.title:after {
  display: none !important;
}
.dash_content .addresses.address_otr .woocommerce-Address {
  float: unset !important;
  width: 100% !important;
}
.dash_content .addresses.address_otr .woocommerce-Address a.edit {
  float: unset !important;
  line-height: normal !important;
  font-size: 18px;
  color: var(--darkblue);
  font-weight: 500;
}
.address_otr header.woocommerce-Address-title.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-content.dash_content h3 {
  text-align: left;
}

.woocommerce-MyAccount-content.dash_content form.cmn_form_css p {
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 24px !important;
}

.woocommerce-MyAccount-content.dash_content form.cmn_form_css p label {
  line-height: 28px !important;
  padding-bottom: 8px;
  color: #020202;
  font-family: Futura;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.woocommerce-MyAccount-content.dash_content
  form.cmn_form_css
  p
  span.woocommerce-input-wrapper {
  display: block !important;
}
/* .woocommerce-MyAccount-content.dash_content form.cmn_form_css p input {
    margin: 0 !important;
    padding: 10px 15px !important;
    border: 1px solid transparent !important;
    background: white;
    color: #1D1E41;
    font-family: "Futura Lt BT";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
} */
.woocommerce-MyAccount-content.dash_content form.cmn_form_css p input {
  margin: 0 !important;
  padding: 15px !important;
  background: white;
  color: #1d1e41;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #1d1e414a !important;
  border-radius: 5px;
}

.woocommerce-MyAccount-content.dash_content form.cmn_form_css p input:hover {
  border: 1px solid #1d1e41 !important;
}
.select2-container--open .select2-dropdown--below {
  margin: 0 !important;
  padding-top: 10px !important;
}
/* .cmn_form_css .woocommerce-address-fields button.button {
    margin-top: 25px !important;
} */

.woocommerce-account .cmn_form_css .woocommerce-address-fields button.a_btn,
.woocommerce-account .cmn_form_css .submit_btn .a_btn {
  margin-top: 25px !important;
  padding: 15px !important;
  transition: 0.3s all ease-in-out !important;
  font-family: "Futura" !important;
  color: var(--darkblue) !important;
  background-color: var(--green) !important;
  display: flex !important;
  margin-left: auto !important;
}

.woocommerce-account
  .cmn_form_css
  .woocommerce-address-fields
  button.a_btn:hover,
.woocommerce-account .cmn_form_css .submit_btn .a_btn:hover {
  transition: 0.3s all ease-in-out !important;
  background-color: var(--darkblue) !important;
  color: var(--green) !important;
}
.woocommerce-account .cmn_form_css #billing_country_field,
.woocommerce-account .cmn_form_css #billing_city_field {
  padding-bottom: 20px !important;
}
.woocommerce-account.logged-in
  .woocommerce-MyAccount-content.dash_content
  p
  span {
  color: var(--darkblue);
}
.woocommerce-account.logged-in span.extra_word {
  margin-top: 5px !important;
  display: block;
  font-size: 12px;
  text-transform: unset !important;
}
.woocommerce-account.logged-in
  .woocommerce-MyAccount-content.dash_content
  fieldset.pass_otr {
  margin: 0 !important;
  padding: 0 !important;
  border: unset !important;
}
.woocommerce-account.logged-in
  .woocommerce-MyAccount-content.dash_content
  fieldset.pass_otr
  legend {
  padding: 10px 0 25px;
  font-size: 24px;
  font-weight: 500;
}

/* Review Page */
.reviews-list {
  padding: 100px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 30px;
}
.otr_review {
  display: flex;
  gap: 20px;
  align-items: center;
}
.review-avatar img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  object-fit: cover;
}
.product-review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}
.review-meta p.review-author {
  font-size: 18px;
}
p.review-date {
  font-size: 14px;
  line-height: normal;
}

.first_last_name {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.first_last_name p {
  width: 100% !important;
}

/* form */

.appointment_form br {
  display: none;
}

.appointment_form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.appointment_form form p:nth-child(4),
.appointment_form form p:nth-child(5),
.appointment_form form p:nth-child(6) {
  grid-column: span 2 !important;
}

.appointment_form form span input,
.appointment_form form span textarea {
  width: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
  padding: 15px 20px 15px 20px !important;
  font-size: 26px !important;
  /* font-family: "Quicksand", sans-serif !important; */
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: normal !important;
  border: 1px solid rgba(18, 31, 56, 0.2) !important;
  resize: none !important;
  font-family: "Futura" !important;
}

.appointment_form form span input::placeholder,
.appointment_form form span textarea::placeholder {
  /* font-family: "Quicksand", sans-serif !important; */
  font-family: "Futura" !important;
}

.appointment_form form span input {
  padding: 15px 70px 15px 20px !important;
}

.appointment_form form label {
  width: 100% !important;
  display: block;
  position: relative;
}

.appointment_form form span {
  display: block;
  width: 100% !important;
  text-align: left !important;
}

/* ::placeholder {
    color: rgb(19 26 40 / 35%) !important;
    font-size: 26px;
    line-height: 33px;
} */

span.wpcf7-spinner {
  display: none;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 0.9em;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.submit_icon {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  font-family: "Quicksand" !important;
  display: flex;
  padding: 15px 30px;
  background-color: var(--brown);
  align-items: center;
  justify-content: center;
  width: max-content;
  border: 1px solid var(--brown);
  border-radius: 8px;
  cursor: pointer;
}

.appointment_form form .wpcf7-spinner {
  display: none !important;
}

.appointment_form form.invalid .wpcf7-response-output {
  color: #dc3232 !important;
  font-size: 0.9em;
}

.appointment_form form .wpcf7-response-output,
.ready_to_discuss_form form.sent .wpcf7-response-output {
  padding: 0px !important;
  margin: 0px !important;
  border: none !important;
  color: red !important;
  margin-top: -10px !important;
  grid-column: span 2;
}

.appointment_form form.sent .wpcf7-response-output {
  color: #46b450 !important;
}

.appointment_form form p:nth-child(7) {
  width: max-content !important;
  grid-column: span 2 !important;
}

.appointment_form form span textarea {
  height: 287px !important;
}

.appointment_form form p {
  position: relative !important;
}

.appointment_form form p:nth-child(2)::after,
.appointment_form form p:nth-child(3)::after,
.appointment_form form p:nth-child(4)::after,
.appointment_form form p:nth-child(5)::after {
  content: "";
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  position: absolute;
}

.appointment_form form p:nth-child(2)::after,
.appointment_form form p:nth-child(3)::after {
  background-image: url(https://wordpress-1280859-4708457.cloudwaysapps.com/wp-content/uploads/2024/07/Icon.svg);
}

.appointment_form form p:nth-child(4)::after {
  background-image: url(https://wordpress-1280859-4708457.cloudwaysapps.com/wp-content/uploads/2024/07/mdi-light_email.svg);
}

.appointment_form form p:nth-child(5)::after {
  background-image: url(https://wordpress-1280859-4708457.cloudwaysapps.com/wp-content/uploads/2024/07/fluent_call-28-regular.svg);
}

.appointment_form form span input:focus-visible,
.appointment_form form span input:focus,
.appointment_form form span input:hover,
.appointment_form form span textarea:focus-visible,
.appointment_form form span textarea:focus,
.appointment_form form span textarea:hover {
  border: 1px solid var(--brown) !important;
}

.appointment_form form span input,
.appointment_form form span textarea {
  outline-color: var(--brown);
}

.appointment_form form span input:not(:placeholder-shown),
.appointment_form form span textarea:not(:placeholder-shown) {
  border-color: var(--brown) !important;
}

.social_link_icon a:hover img {
  filter: contrast(0.7);
}

.title_appointmetnt h2 {
  padding-bottom: 16px;
}

.call_text a {
  text-transform: lowercase;
}

.welcome_video video {
  width: 100%;
  height: 100%;
}

/* ----------------------- Contact Us Page ------------------------------------------- */

.contact_us_page {
  padding: 100px 0px;
}

.contact_us_page_main {
  display: flex;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact_us_content {
  width: 48.62%;
}

.contact_form {
  flex: 1;
}

.contact_us_content p iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.contact_us_content p {
  height: 100%;
}

.contact_book_appointment {
  max-width: 922px;
  margin: 0 auto;
  text-align: center;
}

.contact_book_appointment h2 {
  padding-bottom: 8px;
}

.contact_us_content p,
.contact_us_content a {
  font-size: 20px;
  line-height: normal;
  color: var(--dark-blue);
  font-weight: 400;
}

.contact_links_otr {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact_link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
  border-radius: 20px;
  background: #f9f9f9;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.21);
  padding: 0px 34px 29px;
}

.contact_img img {
  height: 100%;
  width: 100%;
}

.contact_link p {
  text-align: center;
}

.contact_link h3 {
  color: var(--brown);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.contact_link a {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 155%;
  /* 155% */
}

.page-template-contact-us .footer_top {
  padding: 100px 0px 71px;
}

.appointment_form {
  width: 53.5%;
}
.contact_form_image {
  flex: 1;
}

/* Reset Password */

.pass_or {
  padding: 30px 0;
}
form.woocommerce-ResetPassword.lost_reset_password.cmn_form_css {
  max-width: 530px;
  margin: 0px auto;
  padding: 20px 22px;
  background: #fff;
  border-radius: 5px;
}
form.woocommerce-ResetPassword.lost_reset_password.cmn_form_css .form_btn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form.woocommerce-ResetPassword.lost_reset_password.cmn_form_css
  .form_btn
  .btn_otr {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: unset !important;
  margin-top: 30px !important;
}
.form_btn p.woocommerce-form-row {
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-account.woocommerce-lost-password .woocommerce {
  max-width: 1616px;
  margin: 0px auto;
  padding: 100px 50px;
}

.password_field_otr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px !important;
}
.password_field_otr p.woocommerce-form-row {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.password_field_otr span.show-password-input {
  top: 1em !important;
}
form.woocommerce-ResetPassword.change_pass_otr.cmn_form_css .a_btn {
  margin-top: 20px !important;
}
form.woocommerce-ResetPassword.change_pass_otr.cmn_form_css
  p.woocommerce-form-row.form-row {
  margin: 0 !important;
  padding: 0 !important;
}

main#primary {
  background: #f2f2f2;
}
li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--my-wish-list {
  display: none !important;
}

#dokan-seller-listing-wrap {
  margin: 0 !important;
}

/* Articians  */

.dokan-store nav.woocommerce-breadcrumb {
  max-width: 1616px !important;
  margin: 0px auto;
}
.dokan-store .dokan-store-products-filter-area.dokan-clearfix {
  max-width: 1616px;
  margin: 68px auto 0px;
  padding: 0 50px;
}
.dokan-store .profile-info-summery {
  width: 100% !important;
  padding: 0 !important;
}
.dokan-store .profile-info-summery .profile-img {
  margin: 0 !important;
}
.dokan-store .profile-info-summery h1.store-name {
  line-height: 89px !important;
  font-size: 67px !important;
  margin: 0 !important;
  color: transparent !important;
}
.dokan-store .profile-info-summery .hero_banner_data {
  padding: 153px 0 106px;
}

.dokan-store .products_otr {
  margin: 0 !important;
}
.dokan-store
  .dokan-store-products-filter-area.dokan-clearfix
  input.search-store-products {
  color: var(--darkblue);
  background-color: var(--green);
  border: 1px solid transparent;
  height: auto;
  cursor: pointer;
  font-family: "futura-pt-condensed";
  font-weight: 600;
  font-size: 18px;
}
.dokan-store-products-filter-area
  .dokan-store-products-ordeby
  input.product-name-search {
  height: auto;
  padding: 15px 20px;
  font-size: 16px !important;
  width: 100% !important;
  max-width: 350px !important;
  border: 1px solid #1d1e412b !important;
  font-family: "Futura" !important;
}

.dokan-store-products-filter-area .orderby-search {
  height: auto !important;
  border: 1px solid #1d1e412b !important;
  appearance: none;
  padding: 12px;
  font-size: 18px !important;
  cursor: pointer;
  font-family: "Futura" !important;
  width: 100% !important;
}

#dokan-store-listing-filter-wrap {
  background-color: #f6f6f6 !important;
}
.pagination-container.clearfix {
  display: flex;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
  font-family: "futura-pt-condensed";
}
.pagination-otr {
  grid-column: span 3 !important;
}
.pagination-wrap ul.pagination > li {
  display: flex !important;
}
.pagination-wrap ul.pagination {
  margin: 0 !important;
  display: flex !important;
  gap: 24px;
  font-weight: 700 !important;
  font-size: 16px;
}
.featured_info_otr .pagination .page-numbers,
#dokan-content .pagination-wrap ul.pagination span,
#dokan-content .pagination-wrap ul.pagination a {
  margin: 0 !important;
  border: unset !important;
  background: unset !important;
  color: #1d1e41 !important;
  padding: 0 !important;
}
#dokan-content .pagination-wrap ul.pagination > li > span.current {
  background-color: transparent !important;
  color: #999 !important;
}
.featured_info_otr .pagination-wrap ul.pagination > li > span.current {
  background-color: transparent !important;
  color: #999 !important;
}

.artisans-list-filter {
  background: #f6f6f6;
}
.artisans-list-filter div#dokan-store-listing-filter-wrap {
  box-shadow: unset !important;
  padding: 0 !important;
}
.artisans-list-filter form.sort-by.item {
  margin: 0 !important;
}
.artisans-list-filter div#dokan-store-listing-filter-wrap form.sort-by.item {
  position: relative;
}

.artisans-list-filter
  div#dokan-store-listing-filter-wrap
  form.sort-by.item:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(https://underground-food-collective.demodevsite.info/wp-content/uploads/2024/10/Polygon-2.svg);
  background-repeat: no-repeat;
  width: 9px;
  height: 8px;
  background-size: 100% 100%;
  z-index: 2;
}
#dokan-store-listing-filter-wrap .right .item select {
  padding: 16px 50px 16px 16px !important;
  cursor: pointer;
  font-size: 16px;
  font-family: "Futura";
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.featured_right {
  flex: 1;
}
.featured_rpt > h3 {
  padding-bottom: 27px;
  text-align: left;
  font-family: "Futura";
  text-transform: capitalize;
  font-weight: 700;
}
.store-listing-count {
  padding-bottom: 39px;
  font-family: "futura-pt-condensed";
  font-weight: 400;
  padding-top: 15px;
}
.our_artisan_shops_info.our_artisan_page_list {
  padding-top: 50px;
}
#dokan-seller-listing-wrap {
  margin-top: -100px !important;
  padding-bottom: 70px !important;
}
.dokan-store p.dokan-info {
  max-width: 1517px;
  margin: 0px auto;
  padding-left: 50px;
  padding-right: 50px;
}
.dokan-store-wrap {
  margin: 0 0 50px 0 !important;
}

.dokan-store-products-filter-area.dokan-clearfix {
  display: none;
}

.dokan-store-products-filter-area.dokan-clearfix.filter_order_custom {
  display: block;
}

form.dokan-store-products-ordeby {
  display: flex !important;
  justify-content: space-between !important;
}

.input_btn {
  display: flex !important;
}

.order_selection {
  position: relative;
  width: 40%;
  max-width: 300px;
}

.order_selection:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50% !important;
  transform: translateY(-50%);
  background: url(https://underground-food-collective.demodevsite.info/wp-content/uploads/2024/09/down.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}

.search {
  cursor: pointer;
}
.search_open .header_menu {
  position: relative;
}
.search_open .search-results {
  position: absolute;
  bottom: -76px;
  width: 33%;
  right: 0;
  top: auto;
  z-index: 9;
  max-width: 300px;
}
.search_open .search-results form.search-form {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  padding: 15px;
  background: white;
  border-radius: 6px;
}
.search_input_icon a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.search_input_icon input {
  padding: 10px 50px 10px 20px !important;
  width: 100%;
  border-radius: 6px;
  background: var(--f-9-f-9-fc, #fcfcff);
  border: 1px solid #9c9d9c;
  color: var(--black, #383838);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  outline: none !important;
}
.search_input_icon {
  width: 100%;
  position: relative;
  margin: 0px auto;
}
input#searchInput {
  display: none !important;
}
.search_open input#searchInput {
  display: block !important;
  background: transparent !important;
  border: 1px solid #1d1e41;
}
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.nav ul.sub-menu li:last-child a {
  padding-bottom: 0;
}
.search_input_icon a {
  display: none !important;
}
.search_open .search_input_icon a {
  display: block !important;
  position: absolute;
}

.search_open .search-results:after {
  content: "";
  position: absolute;
  top: -17px;
  left: 15px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="29" viewBox="0 0 34 29" fill="none"><path d="M16.8366 0L33.3036 28.5217H0.3696L16.8366 0Z" fill="white"/></svg>');
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
}
.counting_section_box h2.count.visible {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.counting_section_box h3 {
  font-family: "futura-pt-condensed";
  font-weight: 700;
}
.products_listing_main .products_otr .product a.added_to_cart.wc-forward {
  display: none;
}
.alg-wc-wl-btn.add .alg-wc-wl-view-state-add i.fas.fa-heart {
  font-size: 16px !important;
}
.alg-wc-wl-btn.add .alg-wc-wl-view-state-add i.fas.fa-heart:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 5000px;
  opacity: 0.5;
}

.search.search-results header.header {
  background: #f2f2f2;
}
.otr_search {
  padding: 100px 0;
  cursor: initial;
}

.search-no-results h1,
.search-results h1 {
  max-width: 1617px;
  margin: 0px auto;
  cursor: initial;
  padding: 0 0 50px 0;
}
.search.search-no-results section.our_artisan_shops_info,
.search-results section.our_artisan_shops_info {
  background: unset !important;
  padding: 0 0 50px 0;
  cursor: initial;
  margin: 0 !important;
}
.search.search-no-results section.our_artisan_shops_info,
.search section.our_artisan_shops_info .container,
.search-results section.event_main_info .container,
.search-results .blog_main_info .container {
  padding: 0 !important;
}
/* .search section.our_artisan_shops_info .container {
    padding: 0;
} */
.otr_search h2 {
  text-align: center;
  padding-bottom: 30px;
  font-size: 31.25px !important;
  margin-bottom: 0 !important;
  max-width: 100%;
}
.otr_search h2:after {
  content: none;
}
.search-results ul.product-results {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  cursor: initial;
}
.search .featured_title_info {
  padding: 0;
  margin: 0;
}
.search-results .join_over.event_detail {
  padding: 50px 0 0;
  background: transparent !important;
}
.search-results .event_item_info {
  max-width: 100%;
}
.search-results .blog_main_info {
  padding: 0;
}
.search-results .blog_main_info .blog_item_info {
  max-width: 100%;
}
.search-results .blog_main_info .blog_data_rtp {
  padding: 0;
}
ul.product-results li.product-item .screen-reader-text {
  width: 1px !important;
}

ul.product-results li.product-item * {
  width: 100%;
  display: flex;
  text-decoration: none;
  font-family: "Futura";
  font-size: 18px;
  font-weight: 500;
  color: #2a2947;
}

ul.product-results li.product-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

ul.product-results li.product-item .add-to-cart a {
  color: var(--darkblue);
  background-color: var(--green);
  padding: 15px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: "futura-pt-condensed";
  transition: all ease 0.5s;
}

ul.product-results li.product-item .add-to-cart a:hover {
  background-color: var(--darkblue);
  color: var(--green);
}

ul.product-results li.product-item .add-to-cart {
  margin-top: auto;
  order: 3;
}
ul.product-results li.product-item img {
  border-radius: 8px;
}
.product-item a:nth-child(2) {
  order: 1;
}
.product-item a:nth-child(1) {
  order: 2;
}

/* Cart Page */

.cartpage_new
  .wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block
  > * {
  padding: 30px;
}
.cartpage_new
  .wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block
  .wp-block-woocommerce-cart-totals-block {
  border-radius: 8px;
  background: #fff;
}
.cartpage_new
  .wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block
  .wp-block-woocommerce-cart-totals-block
  .wc-block-cart__submit {
  margin: 0 !important;
}

/* Checkout */

.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar {
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 !important;
}
.woocommerce-checkout
  .wc-block-components-sidebar.wc-block-checkout__sidebar
  .wp-block-woocommerce-checkout-order-summary-block,
.woocommerce-checkout .wc-block-components-main.wc-block-checkout__main {
  padding: 30px !important;
  background: white;
  border: 1px solid hsla(0, 0%, 7%, 0.11);
  border-radius: 5px;
}
.woocommerce-checkout .wc-block-components-sidebar-layout {
  gap: 40px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
}
.woocommerce-checkout p.wc-block-components-checkout-step__description {
  margin-bottom: 0px !important;
}
.woocommerce-checkout
  .wc-block-components-text-input.wc-block-components-address-form__email,
.woocommerce-checkout .wc-blocks-components-select__container {
  margin-top: 8px !important;
}
.woocommerce-checkout
  .wc-block-components-sidebar-layout
  .wp-block-woocommerce-checkout-actions-block {
  padding: 0 !important;
}
.woocommerce-checkout
  .wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
  padding: 0 !important;
}
.woocommerce-checkout .wc-block-components-main.wc-block-checkout__main {
  width: 60% !important;
}

.error_main {
  padding: 100px 0 100px 0;
}
.error_otr_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.error_btn svg path {
  fill: #1d1e41;
}

.error_btn a.a_btn {
  align-items: center;
}

/* Vendor Deshboard */

.dokan-dashboard-content .dokan-alert.dokan-alert-warning {
  margin-top: 50px !important;
  margin-right: 15px !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li {
  background: var(--darkblue) !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active {
  background: #89eedd !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active:after,
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li:hover:not(.active).has-submenu:after {
  border-color: transparent #1d1e41 transparent transparent !important;
  right: 0 !important;
  left: auto !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover {
  background: #89eedd !important;
}

.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover a {
  color: #1d1e41 !important;
}

input[type="submit"].dokan-btn-theme,
a.dokan-btn-theme,
.dokan-btn-theme,
.dokan-dashboard input[type="submit"].dokan-btn-danger,
.dokan-dashboard a.dokan-btn-danger,
.dokan-dashboard .dokan-btn-danger {
  font-weight: 700 !important;
  font-size: 16px !important;
  transition: all ease 0.5s !important;
  color: var(--darkblue) !important;
  background-color: var(--green) !important;
  font-family: "futura-pt-condensed" !important;
  border-color: transparent !important;
}

input[type="submit"].dokan-btn:hover,
a.dokan-btn:hover,
.dokan-btn:hover,
input[type="submit"].dokan-btn:focus,
a.dokan-btn:focus,
.dokan-btn:focus,
input[type="submit"].dokan-btn.focus,
a.dokan-btn.focus,
.dokan-btn.focus {
  background: #89eedd !important;
  border-color: transparent !important;
  color: #1d1e41 !important;
}

input[type="submit"].dokan-btn-theme:hover,
a.dokan-btn-theme:hover,
.dokan-btn-theme:hover,
input[type="submit"].dokan-btn-theme:focus,
a.dokan-btn-theme:focus,
.dokan-btn-theme:focus,
input[type="submit"].dokan-btn-theme:active,
a.dokan-btn-theme:active,
.dokan-btn-theme:active,
input[type="submit"].dokan-btn-theme.active,
a.dokan-btn-theme.active,
.dokan-btn-theme.active,
.open .dropdown-toggleinput[type="submit"].dokan-btn-theme,
.open .dropdown-togglea.dokan-btn-theme,
.open .dropdown-toggle.dokan-btn-theme,
.dokan-dashboard input[type="submit"].dokan-btn-danger:hover,
.dokan-dashboard a.dokan-btn-danger:hover,
.dokan-dashboard .dokan-btn-danger:hover {
  background-color: var(--darkblue) !important;
  color: var(--green) !important;
  border-color: transparent !important;
}
.dokan-dashboard .dokan-dash-sidebar {
  background: var(--darkblue) !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover li a {
  color: white !important;
}
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li
  ul.navigation-submenu
  li:hover:before,
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li
  ul.navigation-submenu
  li.current:before {
  border-color: #89eedd !important;
}
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li:hover
  li:hover
  a {
  color: #1d1e41 !important;
}
li.dokan-common-links.dokan-clearfix a.tips:hover {
  background: #89eedd !important;
}
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li.dokan-common-links:hover
  a {
  color: white !important;
}
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li.dokan-common-links:hover
  a:hover {
  background: #89eedd !important;
}

.dokan-dashboard ul.list-unstyled.list-count {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  margin-top: 15px;
}
.dokan-dashboard .dokan-dashboard-content ul li a {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
}
.dokan-dashboard
  .dokan-dash-sidebar
  ul.dokan-dashboard-menu
  li
  ul.navigation-submenu {
  border-bottom: 0 !important;
  background: transparent !important;
}
.dokan-progress-bar {
  color: #1d1e41 !important;
  font-size: 14px !important;
  margin-left: 5px !important;
}

.dokan-dashboard .dokan-dashboard-content article {
  padding: 25px !important;
  background: white !important;
  border-radius: 8px !important;
  margin-right: 15px !important;
}
select.dokan-form-control,
.dokan-reviews-content .dokan-reviews-area .dokan-comments-wrap select {
  cursor: pointer !important;
}

.dokan-dashboard form.dokan-form-inline.dokan-w8.dokan-product-date-filter {
  display: flex !important;
  width: max-content !important;
  gap: 20px;
}
.dokan-dashboard
  form.dokan-form-inline.dokan-w8.dokan-product-date-filter
  .dokan-form-group,
.dokan-dashboard-content.dokan-product-listing .dokan-form-group {
  margin: 0 !important;
}
.dokan-dashboard
  form.dokan-form-inline.dokan-w8.dokan-product-date-filter
  .dokan-form-group:last-child {
  display: flex;
  gap: 10px;
}

.dokan-product-listing-area .dokan-w12 {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}
.dokan-product-listing-area
  .dokan-w12
  form.dokan-form-inline.dokan-w5.dokan-product-search-form {
  flex: 1 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: end !important;
  flex-direction: row-reverse !important;
}
.dokan-product-listing-area
  .dokan-w12
  form.dokan-form-inline.dokan-w5.dokan-product-search-form
  input,
.dokan-product-listing-area select {
  height: 100% !important;
}
.dokan-dashboard-product-listing-wrapper
  form#product-filter
  select#bulk-product-action-selector {
  height: 37px !important;
}
.dokan-dashboard-product-listing-wrapper table#dokan-product-list-table {
  padding-top: 20px !important;
}
#dokan_comments-form .dokan-form-group {
  display: flex;
  gap: 10px;
}
form#dokan_comments-form {
  margin-top: 20px !important;
}
.dokan-withdraw-content
  .dokan-withdraw-area
  .dokan-panel-body
  .dokan-panel-inner-container
  .dokan-w8
  strong
  a {
  color: #1d1e41 !important;
}

.dokan-dashboard .dashboard-content-area form.edit-account p {
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

.dokan-dashboard .dashboard-content-area form.edit-account label {
  line-height: normal !important;
  padding-bottom: 8px !important;
  color: #020202 !important;
  font-family: Futura !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 500 !important;
}

.dokan-dashboard .dashboard-content-area form.edit-account input {
  margin: 0 !important;
  padding: 15px !important;
  background: white !important;
  color: #1d1e41 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  border: 1px solid #1d1e414a !important;
  border-radius: 5px !important;
  font-family: "Futura" !important;
}
.dokan-dashboard .dokan-dashboard-content .edit-account fieldset {
  margin: 0 !important;
  padding: 0 !important;
  border: unset !important;
}
.dokan-dashboard .dokan-dashboard-content .edit-account fieldset legend {
  padding: 10px 0 25px !important;
  font-size: 24px !important;
  font-weight: 500 !important;
}
.dokan-dashboard .dashboard-content-area form.edit-account > p:last-of-type {
  display: flex !important;
  justify-content: end !important;
  margin: 0 !important;
}

/******************** company detail ********************/

.company_form {
  padding: 100px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.company_detail_banner {
  padding: 148px 0;
  background: #f9f9f9;
}

.company_detail_banner h1 {
  text-align: center;
  font-size: 100px;
  line-height: 1;
}
.page-template-company-details form {
  padding: 3rem;
  background: #f9f9f9;
}

.page-template-company-details form label {
  font-size: 20px;
  font-weight: 700;
}
.company_form_item input {
  display: block;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid rgba(29, 30, 65, 0.2);
  width: 100%;
  margin-bottom: 40px;
  resize: none;
  font-size: 20px;
  font-family: "Futura";
  font-weight: 500;
  background: #f2f2f2;
}
.company_btm_form {
  margin: 40px 0 0 0;
}
.company_img_div input[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}

.company_img_div_inr {
  position: relative;
  margin-top: 10px;
}
.company_img_div_inr .closeButton {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 100%;
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
  padding: 16px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.company_img_div_inr.image-uploaded .closeButton {
  opacity: 1;
  visibility: visible;
}

.company_img_div_inr .closeButton svg {
  width: 100%;
  height: 100%;
}

.company_img_div_inr .spanButton {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 100%;
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
  padding: 16px;
  z-index: 1;
  transition: all 0.3s ease-in-out 0s;
}
.company_img_div_inr .spanButton svg {
  width: 100%;
  height: 100%;
}

.company_img_box {
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.company_img_box img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.company_img_div_inr.image-uploaded span.spanButton {
  right: 95px;
}

.page-template-company-details form input,
textarea {
  display: block;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid rgba(29, 30, 65, 0.2);
  width: 100%;
  margin-bottom: 40px;
  resize: none;
  background: #fff;
  font-size: 18px;
  font-family: "Futura";
  font-weight: 400;
}
.page-template-company-details form br {
  display: none;
}
.company_imgs_main {
  display: flex;
  gap: 40px;
}

.company_imgs_main .company_img_div {
  width: 50%;
}
.company_form textarea {
  overflow-y: auto;
  min-height: 287px;
}

.company_form .company_form_item label {
  font-size: 18px;
  font-weight: 700;
}
.page-template-company-details form .a_btn {
  font-family: "Futura";
  text-transform: math-auto;
  background: var(--green);
  border: 1px solid var(--green);
  cursor: pointer;
  margin: 0;
  font-weight: 700;
}

.page-template-company-details form .a_btn:hover {
  background: var(--darkblue);
  border: 1px solid var(--darkblue);
}
.page-template-company-details form input:hover,
textarea:hover {
  border: 1px solid var(--darkblue);
}

.input_btn {
  display: none !important;
}

.dokan-store-products-filter-area .dokan-store-products-ordeby {
  justify-content: flex-end !important;
}

.product_sub_title p {
  font-size: 16px;
  font-family: "futura-pt-condensed";
  font-weight: bold;
  line-height: 18px;
}

.product_image_info iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 8px !important;
}

.product_image_info:first-child {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 402px;
  max-height: 402px;
}

/* .artisans_main .products_listing_main .products_otr.products .product {
    overflow: hidden !important;
}
.artisans_main .products_listing_main .products_otr.products .product a.woocommerce-LoopProduct-link {
    position: relative;
    inset: 0;
    padding-top: 90%;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}
.artisans_main .products_listing_main .products_otr.products .product a.woocommerce-LoopProduct-link img {
    position: absolute;
    height: 100%;
    inset: 0;
    width: 100%;
    z-index: -1;
}
*/
/* .artisans_main .products_listing_main .products_otr.products .product a.woocommerce-LoopProduct-link h2 {
    color: white !important;
    position: absolute !important;
    bottom: 60px !important;
    z-index: 1 !important;
    color: white !important;
    left: 20px !important;
    right: 20px !important;
    border-bottom: 1px solid;
}
.artisans_main .products_listing_main .products_otr.products .product span.price {
    position: absolute !important;
    bottom: 0 !important;
    color: white !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 25px !important;
}
.artisans_main .products_listing_main .products_otr.products .product span.price span {
    color: white !important;
} 
.artisans_main .products_listing_main .products_otr.products .product a.button.product_type_simple.add_to_cart_button {
    position: absolute;
    bottom: 0px;
    display: none;
} */
/* 
.artisans_main .products_listing_main .products_otr.products .product:hover a.button.product_type_simple.add_to_cart_button {
    display: block;
    transition: all 0.2s ease-in-out;
}
.artisans_main .products_listing_main .products_otr.products .product:hover a.woocommerce-LoopProduct-link h2 {
    bottom: 110px !important;
    transition: all 0.2s ease-in-out;
}
.artisans_main .products_listing_main .products_otr.products .product:hover span.price {
    bottom: 75px !important;
    transition: all 0.2s ease-in-out;
} 

.artisans_main .star-rating {
    display: none !important;
}
*/

/* Hide the pagination of the artisians detail */
#dokan-content .dokan-pagination-container {
  display: none;
}

.artisans_main
  .products_listing_main
  .products_otr.products
  .alg-wc-wl-thumb-btn-loop {
  right: 17px !important;
  left: auto !important;
}
.pagination-wrap.articians_pag_product {
  padding-top: 44px;
  display: flex;
  justify-content: end;
}
