.lable-not-focus{
  margin-left: 70px;
}
.lable-not-focus.trigger{
  margin-left: 0px;
}
.login-form .form-group input:focus{
  box-shadow: none !important;
  top: 0px !important;
  z-index: 3;
  font-size: 14px !important;
}
.bronze-member-badge {
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  padding: 2px 6px;
  line-height: normal;
  letter-spacing: -0.06px;
  border-radius: 20px;
  background: linear-gradient(
    119deg,
    #b05727 1.31%,
    #cb8057 48.04%,
    #a84b19 107.15%
  );
}
.max-w-400 {
  max-width: 400px;
}
.pb-1\.5 {
  padding-bottom: 6px !important;
}
.gray-badge {
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(3, 3, 3, 0.1);
  color: rgba(3, 3, 3);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  &:hover {
    color: rgba(3, 3, 3);
    opacity: 0.8;
  }
}
.text-discription-60 {
  color: rgba(3, 3, 3, 0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.dropdown-cst {
  .dropdown-section-title {
    font-weight: 600;
    font-size: 12px;
    font-family: "Nunito Sans";
    color: #030303 !important;
  }
  /* width: 200% ; */
  .dropdown {
    width: 100% !important;
    &::after {
      display: none !important;
    }
  }
  .dropdown-menu {
    top: 55px !important;
    transform: none !important;
    overflow: auto;
    width: 100% !important;
    padding: 16px 4px 16px 16px;
    border-radius: 10px;
    border: 1px solid rgba(3, 3, 3, 0.2);
    background: #fff;
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.16);
    .dropdown-scroll {
      max-height: 350px;
      overflow: auto;
      @media (max-width: 768px) {
        max-height: 285px;
      }
    }
    /* .dropdown-scroll{
      max-height:calc(100vh - 560px);
      min-height: 150px;
      overflow: auto;
      @media (max-width: 768px) {
        max-height: 285px;
      }
    } */
    &.sm-px {
      padding: 16px 4px 16px 6px;
    }
  }
  .dropdown-item {
    padding: 11px 10px;
    border-radius: 2px;
    gap: 10px;
  }
  .dropdown-item:focus,
  .dropdown-item:hover {
    background-color: #f2f2f2 !important;
  }
  .dropdown-item.active,
  .dropdown-item.active:hover {
    background-color: #f4f4f4;
    color: #000;
  }

  .dropdown input:focus {
    border: 1px solid #bdbdbd !important;
    box-shadow: none !important;
  }
  .dropdown.show input {
    border: 2px solid #ffe7b9 !important;
    box-shadow: 0px 0px 11px 0px rgba(202, 169, 106, 0.8) !important;
  }
  .category-product-image {
    width: 24px;
    height: 24px;
  }
}
.input-default-img {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  /* cursor: pointer !important; */
  height: 30px;
  width: 30px;
}
.dropdown-search-input {
  /* padding-left: 51px !important; */
  color: #030303 !important;
  font-size: 15px !important;
  &::placeholder {
    color: rgba(3, 3, 3, 0.4);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
  @media (max-width: 768px) {
    font-size: 14px !important;
  }
  &.with-img {
    padding-left: 51px !important;
  }
  /* @media (max-width: 575px) { */
      padding-right: 36px !important;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  /* } */
}
.input-drop-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
}

.dropdown-toggle {
  padding-right: 30px;
}

.dropdown.disabled .input-drop-icon {
  pointer-events: none;
  opacity: 0.5;
}

.dropdown.disabled .dropdown-toggle {
  cursor: not-allowed;
  pointer-events: none;
}

.dropdown-scroll::-webkit-scrollbar {
  width: 6px;
  height: 2px;
  border-radius: 10px;
}
.dropdown-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
.dropdown-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  outline: none;
  border-radius: 10px;
  border: 3px solid transparent;
  transition: all 0.5s;
}
/* offcanvas */
/* wrapper to scope everything */
.offcanvas-cst-wrapper {
  position: relative;
}

/* the panel itself */
.offcanvas-cst-wrapper .offcanvas-sider {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 540px;
  height: 100%;
  border: 1px solid rgba(3, 3, 3, 0.2);
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  z-index: 1050;
  overflow-y: auto;
  @media (max-width: 575px) {
    right: 0;
    max-width: 100%;
    height: fit-content;
    top: unset;
    bottom: -100%;
    transition: bottom 0.3s ease;
    left: 0;
    border-radius: 10px 10px 0px 0px;
    overflow: visible;
  }
  opacity: 0;
  visibility: hidden;
}

.offcanvas-cst-wrapper .offcanvas-sider.show {
  right: 0;
  opacity: 1;
  visibility: visible;
  @media (max-width: 575px) {
    bottom: 0;
  }
}

.offcanvas-cst-wrapper .offcanvas-close {
  position: absolute;
  top: 18px;
  right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  font-weight: 600;
}
.border-black-20 {
  border-color: rgb(3, 3, 3, 0.2) !important;
}
.offcanvas-cst-wrapper .offcanvas-body {
  padding: 30px;
  @media (max-width: 575px) {
    overflow: auto;
    max-height: 80dvh;
    padding: 20px;
  }
}
.offcanvas-cst-wrapper .offcanvas-close {
  color: #030303;
}
@media (max-width: 575px) {
  .offcanvas-cst-wrapper .offcanvas-close {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    position: absolute;
    top: -66px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    border-radius: 10px;
    background: #fff;
    box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.2);
    &:hover {
      opacity: 0.9;
    }
  }
}
.offcanvas-cst-wrapper .offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1040;
}
.d-grid-cst {
  display: grid;
}
.offcanvas-cst-wrapper .offcanvas-overlay.show {
  opacity: 1;
  visibility: visible;
}

.checkout-page-tabs-radio {
  .custom-radio-card {
    border: 1px solid rgba(3, 3, 3, 0.2);
    border-radius: 10px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: border 0.2s ease-in-out;
  }

  input[type="radio"] {
    display: none;
  }

  .custom-radio-card .icon {
    font-size: 20px;
  }

  .custom-radio-card:hover {
    border-color: #030303;
  }
  label.disabled .custom-radio-card {
    background-color: #f5f5f5;
    border-color: #ddd;
    opacity: 0.5;
    pointer-events: none;
  }
  input[type="radio"]:checked + .custom-radio-card {
  }
}
.custom-tooltip .tooltip-inner {
  text-align: left;
  padding: 10px 20px;
  color: #030303;
  font-family: "Nunito Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.072px;
}

.custom-tooltip .tooltip-inner strong {
  font-weight: 700;
}
.specific-step-none {
  display: none !important;
  @media (min-width: 768px) {
    display: none !important;
  }
  @media (min-width: 992px) {
    display: none !important;
  }
}
.text-desc-light{
  color: rgb(3, 3, 3, 0.4) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.loader-cst {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.6);
  z-index: 9999;
}
.loader-cst svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-cst svg polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-cst svg polyline#back {
  fill: none;
  stroke: #e2c77579;
}

.loader-cst svg polyline#front {
  fill: none;
  stroke: #f0ce64;
  stroke-dasharray: 48, 144;
  stroke-dashoffset: 192;
  animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
  72.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.sell-modal-design {
  .modal-dialog {
    max-width: 655px;
    &.md-size-modal {
      max-width: 500px;
    }
  }
  .modal-content {
    border-radius: 10px;
    background: #fff;
    box-shadow: 16px 16px 24px 0px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border: 0;
    @media (max-width: 767px) {
      padding: 16px;
    }
  }
  .modal-header {
    padding: 0 16px 20px 16px;
    border: 0;
  }
  .modal-header .close {
    height: 24px;
    width: 24px;
    padding: 0;
    font-size: 30px;
    font-weight: 300;
    color: #030303;
    margin: 0;
    opacity: 1;
    &:hover {
      opacity: 0.8;
    }
  }
  @media (max-width: 767px) {
    padding-right: 16px !important;
    padding-left: 16px !important;
    .modal-dialog {
      margin: 0 !important;
      align-items: end;
      min-height: 100%;
      max-width: 100%;
      &.md-size-modal {
        max-width: 100%;
      }
    }
    .modal-header .close {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 50px;
      width: 50px;
      position: absolute;
      top: -66px;
      left: 50%;
      transform: translateX(-50%);
      background: none;
      border: none;
      font-size: 26px;
      cursor: pointer;
      border-radius: 10px;
      background: #fff;
      box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.2);
      font-weight: 500;
    }
    .modal-content {
      border-radius: 10px 10px 0px 0px;
    }
    .branch-address-items:last-of-type {
      border: none !important;
    }
  }
}
.input-cst {
  border-radius: 10px !important;
  border: 1px solid rgba(3, 3, 3, 0.2) !important;
  padding: 10px 16px !important;
  color: #030303 !important;
  font-family: "Nunito Sans" !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  min-height: 56px;
  &::placeholder {
    color: rgba(3, 3, 3, 0.6) !important;
  }
  &:hover {
    border: 1px solid #030303 !important;
  }
  &:focus,
  &:focus-visible {
    border: 1px solid rgba(3, 3, 3, 0.2) !important;
    box-shadow: 0px 0px 11px 0px rgba(202, 169, 106, 0.8) !important;
  }
  &.pr-56 {
    padding-right: 56px !important;
  }
  &.hover-disabled{
    &:hover {
      border: 1px solid rgba(3, 3, 3, 0.2) !important
    }
  }
  &.focus-disabled{
    &:focus,
    &:focus-visible {
      border: 1px solid #000 !important;
      box-shadow: none !important;
    }
  }
  &.image-icon-padding{
    padding-left: 46px !important;
  }
}
.common-input-radio {
  .label-radio-tag-cst {
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid rgba(3, 3, 3, 0.2);
    color: #030303;
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .label-radio-tag-cst.not-available {
    border-radius: 10px;
    background: rgba(3, 3, 3, 0.1);
    color: rgb(3, 3, 3, 0.5);
    cursor: not-allowed;
    border: 0;
  }
  input[type="radio"]:checked + .label-radio-tag-cst {
    background-color: black !important;
    color: white;
    border-color: black;
  }
  .label-radio-cst {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pb-md-max-3{
    padding-bottom: 16px !important;
  }
}