#alertsWrapper {
	overflow: hidden;
	position: relative;
}

#alertsTableInner {
	width: 700px;
	margin: 5px auto;
}

.alertsTable {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
}

.alertsTableTr {
	display: flex;           display: -webkit-flex;
  flex-direction: row;     -webkit-flex-direction: row;
  flex-grow: 0;            -webkit-flex-grow: 0;
  flex-wrap: wrap;         -webkit-flex-wrap: wrap;
  width: 100%;
}

.alertsTableTd {
	height: 25px;
	flex-grow: 1;            -webkit-flex-grow: 1;
  	overflow: hidden;
  	white-space: nowrap;
  	text-overflow: ellipsis;
  	padding: 5px 10px;
	width: 170px;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	border-bottom: 1px solid var(--border-color-light);
}

.alertsTableTd.col1 {
	justify-content: flex-end;
	color: var(--main-color);
	border-right: 1px solid var(--border-color-light);
}

.tableHead .alertsTableTd {
	border-bottom: 2px solid var(--main-color);
}

.tableHead .col1 {
	border-right: 0;
}

.redField {
	background: var(--warning-color);
	color: #fff;
}

.amberField {
	background: #FFD185;
}

#filterWrapperInner {
	justify-content: space-around;
}

#filterWrapper .inlineText {
	margin-right: 5px;
	font-size: 14px;
	line-height: 40px;
}

#filterWrapper .button,
#filterWrapper .buttonGreen {
}

#manageFiltersOverlay {
	width: 600px;
	margin: 10 auto;
}

#manageTimeFrom,
#manageTimeTo,
#manageCountries {
	text-align: center;
	margin: 20px 0;
}

#manageCountries {
	display: none;
}

.alertsTableTd {
	position: relative;
}

.alertsExportIcon {
	position: absolute;
	right: 0;
	top: 0;
	height: 25px;
	width: 25px;
	background: url(/img/icons/export-icon.png) 50% 40% no-repeat;
	background-size: 70%;
	opacity: 0;
}

.redField .alertsExportIcon {
	background: url(/img/icons/export-icon-white.png) 50% 40% no-repeat;
	background-size: 70%;
}

.alertsTableTd:hover .alertsExportIcon {
	opacity: 100;
}

@media only screen and (max-width: 1300px) {



}

@media only screen and (max-width: 600px) {



}

@media only screen and (max-width: 480px) {



}

@media only screen and (max-height: 480px) {



}