.checkbox-container {
  display: flex;
  position: relative;
  height: 40px;
  width: 40px;
  cursor: pointer;
  /*! font-size: 16px; */
  user-select: none;
  background: transparent;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;

}

.checkmark-v3 {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s;
  /*! box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  border: 1px solid #000;
}

.checkmark-v3:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 14px;
  width: 20px;
  height: 40px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg) scaleX(-1);
}

.custom-checkbox:checked ~ .checkmark-v3 {
  background-color: #fff;
  /*! box-shadow: 0 3px 7px rgba(33, 150, 243, 0.3); */
}

.custom-checkbox:checked ~ .checkmark-v3:after {
  display: block;
}

@keyframes checkAnim {
  0% {
    height: 0;
  }

  100% {
    height: 10px;
  }
}

.custom-checkbox:checked ~ .checkmark-v3:after {
  animation: checkAnim 0.2s forwards;
}




.checkbox-container-v2 {
  display: flex;
  position: relative;
  width: fit-content;
  cursor: pointer;
  /*! font-size: 16px; */
  user-select: none;
  padding-left: 30px;
}
.custom-checkbox-v2 {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;

}

.checkmark-v2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  transition: background-color 0.3s;
  /*! box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.checkmark-v2:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-v2:checked ~ .checkmark-v2 {
  background-color: #2196F3;
  /*! box-shadow: 0 3px 7px rgba(33, 150, 243, 0.3); */
}

.custom-checkbox-v2:checked ~ .checkmark-v2:after {
  display: block;
}

@keyframes checkAnimv2 {
  0% {
    height: 0;
  }

  100% {
    height: 10px;
  }
}

.custom-checkbox-v2:checked ~ .checkmark-v2:after {
  animation: checkAnimv2 0.2s forwards;
}








.checkbox-container-v4 {
  display: flex;
  position: relative;
  height: 40px;
  width: 40px;
  cursor: pointer;
  /*! font-size: 16px; */
  user-select: none;
  background: transparent;
}

.custom-checkbox-v4 {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;

}

.checkmark-v4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s;
  /*! box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  border: 1px solid #000;
}

.checkmark-v4:after {
  content: "";
  position: absolute;
  display: none;
  left: 15px;
  top: 7px;
  width: 10px;
  height: 40px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scaleX(1);
}

.custom-checkbox-v4:checked ~ .checkmark-v4 {
  background-color: #fff;
  /*! box-shadow: 0 3px 7px rgba(33, 150, 243, 0.3); */
}

.custom-checkbox-v4:checked ~ .checkmark-v4:after {
  display: block;
}

@keyframes checkAnim {
  0% {
    height: 0;
  }

  100% {
    height: 20px;
  }
}

.custom-checkbox-v4:checked ~ .checkmark-v4:after {
  animation: checkAnim 0s forwards;
}

