/*
Project: 16-17_3-12
Author: Richy Thomas
Color Palette: Violet: #B64286 , Teal: #187466
*/

.popupBox .modal-body p {
  font-size: 30px;
}

.box {
  cursor: pointer;
}

.box:hover {
  animation-duration: 1s;
  animation-delay: 0.1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-name: pulse;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.1s;
  -moz-animation-timing-function: ease;
  -moz-animation-fill-mode: both;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: pulse;
}

.box a {
  text-decoration: none;
  display: block;
  color: #555;
}

.highlight.reveal {
  background: yellow!important;
  text-decoration: underline;
}

.popup {
  cursor: pointer;
}

.text-entry {
  min-height: 230px;
}

/* Tablet */
@media(min-width: 768px){

  .box-half {
    height: 270px;
  }

  .box-third {
    height: 210px;
  }

}

/* Desktop */
@media(min-width:992px){

  .box-half {
    height: 240px;
  }

  .box-third {
    height: 160px;
  }

}

/* Large Desktop */
@media(min-width:1200px){

  .box-half {
    height: 210px;
  }

}

/* Print */
@media print {


}