@charset "UTF-8";
#header {
  position: relative;
}
#header #header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header #header-menu .menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  font-size: 14px;
}
#header #header-menu .menu > li {
  padding: 20px 0;
}
#header #header-menu .menu > li:after {
  transform: rotate(-90deg);
}
#header #header-menu .menu a {
  color: #ffffff;
}
#header #header-menu .menu .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header #header-menu .menu .menu-item-has-children:after {
  content: "⮜";
  color: #ffffff;
  font-size: 10px;
}
#header #header-menu .menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}
#header #header-menu .menu .sub-menu {
  background-color: #212529;
  width: 150px;
  display: none;
  position: relative;
}
#header #header-menu .menu .sub-menu li {
  padding: 10px 10px;
  position: relative;
}
#header #header-menu .menu > li > .sub-menu {
  position: absolute;
  top: 100%;
}
#header #header-menu .menu .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
}
#header #mobileMenu {
  display: none;
  flex-direction: column;
  gap: 20px;
}
#header #mobileMenu ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#header #mobileMenu ul.menu {
  padding: 0 1rem;
  font-size: 16px;
  font-weight: 600;
}
#header #mobileMenu ul.menu a {
  color: inherit;
}
#header #mobileMenu .menu-item-has-children.sub-menu-openend > .toggle svg {
  transform: rotate(-90deg);
}
#header #mobileMenu .menu-item-has-children.sub-menu-openend > .sub-menu {
  display: flex;
}
#header #mobileMenu .sub-menu {
  margin-top: 20px;
  padding: 0 20px 0 0;
  display: none;
}
@media (max-width: 992px) {
  #header #header-top {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
}

.ghara-message-wrap {
  position: fixed;
  top: 20px;
  right: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  z-index: 999999999;
}

#loading-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: none;
  backdrop-filter: blur(15px);
}
#loading-wrap #loading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading-wrap .loader {
  width: 60px;
  aspect-ratio: 1;
  display: grid;
}
#loading-wrap .loader:before,
#loading-wrap .loader:after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: #E0880F;
  -webkit-mask: repeating-linear-gradient(#000 0 5px, rgba(0, 0, 0, 0) 0 10px);
  animation: l35 1.5s infinite;
}
#loading-wrap .loader:after {
  -webkit-mask: repeating-linear-gradient(rgba(0, 0, 0, 0) 0 5px, #000 0 10px);
  --s: -1;
}
@keyframes l35 {
  0%, 10% {
    transform: translate(0) rotate(0);
  }
  35% {
    transform: translate(calc(var(--s, 1) * 50%)) rotate(0);
  }
  66% {
    transform: translate(calc(var(--s, 1) * 50%)) rotate(calc(var(--s, 1) * 180deg));
  }
  90%, 100% {
    transform: translate(0) rotate(calc(var(--s, 1) * 180deg));
  }
}

#ghara-post-comment-list .comment-reply-link {
  color: #E0880F;
}

#footer #ghara-designer a {
  color: #E0880F;
}

#price-range-inputs {
  /* Thumb: webkit */
  /* Thumb: Firefox */
  /* Hover, active & focus Thumb: Webkit */
  /* Hover, active & focus Thumb: Firfox */
}
#price-range-inputs input[type=range] {
  background: #dee2e6;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
}
#price-range-inputs input[type=range]::-webkit-slider-thumb {
  height: 14px;
  width: 14px;
  background-color: #E0880F;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
#price-range-inputs input[type=range]::-moz-range-thumb {
  background-color: #E0880F;
  height: 14px;
  width: 14px;
  border: none;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
#price-range-inputs input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}
#price-range-inputs input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}
#price-range-inputs input[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}
#price-range-inputs input[type=range]::-moz-range-thumb:hover {
  box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}
#price-range-inputs input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}
#price-range-inputs input[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

.woocommerce-product-gallery {
  position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.woocommerce-product-gallery .flex-viewport {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 15px;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  text-align: center;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  object-fit: contain;
}
.woocommerce-product-gallery ol {
  margin-top: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  list-style: none;
}
@media (max-width: 768px) {
  .woocommerce-product-gallery ol {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .woocommerce-product-gallery ol {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce-product-gallery ol li {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 15px;
  cursor: pointer;
}
.woocommerce-product-gallery ol li img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

#ghara-single-price {
  display: flex;
  flex-direction: column;
}
#ghara-single-price del {
  color: grey;
  font-size: 22px;
}
#ghara-single-price ins {
  text-decoration: none;
}

table.variations {
  width: 100%;
}

table.variations a.reset_variations {
  margin-right: 5px;
}

.woocommerce-variation.single_variation {
  margin-bottom: 10px;
}

.quantity {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield;
}

.wc-tabs li.active a {
  background-color: #e0880f !important;
  border-color: transparent !important;
}

#comments .review, #comments .comment {
  margin-bottom: 30px;
}
#comments .review .avatar, #comments .comment .avatar {
  border-radius: 100%;
}
#comments .review .star-rating, #comments .comment .star-rating {
  color: yellow;
}
#comments .review .star-rating::before, #comments .comment .star-rating::before {
  color: yellow;
}
#comments ul.children {
  padding: 0 20px 0 0 !important;
}

#review_form_wrapper {
  margin-top: 70px;
}

#respond #reply-title {
  font-size: 20px;
  font-weight: bold;
}
#respond .comment-form-rating {
  margin-top: 20px;
}
#respond .comment-form-rating label {
  font-weight: bold;
}
#respond .comment-form-rating .stars a {
  color: orange !important;
  font-size: 18px;
}
#respond .comment-form-comment > label,
#respond .comment-form-author > label,
#respond .comment-form-email > label {
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
}
#respond input:not([type=checkbox], [type=submit]) {
  height: 62px;
}
#respond input:not([type=checkbox], [type=submit]), #respond textarea {
  background-color: #f5f5f5;
  padding: 0 15px;
  width: 100%;
  border: none;
  border-radius: 20px;
  outline: none !important;
}
#respond input#submit {
  margin-right: auto;
  padding: 18px 40px !important;
  background-color: #E0880F !important;
  border-radius: 20px !important;
}

.woocommerce .woocommerce-MyAccount-navigation li.is-active a p {
  color: #E0880F;
}

.woocommerce-info {
  border-color: #E0880F;
}
.woocommerce-info::before {
  color: #E0880F;
}

label .required {
  color: inherit !important;
}

.select2 .select2-selection {
  height: 61px !important;
  padding-right: 1rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  border: none !important;
}
.select2 .select2-selection__arrow {
  margin-right: auto;
  display: flex;
  align-items: center;
  position: static !important;
}
.select2 .select2-selection__arrow b {
  position: static !important;
}

.select2-dropdown {
  border-top: 1px solid #aaa !important;
}

#breadcrumb a {
  color: #6c757d !important;
}

table {
  background-color: #ffffff;
  border-radius: 15px !important;
  box-shadow: 0px 0px 43.0188674927px 0px rgba(0, 0, 0, 0.1019607843);
  border: none !important;
}
table a {
  color: #E0880F;
}
table th, table td {
  padding: 20px !important;
  text-align: center;
}
table button, table .button {
  background-color: #E0880F !important;
  border-radius: 5px !important;
}

.post-content {
  line-height: 1.8em;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  color: #E0880F;
}
.post-content img {
  border-radius: 10px;
}
.post-content figcaption {
  text-align: center;
  color: slategray;
  font-size: 14px;
}

#ghara-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
}
#ghara-pagination ul .page-numbers {
  padding: 2px 12px;
  border-radius: 4px;
}
#ghara-pagination ul a {
  color: inherit;
}
#ghara-pagination ul .current {
  background-color: #E0880F;
  font-weight: bold;
}

/* Quick contact */
#ghara-quick-contact > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 100;
}
#ghara-quick-contact > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: #ffffff;
  border-radius: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 200ms;
}
#ghara-quick-contact > div a:hover {
  transform: scale(1.1);
}
#ghara-quick-contact > div a svg {
  width: 20px;
  height: 20px;
}

/*# sourceMappingURL=main.css.map */
