﻿.brand__logo {
    display: block;
    width: auto;
    max-width: 160px;
    height: 32px;
    object-fit: contain;
    object-position: left center;
}

/* Dark-colored logo displayed on light backgrounds. */
.brand__logo--for-light {
    display: block;
}

/* Light-colored logo displayed on dark backgrounds. */
.brand__logo--for-dark {
    display: none;
}


:root.dark .brand__logo--for-light {
    display: none;
}

:root.dark .brand__logo--for-dark {
    display: block;
}

.justify_text {
    text-align: justify;
}
