/* app.css */
*{
  border: 5px;
}
.navegacao, .rodape {
  background-color: rgb(216, 209, 209);
  color: rgb(10, 10, 10);
}

.nav-item {
  text-decoration: none;
  color: rgb(12, 11, 11);
  margin: 0px 8px;
}

.nav-item img:hover {
  opacity: 0.5;
}

.hov:hover, .hov:focus, .hov:active {
  box-shadow: 0 0 10px 10px rgb(161, 159, 159);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.btn-100 {
  min-width: 100px !important;
}

.btn-125 {
  min-width: 125px !important;
}

.btn-150 {
  min-width: 150px !important;
}

.btn-175 {
  min-width: 175px !important;
}

/* cores */
.text1-a1a1a1 {
  color: #a1a1a1;
}
.menu_menor {
  padding-top: 0.5em;
  font-size: 75%;
  color: rgb(13, 13, 14);
}

.menu_menor a:link {
  font-style: normal;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  color: rgb(64, 52, 231);
}

.menu_menor a:hover {
  color: rgb(64, 52, 231);
  text-decoration: underline;
}

.menu_menor a:visited {
  color: rgb(64, 52, 231);
}

.menu_menor a:active {
  color: rgb(64, 52, 231);
}
/*********************************************************************/
.label-float {
  position: relative;
  padding-top: 13px;
}

.label-float input {
  border: 1px solid lightgrey;
  border-radius: 5px;
  outline: none;
  min-width: 250px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
}
.label-float input :focus {
  border: 2px solid #3951b2;
}

.label-float input::placeholder {
  color: transparent;
}

.label-float label {
  pointer-events: none;
  position: absolute;
  top: calc(40% - 8px);
  left: 15px;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  background-color: white;
  padding: 5px;
  box-sizing: border-box;
}

.label-float input:required:invalid+label {
  color: red;
}

.label-float input:focus:required:invalid {
  border: 2px solid red;
}

.label-float input:required:invalid+label:before {
  content: '*';
}

.label-float input:focus+label, .label-float input:not(:placeholder-shown)+label {
  font-size: 13px;
  top: 0;
  color: #3951b2;
}
.tooltip-inner {
  background-color: rgb(241, 241, 161) !important;
  color: #120103 ;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: rgb(28, 0, 128) !important;
}  