/* checkboxes */

.mwd-checkbox input {
  display: none;
}

.mwd-checkbox label {
  display: block;
  position: relative;
  padding: 6px 0 6px 40px;
  color: rgba(0, 0, 0, 0.30);
  cursor: pointer;
  border: 1px solid rgba(92, 92, 92, 0.20);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  letter-spacing: 1px;
}

.mwd-checkbox label::before {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  left: 4px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(92, 92, 92, 0.20);
  border-radius: 100%;
}
.mwd-checkbox label:hover, input:focus + label {
  background-color: rgba(255, 255, 255, 0.30);
}

.mwd-checkbox label::before:hover {
  color: rgba(0, 0, 0, 1.00);
}

.mwd-checkbox label:hover::before {

} 

.mwd-checkbox input:checked + label {
  background-color: rgba(255, 255, 255, 0.60); 
  color: rgba(0, 0, 0, 0.90);
}

.mwd-checkbox input:checked + label::before {
  position: absolute; 
  font-family: 'FontAwesome';
  font-size: 12px;
  content: '\f00c'; 
  color: rgba(0, 0, 255, 0.90);
  font-weight: bold; 
  text-align: center !important;
}

.mwd-generated-password-container {
  padding: 20px 0 10px 0;
}

.mwd-password-output {
  border: 1px solid rgba(255, 255, 255, 0.90);
  width: 100%;
  border-radius: 4px;
  padding: 2px;
  text-align: center;
  font-family: "Courier new", Courier, "sans-serif"; 
  font-size: 1.6em !important;
}

#input_generated_password {
  border: 1px solid rgba(255, 255, 255, 0.90);
  width: 100%;
  border-radius: 4px;
  padding: 2px;
  background-color: transparent;
  text-align: center;
  font-family: "Courier new", Courier, "sans-serif"; 
  font-size: 1.6em !important;
}

#input_generated_password:focus,
#input_generated_password:active,
#input_generated_password:focus {
    outline: none;
    box-shadow: none;
}

.mwd-pg-strong {
  font-size: 12px; 
  padding: 2px;
  text-align: center;
  background-color: rgba(18, 0, 255, 0.90);
  color: rgba(255, 255, 255, 0.90);
  border-radius: 4px;
}

.mwd-pg-weak {
  font-size: 12px; 
  padding: 2px;
  text-align: center;
  background-color: rgba(255, 0, 18, 0.40);
  color: rgba(255, 255, 255, 0.90);
  border-radius: 4px;
}

.mwd-password-info-container {
  text-align: center;
}

.mwd-password-info-content {
  text-align: center;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #ffffff;
}


.mwd-password-generator-input-field {
  width: 100%;
  border: none;
  border: 1px solid rgba(111, 111, 111, 0.40);
  text-align: center;
  font-family: "Courier new", Courier, "sans-serif"; 
  font-size: 2rem !important;
  padding: 0 !important;
}

.password-strength-status {
  position: relative;
  background: rgba(0, 255, 0, 0.9);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
}

.password-strength-status:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}	
	
.password-strength-status-strong {
  background: rgba(34, 139, 34, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.password-strength-status-strong:after {
  border-top: 10px solid rgba(34, 139, 34, 0.9);
}	

.password-strength-status-medium {
  background: rgba(0, 0, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.password-strength-status-medium:after {
  border-top: 10px solid rgba(0, 0, 255, 0.9);
}	

.password-strength-status-weak {
  background: rgba(255, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.password-strength-status-weak:after {
  border-top: 10px solid rgba(255, 0, 0, 0.9);
}	

.mwd-password-info-content {
background-color: rgba(255, 202, 44, 0.24);
padding: 10px 20px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}