﻿.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.hiddenObrigatorio {
    display: none !important;
    visibility: hidden !important;
}

.showObrigaotiro {
    display: flex !important;
}

.notification {
    display: none; /* Escondido por padrão */
    background-color: #ff0000;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    position: fixed;
    z-index: 99999;
    right: 30px;
    top: 30px;
    width: 450px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

    .notification .closebtn {
        margin-left: 15px;
        color: white;
        font-weight: bold;
        float: right;
        font-size: 22px;
        line-height: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .notification .closebtn:hover {
            color: black;
        }

.col-cep {
    margin-top: 24px;
}

@media (min-width: 1554px) {
}

.user-header-gov {
    height: 100px;
    padding: 10px;
    text-align: center;
}

.user-header-gov p {
    color: black;
}
