.promotion {
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    background-color: #343741;
    background-image: url('../../../img/layout/dot-pattern.png');
    background-position: center center;
    background-size: cover;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.promotion--dismissed {
    display: none;
}

&:after {
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .75;
}

/* overlay color options */
.promotion--red {
    &:after {
        content: '';
        background-color: var(--brand-red);
    }
}

.promotion--green {
    &:after {
        content: '';
        background-color: var(--brand-green);
    }
}

.promotion--grey-dark {
    &:after {
        content: '';
        background-color: var(--brand-grey-dark);
    }
}

.promotion--grey-light {
    &:after {
        content: '';
        background-color: var(--brand-grey-light);
    }
}

.promotion__content {
    position: relative;
    z-index: 10;
}

.promotion__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 30px;

    @media (min-width:768px) {
        font-size: 40px;
    }
}

.promotion__text {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF;

    p {
        margin-bottom: 10px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    @media (min-width:768px) {
        font-size: 20px;
    }
}

.promotion__dismiss {
    display: block;
    margin-top: 10px;
    color: #FFF;
    text-decoration: underline;
    transition: color .2s ease-in-out;

    svg {
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
        width: 30px;
        height: 30px;


        path,
        circle {
            stroke: #FFF;
            transition: stroke .2s ease-in-out;
        }
    }

    &:hover,
    &:focus {
        color: #FFF;

        svg {

            path,
            circle {
                stroke: #FFF;
            }
        }
    }
}