/*animate*/
.hmodal {
  z-index: 1060;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/*bg_dark_start*/
.blurBackstage {
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1053;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
/*bg_dark_start*/

/*right_menu_start*/
.hmodal#shopFilter,
.hmodal#rightMenu {
  inset-inline-start: -100%;
  width: 320px;
}
.show-btn {
  cursor: pointer;
}

.hmodal#shopFilter.showModal,
.hmodal#rightMenu.showModal {
  inset-inline-start: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.hmodal#searching {
  top: -100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.hmodal#searching.showModal {
  top: 2.5rem;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.hmodal#dialog {
  top: -100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.hmodal#dialog.showModal {
  top: 2.5rem;
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
}

/*tab-box*/
.tab-content__pane {
  display: none;
}
.tab-content__pane.show {
  display: block;
}

.filter-btn.active {
  background-color: var(--primary);
  color: #fff;
}
.aircooler .filter-btn.active {
  background-color:#fb2c36;
  color: #121212;
}


/*tab-box*/

/*more-reed-*/
.introduction {
  overflow: hidden;
  height: 25rem;
  line-height: 2rem;
  position: relative;
}
.add-class-introduction {
  height: auto !important;
  overflow: visible !important;
}
.view-less {
  display: none;
}
.add-class-view-less {
  display: block;
}
.add-class-introduction-span {
  display: none;
}

/*more-reed-comment*/


.dropdown .dropdown-box {
  -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
  -o-transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
  transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
  visibility: hidden;
  opacity: 0;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  z-index: 10001;
}
.dropdown .dropdown-box.show {
  -webkit-transition: visibility 0s linear 0s, opacity 0.2s 0s;
  -o-transition: visibility 0s linear 0s, opacity 0.2s 0s;
  transition: visibility 0s linear 0s, opacity 0.2s 0s;
  visibility: visible;
  opacity: 1;
}

.top_menu_tab::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  height: 1.5rem;
  width: 100%;
}

/*accardeon*/

.submenuItems {
  display: none;
}
.accordion-menu .dropdownlink svg {
  transition: all 300ms ease-in;
}
.accordion-menu .open .dropdownlink svg {
  transform: rotate(-180deg);
  transition: all 300ms ease-in;
}

/*accardeon*/


/*editor*/


.editor h2 {
  color: var(--primary);

}
.editor h3 {
  color: var(--orange);

}

.page-number li.activepage{
    background-color: var(--primary);
    color: white;
  }

.page-number li:hover {
  background-color: var(--primary);
  color: white;
}

/*pageNumber*/


img.lozad {
  border-radius: inherit;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  -o-transition: filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

img.lozad.loaded {
  -webkit-filter: blur(0);
          filter: blur(0);
}