.info {
 margin-top:48px;
 padding-bottom: .9em;
 margin-bottom: 36px;
 border-bottom: 2px solid #ccc;
 font-size:16px;
 color:#000;
 text-align: center;
 margin-left: 20px;
 margin-right: 20px;
}

#notices {
 padding: 1em;
 border-radius: 6px;
 width: 100%;
 margin-bottom: 20px;
 color: #000;
 font-size: 16px;
}

#notices.error{
 border: 2px solid red;
}

.change-user {
 margin-top: 1em;
 text-align: center;
}

/* CSS Spinner https://loading.io/css/ */

#spinner {
 display: flex;
 justify-content: center;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 5px;
  border: 5px solid #0F75BC;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0F75BC transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


