/*========================================
            PRIVACY PAGE STYLE
=========================================*/
.scrollspy {
    position: relative;
  }

  .scrollspy-content {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .scrollspy-content:last-child {
    margin-bottom: 0px;
  }

  .scrollspy-content h2 {
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size:18px;
  }

  .scrollspy-content h2::before {
    position: absolute;
    content: "\f249";
    top: 50%;
    left: 0px;
    width: 35px;
    height: 35px;
    font-size: 16px;
    font-family: icofont;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    font-family : "Font Awesome 5 Free";
  }

  .scrollspy-content p {
    max-height:500px;
    overflow-y:scroll;

    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    white-space: pre-wrap;
  }

  /* .scrollspy-content * {background:none!important;} */
