/**
 * @file
 * VVj Tabs.
 *
 * Filename:     vvjt.css
 * Website:      https://www.flashwebcenter.com
 * Developer:    Alaa Haddad https://www.alaahaddad.com.
 */

/* Global */
.vvj-tabs .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.vvj-tabs,
.vvj-tabs * {
  box-sizing: border-box;
}

.vvj-tabs,
.vvj-tabs .view-content {
  width: 100%;
  min-width: 100%;
  display: block !important;
}

.vvjt {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
}

.vvjt .vvjt-inner {
  width: 100%;
  overflow-x: hidden;
}

.vvjt .vvjt-inner .tab-panes {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-panes);
}

.vvjt .vvjt-inner .tab-panes>* {
  width: 100%;
  box-sizing: border-box;
}

.vvjt .tab-panes .vvjt-pane {
  display: none;
  overflow: hidden;
}

.vvjt .tab-panes > div.vvjt-pane:first-child {
  display: block;
}

.vvjt .vvjt-inner .tab-buttons {
  background-color: var(--bg-buttons);
}

.vvjt .tab-buttons .vvjt-button {
  white-space: normal;
  display: inline-block;
  height: auto;
  text-align: left;
}

/* Animate slideshow */
.vvjt.vvjt__animate-fading .vvjt-pane {
  animation: fading 5s ease-in-out infinite;
}

@keyframes fading {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}

.vvjt.a-opacity .vvjt-pane {
  animation: opac 0.8s ease-out;
}

@keyframes opac {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}

.vvjt.a-top .vvjt-pane {
  position: relative;
  animation: animatetop 0.6s ease-out;
}

@keyframes animatetop {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }

}

.vvjt.a-left .vvjt-pane {
  position: relative;
  animation: animateleft 0.6s ease-out;
}

@keyframes animateleft {
  from {
    left: -100px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }

}

.vvjt.a-right .vvjt-pane {
  position: relative;
  animation: animateright 0.6s ease-out;
}

@keyframes animateright {
  from {
    right: -100px;
    opacity: 0;
  }

  to {
    right: 0;
    opacity: 1;
  }

}

.vvjt.a-bottom .vvjt-pane {
  position: relative;
  animation: animatebottom 0.6s ease-out;
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0;
    opacity: 1;
  }

}

.vvjt.a-zoom .vvjt-pane {
  animation: animatezoom 0.6s ease-out;
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1.05);
  }

}
