.result{
      display: none;
      position: relative;
      margin: auto;
      margin-left: 5px;
      margin-top: -5px;
      background-color: white; 
      width: auto; 
      max-height: 250px;
      overflow-y: auto;
      overflow-x: hidden;
      text-align: left;
      z-index: 5000;
      box-shadow: 1px 1px 1px 1px gray;
    }

    #array_item:hover{
		  background-color: gray;
		  color: white;
	  }

    .validate, .no-validate{
      text-transform: capitalize;
    }

    @media print {

      .hide_this {
        display: none;
      }

      body {
        position: absolute;
        margin: auto;
        max-width: 1400px;
        max-height: 3508px;
      }

      table {
        border: none;
        margin: auto;
        outline: 1pt solid black;
        outline-offset: -1px;
        border-collapse: collapse;
        font-size: 1em;
        color: black;
      }

      table th, 
      table td {
        /*padding: 1rem;*/
        border: none;
        outline: 1pt solid black;
        outline-offset: -1px;
        border-collapse: collapse;
      }

      hr {
        border: 1pt solid black;
      }

      table td .green{
        background: green !important;
      }

      table td .green span{
        color: green;
      }


      table td .blue{
        background-color: darkblue !important;
      }
      
      table td .blue span{
        color: darkblue;
      }

      table td .cyan{
        background-color: blue !important;
      }

      table td .cyan span{ 
        color: blue;
      }

      table td .orange{
         background-color: #ffc107 !important;
      }

      table td .orange span{
        color: #ffc107;
      }

      table td .red{
        background-color: #dc3545 !important;
      }

      table td .red span{
        color: #dc3545;
      }

      .text-green{
        color: green;
      }

      .text-blue{
        color: darkblue;
      }

      .text-cyan{
        color: blue;
      }

      .text-orange{
        color: #ffc107;
      }

      .text-red{
        color: #dc3545;
      }
    }