.device-library-search-form {
	font-family: "Neue Frutiger World", sans-serif;
	position: relative;
	box-sizing: border-box;
	display: flex;
	width: 100%;
	max-width: 1180px;
	padding: 40px 20px;
	margin: 0 auto;
}

@media (max-width: 1220px) {
	.device-library-search-form {
		flex-direction: column;
		max-width: 371px;
	}
}

.device-library-search-form input {
	box-sizing: border-box;
	width: 281px;
	height: 50px;
	font-size: 16px;
	font-weight: 300;
	color: #16191E;
	background-color: #ffffff;
	padding: 0 30px;
	border: 2px solid #abb2ba;
	border-radius: 200px;
	margin-right: 20px;
}

@media (max-width: 1220px) {
	.device-library-search-form input {
		width: 100%;
		margin-right: 0;
		margin-bottom: 12px;
	}
}

.device-library-search-form .ddi-btn-wrapper {
	display: flex;
}

.device-library-search-form .ddi-btn-wrapper button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 115px;
	height: 50px;
	line-height: 16px;
	text-align: center;
	font-size: 16px;
	font-weight: 750;
	text-decoration: none;
	color: white;
	background-image: linear-gradient(to bottom, #0074e0 50%, #0059b3 50%);
	/* start showing mostly top color */
	background-position: center 5%;
	background-size: 110% 240%;
	border-radius: 200px;
	border: none;
	/* transition animates gradient shift instead of color fade */
	transition: background-position 167ms ease, transform 250ms ease;
	padding: 0;
	cursor: pointer;
}

.device-library-search-form .ddi-btn-wrapper button:first-of-type {
	margin-right: 6px;
}

@media (max-width: 1220px) {
	.device-library-search-form .ddi-btn-wrapper button {
		width: calc(50% - 6px);
	}
	.device-library-search-form .ddi-btn-wrapper button:first-of-type {
		margin-right: 12px;
	}
}

/* On hover, slide the gradient down */
.device-library-search-form .ddi-btn-wrapper button:hover {
	background-position: center 95%;
}

.device-library-search-form .ddi-btn-wrapper button:active {
	transform: scale(0.95);
	transition: transform 167ms ease;
}

.device-library-table {
	font-family: "Neue Frutiger World", sans-serif;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1180px;
	border-spacing: 0;
	padding: 0 20px;
	margin: 40px auto;
}

.device-library-table th,
.device-library-table td {
	padding: 10px;
	border: 1px solid #F6F8F9;
	text-align: left;
}

.device-library-table th {
	background: #0b5ed7;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.device-library-table th:nth-child(n+4),
.device-library-table td:nth-child(n+4) {
	width: 106px;
	text-align: center;
}

.device-library-table td .alarm-supported-icon {
	width: 20px;
	height: 20px;
}

.device-library-table td .alarm-capable-icon {
	width: 25px;
	height: 20px;
}

.device-library-table td .waveform-icon {
	width: 20px;
	height: 20px;
	fill: #f85569;
}

.device-library-table td .sec-comm-icon {
	width: 20px;
	height: 20px;
	fill: #008800;
}

.device-library-table td .edm-icon {
	width: 15px;
	height: 20px;
	fill: #00126e;
}

.ddi-key {
	font-family: "Neue Frutiger World", sans-serif;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1180px;
	padding: 0 20px;
	margin: 0 auto;
}

.ddi-key .ddi-key-item {
	display: flex;
	align-items: center;
}

.ddi-key .ddi-key-item .ddi-key-icon {
	margin-right: 12px;
}