@charset "UTF-8";
/*******************************************************************************
** 
** Nombre de archivo: variables.scss
**
** Descripción: Este archivo tiene los estilos básicos del template para cursos en forma de variables
**              bajo ningún motivo se deben agregar nuevas variables o eliminar las existentes.
**              En caso de querer agregar nuevas variables utilice el archivo estilos.scss.
**
*******************************************************************************/
@font-face {
  font-family: "Cabin-Bold";
  src: url("../fonts/Cabin-Bold.ttf");
}

@font-face {
  font-family: "Cabin-Regular";
  src: url("../fonts/Cabin-Regular.ttf");
}

@font-face {
  font-family: "Jenevers-Regular";
  src: url("../fonts/TTJenevers-Regular.ttf");
}

.drag {
  width: 100%;
  height: 100%;
  background: #7ba4dbff;
  position: relative;
}

.drag__instructions {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
}

.drag__instructions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
}

.drag__instructions__content__image {
  width: 30% !important;
}

@media (min-height: 800px) {
  .drag__instructions__content__image {
    width: 40% !important;
  }
}

@media only screen and (max-width: 500px) {
  .drag__instructions__content__image {
    width: 55% !important;
  }
}

.drag__instructions__content__button {
  background-color: #ffffff;
  color: #7ba4dbff !important;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 45px;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 18px !important;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media (min-height: 800px) {
  .drag__instructions__content__button {
    width: 40% !important;
  }
}

@media only screen and (max-width: 500px) {
  .drag__instructions__content__button {
    width: 55% !important;
  }
}

.drag__instructions__content__button:hover {
  background-color: #7ba4dbff;
  color: #ffffff !important;
}

.drag__main {
  width: 100%;
  height: 100%;
}

.drag__main__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0% 3%;
}

.drag__main__header__turn, .drag__main__header__kind {
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 15px;
}

@media (min-height: 800px) {
  .drag__main__header__turn, .drag__main__header__kind {
    font-size: 18px;
  }
}

.drag__main__section1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-height: 800px) {
  .drag__main__section1 {
    margin-top: 10%;
  }
}

.drag__main__section1__image {
  width: 18% !important;
  margin-left: 10%;
}

.drag__main__section1__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  background: #28334aff;
  padding: 3%;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  outline: 1px solid #28334aff;
  outline-offset: 5px;
  border-radius: 20px;
  -ms-flex-item-align: center;
      align-self: center;
}

@media only screen and (max-width: 900px) {
  .drag__main__section1__text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .drag__main__section1__text {
    font-size: 18px;
  }
}

.drag__main__section2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drag__main__section2__option {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 80%;
  background: #edededff;
  color: #28334aff;
  text-align: center;
  margin-top: 2%;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 30px;
}

@media only screen and (max-width: 900px) {
  .drag__main__section2__option {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .drag__main__section2__option {
    font-size: 18px;
  }
}

@media (min-height: 800px) {
  .drag__main__section2__option {
    margin: 3%;
  }
}
/*# sourceMappingURL=drag.css.map */