@keyframes fadeScaleIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*animate*/
.hmodal {
  z-index: 1049;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/*bg_dark_start*/

.blurBackstage {
  position: fixed;
  inset: 0;
  z-index: 1048;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeScaleIn 400ms ease forwards;
}

/*right_menu_start*/
.hmodal#rightMenu {
  max-width: 35rem;
  width: 100%;
  width: 100%;
  inset-inline-start: -100%;
}

.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;
}

/*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*/


/*editor*/

.ripple {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ripple span.ripple_span {
  -webkit-animation: ink 1.6s;
  animation: ink 1.6s;
  border-radius: 100%;
  background: #ffffff;
  height: 0.75rem;
  width: 0.75rem;
  position: absolute;
}

@-webkit-keyframes ink {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(40);
  }
}

@keyframes ink {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(40);
  }
}

/*ripple_button*/

/*page-number*/
.page-number {
  gap: 0.5rem;
}
.page-number li {
  position: relative;
  border: 1px solid var(--theme-gold);
  border-radius: 5px;
  background: white;
}
.page-number li a {
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-number li.active {
  background: var(--theme-gold);
  color: var(--font-color);
  transform: scale(1.1, 1.1);
}
.page-number li:first-child::after {
  display: block;
  content: "";
  background-image: url("../../images/background/bg-5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 2rem;
  height: 1.5rem;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translate(0, -50%);
}
.page-number li:last-child::after {
  display: block;
  content: "";
  background-image: url("../../images/background/bg-5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 2rem;
  height: 1.5rem;
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translate(0, -50%) scale(-1);
}



/*page-number*/


/*accardeon*/

.submenuItems {
  display: none;
}
.accordion-menu .dropdownlink i {
  transition: transform 300ms ease-in;
}
.accordion-menu .open .dropdownlink i {
  transform: rotate(-180deg);
  transition: transform 300ms ease-in;
}


/*accardeon*/

.go-to-top {

  cursor: pointer;
  overflow: hidden;
  inset-inline-start: 15px;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  z-index: 99;
}
.go-to-top.add-class-top {
  -webkit-transform: translate3d(0, -15px, 0);
  -moz-transform: translate3d(0, -15px, 0);
  -ms-transform: translate3d(0, -15px, 0);
  -o-transform: translate3d(0, -15px, 0);
}

