pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: center;
 }

body {
	background: #002a48;
	font-family: sans-serif;
	color: white;
	display: grid;
	margin: 0;
	place-items: center center;
 }

html, body { height: 100% }

h1, h2, h3, h4 { 	color: white; }

h5 { 
	color: white;
	text-align: justify;	
 }

::placeholder {
  color: #000000ad;
  opacity: 1; /* Firefox */
}

select {
    cursor: pointer;
    background-color: white;
	border-radius: 5px;
	border: solid 5px #fff;
    height: 34px;
	text-align: center;
	text-align-last: center;
    width: 230px;	
    height: 34px;
}

input {
    text-align:center;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 5px;
    border: solid 2px #fff;
    width: 230px;	
    height: 34px;
}


.button, .submit {
  background-color: #f08913;
  border: none;
  border-radius: 5px;
  color: white;
  width: 230px;
  padding: 8px 5px;
  text-align: center;
  font-size: 16px;
  font-family: sans-serif;
  cursor: pointer;
}

.button:hover {
  background-color: #f08913;
}

.form .msg{
  padding: 0 20px;
  width: 230px;
}

ul {
  list-style-type: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display:inline-block;
  font-size: 18px;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  max-height: 150px;
  overflow-y: auto;
}

li {
  padding: 5px;
}

#loader {
  border: 5px solid #002a48;
  border-radius: 50%;
  border-top: 5px solid #f08913;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

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