.plugins.generic.popupPlugin {
    display: none; 
    position: fixed; 
    z-index: 1000001; 
    background-color: #f5f5f5; 
    width: 95%; 
    max-width: 800px; 
    max-height: 800px;
    height: 95%; 
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);     
    box-sizing: border-box;
    padding: 10px;
    padding-top: 0px;
    color: #444;
    line-height: 1.5;
    font-size: 14px;
}
.plugins.generic.popupPlugin .content {
    background-color: #fff;
    box-sizing: border-box;
    width: 100%;
    height: 90%;
    overflow: auto;
    padding: 10px;
    border: solid #c5d3eb 1px;
    border-radius: 2px;
}
.plugins.generic.popupPlugin .header {
    width: 100%;
    height: 10%;
    position: relative;
}
.plugins.generic.popupPlugin .header h3 {
    padding-top: 0px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0, -50%);
    width: 80%;
    overflow: hidden;
}
.plugins.generic.popupPlugin ol li {
    margin-bottom: 15px;
}
.plugins.generic.popupPlugin .header .button.closeButton {
    position: absolute;
    transform: translate(0, -50%);
    right: 0px;
    top: 50%;
    height: auto;
    box-sizing: border-box;
    margin-top: 0px;
    opacity: 0.4;
    cursor: pointer;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 1000003;
}
.plugins.generic.popupFogg {
    background-color: #3b547f;
}
@media screen and (max-height: 600px){  
    .plugins.generic.popupPlugin .content {
        height: 80%;
    }
    .plugins.generic.popupPlugin .header {
        height: 20%;
    }
    .plugins.generic.popupPlugin .header h3 {
        font-size: 18px;
    }
}
