.handbook-wrapper .block.bios .bio-wrapper {
  display: flex;
  background: #00a7ff;
  position: relative;
  margin-top: 30px;
}

.handbook-wrapper .block.bios .bio-wrapper:hover .delete-item {
  display: inline-block;
}

.handbook-wrapper .block.bios .bio-wrapper .info-wrapper {
  min-width: 40%;
  max-width: 40%;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.handbook-wrapper .block.bios .bio-wrapper .info-wrapper .richtext-wrapper {
  margin-top: 30px;
  width: 100%;
}

.handbook-wrapper .block.bios .bio-wrapper .info-wrapper h4 {
  margin-bottom: 20px;
}

.handbook-wrapper .block.bios .bio-wrapper .info-wrapper p {
  text-align: center;
  color: #fff;
  font-size: 18px;
}

.handbook-wrapper .block.bios .bio-wrapper .info-wrapper p:last-child,
.handbook-wrapper
  .block.bios
  .content-wrapper
  .description-wrapper
  p:last-child {
  margin-bottom: 0;
}

.handbook-wrapper .block.bios .content-wrapper .info-wrapper img {
  width: 200px;
  height: 200px;
  cursor: pointer;
  object-fit: cover;
}

.handbook-wrapper .block.bios .bio-wrapper .description-wrapper {
  padding: 20px;
  margin: 1px;
  background: #fff;
  width: 100%;
}

.handbook-wrapper .block.bios .add-item-wrapper .add-item {
  position: static;
  margin: auto;
  display: block;
  margin: 15px auto;
}

@media screen and (max-width: 768px) {
  .handbook-wrapper .block.bios .bio-wrapper {
    flex-direction: column;
  }

  .handbook-wrapper .block.bios .bio-wrapper .info-wrapper {
    max-width: 100%;
  }

  .handbook-wrapper .block.bios .bio-wrapper .info-wrapper p {
    font-size: 12px;
  }

  .handbook-wrapper .block.bios .bio-wrapper .description-wrapper {
    width: auto;
  }
}

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

.handbook-wrapper .block.bios .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.bios .arrow.arrow-top .arrow-icon,
.handbook-wrapper .block.bios .arrow.arrow-bottom .arrow-icon {
  width: 2px;
  height: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00a7ff;
  position: absolute;
}

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

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

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

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

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

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

.handbook-wrapper .block.bios .bio-wrapper:hover .arrow {
  display: block;
}

.block.bios .bio-wrapper:first-child .arrow.arrow-top,
.block.bios .bio-wrapper:last-child .arrow.arrow-bottom {
  display: none;
}
