label {
  display: inline-block;
  width: 300px;
}

input:invalid+span:after {
    content: '✖';
    padding-left: 5px;
}

input:valid+span:after {
    content: '✓';
    padding-left: 5px;
}






.do_t {
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}
.do_t_G {
  height: 10px;
  width: 10px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}








.btn-success {
	border: 1px solid white !important;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: #ed3237 !important;
}
.dropdown-menu a:hover {
    background-color: #ffcdce !important;
    color:#ed3237;
    border-top: 2px solid #f96569;
    border-bottom: 2px solid #f96569;
}
a.dropdown-item:hover {
    background-color: #ffcdce !important;
    color:#ed3237;
    border-top: 2px solid #f96569;
    border-bottom: 2px solid #f96569;
}

/*////////*/
/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  background: rgb(246, 246, 246);
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}
#message p {
  padding: 4px 35px;
  font-size: 13px;
}
/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}
.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}
/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}
.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}
/*////////*/
/*.nav-tabs .nav-link.fff.active {
    color: #000 !important;
}

a.fff {
    color: #fff !important;
}*/