/* VARS --- */
html, .fancybox-content {
  /*  --scrollbarBG: white;
    --thumbBG: #90A4AE;
    --thumbBGHover: #e2971d;*/
  overflow-x: hidden;
}

body {
  position: relative;
}

html::-webkit-scrollbar {
  width: 10px !important;
}

body, .fancybox-content {
  scrollbar-width: thin;
  scrollbar-color: #90A4AE white;
}

body::-webkit-scrollbar-track, .fancybox-content::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb, .fancybox-content::-webkit-scrollbar-thumb {
  background-color: #90A4AE;
  border-radius: 6px;
  border: 3px solid white;
  background-color: #edae1f;
}

body::-webkit-scrollbar-thumb:active, .fancybox-content::-webkit-scrollbar-thumb:active {
  background-color: #e2971d;
}

::-moz-selection {
  background: #edae1f;
}

::selection {
  background: #edae1f;
}

/* ANIMATIONS */
@keyframes spinForever {
  0% {
    transform: scale(1) rotateZ(0deg);
  }
  50% {
    transform: scale(1.5) rotateZ(-180deg);
  }
  100% {
    transform: scale(1) rotateZ(-360deg);
  }
}
/*ANOTHE SCROLL */
#clases .tab-content {
  --thumbBGHover: #e2971d;
  overflow-x: hidden;
}

#clases .tab-content::-webkit-scrollbar {
  width: 40px;
}

#clases .tab-content::-webkit-scrollbar-track {
  background: transparent;
}

#clases .tab-content::-webkit-scrollbar-thumb {
  background: radial-gradient(circle at center, transparent, transparent), url(../img/logoCircle.png) no-repeat;
  background-position-y: 10px;
  background-size: 40px;
}

.fancybox-loading {
  content: "";
  background: url(../img/logoCircle.png) no-repeat !important;
  background-size: 100% 100% !important;
  width: 50px !important;
  height: 50px !important;
}

/*COMMON -----  */
.nav-tabs {
  border: none !important;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
}

.orange {
  background-color: #ffbf34 !important;
}

.blue {
  background-color: #69d4d2 !important;
}

.orangeText {
  color: #ffbf34 !important;
}

.blueText {
  color: #69d4d2 !important;
}

.textLeft {
  text-align: left;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

/* ----- */
body {
  width: 100vw;
  padding: 0px;
  margin: 0px;
  line-height: 30px;
  letter-spacing: 1px;
  font-family: "Akaya Telivigala";
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 100vw !important;
  height: max-content;
  min-height: 650px;
  padding: 0vh 5vw 3vh 5vw;
  font-size: calc(12px + 1vmin);
  line-height: calc(12px + 4vh);
  z-index: 10;
}

section#inicio {
  display: flex;
  align-items: center;
  padding: 5vh 15vw;
  z-index: 10;
}

#inicioContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  perspective: 1000px;
  line-height: 25px;
}

#screenOverlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 101;
}

#mainBg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  min-height: 650px;
  background-image: url(../img/introBackground.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

#patternBg1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  min-height: 650px;
}

#menuContainer {
  position: fixed;
  top: 0px;
  right: 0px;
  padding: 10px 10px 0px 0px;
  transition: 0.5s;
  background: radial-gradient(circle at calc(100% - 45px) 40px, #ffc107 50%, transparent 1%);
  width: 70px;
  height: 70px;
  z-index: 102;
}

#menuContainer.spinnerIntro {
  padding: 0px;
  top: calc(50vh - 12vmin);
  right: calc(50vw - 12vmin);
  width: 24vmin;
  height: 24vmin;
  background: transparent;
}

.radialFill {
  background: radial-gradient(circle at calc(100% - 45px) 40px, #ffc107 63%, transparent 1%) !important;
}

#brandName {
  position: absolute;
  left: 70px;
  color: white;
  top: 25px;
  font-size: 2.5em;
  text-shadow: 1px 2px 2px #000000;
  font-family: "Akaya Telivigala";
  line-height: 100%;
  color: white;
  user-select: none;
  opacity: 0;
}

#brandName p {
  padding: 0px !important;
  margin: 0px !important;
}

#brandName p::first-letter {
  color: #007bff;
  font-size: 1.6em;
  text-shadow: 1px 2px 2px #0000008c;
}

#menuContainer.spinnerIntro #brandName {
  display: none;
}

#menuContainer.ready #brandName {
  opacity: 1;
}

#mainLogo {
  float: right;
  z-index: 115;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid grey;
  background-image: url(../img/logo.jpg);
  background-size: cover;
  background-position: 1px -6px;
  cursor: pointer;
  transition-property: transform, box-shadow;
  transition: 1.5s;
}

#mainLogo:hover {
  box-shadow: 0px 0px 2px #ffbf34;
}

#menuContainer.spinnerIntro #mainLogo {
  width: 100%;
  height: 100%;
  animation: spinForever 1.5s infinite;
  animation-timing-function: linear;
}

#menuItems {
  float: right;
  padding-top: 5px;
  z-index: 110;
  width: min-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menuItem {
  position: relative;
  opacity: 0;
  right: -100%;
  width: max-content;
  display: inline-block;
  padding: 0px 10px;
  margin: 10px 0px;
  border: 1px solid #ffbf34;
  border-radius: 5px;
  user-select: none;
  cursor: pointer;
  background-color: white;
  font-variant: small-caps;
  transition: 0.5s;
  transform: scale(1);
  font-size: 18px;
}

.menuItem:hover {
  background-color: #fdd274;
  box-shadow: 0px 0px 3px -2px black;
  transform: scale(1.1);
}

.menuItem.active {
  background-color: #1da7c7;
  box-shadow: 0px 0px 10px -5px black;
  color: white;
  text-shadow: 1px 1px 0px black;
  font-weight: bold;
}

.flex {
  display: flex;
}

.niceContainer {
  width: max-content;
  max-width: 48vw;
  background-color: white;
  box-shadow: black 0px 0px 4px;
  font-size: 25px;
  padding: 25px 30px;
  border-radius: 6px;
  margin: 10px 5px 3vh 5px;
  transform: rotate3d(1, 0, 0, 0deg);
  transform-origin: top;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: 1s;
}

.niceContainer.hidden {
  transform: rotate3d(1, 0, 0, -100deg);
}

#ejemploLink {
  align-self: center;
  width: max-content;
  z-index: 0;
  position: relative;
}

.actionButton {
  background-color: white;
  padding: 10px;
  box-shadow: 0px 0px 4px black;
  border-radius: 7px;
  margin: 15px;
  font-size: 1.2em;
  text-shadow: 0px 0px 4px white;
  text-align: center;
  font-variant: small-caps;
  cursor: pointer;
  user-select: none;
  width: max-content;
  align-self: center;
  position: sticky;
  top: 0px;
  left: 0vw;
  z-index: 1000;
  font-family: "Fredoka One";
  transition: 0.3s;
  transform: scale(1);
}

.actionButton:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.smallCaps {
  font-variant: small-caps;
}

.pointer {
  cursor: pointer;
}

#articleTypes {
  display: flex;
  justify-content: center;
  transition: 1.5s;
  position: relative;
  left: 0;
}

.articuloLink {
  display: inline-block;
  margin: 1vw;
  height: 10vw;
  width: 10vw;
  background-position-x: 90%;
  border-radius: 50%;
  box-shadow: 0px 0px 5px black;
  transition: 0.4s;
  overflow: hidden;
  background-size: auto 100%;
  border: 3px solid white;
  position: relative;
  left: 0px;
  transform: rotate3d(0, 0, 1, 0deg);
  cursor: pointer;
  z-index: 101;
}

.articuloLink.hidden {
  left: -100vw;
  transform: rotate3d(0, 0, 1, -360deg);
}

.articuloLink:hover {
  box-shadow: 0px 0px 7px #edae1f;
  background-size: auto 115%;
  border: 3px solid #edae1f;
}

.articuloLink.active {
  border: 4px solid #edae1f !important;
}

.articuloCaption {
  display: none;
  background: linear-gradient(to bottom, #edae1f 50%, transparent);
  padding: 10px;
  font-weight: bold;
  font-variant: small-caps;
  font-size: 23px;
  text-shadow: 1px 1px 2px white;
}

.sectionTitle {
  text-align: center;
  display: block;
  margin-bottom: 30px;
  font-family: cursive;
  font-size: calc(18px + 6vmin);
  color: black;
  text-shadow: 0 1px 1px #edae1f;
  user-select: none;
  cursor: pointer;
}

.carousel {
  position: static !important;
}

.carousel-inner, .carousel-item {
  height: 100% !important;
}

.carousel-indicators {
  position: relative !important;
  padding: 0px !important;
  margin: 0px !important;
  margin-left: 30px !important;
  align-items: center !important;
}

.carousel-indicators li {
  box-shadow: none !important;
  transition: 0.3s !important;
  background-color: #5f5d5b !important;
  height: 12px !important;
  width: 12px !important;
  margin: 0px 10px !important;
  border-radius: 50% !important;
}

.carousel-indicators li.active {
  height: 20px !important;
  width: 20px !important;
  background-color: #ffbf34 !important;
}

#niveles {
  background-color: wheat;
  padding: 10px 25px;
  line-height: 30px;
}

#niveles a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: black !important;
  text-decoration: none !important;
  background-color: white;
  width: 100%;
  height: 100%;
}

#niveles a.active {
  font-weight: bolder;
  background-color: #ffc107 !important;
}

#niveles .tab-content p {
  margin: 20px 0px;
  transition: 0.2s;
}


#conversacion .tab-content {
  height: 75vh;
  overflow-y: auto;
  background-color: white;
  position: relative;
  left: 0px;
}

.pad0 {
  padding: 0px !important;
}

#conversacion .tab-pane {
  column-count: 2;
  padding: 10px 20px;
}

#conversacion .tab-pane:nth-of-type(4), #conversacion .tab-pane:nth-of-type(5) {
  column-count: 1;
}

#conversacion .tab-pane div {
  transition: 0.2s;
}

#conversacion .tab-pane div:hover {
  color: #edae1f;
}

#conversacion li {
  margin: 0px 6px;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 4px black;
  border-radius: 7px;
  overflow: hidden;
  user-select: none;
  font-size: 20px;
}

#photoContainer {
  height: min-content;
  border-radius: 7px;
  box-shadow: 0px 0px 4px black;
  padding: 0px !important;
  overflow: hidden;
}

#examplePhoto {
  width: 100%;
  height: auto;
}

#morePhotos {
  position: absolute;
  width: max-content;
  height: max-content;
  padding: 10px;
  font-size: 1.2em;
  top: 0px;
  left: 0px;
  border-radius: 0px 0px 10px 10px;
  background-color: white;
  transition: 0.5s;
  z-index: 10;
  color: black;
}

#photoLinks {
  display: none;
}

/* MATERIALES ================================ */
section#materiales {
  background-attachment: fixed;
  background: linear-gradient(to bottom, #ffffff00, #00c4fffa);
  background-size: 10vmax;
  padding-top: 0px;
}

#materialesSwitch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#materiales ul.nav li a {
  padding: 10px;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none !important;
  color: black !important;
  border-radius: 5px;
  margin: 0px 10px;
  background-color: white;
  font-size: 1.2em;
  text-shadow: 0px 0px 3px white;
  border: 2px solid black;
}

#materiales ul.nav li a:hover {
  filter: brightness(1.1);
}

#materiales ul.nav li a.active {
  background-color: #edae1f;
  box-shadow: 0px 0px 5px #ffc107;
  font-weight: bold;
}

#articulos {
  position: absolute;
  left: -100vw;
  transition: 0.5s;
}

#articulos.active {
  left: 0;
}

#articulosCardsContainer {
  width: 90vw;
  z-index: 102;
  height: 20vh;
  min-height: 250px;
}

#articulosCardsContainer .front, #articulosCardsContainer .back {
  font-size: 1.3em;
}

#articulosCardsContainer .front {
  background-color: #edae1f;
  letter-spacing: 2px;
  font-family: cursive;
  line-height: 40px;
  color: white;
  text-shadow: 1px 1px 1px black;
}

#materiales .tab-content {
  position: relative;
  margin-top: 20px;
  height: 65vh;
}

#cuentos {
  position: absolute;
  top: 0px;
  left: 100vw;
  height: 100%;
  width: 100%;
  z-index: 100;
  transition: 0.5s;
}

#cuentos.active {
  left: 0px;
}

#cuentosList {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.cuentoLink {
  margin: 10px;
  height: 65vh;
  cursor: pointer;
  position: relative;
  left: 0px;
  transition: 0.6s;
}

.cuentoLink img {
  transition: 0.3s;
  height: 100%;
  border: 6px solid white;
  box-shadow: 0px 0px 4px black;
}

.cuentoLink:hover img {
  box-shadow: 0px 0px 7px #edae1f;
  transform: scale(1.05);
}

.centered {
  justify-content: center;
  align-items: center;
}

.backFromText .fa {
  font-size: 3em;
  color: grey;
  opacity: 0.8;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 100;
  transition: 0.5s;
}

.backFromText .fa:hover {
  cursor: pointer;
  opacity: 1;
}

.show {
  outline: none !important;
}

.slick-prev:before, .slick-next:before {
  color: #212529;
}

section#textos {
  padding: 0px;
  margin: 0px;
  font-size: calc(18px + 1vmin);
  background: linear-gradient(to bottom, #00c4fffa, #ffffffc4);
}

#textosContainer {
  display: inline-block;
  width: 100vw;
  height: 100%;
}

.textLink {
  display: block;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  margin: 10px;
  letter-spacing: 1px;
  transition: 0.5s;
  text-decoration: none !important;
  color: black !important;
  opacity: 1;
}

.textLink:hover {
  text-decoration: underline !important;
  transform: scale(1.1);
}

/*.textLink::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.textLink:hover::before {
  visibility: visible;
  transform: scaleX(1);
} */
.textLink.hidden {
  opacity: 0;
}

.textBody {
  color: red !important;
}

section#contacto {
  background-attachment: fixed;
  background-image: linear-gradient(to bottom, white, transparent, white), url(../img/logo.jpg);
  background-size: 25vmin;
}

#contactLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  width: max-content;
  position: sticky;
  top: 25vw;
}

#contactLinks a {
  display: block;
  color: black;
  width: max-content !important;
  padding: 15px 20px;
  background: white;
  border-radius: 5px;
  margin: 10px;
  box-shadow: 0px 0px 3px black;
  text-decoration: none;
  line-height: 100%;
  transition: 0.7s;
  font-size: 16px ;
  font-family: "Verdana";
}

#contactLinks a:hover {
    background-color: #ffbf34 !important;
}

#contactPhoto {
  position: sticky;
  top: 35px;
  margin-top: 5vh;
  margin-bottom: 50px;
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  background-image: url(../img/face_small.png);
  background-size: cover;
  background-position: 50% 0px;
  box-shadow: 0px 0px 18px white;
  z-index: 3;
}

.fb-page {
  position: absolute !important;
  box-shadow: 0px 0px 5px black;
  right: 20px;
  bottom: 0px;
  width: 500px;
  max-height: 90%;
}

/* MOBILE FIRST !! ======== */
@media screen and (max-width: 800px) {
  .fancybox-slide--image {
    padding: 0px !important;
  }

  .fancybox-inner {
    width: 100vw !important;
  }

  .fancybox-thumbs {
    width: 100vw !important;
    height: 45vh !important;
    bottom: 0px !important;
    top: auto !important;
  }

  .fancybox-thumbs__list a {
    width: 47vw !important;
    height: 30vw !important;
  }

  .niceContainer {
    max-width: 85vw !important;
  }

  section {
    padding: 0px !important;
    margin: 0px !important;
    min-height: 400px;
  }

  #mainBg {
    background-size: auto 100%;
    background-position-x: 50%;
    transition: 0.8s;
  }

  .radialFill {
    width: calc(100vw + 30px) !important;
    height: 400px !important;
  }

  .sectionTitle {
    width: 100%;
    text-align: center;
    font-size: 28px;
  }

  #clases .clasesStep {
    width: 100% !important;
  }

  .articuloLink {
    height: 23vw !important;
    width: 23vw !important;
  }

  .cuentoLink {
    width: 30vw;
  }

  .cuentoLink img {
    width: 100%;
    height: auto;
  }

  a.textLink {
    width: 100% !important;
    margin: 10px 0px !important;
  }

  #textosContainer {
    background-size: 300% 100%;
  }

  #contactPhoto {
    width: 50vw !important;
    height: 50vw !important;
  }

  .fb-page {
    width: 100vw !important;
    bottom: 0px !important;
    left: 0px !important;
    height: 50vh;
    max-height: 450px;
  }
}
/* DESKTOP ONLY  ====================  */
@media screen and (min-width: 800px) {
  #contactLinks {
    flex-direction: row;
  }

  .fancybox-inner {
    width: calc(75vw);
  }

  .fancybox-inner.full {
    width: 100vw !important;
  }

  .fancybox-thumbs {
    width: 25vw !important;
    min-width: 250px;
  }

  .fancybox-thumbs__list a {
    width: calc(50% - 4px) !important;
    height: 8vw !important;
    max-width: none !important;
    max-height: none !important;
  }

  .fancybox-thumbs__list a::before {
    border: 6px solid #e7da38 !important;
  }

  .fancybox-thumbs__list::-webkit-scrollbar {
    width: 10px !important;
  }

  ::-webkit-scrollbar-thumb {
    background: #edae1f !important;
  }

  .radialFill {
    width: 400px !important;
    height: 400px !important;
  }

  #mainBg {
    background-size: 100% auto;
    background-position-x: 50%;
    transition: background-position-x 0s !important;
  }

  #infoCard_1 {
    left: 5vw;
    top: 0;
  }

  #infoCard_1.hidden {
    left: -150px;
    transform: rotate3d(-4, 13, -2, 393deg) scale(0);
  }

  #infoCard_2 {
    position: absolute;
    right: 7vw;
    top: 1vh;
  }

  #infoCard_2.hidden {
    top: 10vh;
    right: -250px;
    transform: rotate3d(-4, -3, -2, 393deg) scale(0);
  }

  #infoCard_3 {
    position: relative;
    left: 6vw;
    bottom: 0;
  }

  #infoCard_3.hidden {
    left: -250px;
    transform: rotate3d(-4, 3, -2, -393deg) scale(0);
  }

  #infoCard_4 {
    position: absolute;
    right: 6vw;
    bottom: 0;
  }

  #infoCard_4.hidden {
    right: -50px;
    transform: rotate3d(-4, -3, -2, -393deg) scale(0);
  }

  #clases .flashcard {
    max-width: 30vw !important;
    min-width: 350px !important;
  }

  #textosContainer {
    padding: 7vh 5vw 3vh 5vw;
  }

  #textosRu, #textosEs {
    width: 40vw;
    min-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #textosRu {
    float: left;
    font-family: cursive;
  }

  #textosEs {
    float: right;
  }
}
/* =====================  */
/* SLICK SETTINGS ====== */
.slick-slide {
  width: 100%;
  outline: none !important;
}

.slick-track {
  display: flex;
  height: 100%;
  padding: 10px;
  justify-content: center;
}

.slick-list {
  width: 100%;
  height: 100%;
}

/* ================= */
.ffancybox-custom-text {
  width: 100% !important;
  height: 100vh !important;
  position: absolute !important;
  left: 0px !important;
  top: 0px !important;
  padding: 5vh 7vw !important;
}

/* FANCYboX ....... */
.fancybox-slide--html {
  padding: 0px !important;
}

.fancybox-content {
  min-height: 400px;
}

.fancybox-custom {
  position: absolute !important;
  top: 0px;
  left: 0px;
  width: 100vw !important;
  height: 100vh !important;
}

/* .fancybox-custom{
  1background: linear-gradient(to bottom, white, #ffffff66), url(../img/paperBg.jpg);
  transition-property: word-spacing;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}


.fancybox-container{
  z-index: 1000 !important;
}
*/

/*# sourceMappingURL=psrusoStyle.css.map */
