body {
    touch-action: pan-x pan-y;
}
.onboard-form-container {
    position: absolute;
    width: 800px;
    max-width: calc(100vw - 40px);
    top: 100px;
    left: calc(50vw - 400px);
}
.onboard-form-container h1 {
    display: block;
    text-align: center;
    color: var(--stub);
}
.onboard-form-container h2 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--stub);
}
.interests {
    width: 800px;
    max-width: calc(100vw - 40px);
    text-align: center;
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
}
.error-label {
    font-size: 12px;
    color: #f40;
    display: block;
    margin-left: 28px;
}
.interest {
    display: inline-block;
    width: 180px;
    height: 180px;
    max-width: 40vw;
    max-height: 40vw;
    position: relative;
    border-radius: 6px 6px;
    margin: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    cursor: pointer;
    animation: interest-fadein 400ms ease-out;
}
@keyframes interest-fadein {
    0% {opacity: 0; transform: translateY(8px);}
    100% {opacity: 1;  transform: translateY(0);}
}
.interest .interest-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.interest-card {
    text-align: left;
    transition: border 200ms ease-in-out, background 200ms ease-in-out;
}
.interest-card.selected {
    background: #FFFDE7;
    border-color: #FDD836;
}
.interest-card .interest-icon {
    width: 24px;
    height: 24px;
    padding-top: 16px;
    padding-left: 16px;
    position: relative;
}
.interest-card .interest-text {
    margin-top: 8px;
    margin-left: 16px;
    margin-right: 16px;
}
.interest-card .interest-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.interest-card .interest-subtitle {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;

}
.interest img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 500ms;
}
.interest .shade {
    position: absolute;
    content:"";
    height:100%;
    width:100%;
    top:0;
    left:0;
}
.interest .interest-label {
    text-align: left;
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 8px);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.interest .interest-selected-checkmark {
    position: absolute;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    width: 64px;
    height: 64px;
    background: #fadf45;
    border-radius: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.interest .interest-selected-checkmark .checkmark {
    position: absolute;
    border: none;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(35deg);
    width: 10px;
    height: 20px;
    top: 20px;
    left: 25px;
}
.interest input:checked ~ .interest-selected-checkmark {
    opacity: 1;
    transform: scale(1);
}
.interest-padding {
    flex: 1 0 160px;
    max-width: 320px;
    margin: 4px;
    border: 1px solid #fff;
    overflow: hidden;
}
.school-check-container {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-top: 2px;
    padding-left: 22px;
    padding-right: 4px;
    vertical-align: top;
    display: inline-block;
    font-size: 14px;
}
.school-check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.school-checkmark {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 2px;
    display: inline-block;
    vertical-align: top;
}
.school-check-container input:checked ~ .school-checkmark {
    background-color: var(--accent);
    border: 1px solid var(--accent);
}
.school-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.school-check-container input:checked ~ .school-checkmark:after {
    display: block;
}
.school-check-container .school-checkmark:after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.confirm-footer {
    position: fixed;
    bottom: 0;
    background: #fff;
    box-shadow: 0 0 4px #0003;
    left: 0;
    width: 100vw;
    z-index: 2;
}
.confirm-footer .button.disabled {
    background: #ccc;
    cursor: not-allowed;
}
.button {
    display: inline-block;
    color: #000;
    padding: 12px;
    margin: 8px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 300px;
    text-align: center;
    background: var(--accent);
    border: none;
}
.confirm-footer .boarding-button-right {
    float: right;
    margin-right: calc(50vw - 380px);
}
@media screen and (max-width: 880px) {
    .onboard-form-container {
        left: 20px;
    }
    .confirm-footer .boarding-button-right {
        margin-right: 10px;
    }
}
@media screen and (max-width: 600px) {
    .confirm-footer {
        padding: 0 10px;
    }
    .button.accent {
        width: calc(100% - 60px);
    }
    .confirm-footer .boarding-button-right {
        float: left;
    }
}
@media screen and (max-width: 800px) {
    .interest .interest-selected-checkmark {
        left: calc(50% - 18px);
        top: calc(50% - 18px);
        width: 36px;
        height: 36px;
    }
    .interest .interest-selected-checkmark .checkmark {
        width: 8px;
        height: 16px;
        top: 7px;
        left: 13px;
    }
}
.mobile-logo {
    width: 70px;
    opacity: 1;
    position: fixed;
    z-index: 5;
    cursor: pointer;
    height: 40px;
    padding: 8px 22px;
    top: 0;
    left: 0;
}