@-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;
  width: 100%;
  height: 100%;
  z-index: 1053;
  background-color: #000;
}
/*bg_dark_start*/

/*right_menu_start*/

.hmodal#rightMenu {
  inset-inline-start: -100%;
  max-width: 30rem;
  width: 100%;
}


.hmodal#rightMenu.showModal {
  inset-inline-start: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}


/*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*/

/*tab-box*/
.tab-content__pane {
  display: none;
}
.tab-content__pane.show {
  display: block;
}
.filter_tab .nav-tabs .nav-link.active {
  background-color: #e3e3e3;
}


/*form*/

.editor h2 {
  color: var(--primary);

}

.editor h3 {
  color: var(--secondary);

}


/*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);
}

.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;
}