#fam-modal{
  visibility: hidden;
  position: relative;
  z-index: -1;
  transition: .6s ease;
  opacity: 0;
}

#fam-modal.fade-in{
  opacity: 1;
}

#fam-modal:before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0, 0.6);
  z-index: 1000;
}

.fam-modal-content{
  overflow: auto;
  height: 95%;
}

.fam-modal-overlay{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0, 0.6);
  z-index: 1000;
}

.fam-modal-wrap{
  position: fixed;
  z-index: 1002;
  background-color: #FFF;
  width: 90%;
  height: 85%;
  left: 5%;
  top: 7.5%;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-top: 45px;
}

@media(min-width: 768px){
  .fam-modal-wrap{
    width: 80%;
    max-width: 1200px;
    transform: translate(-50%, 0);
    left: 50%
  }
}

#fam-modal .fam-modal-wrap > .fam-modal-close{
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  cursor: pointer;
  width: 20px;
  text-align: center;
}