

/** toggle switch **/

.switch {
	margin: 0rem auto;
}
.switch {
	width: 14rem;
	position: relative;
}
.switch input {
	position: absolute;
	top: 0;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
}
.switch input:checked {
	z-index: 1;
}
.switch input:checked + label {
	opacity: 1;
	cursor: default;
}
.switch input:not(:checked) + label:hover {
	opacity: 0.5;
}
.switch label {
	color: #000;
	opacity: 0.33;
	transition: opacity 0.25s ease;
	cursor: pointer;
}
.switch .toggle-outside {
	height: 100%;
	border-radius: 2rem;
	padding: 0.25rem;
	overflow: hidden;
	transition: 0.25s ease all;
}
.switch .toggle-inside {
	border-radius: 5rem;
	background: #FFFFFF;
	position: absolute;
	transition: 0.25s ease all;
}
.switch--horizontal {
	width: 18rem;
	height: 2rem;
	margin: 0 auto;
	font-size: 0;
}
.switch--horizontal input {
	height: 2rem;
	width: 4rem;
	left: 4.4rem;
	margin: 0;
}
.switch--horizontal label {
	font-size: 1.0rem;
	line-height: 2rem;
	display: inline-block;
	width: 4rem;
	height: 100%;
	margin: 0;
	text-align: center;
}
.switch--horizontal label:last-of-type {
	margin-left: 4.4rem;
}
.switch--horizontal .toggle-outside {
	background: #cccccc;
	position: absolute;
	width: 4rem;
	left: 4.4rem;
}
.switch--horizontal .toggle-inside {
	height: 1.5rem;
	width: 1.6rem;
}
.switch--horizontal input:checked ~ .toggle-outside	 {
	background-color: #fc0;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside	 {
	background-color: #51cc8a;
}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
	left: 0.25rem;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
	left: 2.15rem;
}
.switch--no-label label {
	width: 0;
	height: 0;
	visibility: hidden;
	overflow: hidden;
}
.switch--no-label input:checked ~ .toggle-outside .toggle-inside {
	background: rgba(0,0,0,0.2);
	border: 1px solid rgba(0,0,0,0.2);
}
.switch--no-label input ~ input:checked ~ .toggle-outside {
	background: #dfdfdf;
}
.switch--no-label input:checked ~ .toggle-outside	 {
	background-color: #dfdfdf;
}
.switch--no-label input ~ input:checked ~ .toggle-outside .toggle-inside {
	background: #777777;
}

.switch--no-label.switch--vertical {
	width: 3rem;
}
.switch--no-label.switch--horizontal {
	width: 4rem;
}
.switch--no-label.switch--horizontal input,
.switch--no-label.switch--horizontal .toggle-outside {
	left: 0;
}
.switch--expanding-inner input:checked + label:hover ~ .toggle-outside .toggle-inside {
	height: 1.5rem;
	width: 1.6rem;
}
.switch--expanding-inner.switch--horizontal input:hover ~ .toggle-outside .toggle-inside {
	left: 2.25rem;
}
.switch--expanding-inner.switch--horizontal input:hover ~ input:checked ~ .toggle-outside .toggle-inside {
	width: 3.5rem;
}

/** toggle switch ends */


.severity-bg-critical{
    background-color: #ec4c6e !important;
	color: #fff !important;
}

.severity-bg-high {
    background-color: #EC9158 !important;
	color: #fff !important;
}

.severity-bg-medium {
    background-color: #e6ac30 !important;
	color: #fff !important;
}

.severity-bg-low {
    background-color: #2fa84d !important;
	color: #fff !important;
}

.severity-bg-info {
    background-color: #0773b8 !important;
	color: #fff !important;
}
