html {
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 !important;
  padding: 0 !important;
}

input[type="file"] {
  display: none !important;
}

.retira label {
  padding: 5px 5px !important;
  width: 38px !important;
  background-color: rgb(37, 156, 63) !important;
  color: #FFF !important;
  border-radius: 100px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
  margin-top: 10px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.bg-black-100 {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.content-wrapper {
  height: 100% !important;
  overflow-y: auto !important;
}

.bg-dark {
  background-color: rgb(1, 13, 44) !important;
}

.brand-text {
  color: rgb(255, 255, 255) !important;
}

.brand-link {
  border-bottom: 1px solid rgb(0, 0, 0) !important;
}

.user-panel {
  border-bottom: 1px solid rgb(0, 0, 0) !important;
}

.round-l10 {
  border-radius: 10px 0px 0px 10px !important;
}

.round-r10 {
  border-radius: 0px 10px 10px 0px !important;
}

.round-l20 {
  border-radius: 20px 0px 0px 20px !important;
}

.round-r20 {
  border-radius: 0px 20px 20px 0px !important;
}

.round-l30 {
  border-radius: 30px 0px 0px 30px !important;
}

.round-r30 {
  border-radius: 0px 30px 30px 0px !important;
}

.round-l40 {
  border-radius: 40px 0px 0px 40px !important;
}

.round-r40 {
  border-radius: 0px 40px 40px 0px !important;
}

.round-m10 {
  overflow: hidden !important;
  border-radius: 10px !important;
}

.round-m20 {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.round-m30 {
  border-radius: 30px !important;
  overflow: hidden !important;
}

.round-button {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: 10px;
}

.round-m40 {
  border-radius: 40px !important;
  overflow: hidden !important;
}

.dropdown-menu.show {
  animation: growing 0.2s alternate;
}

.dropdown-menu {
  transition: all 0.4s;
}

.text-title {
  color: rgba(78, 78, 78, 0.678) !important;
  font-size: larger;
  font-weight: bold;
}

.text-title-blue {
  color: rgba(3, 93, 211, 0.678) !important;
  font-size: larger;
  font-weight: bold;
  text-transform: uppercase;
}

.label-inf {
  position: relative;
  top: 40px;
  z-index: 9;
  width: 90%;
  left: 7px;
  background-color: #FFF;
  font-size: 20px;
  color: #000000a3;
  /* animation: up 0.5s forwards; */
}

@keyframes up {
  0% {
    transform: translateY(0px);
    background-color: #FFF;
  }

  10% {
    background-color: #ffffff00;
  }

  100% {
    transform: translateY(-30px);
    font-size: 18px;
    background-color: #ffffff00;
  }
}

.hr {
  border-bottom: #00000034 1.4px solid;
  padding-top: 10px;
}

/* .form-label-group {
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.form-label-group .select2 .selection span {
  border: none !important;
} */
.label-tr {
  font-size: 18px !important;
  color: rgba(0, 0, 0, 0.534) !important;
  text-transform: uppercase;
}

.label-lr {
  font-size: 23px !important;
  color: rgba(0, 0, 0, 0.534) !important;
  text-transform: uppercase;
}

.label-sr {
  font-size: 16px !important;
  color: rgba(0, 0, 0, 0.534) !important;
  text-transform: uppercase;
}

.bg-gray-100 {
  background-color: rgba(119, 119, 119, 0.178) !important;
  padding: 5px;
  width: 250px;
}

@keyframes growing {
  0% {
    transform: translateY(0) scale(0);
  }

  100% {
    transform: translateY(50) scale(1);
  }

}

@keyframes dropping {
  0% {
    transform: translateY(50) scale(1);
  }

  100% {
    transform: translateY(0) scale(0);
  }

}