@font-face {
    font-family: 'ubuntu';
    font-style: normal;
    font-weight: 400;
    src: local('ubuntu'), local('Ubuntu-Regular'), url(../fonts/ubuntu/Ubuntu-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Noto Sans';
    src: local('Noto Sans'), local('NotoSans-Regular'), url(../fonts/noto sans/NotoSans-Regular.ttf) format('truetype');
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    transition: .4s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
}

.data-modal-content {
    max-width: 400px;
    width: 100%;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    background-color: #2bade3;
    color: #fff;
    padding: 20px;
}

.data-modal-content h3 {
    font-family: ubuntu;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.data-modal-content h3:after {
    content: '';
    display: block;
    border-bottom: 3px solid #353535;
    margin-left: -70px;
    position: relative;
    bottom: 0;
    left: 50%;
    width: 150px;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #000;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #00aff0, #fff, #00aff0);
}

.data-modal-content p {
    text-align: center;
    font-size: 15px;
    font-family: ubuntu;
    padding: 10px 10px 10px 10px;
    /*font-family: 'Noto Sans', sans-serif;*/
}

.modal-opened {
    opacity: 1;
    visibility: visible;
}

.fechar-modal {
    position: absolute;
    right: 20px;
    top: 11px;
    background: transparent;
    /* border-radius: 30px; */
    width: 30px;
    height: 30px;
    font-size: 30px;
    /*line-height: 20px;*/
    border: none;
    /* color: #000; */
    font-weight: 700
}
