@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
    box-sizing: border-box;
}

body {
/*    background-color: #296ca8;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding-bottom: 100px; */
}


.filter-container {
    width: 80vw;
    margin-top: 20px;
    max-width: 800px;
}

.filter {
    width: 100%;
    padding: 12px;
}

.post {
    position: relative;
    background: #4992d3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 40px;
    display: flex;
    width: 80vw;
    max-width: 800px;
} 

.post .post-title {
    margin: 0;
}
  
.post .post-body {
   margin: 15px 0 0;
   line-height: 1.3;
}

.post .post-info {
    margin-left: 20px;
}
  
.post .number {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #296ca8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
}

.loader {
    opacity: 0;
    display: flex;
    position: fixed;
    bottom: 250px;
	z-index: 6000;
    transition: opacity 0.3s ease-in;
}

.loader.show {
    opacity: 1;
}

.circle {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #000000;
    margin: 5px;
    animation: bounce 0.5s infinite ease-in-out;
}

.circle:nth-child(2) {
    animation-delay: 0.1s;
}

.circle:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media screen and (prefers-reduced-motion) {
     .circle {
        animation: none;
    }
}