div.container {
  max-width: 100%;
}

div.tab-content {
  padding: 20px;
}

ul.nav .nav-item .nav-link {
  border: none;
}
ul.nav .nav-item .nav-link.active {
  border-bottom: 2px solid darkblue !important;
  color: black;
}

ul.nav .nav-item .nav-link:focus {
  box-shadow: none !important;
}

ul.nav .nav-item .nav-link:not(.active):hover {
  border-color: transparent !important;
}

.status-circle {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  text-align: center;
  margin: auto;
}
.status-circle span {
  color: white;
  font-size: 1.25rem;
}
.status-circle.grey {
  background-color: grey;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, rgba(128, 128, 128, 0.5) 0 2px 12px;
}


.status-circle.red {
  background-color: red;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, rgba(255, 0, 0, 0.5) 0 2px 12px;
}

.status-circle.green {
  background-color: green;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, #89FF00 0 2px 12px;
}

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

.switch.disabled {
  pointer-events: none;
}

/* 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: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  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);
}

input:disabled + .slider:before {
  background-color: darkgray;
}

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

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

/***********************************************
 * parsley validation list
 ***********************************************/
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin-top: 5px;
  padding: 0;
  list-style-type: none;
  font-size: 0.8rem;
  line-height: 0.8rem;
  opacity: 0;

  transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.parsley-errors-list > li {
  margin-bottom: 0;
  color: #B94A48;
}

/**********************************************
 * Responsive
 **********************************************/
@media (min-width: 1200px) {
  div.container {
    max-width: 800px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  div.container {
    max-width: 600px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  div.container {
    max-width: 550px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  div.container {
    max-width: 500px;
  }
}