@import url(../lib/font/fontsselectezy/stylesheet.css);
@import url(../lib/font/Architects_Daughter/ArchitectsDaughter.css);
@import url(../lib/font/Quicksand/Quicksand.css);
@import url(../lib/font/Open_Sans/OpenSans.css);

body {
    background: #fff;
}

.reveal h4,
.reveal h5,
.reveal h6 {
    text-transform: none;
}

.reveal h4 {
    font-size: 1.3em;
}

.reveal p, .reveal li {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.08em;
}

.reveal .left {
    text-align: left;
}

.reveal section img {
    border: none;
    box-shadow: none;
}

.reveal section em {
    color: deepskyblue;
    font-style: normal;
}

.reveal section strong {
    color: deeppink;
    font-weight: normal;
}

.reveal ul li {
    list-style-type: none;
}
.reveal ul li:before {
    display: inline-block;
    content: "\2013";
    position: relative;
    margin-left: -20px;
    left: -10px;
    width: 20px;
}

.reveal ul.small {
    font-size: 70%;
}

.reveal .backdrop {
    display: inline-block;
    padding: 0 3px;
    margin: 0 -3px;
    background-color: rgba(255, 255, 255, .8);
    /*box-shadow: 3px 0 0 rgba(255, 245, 0, .5), -3px 0 0 rgba(255, 245, 0, .5);*/
    border-radius: 2px;
    line-height: 1.2;
}

.reveal h4.rx-title {
    font-size: 1.6em;
}
.reveal section .rx-title img {
    width: 1.6em;
    height: 1.6em;
    vertical-align: middle;
    margin-top: -5px;
}

.marble-container {
    width: 100%;
    height: 500px;
}

.button {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    padding: 8px 15px;
    background: #69f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
}

.reveal .cols {
    width: 100%;

    display: flex;
    flex-direction: row;
}

.reveal .col {
    flex: 1.2;
    margin: 0 10px;
}
.reveal .col + .col {
    flex: .8;
}

.reveal .col pre {
    width: 100%;
    overflow: auto;
}
.reveal .col pre,
.reveal .col pre code {
    height: 350px;
}

.reveal .col.output pre {
    padding: 0 10px;
    background: rgba(248, 248, 248, .7);
}

#autocomplete-suggestions {
    position: absolute;
    top: 49px;
    left: 0;
    width: 170px;
    padding: 0;
    margin: 0;
    z-index: 10;
}

#autocomplete-suggestions > * {
    position: relative;
    margin: 0;
    padding: 3px 1em 3px 0.4em;
    font-size: 14px;
    border: 1px solid #aaa;
    border-top: none;
    background: #fff;
    color: #458;
}
#autocomplete-suggestions > *:hover {
    background: #69f;
    color: #fff;
}

.dalai-lama {
    opacity: 0;
    position: absolute;
    bottom: -100px;
    left: -50px;
    transition: opacity .5s;
}
.dalai-lama img {
    max-width: 40vw;
    max-height: 80vh;
}

.dalai-quote .dalai-lama {
    opacity: 1;
}

.reveal .photo-credits {
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #999;
    font-weight: bold;
    font-size: 16px;
    z-index: 99;
    display: none;
}
.show-photo-credits .photo-credits {
    display: block;
}
.reveal .photo-credits a {
    color: #999;
}

/**
 * Quote marks around "quotes"
 */

.reveal blockquote {
    position: relative;
    padding-left: 65px;
    text-align: left;
    box-shadow: none;
}

.reveal blockquote:before,
.reveal blockquote:after {
    font-family: serif;
    font-size: 300%;
    line-height: 0.1em;
    color: rgba(150, 150, 150, .5);
}

.reveal blockquote:before {
    content: '\201C';
    margin-left: -65px;
    margin-right: 0.1em;
    vertical-align: -0.4em;
}

.reveal blockquote:after {
    content: '\201D';
    margin-left: 0;
    vertical-align: -0.6em;
}

.reveal blockquote cite {
    position: absolute;
    left: 65px;
    bottom: 0;
    margin-bottom: -2.2em;
}

.reveal blockquote cite:before {
    content: '-- ';
}

/**
 * Override some code highlight styles
 */
.reveal pre {
    width: 1000px;
    border-radius: 3px;
    box-shadow: none;
    border: 2px solid #f0f0f0;
}
.reveal pre code {
    padding: 0 10px;
    max-height: 600px;
    border-radius: 3px;
    font-size: 20px !important;
    line-height: 24px !important;
    font-family: Consolas, monospace !important;
    color: #333;
}
.hljs {
    background: rgba(248, 248, 248, .7) !important;
}

/**
 * Code with marks highlighted
 */
.code mark {
    display: inline-block;
    padding: 0 3px;
    margin: 0 -3px;
    background-color: rgba(255, 245, 0, .4);
    box-shadow: 3px 0 0 rgba(255, 245, 0, .4), -3px 0 0 rgba(255, 245, 0, .4);
    border-radius: 6px;
    line-height: 1.2;
    color: #333;
}

/**
 * Callout arrows & highlights
 */
.reveal .callout {
    position: absolute;
    display: inline-block;
    font-size: 32px;
    color: rgba(240, 40, 60, .8);
    font-family: 'Architects Daughter', cursive;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 2px #fff, 0 0 2px #fff;
    line-height: 1;
}
.reveal .callout.position-top .callout-text {
    margin-left: 30px;
    margin-bottom: -5px;
}
.reveal .callout.position-topright .callout-text {
    margin-left: 15px;
}
.reveal .callout.position-left .callout-text {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.reveal .callout.position-right .callout-text {
    margin-left: -19px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
.reveal .callout.position-bottom .callout-text {
    margin-left: 50px;
    margin-top: -10px;
}
.reveal .callout.position-bottomleft .callout-text {
    margin-top: 20px;
    margin-right: -25px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}
.reveal .callout .callout-arrow,
.reveal .callout .callout-circle {
    font-family: 'fontsselectezymedium';
    font-size: 150px;
    line-height: .3;
    text-align: left;
}
.reveal .callout.position-left .callout-arrow,
.reveal .callout.position-right .callout-arrow,
.reveal .callout.position-bottomleft .callout-arrow {
    display: inline-block;
    vertical-align: middle;
}
.reveal .callout.position-bottomleft .callout-arrow {
    margin-bottom: 40px;
}
.reveal .callout.position-top .callout-arrow:after {
    content: 'H';
}
.reveal .callout.position-topright .callout-arrow:after {
    content: 'I';
}
.reveal .callout.position-left .callout-arrow:after {
    content: 'D';
}
.reveal .callout.position-right .callout-arrow:after {
    content: 'E';
}
.reveal .callout.position-bottom .callout-arrow:after {
    content: 'Y';
}
.reveal .callout.position-bottomleft .callout-arrow:after {
    content: 'G';
}
.reveal .callout .callout-circle {
    font-size: 250px;
}
.reveal .callout .callout-circle:after {
    content: 'd';
}
.reveal .callout.position-circle-top .callout-text {
    margin-top: 20px;
    margin-bottom: -20px;
    margin-left: 40px;
}
