/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 07 2020 | 16:22:40 */
#fam-modal{
  display: none;
  position: relative;
  z-index: 1002;
}

#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%;
    left: 10%;
  }
}

#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;
}