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

/* Hide default HTML checkbox */
.switch input {display:none;}

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

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

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

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

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

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

.slider.round:before {
    border-radius: 50%;
}
.form-control-success{
    border-radius: 0;
    box-shadow: none;
    border-color: #68de62;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.modal-body {
    max-height: calc(100% - 140px);
    overflow-y: auto;
}

.box.box-solid.box-navy {
  border: 1px solid #001F3F;
}
.box.box-solid.box-navy > .box-header {
  color: #ffffff;
  background: #001F3F;
  background-color: #001F3F;
}
.box.box-solid.box-navy > .box-header a,
.box.box-solid.box-navy > .box-header .btn {
  color: #ffffff;
}

.box.box-solid.box-gray {
  border: 1px solid #b5bbc8;
}
.box.box-solid.box-gray > .box-header {
  color: #ffffff;
  background: #b5bbc8;
  background-color: #b5bbc8;
}
.box.box-solid.box-gray > .box-header a,
.box.box-solid.box-gray > .box-header .btn {
  color: #ffffff;
}

.checkbox label {
  min-height: 20px;
  padding-left: 0px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.fa-stack{
  vertical-align: super;
  font-size: 1.1rem;
  width: 1em;
}

.box.box-purple {
  border-top-color: #605ca8;
}

