.handbook-wrapper .block-wrapper-content .block.check-list {
  background-color: #dadee2;
}

.handbook-wrapper .block-wrapper-content .block.check-list .value {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
}

.handbook-wrapper .block-wrapper-content .block.check-list .value .richtext {
  min-height: unset;
}

.handbook-wrapper .block.check-list .value .checklist-item-wrapper {
  display: flex;
  align-items: center;
}

.handbook-wrapper .block.check-list .checklist-wrapper {
  position: relative;
  margin-bottom: 55px;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item {
  margin-right: 50px;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .container {
  position: relative;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .container
  input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 26px;
  width: 26px;
  border: 3px solid #00a7ff;
  background-color: #fff;
  cursor: pointer;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .container
  input:checked
  ~ .checkmark:after {
  display: block;
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .checkbox-item
  .container
  .checkmark:after {
  left: 6px;
  top: 0px;
  width: 6px;
  height: 15px;
  border: solid #1cd21c;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.handbook-wrapper
  .block.check-list
  .value
  .checklist-item-wrapper
  .richtext-wrapper
  p {
  margin-bottom: 0;
}

.handbook-wrapper .block-wrapper-content .block.check-list .add-line-item {
  right: 0;
  left: auto;
  bottom: 0;
  padding: 10px;
  max-width: 135px;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .progress-bar-wrapper {
  position: relative;
  font-size: 22px;
  max-width: 745px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .progress-bar-wrapper
  .text-progress {
  position: relative;
  color: #1cd21c;
  margin-left: 24px;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .progress-bar-wrapper
  .progress-bar {
  height: 50px;
  min-width: 430px;
  border: 3px solid #1cd21c;
  padding: 4px;
  border-radius: 50px;
  margin-left: 125px;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .progress-bar-wrapper
  .bar {
  background: #1cd21c;
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s;
  width: 0;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .progress-bar-wrapper
  .text-progress
  .text-complete {
  display: none;
}

.handbook-wrapper .block.check-list .value .arrow-wrapper {
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 50;
}

.handbook-wrapper .block.check-list .value .arrow {
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50px;
  margin: 0 5px;
  z-index: 15;
  border: 1px solid #00a7ff;
  position: relative;
  cursor: pointer;
  display: none;
}

.handbook-wrapper .block.check-list .value .arrow.arrow-top .arrow-icon,
.handbook-wrapper .block.check-list .value .arrow.arrow-bottom .arrow-icon {
  width: 2px;
  height: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00a7ff;
  position: absolute;
}

.handbook-wrapper
  .block.check-list
  .value
  .arrow.arrow-bottom
  .arrow-icon::before,
.handbook-wrapper
  .block.check-list
  .value
  .arrow.arrow-bottom
  .arrow-icon::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #00a7ff;
}

.handbook-wrapper
  .block.check-list
  .value
  .arrow.arrow-bottom
  .arrow-icon::before {
  transform: rotate(225deg);
  bottom: 2px;
  right: -1px;
}

.handbook-wrapper
  .block.check-list
  .value
  .arrow.arrow-bottom
  .arrow-icon::after {
  bottom: 2px;
  left: -1px;
  transform: rotate(315deg);
}

.handbook-wrapper
  .block.check-list
  .value
  .arrow.arrow-top
  .arrow-icon::before {
  transform: rotate(315deg);
  top: 2px;
  right: -1px;
}

.handbook-wrapper .block.check-list .value .arrow.arrow-top .arrow-icon::after {
  top: 2px;
  left: -2px;
  transform: rotate(227deg);
}

.handbook-wrapper .block.check-list .value .arrow.arrow-top .arrow-icon::before,
.handbook-wrapper .block.check-list .value .arrow.arrow-top .arrow-icon::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #00a7ff;
}

.handbook-wrapper .block.check-list .value:hover .arrow {
  display: block;
}

.handbook-wrapper .block.check-list .value:nth-child(1) .arrow.arrow-top,
.handbook-wrapper .block.check-list .value:last-child .arrow.arrow-bottom {
  display: none;
}

.make-required-toggle label.switch {
  min-width: 44px;
}

.handbook-wrapper
  .block-wrapper-content
  .block.check-list
  .add-text-box-checklist {
  bottom: 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .handbook-wrapper
    .block-wrapper-content
    .block.check-list
    .progress-bar-wrapper {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .handbook-wrapper
    .block-wrapper-content
    .block.check-list
    .progress-bar-wrapper
    .progress-bar {
    margin-left: 0;
  }
  .handbook-wrapper
    .block-wrapper-content
    .block.check-list
    .progress-bar-wrapper
    .text-progress {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .handbook-wrapper .block-wrapper-content .block.check-list .value {
    max-width: 100%;
    padding: 10px;
  }

  .handbook-wrapper
    .block-wrapper-content
    .block.check-list
    .progress-bar-wrapper
    .progress-bar {
    min-width: 100%;
  }
}
