/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.itrust-footer-banner {
    position: fixed;
    left: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    z-index: 100000;
}

.banner-container {
    width: 450px;
    height: 60px;
    overflow: hidden;
}

.banner-container img {
    width: 450px;
    height: 60px;
}

@media (max-width: 1024px) {
    .banner-container {
        width: 306px;
        height: 40px;
    }

    .banner-container img {
        width: 306px;
        height: 40px;
    }
}

.banner-container img {
    max-width: unset !important;
}

.toggle-button {
    background-color: #000;
    color: #fff;
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 40px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .toggle-button {
        width: 20px;
        height: 40px;
    }
}

.toggle-button:hover {
    opacity: 1;
}