html {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;    
}

body {
    background: #000;
    height: 97%;
    min-height: 97%;
}

body.loadedResult {
    background: #000;
}

::selection {
    background: #ffffff;
    color: #000000;
}  

.hidden {
    display: none !important;
}

#app {
    height: 100%;
    min-height: 100%;    
}

.container {
    position: relative;
    height: 100%;
    min-height: 100%;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;    
}

/* Sigil */

#btnSigil-container {
    position: absolute;
    /*top: 25%;*/
	top: 8%;
    left: 50%;
    transform: translate(-50%,-50%);        
    width: 50%;
}

@keyframes sigilRotate {
    0%   {transform: rotateZ(0deg);}
    100% {transform: rotateZ(720deg);}
}

@keyframes sigilRotateCounter {
    0%   {transform: rotateZ(0deg);}
    100% {transform: rotateZ(-720deg);}
}

@keyframes sigilOpacity {
    0%   {opacity:1;}
    100% {opacity:0;}
}
@keyframes sigilGlow {
    0%   {filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));}
    50% {filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.5));}
    100% {filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));}
}

.animateSigil .sigilCircle {
    /*animation-name: sigilRotate, sigilOpacity;
    animation-duration: 11s, 7s;
    animation-delay: 10s, 20s;
    animation-fill-mode: forwards;*/
}

.animateSigil .sigilCircleB {
    /*animation-name: sigilRotateCounter, sigilOpacity;
    animation-duration: 11s, 7s;
    animation-delay: 10s, 20s;
    animation-fill-mode: forwards;*/
}

.animateSigil .sigilBkg {
    /*animation-name: sigilGlow, sigilOpacity;
    animation-duration: 8s, 13s;
    animation-delay: 10s, 10s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;*/
}

.animateSigil .sigilMain {
    animation-name: sigilOpacity;
    /*animation-duration: 7s;
    animation-delay: 20s;*/
    animation-duration: 15s;
    animation-delay: 20s;	
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#btnSigil {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.sigilContainer {
    position: relative;
    display: inline-block;
    width: 49%;
}

.sigilContainer.singleFour {
    position: relative;
    display: inline-block;
    width: 80%;
}
.sigilBkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.sigilCircle, .sigilCircleB {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.sigilMain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.loadedResult #btnSigil-container {
    display: none;
}

@media (orientation: portrait) {
    #btnSigil-container {
        width: 90%;
    }
}

/* Quote */

@keyframes textShadowAppear {
    0%   {text-shadow: 1px 1px #000, -1px -1px #000;}
    50% {text-shadow: 1px 1px #fff, -1px -1px #fff;}
    100% {text-shadow: 1px 1px #000, -1px -1px #000;}
}

@keyframes textAppear {
    0%   {color:#000;}
    50% {color:#000;}
    100% {color:#fff;}
}

#quote-container {
    font-family: "Cormorant Garamond";
    font-size: 1.5em;
    color: #000;
    text-shadow: #000;
    text-align: center;
    padding: 4% 3% 55px 3%;
    display: none;
}

#quote-container.animateText {
    animation-name: textShadowAppear, textAppear;
    animation-duration: 6s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    display: block;
}

.loadedResult #quote-container {
    display: block;
    color: #fff;
    text-shadow: 1px 1px #000, -1px -1px #000;
}

@media (min-width: 570px) {
    #quote-container {
        font-size: 3em;
    }
}

/* Timeline */
.timeline-container {
    position: relative;
}

.timeline-main {
    padding: 30% 3% 20% 3%;    
}

.timeline-quote {
    font-family: "Cormorant Garamond";
    font-size: 1.5em;
    border-bottom: 1px dotted #ffffff;    
    color: #ffffff;
    padding: 2% 5%;
    text-align: center;
}

.timeline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgb(0, 0, 0) 0%,
        rgba(0,0,0,0) 40%, 
        rgba(0,0,0,0) 60%, 
        rgb(0, 0, 0) 100%
    );    
}

.timeline-main .infinite-loading-container {
    clear: both;
    text-align: center;
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 5em;
    margin: 5% 0;
}

/* Social share */
@keyframes socialShareAppear {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}

#social-share-container {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 100%;
}

#social-share-container.animateSocial {
    animation-name: socialShareAppear;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    display: block;
}

.social-share-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.social-share-list .share {
    display: inline-block;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 100px;
    transition: all 2s;
    font-size: 1em;
    max-width: 50px;
    max-height: 50px;
    width: 8vw;
    height: 8vw;
    text-align: center;
    padding: 5px;
    margin: 0 5px;
    background: #000;
}
.social-share-list .share a {
    color: #fff;
    vertical-align: middle;
    padding-top: 5px;
    transition: all 1s;
}
.social-share-list .share:hover {    
    background-color: #fff;
    transition: all 1s;
}

.social-share-list .share:hover a {    
    color: #000;
    transition: all 1s;
}

.loadedResult #social-share-container {
    display: block;
}

@media (min-width: 440px) {
    .social-share-list .share {
        font-size: 1.5em;
    }
}

@media (min-width: 570px) {
    .social-share-list .share {
        font-size: 2em;
    }
}

/* Flashlight Overlay */
#flashlight-layer { 
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    pointer-events: none;
    background: rgba(0,0,0,0.5);
}

/* Message box */
.message-bkg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);   
}

.message-box {
    position: fixed;
    top: 50%;
    border: 1px dotted #fff;
    min-width: 50%;    
    padding: 1%;
    transform: translate(-50%, -50%);
    left: 50%;
    background: #121212;
    border-radius: 5px; 
    text-align: center;   
}

.message-text {
    color: #ffffff;
    min-width: 300px;
    min-height: 100px;    
    width: 100%;
    text-align: center;
    font-size: 2em;
    font-family: "Cormorant Garamond";
}

.message-button {
    background: rgba(255,255,255,0.1);
    border: 1px dotted #fff;
    padding: 10px 25px;
    min-width: 80px;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2em;
}

#intro-message-container {
    background: #000000;
}

@media (min-width: 570px) {
    .message-text {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
}
