body .civic-lights-out,
html .civic-lights-out {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 0;
    background: #000000;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    opacity: 0;
    visibility: hidden;
}
body.civic-hit-the-lights,
html.civic-hit-the-lights {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    -webkit-overflow-scrolling: auto;
}
body.civic-hit-the-lights .civic-lights-out,
html.civic-hit-the-lights .civic-lights-out {
    opacity: 0.80;
    visibility: visible;
    z-index: 999970;
}
#civic-iframe-zone {
    width: 100%;
    padding: 5px;
}
#civic-sr-frame {
    display: inherit;
    border-radius: 4px;
}
.civic-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999971;
    opacity: 0;
    visibility: hidden;
}
.civic-modal .civic-window {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999972;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 650px; 
    min-width: 300px;
    min-height: 400px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transform: translateY(40px);
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}
.civic-modal.civic-show .civic-window {
    transform: translateY(0px);
}
@media only screen and (max-width: 670px) {
    .civic-modal .civic-window {
        max-width: 92%;
    }
}
@media only screen and (max-height: 720px) {
    .civic-modal .civic-window {
        max-height: 90%;
    }
    #civic-iframe-zone {
        height: 100%;
    }
    #civic-sr-frame {
        height: 100% !important;
        width: 100% !important;
    }
}
.civic-modal .civic-window .civic-content {
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffffff;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -moz-box-shadow: 0 0 20px 0 rgba(32, 33, 33, 0.16);
    -webkit-box-shadow: 0 0 20px 0 rgba(32, 33, 33, 0.16);
    box-shadow: 0 0 20px 0 rgba(32, 33, 33, 0.16);
}
.civic-modal.civic-show {
    opacity: 1;
    visibility: visible;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
