.popup-overlay {
  /*Hides pop-up when there is no "active" class*/
 position: relative;
    background: #F1F3F4;
    border: 3px solid #666666;
    width: 100%;
    height: 0%;
    top: -20px;
    display:none;
    padding:10px;
}

.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  display:block;
  text-align: center;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
  display: none;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  display: block;
}



.open :hover {
  color: #FBB122 !important;
  cursor:pointer;
}

.content H2 {
      font-size: 23px !important;
}

button.close {
    top: -20px !important;
    position: relative !important;
    left: -10px !important;
    color: red !important;
}

.close {
    
    font-size: 16.5px !important;
}


@media (min-width: 320px) and (max-width: 480px) {
  
  .column-content-inner p{
    padding-left:0px !important;
  }
  
}
