.checkbox-content {
  width: 231px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
  transition: all 0.1s ease;
}

.checkbox-content input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: solid 2px #2a3647;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.checkbox-content input[type='checkbox']:hover {
  background-color: #eeeeee;
  transform: translateY(1px);
}

.checkbox-content input[type='checkbox']:checked::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  transition: all 300ms ease-out;
  background-color: #edf2fa;
}

.checkbox-content input[type='checkbox']:checked::after {
  content: '';
  display: block;
  width: 5px;
  height: 12px;
  border: solid #2a3647;
  border-width: 0px 2px 2px 0px;
  transform: rotate(35deg);
  position: absolute;
  top: -4px;
  left: 4px;
  animation: fadeIn 300ms ease-out forwards;
}