/*========== cheatsheet_info css =========*/
.cheatsheet_info {
  & + .cheatsheet_info {
    margin-top: 30px;
  }
}

.cheatsheet_accordion {
  .card {
    border: 0;
    padding: 0;
    overflow: visible;
    margin-top: 0;
    background: transparent;

    .card-header {
      padding: 0;
      border: 0;
      background: transparent;

      button {
        padding: 0;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 30px;
        background: transparent;
        color: var(--black_900);
        text-decoration: none;
        margin-left: 8px;
        border: none;

        .minus {
          display: inline-block;
        }

        .pluse {
          display: none;
        }

        &.active {
          .pluse {
            display: inline-block;
          }

          .minus {
            display: none;
          }
        }
      }
    }
  }
  .collapse.show {
    display: block;
  }
}

.cheatsheet_item {
  text-align: left;
  padding: 20px 20px 30px;
  margin-bottom: 0;
  transition: all 0.3s linear;
  background: var(--bs-white);
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);

  &:hover {
    box-shadow: 0 20px 27px 0 rgba(4, 73, 89, 0.08);
  }

  .cheatsheet_num {
    text-align: right;
    transition: 0.3s;
  }

  p {
    margin-bottom: 0;
    transition: 0.3s;
  }

  h5 {
    margin-bottom: 0;
    color: rgb(76 76 241);
    transition: 0.3s;
  }
}

.light-header {
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 100%;
  text-align: center;

  @media (max-width: 768px) {
    bottom: -10px;
  }

  .title-light {
    color: #eff4f7;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 30px;
      bottom: -10px;
    }
  }
}


.cheat-info-box {
  display: flex;
  align-items: start;
  padding: 10px;
  background-color: #f7e2cf;
  border-radius: 5px;
  transition: 0.3s;
  position: relative;
  .cheatsheet_num {
    position: absolute;
    right: 20px;
  }

  .outline {
    position: relative;

    &:before {
      content: "";
      position: absolute;
      top: 20px;
      left: 60px;
      width: 48px;
      height: 3px;
      background-color: #d9534f;
    }
    .info-box-number {
      background-color: #d9534f;
      border-radius: 50%;
      min-width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;

      .number-circle {
        background-color: #fff;
        color: #d9534f;
        border-radius: 50%;
        min-width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 500;
        box-shadow: 15px 20px 0 rgba(0, 0, 0, 0.1);
      }
    }
  }

  .cheat-info-content {
    padding: 10px 0 0 15px;
    display: inline-block;

    .info-box-heading {
      font-size: 20px;
      font-weight: 700;
      color: #d9534f;
      transition: 0.3s;
      margin: 0 0 0 24px;
    }

    .info-box-description {
      font-size: 14px;
      color: #333;
      transition: 0.3s;
    }
  }
}

.smooth-show-hide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Smooth transition */
}

.smooth-show-hide.visible {
  display: block;
  opacity: 1;
}

/*========== cheatsheet-3 css =========*/
.cs-items3-gap {
  grid-gap: 30px;

  .cs-items3 {
    padding: 20px 20px 25px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.075);

    .cs-outline3 {
      display: flex;
      position: relative;
      align-items: center;
      column-gap: 42px;
      transition: 0.3s;

      &:before {
        content: "";
        position: absolute;
        top: 15px;
        left: 35px;
        width: 25px;
        height: 2px;
        background-color: #f6ba18;
        transition: 0.3s;
      }

      .serial-number {
        line-height: 1.3;
        font-size: 24px;
        font-weight: 700;
        color: #245749;
        transition: 0.3s;
      }

      .cs3-title {
        font-size: 24px;
        font-weight: 700;
        color: #245749;
        margin: 0;
        transition: 0.3s;
      }
    }

    .cs-info-desc {
      color: #1a3830;
      transition: 0.3s;
      margin: 10px 0 15px;
    }
  }
}