body {
        background-color: #0069ca;
        font-family: Arial, sans-serif;
        font-size: 14px;
        margin: 0;
      }

      #header {
        text-align: center;
        max-width: 600px;
        border-bottom: 1px #005fb6 solid;
        margin: 0 auto;
        padding: 12px 0;
      }

      #header a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 6px;
      }

      #logo {
        text-align: center;
        max-width: 600px;
        margin: 36px auto;
      }

      form {
        background-color: #005fb6;
        max-width: 576px;
        border-radius: 8px;
        margin: 0 auto;
        padding: 12px;
      }

      form>div {
        position: relative;
      }

      form div div:nth-of-type(1) {
        display: flex;
      }

      form input {
        font-size: 16px;
        font-family: Arial, sans-serif;
        height: 48px;
        border: none;
      }

      form input[type="text"] {
        color: #3679b7;
        width: 79.86111111111111%;
        border-radius: 4px 0 0 4px;
        padding: 0 1.736111111111111%;
        outline: none;
      }

      form input[type="submit"] {
        color: #ffffff;
        background-color: #0085ff;
        font-weight: normal;
        width: 16.66666666666667%;
        border-radius: 0 4px 4px 0;
        padding: 0;
        cursor: pointer;
        appearance: none;
      }

      #lookup {
        background-color: #0085ff;
        width: 16.66666666666667%;
        height: 48px;
        border-radius: 0 4px 4px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
      }

      i {
        border: 4px #a3c9eb solid;
        border-top: 4px #fdfdfd solid;
        border-radius: 50%;
        animation: spin 2s linear infinite;
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }

        100% {
          transform: rotate(360deg);
        }
      }

      #text {
        max-width: 600px;
        border-top: 1px #005fb6 solid;
        margin: 36px auto;
        padding-top: 12px;
      }

      #text h1,
      #text h2 {
        color: #ffffff;
        font-size: 24px;
        font-weight: normal;
        text-align: center;
        margin: 0;
      }

      #text h2 {
        font-size: 20px !important;
        margin-top: 24px !important;
      }

      #text p {
        color: #bfe0ff;
        line-height: 24px;
        text-align: justify;
        margin: 12px 0 0 0;
      }

      #text a {
        color: #bfe0ff;
      }

      #footer {
        text-align: center;
        max-width: 600px;
        border-top: 1px #005fb6 solid;
        margin: 0 auto;
        padding: 12px 0;
      }

      #footer a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 6px;
      }

      @media only screen and (max-width:600px) {
        #header a:nth-of-type(2) {
          display: none;
        }

        form input[type="text"] {
          width: 75.86111111111111%;
        }

        form input[type="submit"] {
          width: 20.66666666666667%;
        }

        #lookup {
          width: 20.66666666666667%;
        }

        #text {
          width: 94%;
        }
      }
        .autocomplete ul{
            list-style: none;
            padding: 0px;
        }
        .autocomplete ul li{
            color:#fff !important;
        }
	.append{
    		max-width: 600px;
    		border-top: 1px #005fb6 solid;
    		margin: 36px auto;
    		padding-top: 12px;
	}