@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
:root {
  --primary-color: #562c83;
  --primary-light: #552b82;
  --secondry-color: #f9b72b;
  --white-color: #ffffff;
  --success-color: #14ae5c;
  --black-color: #000000;
  --bg-color: #f5f5f5;
  --black-var2: #2c2c2c;
  --white-var2: #faf5ff;
  --white-var3: #d6d6d6;
  --grey: #f6edff;
  --secondary-hover : #ffad00;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}
ul,
li {
  padding: 0 !important;
  margin: 0 !important;
}
a {
  text-decoration: none !important;
}
p {
    word-break: break-word;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/*body {
  background-color: var(--bg-color);
}*/
textarea:focus,
input:focus,
select:focus {
  outline: none;
}
/* Header section starts  */
header {
  border-bottom: 1px solid var(--white-var3) !important;
}
header.sticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
}
.header-sec {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0 22px;
  align-items: center;
}
.header-sec .search-products {
    display: none;
}
.toggle-container {
  display: none;
}
.toggle-container .toggle-cart-btn,
.toggle-container .toggle-sidebar-btn {
  display: none !important;
}
.header-sec .toggle-container button {
  border: none;
  background: transparent;
  padding-top: 5px;
}
.toggle-sidebar-btn img {
  width: 20px;
  height: 25px;
}
.toggle-cart-btn img {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}
.brand-logo img {
  max-width: 140px;
  max-height: 50px;
}
.search-products {
  position: relative;
}
.search-products input {
  border: 0.5px solid rgb(0 0 0 / 40%);
  border-radius: 23px;
  padding: 8px 30px 8px 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgb(0 0 0 / 60%);
  background-color: transparent;
}
.search-products input::placeholder {
  color: rgb(0 0 0 / 60%) !important;
}
.search-products img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  position: absolute;
  top: 15px;
  left: 25px;
}
.search-icon {
  display: none;
}
.contact-us ul {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.mail-icon img {
  width: 26px;
  height: 20px;
  object-fit: contain;
}
a.phn-icon {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--primary-color);
}
.phn-icon img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  object-fit: contain;
}
/* Dashboard main sec */
.main-sec {
  display: flex;
}
.sidebar-sec {
    flex: 0 0 300px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 75px 24px 0 30px;
    position: fixed;
    left: 0;
    top: 75px;
    height: 100vh;
    overflow-y: scroll;
    z-index: 100;
    padding-bottom: 70px;
}
.sidebar-sec::-webkit-scrollbar-track,
.checkout-sec::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.sidebar-sec::-webkit-scrollbar,
.checkout-sec::-webkit-scrollbar
{
  width: 5px;
  background-color: #F5F5F5;
}

.sidebar-sec::-webkit-scrollbar-thumb,
.checkout-sec::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #562c8391;
}

  .collection-list .accordion-button.collapsed::after{
    background-image: url('../../assets/images/accordianClose.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 12px;
    height: 16px;
    background-position: center;
  }
.collection-list .accordion-button:not(.collapsed)::after {
   background-image: url('../../assets/images/accordianClose.png') !important;
    transform: rotate(180deg) !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 12px;
    height: 16px;
    background-position: center;
}
.center-sec {
  flex: 1;
  background-color: var(--white-color);
  padding: 20px 30px 50px;
  margin-left: 300px;
  margin-right: 350px;
  width: 100%;
}
.checkout-sec {
  flex: 0 0 328px;
  max-width: 328px;
  background: var(--white-color);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.170509);
  position: fixed;
    right: 0;
    top: 82px;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
  padding: 60px 13px 0;
}
.checkout-container .checkout-sec {
    position: unset;
}
.sidebar-sec .search-products input {
  border: 0.5px solid var(--white-color);
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
}
.sidebar-sec .search-products input::placeholder {
  color: rgb(255 255 255 / 60%) !important;
}
.sidebar-sec h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  margin-top: 36px;
  margin-bottom: 0 !important;
}
.collection-list h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 17px;
  margin-top: 50px;
  margin-bottom: 0 !important;
}
.collection-list .accordion {
  margin-top: 37px;
  --bs-accordion-btn-icon-transform: rotate(0) !important;
  --bs-accordion-btn-icon-width: 12px !important;
  --bs-accordion-btn-focus-box-shadow: none !important;
}
.collection-list .accordion-button {
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 18px !important;
  color: white !important;
  background-color: transparent !important;
  border: none !important;
  display: flex;
  justify-content: space-between;
  padding: 0 30px 0 0 !important;
}
.collection-list .accordion-button span {
  border: 1px solid var(--white-color);
  border-radius: 17.5px;
  padding: 4px 14px;
  font-size: 12px;
}
.collection-list .accordion-item {
  color: var(--white-color) !important;
  background-color: transparent !important;
  border: none !important;
  margin-bottom: 24px !important;
}

.collection-list .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}
.collection-list
  .accordion-item:nth-child(1)
  .accordion-button.collapsed::after,
.collection-list
  .accordion-item:nth-child(1)
  .accordion-button:not(.collapsed)::after {
  background: none !important;
}
.collection-list .accordion-body {
  padding-bottom: 0 !important;
}
.collection-item-list {
  list-style: none;
}
.collection-item-list li {
  margin: 0 0 20px 0 !important;
}
.collection-item-list li a {
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.collection-item-list li a span {
  border: 1px solid var(--white-color);
  border-radius: 17.5px;
  padding: 4px 14px;
  font-size: 12px;
}
.collection-list
  .accordion
  .accordion-item:last-child
  .accordion-body
  .collection-item-list {
  border-bottom: 1px solid var(--white-color);
}
/* center sec style  */
.main-header-sec h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 37px;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.main-header-sec p {
  margin: 0 auto !important;
  text-align: center;
  max-width: 750px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgb(0 0 0 / 60%);
}
/* stepper sec  */
.stepper-sec {
  margin-top: 35px;
  border-bottom: 1px solid var(--white-var3);
  padding: 0 80px 25px;
}
.stepper-steps {
  display: flex;
  max-width: 82%;
  align-items: center;
  margin: auto;
}
.step1 {
  content: "";
  background-color: var(--secondry-color);
  flex: 0 0 25%;
  width: 100%;
  height: 6px;
  position: relative;
}
.step1::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--secondry-color);
  position: absolute;
  top: -9px;
  left: -1px;
  border-radius: 50%;
}
.step2 {
  content: "";
  background: var(--secondry-color);
  flex: 0 0 50%;
  width: 100%;
  height: 6px;
  position: relative;
}
.step2::after {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--secondry-color);
  position: absolute;
  top: -9px;
  left: 50%;
  border-radius: 50%;
}
.step3 {
  content: "";
  background: var(--secondry-color);
  flex: 0 0 25%;
  width: 100%;
  height: 6px;
  position: relative;
}
.step3::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--secondry-color);
  position: absolute;
  right: -1px;
  top: -9px;
  border-radius: 50%;
}
.step1.btn-active:after,
.step2.btn-active:after,
.step3.btn-active:before {
  background: var(--primary-color) !important;
}
/* stepper buttons  */
.stepper-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}
.stepper-sec.fixed_qnt .stepper-btn {
    margin-top: 20px;
    transform: scale(0.88);
}
.stepper-btn button {
  background: var(--secondry-color);
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--white-color);
  padding: 11px 60px 12px;
  border: none;
}
.btn-active {
  background: var(--primary-color) !important;
}
/* Select quantity sec  */
.select-quant-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 40px 80px 0;
}
.select-quant-sec h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--black-color);
  max-width: 150px;
  margin: 0;
}
.quant-no {
  display: flex;
  list-style: none;
  gap: 30px;
}

.quant-no li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.quant-no li input[type="radio"] {
    background-color: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    padding-top: 14px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
}
.quant-no li span {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: var(--primary-color);
    padding-top: 14px;
    border: 1.525px solid var(--secondry-color);
    background-color: transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
     position: absolute;
    top: 0;
    left: 0;
}

/* active class for quantity */
.quant-no li input:checked + span {
  border: 1.525px solid var(--primary-color);
  color: var(--white-color);
  background-color: var(--primary-color);
}
.select-quant-sec p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--black-color);
}
.select-quant-sec input[type="number"] {
  border: 1px solid var(--secondry-color);
  border-radius: 8px;
  padding: 10px 20px;
}
.select-quant-sec input[type="number"]::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--primary-color);
  padding: 0;
}
.select-quant-sec input[type="number"]::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* .select-quant-sec input:focus {
    border: 1.74286px solid var(--secondry-color);
} */

.manual_quantity_btn img {
    width: 20px;
    height: 20px;
    filter: none;
}

/* Product cart sec  */
.product-cart-sec h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 43px;
  color: var(--primary-color);
  margin: 30px 0;
}
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
/*  background: var(--white-var2);*/
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.135216);
  border-radius: 6px;
  flex: 0 0 calc(100% / 4 - 15px);
  border: 1px solid #0000002e;
  cursor: pointer;
}
.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
}
.product-details {
    padding: 16px 11px 10px 17px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    flex-grow: 1;
    border-radius: 0 0 6px 6px;
}
.product-details h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    color: var(--black-var2);
    margin-bottom: 0;
    flex-grow: 1;
}
.product-details p {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: var(--black-var2);
  max-width: 215px;
  margin-bottom: 0;
}
.product-action-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-action-price h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--black-var2);
  margin: 0;
}
.product-action-price button {
  border-radius: 6px 0px 6px;
  border: none;
  width: 43px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-action-price button:hover {
 background-color: #ffc710;
}
.add-pro-btn {
  background: var(--secondry-color);
}
.add-pro-btn .img2 {
  display: none;
}
.product-action-price button img {
  width: 15px;
  height: 15px;
}
/* On hover styling */
.product-card:hover .product-details {
  background: var(--grey) !important;
}
/* On add btn clicked */
.cart-show {
  background: var(--success-color);
}

/* Checkout sec  */
.checkout-sec h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 17px;
  color: var(--primary-color);
/*  margin: 64px 0 0;*/
}
.checkout-img {
  max-width: 328px;
  max-height: 235px;
}
.checkout-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.product-list .pro-img {
 /* background-color: var(--bg-color);*/
/*  padding: 20px 12px;*/
  margin-right: 15px;
  flex: 0 0 45px;
}
.product-list .pro-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.pro-details {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.pro-details > div:first-child {
/*    flex-grow: 1;*/
    flex: 0 0 85%;
}
.pro-details h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #111111;
  margin-bottom: 8px;
}
.pro-price,
.pro-color,
.pro-quant {
  display: flex;
  justify-content: space-between;
}
.pro-price,
.pro-color {
  margin-bottom: 5px;
}
.pro-price h4,
.pro-color h4,
.pro-quant h4 {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #000000;
  opacity: 0.8;
  margin: 0;
}
.pro-price h6,
.pro-color h6,
.pro-quant h6 {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  margin: 0;
  color: #000000;
  opacity: 0.6;
}
.pro-actions {
  margin-left: 10px;
}
.pro-actions button {
  border: none;
  background-color: transparent;
  width: 15px;
  height: 18px;
  box-shadow: none !important;
}
.pro-actions button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.checkout-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  border-top: 1px solid rgb(0 0 0 / 15%);
  padding: 25px 20px 150px 20px;
}
.pro-final {
  display: flex;
  justify-content: space-between;
}

.choosen_qnt input {
    max-width: 65px;
    border: 1px solid #bbb8b8;
    padding: 2px 10px;
    margin-top: -8px;
    border-radius: 7px;
    font-size: 14px;
}
.pro-final h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--black-color);
}
.basket_wpr {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}
.basket_wpr span {
    font-size: 12px;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 5px 14px;
    margin-left: 14px;
    margin-top: -5px;
}
.shipping h6 {
  font-weight: 300;
  font-size: 10px;
  margin: 0;
}
.shipping h6 img {
  margin-right: 2px;
}
.checkout-details p {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  margin: 0;
}
.btn-continue {
  background: var(--secondry-color);
  border-radius: 8px;
  border: none;
  color: var(--white-color);
  padding: 15px 0;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}
.btn-continue:hover {
  background: var(--secondary-hover);
}
/* Checkout Page styling  */
.checkout-container {
  display: flex;
  gap: 30px;
  padding-top: 50px;
}
.checkout-container .checkout-form {
  flex: 1;
}
.checkout-container .checkout-sec {
  flex: 0 0 328px;
  box-shadow: none;
  border-left: 1px solid rgb(0 0 0 / 15%);
}
.checkout-container .checkout-sec h5 {
  margin: 0;
}
.pro-items-list {
  margin-top: 25px;
}
/* Checkout form  */
.checkout-form {
  background-color: var(--white-color);
}
/* Form top */
.checkout-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.checkout-top p,
.checkout-top a {
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  color: var(--primary-color);
  margin: 0;
}
.checkout-top a {
  border: none !important;
  background: transparent;
}
.checkout-form a img {
  margin-right: 15px;
}
/* Form body */
.form-body h4 {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: var(--black-color);
  margin: 0;
}
.form-body form {
  margin: 25px auto;
}
.form-body form .label h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 14px;
  color: var(--black-color);
}
.form-body form .label p {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: rgb(0 0 0 / 60%);
  text-align: start;
}
.form-body form .input-grp {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.label {
  flex: 0 0 31%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.input-feilds {
  display: flex;
  flex: 0 0 60%;
  gap: 40px;
}
.input-container {
  position: relative;
}

.delivery-date .input-container {
  flex: 0 0 calc(100% / 2 - 50px);
}
.additional-comments .input-container {
  flex: 0 0 100%;
}
.input-container img {
  position: absolute;
  top: 15px;
  left: 25px;
}
.contact-details .input-feilds {
  flex-wrap: wrap;
  row-gap: 25px;
}
.contact-details .input-feilds .input-container {
  flex: 0 0 calc(100% / 2 - 20px);
}
.delivery-date,
.file-upload,
.contact-details,
.additional-comments {
  margin-bottom: 25px;
}
.delivery-date h5 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: rgb(0 0 0 / 40%);
}
.input-grp input,
.input-grp button,
.input-grp textarea,
.input-grp select {
  background: rgb(250 245 255 / 50%);
  border: 1px solid rgb(85 43 130 / 50%);
  border-radius: 8px;
  padding: 15px 20px 14px 55px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--primary-light);
  width: 100%;
}
.delivery-date input[type="date"]::-webkit-inner-spin-button,
.delivery-date input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
  width: 22px !important;
  height: 22px !important;
  position: absolute;
  left: 22px;
  top: 10px;

}
.delivery-date button {
  padding: 15px 25px 14px;
  flex: 0 0 calc(100% / 2 - 50px);
  text-align: start;
}
.input-grp select {
  padding: 15px 100px 14px 25px;
}
.input-grp input::-webkit-input-placeholder,
.input-grp textarea::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--primary-light);
}

.switch-btn {
 color: var(--primary-color);
 font-size: 14px;
}

.delivery-date .switch input
{
  display: none;
}

.delivery-date .switch {
    display: inline-block;
    width: 50px;
    height: 20px;
    margin: 4px 10px 4px 30px;
    transform: translateY(50%);
    position: relative;
}

.delivery-date .slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 1.5px rgb(85 43 130 / 50%), 0 0 4px rgb(85 43 130 / 50%);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: 0.2s;
}

.delivery-date .slider:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(85 43 130 / 90%);
    border-radius: 20px;
    transform: translateX(-20px);
    transition: 0.2s;
}
.delivery-date input:checked + .slider:before {
    transform: translateX(20px);
    background-color: var(--secondry-color);
    width: 56px;
    border-radius: 20px;
}

.delivery-date input:checked + .slider {
    box-shadow: 0 0 0 1.5px var(--secondry-color), 0 0 4px var(--secondry-color);
}

.file-upload input {
  opacity: 0;
}
.file-upload .input-container {
  border: 1px dashed rgb(85 43 130 / 50%);
  background: rgb(250 245 255 / 50%);
  flex: 0 0 calc(100% / 2 - 20px);
  border-radius: 8px;
}


.input-feilds.full {
  flex-direction: column;
}
.full .input-container{
  flex: 0 0 100%;
}

.file-caption-main {
    display: flex;
    width: 100%;
}

.full  .input-group-append {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.full  .input-group-append > button {
    flex: 0 0 40%;
    text-align: center;
    border-radius: 6px;
}
/*.full  .input-group-append > div {
    flex: 0 0 calc(100% - 20px);
}
*/
.file-preview {
    padding: 10px;
}

.file-upload .input-container .file-placeholder {
  position: absolute;
  top: 15px;
  left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-upload .input-container .file-placeholder img {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.cross-item{
  position: relative;
}
button.cross-icon {
    border: none !important;
    position: absolute !important;
    top: 6px !important;
    right: 6px !important;
    width: 12px !important;
    height: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.cross-icon img {
    width: 100%;
    object-fit: contain;
    height: 100%;
    position: static !important;
}
.file-upload .input-container .file-placeholder p {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--primary-light);
    margin-left: 30px;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
p.full {
    max-width: 100% !important;
}
.file-upload .input-container .file-placeholder p span {
  font-weight: 300;
  font-size: 8px;
  line-height: 14px;
  color: var(--primary-light);
  margin: 0;
  margin-left: 8px;
}
/*#file-chosen1, #file-chosen2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--success-color);
    margin-left: -3px;
    display: none;
}*/
.error {
    color: red;
    font-size: 12px;
}
.drop-down {
  -webkit-appearance: none !important;
  background-image: url("../../assets/images/select.png") !important;
  background-repeat: no-repeat !important;
  background-position-x: 90% !important;
  background-position-y: 15px !important;
  flex: 0 0 calc(100% / 2 - 20px) !important;
  cursor: pointer;
}
/*select dropdown icon*/
.drop-up {
  background-image: url("../../assets/images/selectUp.png") !important;
}
.form-action {
  border: none;
  background: var(--secondry-color);
  border-radius: 8px;
  width: 96%;
  text-align: center;
  padding: 15px 0 14px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--white-color);
  margin-top: 60px;
}
.form-action:hover {
  background-color: var(--secondary-hover);
}
.form-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  margin: 0;
  color: rgb(0 0 0 / 60%);
}
.checkout-container .checkout-details {
  border: none;
  margin: 0;
}
.checkout-container .basket-items {
  border: 0.5px solid rgb(85 43 130 / 50%);
  border-radius: 5px;
  padding: 8px;
}
.checkout-container .basket-action {
  display: flex;
  margin-left: 25px;
  flex-direction: column;
  gap: 8px;
}
.checkout-container .top-border {
  border-top: 1px solid rgb(0 0 0 / 15%);
  padding-top: 25px;
}
.checkout-container .bottom-border {
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  padding-bottom: 25px;
}

/* Product modal  */
.modal {
  --bs-modal-width: 1100px !important;
}
.product-modal-card {
  display: flex;
  background: var(--white-color);
  border-radius: 22px;
  position: relative;
  padding: 20px 30px;
  justify-content: center;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08),
0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  overflow: hidden;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.product-slider {
    width: 280px;
    height: 522px;
    margin: auto;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* overflow: hidden; */
    justify-content: center;
    gap: 50px;
}
.product-slider .slider-single {
  background-color: var(--bg-color);
  width: 300px;
  height: 300px;
  position: relative;
}
.product-slider .slider-single div {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}
/*.product-slider .slider-single  .slick-slide {
    width: 100% !important;
}*/
.product-slider .slider-single div img {
    width: 94%;
    height: 94%;
    object-fit: contain;
    margin: 0 auto;
}
.slider-nav {
  max-height: 100px;
}
.owl-item.active.current {
    border: 2px solid #562c83;
}
.product-slider #sync2 div {
/*  height: 100px;*/
}
.product-slider #sync2 div img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 10px;
  background-color: var(--bg-color);
}
.product-colors .colors >  div {
    flex-shrink: 0;
}
#sync1 .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    align-items: center;
}

#sync1 .owl-nav > div 
{
    max-width: 40px;
    max-height: 40px;
    padding: 10px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 10px rgba(0 0 0 / 16%);
    transition: all 0.3s ease-in-out 0.1s;
}
#sync1 .owl-nav > div svg {
    max-height: 20px;
}
#sync1 .owl-nav > div svg path{
  stroke-width: 2px !important;
}
#sync1 .owl-nav > div:hover{
  background-color: #562c83;
  color: #fff;
}
#sync1 .owl-nav > div:hover svg path{
   stroke: #fff !important;
}


.product-slider .slick-slide.is-active img {
  border: 2px solid var(--primary-color);
  background-color: var(--white-color) !important;
}

#sync1 .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
}

#sync1 .owl-nav .owl-next {
    position: absolute;
    right: -60px;
}
/* Product description  */
.product-description {
  display: flex;
  flex-direction: column;
  flex: 0 0 46%;
}
.product-description h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 41px;
  color: var(--black-var2);
  margin: 0;
}
.product-description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgb(0 0 0 / 60%);
  margin: 15px 0 0;
}
.product-colors,
.product-price {
  display: flex;
  align-items: center;
  gap: 30px;
}
.product-colors {
  margin-top: 30px;
}
.product-colors .colors {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
}
.product-colors .colors div {
    display: flex;
    border: 2px solid var(--primary-light) !important;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    position: relative;
    box-shadow: 0 0 10px rgba(0 0 0 / 30%);
    margin: 6px;
}
.product-colors .colors div.active-radio {
    width: 40px;
    height: 40px;
}
.product-colors .colors div input {
    width: 5px;
    height: 5px;
    cursor: pointer;
}
.product-colors .colors div {
  padding: 2px;
}
.product-colors .colors div input[type="radio"]:after {
    border-radius: 50%;
    width: 21px;
    height: 21px;
    top: 5px;
    left: 5px;
    position: absolute;
    content: "";
    display: inline-block;
    visibility: visible;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.product-colors .colors input[type="radio"]:checked:after {
  width: 27px;
  height: 27px;
  top: 2px;
  left: 2px;
}
.product-colors .colors #white-color:after {
  background-color: var(--white-color);
}
.product-colors .colors #black-color:after {
  background-color: var(--black-color);
}
.product-colors .colors #green-color:after {
  background-color: var(--success-color);
}
.product-price {
  margin-top: 20px;
}
.product-colors h5,
.product-price h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  color: rgb(0 0 0 / 80%);
  margin: 0;
}
.product-price h6 {
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  color: rgb(44 44 44 / 60%);
  margin: 0;
}
.add-product {
  margin-top: 40px;
}
.add-product button {
  background: var(--secondry-color);
  border-radius: 8px;
  width: 100%;
  border: none;
  padding: 14px 0 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: var(--white-color);
}

.add-product button:hover {
  background-color: var(--secondary-hover);
}
.product-card  img {
    width: 100%;
    height: 220px;
    display: flex;
    object-fit: contain;
    border-radius: 6px 6px 0 0;
}
.product-card > div:first-child img {
    background: #fff;
}
  .product-details p {
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: var(--black-var2);
    max-width: 215px;
    margin-bottom: 0;
    display: block;
    display: -webkit-box;
    height: 3em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-colors .colors div input {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.product-colors .colors input[type="radio"]:checked:after {
    width: 27px;
    height: 27px;
    top: 2px;
    left: 2px;
    background: white;
}


.product-list .pro-img img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
/* .thumbnail .slick-track {
  width: 400px !important;
  background: red;
}

.thumbnail .slick-track .slick-slide {
  width: 100px !important;
} */
.add-pro-btn.cart-show .img1 {
  display: none;
}
.add-pro-btn.cart-show .img2 {
  display: block;
}


/* Search icon button */
.search_product_btn button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
}

.search_product_btn {
    position: relative;
}

.sub-product-list {
    flex: 0 0 100%;
    padding-left: 10px;
    margin-top: 10px;
}
.sub-product-list  h5 {
  font-size: 15px;
}
.sub-product-list div h3 {
  font-size: 12px;
}
.sub-product-list  h3 {
    margin-bottom: 5px;
    margin-top: 13px;
    margin-left: 10px;
}

/*preset gift blade*/
  .heading h4{
    font-size: 28px;
    color: #562c83;
    font-weight: 500;
    margin: 30px 0px;
  }
.preset-image{
  width: 100%;
  background-image:url('https://actionpromote.co.uk/wp-content/uploads/2023/02/action_promote_pattern.svg?id=13841'); 
  height: 200px;
  background-size: cover;
  padding: 30px;
}
.preset-heading{
  width: 100%;
  float: left;
}
.preset-image h4{
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #101828;
  display: flex;
  justify-content: center;
}
/*.product-image img{
    padding: 65px 30px 50px 30px;
}*/
.product-details-new {
    padding: 30px 40px 50px 40px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    flex-grow: 1;
    border-radius: 6px;
    margin-top: 15px;
}
.product-details-new h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 15px;
    color: var(--black-var2);
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
    margin-bottom: 5px;
}
.product-details-new p {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: var(--black-var2);
    margin-bottom: 0;
    display: block;
    display: -webkit-box;
    height: 2.6em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}
.product-details-new p span{
  font-weight: 600;
}
/*********/

/*535 product-card background-hide
add- border
box-shadow-hide
*/

/*Preset packs*/
.select-quant-sec.preset-packs-quant {
    padding: 30px 0 0;
}
.preset-packs-quant.select-quant-sec h6 {
  max-width: none !important;
}
.preset-packs-quant .quant-no {
    gap: 6px !important;
    margin-left: 15px !important;
}
.preset-packs-quant .quant-no li {
    width: 40px;
    height: 40px;
}
.preset-packs-quant .quant-no li input[type="radio"] {
    width: 40px;
    height: 40px;
}
.preset-packs-quant .quant-no li span {
    width: 40px;
    height: 40px;
    padding-top: 9px;
}

.prd_hm_sec .product-cards .product-card {
    border: 0;
    border-radius: 6px;
}
.btn-continue[disabled]{
    background: #ac9f9f;
    cursor: no-drop;
}
input[disabled]{
      cursor: no-drop;
      opacity: 0.5;
}

.slick-list.draggable {
    height: 100% !important;
}
.product-slider .slider-single .slick-slide{
/*    min-width: 400px !important;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.manual_quantity.char_limit {
    border: 1px solid #44444452;
    border-radius: 4px;
    padding: 8px 35px 8px 15px;
    font-size: 14px;
}
.selected-product .product-details {
    background: #9993a17a;
}
.bg_bx {
    width: 30px;
    height: 16px;
}

/* checkbox  */
.delivery-date input:checked + .slider{
  background-color: #f9b72b;
}
.delivery-date input:checked + .slider:before {
    background-color: #fff;
}
.modal.show .modal-dialog {
    max-width: 950px;
}

.product-card.selected-product:hover .product-details {
    background: #44444438 !important;
}

.upld_logo{
  flex: 0 0 calc(100% / 2 - 20px);
}

.checkImg {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}
.checkImg img {
    width: 100%;
    height: 100%;
}

.close_modal {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    border: 1px solid #0000002e;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform{
  transform: scale(0.99);
}

.accordion-button::after {
    background-image: none !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: none !important;
}
.collection-list .accordion-button:not(.collapsed)::after {
  background-image: none !important;
}

.select-quant-wpr.prd_hm_sec {
    position: relative;
}
.fixed_qnt {
    position: sticky;
    background: #fff;
    width: calc(100% + 60px);
    margin-left: -30px;
    padding: 20px !important;
    z-index: 9;
}
.stepper-sec.fixed_qnt {
  top: 76px;
}
.select-quant-sec.fixed_qnt {
    top: 190px;
    z-index: 1;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #44444424;
}
/*products wpr*/
.product-cards.pe-none {
    position: relative;
    padding: 16px;
}

.product-cards.pe-none:after {
    position: absolute;
    content: '';
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    background: #a19d9d4f;
    left: -8px;
    top: -8px;
}

.product-cards.pe-none .product-card {
    opacity: 0.7;
}


/* Animation */
.unit-price {
    font-size: 10px;
    color: #444444a1;
}
.pulse-animation h6{
    font-size: 18px !important;
    line-height: 25px;
    font-weight: 600 !important;
}

.pulse-animation {
    position: fixed;
    top: 50% !important;
    z-index: 999999 !important;
    width: 100%;
    border: 0;
    left: 50%;
    height: 130px;
    padding: 0 18% !important;
    margin: 0;
     transform: translate(-50%, -50%);
/*    background: #000000a6;*/
}

.pulse-animation:after {
    position: fixed;
    content: '';
    width: 70%;
    height: 130px;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 10px;
}
.pulse-animation:before {
    position: fixed;
    content: '';
    width: 100vw;
    height: 100vh;
    background: #000000a6;
    left: 0%;
    z-index: -7;
}
.pulse-animation .qnt-alert {
    font-size: 10px;
    color: red;
    display: none;
}
@keyframes pulse{
  0%{    
    transform: scale(1);
  }
  
  50%{   
    transform: scale(1.1);
  }
  
  100%{   
    transform: scale(1.2);
  }
}

@-webkit-keyframes pulse{
  0%{   
    transform: scale(1);
  }
  
  50%{   
    transform: scale(1.2);
  }
  
  100%{   
    transform: scale(1.4);
  }
}


/* Select Box Modal */
#selectboxmodal .modal-content {
    max-width: 400px;
    height: 160px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #db2a2a;
}



/*  Thank you page */
.wrapper-1 {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wrapper-1 .wrapper-2{
  padding :30px;
  text-align:center;
}
.wrapper-1 h1 {
    letter-spacing: 3px;
    color: #562c83;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
}
.wrapper-1 .wrapper-2 p {
    font-size: 18px;
    color: #aaa;
    letter-spacing: 1px;
    max-width: 520px;
    margin: 0 auto 40px;
}
.wrapper-1 .go-home {
    color: #fff;
    background: #f9b932;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgb(249 185 50 / 42%);
}
.wrapper-1 .go-home:hover {
    background: var(--secondary-hover);
}
.wrapper-1 .footer-like{
  margin-top: auto; 
  background:#D7E6FE;
  padding:6px;
  text-align:center;
}
.wrapper-1 .footer-like p{
  margin:0;
  padding:4px;
  color:#5892FF;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing:1px;
}
.wrapper-1 .footer-like p a{
  text-decoration:none;
  color:#5892FF;
  font-weight:600;
}

@media (min-width:360px){
 .wrapper-1  h1{
    font-size:42px;
    letter-spacing: 2px
  }
 .wrapper-1 .go-home{
    margin-bottom:20px;
  }
}

@media (min-width:600px){
   .wrapper-1 .content{
    max-width:1000px;
    margin:0 auto;
  }
   .wrapper-1 .wrapper-1{
    height: initial;
    max-width:620px;
    margin:0 auto;
    margin-top:50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
  }
  .wrapper-1  h1{
    font-size:56px;
  }
  
}

@media (max-width:991px){
 .wrapper-1  h1{
    font-size:42px !important;
  }
  .wrapper-1 .go-home {
    display: block;
    word-break: break-word;
}
}

@media (max-width:767px){
  .wrapper-1  h1 {
      font-size: 28px !important;
  }
  .wrapper-1 .wrapper-2 p {
    font-size: 15px;
}
.wrapper-1 .wrapper-2{
  padding: 0;
}
}