/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.av_section .av_area .av_tabs {
  margin-top: 25px;
}
.av_section .av_area .av_tabs .nav-item {
  outline: none;
}
.av_section .av_area .av_tabs .nav-item .nav-link {
  font-weight: bold;
  color: #555;
  outline: none;
  border:  1px solid rgba(0,0,0,.125);
}
.av_section .av_area .av_tabs .nav-item .nav-link:focus {
  box-shadow: 0 0 0 0px rgba(0,0,0,.125);
}
.av_section .av_area .av_tabs .nav-item .active{
  background: #555;
  color: #fff;
}
.av_section .av_area #myTabContent {
  padding: 10px 25px;
  border-left:  1px solid rgba(0,0,0,.125);
  border-right:  1px solid rgba(0,0,0,.125);
  border-bottom:  1px solid rgba(0,0,0,.125);
}
.av_section .av_area .card {
	padding: 0;
	max-width: 100%;
}
.av_section .av_area .card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.av_section .av_area .card .card-header h4{
  font-size: 18px;
  color: #555;
}
.av_section .av_area .card form p{
  padding: 0;
  margin: 0;
  color: red;
}
.av_section .av_area .card .card-body h6{
  display: inline-block;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}
input[type=text] {
  border: 1px solid #ccc;
  padding: 2px 10px;
}

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

/* 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: 18px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  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);
}