/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

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

/* 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: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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

input:focus + .slider {
  box-shadow: 0 0 2px #333;
}

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

/* Rounded sliders */
.slider.round {
  border-radius: 25px;
}

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


.vertical-nav {
  min-width: 25rem;
  width: 25rem;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;/*GV*/
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.nav li {
	padding-left:9px;
}
.nav-item a {
	text-decoration:none;
	font-size:1.4rem;
}
.nav-item {
	background-color:#17A2B8;
}
.nav-item:hover {
	background-color:#128696;
}


.page-content {
  width: calc(100% - 25rem);
  margin-left: 25rem;
  transition: all 0.4s;
  color:#2D2F30;
}

/* for toggle behavior */

#sidebar.active {
  margin-left: -25rem;
}

#content.active {
  width: 100%;
  margin: 0;
  color:#2D2F30;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -25rem;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
    margin: 0;
  }
  #content.active {
    margin-left: 25rem;
    width: calc(100% - 25rem);
  }
}

body {
  color:#2D2F30;
  background: #fff;
  min-height: 100vh;
  /*overflow-x: hidden;enlever pour faire fonctionner la barre sticky du bbcode*/
}
h2 {font-size: 2.4rem; line-height: 1.2; margin-bottom: .5rem; color:#E85058;font-variant:small-caps;font-weight: bold;}
h5 {font-size: 2rem; color:#E85058;font-variant:small-caps; line-height: 1.1;font-weight: bold;}

.separator {
  margin: 3rem 0;
  border-bottom: 1px dashed #fff;
}

.text-gray {
  color: #00688A;
}  

#div_operation_type_get, .div_operation_type_get{
  display: block;
  column-count: 3;
}


/* TINYMCE
––––––––––––––––––––––––––––––––––––––––––––––––––
 */
 .mce-accordion summary {
  font-weight: bold;
}

.mce-accordion summary::marker {
  font-size: 2rem;
  color: #20682c;
}

.mce-accordion p {
  margin: 0;
  padding: 16px;
}

@keyframes sweepDown {
  0% {
    opacity: 0;
    margin-top: -10px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.mce-accordion[open] summary {
  background-color: rgba(32, 104, 44, .1);
  color: rgb(32, 104, 44);
  transition: all .25s ease-in-out;
}

.mce-accordion[open] summary ~ * {
  animation: sweepDown .25s ease-in-out;
}
