.modalType{
    transition: .3s;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
}
.modalType.active{
    transition: .3s;
    visibility: inherit;
    pointer-events: auto;
    opacity: 1;
}
.modalbg{
    position: fixed;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.75;
    z-index: -1;
    left: 0;
    top: 0;
}
.buttonCloses{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 26px;
    height: 35px;
    cursor: pointer;
}
.buttonCloses span{
    display: block;
    width: 30px;
    height: 1px;
}
.buttonCloses span:first-child{
    transform: rotate(45deg);
    position: relative;
    top: 17px;
    background: #00509e;
}
.buttonCloses span:last-child{
    transform: rotate(-45deg);
    position: relative;
    top: 16px;
    background: #00509e;
}
.mcmodal{
    width: 900px;
    height: auto;
    margin: 50px auto;
    padding: 0;
    max-width: 90%;
    background: #fff;
}
@media only screen and (max-width:767px){
    .mcmodal{margin:0 auto;}
}
.modalTitle{
    padding: 20px 60px 18px 20px;
    border-bottom: 1px solid #d7d7d7;
    position: relative;
    text-transform: capitalize;
    font-family: 'neo_sans_trblack';
    font-size: 22px;
    color: #00509e;
}
.modalTitle h3{
    margin: 0;
    text-transform: capitalize;
    font-family: 'neo_sans_trblack';
    font-size: 24px;
    color: #00509e;
}
.modalTitle h4{
    margin:0;
    text-transform: capitalize;
    font-family: 'neo_sans_trblack';
    font-size: 24px;
    color: #00509e;
}
.modalContent{
    padding: 20px;
    max-height: 80vh;
    overflow: auto;
}
.modalContent strong{
    text-decoration: underline;
    color: red;
}
.modalContent::-webkit-scrollbar-track{
    background: #EEEEEE;
}
.modalContent::-webkit-scrollbar{
    width: 8px;
}
.modalContent::-webkit-scrollbar-thumb{
    background-color: #ddd;
}
.modalContent p{
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 1rem;
}