li h2 {
			font-size: 16px;
			font-weight: bold;
			margin:0;
			padding:0;
		}
	
		dl, dt, dd {
			font-weight: normal;
			margin:0;
			padding:0;
		}
		
		dt {
			margin-left: 15px;
		}
		dd {
			margin-left: 30px;
		}
		
		table {border:1px solid gray;border-collapse: collapse; width: 100%;}
	 	td {border: 1px solid gray;padding: 7px;}
	 	thead th, thead td {
	 		background: black;
	 		color: white;
	 		padding: 7px;
	 	}
	 	
	 	tbody tr:nth-child(odd) td {background: #fafafa;}
	
	 	table td:nth-child(1) {
	 		max-width:200px;
	 		overflow: hidden;
    		text-overflow: ellipsis;
    		white-space: nowrap;
		
		}
		
		table#available-parts td:nth-child(3) {
	 		text-align: left;
		}
		
		table#available-parts {
            counter-reset: rowNumber;
        }

        table#available-parts tr {
            counter-increment: rowNumber;
        }

        table#available-parts tr td:first-child::before {
            content: counter(rowNumber);
            min-width: 1em;
            margin-right: 0.5em;
        }
        
        .loader {
          display: block;
          margin:15px auto;
          position: relative;
          width: 80px;
          height: 80px;
        }
        .loader div {
          box-sizing: border-box;
          display: block;
          position: absolute;
          width: 64px;
          height: 64px;
          margin: 8px;
          border: 8px solid #333;
          border-radius: 50%;
          animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          border-color: #333 transparent transparent transparent;
          
        }
        .loader div:nth-child(1) {
          animation-delay: -0.45s;
        }
        .loader div:nth-child(2) {
          animation-delay: -0.3s;
        }
        .loader div:nth-child(3) {
          animation-delay: -0.15s;
        }
        @keyframes loader {
          0% {
            transform: rotate(0deg);
          }
          100% {
            transform: rotate(360deg);
          }
        }
        
        .nodisplay {display:none;}
        
       
        
        #lastest {
            position: relative;
        }
        
         .loader {
            position:absolute;
        }
        .plain-text {
            color: rgb(51, 51, 51);
            font-weight:normal;
        }