#company-logo-container {
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

.breathing {
    animation: breathing 5s ease-out infinite normal;
    -webkit-animation: breathing 5s ease-out infinite normal;
    -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* Hack for Log out image (to be removed when we get the extension and all clients updated */
img[alt="AgencyRoot, LLC"] {
    content: url("https://cdn.agencyroot.com/images/agencyroot-everag-logo.png");
    height: auto !important;
    max-width: 500px !important;
}

/* Hack for breathing logo size limitation */
img[alt="Company Logo"] {
    width: 400px !important;
    height: auto !important;
    max-width: 400px !important;
}

/* Hack for Grain Marketing image */
img[src="images/agencyroot-logo.png"] {
    content: url(https://cdn.agencyroot.com/images/agencyroot-logo.png);
}
