.radio-player-getting-started {
  background: linear-gradient(180deg, #f9e9f1 0, #e8f7f9 150px, #dff4ef 200px, #e7f6f8 300px, #fff 500px, #fff 100%) fixed;
  min-height: 100vh;

  * {
    box-sizing: border-box;
  }

  .getting-started-header {
    z-index: 99;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 32px;
    margin-bottom: 30px;

    .header-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.5;

      img {
        width: 40px;
        margin-right: 15px;
      }

      .header-title {
        display: flex;
        flex-direction: column;

        h1 {
          font-size: 20px;
          font-weight: 600;
          color: #151826;
          margin: 0;
        }

        p {
          font-size: 14px;
          color: #666e8c;
          margin: 0;
        }
      }

    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;

      .button {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 10px 12px;
        border-radius: 5px;
        font-size: 15px;
        transition: all 0.3s ease-in-out;
        border: 1px solid transparent;
        cursor: pointer;
        text-decoration: none;
        line-height: 1;

        &.docs {
          color: #64B5F6;
          background: #FFF;
          border-color: #64B5F6;

          &:hover {
            background: darken(#FFF, 5%);
            border-color: darken(#64B5F6, 10%);
          }
        }

        &.upgrade {
          color: #fff;
          background: #ff901b;
          border-color: #ff901b;

          &:hover {
            background: darken(#ff901b, 10%);
            border-color: darken(#ff901b, 10%);
          }
        }

        img {
          width: 18px;
          height: 18px;
        }
      }
    }
  }

  .getting-started-main {
    margin: 0 auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
  }

  .getting-started-menu {
    position: sticky;
    top: 120px;
    height: fit-content;
    align-items: flex-start;
    width: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border-radius: 10px;

    .menu-item {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      cursor: pointer;
      color: #4d4d4d;
      transition: all 0.3s ease-in-out;
      border-radius: 10px;
      white-space: nowrap;
      overflow: hidden;
      width: 100%;

      svg,
      img {
        margin-right: 5px;
      }

      span {
        font-size: 0.9rem;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      &:hover {
        color: $radio_player_color_dark;

        svg,
        path {
          fill: $radio_player_color_dark;
        }
      }

      &.active {
        background: $radio_player_color;
        color: #fff;

        svg,
        path {
          fill: #fff;
        }

        img {
          filter: brightness(0) invert(1);
        }
      }
    }

    @media (max-width: 991px) and (min-width: 768px) {
      .menu-item {
        padding: 20px 15px;
      }
    }
    @media (max-width: 767px) {
      border-radius: 0;
      flex-direction: column;
      align-items: normal;
    }
  }

  .getting-started-content {
    display: none;
    flex: 1;
    border-radius: 10px;
    background: #fff;
    width: calc(100% - 350px);

    .notice {
      display: none;
    }

    .section-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 10px;

      section {
        width: calc(50% - 15px);
      }
    }

    section {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      border-radius: 16px;
      margin-bottom: 20px;
      position: relative;

      &.rp-hidden {
        display: none;
      }

      .rp-popup {
        float: right;
        margin-left: 15px;
      }

      &.section-radio-player-ads {
        .rp-popup {
          float: none;
          margin: 0;
          width: 100%;

          img {
            width: 100%;
          }
        }
      }

      &.section-full {
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 2rem;

        & > div {
          width: 48%;
        }

        & > .col-full {
          width: 100%;
        }

        & > .popular-plugins-wrap,
        & > .content-log {
          width: 100%;
        }

        & > .content-heading {
          width: 100%;
          margin: 0 auto 42px 0;
          max-width: 100%;
        }
      }

      &.section-half {
        justify-content: center;

        .col-description {
          text-align: center;
          margin-bottom: 1rem;

          h2 {
            margin-top: 0;
          }
        }

        .col-image {
          margin-top: auto;
        }
      }

      &.section-help {
        .section-wrap {
          width: 100%;

          .section-half {
            padding: 30px;
            border: 1px solid #ddd;
            width: calc(50% - 15px);
            border-radius: 16px;
            text-align: center;

            img {
              width: 200px;
              height: 120px;
              object-fit: contain;
            }

            h3 {
              color: #202224;
            }

            p {
              font-size: 15px;
              color: #8997af;
            }

            a {
              margin: 0;
              height: 40px;
              padding: 10px 15px;
            }

          }
        }
      }

      &.section-popular-plugins {
        .popular-plugins-wrap {
          display: flex;
          flex-direction: column;
          max-width: 880px;
          margin: auto;

          .popular-plugin-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 15px;
            background: #fff;

            img {
              width: 70px;
              height: 70px;
              margin-right: 15px;
            }

            .plugin-info {
              display: flex;
              flex-direction: column;

              h3 {
                font-size: 1rem;
                font-weight: 500;
                margin-bottom: 0;
                margin-top: 0;
              }

              p {
                margin-top: 5px;
                margin-bottom: 0;
                font-size: 14px;
              }

              .users-count {
                display: flex;
                align-items: center;
                font-size: 13px;
                line-height: 1.5;
                font-weight: 400;
                color: #555;
                margin: 7px 0 0 0;
                padding: 2px 5px 2px 8px;
                border-left: 3px solid var(--plugin-color);
                background: linear-gradient(
                                to right,
                                var(--plugin-color) -150%,
                                transparent 95%
                );
                background-repeat: no-repeat;
                background-size: 120px;
                border-radius: 5px;
              }
            }

            .button-group {
              display: flex;
              gap: 10px;
              margin-left: auto;

              .radio-player-btn {
                padding: 10px 12px;
                margin-top: 0;
                font-size: 14px;
              }
            }
          }

          @media (max-width: 767px) {
            .popular-plugin-item {
              flex-direction: column;
              align-items: flex-start;

              img {
                width: 50px;
                height: 50px;
                margin-bottom: 10px;
              }

              .plugin-info {
                h3 {
                  font-size: 1rem;
                }
              }

              .components-button-group {
                margin-top: 10px;
                width: 100%;
                justify-content: space-between;
              }
            }
          }
        }
      }

      &.section-border {
        border: 1px solid #eee;
      }

      &.section-features,
      &.section-integrations {

        &:not(.show) .features > *:nth-child(n+4) {
          display: none;
        }

        &:not(.show) .integrations > *:nth-child(n+7) {
          display: none;
        }

        .features,
        .integrations {
          &:after {
            content: "";
            position: absolute;
            bottom: 0;
            width: calc(100% - 20px);
            height: 80%;
            border-radius: 10px;
            background: linear-gradient(to bottom, transparent 20%, #fff 90%);
          }
        }

        &.show {

          .features,
          .integrations {
            &:after {
              display: none;
            }
          }

          .show-all-btn-wrap {
            display: none;
          }

        }


      }

      &.section-add-ons {
        border-radius: 0;
        background: #fff;

        .section-wrap {
          width: 100%;

          p {
            margin-bottom: 24px;
          }

          .ribbon {
            position: absolute;
            top: -10px;
            right: -10px;
            background: $radio_player_color;
            color: #fff;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 5px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transform: rotate(15deg);

            i {
              margin-right: 3px;
            }

          }

          .actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;

            .button {
              display: inline-flex;
              align-items: center;
              gap: 5px;
              padding: 12px 16px;
              border-radius: 8px;
              border-color: $radio_player_color;
              color: $radio_player_color;
              line-height: normal;
              transition: all 0.3s ease-in-out;
              font-weight: normal;
              font-size: 14px;
              background: #FFF;

              &:hover {
                background: darken(#FFF, 5%);
                border-color: darken($radio_player_color, 10%);
                color: darken($radio_player_color, 10%);
              }

              &.learn-more {
                svg {
                  transform: rotate(-45deg);
                }
              }

              &.upgrade {
                background: $radio_player_color;
                color: #fff;

                path {
                  stroke: #fff;
                }

                &:hover {
                  background: darken($radio_player_color, 10%);
                }

              }


            }
          }
        }
      }

      &.section-radio-player-ads {
        background: #fff;

        .col-description {
          border: 1px solid #ddd;
          border-radius: 16px;
          padding: 30px 28.5px;
          width: 100%;
          margin-bottom: 30px;
        }

        h2 {
          font-size: 32px;
          font-weight: 600;
          line-height: 1.2;
          margin-top: 0;
          text-align: center;
        }

        h3 {
          color: #000;
          margin-top: 0;
          font-size: 1.5rem;
          display: flex;
          align-items: center;
          gap: 5px;
        }
      }

      &.section-pricing {
        display: block;
        margin: 0;

        .pricing {
          .pricing-switcher {
            display: flex;
            align-items: center;
            justify-content: center;
            width: max-content;
            margin: 0 auto 40px auto;

            > .switch {
              position: relative;
              width: 70px;
              height: 35px;
              background: $radio_player_color;
              border-radius: 20px;
              cursor: pointer;
              transition: all 0.3s ease;
              margin: 0 15px;
              display: flex;
              align-items: center;
              line-height: 1;

              &:after {
                content: "";
                position: absolute;
                width: 25px;
                height: 25px;
                border-radius: 50%;
                background: #fff;
                left: 5px;
                transition: all 0.3s ease;
              }
            }

            .switch-text {
              color: #5c637e;
              font-size: 1.2rem;
              cursor: pointer;

              &.annual {
                color: $radio_player_color;
                cursor: pointer;
              }

              &.lifetime {
                opacity: .5;
              }

            }

            &.active {

              .switch {
                background: $radio_player_color;

                &:after {
                  left: auto;
                  right: 5px;
                }
              }

              .switch-text {

                &.annual {
                  color: #5c637e;
                  opacity: .5;
                }

                &.lifetime {
                  color: $radio_player_color;
                  cursor: pointer;
                  opacity: 1;
                }
              }
            }

          }

          .pricing-container {
            display: flex;
            justify-content: flex-start;
            padding-top: 40px;
            overflow: scroll;

            .pricing-card {
              background: white;
              text-align: center;
              padding: 20px;
              min-width: 220px;
              border-bottom: 1px solid #e4e4e7;
              transition: linear 0.4s;
              min-height: 100%;
              display: flex;
              flex-direction: column;
              justify-content: space-between;

              h3 {
                font-size: 24px;
                margin: 0 0 10px 0;
                font-weight: normal;
              }

              &.card-profesion {
                margin-top: -40px;
                margin-bottom: 42px;
                box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
                position: relative;
                padding: 0;

                .card-profe {
                  background: #2fb44b;
                  padding: 10px 15px;

                  h3 {
                    color: #fff;
                    font-size: 18px;
                    font-weight: 700;
                    margin: 0;
                  }
                }
              }

              .pricing-btn {
                .features-btn {
                  color: #2fb44b;
                  font-size: 16px;
                  font-weight: 400;
                  text-align: left;
                  padding-top: 25px;
                  padding-bottom: 15px;
                  display: block;
                  text-decoration: none;
                }
              }

              .plan-name {
                font-weight: bold;
                border-top: 1px solid #eaeeff;
                border-bottom: 1px solid #eaeeff;
                padding: 10px 0;
              }

              .buy-btn-pro {
                color: #fff;
                display: inline-block;
                margin-top: auto;
                padding: 12px 25px;
                width: 100%;
                text-decoration: none;
              }

              &.card-green {
                transition: linear 0.4s;
                border: 1px solid #00bb45;
                border-right: 1px solid #00bb45;
                border-left: 1px solid #00bb45;
                border-bottom: 1px solid #00bb45;

                .price-text {
                  color: #00bb45;
                }

                .plan-name {
                  color: #01c034;
                }

                .btn-green {
                  background: #28a745;
                }
              }

              &.card-orange {
                border-top: 3px solid orange;
                transition: linear 0.4s;

                .price-text {
                  color: #fd7e14;
                }

                .plan-name {
                  color: #fd7e14;
                }

                .btn-orange {
                  background: #fd7e14;
                }
              }

              &.card-blue {
                border-top: 3px solid #007bff;
                border-right: 1px solid #e4e4e7;
                border-left: 1px solid #e4e4e7;
                transition: linear 0.4s;

                .price-text {
                  color: #007bff;
                }

                .plan-name {
                  color: #007bff;
                }

                .btn-blue {
                  background: #007bff;
                }
              }

              &.card-sky-blue {
                border-top: 3px solid #02c4f0;
                border-right: 1px solid #e4e4e7;
                border-left: 1px solid #e4e4e7;
                transition: linear 0.4s;

                .price-text {
                  color: #02c4f0;
                }

                .plan-name {
                  color: #02c4f0;
                }

                .btn-sky-blue {
                  background: #02c4f0;
                }
              }

              &.card-pink {
                border-top: 3px solid #e83e8c;
                transition: linear 0.4s;

                .price-text {
                  color: #e83e8c;
                }

                .plan-name {
                  color: #e83e8c;
                }

                .btn-pink {
                  background: #e83e8c;
                }
              }

              .price-text {
                margin: 1rem 0;
                color: #00bb45;

                .price-value {
                  font-size: 2rem;
                  font-weight: 600;
                  display: none;

                  &:before {
                    content: "$";
                    font-size: 1.5rem;
                    vertical-align: top;
                  }

                  &.free {
                    display: inline-block;
                  }

                  .cent {
                    font-size: 22px;
                    vertical-align: middle;
                  }
                }

                .price-suffix {
                  display: none;
                }

                &.annual {
                  &.license-1 {
                    .price-value.single.annual {
                      display: inline-block;
                    }
                  }

                  &.license-2 {
                    .price-value.two.annual {
                      display: inline-block;
                    }
                  }

                  &.license-5 {
                    .price-value.five.annual {
                      display: inline-block;
                    }
                  }

                  &.license-100 {
                    .price-value.hundred.annual {
                      display: inline-block;
                    }
                  }

                  &.license-unlimited {
                    .price-value.unlimited.annual {
                      display: inline-block;
                    }
                  }

                  .price-suffix.annual {
                    display: inline-block;
                  }
                }

                &.lifetime {
                  &.license-1 {
                    .price-value.single.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-2 {
                    .price-value.two.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-5 {
                    .price-value.five.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-100 {
                    .price-value.hundred.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-unlimited {
                    .price-value.unlimited.lifetime {
                      display: inline-block;
                    }
                  }

                  .price-suffix.lifetime {
                    display: inline-block;
                  }
                }

                .offer-price {
                  display: none;
                  margin-bottom: 20px;

                  .price-offer {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  .price-off {
                    color: #757575;
                    font-weight: 500;
                    font-size: 1.2rem;
                    margin-bottom: 0;
                    text-decoration: line-through;
                  }

                  .price-dis {
                    letter-spacing: -0.004em;
                    color: #fff;
                    font-weight: normal;
                    font-size: 14px;
                    background: #ffae35;
                    border-radius: 50px;
                    padding: 6px 12px;
                    margin-left: 10px;
                    text-decoration: none !important;
                  }
                }

                &.annual {
                  &.license-1 {
                    .offer-price.single.annual {
                      display: block;
                    }
                  }

                  &.license-2 {
                    .offer-price.two.annual {
                      display: block;
                    }
                  }

                  &.license-5 {
                    .offer-price.five.annual {
                      display: block;
                    }
                  }

                  &.license-100 {
                    .offer-price.hundred.annual {
                      display: block;
                    }
                  }

                  &.license-unlimited {
                    .offer-price.unlimited.annual {
                      display: block;
                    }
                  }

                  .price-suffix.annual {
                    display: inline-block;
                  }
                }

                &.lifetime {
                  &.license-1 {
                    .offer-price.single.lifetime {
                      display: block;
                    }
                  }

                  &.license-2 {
                    .offer-price.two.lifetime {
                      display: block;
                    }
                  }

                  &.license-5 {
                    .offer-price.five.lifetime {
                      display: block;
                    }
                  }

                  &.license-100 {
                    .offer-price.hundred.lifetime {
                      display: block;
                    }
                  }

                  &.license-unlimited {
                    .offer-price.unlimited.lifetime {
                      display: block;
                    }
                  }
                }
              }

              .feature-item {
                margin-top: 10px;
                display: flex;
                align-items: center;

                i {
                  width: 20px;
                  height: 20px;
                  line-height: 20px;
                  background: #2fb44b;
                  font-size: 0.8rem;
                  color: #fff;
                  border-radius: 5px;
                  margin-right: 10px;
                  text-align: center;
                }

                span {
                  color: #5c637e;
                  font-weight: normal;
                  font-size: 0.8rem;
                  flex: 1;
                  text-align: left;

                  .hot {
                    border-radius: 3px;
                    background: #ffe7d6;
                    padding: 1px 4px;
                    color: #ce0404;
                    font-size: 0.7rem;
                    font-weight: 400;
                    border: 1px solid #ffe7d6;
                    margin-left: 0px;
                    display: inline-flex;
                    align-items: center;
                    text-transform: uppercase;

                    img {
                      margin-left: 2px;
                    }
                  }

                  .new {
                    border-radius: 3px;
                    background: #00bb45;
                    padding: 1px 4px;
                    color: #fff;
                    padding-right: 0px;
                    font-size: 0.7rem;
                    font-weight: 400;
                  }
                }
              }
            }

            .pricing-head {
              position: relative;
              z-index: 1;

              .pricing-head-title {
                color: #fff;
              }

              .pricing-head-description {
                color: #fff;
              }
            }
          }

          @media (min-width: 1600px) {
            .pricing-container {
            }
          }

          @media (min-width: 1400px) {
            .pricing-container {
            }
          }

          @media (min-width: 1200px) and (max-width: 1399px) {
            .pricing-container {

              .pricing-card {
                padding: 16px 12px;

                h3 {
                  font-size: 22px;
                }

                p {
                  font-size: 11px;
                  margin: 0;
                }

                .price-text {
                  margin: 12px 0px;

                  .offer-price {
                    margin-bottom: 14px;

                    .price-offer {
                      .price-off {
                        font-size: 20px;
                      }

                      .price-dis {
                        font-size: 13px;
                        padding: 4px 8px;
                        margin-left: 8px;
                      }
                    }
                  }

                  .price-value {
                    font-size: 28px;
                  }
                }

                .plan-name {
                  font-size: 11px;
                  padding: 6px 0;
                }

                .feature-item {
                  margin-top: 8px;

                  i {
                    font-size: 12px;
                    width: 16px;
                    height: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  span {
                    font-size: 11px;
                  }
                }

                .pricing-btn {
                  .features-btn {
                    font-size: 12px;
                    padding-top: 20px;
                    padding-bottom: 10px;
                  }

                  .buy-btn-pro {
                    padding: 6px 10px;
                  }
                }
              }
            }
          }

          @media (min-width: 992px) and (max-width: 1199.98px) {
            .pricing-container {

              .pricing-card {
                padding: 12px 8px;

                .card-profe {
                  h3 {
                    font-size: 13px !important;
                  }
                }

                h3 {
                  font-size: 16px;
                  margin: 0 0 6px 0;
                }

                p {
                  font-size: 8px;
                  margin: 0;
                }

                .price-text {
                  margin: 6px 0px;

                  .offer-price {
                    margin-bottom: 8px;

                    .price-offer {
                      .price-off {
                        font-size: 12px;
                      }

                      .price-dis {
                        font-size: 10px;
                        padding: 3px 6px;
                        margin-left: 6px;
                      }
                    }
                  }

                  .price-value {
                    &::before {
                      font-size: 15px;
                    }

                    font-size: 15px;
                  }
                }

                .plan-name {
                  font-size: 9px;
                  padding: 4px 0;
                }

                .feature-item {
                  margin-top: 8px;

                  i {
                    font-size: 10px;
                    width: 14px;
                    height: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 6px;
                  }

                  span {
                    font-size: 9px;
                    line-height: 1.5;
                  }
                }

                .pricing-btn {
                  .features-btn {
                    font-size: 9px;
                    padding-top: 9px;
                    padding-bottom: 9px;
                  }

                  .buy-btn-pro {
                    padding: 4px 8px;
                  }
                }
              }
            }
          }

          @media (min-width: 768px) and (max-width: 991.98px) {
            .pricing-switcher {
              margin-bottom: 1.5rem;
            }

            .pricing-container {

              .card-profesion {
                margin-top: 0 !important;
                margin-bottom: 42px;
              }
            }
          }

          @media (max-width: 767.98px) {
            .pricing-switcher {
              margin-bottom: 1.5rem;
            }

            .pricing-container {

              .crad-profesion {
                margin-top: 0px;
                margin-bottom: 42px;
              }
            }
          }
        }

        @media (max-width: 767.98px) {
          margin-bottom: 30px;

          .pricing-switcher {
            margin-bottom: 1rem;
          }
        }
      }

      &.section-moneyback {
        border-radius: 0;
        background: #128d6c url("../images/getting-started/get-pro/moneyback_bg.png") center/cover no-repeat scroll;
        padding: 25px 0;
        margin: 0;
        flex-direction: column;
        align-items: center;

        .content-heading {
          max-width: 90%;
          margin: 0 auto;

          h2 {
            color: #fff;
            margin: 0 auto 16px auto;
          }

          p {
            line-height: 1.2;
            color: #fff;
            margin: 0 auto 36px auto;
          }
        }

        img {
          margin-bottom: 10px;
          width: 100%;
          max-width: 500px;
        }
      }

      &.section-get-pro {
        background: #fff;
        border-radius: 0;
        flex-direction: column;
        margin: 0;
      }

      &.section-reviews {
        background: #fff;
        border-radius: 0;
        margin: 0;

        .reviews {
          display: flex;
          flex-wrap: wrap;
          gap: 24px;

          .review-item {
            width: calc(50% - 12px);
            background: #f9faff;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #e1e5ed;

            .quote {
              position: absolute;
              top: 30px;
              right: 30px;
            }

            h3 {
              color: #5c637e;
              margin: 0 0 15px 0;
              font-size: 20px;
              font-weight: normal;
              line-height: 1.5;
            }

            .rating {
              margin-bottom: 16px;

              i {
                font-size: 22px;
                width: 22px;
                height: 22px;
                color: #ff8f1e;
              }
            }

            p {
              font-size: 14px;
              font-style: italic;
              margin-bottom: 25px;
              font-weight: normal;
            }

            .author {
              display: flex;
              gap: 12px;
              align-items: center;

              img {
                width: 35px;
                border: 1px solid #ddd;
                border-radius: 50%;
              }

              p {
                color: #151826;
                font-size: 1rem;
                font-style: normal;
                line-height: 1.5;
                font-weight: 500;
                margin: 0;
              }
            }
          }
        }
      }

      &.section-cta {
        border-radius: 0;
        flex-direction: column;
      }

      .col-image {
        width: 100%;
        text-align: center;

        img {
          max-width: 100%;
          border-radius: 16px;
        }

        iframe {
          width: 100%;
          border-radius: 16px;
          aspect-ratio: 16/9;
        }
      }

      .radio-player-btn {
        padding: 15px 20px;
        margin: 30px auto 0 auto;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease-in-out;
        gap: 4px;

        &:hover {
          color: #fff;
        }

        img {
          width: 14px !important;
          margin: 0 !important;
        }
      }

      .integrations {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 -10px;
        padding: 0;

        .integration {
          width: calc(33% - 20px);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          text-align: center;
          background: #fff;
          border: 1px solid #ddd;
          margin: 10px;
          padding: 20px;
          border-radius: 15px;

          h3 {
            margin-bottom: 10px;
          }

          img {
            width: 70px;
            height: 70px;
            margin-bottom: 10px;
            border-radius: 50%;
          }
        }
      }
    }

    .show-all-btn-wrap {
      width: 100%;
      text-align: center;
      z-index: 1;
      margin-top: -30px;

      button {
        cursor: pointer;
        padding: 15px;
        margin: 20px auto 0 auto;
        text-decoration: none;
        background: $radio_player_color;
        border: none;
        border-radius: 10px;
        color: #fff;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 6px;

        i {
          margin-right: 0;
        }
      }
    }

    .rp-popup {
      position: relative;

      img {
        transition: all 0.3s ease-in-out;
      }

      .rp-play {
        position: absolute;
        background: transparent;
        border: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;

        &:focus-visible {
          box-shadow: none;
        }

        &:hover {
          background: rgba(0, 0, 0, 0.2);
        }

      }

      &:hover {
        img {
          filter: brightness(90%);
        }
      }

    }

    .content-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px auto;
      text-align: center;
      max-width: 650px;
      line-height: 1.3;

      h2 {
        margin: 5px 0;
        font-size: 24px;
        font-weight: 500;
      }

      p {
        margin: 5px;
        font-size: 15px;
        max-width: 700px;
        font-weight: normal;
      }
    }

    &#basic-usage {
      > .wrap {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        margin: 0;

        section {
          padding: 30px;
          border: 1px solid #ddd;
          gap: 30px;
          align-items: center;

          > .col-full {
            width: 100%;

            h2 {
              display: flex;
              align-items: center;
              gap: 5px;
            }
          }

          > .col-description,
          > .col-image {
            width: calc(50% - 15px);

            h2 {
              margin: 0 0 16px 0;
              display: flex;
              align-items: center;
              gap: 5px;
              font-size: 24px;
              font-weight: 600;
            }

            p {
              a {
                color: $radio_player_color;
              }
            }
          }
        }
      }
    }

    &.active {
      display: block;
    }


    p {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      margin-top: 0;
      color: #5c637e;
    }

    ul {
      list-style: disc;
      margin-left: 20px;
    }

    li {
      font-size: 1rem;
      margin-bottom: 12px;
      line-height: 1.5;
      color: #5c637e;

      strong {
        color: #5c637e;
      }

      ul {
        margin-top: 10px;

        ul {
          margin-top: 10px;
          margin-left: 20px;
        }
      }
    }

    @media (max-width: 767px) {
      padding: 10px;

      .section-wrap {
        section {
          width: 100%;
          margin-bottom: 30px;
        }
      }

      section {
        &.section-full {
          flex-direction: column;
          align-items: center;
          justify-content: center;

          & > div {
            width: 100%;
          }
        }

        &.integrations {
          margin: 0;

          .integration {
            width: 100%;
            margin: 0 0 20px 0;

            &.rp-hidden {
              display: none;
            }
          }
        }
      }
    }
  }

  .log {
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #eee;

    &-header {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 20px;
      background: #e9f6f066;
      border-radius: 15px;

      span {
        font-size: 1rem;
        font-weight: 500;
        margin-right: 10px;

        &.log-version {
          background: $radio_player_color;
          color: #fff;
          padding: 5px 10px;
          border-radius: 5px;
        }
      }

      i {
        margin-left: auto;
        background: $radio_player_color;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        height: 25px;
        width: 25px;
      }
    }

    &-body {
      display: none;

      .log-section {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(#2fb44b, 0.1);

        &:last-child {
          border-bottom: none;
        }
      }

      .log-item {
        font-size: 1rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;

        i {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin-right: 7px;
          border-radius: 50%;
          height: 25px;
          width: 25px;
          padding: 5px;
        }

        &-new {
          color: #3265a6;

          i {
            background: #3265a6;
            color: #fff;
          }
        }

        &-fix {
          color: #2fb44b;

          i {
            background: #2fb44b;
            color: #fff;
          }
        }

        &-enhancement {
          color: #f5a623;

          i {
            background: #f5a623;
            color: #fff;
          }
        }

        &-remove {
          color: #f3754d;

          i {
            background: transparent;
          }
        }
      }
    }

    &.active {
      border: 1px solid rgba(#2fb44b, 0.3);

      .log-header {
        border-bottom: 1px solid rgba(#2fb44b, 0.3);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .log-body {
        display: block;
        padding: 20px;
      }
    }
  }

  .free-vs-pro {
    h2 {
      span {
        margin: 0 10px;
      }

      span:first-child {
        color: #7a7a7a;
      }

      span:last-child {
        color: $radio_player_color_light;
      }
    }
  }

  .features-list {
    background: #fff;
    border-radius: 15px;

    .list-header {
      display: flex;
      align-items: center;
      padding: 30px;
      font-size: 20px;
      border-bottom: 1px solid rgba(#2fb44b, 0.1);
      font-weight: 600;
      color: #fff;
      background: #00bb45;
      border-radius: 15px;
      margin-bottom: 30px;

      .feature-title {
        width: 75%;
      }

      .feature-free {
        width: 12%;
      }

      .feature-pro {
        width: 12%;
        margin-left: auto;
        text-align: center;
      }
    }

    .feature {
      display: flex;
      align-items: center;
      padding: 15px 25px;
      font-size: 1rem;
      font-weight: 500;
      border: 1px solid #ddd;

      &:nth-child(even) {
        background: #e9f6f066;
        border-bottom: none;
      }

      &:nth-child(odd) {
        background: #fff;
        border-bottom: none;
      }

      &:nth-child(2) {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
      }

      &:last-child {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        border-bottom: 1px solid #9ea4b2;
      }

      .feature-title {
        width: 75%;
        color: #4d4d4d;
        font-size: 1rem;
      }

      i {
        color: #fff;
        background: $radio_player_color_light;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;

        &.dashicons-no-alt {
          background: #fe8483;
        }
      }

      .feature-free {
        width: 12%;
      }

      .feature-pro {
        width: 12%;
        margin-left: auto;
        text-align: center;
      }
    }
  }

  .get-pro-cta,
  .demo-cta {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 60%;
      color: #fff;

      h2 {
        margin-bottom: 5px;
        font-size: 22px;
        font-weight: bold;
        line-height: 1.3;
      }

      p {
        color: #fff;
      }
    }

    .cta-btn {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-left: auto;

      .radio-player-btn {
        padding: 15px 20px;
        text-decoration: none;
        background: #fff;
        color: $radio_player_color;
        font-weight: 500;

        > img {
          width: 22px !important;
          height: 22px !important;
        }

        &:hover {
          color: #fff;
          background: $radio_player_color;
        }
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }
    }
  }

  .get-pro-cta {
    background-image: url("../images/getting-started/get-pro/get-pro-bg.png");
  }

  .demo-cta {
    background-image: url("../images/getting-started/get-pro/get-demo-bg.png");

    .cta-content {
      color: #555;

      h2,
      p {
        color: #333;
      }
    }

    .cta-btn {
      .radio-player-btn {
        background: linear-gradient(143deg, #ffcda3 4.99%, #fd6c87 94.05%);
        color: #fff;
        font-weight: 500;
        padding: 15px 20px;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        gap: 5px;

        img {
          width: 22px;
          height: 22px;
        }

        &:hover {
          color: #fd6c87;
          background: #fff;
        }
      }
    }
  }

  .faq-item {
    margin-bottom: 15px;
    border: 1px solid #eff3fe;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 100%;
    flex-direction: column;
    user-select: none;

    .faq-header {
      font-weight: normal;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #e9f6f066;
      padding: 15px 20px;

      i {
        font-size: 1.2rem;
        transition: all 0.3s ease-in-out;
        background: #fff;
        color: #333;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #eee;

        &::before {
          color: $radio_player_color;
        }
      }

      h3 {
        font-size: 18px;
        margin: 0 !important;
        color: #4d4d4d;
        font-weight: 500;
      }
    }

    .faq-body {
      display: none;
      line-height: 1.5;
      padding: 10px 20px;

      p {
        font-size: 1rem;
        color: #444;
        font-weight: normal;
      }
    }

    &.active {
      .faq-header {
        i {
          color: $radio_player_color;
          transform: rotate(180deg);
        }
      }

      .faq-body {
        display: block;
      }
    }
  }
}

.radio-player-swal {
  .swal2-html-container {
    margin: 0;
  }

  .swal2-close {
    top: -20px;
    position: absolute;
    right: -20px;
    background: #fff !important;
    border-radius: 50%;
  }
}
