@font-face {
    font-family: 'Lato';
    src: url(assets/font/lato/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Lato';
    src: url(assets/font/lato/Lato-Bold.ttf);
    font-weight: bold;
}

* {
    font-family: 'Lato', sans-serif;
    margin: 0;
    color: #333;
}

body {
    display: none;
}
  
.left-container, .right-container {
    display: flex;
    flex-direction: column;
    width: calc(100% - 64px);
    padding: 32px;
}

.time {
    display: flex;
    font-weight: bolder;
    font-size: 50px;
    justify-content: center;
    color: #e74c3c;
}

.time > div {
    color: #e74c3c;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.not_found {
    display: none;
    text-align: center;
}

.birthday_person {
    display: flex;
    padding-bottom: 8px;
    padding-top: 8px;
    font-size: 25px;
}

.birthday_person:last-child {
    padding-bottom: 0;
}

.birthday_photo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border:outset 1.5px;
    margin-right: 16px;
    overflow: hidden;
    flex-shrink: 0;        
    background-color: #ecf0f1;
}

.birthday_person img {
    width: 100%;
}

.birthday_information {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.birthday_information p {
    margin-top: 2px;
    font-size: 35px;
}

.news {
    display: flex;
    padding-bottom: 8px;
    padding-top: 8px;       
}

.news:first-child {
    padding-bottom: 0;
}

.news_information {
    width: 100%;
    padding-right: 3px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 5px;
    background-color: #ecf0f1; 
    border-left-style: solid;
}

.news_information h4 {
font-size: 30px;
}

.news_information h5 {
font-size: 25px;
}

.portarias {
    width: 71vh;
    height: 100vh;
    flex-shrink: 0;
}

.portarias > div {
    width: 71vh;
    height: 100vh;
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

#portarias {
    width: 71vh;
    height: 100vh;
}

.banner {
    display: none;
    width: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inform {
    display: flex;
    margin-bottom: 16px;
    font-size: 30px;
}

.inform:last-child {
    margin-bottom: 0;
}

.inform > div {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    background-color: red;
}

.logos {
    position: fixed;
    bottom: 16px;
    right: 16px;
}

.logos a {
    text-decoration: none;
}

.logos img {
    height: 50px;
    opacity: 0.8;
}

.if-white {
    display: none;
}

.logos-adjusted {
    position: relative;
    bottom: 0;
    right: 0;
    order: 3;
    background-color: #333;
    padding: 10px;
    text-align: center;
    font-size: 0;
}

.logos-adjusted > img {
    opacity: 1;
}

.logos-adjusted .if-black {
    display: none;
}

.logos-adjusted .if-white {
    display: inline;
}

@keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner {
    margin-top: 20px;
    width: 35px;
    height: 35px;
    align-self: center;
}

.spinner div:before, .spinner-portaria:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border-top: 2px solid #333;
    border-right: 2px solid transparent;
    -webkit-animation: spinner .6s linear infinite;
    animation: spinner .6s linear infinite;
}

.spinner-portaria:before {
    left: 50%;
    bottom: 50%;
    margin-top: -17.5px;
    margin-left: -17.5px;
}