/* Import variables */


/* Checklist section styles */
.ccc-checklist-section {
  width: 100%;
}

.ccc-checklist {
  background: #f7f8fa;
  padding: 30px 120px;
  display: flex;
  flex-direction: row;
}

/* Checklist blocks */
.ccc-checklist .checklist-block-left {
  width: 40%;
  flex: 0 0 auto;
  padding-right: 120px;
}

.ccc-checklist .checklist-block-right {
  width: 70%;
  flex: 0 0 auto;
}

/* Typography */
.ccc-checklist p {
  font-family: BioRhyme;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 400;
}

/* Button container */
.ccc-checklist .btn-cnt {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
  width: 100%;
}

.ccc-checklist .btn-cnt a {
  margin: 10px 0;
}

/* Checklist item */
.ccc-checklist .checklist-item {
  display: flex;
  flex-direction: row;
  background: transparent;
  padding: 0;
  border: none;
  width: 100%;
  margin: 0 0 32px;
}

/* Icon styles */
.ccc-checklist .checklist-item i {
  display: flex;
  align-items: center;
  position: relative;
  width: 78px;
  min-width: 78px;
  height: 78px;
  border-radius: 78px;
  background: var(--ccc-theme-gradient);
  margin: 0 27px 0 0;
  z-index: 5;
  transition: .4s;
}

.ccc-checklist .checklist-item i .icon img {
  text-align: center;
  width: 78px;
  height: 40px;
}

.ccc-checklist .checklist-item i .arrow {
  position: absolute;
  right: 10px;
  opacity: 0;
  width: 51px;
  height: 51px;
  background: url("data:image/svg+xml,%3Csvg width='51' height='51' viewBox='0 0 51 51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.9228 6.375L29.7394 8.49469L45.2147 23.9859H0V27.0141H45.2147L29.7394 42.5213L31.9228 44.625L51 25.5L31.9228 6.375Z' fill='white'/%3E%3C/svg%3E") 50% no-repeat;
  background-size: 100%;
  transition: opacity 0s;
}

/* Bubble styles */
.ccc-checklist .checklist-item .bubble {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  padding: 24px 24px 24px 0;
  text-align: left;
  z-index: 4;
  min-width: 585px;
  max-width: 585px;
}

.ccc-checklist .checklist-item .bubble span {
  position: relative;
  z-index: 6;
}

.ccc-checklist .checklist-item .bubble .subheader {
  font-family: Gibson Semi Bold;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 25px;
  line-height: 1.5625rem;
}

.ccc-checklist .checklist-item .bubble .subheader a {
  font-family: Gibson;
  text-decoration: underline;
}

.ccc-checklist .checklist-item .bubble .content p {
  font-family: Gibson;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  line-height: 1.6875rem;
  margin: 16px 0 0;
}

.ccc-checklist .checklist-item .bubble .content.no-title p {
  margin-top: 0;
}

/* Hover and active states */
.ccc-checklist .checklist-item.on i,
.ccc-checklist .checklist-item:hover i {
  width: 168px;
  min-width: 168px;
  justify-content: flex-start;
}

.ccc-checklist .checklist-item.on i .arrow,
.ccc-checklist .checklist-item:hover i .arrow {
  transition-delay: .4s;
  opacity: 1;
  transition: opacity .4s;
}

.ccc-checklist .checklist-item.on .bubble,
.ccc-checklist .checklist-item:hover .bubble {
  background: #fff;
  box-shadow: 0 4px 8px rgba(100,116,139,.2);
}

.ccc-checklist .checklist-item.on .bubble:before,
.ccc-checklist .checklist-item:hover .bubble:before {
  position: absolute;
  content: "";
  top: 16px;
  left: -60px;
  width: 60px;
  height: 100%;
  background: #fff;
  transform: skewY(-30deg);
  box-shadow: 0 4px 8px rgba(100,116,139,.2);
  z-index: 3;
}

.ccc-checklist .checklist-item.on .bubble:after,
.ccc-checklist .checklist-item:hover .bubble:after {
  position: absolute;
  content: "";
  top: 0;
  left: -5px;
  width: 10px;
  height: 100%;
  background: #fff;
  z-index: 5;
}

/* Responsive styles */
@media only screen and (max-width: 1330px) {
  .ccc-checklist .checklist-item .bubble {
    min-width: 485px;
    max-width: 485px;
  }
}

@media only screen and (max-width: 1280px) {
  .ccc-checklist .checklist-item .bubble {
    min-width: 385px;
    max-width: 385px;
  }
}

@media only screen and (max-width: 1080px) {
  .ccc-checklist .checklist-item .bubble {
    min-width: 285px;
    max-width: 285px;
  }
}

@media only screen and (max-width: 1024px) {
  .ccc-checklist {
    padding: 40px 64px;
    flex-direction: column;
  }

  .ccc-checklist .checklist-block-left,
  .ccc-checklist .checklist-block-right {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .ccc-checklist .checklist-block-left {
    padding-right: .5rem;
    margin-bottom: 80px;
  }

  .ccc-checklist .btn-cnt {
    flex-direction: row;
  }

  .ccc-checklist .btn-cnt a:first-child {
    margin-right: 24px;
  }

  .ccc-checklist .checklist-item i {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 64px;
    margin: 0 20px 0 0;
  }

  .ccc-checklist .checklist-item i .icon img {
    width: 64px;
    height: 32px;
  }

  .ccc-checklist .checklist-item.on i,
  .ccc-checklist .checklist-item:hover i {
    width: 136px;
    min-width: 136px;
  }

  .ccc-checklist .checklist-item .bubble {
    min-width: 0;
    width: 66.666666%;
    max-width: 66.666666%;
  }
}

@media only screen and (max-width: 767px) {
  .ccc-checklist {
    padding: 32px;
  }

  .ccc-checklist .btn-cnt {
    flex-direction: column;
  }

  .ccc-checklist .btn-cnt a:first-child {
    margin-right: 0;
  }

  .ccc-checklist .checklist-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .ccc-checklist .checklist-item i {
    margin: 0 auto 16px;
  }

  .ccc-checklist .checklist-item i .arrow {
    transform: rotate(90deg);
    height: 40px;
    width: 40px;
  }

  .ccc-checklist .checklist-item .bubble {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    text-align: center;
  }

  .ccc-checklist .checklist-item.on .bubble:before,
  .ccc-checklist .checklist-item:hover .bubble:before,
  .ccc-checklist .checklist-item.on .bubble:after,
  .ccc-checklist .checklist-item:hover .bubble:after {
    display: none;
  }
}