
/**********  POPUP (Cody House CSS) ************/
.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(60, 60, 60, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s, z-index 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s, z-index 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s, z-index 0s 0.4s;
}

.cd-popup.is-visible {
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
    transition: opacity 0.4s 0s, visibility 0s 0s;
}

.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 720px;
    margin: 4em auto;
    background: #FFF;
    padding: 0px;
    border-radius: .25em .25em .4em .4em;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .cd-popup-container div.content { overflow: auto; padding: 0 1em; height: 85%; }

        .cd-popup-container div.content h3 { margin-bottom: 15px; }

    .cd-popup-container div.footer { height: 15%; }

        .cd-popup-container div.footer button { margin-top: 20px; }

    .cd-popup-container .cd-popup-close { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; cursor: pointer; }

.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}

.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}

.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}

.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin: 8em auto;
    }
}
/***********************************************/


/******   NOVEL-T STYLES   *****/

.divPopupTitle {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 20px;
    font-family: 'RobotoMedium';
    font-size: 20px;
    padding: 10px;
    box-shadow: 0px 2px 4px 0px #adadad;
    -webkit-box-shadow: 0px 2px 4px 0px #adadad;
    -moz-box-shadow: 0px 2px 4px 0px #adadad;
    -o-box-shadow: 0px 2px 4px 0px #adadad;
}
/*********************/