@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
font-family: "Barlow", sans-serif;
color:#292929;
font-size:1rem;
font-size:18px;
line-height:1.75;
background-color: #fbfbfb;
min-height:100vh;
margin:0;
display:flex;
flex-direction:column;
}

main {
min-height: 70vh;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.h1, h1 {
        font-size: 1.8rem;
}

.h3, h3 {
    font-size: 1.5rem;
}

.card {
    background-color: #fff;
}

.list-group-item img {
    vertical-align: middle;
}

.img-fluid {
    max-width: 100%;
    width: 100%;
    height: auto;
    border: 1px solid #d2d2d2;
}

label {
    display: inline-block;
    font-weight: 600;
}

.little {
    font-size: .8rem;
}

.logo {
    font-weight: 900;
}

.clear {
    clear: both
}

.loading-dots {
    display: inline-block;
    text-align: center;
}

.loading-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: #0d6efd; /* Cor do Bootstrap primary */
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.a2a_svg {
    height: 24px !important;
    line-height: 24px !important;
    width: 24px !important
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}


@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    } 40% {
        transform: scale(1.0);
    }
}

footer {
    font-size: .9rem;
}

@media (min-width: 900px) {
    .container, .container-md, .container-sm {
        max-width: 880px;
    }
}