.card {
  float: left;
  padding: 0;
  margin-top: 3%;
  width: 250px;
  height: 250px;
  margin-left: 3%;

}

.card .wrapper {
  background-color: blue;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.2);
  background-position: center;
}

.card .wrapper:hover .data {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(calc(180px + 1em));
          transform: translateY(calc(180px + 1em));
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.card .data .content {
  padding: 0em;
  position: relative;
  z-index: 1;
}


.card .title {
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  margin-top: 0px;
}

.card .text {
  height: 100%;
  margin: 0;
}

.card input[type='checkbox'] {
  display: none;
}

.card input[type='checkbox']:checked + .menu-content {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

.tarjeta .content {
  background-color: #fff;
  box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.3);
}
.tarjeta .title a {
  color: #D10024;
}   

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

.overlay.active{
  visibility: visible;
}
.popup{
  background: #f8f8f8;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0.3);
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  width: 650px;
}

.btn_cerrar_popup{
  font-size: 20px;
  line-height: 16px;
  display: block;
  text-align: right;  
}

#btn_abrir_popup{
  cursor: pointer;
}

#btn_cerrar_popup{
  cursor: pointer;
}

.btn_abrir_popup{
  cursor: pointer;
}