* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#fade {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
#fade.out {
  opacity: 0;
}

/* POPUP */
h2,
h4 {
  text-align: center;
}
.contenedor {
  max-width: 1080px;
  margin: auto;
}
.popup {
  margin: auto;
  border: 1px solid rgb(212, 212, 212);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 600px;
  transition: 0.4s ease all;
  transform: scale(0.7);
  opacity: 0;
}
.cerrar-popup {
  display: flex;
  justify-content: flex-end;
  color: gray;
  text-decoration: none !important;
}

.popup h2 {
  opacity: 0;
}
.popup h4 {
  opacity: 0;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.overlay.active {
  visibility: visible;
}

/* Animaciones del POPUP */
.popup.active {
  opacity: 1;
  transform: scale(1);
}
.popup.active h2 {
  /* 0.8 es el tiempo que dura la animación */
  /* 0.5 es el tiempo que tarda para ejecutar la animacion */
  animation: entradaTitulo 0.8s ease 0.5s forwards;
}
.popup.active h4 {
  animation: entradaSubTitulo 0.8s ease 0.5s forwards;
}

@keyframes entradaTitulo {
  from {
    transform: translateY(-25px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* iconosMateriaDesing */
.is-m.red,
.is-m.gray {
  cursor: pointer;
}
.is-m {
  font-size: 2.5em;
}
.red {
  color: rgb(200, 36, 25);
}
.gray {
  color: rgb(184, 184, 184);
}

.img-miniatura {
  width: 44px;
  height: 44px;
  border: 1px solid #d5d5d5;
  padding: 2px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

/* Light Box Star */
/*.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 800px;
}
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}*/
.user-photo{
  width: 128px;
}
@media (max-width: 740px) {
  .thHidden{ display: none !important;} 
  a.dropdown-item { font-size: 1.4em !important;}
}

.btn-custom {
  border-radius: 34px;
  width: 64px;
  height: 64px;
  background-color: #ff3450;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdownCustom {
  position: fixed;
   right: 20px !important;
  bottom: 40px !important;
}
.fac { font-size: 28px !important;}

.font12{
  font-size: 12px;
}