.modal-comunicado {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10500;
    display: none;
    overflow: hidden;
    outline: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.65)
}

.modal-area {
    position: relative;
    pointer-events: none;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    top: 20vh;
    margin: 0 auto;
    width: 90%;
    max-width: 670px;
    box-shadow: 2px 2px 66px #0000000D
}

@media (max-width: 374px) {
    .modal-area {
        top: 10vh
    }
}

.modal-area .btn-close {
    position: absolute;
    right: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    top: 10px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 9999
}

.modal-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    /* border-top: 8px solid #1f648c; */
    border-top: 8px solid #4E4B50;
    border-radius: 3px;
    background-color: #FFFFFF
}

.modal-bbody {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-x: hidden
}

.modal-bbody .top {
    height: 150px;
    width: 100%;
    /* background-color: #1d5576; */
    background-color: #4E4B50;
    padding: 35px 50px 10px
}

.modal-bbody .title {
    font-weight: 500;
    font-size: 1.75em;
    text-align: center;
    line-height: 34px;
    color: #fff
}

.modal-bbody .principal {
    width: 100%;
    height: 100%;
    padding: 40px 20px
}

@media (min-width: 768px) {
    .modal-bbody .top {
        padding: 50px 50px 20px
    }
    .modal-bbody .principal {
        padding: 50px 50px
    }
}

.modal-bbody .txt {
    font-weight: 400;
    font-size: 1.25em;
    text-align: center;
    line-height: 24px;
    color: #777777
}

.modal-bbody .btn-modal {
    width: 270px;
    height: 60px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1.25em;
    text-align: center;
    line-height: 1.2;
    background-color: #DD4645;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 3px;
    margin: 40px auto 0
}

.modal-bbody .btn-modal:hover {
    background-color: #B7393A;
}

@media (max-width: 374px) {
    .modal-bbody .btn-modal {
        width: 240px
    }
}