/*** Modal CSS ***/
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
    /*background-color: #f3f0e4;*/
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 57%;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px #5E5E5E;
    border-radius: 0;
    padding: 25px;
}

.mb-fix{
    max-height: 500px;
    padding-bottom: 20px;
    overflow-y: auto;
}
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    top: 0;
}

.close:hover,
.close:focus {
    color: #212121;
    text-decoration: none;
    cursor: pointer;
}
.modal-content .listElement, .modal-content .subListElement {
    margin: 10px 40px;
}
.modal-content .subListElement {
    list-style-type: circle;
    margin: 10px 80px;
}
.modal-content .supSubListElement {
    list-style-type: circle;
    margin: 10px 100px;
}
.modal-content .modalTitle, .modal-content .modalBody p {
    margin-bottom: 10px;
}
.modal-content .modalTitle {
    /*color: #cc651a;*/
    color: #000000;
    margin: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
}