/**
 * Уведомления
 */


.ls-alert {
	position: relative;
	background-color: #bbdefb;
	color: rgba(0,0,0,0.75);
	padding: 10px 15px;
	margin-bottom: 15px;
}

.ls-alert:last-child {
    margin-bottom: 0;
}


/* Заголовок */
.ls-alert-title {
    padding-top: 3px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
}

.ls-alert-title:last-child {
    margin-bottom: 0;
}


/* Кнопка закрывающая уведомление */
.ls-alert-close {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    opacity: .6;
}

.ls-alert-close:hover {
    opacity: 1;
}


/**
 * @modifier dismissible
 */
.ls-alert.ls-alert--dismissible {
    padding-right: 35px;
}


/**
 * @modifier error Ошибка
 */
.ls-alert.ls-alert--error {
    background-color: #ffcdd2;
}


/**
 * @modifier success Успешно завершено
 */
 .ls-alert.ls-alert--success {
 	background-color: #c8e6c9;
 }


/**
 * @modifier info Информация
 */
.ls-alert.ls-alert--info {
    background-color: #bbdefb;
}


/**
 * @modifier empty Пусто
 */
.ls-alert.ls-alert--empty {
    background-color: #fafafa;
}
