.collapsible-section-wrapper {
  font-size: 20px;
  padding-bottom: 5px;
  z-index: 10;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collapsible-section-wrapper.overlay-active {
  z-index: 0;
}

.collapsible-section-wrapper .add-collapsible-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 240px;
  margin: 0 auto;
}

.collapsible-section-wrapper .add-collapsible-button {
  padding: 13px 20px;
  font-size: 16px;
  text-align: center;
  color: #00a7ff;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  width: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: padding-right 0.5s;
}

.collapsible-section-wrapper.has-bg-image .add-collapsible-button {
  padding-right: 50px;
  opacity: 0.7;
  pointer-events: none;
}

.collapsible-section-wrapper .button-collapsible {
  display: none;
  cursor: pointer;
  color: #00a7ff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.collapsible-section-wrapper .button-collapsible .name {
  letter-spacing: 1px;
}

.collapsible-section-wrapper .button-collapsible .down-arrow-icon {
  margin-left: 7px;
  transition: transform 0.5s;
}

.collapsible-section-wrapper .button-collapsible.show {
  display: flex;
}

.collapsible-section-wrapper .less-button .down-arrow-icon {
  transform: rotateX(180deg);
}

.collapsible-section-wrapper .read-more-button .down-arrow-icon {
  transform: rotateX(0deg);
}

.collapsible-section-wrapper .modal-tooltip-wrapper {
  margin-left: 10px;
  position: absolute;
  right: 17px;
  opacity: 0;
  transition: opacity 0.5s;
}

.collapsible-section-wrapper.has-bg-image .modal-tooltip-wrapper {
  opacity: 1;
}

.collapsible-section-wrapper .modal-tooltip-wrapper .tooltip-icon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  background: #00a7ff;
  color: #ffffff;
  text-align: center;
  line-height: 19px;
}

.collapsible-section-wrapper .modal-tooltip-wrapper .tooltip-text {
  min-width: 240px;
  transform: translate(17%, -60%);
  bottom: unset;
  left: 0;
}

.collapsible-section-wrapper .modal-tooltip-wrapper .tooltip-text::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-width: 13px;
  border-style: solid;
  border-color: transparent #01a7ff transparent transparent;
}

.handbook-previewing
  .collapsible-section-wrapper.has-bg-image
  .add-collapsible-button,
.handbook-previewing
  .collapsible-section-wrapper.has-bg-image
  .modal-tooltip-wrapper {
  display: none;
}

.handbook-previewing .collapsible-section-wrapper.has-bg-image {
  padding: 0;
}

/* style tab */
.options-theme-wrapper.collapsible-custom-wrapper
  select.name-collapsible-button:focus {
  box-shadow: none;
}

.options-theme-wrapper.collapsible-custom-wrapper
  .collapsible-custom-color-wrapper
  h5 {
  line-height: 14px;
}

.options-theme-wrapper.collapsible-custom-wrapper .name-collapsible-button {
  margin-top: 0;
}
/* end style tab */

/* block */
.block-wrapper[data-type='blank'] {
  transition: height 0.3s;
}

.block-wrapper[data-type='blank'].flexible-height {
  transition: height 1s;
  height: 100vh;
  min-height: 100vh;
}

.block-wrapper[data-type='blank'].flexible-height.height-auto {
  height: auto;
}

.block-wrapper[data-type='blank'].flexible-height.show-collapsible-content {
  transition: height 1s;
  height: auto;
}

.block-wrapper[data-type='blank'] .collapsible-content {
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
  min-height: 0;
}

.handbook-wrapper.handbook-previewing
  .block-wrapper[data-type='blank'].flexible-height
  .content.static {
  padding: 150px 0px;
}

.block-wrapper[data-type='blank'].flexible-height.show-collapsible-content
  .collapsible-content {
  transition: max-height 0.5s ease-in;
  max-height: max-content;
}

.handbook-wrapper .block-wrapper[data-type='blank'].flexible-height .block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-pdf
  .block-wrapper[data-type='blank'].flexible-height.show-collapsible-content
  .collapsible-content {
  border: 1px gray dashed;
  padding: 20px;
}
/* end block */

@media screen and (max-width: 768px) {
  .collapsible-section-wrapper {
    padding-bottom: 12px;
  }
  .collapsible-section-wrapper .button-collapsible {
    font-size: 12px;
  }
  .collapsible-section-wrapper .button-collapsible .down-arrow-icon {
    width: 12px;
    height: 12px;
  }

  .block-wrapper[data-type='blank'].flexible-height {
    height: auto;
    min-height: auto;
  }

  .handbook-wrapper.handbook-previewing
    .block-wrapper[data-type='blank'].flexible-height
    .content.static {
    padding: 70px 20px;
  }

  .export-pdf
    .block-wrapper[data-type='blank'].flexible-height.show-collapsible-content
    .collapsible-content {
    padding: 10px;
  }
}
