/* LARGE */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #ffb12f;
}

input:focus + .slider {
  box-shadow: 0 0 1px #ffb12f;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.in-queue {
  color: #f47023 !important;
}
.out-queue {
  color: #0404fc !important;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* ---------------------------------------------------------- */
/* SMALL */
/* ---------------------------------------------------------- */
.switch-sm {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch-sm input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-sm {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider-sm:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider-sm {
  background-color: #ffb12f;
}

input:focus + .slider-sm {
  box-shadow: 0 0 1px #ffb12f;
}

input:checked + .slider-sm:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider-sm.round {
  border-radius: 20px;
}

.slider-sm.round:before {
  border-radius: 50%;
}
/* ---------------------------------------------------------- */

/* ---------------------------------------------------------- */
/* XSMALL */
/* ---------------------------------------------------------- */
.switch-xsm {
  top: 4px;
  position: relative;
  display: inline-block;
  width: 25px;
  height: 15px;
}

.switch-xsm input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-xsm {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d0d3d0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider-xsm:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  background-color: #f8f3f6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider-xsm {
  background-color: #fba01d;
}

input:focus + .slider-xsm {
  box-shadow: 0 0 1px #fba01d;
}

input:checked + .slider-xsm:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

/* Rounded sliders */
.slider-xsm.round {
  border-radius: 10px;
}

.slider-xsm.round:before {
  border-radius: 50%;
}
/* ---------------------------------------------------------- */
a[class="deinclude"]::before {
  color: #c9c9c9;
  content: "\f096";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
a[class="include"] {
  color: #9d7b3e;
  font-weight: 500;
}
a[class="include"]::before {
  color: #464646;
  content: "\f046";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
