// Toasts
.toast {
    border: .1rem solid $core-dark-color;
    border-radius: $border-radius;
    color: $core-light-color;
    display: block;
    padding: 1.4rem;
    @include toast-variant($core-dark-color);
    width: 100%;
    &.toast-primary {
        @include toast-variant($core-color);
    }
    &.toast-success {
        @include toast-variant($control-color-success);
    }
    &.toast-danger {
        @include toast-variant($control-color-danger);
    }
    a {
        color: $core-light-color;
        text-decoration: underline;
        &:hover,
        &:focus,
        &:active {
            opacity: .75;
        }
    }
}