/*
Pure CSS modal box
Author: Jorge Chavez
Github: http://github.com/jorgechavz
*/


.pure-modal .checkbox{
  display: none;
}

/* Gray background */
.pure-modal .pure-modal-overlay{
  opacity: 0;
  transition: all 0.3s ease;
  width: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  transform: scale(1);
  display: none;
  background-color: rgba(0,0,0,0.8);
}

/* Box */
.pure-modal .pure-modal-wrap{
  background:#fdfbfb ;
  border-radius: 0.2em;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 40px 65px;
  width: 60%;
  margin: 20px auto;
  align-self: flex-start;
  transition: all 0.5s ease;
}
.pure-modal .pure-modal-wrap.small{
  width: 30%;
}
.pure-modal .pure-modal-wrap.full{
  width: 100%;
  height: 100%;
}

.pure-modal .pure-modal-wrap.a-center {
  align-self: center;
}
.pure-modal .pure-modal-wrap.from-left {
  transform: translateX(-100%);
}
.pure-modal .pure-modal-wrap.from-right {
  transform: translateX(100%);
}
.pure-modal .pure-modal-wrap.from-top {
  transform: translateY(-100%);
}
.pure-modal .pure-modal-wrap.from-bottom {
  transform: translateY(100%);
}


/* Close button */
.pure-modal .pure-modal-overlay .close{
  display: flex;
  flex-direction: column;
  align-content: center;
  background: #BF2431;
  border-radius: 0.2em;
  justify-content: center;
  text-align:center;
  top: 80%
  font-size: 15px;
  width: 180px;
  height: 50px;
  color: #FFFF;
}

.pure-modal .pure-modal-overlay .close:hover{
  cursor: pointer;
  background-color: #d1d1d1;
  color: #4b5361;
  transition: all 0.3s ease;
}


 .pure-modal .o-close {
   width: 100%;
   height: 100%;
   position: fixed;
   left: 0;
   top: 0;
   z-index: -100;
 }

.pure-modal input:checked ~ .o-close {
  z-index: 9998;
}
.pure-modal input:checked ~ .pure-modal-overlay{
  transform: scale(1);
  opacity:1;
  z-index: 9997;
  overflow: auto;
  display: flex;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.pure-modal input:checked ~ .pure-modal-overlay .pure-modal-wrap {
  transform: translateY(0);
  z-index: 9999;
}

/* Responsive Design */
/* Tablet size */
@media (max-width: 800px){
  .pure-modal .pure-modal-wrap {
    width: 80%;
    padding: 20px;
  }
}
@media screen and (max-width: 650px) {
  h1{
    font-size: 12px;
  }
.pure-modal .pure-modal-overlay .close{
  display: flex;
  flex-direction: column;
  align-content: center;
  background: #BF2431;
  border-radius: 0.2em;
  justify-content: center;
  text-align:center;
  top: 80%
  font-size: 11px;
  width: 140px;
  height: 40px;
  color: #FFFF;
}
  .container {
   flex-direction: column;
   justify-content: center;

  }
img{
  width: auto;
  height: auto;
}
 #column {
  max-width: 100%; height: auto;
  align: center;
  padding: 5px 15px 5px 15px;

}
 #column2 {
  max-width: 400px;
  align: center;
  padding: 5px 5px 5px 5px;

}

 #column3 {
 max-width: auto; height: auto;;
  align: center;
  padding: 5px 5px 5px 5px;

}
#information article time2 {
font-size: 14px;
position: absolute;
left: 10px;
color: var(--red);
}
}

