* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border: none;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    color: #222;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 23px;
}

h5 {
    font-size: 15px;
    font-weight: bold;
    color: #00589B;
    margin: 10px;
    margin-top: 18px;
}

hr {
    height: 1px;
    border: #00589B solid 1px;
    border-radius: 1px;
    margin-top: 3px;
    margin-bottom: 8px;
    margin-left: 5px;
    margin-right: 5px;
}

.not-selectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.loader-bar {
    border: 13px solid #f3f3f3;
    border-radius: 50%;
    border-top: 13px solid #F9AD08;
    border-right: 13px solid #01ADC0;
    border-bottom: 13px solid #B7B7B7;
    border-left: 13px solid #00589B;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1, 1, auto;
    width: 100%;
    height: 100%;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }