/*
 * Custom tab styling
 */
.tab-button > ul > li.active > a,
.tab-button > ul > li.active > a:hover,
.tab-button > ul > li.active > a:focus {
  background-color: #337ab720;
  color: #337ab7;
  border-radius: 0;
}

.tab-button {
  text-align: center;
  font-size: 13px;
}

.tab-button > ul.nav {
  display: inline-block;
  border: solid 1px black;
  border-radius: 5px;
}

.tab-button > ul.nav > li:not(:last-child) {
  border-right: solid 1px black;
}

.tab-button > ul.nav > li > a > div {
  padding: 0 56px;
}

.tab-button > ul.nav > li {
  display: inline;
  margin: 0;
}

.tab-button > ul.nav > a {
  float: left;
}

.tab-button > div.tab-content {
  text-align: left;
}

/* ************************** */

.tab-custom > ul > li.active > a,
.tab-custom > ul > li.active > a:hover,
.tab-custom > ul > li.active > a:focus {
  background-color: #337ab720;
  color: #337ab7;
}

.tab-custom {
  text-align: center;
  font-size: 13px;
  margin: auto;
}

.tab-custom > ul.nav {
  display: inline-block;
}

.tab-custom > ul.nav > li {
  display: inline;
}

/* ************************** */

.tab-under > ul > li.active > a,
.tab-under > ul > li.active > a:hover,
.tab-under > ul > li.active > a:focus {
  background: none;
  color: #337ab7;
}

.tab-under > ul > li.active > a::after,
.tab-under > ul > li.active > a:hover::after,
.tab-under > ul > li.active > a:focus::after {
  transform: scaleX(1);
}

.tab-under > ul > li > a:hover {
  background: #fff;
}

.tab-under > ul > li > a::after {
  display: block;
  content: '';
  padding-top: 10px;
  border-bottom: solid 2px #337ab7;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.tab-under > ul > li > a:hover::after {
  transform: scaleX(1);
}

.tab-under {
  text-align: center;
  font-size: 13px;
}

.tab-under > ul.nav {
  display: inline-block;
}

.tab-under > ul.nav > li {
  display: inline;
}

.tab-under > ul.nav > a {
  float: left;
}

.tab-under > div.tab-content {
  text-align: left;
}

a:focus {
  outline: none;
}

.ReactVirtualized__Grid {
  outline: none;
}

/*
 * Custom checkbox styling
 */
.switch_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.checkbox_switchbox {
  font-size: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.4em;
  height: 0.75em;
  background: #ddd;
  border-radius: 3em;
  position: relative;
  cursor: pointer;
  outline: none !important;
  border: 0 solid;
}

.checkbox_switchbox:checked {
  background: #337ab7;
}

.checkbox_switchbox::after {
  position: absolute;
  content: '';
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  left: 0;
}

.checkbox_switchbox:checked::after {
  left: calc(100% - 0.75em);
}

.panel-title {
  font-size: 14px;
}

.new-image {
  width: 500px;
}
