/* test comment */
/* Containers */


.background {
  background-color: #202E39;
  font-family: "Source Sans Pro";
  color: #FFFFFF;
  padding: 20px;
}

.section-panel {
  background-color: var(--vgray900);
  padding: 15px;
  margin: 10px;
  border: 1px solid var(--vgray900);
  border-radius: 6px;
  display: flex;
  flex-direction: column;

  .action-container {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-top: 1em;
  }

  .action-group {
    width: 100%;
    padding-top: 1em;
    border-top: 1px solid #2f2f2f;
  }
}


.section-panel-header {
  background-color: inherit;
  height: 50px;
  width: 100%;
  display: inline-block;
}

.section-panel-3 {
  width: 33%
}

.section-panel-2 {
  width: 50%
}

.section-panel-1 {
  width: 100%;
}



.panel-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.interfaces {
  display: inline-flex;
  width: 100%;
}

.interfaces-block {
  display: block;
  width: 100%;
}

.left-align {
  float: left;
  vertical-align: middle;
}

.right-align {
  float: right;
  vertical-align: middle;
}

.btn-primary {
  color: #202E39;
  font-family: "Source Sans Pro";
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 26px;
  background-color: var(--vteal);
  border: none;
}

.btn-lg {
  height: 50px;
  font-size: 16px;
  padding: 0px 50px;
  margin: 10px 10px;
}

.btn-primary:hover {
  background-color: #61ded8;
  color: var(--vgray900);
}

.btn-primary:focus, .btn-primary:active {
  background-color: #8DF2ED;
  color: var(--vgray900);
  border: none;
}

.btn-primary:hover {
  background-color: #61ded8;
  color: var(--vgray900);
}

.btn-sm {
  height: 32px;
  font-size: 16px;
  padding: 0px 24px;
  margin: 10px 0px;
}

.warning_alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
}

.success_alert {
  padding: 20px;
  background-color: #4DA14A;
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

/* Button coloring */
.btn-red-emergency {
  background-color: #f44336; /* Red */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.btn-blue {
  background-color: #008CBA; /* Blue */
  border: none;
  color: white;
  padding: 7px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.btn-blue:hover {
  background-color: #0182ad; /* Blue */
}

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

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

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

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

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

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

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

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

/* Fonts */

.page-title {
  color: #FFFFFF;
  font-family: uni_neuebold;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 70px;
  margin: 0px 15px;
}

.table-title {
  color: #FFFFFF;
  font-family: uni_neuebold;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 70px;
  margin: 0 15px;
}

.section-title {
  color: #FFFFFF;
  font-family: "Source Sans Pro";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.table-header {
  width: 100%;
  display: inline-block;
}

.product-name {
  color: #FFFFFF;
  font-family: uni_neuebold;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 70px;
  padding: 0px 15px;
}

.toggle-label {
  text-transform: uppercase;
  line-height: 26px;
  margin: 0px 8px;
}
