/* CHECKLIST */
.checklist {
  background: url(../images/bg-fond.png), #fff;
  margin-top: 56px;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .checklist {
    margin-top: 128px;
    margin-bottom: 128px;
  }
}
.checklist .container {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  /* @media screen and (min-width: 1025px) {
        gap: 64px;
        grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    } */
}
@media screen and (min-width: 1281px) {
  .checklist .container {
    padding: 0 80px;
  }
}
.checklist .container-text h2 {
  color: var(--electricBlue);
}
@media screen and (min-width: 768px) {
  .checklist .container-text h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .checklist .container-text h2 strong {
    font-size: 2.5rem;
  }
}
.checklist .container-checkbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .checklist .container-checkbox {
    flex-direction: row;
    gap: 32px;
  }
}
.checklist .container-checkbox .checkbox-item {
  position: relative;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .checklist .container-checkbox .checkbox-item {
    width: 100%;
  }
}
.checklist .container-checkbox .checkbox-item input {
  width: 48px;
  height: 48px;
  border: 2px solid var(--blueLight);
  border-radius: 50%;
  cursor: pointer;
}
.checklist .container-checkbox .checkbox-item input[type="checkbox"]:checked {
  position: relative;
  background-color: rgba(107, 178, 227, 0.16);
}
.checklist
  .container-checkbox
  .checkbox-item
  input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask: url(../images/icons/check.svg) no-repeat;
  mask: url(../images/icons/check.svg) no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--electricBlue);
  width: 32px;
  height: 32px;
}
.checklist .container-checkbox .checkbox-item label {
  width: calc(100% - 72px);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* END CHECKLIST */
