    	/* 스크롤바의 폭 너비 */
		/*2025.08.11 (1) start*/
		::-webkit-scrollbar {
			/*2025.08.08 (3) start*/
		    width: 10px;  
			/*2025.08.08 (3) end*/
		    height: 5px;  
		    padding: 5px;
		}
		/*2025.08.11 (1) end*/

		.autolist::-webkit-scrollbar {
		    width: 10px;  
		    height: 10px;  
		    padding: 5px;
		}
		
		::-webkit-scrollbar-thumb {
		    background: #BDBDBD; /* 스크롤바 색상 */
		    border-radius: 10px; /* 스크롤바 둥근 테두리 */
		    margin-right: 5px;
		}
		
		::-webkit-scrollbar-track {
		    background: rgba(0, 0, 0, 0);  /*스크롤바 뒷 배경 색상*/
		}
    	.scrollbar{
    		scroll-behavior: smooth;
    	}
    	/* 스크롤바의 폭 너비 */
		.scrollbar::-webkit-scrollbar {
		    width: 5px;  
		    height: 5px;  
		    padding: 5px;
		}
		
		.scrollbar::-webkit-scrollbar-thumb {
		    background: #BDBDBD; /* 스크롤바 색상 */
		    border-radius: 10px; /* 스크롤바 둥근 테두리 */
		    margin-right: 5px;
		}
		
		.scrollbar::-webkit-scrollbar-track {
		    background: rgba(0, 0, 0, 0);  /*스크롤바 뒷 배경 색상*/
		}
		
		.edit-scrollbar{
    		scroll-behavior: smooth;
    		scrollbar-color: #cccfd3 transparent;
    		scrollbar-width: thin;
    		
    	}

		/*2025.08.29 start*/
		/* @media (max-width: 576px) {
			::-webkit-scrollbar {
				display: none !important;
				width: 0 !important;
				height: 0 !important;
				padding: 0 !important;
			}
			
			::-webkit-scrollbar-thumb {
				width: 0 !important;
				height: 0 !important;
				padding: 0 !important;
				background: transparent !important;
			}

			::-webkit-scrollbar-track {
				background-color: transparent !important;
			}
		} */
		/*2025.08.29 end*/