.prompt {
  background: $navbar-inverse-color;
  border-radius: 5px;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.2);
  width: 400px;
  z-index: 1020;

  .prompt-body {
    font-family: $font-poppins;
    padding: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    a, .btn-link {
      color: $brand-primary;

      &:hover, &:focus, &:active {
        color: darken($brand-primary, 10%);
      }
    }

    .close {
      top: 0;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: 0.2;

      &:hover, &:focus, &:active {
        color: #000;
        opacity: 0.5;
      }

      i {
        font-size: 18px;
      }
    }

    .text-content {
      p, ul {
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
      }

      h2 {
        color: $brand-success;
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        margin: 5px 0 10px;
      }

      ul {
        margin-top: 0;
        padding-left: 24px;
      }

      .text-bold {
        font-weight: 600;
      }
    }

    .prompt-buttons {
      text-align: center;

      button {
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        padding: 8px 28px;
      }
    }

    .ci-providers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 14px;
      row-gap: 14px;
      padding: 15px 0;

      .ci-provider-button {
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid #C4C4C4;
        box-sizing: border-box;
        border-radius: 4px;
        height: 40px;
        padding: 20px 8px;

        &:hover {
          background: #F0F0F0;
        }

        &:active {
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        }

        span {
          flex-grow: 1;
          font-weight: 500;
          text-align: left;
          margin-left: 8px;
        }
      }

      .see-other-guides {
        text-align: left;

        span {
          font-size: 14px;
          font-weight: 500;
        }
      }
    }

    .dashboard-frame {
      background: #082336;
      border-radius: 6px;
      box-shadow: 0 4px 17px rgba(0, 0, 0, 0.25);
      margin: 20px 20px;

      .frame-title {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 15px 20px 0;
      }

      .main-content-wrapper {
        padding: 5px 15px 20px;
      }

      .ci-run-time {
        color: #fff;
        display: grid;
        gap: 12px 10px;
        grid-template-columns: 18px 1fr;
        padding: 10px 10px 0;

        .ci-icon {
          text-align: right;

          svg {
            margin-top: -2px;
          }
        }

        .ci-runtime {
          span {
            font-size: 13px;

            &.bold {
              font-weight: 500;
            }
          }

          .runtime-bar-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 3px;

            .runtime-bar {
              height: 18px;
              border-radius: 2px;

              &.runtime-bar-short {
                background: $brand-success;
                width: 42%;
              }

              &.runtime-bar-long {
                background: #9D9EA9;
                width: 100%;
              }
            }

            i {
              font-size: 18px;
              margin-left: 8px;
            }
          }
        }
      }
    }
  }

  ::-webkit-scrollbar {
    width: 18px;
  }

  ::-webkit-scrollbar-track {
    background-color: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 20px;
    border: 5px solid transparent;
    background-clip: content-box;

    &:hover {
      background-color: #ccc;
    }
  }
}

