#splashScreen {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 999;
    background-image: linear-gradient(150deg , #FF4864 10%, #B230E7 105%);
    display: flex;
    justify-content: center;
    /* Filter used to brighten gradient */
    filter: brightness(1.05);
}

#splashScreenItemWrapper {
    text-align: center;
    align-self: center;
}

#obsessLogo {
    margin-bottom: 3em;
    width: 15em;
    /* Static height is set to preserve spacing between elements in the splash screen while image is loading */
    min-height: 5.813em;
}

#splashLoadingIcon {
    position: relative;
    margin: 3em auto;
    width: 100%;
}

.coloredWord {
    color: #FBFD04;
}

@media only screen and (max-width: 415px) {
    #splashScreenItemWrapper {
        margin-bottom: 24vh;
    }
}

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

.flex-1 {
    flex: 1 1 0;
    -ms-flex: 1 1 0%;
}

.align-bottom {
    margin-top: auto;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-left {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.flex-no-shrink {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.horizontal-center {
    margin-left: auto;
    margin-right: auto;
}

.vertical-center {
    display: flex;
    align-items: center;
}

.vh-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.obsessvr-boldFont {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
}

.obsessvr-regularFont {
    font-family: Helvetica, sans-serif;
    font-weight: normal;
}

.regular-font {
    font-family: 'Helvetica, sans-serif';
}

.shadow {
    box-shadow: 0px 2px 4px 0px #777777;
}

.pointer {
    cursor: pointer;
}

.inline {
    display: inline;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.bolder {
    font-weight: bolder;
}

.boldest {
    font-weight: bolder;
    text-shadow: 1px 0;
}

.webkit-tap-highlight-disable {
    -webkit-tap-highlight-color: transparent;
}

.no-text-decoration {
    text-decoration: none;
}

.position-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 201;
    transform: translate(-50%, -50%);
    pointer-events: none;  /* Prevent position wrapper from meddling with overlay onclick */
    -webkit-font-smoothing: antialiased !important;  /* Prevent transform induced text aliasing - https://stackoverflow.com/questions/11589985/webkit-text-aliasing-gets-weird-during-css3-animations */
}

.obsess-modal-wrapper {
    pointer-events: auto;
	z-index: 205;
    position: relative;
    overflow-wrap: break-word;
    display: inline-block;
    min-width: 5em;
    min-height: 5em;
    cursor: default;
}

/* A base opacity & transform css setting so that the modal starts off with these values before first transition. Without
 this, the video modal would start at the middle without any transition */
.flyup-base {
    transform: translate3d(0, 10%, 0);
    opacity: 0;
}

.flyup-appear, .flyup-exit-active {
    transform: translate3d(0, 10%, 0);
}

.flyup-appear-active {
    transform: translate3d(0, 0, 0);
}

.flyup-appear-done {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.blur-appear, .blur-exit-active, .flyup-appear, .flyup-exit-active {
    opacity: 0;
}

.blur-appear-active, .flyup-appear-active, .blur-appear-done {
    opacity: 1;
}

.modalContent {
    height: 100%;
    width: 100%;
}

.overlay-darken-appear, .overlay-darken-exit-active {
    background-color: rgba(0,0,0,0);
}

.overlay-darken-appear-active, .overlay-darken-appear-done {
    background-color: rgba(0,0,0,0.6);
}
#loadingIcon {
    display: block;
    width: 100%;
}

/* Loading animation */

.cssload-fond {
    position: absolute;
    margin: auto;
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 20;
    display: none;
}

.cssload-fond .cssload-container-general {
    animation: cssload-animball_two 1.9s infinite;
    -o-animation: cssload-animball_two 1.9s infinite;
    -ms-animation: cssload-animball_two 1.9s infinite;
    -webkit-animation: cssload-animball_two 1.9s infinite;
    -moz-animation: cssload-animball_two 1.9s infinite;
    width: 36px;
    height: 36px;
}

.cssload-internal {
    width: 36px;
    height: 36px;
    position: absolute;
}

.cssload-ballcolor {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.cssload-ball_1,
.cssload-ball_2,
.cssload-ball_3,
.cssload-ball_4 {
    position: absolute;
    animation: cssload-animball_one 1.9s infinite ease;
    -o-animation: cssload-animball_one 1.9s infinite ease;
    -ms-animation: cssload-animball_one 1.9s infinite ease;
    -webkit-animation: cssload-animball_one 1.9s infinite ease;
    -moz-animation: cssload-animball_one 1.9s infinite ease;
}

.cssload-ball_1 {
    background-color: rgb(203, 32, 37);
    top: 0;
    left: 0;
}

.cssload-ball_2 {
    background-color: rgb(248, 179, 52);
    top: 0;
    left: 20px;
}

.cssload-ball_3 {
    background-color: rgb(0, 160, 150);
    top: 20px;
    left: 0;
}

.cssload-ball_4 {
    background-color: rgb(151, 191, 13);
    top: 20px;
    left: 20px;
}


@keyframes cssload-animball_one {
    0% {
        position: absolute;
    }
    50% {
        top: 10px;
        left: 10px;
        position: absolute;
        opacity: 0.5;
    }
    100% {
        position: absolute;
    }
}

@-o-keyframes cssload-animball_one {
    0% {
        position: absolute;
    }
    50% {
        top: 10px;
        left: 10px;
        position: absolute;
        opacity: 0.5;
    }
    100% {
        position: absolute;
    }
}

@-ms-keyframes cssload-animball_one {
    0% {
        position: absolute;
    }
    50% {
        top: 10px;
        left: 10px;
        position: absolute;
        opacity: 0.5;
    }
    100% {
        position: absolute;
    }
}

@-webkit-keyframes cssload-animball_one {
    0% {
        position: absolute;
    }
    50% {
        top: 10px;
        left: 10px;
        position: absolute;
        opacity: 0.5;
    }
    100% {
        position: absolute;
    }
}

@-moz-keyframes cssload-animball_one {
    0% {
        position: absolute;
    }
    50% {
        top: 10px;
        left: 10px;
        position: absolute;
        opacity: 0.5;
    }
    100% {
        position: absolute;
    }
}

@keyframes cssload-animball_two {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(360deg) scale(1.3);
    }
    100% {
        transform: rotate(720deg) scale(1);
    }
}

@-o-keyframes cssload-animball_two {
    0% {
        -o-transform: rotate(0deg) scale(1);
    }
    50% {
        -o-transform: rotate(360deg) scale(1.3);
    }
    100% {
        -o-transform: rotate(720deg) scale(1);
    }
}

@-ms-keyframes cssload-animball_two {
    0% {
        -ms-transform: rotate(0deg) scale(1);
    }
    50% {
        -ms-transform: rotate(360deg) scale(1.3);
    }
    100% {
        -ms-transform: rotate(720deg) scale(1);
    }
}

@-webkit-keyframes cssload-animball_two {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.3);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(1);
    }
}

@-moz-keyframes cssload-animball_two {
    0% {
        -moz-transform: rotate(0deg) scale(1);
    }
    50% {
        -moz-transform: rotate(360deg) scale(1.3);
    }
    100% {
        -moz-transform: rotate(720deg) scale(1);
    }
}

.obsess-basic-button {
    font-size: 1.2em;
    color: white;
    background-color: black;
    border: none;
    text-decoration: none;
    display: inline-block;    
}

.obsess-basic-button p {
    font-size: 15px;
    color: white;
}

.textWithBackground {
    display: inline-block;
}

.hamburgerButtonContainer {
    display: inline-block;
    cursor: pointer;
}

.hamburgerButtonbar1, .hamburgerButtonbar2, .hamburgerButtonbar3 {
    width: 27px;
    height: 1px;
    margin: 10px 0;
    transition: 0.4s;
}

.hamburgerButtonbar1 {
    margin-top: 0;
}

.hamburgerButtonCross .hamburgerButtonbar1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 7px);
    transform: rotate(-45deg) translate(-8px, 8px);
}

.hamburgerButtonCross .hamburgerButtonbar2 {opacity: 0;}

.hamburgerButtonCross .hamburgerButtonbar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -9px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.obsess-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#drag-tooltip-prompt {
    position: fixed;
    bottom: 2%;
    font-weight: 500;
    font-size: 1.2em !important;
}

#drag-tooltip-container {
    text-align: center;
    pointer-events: none;
    width: 14em;
}

#drag-tooltip-animation {
    width: 10.5em;
    height: 10.5em;
}


#welcome-container {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
    text-align: center;
}

#welcome-component-container {
    width: 100%;
    position: relative;
    top: 50%;
}

#welcome-container span {
    text-align: center;
    font-weight: 100;
    line-height: 1.4em;
}

@media only screen and (min-width: 415px) {
    #welcome-component-container {
        transform: translateY(-90%);
    }
}

@media only screen and (max-width: 415px) {
    #welcome-component-container {
        transform: translateY(-50%);
    }

    #welcome-container span {
        font-size: 2.5em;
    }

}
.toggle-arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

body {
    touch-action: none;
    position: fixed;
    /* Prevent elastic scrolling */
    overflow: hidden;
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Raleway', 'Roboto', sans-serif;
}

#obsessvr-webstore-react-embed-root {
    height: 100%;
    width: 100%;
}

#app {
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100%;
}

canvas {
    position: absolute;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.shadow {
    box-shadow: 0px 2px 4px 0px #777777;
}

.imageShadow {
    -webkit-filter: drop-shadow(0px 2px 4px #777777);
    filter: drop-shadow(0px 2px 4px #777777);
    transform: translate3d(0, 0, 0);  /* This prevents crazy visual glitches from using drop shadow filter */
}

/* Mall specific loading icon color changes, implemented here to prevent conflict with WSM default colors */
.cssload-ball_1 {
    background-color: #F8D526;
}

.cssload-ball_2 {
    background-color: #FE885E;
}

.cssload-ball_3 {
    background-color: #FA6376;
}

.cssload-ball_4 {
    background-color: #C184D7;
}

@media screen and (max-width: 480px) {
    html.auth0-lock-html body > * {
        display: block !important;
    }

    .auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-body-content {
        background: #fff0 !important;        
    }
}

@media only screen and (max-width: 415px) {
    .auth0-lock.auth0-lock .auth0-lock-cred-pane {
        height: auto !important;
        background: #fff0 !important;
        /* display: table; */
        width: 80%;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .auth0-lock.auth0-lock .auth0-lock-header {
        background: #fff0 !important;   
    }

    .auth0-lock-header-bg-solid {
        background-color: #fff0 !important;
    }
}

#disqus_thread {
    bottom: 0;
    z-index: 100;
    position: absolute;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: linear-gradient(to bottom right, #FB737F, #C697D9);
}

#layout {
    padding: 1em;
}

.auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-submit {
    margin: 3em auto;
    padding: 0em;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0px 2px 4px 0px #777777;
    background-color: #EA5A67 !important;
    color: white;
    border: none;
    font-family: 'Raleway', 'Roboto', sans-serif;
    width: 150px;
    height: 40px;
    margin-top: 1em !important;
}

.auth0-lock.auth0-lock .auth0-lock-input-wrap.auth0-lock-input-wrap-with-icon {
    background: #fff;
    opacity: 0.8;
}

.auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-content .auth0-lock-form b {
    color: #FFF;
}

.auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-content .auth0-lock-form p {
    color: #000;
}

.auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-content .auth0-lock-form p span>div {
    background-color: #000;
    transform: skewX(-30deg);
    padding: 0.1em 0.5em;
    width: 5em;
    margin: auto;
}
.auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-content .auth0-lock-form p span>div>div {
    transform: skewX(30deg);
    font-size: 15px;
}

.auth0-lock.auth0-lock .auth0-lock-form .auth0-lock-alternative .auth0-lock-alternative-link {
    color: white;
}

.auth0-lock.auth0-lock a {
    color: black;
}

.auth0-lock.auth0-lock .auth0-lock-submit span svg.icon-text {
    display: none;
}

.auth0-lock.auth0-lock .auth0-lock-submit {
    transition: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-form .auth0-lock-alternative .auth0-lock-alternative-link {
    color: white !important;
}

.auth0-lock.auth0-lock .auth0-lock-back-button {
    display: none;
}

/* HACK to force red color on loading */
.auth0-lock.auth0-lock.auth0-lock-mode-loading .auth0-lock-submit {
    background-color: #EA5A67 !important;
    animation: 1s linear infinite forceYellow;
}

@keyframes forceYellow {
    from {
        background-color: #EA5A67;
    }
    to {
        background-color: #EA5A67;
    }
}

.auth0-lock.auth0-lock .auth0-loading-container .auth0-loading {
    left: 40%;
}

.auth0-lock.auth0-lock.auth0-lock-opened.auth0-lock-iphone .auth0-lock-body-content {
    min-height: calc(100vh - 556px) !important;
}

.auth0-lock.auth0-lock .auth0-lock-header-logo {
    height: 87px !important;
}

.auth0-lock.auth0-lock {
    font-family: 'Raleway', 'Roboto' !important;
}


.enterCodeText {
    font-weight: bold;
    text-decoration: none !important;
}

@media only screen and (max-width: 415px) {
    .auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-content .auth0-lock-form p {
        color: #fff;
    }

    .auth0-lock.auth0-lock a {
        color: #fff;
    }
}

/*# sourceMappingURL=main.6f22f49f0f5c4ae59fd3.css.map*/