/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
.filter-mobile {
  /* filter mobile button */
}
.filter-mobile__button {
  padding: 14px 20px;
}

/* filter mobile */
.filter-box {
  position: sticky;
  top: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  border-radius: 10px;
  /* filter box query */
  /* filter box active */
  /* filter box close */
  /* filter box wrapper */
}
@media only screen and (max-width: 991.98px) {
  .filter-box {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 2000;
    overflow: auto;
    transition: all 300ms linear;
  }
}
.filter-box.active {
  right: 0;
}
.filter-box__close {
  margin-top: 3rem;
  margin-left: 2rem;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.2rem;
  color: #f4c722;
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .filter-box__close {
    display: flex;
  }
}
.filter-box__wrapper {
  width: 100%;
  padding: 15px 20px;
}

/* filter box */
.filter-accordion {
  /* filter accordion show more less */
  /* filter accordion more item */
  /* filter accordion show less */
  /* filter accordion body item */
  /* filter accordion more button */
}
.filter-accordion .show-more-less {
  text-align: left;
}
.filter-accordion .more-item {
  font-size: 12px;
  color: #f4c722;
  margin: 15px 0;
}
.filter-accordion .show-less {
  font-size: 12px;
  color: #f4c722;
  display: none;
}
.filter-accordion .color {
  margin: 1.5rem 0 2rem;
}
.filter-accordion__item {
  margin-top: 15px;
}
.filter-accordion__header {
  font-size: 18px;
  border-bottom: 1px solid #f2f2f2;
}
.filter-accordion__button {
  background-color: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  padding: 12px 0 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}
.filter-accordion__icon {
  font-size: 16px;
  color: #333;
}
.filter-accordion__body-item {
  align-items: center;
  margin-top: 2px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  /* body item checkbox */
  /* body item bounce */
}
.filter-accordion__body-item .checkbox {
  position: relative;
  /* checkbox label */
  /* checkbox input and svg */
  /* checkbox input */
  /* checkbox svg */
  /* checkbox bounce */
}
.filter-accordion__body-item .checkbox-label {
  font-size: 15px;
  font-weight: 300;
  color: #6e6e6e;
  margin-bottom: 0;
  cursor: pointer;
  margin-right: 10px;
}
.filter-accordion__body-item .checkbox input,
.filter-accordion__body-item .checkbox svg {
  width: 19px;
  height: 19px;
  display: inline-block;
}
.filter-accordion__body-item .checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: #fff;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}
.filter-accordion__body-item .checkbox input:hover {
  box-shadow: inset 0 0 0 2px #d0d0d0;
}
.filter-accordion__body-item .checkbox input:checked {
  box-shadow: inset 0 0 0 1px #0b273e;
}
.filter-accordion__body-item .checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 19px;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.filter-accordion__body-item .checkbox.bounce {
  margin-top: 5px;
}
.filter-accordion__body-item .checkbox.bounce input:checked {
  box-shadow: inset 0 0 0 11px #f4c722;
}
.filter-accordion__body-item .checkbox.bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.filter-accordion__body-item .checkbox.bounce svg {
  --scale: 0;
}
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.filter-accordion .more-button {
  font-size: 16px;
  color: #6e6e6e;
}

/* filter accordion */
.filter-switch {
  margin-top: 25px;
  /* filter switch toggle control */
}
.filter-switch .toggle-control {
  display: block;
  position: relative;
  padding-right: 60px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #6e6e6e;
  user-select: none;
  /* toggle control input */
  /* toggle control checked control */
  /* toggle control control */
}
.filter-switch .toggle-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.filter-switch .toggle-control input:checked ~ .control {
  background-color: #f4c722;
}
.filter-switch .toggle-control input:checked ~ .control:after {
  left: 22px;
}
.filter-switch .toggle-control .control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  background-color: darkgray;
  transition: background-color 0.15s ease-in;
}
.filter-switch .toggle-control .control:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: white;
  transition: left 0.15s ease-in;
}

/* filter switch */
.archive-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  /* archive product query*/
  /* archive product items */
  /* archive product no item */
}
@media (max-width: 991.98px) {
  .archive-product {
    padding-top: 3%;
  }
}
.archive-product__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  /* items product grid8 */
  /* items query */
}
.archive-product__items .product-grid8 {
  /* grid8 query */
  /* grid8 social */
  /* grid8 hover */
}
@media (min-width: 1200px) {
  .archive-product__items .product-grid8 {
    padding: 0 17px;
  }
}
.archive-product__items .product-grid8 .social {
  bottom: 6px;
  right: -11%;
}
@media (max-width: 1199.98px) {
  .archive-product__items .product-grid8 .social {
    right: -10%;
  }
}
@media (max-width: 767.98px) {
  .archive-product__items .product-grid8 .social {
    right: -8%;
  }
}
.archive-product__items .product-grid8:hover .social li:nth-child(3) {
  transition-delay: 0.3s;
}
@media (max-width: 480px) {
  .archive-product__items {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.archive-product__no-item {
  font-size: 1.8rem;
  font-weight: 400;
  color: #6e6e6e;
  border: 1px solid orange;
  padding: 20px 30px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 10px;
  /* no item icon */
}
.archive-product__no-item-icon {
  margin-left: 10px;
  color: orange;
}

/* archive product */
.no-item-guid {
  margin-top: 5px;
  padding-right: 20px;
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 300;
}

.color__field .show-more-item {
  margin-bottom: 20px;
  display: inline-block;
}
.color__field .show-more-item .color__input[type=checkbox] {
  display: none;
}
.color__input[type=checkbox] + .color__label {
  position: relative;
  height: 25px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  color: #6e6e6e;
  padding-right: 35px;
  cursor: pointer;
  transition: all 300ms linear;
}
.color__input[type=checkbox] + .color__label:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
  background-color: var(--product-color);
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  border-top-left-radius: 4px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.color__input:checked + .color__label {
  color: #f4c722;
}
.color__input[type=checkbox]:checked + .color__label span {
  box-shadow: 0 0px 5px #676767dd;
  text-align: center;
  padding-top: 4px;
}
.color__input[type=checkbox]:checked + .color__label span:before {
  font-family: "icomoon";
  font-size: 13px;
  content: "\e974";
  color: #fff;
}

.show-more-wrapper .show-more-item {
  display: none;
}

.product-card {
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  transition: all 300ms linear;
  /* product card hover */
  /*  product card color wrapper */
  /* product card color */
  /* product card img */
  /* product card title a tag */
}
.product-card:hover .product-card__title a {
  color: #f4c722;
}
.product-card__color-wrapper {
  margin-bottom: 10px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.product-card__color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background-color: var(--data-color);
}
.product-card__img {
  display: block;
  margin: 0 -10px 10px -10px;
}
.product-card__img img {
  width: 100%;
  box-shadow: none;
  transition: all 300ms linear;
}
.product-card__title a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 23px;
  transition: all 300ms linear;
  width: 100%;
  height: 47.5px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 767.98px) {
  .product-card__color {
    border-width: 1.5px;
  }
}

/* product card */
.blog-card {
  position: relative;
  /* blog card img */
  /* blog card body */
  /* blog card title */
  /* blog card text */
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.05) translateX(-7px);
}
.blog-card__img {
  display: block;
  width: 80%;
}
.blog-card__img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  transition: all 300ms linear;
}
.blog-card__body {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 95%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3.5px);
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.blog-card__title {
  margin-bottom: 0;
  /* title a tag */
}
.blog-card__title a {
  display: block;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 9px;
  transition: all 300ms linear;
  width: 100%;
  height: 45px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-card__title a:hover {
  color: #f4c722;
}
.blog-card__text {
  font-size: 13.5px;
  color: #6e6e6e;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* blog card */

/*# sourceMappingURL=archives.css.map */
