﻿.mab-root {
    display: none;
}

    .mab-root .mab-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        background-color: white;
        border-bottom: 1px solid #d0d0d0;
        box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.2);
    }

    .mab-root .mab-deeplink {
        flex-grow: 1;
        flex-shrink: 1; /* IE */
        width: 100%; /* IE */
        padding: 0.5rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .mab-root .mab-appicon-image {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .mab-root .mab-message {
        flex-grow: 1;
        flex-shrink: 1; /* IE */
        width: 100%; /* IE */
        padding: 0 1rem;
        box-sizing: border-box;
        font-size: 1rem;
        font-weight: 500;
        color: #4a4a4a;
    }

    .mab-root .mab-action-button {
        flex-shrink: 0;
        background-color: #183792;
    }

        .mab-root .mab-action-button:hover {
            background-color: #153184;
        }

    .mab-root .mab-hide-button {
        flex-shrink: 0;
        padding: 1rem;
        box-sizing: border-box;
        font-size: 1.5rem;
        color: #737373;
        border: none;
        background: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

@media (max-width: 768px) {
    .mab-root {
        display: block;
    }
}