/* Default Stylings */
.message.warning {
	border-left-color: orange;
}
p.warning strong {
	color: orange;
}

/* Table Styling */
table.autoupdate th.head-plugin {
	min-width: 250px;
}
table.autoupdate th.head-status {
	min-width: 150px;
}
table.autoupdate th.check-column {
	position: relative;
	min-width: 55px;
}
table.autoupdate tr.inactive {
	background: #FEF7F1;
}
table.autoupdate tr.active .check-column {
	border-left: 3px solid transparent;
}
table.autoupdate tr.inactive .check-column {
	border-left: 3px solid #D54E21;
}
table.autoupdate tr.inactive td.column-status p {
	color: #BF3D3C;
}
table.autoupdate tr.active td.column-status p {
	color: #000;
}

/* Update Log */
table.autoupdatelog strong {
	color: #000;
}
table.autoupdatelog .dashicons {
	color: #00A0D2;
}

/* Custom checkboxes */
#the-list input[type="checkbox"]:not(:checked), #the-list input[type="checkbox"]:checked {
	width: 45px;
	height: 45px;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 100;
	display: block;
	opacity: 0;
}
#the-list input[type="checkbox"]:not(:checked) + label, #the-list input[type="checkbox"]:checked + label {
	position: absolute;
	top: 15px;
	left: 12px;
	cursor: pointer;
}
#the-list input[type="checkbox"]:not(:checked) + label:before, #the-list input[type="checkbox"]:checked + label:before, #the-list input[type="checkbox"]:not(:checked) + label:after, #the-list input[type="checkbox"]:checked + label:after {
	content: '';
	position: absolute;
}
#the-list input[type="checkbox"]:not(:checked) + label:before, #the-list input[type="checkbox"]:checked + label:before {
	left: 0; 
	top: -3px;
	width: 30px; 
	height: 16px;
	background: transparent;
	border: 2px solid #555D66;
	border-radius: 15px;
	transition: background-color .2s;
}
#the-list input[type="checkbox"]:not(:checked) + label:after, #the-list input[type="checkbox"]:checked + label:after {
	width: 8px; 
	height: 8px;
	transition: all .2s;
	border-radius: 500px;
	background: transparent;
	border: 2px solid #555D66;
	top: 1px; 
	left: 5px;
}
#the-list input[type="checkbox"]:not(:checked) + label:before {
 	background: #00A0D2; 
	border: 2px solid #00A0D2;
}
#the-list input[type="checkbox"]:not(:checked) + label:after {
	background: #00A0D2;
	border-color: #FFF;
	left: 18px;
}

@media screen and (max-width: 1000px) {
	table.autoupdate thead {
		display: none;
	}
}