.content {
    display: flex;
    flex-direction: column;
}

.loadingColor {
    background-color: #FFFFFF;
}

.indicatorContainer{
    position: fixed;
    top: 35%;
    left: 38%;
    width: 520px;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator{
    width: 200px;
}

/* Loading caption: Libre Franklin 400 text + the outlined wordmark. The
   transparent wordmark asset has a tight viewBox (463×170) whose bottom edge
   is the mark's baseline, and a flex item with no text baseline aligns its
   bottom edge to the text baseline — so the two line up with no offsets.
   "mint" is set at 150 viewBox units, so a 46px-tall image puts its type at
   ~40px, a step above the 30px caption on purpose so the mark leads. */
.loadingLabel {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 2%;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #333333;
}

.loadingWordmark {
    height: 46px;
    width: auto;
}

.loader {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    display: inline-block;
    background: linear-gradient(0deg, rgba(16, 176, 209, 0.054) 33%, rgba(79, 186, 174, 1.0) 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #FFFFFF;
}
@keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg)}
} 

.loaderContainer {
    z-index: -1;
    position: fixed;
    top: 25%;
    left: 38%;
}