// Toasts .toast { @include toast-variant($dark-color, $gray-color); border-radius: $border-radius; color: $black !important; display: block; padding: $layout-spacing; width: 100%; &.toast-primary { @include toast-variant($gray-color-light, $primary-color); } &.toast-success { @include toast-variant(lighten($success-color, 30%), $success-color); } &.toast-warning { @include toast-variant(lighten($warning-color, 30%), $warning-color); } &.toast-error { @include toast-variant(lighten($error-color, 60%), $error-color); } a { color: $black !important; text-decoration: underline; &:focus, &:hover, &:active, &.active { opacity: .75; } } .btn-clear { margin: $unit-h; } p { &:last-child { margin-bottom: 0; } } }