@keyframes mymove {
  50% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.circleBeepRed,
.circleBeepRed::before {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 1s;
  background-color: #EC2028;
}

.circleBeepRed::before {
  animation: mymove 1s infinite;
  position: absolute;
  background-color: #e37b7e;
}

.circleBeepRed {
  position: relative;
}

.circleBeepGreen,
.circleBeepGreen::before {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 1s;
  background-color: #1ec932;
}

.circleBeepGreen {
  position: relative;
}

.circleBeepGreen::before {
  animation: mymove 1s infinite;
  position: absolute;
  background-color: #1ec932;
}

.circleBeepYellow,
.circleBeepYellow::before {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 1s;
  background-color: #ffc800;
}

.circleBeepYellow {
  position: relative;
}

.circleBeepYellow::before {
  animation: mymove 1s infinite;
  position: absolute;
  background-color: #ffc800;
}

.personalInfo {
  width: auto;
  height: auto;
}

.photoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.profilePicture {
  margin-top: 9px;
  max-width: 90px;
  max-height: 90px;
  border-radius: 20%;
}

.tablePersonalInfo {
  border-spacing: 0 10px;
  border-collapse: separate;
  font-size: 12px;
}

.titleProfile {
  color: grey;
  font-weight: bold;
  width: 100px;
}

.profileValue {
  font-weight: bold;
}


/* .circleBeepGreen::before {
  animation: mymove 1s infinite;
  position: absolute;
  background-color: #1ec932;
} */

.title {
  width: 55%;
}

.select {
  width: 300px;
}
.select-valid {
  border: 1px solid green;
  width: 300px;
}

.select-invalid {
  border: 1px solid red;
  width: 300px;
}

.table-border-bottom>thead>tr,tbody>tr {
  --bs-border-opacity: 1;
  border-bottom: 1px solid rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.sliding-toggle-container {
  position: relative;
  width: 100px;
  height: 40px;
  background-color: #ccc;
  border-radius: 20px;
  cursor: pointer;
}

.date-picker-container {
  width: 400px !important;
}