/**
 *  <figure class="media-figure">
 *      <img class="media__img" src="https://via.placeholder.com/150" />
 *      <figcaption class="media-figure__caption">
 *          food truck yr franzen pabst
 *      </figcaption>
 *  </figure>
 *
 */

@mixin plain-ui__component__modal()
{
    .modal {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;

        padding: 1em;
        z-index: 20;

        display: flex;
        align-items: center;
        justify-content: center;

        &__inner {
            position: relative;
            z-index: 21;

            max-width: 500px;

            .button {
                color: white;
                background-color: transparent;
            }
        }

        &__title {
            font-size: 2rem;
            text-align: center;
            white-space: pre-line;

            margin-bottom: 2rem;

            .icon {
                font-size: 3rem;
            }
        }

        &__title, &__body {
            color: white;
        }

        &__body {
            margin-bottom: 1.5rem;
        }

        &:before {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,.87);
            z-index: 19;
            content: '';
        }
    }
}