.background_body{
  background-image: url("https://www.mohfetcorp.cl/images/background_web.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.background_color_success {
  background-color: #00BB2D !important;
}

.background_color_error {
  background-color: #FF0000 !important;
}

.title{
  font-size: 28px;
}

.subtitle{
  font-size: 18px;
}

.capitalText{
  text-transform: capitalize;
}

.uppercaseText{
  text-transform: uppercase;
}
.text-center{
  text-align: center;
}

.justifyText{
  text-align: justify;
}

.colorSocialTeacher{
  color: #cccccc;
}

.thisHover :hover{
  color: #000000;
}
.clickme{
  cursor: pointer;
}
/* estilo para el date datepicker*/
.vdp-datepicker input{
  width: 100%;
  border-radius: 0.375rem;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  height: calc(1.5em + .75rem + 2px);
}

/*galeria de imagenes*/
.gallery{
  margin: 10px 50px;
}

.gallery img{
  width: 230px;
  padding: 5px;
  filter: grayscale(100%);
  transition: 1s;
}

.gallery img:hover{
  filter: grayscale(0);
  transform: scale(1.1);
}

.padding-btn-back{
  padding-bottom: 20px;
}


/* estilo cambio de idioma */
.langStyle{
  width: 25%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .langStyle{
    width: 10%;
    margin-left: 0px;
  }
}

@media only screen and (max-device-width : 320px){
  .langStyle{
    width: 10%;
    margin-left: 0px;
  }
}

/* estilos carrito de compras */

.separation_div{
  padding-left: 20px;
  padding-right: 20px
}

.products_item{
  background-color: #cccccc;
  margin-top: 10px;
  padding-top: 10px
}

.delete_btn{
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: red
}


/* sombra para opencourse dashboard*/
.shadow_img {
-webkit-box-shadow: 0px 10px 13px -7px #000000, 1px 5px 7px 6px rgba(0,0,0,0.03);
box-shadow: 0px 10px 13px -7px #000000, 1px 5px 7px 6px rgba(0,0,0,0.03);
}

.btn-wsp{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#25d366;
  color:#FFF;
}

.btn-trash{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#ff0000;
  color:#FFF;
}

.btn-blue{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#0500ff;
  color:#FFF;
}

.btn-war{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#f7fc00;
  color:#CCC;
}

.showTitles{
  display: none;
}

.notShow{
  display: block;
}

.notClick{
  pointer-events:none;
  background-color: #cccccc;
  color:#FFF;
}



@media only screen and (max-width: 600px) {
  .showTitles{
    display: block;
  }
  .notShow{
    display: none;
  }
}

@media only screen and (max-device-width : 320px){
  .showTitles{
    display: block;
  }
  .notShow{
    display: none;
  }
}


/* desde aqui clases para spinner */
/*
para implementar usar lo siguiente
<div v-if="load == true" class="cortina">
  <div class='spinner centerSpinner'></div>
</div>
*/
.spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  border-radius: 50%;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cortina {
  width: 1920px;
  height: 884px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #cccccc;
  opacity: .8;
  }

  .centerSpinner {
     position: absolute;
     top: 80%;
     left: 70%;
     margin: -15% 0 0 -25%;
  }

/* hasta aqui clases para spinner */
