.checkbox-wrapper-19 {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 25px;
  position: absolute; 
  top: 5px; 
  right: 5px;
  z-index: 10;
}


.checkbox-wrapper-19 input[type=checkbox] {
  display: none;
}

.checkbox-wrapper-19 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  align-content: center;
  text-align: center;
  background-color: white;
  cursor: pointer;
}

.checkbox-wrapper-19 .check-box::before{
  content: url("../../../resources/images/icons/eye-disable.png");
  font-size: var(--checkbox-height);
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
  content: url("../../../resources/images/icons/eye-enable.png");
  background-color: #64B5F6;
  border: 1px solid #64B5F6;
}


.slide-remove-icon{
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 11;
}

.button-customize-slide{
  width: 100%;
  background-color: white;
  border: 1px solid var(--color-medium);
}


.check::before{
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  color: #06D6A0;
  margin-right: 1rem;
  padding-left: 0.5rem;
}

