/* Popup container */
.gf-popup {
    position: relative;
    /*display: inline-block;*/
    font-style: italic;
    cursor: pointer;
    color: #da291c;
    padding: 0 3px;
    border-width: 1px;
    border-radius: 2px;
    border-style: solid;
    border-color: #da291c;
}
  
/* The actual popup (appears on top) */
.gf-popuptext {
    visibility: hidden;
    width: 700px;
    background-color: #eee;
    color: #000;
    text-align: left;
    font-style: normal;
    padding: 15px 15px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left:-150px;
    margin-left: auto;
    margin-right: auto;
    border-width: 3px;
    border-style: solid;
    border-color: #da291c;
    border-radius: 6px;
    line-height:1.5em;
}
  

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.show {
    visibility: visible;
    animation: fadeIn 1s;
}
  
