 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin-bottom: 0 !important;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  height: 30px;
}

.slider.round:before {
  border-radius: 50%;
} 

.slider.round + span {
	position: absolute;
	top: 0;
	left: 70px;
	height: 30px;
	line-height: 30px;
	width: 150px;
}

.tools {
	float: none;
	display: flex;
	margin-bottom: 0.5em;
	width: 100%;
}
.edit-metadata {
	margin-left: 1em;
}
.tools .switch {
	display: none;
}
#nuxeo-form {
	display: none;
	position: fixed;
	left: 50%;
	margin-left: -270px;
	top: 25%;
	z-index: 1001;
}
#nuxeo-form #nuxeo-form-title {
	position: relative;
	text-align: center;
	width: 500px;
	font-weight: bold;
	background-color: #4b8ba3;
	border-radius: 0px 10px 0px 0px;
	border: none;
	padding: 0px 20px 0px 20px;
	color: white;
	padding-top: .5em;
	padding-bottom: .5em;
}
.nuxeo-close-iframe,
.nuxeo-close-video {
	width: 28px;
	height: 30px;
	position: absolute;
	right: -10px;
	top: -6px;
	background-image: url("../images/icon_close.png");
	cursor: pointer;
	z-index: 20;
}
#nuxeo-form #nuxeo-form-iframe {
	position: relative;
	background-color: white;
	border-radius: 0px 0px 10px 10px;
	width: 500px;
	border: none;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 0px;
	max-height: 700px;
}
.nuxeo-glass {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: lightslategrey;
	opacity: 0.6;
}
#nuxeo-form .aui-field-content {
	margin-top: 5px;
}
#nuxeo-search-docs > fieldset label.switch {
	padding: 0;
}
#nuxeo-search-docs > fieldset > div.search-field {
	display: flex;
}
#nuxeo-search-resultats {
	margin-top: 1em;
}
#nuxeo-search-liste .link-metadata,
#metadata_iframe b {
	font-weight: bold;
}
#nuxeo-search-liste .link-metadata {
	color: #000;
}
#nuxeo-search-liste .link-metadata:hover {
	color: #f90;
}

#nuxeo-pagination-control li > a {
    padding: 10px;
    font-size: 14px;
}

#nuxeo-pagination-control li.disabled > a {
	cursor: not-allowed;
    pointer-events: none;
}

#nuxeo-pagination-control li.first > a {
    border-radius: 5px 0 0 5px;
}

#nuxeo-pagination-control li.last > a {
    border-radius: 0 5px 5px 0;
}

.table-striped tbody tr:nth-of-type(even) td, .table-striped tbody tr:nth-of-type(even) th {
    background-color: #ffffff;
}