
/*=============================================
=            Section newsModal
=============================================*/

#newsModal .modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top: 8px;
}

#newsModal .modal-header .close{
    font-size: 40px;
}

#newsModal .modal-body{
    padding-top: 5px;
}

#newsModal .modal-body #newsTitle{
    text-align: center;
    text-transform: capitalize;
}

#newsModal .modal-body .newsMediaCont{
    display: flex;
    flex-direction: column;
    align-content: center;

    padding: 1rem;
    padding-top: 5px;
}

#newsModal .modal-body .newsBanner, 
#newsModal .modal-body .newsVideo{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 5px;
}

#newsModal .modal-body .newsVideo{
    height: 400px;
}

#newsModal .modal-body #newsText{
    padding: 0 1rem;
    
    text-align: justify;
    font-size: 20px;
}

#newsModal .modal-footer{
    border-top: 0px;
}

#newsModal .modal-footer .btn-close-news{
    background-color: #8C8C8C;
    border: 2px solid #8C8C8C;

    text-align: center;
    color: #fff;
    font-size: 22px;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#newsModal .modal-footer .btn-close-news:hover{
    background-color: #fff;
    color: #8C8C8C;
}

@media (max-width: 500px) {
    #newsModal .modal-body .newsVideo{
        height: 300px;
    }
}

/*=====  End of Section newsModal  ======*/
