﻿.modal-popup {
    overflow: scroll;
    background: white;
    position: fixed;
    top: 50px;
    left: 0px;
    right: 0px;
    bottom: 50px;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.2);
}

.contentArea {
    padding: 20px;
    padding-top: 5px;
}

    .contentArea .row {
        margin-top: -15px;
    }

#glossaryPage {
    display: none;
}

#homePage {
    display: none;
}

#helpPage {
    display: none;
}

#homePage .content {
    width: 100%;
    height: 200px;
    background: white;
    margin-top: 10px;
    float: left;
    overflow: hidden;
    max-height: 200px;
}

    #homePage .content img {
        width: 100%;
    }

.homeTitle {
    height: 50px;
    background: black;
    opacity: 0.8;
    color: #FFF;
    position: absolute;
    margin-top: 40px;
    padding: 10px;
    font-size: 22px;
}

.sortable-content[is-modal='true'] {
    z-index: 999999999999999999;
    background: white;
    box-shadow: 0px 0px 15px rgba(0,0,0,.5);
    position:absolute!important;
    top: 20px!important;
    width:60%;
    margin:0 auto;
    padding:20px!important;
    left:0!important;
    right:0;
}

.sortable-content[is-modal='true'] video {
    padding: 0!important;
}

.sortable-content[is-modal='true'].hideModal {
    display: block!important;
    visibility: hidden;
    opacity: 0;
    transition: all;
    transition-delay: .3s;
}

.sortable-content[is-modal='true'].showModal {
    display: block!important;
    visibility: visible;
    opacity: 1;
    transition: all;
    transition-delay: .1s;
}



@media screen and (max-width:1199px) {
    .sortable-content[is-modal='true'] {
        width:72%;
    }
}
    
    