.infoflex-overlay-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  z-index: 2000;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
}
.infoflex-overlay-content {
  max-width: 800px;
  margin: 80px auto 15px;
  width: 80%;
  border: 1px solid #cccaca;
  padding: 20px;
  background-color: white;
}
.close-overlay-wrapper {
  text-align: right;
  margin-top: 0;
}
.close-overlay{
  display: inline-block;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  -webkit-transition: all 3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px;
  font-weight: bold;
}
.close-overlay:hover{
  cursor: pointer;
  background-color: #fff;
  color: #333;
}
