/*
html {
  overflow-y: scroll;
}
*/

.rfmModal {
    display: none;
}

.rfmModalClick {
    cursor: pointer;
}

.rfmModalShade {
    display: none;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.rfmModalShow {
    position: relative;
    margin: 3% auto;
    padding: 0 10px;
    height: 80%;
    min-width: 600px;
    max-width: 80%;
    width: 80%;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
    background-clip: padding-box;
    border-color: rgba(211, 211, 211, 0.85);
    border-width: 10px;
    border-radius: 5px;
    border-style: solid;
}

.rfmModalClose {
    //position: fixed;
    color: white;
    float: right;
    font-size: 4.0rem;
    font-weight: bold;
    line-height: 46px;
    text-align: center;
    background: red;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.rfmModalClose:hover, .rfmModalClose:focus {
    color: silver;
    text-decoration: none;
    cursor: pointer;
}
