body{
    aoverflow-x: hidden;
    background-color:#222;
}

body *{
    box-sizing: border-box;
}

.bgGreen{
    background-color: var(--a-green);
    color:#fff;

}

.externalAdjust {
    transform-origin: top left;
    display: inline-block;
    position: absolute;
}
.fixedContainer {
    width: 768px;
    height: 1024px;
    position: relative;
    overflow: hidden;
    background-color: var(--a-lightBG);
}
.windowContainer{
    position: absolute;
    width: 768px;
    height: 1024px;
    display: none;
}

.windowContainer.active{
    display: block;
}

#resetButton{
    cursor: pointer;
}

#thankYou{
    /* .windowContainer's own background-color is declared after .bgGreen
       in this file, so at equal (single-class) specificity it would
       otherwise silently win over .bgGreen's teal - an id selector avoids
       depending on declaration order */
    background-color: var(--a-green);
    color: #fff;
}

#thankYou h1{
    font-size: 4rem;
}



h1{
    font-family: "Rhymes";
    font-weight:500;
}

p{
    font-family: "Apercu";
    font-weight:400;
}

.aMainRoot{
    position: absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    background-color: var(--a-lightBG);
}

.legalContainer{
    overflow-y: auto;
    background-color: #fff;
}

.aForm{
    /* the legal text's full (unscrolled) content height is huge, which
       otherwise drags .aForm into the flexbox shrink calculation and
       squeezes it well below its intended height while it's animating in */
    flex-shrink: 0;
}

.aForm.aForm-collapsible{
    height: 0;
    overflow: hidden;
    transform: translateY(24px);
}

.childFields-collapsible{
    height: 0;
    overflow: hidden;
}

.aForm label,
.aForm .form-check-label,
.aForm .form-text{
    font-family: "Apercu";
}

.aForm .form-check-input:checked{
    background-color: var(--a-green);
    border-color: var(--a-green);
}

.aForm .form-check{
    padding-left: 2.25em;
    min-height: 2em;
    display: flex;
    align-items: center;
}

.aForm .form-check-input{
    width: 1.75em;
    height: 1.75em;
    margin-left: -2.25em;
    margin-top: 0;
    flex-shrink: 0;
}

.aForm .form-check-label{
    padding-left: 0.5em;
    line-height:1em;
    text-wrap: balance;
}

.signatureContainer{
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    height: 150px;
}

.signatureContainer canvas{
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
    touch-action: none;
}

#submitBtn{
    background-color: var(--a-purple);
    color:#fff;
    border-radius:50px;
}
#submitBtn:disabled{
    background-color: #ccc;
    border-color: #ccc;
    color: #888;
    opacity: 1;
    cursor: not-allowed;
}