#pojisteni-zasilky {
  margin: 20px 0;
  padding: 22px 24px;
  border: 2px dashed #71b0ab;
  background: #e0f0ef;
}

#pojisteni-zasilky .pojisteni-title {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #2f5d5a;
}

#pojisteni-zasilky .pojisteni-description {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #3a6b68;
}

#pojisteni-zasilky .pojisteni-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#pojisteni-zasilky .pojisteni-label-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  cursor: pointer;
  margin: 0;
}

#pojisteni-zasilky-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

#pojisteni-zasilky .pojisteni-checkbox-visual {
  position: relative;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 2px solid #71b0ab;
  border-radius: 7px;
  background: #fff;
  transition:
    background .2s ease,
    border-color .2s ease;
}

#pojisteni-zasilky-checkbox:checked
+ .pojisteni-checkbox-visual {
  background: #71b0ab;
  border-color: #71b0ab;
}

#pojisteni-zasilky-checkbox:checked
+ .pojisteni-checkbox-visual::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 7px;
  height: 15px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#pojisteni-zasilky .pojisteni-option-text {
  font-size: 17px;
  line-height: 1.4;
  color: #2f5d5a;
}

#pojisteni-zasilky .pojisteni-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  border: 2px solid #71b0ab;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  vertical-align: middle;
  color: #71b0ab;
}

#pojisteni-zasilky.is-loading {
  opacity: .5;
  pointer-events: none;
}

@media (max-width: 767px) {
  #pojisteni-zasilky {
    padding: 17px 15px;
  }

  #pojisteni-zasilky .pojisteni-title {
    font-size: 16px;
  }

  #pojisteni-zasilky .pojisteni-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  #pojisteni-zasilky .pojisteni-option {
    gap: 10px;
  }

  #pojisteni-zasilky .pojisteni-label-wrapper {
    gap: 10px;
  }

  #pojisteni-zasilky .pojisteni-option-text {
    font-size: 14px;
  }

  #pojisteni-zasilky .pojisteni-checkbox-visual {
    width: 29px;
    height: 29px;
    min-width: 29px;
  }

  #pojisteni-zasilky-checkbox:checked
  + .pojisteni-checkbox-visual::after {
    left: 9px;
    top: 4px;
    width: 6px;
    height: 13px;
  }

  #pojisteni-zasilky .pojisteni-info {
    width: 22px;
    height: 22px;
    font-size: 13px;
    margin-left: 5px;
  }
}