.wp-firewall-notice {
    display: inline-flex;
    padding: 15px 30px 15px 15px;
    border: 2px solid #46b450;
    background: rgba(70, 180, 80, 0.3);
    align-items: center;
    margin-top: 15px;
}

.wp-firewall-notice .wp-firewall-notice-icon {
    margin-right: 20px;
}

.wp-firewall-notice .wp-firewall-notice-icon * {
    color: #46b450;
    font-size: 8rem;
    display: inline-block;
    width: unset;
    height: unset;
}

.wp-firewall-notice .wp-firewall-notice-title {
    color: #46b450;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wp-firewall-notice .wp-firewall-notice-content {
    margin-bottom: 20px;
}

.wp-firewall-powered-by {
    display: block;
    margin-top: 20px;
}

/* ON / OFF UI BUTTONS */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e5e5;
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

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

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