/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

html {
	font-size:62.5%;
}
body {
	background: #231f20;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color:#fff;
    min-width: 768px;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: #808080;
	text-decoration:none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	/*border:1px solid #04A4CC;*/
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	padding: 15px 50px 10px;
	position:relative;
    clear: both;
    margin: 0 auto;
}


.post {
    position: relative;
}

/* footer */
.footer {
	clear: both;
	padding: 20px 0 0 0;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
h1 {
	font-weight: 400;
  font-size: 40px;
	line-height: 1em;
	color: #fbc300;
	padding: 20px 0 10px 0;
	margin: 0;
  text-align: center;
}

h1.article-heading {
    text-align: center;
    padding: 20px 0 10px 0;
    font-weight: bold;
}

.content-h2, h3 {
  font-size: 30px;
  line-height: 30px;
  color: #fbc300;
  margin: 0;
  padding: 20px 0 20px 0;
  font-weight: normal;
  clear: both;
  text-align: center;
}
h4 {
    font-size: 20px;
	color: #fbc300;
    margin: 0;
	color: #fbc300;
    display: inline-block;
}
h5 {
    font-size: 15px;
    color: #fbc300;
}
.small-text {
	font-size: 15px;
	line-height: 16px !important;
	display: inline-block;
}

.copyright {
    font-size: 15px;
}
.center-text {
    text-align: center !important;
}
.left-align-text {
    text-align: left;
}
p {
    margin: 0;
    padding: 0 0 10px 0;
}



/*------------------------------------*\
	COLOR PALETTE
\*------------------------------------*/

.t-dark {
    color: #231f20;
    font-weight: bold;
}
.t-red {
    color: #e83523;
    font-weight: bold;
}

.t-yellow {
    color: #fbc300;
    font-weight: bold;
}

.t-blue {
    color: #33d3cf;
    font-weight: bold;
}

.t-green {
    color: #31b744;
    font-weight: bold;
}
.t-white {
    color: ffffff;
    font-weight: bold;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {
    .first-p {
    width: 75%;
}
}

@media only screen and (min-width:480px) {
}

@media only screen and (min-width:808px) {
}

@media only screen and (min-width:1024px) {
}


@media only screen and (min-width:1140px) {
.index-post {
	float: left;
	width: 33.33%;
}
.logo {
	float: left;
}
}

@media only screen and (min-width:1680px) {
    .index-post {
	float: left;
	width: 25%;
}
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/* Page-specific styles */


/* Columns */

.ol-number {
    background: #fbc300;
    color: #231f20;
    line-height: 18px;
    padding: 0 3px 1px;
    border-radius: 2px;
    display: inline-block;
}

.column-rule li {
    display: table-column;
    border: 1px solid #4d4d4d;
    border-top: none;
    border-bottom: none;
    border-collapse: collapse;
    margin: 0 0 0 -1px;
}
.column-rule li:first-child {
    border-left: none;
}
.column-rule li:last-child {
    border-right: none;
}
.no-column-rule li {
    border: none;
}


/* Separate columns */
.one-col-separate, .two-col-separate, .three-col-separate, .four-col-separate {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    padding: 0 0 20px 0;
}

.one-col-separate li, .two-col-separate li, .three-col-separate li, .four-col-separate li {
    float: left;
    padding: 0 10px;
}

.four-col-separate li {
    width: 25%;
}
.three-col-separate li {
    width: 33%;
}
.two-col-separate li {
    width: 50%;
}

.col {
    float: left;
    padding: 0 0 40px 0;
}

.one-third-col {
    width: 33%;
}
.two-thirds-col {
    width: 66%;
}


/* Css columns with text flow */

.one-col-flow, .two-col-flow, .three-col-flow, .four-col-flow { /* container element */
    padding: 0 0 20px 0;
}

.two-col-flow {
  -webkit-columns: 2 300px;
     -moz-columns: 2 300px;
          columns: 2 300px;
}

.three-col-flow {
  -webkit-columns: 3 200px;
     -moz-columns: 3 200px;
          columns: 3 200px;
}

.four-col-flow {
  -webkit-columns: 4 100px;
     -moz-columns: 4 100px;
          columns: 4 100px;
}

.one-col-flow, .one-col-flow li, .two-col-flow, .two-col-flow li, .three-col-flow, .three-col-flow li, .four-col-flow, .four-col-flow li {
    margin: 0;
    list-style: none;
    padding: 0;

-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
-webkit-column-gap: 10px;
   -moz-column-gap: 10px;
        column-gap: 10px;

}

.one-col-flow h4, .two-col-flow h4, .three-col-flow h4, .four-col-flow h4 {
display: block;
}

.one-col-flow p:last-child, .two-col-flow p:last-child, .three-col-flow p:last-child, .four-col-flow p:last-child  {
    margin: 0;
}

.one-col-flow li, .two-col-flow li, .three-col-flow li, .four-col-flow li { /* list item */
    padding: 1px 0 9px 0;
}

.one-col-flow li p,  .two-col-flow li p, .three-col-flow li p, .four-col-flow li p { /* list item paragraph */
   /*  margin: 0; */
}

.fixed {
  position: fixed;
}


.scene {
  background-image: url(assets/360-icon.png);
  background-repeat: no-repeat;
  background-position: 50% 10px;
  height: 0;
  padding-bottom: 70%; /* 16:9 56.25% */
  position: relative;
  margin: 0 -10px 20px -10px;
  overflow: hidden;
  left: -50px;
  width: -webkit-calc(100% + 100px);
  width: calc(100% + 100px);
}

.scnload {
    background-color: rgba(127,127,127,0.1);
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#scene_1_container, #scene_2_container, #scene_3_container, #scene_4_container, #scene_5_container, #scene_6_container, #scene_7_container, #scene_8_container, #scene_9_container, #scene_10_container, #scene_11_container, #scene_12_container, #scene_13_container, #scene_14_container, #scene_15_container, #scene_16_container, #scene_17_container, #scene_18_container, #scene_19_container, #scene_20_container {
    position:absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
}


.purchase-tag {
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    top: 0;
    right: 0;
}
.purchase-tag img {
    display: block;
}
.purchase-tag a {
    text-decoration: underline;

}

.references {
    font-size: 12px;
    line-height: 15px;
    word-wrap: break-word;
}

.references ul {

}

section {
    clear: both;
}

.keep-together {
    display:  inline-block;
}

/*** Labels ***/
.custom-tag {
    /* in-scene tag bg */
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;

    visibility: hidden;
    border-radius: 2px;
    position: absolute;
    padding: 0px 4px 0 0;
}

.custom-tag-text {
    cursor: pointer;
}

.custom-tag .ol-number {
    /* in-scene tag number bg */
    /* background-color: #fff; */
    padding: 5px 8px;

}

.custom-tag .tag-copy {
    display: none;
}

.custom-tag.active, .custom-tag-text.active {
    /* Main scene and HTML tag colors */
    background-color: #fbc300;
    color: #231f20;
    border-radius: 2px;
    padding: 3px;
    z-index: 99999 !important;
}

.custom-tag.active .tag-copy {
    display: inline-block;
}

.custom-tag.active .ol-number {
}

/* Scene UI */
::-moz-selection {
    background: none;
    color: none;
}
::selection {
    background: none;
    color: none;
}

.scene-ui {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: absolute;
    z-index: 9999;
    right: 5px;
    bottom: 5px;
}
.scene-ui-icon {
    visibility: hidden;
    background: #000000;
    color: #7f7f7f;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    margin: 0 5px;
    border-radius: 50px;
    border: 3px solid #7f7f7f;
}
.scene-ui-icon img {
    width: 40px;
    cursor: pointer;
}
.scene-ui-icon.active {
    background: #ffffff;
}