html {
  --primary: #1d2451;
  --secondary: #f4988a;
  --digital-green: #1e626c;
  --playful-purple: #713a74;
  --modern-mauve: #a793a6;
  --disabled: #c1c1c1;
  --green: #50cc8d;
  --primary-font-regular: "ComfortaaRegular";
  --primary-font-Bold: "ComfortaaBold";
  --secondary-font-regular: "ClioRegular";
  --secondary-font-Bold: "ClioBold";
}

@font-face {
  font-family: "augustinebold";
  src: url("./../assets/fonts/augustine-bold-webfont.woff2") format("woff2"),
    url("./../assets/fonts/augustine-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-size: 1rem;
  min-width: 340px;
  font-family: "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media (min-width: 992px) {
  body {
    font-size: 1.125rem;
  }
}

/* Generic Background Start*/
.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: var(--primary) !important;
}

.bg-salmon {
  background-color: var(--secondary) !important;
}

.bg-green {
  background-color: var(--digital-green) !important;
}

.bg-purple {
  background-color: var(--playful-purple) !important;
}

.bg-gray {
  background-color: #f2f2f2 !important;
}

.bg-lighted {
  background-color: #f2f2f2;
}

.bg-disabled {
  background-color: disabled;
}

.bg-transparent {
  background: transparent;
  background-color: transparent;
}

.bg-enable-prompt {
  background-color: gray;
}
.bg-disable-prompt {
  background-color: lightgray;
}

/* Generic Color Start  */
.color-purple {
  color: var(--playful-purple) !important;
}

.color-blue {
  color: var(--primary) !important;
}

.color-salmon {
  color: var(--secondary) !important;
}

.color-mauve {
  color: var(--modern-mauve) !important;
}

.color-green {
  color: var(--green) !important;
}

.color-disabled {
  color: var(--disabled) !important;
}

.color-lighted {
  color: #c4c1c1 !important;
}

/* Font Generic */
.font-heading {
  font-family: "augustinebold";
}

.font-sub-heading {
  font-family: "noto sans";
}

.heading-first {
  font-family: "augustinebold";
  font-size: 34px !important;
}

@media (min-width: 768px) and (max-width: 992px) {
  .heading-first {
    font-family: "augustinebold";
    font-size: 30px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .heading-first {
    font-family: "augustinebold";
    font-size: 28px !important;
  }
}

.heading-second {
  font-family: "augustinebold";
  font-size: 26px !important;
}

@media (min-width: 1201px) {
  .heading-second {
    font-family: "augustinebold";
    font-size: 26px !important;

  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .heading-second {
    font-family: "augustinebold";
    font-size: 24px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .heading-second {
    font-family: "augustinebold";
    font-size: 22px !important;
  }
}

.heading-third {
  font-family: "augustinebold";
  font-size: 22px !important;
}

@media (min-width: 768px) {
  .heading-third {
    font-family: "augustinebold";
    font-size: 20px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .heading-third {
    font-family: "augustinebold";
    font-size: 18px !important;
  }
}

.font-xxsmall {
  font-size: 10px !important;
}

.font-xsmall {
  font-size: 12px !important;
}

.font-small {
  font-size: 14px !important;
}

.font-normal {
  font-size: 16px !important;
}

.font-med {
  font-size: 20px !important;
}

.font-large {
  font-size: 22px !important;
}

.font-xlarge {
  font-size: 26px !important;
}

.font-xxlarge {
  font-size: 32px !important;
}

.line-normal {
  line-height: normal;
}

.line-h-1 {
  line-height: 1;
}

/* Font Weight Generic */
.font-200 {
  font-weight: 200;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-bold {
  font-weight: bold;
}

/* Courser to Pointer  */
.cursor-pointer {
  cursor: pointer;
}

/* Caret blinker inside input  */
.caret-default {
  caret-color: black !important;
}

.caret-white {
  caret-color: #fff;
}

/* Border Width */
.borders-1 {
  border: 1px solid var(--playful-purple);
}

.borders-1-5 {
  border: 1.5px solid var(--playful-purple);
}

.borders-2 {
  border: 2px solid var(--playful-purple);
}

.borders-5 {
  border: 5px solid var(--playful-purple);
}

.border-none {
  border: none;
}

.border-0 {
  border: 0px;
}

/* Border Radius  */
.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-25 {
  border-radius: 25px;
}

.radius-50 {
  border-radius: 50%;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-30 {
  border-radius: 30px;
}

.border-radius-40 {
  border-radius: 40px;
}

.border-radius-50 {
  border-radius: 50px;
}

.border-radius-60 {
  border-radius: 60px;
}

.border-green {
  border-color: var(--green) !important;
}

.border-mauve {
  border-color: var(--modern-mauve) !important;
}

.border-blue {
  border-color: var(--primary) !important;
}

.border-disabled {
  border-color: var(--disabled) !important;
}

.generic-radius {
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
}

.register-pages-card-radius {
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}


/* Dummy upload  */
.dummy-input-btn {
  width: 15%;
  height: 25%;
  left: -14%;
  opacity: 0;
}

.dummy-input-icon {
  position: relative;
}

.dummy-icon-main {
  position: absolute;
  top: 34%;
  left: 6%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}



/* Negative Margin */
.mt-n6 {
  margin-top: -30px;
}

.indymandi-btn {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 25px;
  border: 3px solid var(--playful-purple);
  background-color: var(--playful-purple);
}

.indymandi-btn-outline {
  font-size: 20px;
  font-weight: 600;
  color: var(--playful-purple);
  border-radius: 25px;
  border: 3px solid var(--playful-purple);
  background-color: #fff;
}

/* Input Focous outline none  */
.focus-outline-none:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.mandi-logo img {
  width: 140px;
  /* margin: 14px 0px 14px 92px; */
}

.home-page-search {
  width: 40%;
  /* margin: 14px 0px 14px 210px; */
}

.home-page-search button {
  width: 52px;
  font-size: 22px;
  padding-right: 7px;
  background: #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 0 !important;
  height: 45px !important;
}

.home-page-search input {
  height: 45px !important;
  text-align: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.bg-blue-100 {
  background-color: #1b244f;
}

.bg-blue-200 {
  background-color: #1c234e;
}

.bg-blue-500 {
  background-color: #e18580;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.dashboard-content-wrapper {
  /* height: 86.1vh; */
  background-color: #f2f2f2;
  overflow: auto;
}

.dashboard-content-wrapper .content-heading {
  color: #6c326e;
  line-height: 45px;
  font-family: "augustinebold";
  font-size: 34px;
}

.width-fit-content {
  width: fit-content;
}

/* Dashboard Generic header */

.generic-dashboard-header.customer-order-listing-header .search-order button {
  padding: 0px 15px !important;
  height: auto !important;
  border: 2px solid var(--playful-purple) !important;
}

.generic-dashboard-header.customer-order-listing-header .search-order .search-field-btn {
  padding: 0px 15px !important;
  border-left: 0px solid #fff !important;
}

.generic-input-field-section {
  position: relative;
}

.generic-input-field {
  position: relative;
  border: 2px solid #815183;
  border-radius: 35px;
  padding: 0.5rem 0.3rem 0.5rem 1rem;
  width: 100%;
  color: var(--playful-purple) !important;
}

.generic-input-field::placeholder {
  color: var(--playful-purple) !important;
}

.generic-input-field-section i {
  position: absolute;
  right: 16px;
  top: 12px;
  color: var(--playful-purple) !important;
}

.btn-primary {
  background-color: var(--playful-purple);
  color: white;
  border-radius: 25px;
  border: 3px solid var(--playful-purple);
  font-size: 15px;
  width: 100%;
  padding: 10px;
}

.btn-primary:hover {
  background-color: var(--playful-purple);
  border: 3px solid var(--secondary);
}

.btn-primary:focus {
  background-color: var(--playful-purple);
  border: 3px solid var(--secondary);
}

.btn-secondary {
  background-color: #fff;
  color: var(--playful-purple);
  border-radius: 25px;
  border: 3px solid var(--playful-purple);
  font-size: 15px;
  width: 100% !important;
  padding: 10px;
}

.btn-secondary:hover {
  color: var(--playful-purple);
  background-color: #fff;
  border: 3px solid var(--playful-purple);
}

.btn-secondary:focus {
  color: var(--playful-purple);
  background-color: #fff;
  border: 3px solid var(--playful-purple);
}

.btn-salmon {
  background-color: var(--secondary);
  color: white;
  border-radius: 25px;
  border: 3px solid var(--secondary);
  font-size: 15px;
  width: 100%;
  padding: 10px;
}

.generic-nav.nav a {
  background: #fff;
  color: #713a74 !important;
  border: 1px solid #713a74 !important;
  border-radius: 50px !important;
  margin: 5px;
  font-weight: 600;
}

.generic-nav.nav .nav-link.active {
  color: #fff !important;
  background: #713a74 !important;
  border: 1px solid #713a74 !important;
  border-radius: 50px !important;
  margin: 5px;
}

.checkbox-lg {
  height: 22px;
  width: 22px;
}

.banner-section {
  background-color: #f4988b;
}

.banner-section img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.generic-select-field-section {
  position: relative;
}

.generic-select-field-section select {
  border: 2px solid var(--playful-purple);
  color: var(--playful-purple);
  border-radius: 25px;
  padding: 12px;
}

.generic-select-field-section select:focus,
.generic-select-field-section select:hover {
  outline: none !important;
  border: 2px solid #815183;
  color: var(--playful-purple);
}

.generic-select-field-section i {
  position: absolute;
  right: 16px;
  top: 15px;
  color: var(--playful-purple) !important;
}

.analytics-up-down {
  color: white;
  padding: 2px 8px;
  border-radius: 25px;
}

.analytics-up-down.up {
  background-color: #50cc8d;
}

.analytics-up-down.down {
  background-color: #f03d3e;
}

.analytics-up-down i {
  font-size: 12px;
}

.question-icon-span {
  height: 35px;
  width: 35px;
  border: 2px solid grey;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-icon-span i {
  color: grey;
  font-size: 16px;
}

.analytics-stats-veritical-br {
  border-right: 2px solid lightgray;
}

/* ===============================================
=============== Chat Implementation ==============
==================================================*/
.chat-box-main {
  width: 100%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
}

.chat-box {
  float: right;
  margin-right: 1px;
}
#chatbot-btn {
  width: 78%;
}
#chatbot-btn button {
  /* height: 25px;
  color: var(--playful-purple); */
  font-size: 14px;
  padding: 5px;
}
#chatbot-btn textarea:focus {
  border: 2px solid var(--playful-purple);
}
#chatbot-btn input:focus {
  border: 2px solid var(--playful-purple);
}

#chatbot-btn .active {
  background-color: var(--playful-purple);
  color: white;
}
/* .chatbot-btn:not(:active) {
  background-color: white;
  border: 1px solid purple;
} */
#chatbot-btn .notActive {
  background-color: white;
  border: 2px solid purple;
}
.chatbot-main-upload-holder {
  border-radius: 25px;
  height: 180px;
  width: 100%;
  background-color: white;
}
.chatbot-input-btn {
  cursor: pointer;
  opacity: 0;
}
.chatbot-input-btn input {
  cursor: pointer;
}
.chat-img-holder {
  border-radius: 10px;
  /* max-height: 100px;
  max-width: 80px; */
  height: 80px;
  width: 80px;
}
.chat-img-holder img {
  height: 100%;
  width: 100%;
}
.chatbot-upload-holder {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  text-align: center;
}
.chatbot-upload-btn {
  background: transparent;
  border: none;
  height: 20px;
  width: 20px;
  position: absolute;
}
.chatbot-remove-btn {
  position: absolute;
  right: 75px;
  bottom: 66px;
}



.prompt-table-inactive{
  background-color: #ececec;
  color: #b9b9b9;
}

/* ===============================================
  =============== Offcanvas ========================
  ================================================*/



.chat-section {
  /* / border: 1px solid red; / */
  height: 65px;
}

.chat-section img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.chat-detail {
  margin-left: 20px;
}

.custom-offcanvas {
  top: 0vh;
  bottom: 0vh;
  right: 0vh;
  height: 100vh;
  width: 60vh;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: scroll;
  z-index: 2;
}

.custom-offcanvas input {
  background: transparent;
  border: none;
}

.custom-offcanvas input:focus {
  background: transparent;
  border: none;
}

/* .custom-offcanvas .chat-list {
  width: 100%;
  height: 70%;
  background-color:#e18580;
  overflow-y: scroll !important;
  
  overflow-x: hidden !important;
} */
/* / Offcanvas Ending / */

/* Chat User List Section */

/* Chat Inbox */

/* ===============================================
=============== Custom Inputs ====================
================================================*/
.sm-placeholder::placeholder {
  font-size: 12px;
  vertical-align: center;
  color: var(--modern-mauve);
}

.sm-input {
  width: 150px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--playful-purple);
  border-radius: 25px;
}

.md-input {
  width: 250px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--playful-purple);
  border-radius: 25px;
}

.lg-input {
  width: 500px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--playful-purple);
  border-radius: 25px;
}

/* Inputs with Icons */
/* Medium Size Input */
.md-input-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  width: 250px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--playful-purple);
  border-radius: 25px;
}

.md-input-icon input {
  border: none;
  background: transparent;
  width: 75%;
}

.md-input-icon input:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

/* Custom Large */
.input-search-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  width: 270px;
  border: 2px solid #713a74;
  color: #000;
  padding: 8px 16px;
  font-size: 0.625rem;
  border-radius: 25px;
}

/* Custom Textarea */
.default-textarea {
  /* display: block;
  width: 100%;
  appearance: none;
 
  line-height: 1.2;
  padding: 8px 16px; */
  background: transparent;
  border: 2px solid var(--modern-mauve);
  border-radius: 10px;
}

.default-textarea:focus {
  border: 2px solid var(--modern-mauve);
  border-radius: 10px;
}

/* ===============================================
=============== Notifications ========================
================================================*/
.notification-card-box {
  height: 1116px;
}

.more-icon {
  margin-top: -25px;
}

.sign-up-button button {
  border: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 30px;
  width: 170px;
  height: 40px;
}

/* ===============================================
=============== Account Settings ===============
==================================================*/

.footer-content {
  height: 55px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.address-card {
  width: 100%;
  max-width: 70%;
  height: 90%;
}

.address-holder {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: visible;
}

.radio-select {
  margin-top: 2px;
  accent-color: #50cc8d;
  height: 1rem;
  width: 1rem;
}

.radio-select:checked {
  border: none;
}

/* Account Setting Ending */

/*  Help Section Starting  */
/*  Contact Us */
.help-form {
  background: transparent;
  padding: 50px 10px;
  border-radius: 10px;
}

.help-form input, .help-form select {
  height: 50px;
  border: 2px solid #e18580;
  color: #000;
  background: transparent;
  padding: 8px 16px;
  font-size: 0.625rem;
}

.help-form input:focus, .help-form select:focus {
  border: 2px solid #e18580;
  background: transparent;
}

.help-form textarea {
  border: 2px solid #e18580;
  color: #000;
  padding: 8px 16px;
  font-size: 0.625rem;
  background: transparent;
}

.help-form textarea:focus {
  border: 2px solid #e18580;
  background: transparent;
}

.help-form select option {
  color: black;
}

.help-form .input-file{
  padding: 16px 16px;
}

/* Help Section Ending  */

/* ===============================================
=============== Customer Dashboard ===============
==================================================*/

.customer-dashboard .customer-side-bar {
  /* height: 100vh; */
  height: 1000px;
  padding: 25px;
  background-color: var(--primary);
  /* border-radius: 25px; */
}

.customer-dashboard .customer-order-listing-header {
  /* height: 14vh; */
  /* border-top-right-radius: 25px; */
  padding: 40px 0;
}

.customer-dashboard .customer-order-list {
  height: 82vh;
  background-color: #f2f2f2;
}

.customer-side-bar .customer-sidebar-header {
  height: 150px;
}

.profile-upload-section .file-upload-btn {
  position: absolute;
  top: 0;
  left: 40px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}

.customer-sidebar-body ul {
  list-style: none;
  padding: 10px;
}

.customer-sidebar-body .active:after {
  content: "";
  display: block;
  margin: 0px 0px auto !important;
  width: 20% !important;
  border-bottom: 5px solid #fff !important;
}

.customer-sidebar-body li {
  list-style: none;
  padding: 5px 0px;
}

.customer-order-listing-header .search-order .input-group {
  width: 50%;
}

.customer-order-listing-header .search-order input {
  padding: 10px 15px;
  border: 2px solid var(--playful-purple);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-right: 0px solid #fff !important;
}

.customer-order-listing-header .search-order button {
  height: 45px !important;
  padding: 10px 15px !important;
  background-color: #fff;
  vertical-align: baseline;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 2px solid var(--playful-purple);
  border-left: 0px solid #fff !important;
}

.order-category-menu ul {
  display: flex;
  list-style: none;
}

.order-category-menu ul li {
  font-size: 18px;
  font-weight: 800;
  padding: 0px 10px;
}

@media (min-width: 320px) and (max-width: 576px) {
  .order-category-menu ul li {
    font-size: 8px !important;
    font-weight: 800;
    padding: 4px !important;
  }
  .order-category-menu>ul{
    justify-content: start !important;
  }
}


.order-category-menu ul li a {
  color: var(--primary);
}

.order-category-menu .active:after {
  content: "";
  display: block;
  margin: 0px 0px auto;
  width: 50%;
  border-bottom: 5px solid var(--primary);
}

.customer-order-list {
  display: flex;
  justify-content: center;
  height: auto !important;
}

.order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

@media (min-width: 310px) and (max-width: 520px) {
  .order-item-header {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}


/* Profile Page */

/* Notification Page */

/* Account Setting */

/*  Mini Chat Box */

.individual-mini-chat-interface {
  width: 60vh;
  height: 80vh;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: var(--playful-purple);
}

.individual-mini-chat-interface .mini-chat-header {
  width: 100%;
  height: 16%;
  color: #fff;
  border-radius: 15px;
  background-color: var(--playful-purple);
  display: flex;
  align-items: center;
}

.mini-chat-header .chat-header-icons {
  border: none;
  background: transparent;
  color: #fff;
}

.individual-mini-chat-interface .mini-chat-messages {
  width: 100;
  height: 60%;
  overflow-y: scroll;
  overflow-x: hidden;
  /* overscroll-behavior: contain; */
}

.individual-mini-chat-interface .mini-chat-messages::-webkit-scrollbar {
  width: 0px;
}

.thumbnail_images ul {
  width: 50%;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  scrollbar-color: #6969dd;
  scrollbar-width: thin;
}

.thumbnail_images ul::-webkit-scrollbar {
  width: 3px;
}

.thumbnail_images ul::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 5px;
}

.thumbnail_images ul::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px var(--secondary);
}

.individual-mini-chat-interface .mini-chat-typing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 24%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: var(--playful-purple);
}

.mini-chat-typing .show-chat-images {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  max-width: 100%;
  height: auto;
}

.individual-mini-chat-interface .mini-chat-typing textarea {
  font-size: 14px;
  width: 40vh;
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid var(--bs-purple);
  height: 105px; /*added later*/
}

.chat-img-upload {
  position: relative;
  right: -15px;
  width: 15px;
  height: 22%;
  opacity: 0;
}

.chat-file-upload {
  position: relative;
  right: -11px;
  width: 8px;
  height: 22%;
  opacity: 0;
}

/* ===============================================
================== Product Page ==================
==================================================*/

.card {
  border: none;
  overflow: hidden;
}

.main_image figcaption {
  z-index: 1;
  top: 15%;
  right: 62%;
  position: absolute;

}

.wishlist-icon {
  background-color: transparent;
  top: -202px;
  left: 140px;
  bottom: auto;
  right: auto;
  width: 40px;
  height: 40px;
  position: relative;
  /* background-color: rgba(255, 255, 255, 0.2); */
  border-radius: 10px 0 10px 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

}

.wishlist-icon:hover {
  background-color: #afbdd3;
  ;
}

.product-added-wishlist {

  /* top: -22rem;
  left: 10rem; */
  background-color: var(--disabled);
  height: 40px;
  width: 40px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.product-added-wishlist:hover {
  background-color: #758095;
}

.hide {
  display: none;
}

.myDIV:hover+.hide {
  display: block;
  fill: var(--secondary);
  color: var(--secondary);
}



.thumbnail_images ul {
  list-style: none;
  width: 100%;
  height: 350px;
  justify-content: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 10px; */
  padding-left: 0px;
}

.thumbnail_images ul li {
  margin: 5px;
  padding: 5px;
  /* border: 2px solid #eee; */
  cursor: pointer;
  transition: all 0.5s;
}

/* .thumbnail_images ul li:hover {
  border: 2px solid #000;
} */
.main_image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  /* height: 400px;
  width: 100%; */
  overflow: hidden;
}

.right-side {
  position: relative;
}


/* Image Magnifier */

figure.zoom {
  overflow: hidden;
  cursor: zoom-in;
}

figure.zoom img:hover {
  opacity: 0;
}

/* ===============================================
================== Media Inputbox =================
==================================================*/
/*  */
.dropzone {
  border: 2px dashed var(--playful-purple);
  text-align: center;
}

.upload-icon {
  margin-top: 25%;
  margin-left: 5%;
  margin-bottom: -45px;
}

.product .bi-heart svg {
  top: -30%;
  right: 10%;
}

.product .image-active {
  border: 5px solid var(--playful-purple) !important;
  border-radius: 0px !important;
}

.heart-filled .bi-heart-fill {
  top: -30%;
  right: 15%;
}

/* Upload for Wishlist Page */
.upload-btn {
  position: relative;
  bottom: 15%;
  width: 45%;
  height: 25%;
  opacity: 0;
}

/* Upload for New listing Page */
.upload-input {
  position: relative;
  top: -79px;
  left: 0;
  width: 40%;
  height: 25%;
  opacity: 0;
}

/* ===============================================
=============== Create New Listing ==============
==================================================*/
.homemade-food-banner {
  margin-left: 1px;
  margin-right: 1px;
}

.customer-dashboard .new-listing-sidebar {
  height: 1200px;
  padding: 25px;
  border-radius: 0px;
}

.new-listing-mini-header .search-order .input-group {
  width: 50%;
}

.new-listing-mini-header .search-order input {
  padding: 10px 15px;
  border: 2px solid var(--playful-purple);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-right: 0px solid #fff !important;
}

.new-listing-mini-header .search-order button {
  height: 45px !important;
  padding: 10px 15px !important;
  background-color: #fff;
  vertical-align: baseline;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 2px solid var(--playful-purple);
  border-left: 0px solid #fff !important;
}

/* horizontal line <hr> */

.additional-dropdown hr {
  width: 100%;
  height: 2px;
  background: var(--primary);
  fill: var(--primary);
  border-color: var(--primary);
}

/* Size Selector Button */
.size-selector-btn {
  height: 20px;
  width: 20px;
  margin: 5px;
  border-radius: 3px;
  border: 1px solid var(--playful-purple);
}

/* Add Product Button Icon */

.add-product-icon {
  position: relative;
  top: 35%;
  left: 40%;
}

.add-product-btn {
  top: 50px;
  left: 10px;
}

/* Yes & No Radio Buttons */

.radio-btn {
  height: 20px;
  width: 20px;
  accent-color: var(--playful-purple);
}

.radio-btn:checked {
  border: 10px solid var(--playful-purple);
}

/* Wishlist */
@media (min-width: 992px) and (max-width: 1170px) {
  .added-to-wishlist {
    left: 145px;
    top: -190px;
  }
}

@media (min-width: 768px) and (max-width: 870px) {
  .added-to-wishlist {
    left: 145px;
    top: -190px;
  }
}

@media (min-width: 576px) and (max-width: 622px) {
  .added-to-wishlist {
    left: 145px;
    top: -190px;
  }
}

@media (max-width: 374px) {
  .added-to-wishlist {
    left: 145px;
    top: -190px;
  }
}

/* .product a img:hover comment by rashid {
  border: 5px solid var(--playful-purple);
} */

.added-to-wishlist {
  right: 45px;
  top: -70px;
}

/* F-IndyMandi CSS Start*/
/* Order And Return Page Start */

.order-and-return-section .card {
  border-radius: 10px;
}

.order-and-return-section .shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.order-and-return-section h4 {
  color: #1b2351;
  font-size: 20px;
  font-weight: 700;
}

.order-and-return-section p {
  color: #1b2351;
  font-size: 14px;
  font-weight: 500;
}

.order-and-return-section h1 {
  color: #77437a;
  font-size: 40px;
  font-weight: 700;
}

.order-and-return-section .search-box {
  position: relative;
}

.order-and-return-section input {
  border: 2px solid #815183;
  border-radius: 35px;
  padding: 0.4rem 0.3rem 0.4rem 1rem;
  width: 100%;
  color: var(--playful-purple) !important;
}

.order-and-return-section input::placeholder,
.order-and-return-section select::placeholder {
  color: var(--playful-purple) !important;
}

.order-and-return-section .icon {
  position: absolute;
  right: 1rem;
  top: 10px;
}

.order-and-return-section input:focus,
.order-and-return-section input:hover {
  outline: none !important;
}

.order-and-return-section .nav a {
  background: #fff;
  color: #713a74 !important;
  border: 1px solid #713a74 !important;
  border-radius: 50px !important;
  margin: 5px;
}

.order-and-return-section .nav .nav-link.active {
  color: #fff !important;
  background: #713a74 !important;
  border: 1px solid #713a74 !important;
  border-radius: 50px !important;
  margin: 5px;
}

.order-and-return-section .tab-content {
  height: 100%;
  /* min-height: calc(100vh - 350px); */
  max-height: calc(100vh - 425px);
  overflow: auto;
}

.order-and-return-section .user {
  background-color: #f49889;
  padding: 1rem;
}

.order-and-return-section .inner-image {
  width: 75px;
  height: 75px;
  border-radius: 10px;
}

.order-and-return-section .upper-image {
  width: 30px;
  height: 30px;
  bottom: 50px;
  right: 52px;
  position: absolute;
  border-radius: 50%;
}

.order-and-return-section .open-chat-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.order-and-return-section .open-chat-link a {
  color: #1b2351;
}

/* Payment Page Start */
.payment-section .current-plan .billing h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}

.payment-section .current-plan .billing h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.payment-section .current-plan h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.payment-section .current-plan li {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}

.payment-section h1 {
  color: #fff;
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
}

.payment-section .card {
  color: #fff;
  border-radius: 30px;
  padding: 45px;
}

.payment-section .card-header {
  border-radius: 15px;
  border: none;
  background-color: #fff;
}

.payment-section .card-body {
  background-color: #713a74;
  border-radius: 30px;
  margin: 15px;
}

.payment-section button {
  background-color: #f4988a;
  border: 1px solid #f4988a;
  width: 80%;
  color: black;
  border-radius: 30px;
  padding: 8px;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 4rem;
}

.payment-section button:focus,
.payment-section button:hover {
  outline: none !important;
}

.payment-section .payment table th {
  border-bottom: none;
  font-weight: 500;
}

.payment-section .payment table td {
  font-size: 15px;
}

.payment-section .payment table button {
  background-color: #6f3973;
  border: 1px solid #6f3973;
  width: 100%;
  color: #fff;
  border-radius: 30px;
  padding: 8px;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 0px;
}

/* Customers Page Start */
.customers-section .card .card-body {
  height: 100%;
  /* min-height: calc(100vh - 370px); */
  max-height: calc(100vh - 370px);
  overflow: auto;
}

/* Analystics Page Start */
.analytics-section .performance-card h3 {
  font-size: 20px;
}

/* F-IndyMandi CSS End */

/* Seller Register Register Pages */
.btn-width {
  width: 215px !important;
}

.customer-set-up-plan-card {
  width: 30rem !important;
  border-top-left-radius: 40%;
  border-bottom-right-radius: 55%;
  margin: 10px 10px;
  padding: 65px 10px 100px 20px;
}

@media (min-width: 576px) {
  .customer-set-up-plan-card {
    width: 25rem !important;
  }
}

@media (min-width: 300px) and (max-width: 576px) {
  .customer-set-up-plan-card {
    width: 22rem !important;
  }
}

.customer-set-up-plan-card ul {
  list-style: none;
  padding: 0px;
}

.customer-set-up-plan-card ul li {
  padding: 8px 0px;
  font-size: 16px 0px;
}

/* Stepper */
.step-complete {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px !important;
  height: 50px !important;
  background-color: var(--playful-purple);
  border-radius: 50%;
  color: var(--secondary);
}

.step-uncomplete {
  color: var(--playful-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px !important;
  height: 50px !important;
  /* background-color: #f2f2f2; */
  border-radius: 50%;
}

.border-purple {
  border: 3px solid var(--playful-purple);
}

.border-lighted {
  border: 3px solid rgb(188, 187, 187);
}

.color-custom-lighted {
  color: rgb(188, 187, 187);
}

.register-steppers hr {
  color: #000 !important;
  font-size: 22px;
  width: 25%;
  height: 4px;
}

/* ===============================================
=============== Store Page ==============
==================================================*/
.all-product-active:after {
  content: "";
  display: block;
  margin: 0px 0px auto;
  width: 20%;
  border-bottom: 3px solid var(--primary);
}

.review-active:after {
  content: "";
  display: block;
  margin: 0px 0px auto;
  width: 30%;
  border-bottom: 3px solid var(--primary);
}

.bottom-border-1 {
  border-bottom: 1px solid black;
}

.add-wishlist {
  position: relative;
  top: -22rem;
  left: 10rem;
  height: 50px;
  width: 50px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.added-wishlist:hover {
  fill: red;
  color: red;
  /* background-color: red;  */
}

.added-cart-filled {
  bottom: 27px;
}

/* Home Page - Trending Now Heart Icon */
.trending-heart {
  width: fit-content;
  position: absolute;
  top: 10px;
  margin-left: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px 0 10px 0;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

.trending-heart:hover {
  background-color: #758095;
}

/* Home Page - Editor Section */

.editor-product-pick-display .editor-full {
  width: 100%;
  height: 400px !important;
}

.editor-product-pick-display img {
  padding: 10px 0px;
}

@keyframes fadeIn {
  0% {
    transform: translateY(50px);
    opacity: 0;
}

100% {
    transform: translateY(0);
    opacity: 1;
}
}

.editer-pick_price {
  /* display: none; */
  position: relative;
  top: -6vh;
  right: -6vw;
  padding-left: 45%;
  padding-right: 55%;
  /* background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%); */
}

.editer-pick:hover .editer-pick_price {

  /* comment all this css to remove animation on editor's picks section  */
  
  /* display: block;
  animation: fadeIn 1s;
  transform: translate(0, 10px);
  color: white; */
}

@media (min-width: 992px) {
  .editor-product-pick-display .editor-full {
    height: 320px !important;
  }
  #myLinks{
    display: none;
  }
}
@media (max-width: 992px) {
  #myLinks{
    display: none;
  }
}

@media (max-width: 600px) and (min-width: 320px) {
  .editor-product-pick-display img {
    width: 100% !important;
    height: 180px !important;
    padding: 10px 10px;
  }

  @media (max-width: 768px) {
    /* .img-sizee {
      height: 400px !important;
      width: 400px !important;
    } */
  }
  @media (max-width: 425px) {
    /* .new-product-card {
      min-height: 278px !important;
    } */
  }

  .editor-product-pick-display .editor-full {
    width: 100%;
    height: 320px !important;
  }
}

/* Editer's Choice Page */
.badge {
  margin-top: -5%;
  margin-left: 35%;
  position: absolute;
  margin-right: 60%;
}

.badge-body {
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
}

/* Indyview Page */
.price-tag {

  width: 165px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 13px;
  color: #1b244f;
  position: relative;
  top: auto;
  right: 20%;
  bottom: 25vh;
  left: auto;
  float: right;

}

/* articals page */
.artical-shopnow-btn {
  top: auto;
  bottom: -150px;
  right: auto;
  left: -170px;
}


/* listicles */
.hero-image img {
  height: 400px;
  width: 120vh;
}

.shopnow-btn {
  float: right;
  top: auto;
  bottom: 100px;
  right: auto;
  left: -5vh;
}

.recomended-read img {
  height: 230px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}


/* seller story page */

/* .meetseller .col-12 img{
  height: 70vh;
  width: 160vh;
} */

.become-seller-badge {

  margin-top: -15%;
  margin-bottom: auto;
  margin-left: 8%;
  margin-right: auto;
  height: max-content;
  width: max-content;
}

.become-seller-badge .badge-body-2 {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.featured-story .card {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}


/* ===============================================
=============== Ad Detail Page ==============
==================================================*/

.ad-upload-desktop {
  border: 2px dashed #a793a6;
  ;
  text-align: center;
}

.ad-upload-btn {
  position: relative;
  top: 24%;
  left: 20%;
  bottom: auto;
  right: auto;
}

.ad-upload-input {
  top: 35%;
  bottom: auto;
  left: auto;
  right: auto;
}

/* ===============================================
=============== Available Dates Page ==============
==================================================*/
.available-dates-btn {
  padding-bottom: 8px;
  padding-top: 8px;
  padding-left: 36.5px;
  padding-right: 36.5px;
}

/* table setting */
.week-1 .table> :not(:last-child)> :last-child>* {
  border-bottom: 1.4px solid #a793a6;

}

.page-item.active{
  z-index: 0;
}

/* .hz-pagination{
  position: relative;
  z-index: -2;
} */






/* DESIGN-V4 CHANGES */

/* welcome page categories horizontal scroll */
.categories-hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}
.categories-hide-scrollbar::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

/* product view page, show Product side images after Main image rather than on left side */
@media (max-width: 520px) {
  div:has(> .thumbnail_images) {flex-direction: column-reverse;}
  .thumbnail_images ul{
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  .thumbnail_images{padding-top:10px;}

  /* optional: hide the native scrollbar for a cleaner look */
  .thumbnail_images ul::-webkit-scrollbar {
    display: none;
  }
  .thumbnail_images ul {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }

  .product-card-cart-btn{height:auto !important;}
  
}

/* product view page bottom sticky cart elements */
.sticky-qty-control > .btn,
.sticky-qty-control > .input-group-text {
  width: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.25rem; /* tweak minus/plus size if needed */
}

.product-card-cart-btn{
    min-width: 19px;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 17px;
    height: 32px;
}