@-webkit-keyframes intro-animation {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes intro-animation {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/*animate*/
.hmodal {
  z-index: 1054;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/*bg_dark_start*/
.blurBackstage {
  opacity: 0.5;
  position: fixed;
  inset: 0;
  z-index: 1053;
  width: 100%;
  height: 100%;
  background-color: #000;
}
/*bg_dark_start*/

/*right_menu_start*/
.hmodal#shopFilter,
.hmodal#rightMenu {
  inset-inline-start: -100%;
      max-width: 30rem;
    width: 100%;
}

.hmodal#basketMenu{
      max-width: 30rem;
    width: 100%;
    inset-inline-end: -100%;
}

.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#basketMenu.showModal {
  inset-inline-end: 0;
}
.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;
}

.hmodal#bag.showModal {
  inset-inline-end: 0;
}

/*tab-box*/
.tab-content__pane {
  display: none;
}
.tab-content__pane.show {
  display: block;
}
.filter_tab .nav-tabs .nav-link {
  background-color: var(--gray-color-200);
}

.filter_tab .nav-tabs .nav-link.active,
.top_menu_tab .nav-tabs .nav-link.active {
  background-color: #fff;
  border-radius: 0 10px 10px 0;
}

.h_animation {
  overflow: hidden;
}

.h_animation.show .use_animation {
  opacity: 0;
  transform: translateX(-50px);
  -webkit-animation: 0.4s intro-animation ease-in-out 0.33333s;
  animation: 0.4s intro-animation ease-in-out 0.33333s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.h_animation .use_animation {
  opacity: 0;
  transform: translateX(-50px);
  -webkit-animation: 0.4s intro-animation ease-in-out 0.33333s;
  animation: 0.4s intro-animation ease-in-out 0.33333s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*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*/


/*form*/
.editor > ul li a:hover {
  color: var(--color-primary);
}

/* table */

.editor a {
  color: var(--Primary);

}


.editor h2 {
  color: var(--Primary);
}

.editor h3 {
  color: #00675a;
  
}

.editor p {
  color: var(--Color-Gray);
  
}


/*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*/



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);
}