.navbar {
    background-color: #031634;
    height: 30px;
}

.footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #031634;
    color: white;
}

.full-page-container {
    position: absolute;
    height: 100vh;
    width: 100vw;
    margin-top: 0;
    background-color: #031634;
}

.g_id_signin {
    animation-delay: 0.5s;
    margin-top: 5vh;
    margin-left: auto;
    margin-right: auto;
}

.content-displayer {
    padding: 10px;
}

.perry-header {
    margin: 20px;
    text-align: center;
    font-family: "DejaVu Sans";
    font-weight: 900;
    font-size: 25px;
    color: #031634;
}

.appear-delayed {
    animation-name: appear;
    animation-delay: 2.5s;
    animation-fill-mode: both;
}

.hidden {
    visibility: hidden;
}

.hidden-row {
    visibility: collapse;
}

.fee-row:hover + .hidden-row {
    visibility: visible;
}

.fade-in {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.brands {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.brands__item {
    flex: 0 0 50%;
    background: #f5f5f5;
}

.brands__item img {
    width: 150px;
    height: 95px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.brands__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

@media (min-width: 700px) {
    .brands__item {
        flex: 0 0 33.33%;
    }
}

@media (min-width: 1100px) {
    .brands__item {
        flex: 0 0 25%;
    }
}

.slide-right {
    animation-name: slideRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slide-left {
    animation-name: slideLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

#logo {
    margin-top: 8px;
}

#logo_img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    height: 150px;
    margin-top: 20vh;
}

#nav_logo_img {
    display: block;
    height: 30px;
    margin-top: 1.2vh;
    margin-right: 20px;
    margin-left: 0;
}

#main {
    margin-top: 30px;
    margin-bottom: 30px;
    display: none;
}

#loader {
    margin-top: 80px;
    margin-bottom: 30px;
    display: block;
}

#loader-img {
    margin-left: 70px;
    height: 30px;
}

#user_info {
    margin-top: 170px;
    margin-bottom: 50px;
}

#section2 {
    height: 200px;
    padding-bottom: 70px;
}

#nav_chart {
    height: 650px;
}

/* Animations */
@keyframes resize_header {
    from {min-height: 100vh;}
    to {min-height: 50px;}
}

@keyframes resize_logo {
    from {height: 100px; margin-top: 40vh; margin-left: 40vh;}
    to {height: 30px; margin-top: 1.2vh; margin-left: 0}
}

@keyframes appear {
     from {visibility: hidden;}
     to {visibility: visible;}
 }

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes slideRight {
    0% {margin-right:100px;}
    100% {margin-right:0;}
}

@keyframes slideLeft {
    0% {margin-left:100px;}
    100% {margin-left:0;}
}
