.p-scroll {
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: 6px;
  }
  
  .p-scroll::-webkit-scrollbar {
    width: 6px !important;
  }
  
  .p-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
  }
  
  .p-scroll::-webkit-scrollbar-track {
    background: transparent !important;
  }
  
  @media (max-width: 767px) {
    .p-full-size {
      width: 100% !important;
      height: 100% !important;
      max-height: 100% !important;
      margin: 0 !important;
      border-radius: 0 !important;
      z-index: 9999 !important;
    }
  }
  
  .p-no-scroll {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    overflow: auto !important;
  }
  
  .p-no-scroll::-webkit-scrollbar {
    display: none !important;
  }