@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");

:root {
  /* color */
  /* --primary: #000; */
   --primary: #fae2be;
  --gray: #dadada;
  --lightgray: #f4f4f4;
  --white: #fff;
  /* --f8gray: #f8f8f8; */
  --f8gray: #faf6f0;
  --textcolor:#000;

  /* font */
  --primary-font: "Montserrat";
  --font-100: 100;
  --font-200: 200;
  --font-300: 300;
  --font-400: 400;
  --font-500: 500;
  --font-600: 600;
  --font-700: 700;
  --font-800: 800;
  --font-900: 900;
  --font-bold: bold;

  /* bg color */
  --bg-color-1: #fefcf8;
  --bg-color-2: #ddd;
  --white: #fff;
  --black: #000;
  --text-1: #555;
  /* font */
  --primary-font: "Montserrat";

  /* -- shadow --- */
  --shadow-1: 0 0 8px #ddd;
  --shadow-2: 0px 0px 15px #b5b5b5;
  --shadow-3: 0px 0px 20px 0px #00000033;

  /* ---- border ---- */
  --border-light: 1px solid #d8d8d8;
  --border-light-1: 1px solid #dddddd;
  /* font-weight */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  /* radius */
  --rounded-5: 5px;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-weight: normal;
  font-size: 16px;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--textcolor);
  /* color: var(--primary); */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--primary-font);
  font-weight: 500;
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--primary-font);
  outline: none;
  box-shadow: none;
}

.btn {
  border-radius: 0 !important;

  &:focus {
    box-shadow: none;
  }
}

.btn-dark {
  background: var(--primary);
  border-radius: 0;
  border-color: var(--primary );
}

@media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}

/*  start main css */

/* ----------------- step-wiz-wrapper ------------------- */

.step-wiz-wrapper { 
	padding: 50px 0; 
}

.step-wizard {
  height: 60px;
}

.step-wizard {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-wizard .step-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 33.33%;
  position: relative;
  height: 100%;
   border: 1px solid var(--textcolor);
  /* border: 1px solid var(--gray); */

  &::before,
  &::after {
    /* left: 100%; */
    left: 100%;
    top: 50%;
    border: solid transparent;
    border-top-width: medium;
    border-top-color: transparent;
    border-right-width: medium;
    border-right-color: transparent;
    border-bottom-width: medium;
    border-bottom-color: transparent;
    border-left-width: medium;
    border-left-color: transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    z-index: 9;
  }

  &:not(:last-of-type)::after {
    border-width: 30px;
    margin-top: -30px;
    border-color: transparent;
    border-left-color: transparent;
    border-left-color: #fff;
  }

  &:not(:last-of-type)::before {
    border-color: transparent;
    border-left-color: transparent;
    /* border-left-color: #c1c1c1; */
    border-left-color: var(--primary);
    border-width: 18px;
    margin-top: -18px;
    border-width: 31px;
    margin-top: -31px;
  }

  &:last-child::before,
  &:last-child::after {
    display: none;
  }
}

.step-box.active {
  background: var(--primary);
  border-color: var(--primary);

  &:not(:last-of-type)::after {
    border-left-color: var(--primary);
  }

  .step-num {
    border-color: var(--textcolor);
    color: var(--textcolor);
  }

  .step-txt {
    color: var(--textcolor);
  }

  .step-img svg {
    fill: var(--textcolor);
  }
}

.step-box.wiz-1 {
  border-right: none;
}

.step-box.wiz-2 {
  border-right: none;
  border-left: none;
}

.step-box.wiz-3 {
  border-left: none;
}

.step-txt {
  font-size: 20px;
  font-weight: 500;
}

.step-num {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 100%;
  font-weight: bold;
   border: 2px solid var(--textcolor);
  /* border: 2px solid var(--gray); */
  position: relative;
  left: 15px;
}

.step-box.wiz-2,
.step-box.wiz-3 {
  padding-left: 30px;
}

.step-box.wiz-3 .step-img {
  padding-right: 20px;
}

/* ----------------- step-wiz-wrapper ------------------- */
.sp-diamondt-links {
  min-height: 60px;
  border-radius: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  max-width: 400px;
  width: 100%;
}

.sp-diamondt-links a {
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 50px;
  border-radius: 0;
  color: var(--textcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  svg {
    fill: var(--textcolor);
  }
}

.sp-diamondt-links a.active {
  svg {
    fill: var(--textcolor);
  }
}

.sp-diamondt-links a img {
  height: 30px;
  position: relative;
  top: -3px;
  padding-right: 7px;
}

.sp-diamondt-links a.active {
  color: var(--textcolor);
  background: var(--primary);
}

.sp-diamondt-links a svg {
  height: 30px;
  display: inline-block;
}

.sp-diamondt-links {
  /* background: var(--lightgray); */
  background: var(--f8gray);
}

.product-container .card .border-end{
border-right:1px solid var(--primary)!important;
}
/* ----------------- sp-diamond-tabs ------------------- */
.nshp-heading-wrap.only-color {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;

  .whfancy-button {
    display: flex;
    justify-content: center;
    align-items: center;

    a {
      color: var(--textcolor);
      font-size: 12px;
      font-weight: 600;
      background: #f4f4f4;
      display: inline-block;
      padding: 5px 10px;
    }

    a.active {
      background: var(--primary);
      color: #000;
    }
  }
}

.sp-diamond-filter {
  padding: 30px 0;
}

.nshp-heading-wrap.only-shape {
  display: flex; 
  justify-content: space-between;
  align-items: center;
}

.nshp-heading-wrap {
  margin-bottom: 15px;

  .nshp-heading {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--primary-font);
  }

  .other-shape {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.5;
    border-bottom: 1px solid var(--primary);

    input {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      opacity: 0;
      z-index: 9;
      cursor: pointer;
    }
  }
}

.nshp-wrap {
 display: grid;
  gap: 10px;
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));

  .nshp-box {
    display: flex;
    text-align: center;
    cursor: pointer;
    position: relative;
    flex-direction: column;

    input {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      z-index: 99;
      display: inline-block; 
      opacity: 0;
      cursor: pointer;

      &:checked~.img-bx {
        background: transparent;
        border: 1px solid var(--primary);
      }
    }

    .img-bx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
    min-height: 80px;
    background: transparent;
    border: 1px solid #ccc;

      img {
        width: auto;
        max-width: 100%;
        height: 30px;
      }

      .shape-title {
        font-size: 13px;
      }
    }
  }
}

.nshp-wrap.setting-nshp-wrap {
  grid-template-columns: repeat(10, 1fr);
}

.nshp-wrap.metal-nshp-wrap {
  grid-template-columns: repeat(7, 1fr);
}

/* custom css for range slider */
.irs--round .irs-grid-pol {
  background-color: transparent;
}

.irs--round .irs-bar {
  top: 36px;
  height: 6px;
  background-color: var(--textcolor);
  cursor: pointer;
  z-index: 2;
}

.irs--round .irs-grid-text {
  color: var(--textcolor);
  font-size: 13px;
}

.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid var(--white);
  background-color: var(--textcolor);
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 3;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: var(--textcolor);
}

/* .irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: var(--f8gray);
  color: var(--textcolor);
  border-radius: 4px;
} */
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 13px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: var(--primary);
  color: var(--textcolor);
  border-radius: 0;
}

.irs--round .irs-from::before,
.irs--round .irs-to::before,
.irs--round .irs-single::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  display: none;
}



.irs--round .irs-line {
  top: 36px;
  height: 45px;
  background-color: transparent;
  border-radius: 4px;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    height: 6px;
    width: 100%;
    background: #dee4ec;
    border-radius: 6px;
    cursor: pointer;
  }
}

.irs-grid-text {
  top: 100%;
}

.filt-wrapmbx {
  margin: 0 0 30px;
}

.range_inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;

  input {
    max-width: 80px;
    height: 26px;
    border: 1px solid var(--primary);
    padding: 0 10px;
  }

  .range_ingroup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* z-index: 99; */

    span {
      background: var(--primary);
      height: 26px;
      padding: 0 7px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* border: 1px solid #bdbdbd; */
          border: 1px solid var(--primary);
      position: relative;
      right: -5px;
    }
  }
}

.accordion.advance-accordion {
  background: transparent;
  color: var(--primary);
  --bs-accordion-active-color: var(--primary);
  --bs-accordion-btn-focus-border-color: #fff;
  --bs-accordion-active-bg: #fff;

  .accordion-item {
    border: 0;

    .accordion-header {
      text-align: center;
      margin: 0 auto;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;

      .accordion-button {
        box-shadow: none;
        position: relative;
        display: inline-block;
        width: auto;
        background: var(--white);
        z-index: 1;
        padding-right: 50px;

        &::after {
          content: "";
          background-image: var(--bs-accordion-btn-icon);
          right: 20px;
          position: absolute;
        }
      }

      &::after {
        content: "";
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%;
        z-index: 0;
        background: radial-gradient(ellipse at center, #000 0%, #fff 100%);
      }
    }
  }
}
.advance-accordion .accordion-button:not(.collapsed) {
    color: #000;
}

.adv-button {
  span {
    padding-left: 5px;
    font-size: 18px;
  }

  .minus {
    display: none;
  }
}

.adv-button.adv-btn-show {
  .minus {
    display: inline-flex;
  }

  .plus {
    display: none;
  }
}

/* custom css for range slider */
.lab-list {
  display: flex;
  align-items: center;
  overflow: hidden;
  list-style: none;
  justify-content: space-between;
  position: relative;
  margin: 0;
  justify-content: flex-start;
  gap: 15px;

  .lab-box {
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 50px;
    min-width: auto;
    white-space: nowrap;

    input {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      z-index: 1;
      display: inline-block;
      opacity: 0;
      cursor: pointer;
    }

    .filt-value-bx {
      padding: 5px 10px;
      border-radius: 0;
      border: 1px solid var(--primary);
      font-size: 14px;
      font-weight: 500;
    }

    input:checked+.filt-value-bx {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--textcolor);
    }
  }
}

.search-box {
  position: relative;
  word-wrap: normal;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;

  img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }

  input {
    min-width: 350px;
    height: 40px;
    padding: 0 15px 0 40px;
  }

  .btn-dark {
    height: 40px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    color:var(--textcolor);
  }
}

/*  filter baar */
.sorting-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  /* background: #f4f4f4; */
   background: var(--f8gray);
  margin: 30px 0; 
  padding: 0 20px;

  .tstone-bx {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
     color: #000;
    /* color: #7c7c7c; */
  }


  .reset-bx {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #000;
    display: flex;
    align-items: center;
    gap: 3px;
    border-bottom: 1px solid #000;
    cursor: pointer;
  }

  .view-bx {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;

    .view-opt {
      display: flex;
      justify-content: center;    
      align-items: center; 
      gap: 15px;
      font-size: 18px;
      font-weight: 500;
      color: #000; 

      .sort-icons {
        display: flex;
        align-items: center;
        gap: 7px;
        position: relative; 
        top: 1px;
        cursor: pointer;

        span {
          position: relative;
          top: -2px;
          color: #bfbfbf;
        }

        i {
          color: #bfbfbf;
        }

        i.active {
          color: var(--primary);
        }
      }
    }

    .sort-container {
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 16px;

      label {
        font-weight: 500;
        color: #000;
        margin: 0;
      } 

      .sort-dropdown-wrapper {
        position: relative;
        background-color: var(--f8gray);
        /* background-color: #f4f4f4; */

        &::after {
          content: "\ea4e";
          font-family: "remixicon";
          position: absolute;
          right: 5px;
          top: 50%;
          transform: translateY(-50%);
          pointer-events: none;
          font-size: 20px;
          color: #333;
        }
      }

      .sort-dropdown {
        width: 100%;
        padding: 0 30px 0 0;
        font-size: 14px;
        border: none;
        background: transparent;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        color: #000; 

      }


    }
  }
}

.sorting-filter {
  & .view-bx.setting-view-bx { 
    & .sortings-bx {
      &::before {
        all: inherit; 
      }
    }
  }
}



.color-mobfiltwrapper .whfancy-button {
  margin: 0 auto;
}

.nshp-heading-wrap.only-fci {
  text-align: left;
}

/*  filter baar */
/*  start mobile filter */
.mobile-filter {
  padding: 0px 0 20px;

  .filtermob-button {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
    margin:10px 0;

    a {
      font-size: 10px;
      font-weight: 500;
      text-align: center;
      background: var(--white);
      color: var(--textcolor);
      /* border: 1px solid var(--f8gray); */
      border: 1px solid #ccc;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
}

.filtermob-button.settingft-mob {
  grid-template-columns: repeat(2, 1fr);
}

.filtermob-data .offcanvas-header {
  font-size: 16px;
  font-weight: 500;
  padding: 10px var(--bs-offcanvas-padding-x);
}

.mobfilter-heading {
  padding: 0 var(--bs-offcanvas-padding-x);
  text-align: center;

  .offcanvas-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--textcolor);
  }
}

.filtermob-data {
  & .offcanvas.offcanvas-bottom {
    --bs-offcanvas-height: auto;
  }

  & .nshp-wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobfilter-view {
    font-size: 16px;
    font-weight: 500;
    min-height: 50px;
    color: #000;
  }
}

.filt-wrapmbx.mobile-filt-wrapmbx {
  margin: 0 0 20px;
}
.mobfilter-reset i.fa {
    font-family: 'FontAwesome';
}
.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
    font-family: 'FontAwesome';
}
.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
    font-family: 'FontAwesome';
}
.fa-list-dots:before, .fa-list-ul:before {
    content: "\f0ca";
    font-family: 'FontAwesome';
}
i.fa{
  font-family: 'FontAwesome';
}
button#search_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            letter-spacing: 1px;;
}

/*  end mobile filter */

/*  start tarun */
/*  diamond list */
.diamond-list-table {
  display: flex;
  flex-direction: column;
  width: 100%;

  & .table-header {
    display: flex;
    background: #dedede;
    font-size: 16px;
    font-weight: 500;

    & div {
      flex: 1;
      position: relative;
      padding: 10px;

      &:not(:first-child) {
        text-align: center;
      }

      &:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        height: 23px;
        width: 1px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.1);
        transform: translateY(-50%);
      }
    }
  }

  & .table-row {
    display: flex;
    text-decoration: none;
    color: inherit;

    & div {
      flex: 1;
      font-size: 15px;
      padding: 10px;

      &:not(:first-child) {
        text-align: center;
      }
    }

    &:hover {
      background-color: #dedede !important;
    }

    &:nth-child(odd) {
      background-color: rgba(222, 222, 222, 0.2);
    }
  }
}

/*  end diamond list */
/* commone slider dots css */
.slick-dots li {
  width: 13px !important;
  height: 2px !important;
  overflow: hidden;

  &.slick-active button:before {
    opacity: 1 !important;
    background-color: var(--primary) !important;
  }

  & button {
    width: 13px !important;
    height: 2px !important;
    padding: 0 !important;

    &::before {
      width: 13px !important;
      height: 2px !important;
      background-color: var(--primary) !important;
      opacity: 0.25;
    }
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/*  start grid view */
.grid-card .text a {
    font-family: inherit;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-weight:inherit;
}
.grid-card .text h5{
  font-family: inherit;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-weight:inherit;
}

.grid-card {
  margin-bottom: 28px;

  a {
    /* color: var(--primary); */
    color: var(--textcolor);
    
  }

  & .card {
    border-radius: 0;
    /* border: 0; */
    background: transparent;
    border: 1px solid var( --primary);
    /* border: 1px solid #000; */
    height: 100%;

    & .btn-heart {
      width: 30px;
      height: 30px;
      top: 16px;
      right: 16px;
      z-index: 9;

      & svg {
        width: 15px;
      }
    }

    & .card-body {
      padding: 15px;

      & .text {
        margin-bottom: 20px;

        & h5 {
          font-size: 16px !important;
          /* font-weight: var(--fw-600); */
          min-height: 60px;
          text-align: center;
        }

        & p {
          font-size: 16px;
          font-weight: var(--fw-500);
        }
      }

      & .details {
        margin-bottom: 20px;

        & p {
          font-size: 12px;
          line-height: 12px;
          /* font-weight: var(--fw-600); */
          margin-bottom: 0px;
        }

        & span {
          font-size: 10px;
        }
      }

      & .btn-group {
        gap: 15px;

        & .btn {
          padding-right: 6px;
          padding-left: 6px;

          & svg {
            height: 12px;
          }
        }
      }
    }
  }

}

.settingpro-description h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: inherit;
  overflow: hidden;
}

.pro-description .btn {
  height: 40px;
  font-weight: 500;
  font-size: 14px;
}

.btn-outline-light {
  border-color: var(--textcolor);
  background: transparent;
  color: var(--textcolor);
  height: 50px;
  border-radius: 0;

  &:active,
  &:hover {
    background: var(--primary) !important;
    border: 1px solid var(--primary);
    color: var(--textcolor) !important;
  }
}

.btn-heart {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  stroke: var(--primary);

  & svg {
    height: 16px;
    width: 16px;
  }

  &:hover,
  &:hover svg,
  &:active svg,
  &:active {
    stroke: var(--white) !important;
    background: var(--primary) !important;
    fill: var(--white) !important;
  }
}

.btn-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: var(--border-light);

  & img {
    height: -webkit-fill-available;
    max-height: 100%;
  }

  &:hover {
    border-color: var(--black);
  }
}

.divider {
  width: 100%;
  height: 1px;
  /* background: #000; */
  background: var(--primary);
  margin: 20px 0;
}

.ring-card {
  border-radius: 0;
  border: 0;
   background: var(--f8gray);
  /* background: #f6f6f9; */

  & .card-body {
    padding: 20px;
  }
}

/*  end grid view */

body ul {
  margin: 0;
  padding: 0;
}

.fw-600 {
  font-weight: var(--fw-600) !important;
}

.gap-1 {
  gap: 5px !important;
}

.gap-20 {
  gap: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.primary-text {
  color: var(--primary);
}

.text-grey {
  color: #8f8f8f;
}

.opcity-7 {
  opacity: 0.7;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  max-height: 3em;
  line-height: 1.5em;
}

.para-1 {
  font-size: 18px;
  font-weight: var(--fw-400);
}

.para-2 {
  font-size: 16px;
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.para-3 {
  font-size: 15px;
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.para-4 {
  font-size: 14px;
  font-weight: var(--fw-400);
  line-height: 1.2;
}

.head-1 {
  font-size: 30px;
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.head-2 {
  font-size: 24px;
  line-height: 1.2;
}

.head-3 {
  font-size: 16px;
  font-weight: var(--fw-400);
  line-height: 1.2;
}

/* .head-4 {
  font-size: 18px;
  font-weight: var(--fw-500);
} */
.head-4 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.heading-2 {
  font-size: 30px;
}

.heading-3 {
  font-size: 20px;
  line-height: 1.4;
}

.mx-w-fit {
  width: max-content !important;
}

.mx-650 {
  max-width: 650px;
}

.flex-auto {
  flex: auto;
}

.ratio-1 {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cursor-pointer {
  cursor: pointer;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.form-select {
  height: 50px;
  border-radius: 0;
  font-size: 16px;
  border: 1px solid #ababab;
  cursor: pointer;

  &:focus {
    box-shadow: none;
    border-color: var(--primary);
  }
}

.btn-none {
  color: var(--primary);
  font-size: 18px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  font-weight: var(--fw-500);
  letter-spacing: 1px;
}

.btn {
  font-size: 16px;
  height: 50px;
  font-weight: var(--fw-500);
  border-radius: 0;
  line-height: 1;
  letter-spacing: 1px;
  /* font-weight: 600; */
}

.btn-light {
  background: #efefef;
  font-size: 16px;
  font-weight: var(--fw-600);
}

.btn-primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--textcolor);

  &:active,
  &:hover {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--textcolor);
    opacity: 0.7;
  }
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--textcolor);

  &:active,
  &:hover {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color:var(--textcolor);
  }
}
a:hover {
    color: var(--textcolor)!important;
}

/*

/* Detail material button */
.search-box .btn-dark:hover{
background-color: var(--primary);
border-color:var(--primary);
color: var(--textcolor);
}
.btn.btn-dark:hover{
background-color: var(--primary)!important;
color: var(--textcolor)!important;
border-color:var(--primary);
}
.product-detail-content > div {
    border-bottom: 1px solid #efefef;
    padding: 10px 0;
     color: #000;
}
.product-detail-content > div p{
  margin:0;
  color: #000;
}

#material_div > .row .col-6 select#style{
  overflow: hidden !important;
    text-overflow: ellipsis;
    white-space: wrap;
}
#material_div .nshp-wrap .nshp-box .img-bx {
            border: 1px solid transparent;
        }
#material_div .nshp-wrap .nshp-box  input:checked ~ .img-bx {
                background: transparent;
                border: 1px solid var(--primary);   
    
}

/* quick modal css */
.modal.quick_Pro_Modal .modal-dialog {
    /* transform: translate(0,50%); */
-webkit-transform: none;
    -ms-transform: none;
    transform: none;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
}
.quick_Pro_Modal .modal-dialog {
    max-width: 600px;
}
.product-img-wrap img {
    width: 100%;
}
.quick_Pro_Modal .product-detail-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-detail-content h2{
    overflow: hidden;
    font-size: 24px;
    color: #000;
}
.quick_Pro_Modal .modal-content .btn {
    min-width: 155px;
    line-height: 36px;
    color: var(--textcolor);
    opacity: 1;
}

.quick-btn-detail {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.quick_Pro_Modal .modal-content .btn svg{
  color: var(--textcolor);
  margin-right:8px;
}
.quick_Pro_Modal .modal-content .btn:hover{
  color: var(--textcolor);
}
.quick_Pro_Modal .modal-content .btn:hover svg{
  fill:var(--textcolor);
}
.quick_Pro_Modal .modal-content .btn svg {
    width: 20px;
}

/*  end tarun */

.list-view,
.grid-view {
  display: none;
}

.grid-view.active,
.list-view.active {
  display: block;
}

.slider-main-image.slick-slider .slick-track,
.slider-main-image.slick-slider .slick-list {
  width: 100% !important;
}

.detail-subhead {
  font-size: 18px;
  font-weight: 400;

  span {
    font-weight: 500;
  }
}

.slider-thumbnails .slick-prev {
    left: 0;
    top: auto;
    bottom: 0;
    transform: rotate(-90deg);
}
.slider-thumbnails .slick-next {
    right: 0;
    top: 0;
    bottom: auto;
    transform: rotate(-90deg);
}
.slider-thumbnails .slick-prev,.slider-thumbnails  .slick-next {
    padding: 10px;
    color: #ccc;
    border: 1px solid #ccc;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    width: 35px;
    height: 35px;
}
.slider-thumbnails .slick-prev:before,.slider-thumbnails .slick-next:before {
    color: #000;
    line-height: 1.2;
    font-size: 16px;
   
}

.select-ring-sizes .form-select {
  width: 150px;
}

.sub-head-block {
  margin-bottom: 20px;
}


/*  shape wizard new css */
.step-wiz-wrapper .col-12 {
  position: relative;
}

.diamond_popup {
  position: absolute;
  top: 100%;
  /* background-color: #f4f4f4; */
  /* border: 1px solid #dadada; */
  transition: all 0.4s;
  width: 32.5%;
  display: none; 
  z-index: 999;
  background-color: var(--f8gray);
  border: 1px solid var(--f8gray);
}


.diamond_popup.second_box {
  left: 33.80%
}

.diamond_item_info {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px 0;
}

.diamond_img_with_title {
  text-align: left;
  display: flex;
  gap: 10px;
}

.item_name,
.diamond_item_price h3 {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 0;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.diamond_compare_price {
  text-decoration: line-through;
}

.diamond_img img {
  border: 1px solid #c1c1c1;
  margin-right: 5px;
  object-fit: cover;
  width: 54px;
}

.item_metal,
.diamond_compare_price {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 0;
  color: #000;
  font-weight: 400;
}

.diamond_btn_group {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  padding: 0 15px 15px;
}

.diamond_btn_group a {
  /* background-color: #0d0900; */
   background-color: var(--primary);
  font-size: 14px;
  letter-spacing: .3px;
  text-transform: capitalize;
  height: 36px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.diamond_title {
  padding-right: 15px;
}

.diamond_text_muted {
  text-align: right;
  font-size: 13px;
  margin: 0;
}

.diamond_btn_group .btn_outline {
  background-color: transparent;
  color: #000;
  transition: all 0.4s;
  border: 1px solid;
}
.diamond_btn_group .btn_outline:hover {
  transition: all 0.4s;
  background: #000;
  color: #fff!important;
}
.btn_outline:hover {
  transition: all 0.4s;
  background: #000;
  color: #fff;
}

/*  shape wizard new css */

.setting-box-slider-wrapper .nshp-box {
  position: relative;
  text-align: center;
}

.setting-box-slider-wrapper .nshp-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.setting-box-slider-wrapper .nshp-box label {
  padding: 3px;
  border: 1px solid #FFF;
}

.setting-box-slider-wrapper .nshp-box label img {
  width: 30px;
  height: 30px;
}

.setting-box-slider-wrapper .nshp-box input:checked+label {
  border-color: #000;
  border-radius: 100%;
}

.setting-box-slider-wrapper .slick-prev:before,
.setting-box-slider-wrapper .slick-next:before {
  display: none;
}

.setting-box-slider-wrapper .slick-arrow svg {
  color: #000;
}

.setting-box-slider-wrapper .slick-next {
  right: -15px;
}

.setting-box-slider-wrapper .slick-prev {
  left: -15px;
}

.setting-box-shape-slider-wrapper .nshp-box label img {
  padding: 3px;
}

.setting-box-shape-slider-wrapper {
  margin-bottom: 20px;
}


.sr-sharebar.sr-sb-bottom {
    z-index: 99!important;
}
@media only screen and (max-width: 1280px) {
  .setting-box-slider-wrapper .nshp-box label {
    padding: 2px;
  }

  .setting-box-slider-wrapper .nshp-box label img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    padding: 1px;
  }

  .setting-box-shape-slider-wrapper .nshp-box label img {
    padding: 4px !important;
  }

  .grid-card .card .card-body .text h5 {
    font-size: 14px !important;
    /* font-weight: var(--fw-600); */
  }
}

@media only screen and (max-width: 600px) {
  .grid-card .card .card-body .text h5 {
    font-size: 12px !important;
  }
}