html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: #242729;
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'ChronicleTextG1-Roman', serif;
    height: 100%;
    color: #F2F2F2;
}

*, *:before, *:after {
    box-sizing: border-box;
}

p, li, span { margin: 0; line-height: 1.75; }

a { outline: 0; text-decoration: none; }

a:link { text-decoration: none; color: #F2F2F2; }
a:visited { text-decoration: none; color: #F2F2F2; }
a:hover, a:focus { text-decoration: none; color: #F2F2F2; }
a:active { text-decoration: none; color: #F2F2F2; }

html > * { font-size: 1.45rem; }



.pano-block {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.pano-compass-wrapper {
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(50%);
    width: 320px;
    padding: 40px 16px 16px;
    text-align: center;
    background-color: #98694C;

    display: none;
}

.compass-title {
    position: relative;
    display: block;
    color: #242729;
    text-transform: uppercase;
    font-family: 'EngraversGothicBT-Regular';
    letter-spacing: 3px;
    font-size: 1.4rem;
    margin-bottom: 16px;
    line-height: 1;
}
.compass-desc {
    position: relative;
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.drag-prompt {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background-color: rgba(152,105,76,0.85);
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    text-align: center;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.drag-prompt span {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    font-family: 'EngraversGothicBT-Regular';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    line-height: 2;
    color: #fff;
}

.drag-arrow {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    width: 16px;
}

.drag-arrow.da-l {
    left: 16px;
}

.drag-arrow.da-r {
    right: 16px;
}


/* ====== Media Queries ====== */

@media all and (min-width: 768px) {

    .drag-prompt {
        width: 200px;
        height: 200px;
        border-radius: 100px;
    }

    .drag-prompt span {
        letter-spacing: 2px;
        font-size: 1.4rem;
        line-height: 2.5;
    }

    .drag-arrow {
        width: 24px;
    }

    .drag-arrow.da-l {
        left: 24px;
    }

    .drag-arrow.da-r {
        right: 24px;
    }

}

@media all and (min-width: 960px) {

    .drag-prompt {
        display: none;
    }

    .pano-compass-wrapper {
        display: inline;
    }

}

@media all and (min-width: 1160px) {

    html > * { font-size: 1.6rem; }

}