/** ACCOUNT PROFILE */
table.notifications-list-table {
	width : 100%;
}

table.notifications-list-table tfoot td {
	text-align  : right;
	padding-top : 18px;
}

table.notifications-list-table tbody .optional {
	display : none;
}

.notifications-list__label {
	display     : flex;
	align-items : center;
	margin      : 0;
	cursor      : pointer;
}

.notifications-list__checkbox-label {
	position         : relative;
	display          : flex;
	flex-shrink      : 0;
	margin-right     : 14px;
	width            : 20px;
	height           : 20px;
	border           : 1px solid #989898;
	background-color : #fff;
}

.notifications-list__checkbox {
	position       : absolute;
	opacity        : 0;
	pointer-events : none;
}

.notifications-list__checkbox-figure {
	display     : flex;
	margin      : auto;
	font-size   : 0.75rem;
	line-height : 1;
	opacity     : 0;
}

.notifications-list__checkbox-figure:before {
	content : '\2713';
	color   : #57ca85;
}

.notifications-list__checkbox:checked + .notifications-list__checkbox-figure {
	opacity : 1;
}

form.notifications-list-form input[disabled]{
	background-color: #d2d2d2;
	color: gray!important;
}

.notifications-list > h2 > strong{
	background: #d2d2d2;
	color: gray!important;
	padding: 6px;
	text-transform: lowercase;
	font-size: 16px!important;
	line-height: normal;
	border-radius: 2px !important;
	font-weight: 300;
}

/** END ACCOUNT PROFILE */