#fortguard-admin * {
  box-sizing: border-box;
}
.fortguard-title-img {
  vertical-align: middle;
}
.fortguard-title {
  vertical-align: middle;
  font-size: 20px;
  font-weight: 600;
  margin-left: 10px;
}

.fortguard-native-panel {
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

#fortguard-admin .dual-item {
  padding: 15px;
  padding-bottom: 0px;
}
#fortguard-admin .dual-item:after {
  content: "";
  clear: both;
  display: table;
}
#fortguard-admin .dual-item-left {
  float: left;
  width: 25%;
  text-align: right;
  padding: 10px;
  padding-right: 15px;
  font-weight: 600;
}
#fortguard-admin .dual-item-right {
  float: right;
  width: 75%;
  position: relative;
}
#fortguard-admin .dual-item-right.padded {
  padding: 10px 0;
}
#fortguard-admin .dual-item-right.top-padded {
  padding-top: 10px;
}

#fortguard-admin .input-item {
  width: 100%;
  border: 1px solid #eee;
  padding: 4px 20px;
  margin-bottom: 4px;
  border-radius: 20px;
  box-shadow: none;
  background-color: #fbf7ff;
}

#fortguard-admin .save-button-view {
  padding: 15px;
  text-align: center;
}

#fortguard-admin .button-filled {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 35px;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: 0.4s;
  background-color: #836096;
  white-space: nowrap;
}

.fortguard-message {
  padding: 15px;
  margin: 10px 0;
  background-color: #836096;
  color: white;
  border-radius: 5px;
}

.console-link {
  color: #ffffff;
}

.margin-link {
  margin-right: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
	background-color: #836096;
}

/* Slider Track */
input[type=range]::-webkit-slider-runnable-track {
    width: 100px;
    height: 16px; 
    background: #fbf7ff;
    border-radius: 20px;
}

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

/* 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;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

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

input:checked + .slider:before {
  transform: translateX(26px);
}
