/*
 * This is the CSS stylesheet for the demo people application
 */

 /*
base_blue: #0054A4;
base_red: #EE3524;
base_black: #000000;
*/

body, .ui-btn {
    font-family: Calibri, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Formata, Calibri, sans-serif;
    font-weight: bold;
}

.container {
    padding: 10px;
}

.banner {
    text-align: center;
    width: auto;
}

#idtokenholder {
    font-size: 1em;
}

#refreshtokenholder {
    font-size: 1em;
}

#accesstokenholder {
    font-size: 1em;
}

.tokendiv {
    margin: auto;
    overflow: auto;
}

/* MATT */

#init {
    display: block;
}

#codeerror {
    display: none;
}

#tokens {
    display: none;
}

.mb64 {
    margin-bottom: 64px;
}

.mt64 {
     margin-top: 64px;
}

code {
    background-color: #eee;
    border: 1px solid #999;
    display: block;
    padding: 20px;
    color: #0054A4;
}

.footer {
    margin-top: 72px;
    text-align: center;
}

.footer small {
    margin-top: 32px;
    display: block;
}

.btn-primary {
    color: #fff;
    background-color: #0054A4;
    border-color: #0054A4;
}

.btn-primary:hover {
    color: #fff;
    background-color: #EE3524;
    border-color: #EE3524;
}

.btn-copy {
    float:right;
    border-radius: 0 0 0 .25rem;
}

#loading {
    display: none;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #fff;
    text-align: center;
    height: 100%;
}

@keyframes loading {
  0% { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

.loading div {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 20px solid #0054a4;
  border-top-color: transparent;
  border-radius: 50%;
}

.loading div {
  animation: loading 1s linear infinite;
  top: 100px;
  left: 100px
}

.loading-spinner {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}

.loading {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.loading div { box-sizing: content-box; }