
.website-page:hover {
  color: var(--hover-color);
  text-decoration: var(--hover-underline);
}

.website-page.active {
  color: var(--active-color);
  text-decoration: var(--active-underline);
}

.wb-toolbar {
  animation-name: wb-animation;
  animation-duration: 100ms;
}

@keyframes wb-animation {
  from {
    opacity: 0;
    scale: 0.7
  }

  to {
    opacity: 100;
    scale: 1;
  }
}


@keyframes animate-slide-to-left {
  from {
    transform: translateX(100%);
    scale: 1;
  }

  to {
    transform: translateX(0);
    scale: 1;
  }
}

@keyframes animate-slide-to-right {
  from {
    transform: translateX(-100%);
    scale: 1;
  }

  to {
    transform: translateX(0);
    scale: 1;
  }
}

@keyframes animate-slide-to-top {
  from {
    transform: translateY(20%);
    scale: 1;
  }

  to {
    transform: translateY(0);
    scale: 1;
  }
}

@keyframes animate-fade {
  from {
    scale: 1;
    opacity: 0
  }

  to {
    scale: 1;
    opacity: 1
  }
}


.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input, textarea {
  outline: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

/**
SLIDER DEFAULT STYLES [START]
*/

.slider-slide-to-right {
  animation-duration: 500ms;
  animation-name: slider-animate-slide-to-right;
}

.slider-slide-to-left {
  animation-duration: 500ms;
  animation-name: slider-animate-slide-to-left;
}

.slider-scale {
  animation-duration: 500ms;
  animation-name: slider-animate-scale;
}

.slider-fade {
  animation-duration: 500ms;
  animation-name: slider-animate-fade;
}

@keyframes slider-animate-fade {
  from {
    opacity: 50%;
  }

  to {
    opacity: 100%;
  }
}

@keyframes slider-animate-scale {
  from {
    scale: 75%;
  }

  to {
    scale: 100%;
  }
}


@keyframes slider-animate-slide-to-left {
  from {
    left: 50%;
  }

  to {
    left: 0%;
  }
}

@keyframes slider-animate-slide-to-right {
  from {
    right: 50%;
  }

  to {
    right: 0%;
  }
}

/**
SLIDER DEFAULT STYLES [END]
*/


.wb-scrollable::-webkit-scrollbar, .scroller_inner::-webkit-scrollbar {
  display: none;
}

.wb-scrollable, .scroller_inner {
  -ms-overflow-style: none;
}



/* TIPTAP {START} */
.ProseMirror-focused {
  outline: none;
}

.tiptap p.is-empty::before,
h1.is-empty::before,
h2.is-empty::before,
h3.is-empty::before {
  color: #adb5bd;
  content: attr(data-placeholder);
  float: left;
  height: 0;
  pointer-events: none;
}

.tiptap :first-child {
  margin-top: 0;
}

.tiptap blockquote {
  border-left: 3px solid gray;
  margin: 1.5rem 0;
  padding-left: 1rem;
}


.tiptap ul {
  list-style: disc;
  margin-left: 20px;
}

.tiptap ol {
  list-style: decimal;
  margin-left: 20px;
}

.tiptap a {
  cursor: pointer;
}

.iframe-wrapper {
  position: relative;
  width: fit-content;
}


p:empty:before {
  content: ' ';
  white-space: pre;
}
/* TIPTAP {END} */
