 body {
    
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9pt;
    font-weight: normal;
    text-decoration: none;
    background-color:white;
    text-align:center;
}
        .highlight
{
  color:red;
  font-weight:bold;
}
        .btn_bs{
            margin-left: 60px;
     background-color: #2279c0;
    border-color: #2279c0;
    color: #fff;
	border-radius: 4px;
	 font-size: 14px;
    font-weight: normal;
	line-height: 1.42857143;
	 border: 1px solid transparent;
	 padding: 6px 12px;
  }

 .btn_bs:hover{
    background-color: #1a5992;
    border-color: #1a5992;
    color: #fff;
  }
  .loader-page {
    position: fixed;
    z-index: 25000;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
  }
  .loader-page::before {
    content: "";
    position: absolute;
    border: 2px solid rgb(50, 150, 176);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176,0);
    border-top: 2px solid rgba(50, 150, 176,0);
    animation: rotarload 1s linear infinite;
    transform: rotate(0deg);
  }
  @keyframes rotarload {
      0%   {transform: rotate(0deg)}
      100% {transform: rotate(360deg)}
  }
  .loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(50, 150, 176,.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
  }
  .alignimg{
    width: 100px;
    margin-top: -64px;
    margin-left: 50px;
  }