.compare-list-sec {
    position: sticky;
    bottom: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .compare-select-college-list {
    max-width: 90%;
    background-color: #94d227;
    border: 1px solid #ccc9c9;
    width: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem;
    border-radius: 10px;
  }
  .hidden {
    display: none;
  }
  .select-college-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    position: relative;
  }
  .select-college-item img{
    height:30px;
    width:30px;
  }
  
  .select-college-item p{
    font-weight: 500;
    margin: 0;
  }

  .compare-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 500;
  }
  
  .blank-border-x {
    height: 30px;
    width: 1px;
    border-left: 1px solid #ccc;
  }
  
  .compare-close-btn{
    font-size: 18px !important;
    cursor: pointer;
  }

  @media screen and (max-width: 1280px) {
    .select-college-item {
      gap: 0.5rem;
      padding: 0.5rem;
    }
    .select-college-item p {
      font-size: 14px !important;
    }
    
    .select-college-item p {
      font-size: 12px !important;
    }
    .compare-now-btn {
      /* width: 150px !important; */
      font-size: 12px !important;
    }
  }
  
  @media screen and (max-width: 1080px) {
    
    .compare-select-college-list {
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
      gap: 1rem;
    }
    .select-college-item {
      width: 30%;
    }
  }
  
  @media screen and (max-width: 850px) {
    .compare-select-college-list {
      justify-content: space-between;
    }
    .select-college-item {
      width: 47%;
      border-right: 1px solid #eee;
    }
    .blank-border-x {
      display: none;
    }
    .compare-now-btn {
      width: 47% !important;
    }
  }
  
  @media screen and (max-width: 700px) {
    .select-college-item {
      width: 100%;
      border: none;
      border-bottom: 1px solid #eee;
    }
    .select-college-item .material-symbols-outlined {
      position: absolute;
      right: 0;
    }
    .blank-border-x {
      display: none;
    }
    .compare-now-btn {
      width: 100% !important;
    }
  }

  