body 
{
    padding: 0; 
    margin: 0; 
    background: #342045; 

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Loading spinner */
.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: -76px 0 0 -76px;
    border: 10px solid #DDD1E6;
    border-radius: 50%;
    border-top: 10px solid #815EA8;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* Loading spinner (Safari) */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pageContainer {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.pageContent {
    margin: 10%;
    width: 450px;
    width: fit-content;
    min-width: 294px;

    background-color: #FFFFFF;
    border: white;
    border-radius: 20px;
    padding: 38.5px;
}

.pageButton {
    background-color: #815EA8;
    padding: 10px;
    border-radius: 40px;

    padding-left: 25px;
    padding-right: 25px;
    padding-top: 13px;
    padding-bottom: 13px;

    margin-right: 5px;

    color: #FFFFFF;
    font-weight: 600;

    white-space: nowrap;

    transition-duration: 0.2s;
}
.pageButton:hover {
    background-color: #735E84;
}
.pageButton:active {
    background-color: #412B50;
}

.pageButton.disabled {
    background-color: #9b999d;
    pointer-events: none;
}

h1 {
    font-size: 16px;
    color:#4E385E;
    margin-bottom: -10px;
}
p {
    color:#4E385E;
}

.content-header
{
    background: url("../images/oncio-header-OLD.png") no-repeat left;
    background-size: 100% 100%;
    height: 36px;
    width: 162px;
    /* margin-bottom: 22px; */
}

/* Unity Portal */

/* #unity-canvas */
#canvas
{
    position: absolute;
    width: 100%; 
    height: 100%;
}

#progress-bar
{ 
    width: 350px;
    height: 20px;
    background-color: #DDD1E6;
    border-radius: 40px;
}
#progress-bar-fill
{
    width: 0%; 
    height: 100%; 
    background-color: #735d83;
    border-radius: 40px;
    min-width: 7%;
 }