@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons%401.11.3/font/bootstrap-icons.min.css");

/* font family of work sans */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&amp;display=swap');

/* line added by hask */
/* boiler plate of csss */
:root {
  --normal-txt-color: #000000;
  --mobile-border-radius: 5px;
  --normal-border-radius: 5px;
  --btn-txt-color: #ffffff;
  --normal-font-weight: 500;
  --hover-txt-color: #f2f2f2;
  --btn-bg-color: #8a1344;
  --bs-footer-txt-color: #666666;
  --info-border-color: #cfcdcd;
  --main-font-family: "Work Sans", sans-serif;
  --font-fm2: "Fraunces", serif;
  --hover-txt-color: #666666;
  --cart-modal-footer-bg: #f7f7f7;
  --main-bg: #ffffff;
  --para-color: #666666;
  --input-bg: #f2f2f2;
  --input-normal-rounded: 5px;
  --input-placeholder-txt-color: #9b9ba6;
  --li-txt-color: #666666;
  --sec-txt-color: #666666;
  --timer-txt-color: #cf1927;
  --main-clr: #8a1344;
  --light-color: #ffffff;
  --dark-color: #000000;
}

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

body,
html {
  width: 100%;
  height: 100%;
  font-family: "Work Sans", sans-serif;
  scroll-behavior: smooth;
  overflow: auto;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.h_quick_view_overlay,
.close-login-modal-wrapper,
.search_wrapper_overlay,
.wrapper-overlay {
  transition: all .4s ease-in-out;
}

.h_quick_view_overlay.active,
.close-login-modal-wrapper.active,
.search_wrapper_overlay.active,
.wrapper-overlay.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  z-index: 1003;
  cursor: url(../images/light-close.png) 16 16, pointer;
}


.loader {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background: #ffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadein 2s ease-in;
  gap: 20px;
}



.loader-logo {
  width: 100px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.loader p {
  font-size: 22px;
}

.swal-custom-icon {
  border: 1px solid #8a1344 !important;
  color: #8a1344 !important;
}

.swal-custom-text {
  color: #8a1344 !important;
  font-size: 26px;
  font-weight: 600;
  font-family: var(--main-font-family);
  text-transform: capitalize;
}

.my-swal-warning-container {
  z-index: 19999 !important;
}


/* =============== */