.is-hidden {
  display: none !important;
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 950px) {
  .is-hidden-mobile {
    display: none !important;
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
    font-size: 0;
    line-height: 0;
  }
}

@media screen and (min-width: 950px) {
  .is-hidden-desktop {
    display: none !important;
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
    font-size: 0;
    line-height: 0;
  }
}

.is-scrolling .is-hidden-scrolling {
  display: none;
}

[data-toggle-result="show"] .is-hidden-result {
  display: none !important;
}

[data-toggle-result="hide"] .is-shown-result {
  display: none !important;
}

.is-invisible {
  visibility: hidden;
  opacity: 0;
}

.prevent-scroll {
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

.horiz-rotate {
  transform: rotateY(180deg);
}

.vert-rotate {
  transform: rotate(180deg);
}

.rotating {
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

[data-replace] {
  display: none;
}

[draggable] {
  cursor: move;
}

[data-lng],
[data-login],
[data-target-toggle] {
  cursor: pointer;
}

.opacity {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.opacity:hover {
  opacity: 1 !important;
}