﻿/***************************************************************
    Bootstrap classes
****************************************************************/
.modal-dialog {
    margin: 20px 0px 0px;
}
.modal-content {
    border-radius: 0px;
    padding-bottom: 30px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .15);
}
.modal-header {
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 0px;
}
.modal-body {
    padding-top: 0px;
    padding-bottom: 0px;
}
.modal-footer {
    border-top: none;
}
.modal-backdrop {
    background-color: #405e7c;
}
.modal-backdrop.in {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInModal;
    animation-name: fadeInModal;
}

/***************************************************************
    Global - all modals
****************************************************************/
.close-icon {
    float: right;
    margin-top: 20px;
    margin-right: 3px;
    cursor: pointer;
}
.close-icon img {
    width: 20px;
    height: 20px;
}
.modal-content h1 {
    margin-top: 60px;
    margin-bottom: 0px;
    line-height: 115%;
    font-weight: 700;
    font-size: 20px;
}
.modal-text {
    float: none;
}
.modal-text p {
    color: #555555;
    margin: 15px auto;
    line-height: 20px;
    font-size: 12px;
}

/**************************************************
    Ancillary Modals
**************************************************/
.state-licenses {
    margin-bottom: 15px;
}
.license {
    color: #555555;
    font-size: 12px;
    margin-top: 10px;
}
ol.conduct {
    list-style-type: lower-alpha;
    margin-bottom: 15px;
}
ol.conduct li {
    color: #555555;
    font-size: 12px;
    margin-top: 10px;
}


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /***************************************************************
        Bootstrap classes
    ****************************************************************/
    .modal-dialog {
        width: 100%;
        margin: 30px auto;
    }
    .modal-content {
        border-radius: 0px;
        padding-bottom: 30px;
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    }
    .modal-header {
        padding-bottom: 15px;
    }

    /***************************************************************
        Global - all modals
    ****************************************************************/
    .modal.extra-top-margin {
        margin-top: 130px;
    }
    .close-icon {
        margin-top: 25px;
        margin-right: 10px;
    }
    .close-icon img {
        width: 15px;
        height: 15px;
    }
    .modal-content h1 {
        font-size: 28px;
    }
    h1.reduce-width {
        max-width: 60%;
        margin-right: auto;
        margin-left: auto;
    }
    .modal-text p {
        font-size: 16px;
        margin: 30px auto;
        line-height: 24px;
    }
    
    /**************************************************
        Ancillary Modals
    **************************************************/
    .modal.program-facts.in,
    .modal.already-submitted.in {
        padding-right: 0px !important;
    }
    .state-licenses {
        margin-bottom: 30px;
    }
    .license {
        font-size: 14px;
    }
    ol.conduct {
        margin-bottom: 30px;
    }
    ol.conduct li {
        font-size: 14px;
    }
}


/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .modal-dialog {
        width: 900px;
        margin: 30px auto;
    }
    .modal-content {
        border-radius: 6px;
    }
}