/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright (c) 2015, All rights reserved.
 * Stylesheet/Hoja de Estilos: styles
 * Project/Projecto: Abril 2015 - Maqueta Calima Museo del Oro
 * Author: Jesus Piedrahita, Mottif - jesus.piedrahita@mottif.com / www.mottif.com
 *  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*Fuentes:
font-family: 'Cabin Sketch', cursive;
font-family: 'Roboto', sans-serif; */
@import url(http://fonts.googleapis.com/css?family=Cabin+Sketch:400,700|Roboto:400,400italic);
@import url(http://fonts.googleapis.com/css?family=Lato);
/*Loading*/
#loading_page {
	top: 0;
	left: 0;
	z-index: 10000;
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	background: url(../images/site/loading_page.gif) no-repeat center #000000;
}
/*Generales*/
body, html {
	width:100%;
	height:100%;
	padding:0px;
	margin:0px;
	font-family: 'Cabin Sketch', cursive;
	font-weight:400;
	font-size:1em;
	line-height:1.5em;
	background:#000;
	color:#FFFFFF;
}
body {
	overflow:hidden;
}
strong {
	font-weight:700;
}
/*Contenedor principal*/
#main_container {
	display:block;
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	width:100%;
	height:100%;
	position:relative;
}
/*Overlay*/
#overlay {
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	z-index:2;
	background: url(../images/site/overlay.png) repeat top left;
}
.final #overlay {
	background-color:rgba(0, 0, 0, 0.35);
}
/*header y footer*/
#page_header, #page_footer {
	display:block;
	box-sizing:border-box;
	position:absolute;
	left:0px;
	right:0px;
	z-index: 10;
}
#page_header, .general_content .cont_creditos:before {
	background:rgba(255, 255, 255, 0.6);
	height:5%;
	max-height: 45px;
	min-height: 25px;
	text-align:center;
	top:0px;
}
#page_header:after {
	content:'';
	display:block;
	width:0px;
	height:0px;
	clear:both;
}
#page_footer {
	top: 20px;
	max-height:64px;
	height: 8%;
	min-height:25px;
}
#page_footer img {
	display:block;
	margin:0px auto;
	height:100%;
	width:auto;
}
/*boton creditos y back*/
.creditos, .btn_back {
	display: block;
	border: none;
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	color: #FFFFFF;
	text-align: center;
	padding: 12px;
	font-size: 1.15em;
	letter-spacing: 0.1em;
	background: #999999;
	margin: 0px auto;
	position: absolute;
	z-index: 10;
}
.creditos {
	right: 30px;
	bottom:15px;
}
.creditos:active {
	bottom:12px;
}
@media (max-width:800px) {
.creditos {
 right:50%;
 transform: translate(50%, 0%);
 padding: 5px;
 font-size:1em;
}
}
.btn_back {
	top:0px;
	right:0px;
	text-decoration:none !important;
	background-image:url(../images/site/ico_back.png);
	background-repeat:no-repeat;
	background-position: 30% center;
	max-width:153px;
	padding-left:43px;
	font-size: 1em !important;
	background-size: 18px auto;
}
#page_header h1 {
	display:inline-block;
	vertical-align:top;
	color:#000000;
	background: #FFFFFF;
	padding: 5px 10px;
	line-height:1em;
	font-size:1.7em;
	/*position:relative;*/
	
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%, 0);
}
#page_header h1:before, #page_header h1:after {
	content:'';
	display:block;
	width:0px;
	position:absolute;
	bottom:0px;
	border-bottom: 100px solid transparent;
}
#page_header h1:before {
	left:99.7%;
	border-left: 40px solid #FFFFFF;
	border-right:none;
}
#page_header h1:after {
	right:99.7%;
	border-right: 40px solid #FFFFFF;
	border-left:none;
}
#page_header #ico_audio {
	float:left;
	display:block;
	height: 100%;
	width:70px;
	border-right:1px solid rgba(255, 255, 255, 0.3);
	background:url(../images/site/ico_audio_replay.png) no-repeat center;
	background-size: auto 70%;
	text-align:left;
	text-indent:-9999px;
	outline:none;
	transition:background-color 0.5s ease;
}
#page_header #ico_audio.active {
	background:url(../images/site/ico_audio_play.png) no-repeat center rgba(0, 0, 0, 0.3);
	background-size: auto 70%;
}
#page_header #ico_audio:hover {
	background-color: rgba(0, 0, 0, 0.3);
}
#big_audio {
	display:none;
	position:fixed;
	z-index:9999;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.4);
}
#big_audio > div {
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}
#big_audio > div span {
	display:block;
	width: 200px;
	height: 210px;
	background:url(../images/site/ico_audio_big.png) no-repeat center;
	animation-name: tossing;
	-webkit-animation-name: tossing;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
 0% {
 transform: rotate(-4deg);
}
 50% {
 transform: rotate(4deg);
}
 100% {
 transform: rotate(-4deg);
}
}
 @-webkit-keyframes tossing {
 0% {
 -webkit-transform: rotate(-4deg);
}
 50% {
 -webkit-transform: rotate(4deg);
}
 100% {
 -webkit-transform: rotate(-4deg);
}
}
#page_header .btn_zoom {
	float:right;
	display:block;
	border:none;
	border-left:1px solid rgba(255, 255, 255, 0.3);
	height:100%;
	width: 50px;
	text-align:left;
	text-indent:-9999px;
	outline:none !important;
	transition:all 0.5s linear;
	cursor:pointer;
}
#page_header .btn_zoom.in {
	background:url(../images/site/ico_zoomin.png) no-repeat center;
	background-size: auto 70%;
}
#page_header .btn_zoom.out {
	background:url(../images/site/ico_zoomout.png) no-repeat center;
	background-size: auto 70%;
}
#page_header .btn_zoom:hover {
	background-color: rgba(255, 255, 255, 0.5);
}
#page_header .btn_zoom.inactive, #page_header .btn_zoom.inactive:hover {
	opacity:0.4;
	filter:alpha(opacity=40);
	background-color:transparent;
	cursor:default;
}
#page_header .level {
	float:left;
	display:block;
	height:100%;
	border-right:1px solid rgba(255, 255, 255, 0.3);
	font-size:1em;
	padding:0px 15px;
	box-sizing:border-box;
	line-height:1em;
}
#page_header .level span, #page_header .level:after, .cont_audio:after {
	display:inline-block;
	vertical-align:middle;
}
#page_header .level:after, .cont_audio:after {
	content:'';
	height:100%;
	width:0px;
}
/*home y final*/
.general_content {
	display:block;
	box-sizing:border-box;
	position:relative;
	z-index: 5;
	height:100%;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	text-align:center;
}
.general_content:after {
	content:'';
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0px;
}
.general_content.credi:after {
	content:normal;
}
.general_content .msn_fijo {
	position:absolute;
	right: 20px;
	top:15px;
	font-size:0.9em;
	text-align:right;
	z-index:1;
	max-width: 340px;
}
.general_content .centro {
	display:inline-block;
	vertical-align:middle;
	width: 80%;
	max-width: 550px;
	z-index: 3;
	position:relative;
}
.general_content .centro h2, .cont_creditos h2 {
	font-size: 5em;
	margin-bottom: 35px;
	line-height: 1em;
}
.cont_creditos h2 {
	max-width: 1390px;
	width: 90%;
	margin: 0px auto 30px;
	font-size: 3em;
	text-align:left;
	padding-bottom: 25px;
	position:relative;
}
.cont_creditos h2:after {
	content:'';
	display: block;
	width: 60px;
	height: 4px;
	background: #FFF none repeat scroll 0% 0%;
	border: medium none;
	margin: 0px;
	position:absolute;
	bottom:0px;
	left:0px;
}
.general_content .centro hr, .cont_creditos hr {
	display:block;
	width:60px;
	height:4px;
	background:#FFFFFF;
	border:none;
	margin:0px auto 60px;
}
.general_content .centro p {
	font-weight:700;
	margin-bottom: 40px;
	font-size:1.2em;
}
.general_content.credi {
	overflow:auto;
}
.general_content .cont_creditos {
	padding: 60px 0px 20px;
	overflow: hidden;
	min-height: 100%;
	box-sizing:border-box;
	position:relative;
}
.general_content .cont_creditos ul {
	width:90%;
	max-width: 1390px;
	margin:0px auto;
	text-align:center;
}
.general_content .cont_creditos ul li {
	display:inline-block;
	vertical-align:top;
	width:35%;
	text-align:left;
}
.general_content .cont_creditos ul li.img_centro {
	width:28%;
}
.general_content .cont_creditos ul li.img_centro img {
	display: block;
	max-width: 99%;
	max-height: 525px;
	width: auto;
	height: auto;
	margin: -110px auto 0px;
}
.general_content .cont_creditos p {
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	color:#FFFFFF;
	margin-bottom: 12px;
	font-size: 0.8em;
	line-height: 1.5em;
}
.general_content .cont_creditos a {
	color:#FFFFFF;
	transition:all 0.5s ease;
	text-decoration:underline;
}
.general_content .cont_creditos a:hover {
	opacity:0.8;
}
.general_content .cont_creditos > p a {
	color:#EBDEB8;
	text-decoration:none;
	letter-spacing: 0.085em;
	font-family: "Lato", sans-serif;
	font-size: 0.95em;
	font-weight:400;
}
.btn_general {
	display:block;
	border:none;
	width:100%;
	max-width:380px;
	box-sizing:border-box;
	color:#333333;
	text-align:center;
	padding: 17px;
	font-size:1.2em;
	letter-spacing:0.1em;
	background:#FFFFFF;
	margin:0px auto;
	position:relative;
	transition:all 0.5s ease;
}
.btn_general:active {
	top:3px;
}
/*compartir en redes*/
.share {
	padding: 40px 0px 0px;
}
.share li {
	display:inline-block;
	vertical-align:middle;
	width: 47%;
	max-width: 290px;
	margin:0px 10px;
}
.share li:first-child {
	margin-left:0px;
}
.share li:last-child {
	margin-right:0px;
}
.share li a, .share li button {
	color:#FFFFFF;
	font-weight:500;
	font-size:0.8em;
	display:block;
	width:100%;
	height:100%;
	box-sizing:border-box;
	padding:12px 15px 12px 55px;
	border-radius:4px;
	transition:all 0.5s ease;
	letter-spacing:0.08em;
	text-align:center;
	line-height:9px;
	position:relative;
	outline:none !important;
}
.share li a:before, .share li button:before {
	content:'';
	display:block;
	position:absolute;
	top:0px;
	bottom:0px;
	left: 40px;
	width:1px;
	background:rgba(255, 255, 255, 0.3);
	border-right:1px solid rgba(0, 0, 0, 0.2);
}
.share li a.facebook, .share li button.facebook {
	background: #507ECC url(../images/site/ico_facebook.png) no-repeat 15px center;
}
.share li a.facebook:hover, .share li button.facebook:hover {
	background-color: #3362AE;
}
.share li a.twitter, .share li button.twitter {
	background: #46B1E5 url(../images/site/ico_twitter.png) no-repeat 10px center;
}
.share li a.twitter:hover, .share li button.twitter:hover {
	background-color: #1E99D5;
}
.share li a:active, .share li button:active {
	top:3px;
}
/*Interna Maqueta*/
.content_maqueta {
	position:relative;
	z-index:2;
	height:100%;
	width:100%;
	padding:0px;
}
.zoomableContainer {
	background:#000;
	margin:0px auto;
	width:100% !important;
}
#main_image {
	display:block;
	margin:0px;
	position:relative;
}
#main_image img {
	display:block;
	margin:0px auto;
	width:100%;
	height:auto;
	position:relative;
	z-index:1;
}
/*items de imagen*/
.btn_ico {
	/*display:block;
	position:relative;
	text-align:left;
	text-indent:-9999px;
	background: #FFFFFF;
	width:23px;
	height:23px;
	cursor:pointer;
	border:1px solid #000;
	box-shadow:0px 0px 1px 1px #FFFFFF;
	z-index: 3;
	position:absolute;*/
	
	display: block;
	text-align: left;
	text-indent: -9999px;
	width: 25px;
	height: 25px;
	position: absolute;
	z-index: 3;
	box-sizing: border-box;
	background: none;
	border: 4px solid #FFF;
	border-radius: 50%;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.btn_ico:before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	background: #FFF none repeat scroll 0% 0%;
	border: medium none;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4.5px 0px 0px -4.5px;
}
.btn_ico:hover {
	transform: scale(1.35);
}
.btn_ico.error {
	/*transform:rotate(45deg);*/
	transform: scale(1.35);
}
.cont_text {
	color:#FFFFFF;
	background:rgba(0, 0, 0, 0.75);
	padding:22px 22px 25px;
	box-sizing:border-box;
	width: 290px;
	font-size: 1em;
	line-height: 1.4em;
	position:absolute;
	top: 50%;
	left: 50%;
	z-index:3;
	display:none;
	transform: translate(-50%, -50%);
}
.cont_text.open {
	display:block;
}
.cont_text img {
	display:block;
	margin:0px auto;
	width:100%;
	max-width:245px;
	height:auto;
}
.cont_text p {
	margin: 15px 0px -5px;
}
.cont_text .btn_close {
	display:block;
	width:20px;
	height:20px;
	border:none;
	background: url(../images/site/ico_close.png) no-repeat center;
	text-align:left;
	text-indent:-9999px;
	position:absolute;
	top:2px;
	right:2px;
	transition:all 0.5s ease;
	outline:none;
	text-decoration:none;
}
.cont_text .btn_close:hover {
	opacity:0.8;
}
 @media (max-width:800px) {
.btn_ico {
 width:15px;
 height:15px;
}
.cont_text {
 width: 180px;
 line-height:1.2em;
 font-size: 0.8em;
}
}
/*mostrar maqueta completa*/
.content_hide {
	display:none;
	width:100%;
	border-top:10px solid #FFFFFF;
	position:absolute;
	bottom:0px;
	left:0px;
	z-index: 5;
	background:rgba(0, 0, 0, 0.5);
}
.content_hide .btn_tri {
	display:block;
	width: 0px;
	height:0px;
	text-indent:-9999px;
	text-align:left;
	position:absolute;
	top: -45px;
	left:50%;
	margin-left:-30px;
	cursor:pointer;
	background:none;
	transition:transform 0.5s ease, opacity 0.5s ease;
	border-bottom: 30px solid #FFFFFF;
	border-left:30px solid transparent;
	border-right:30px solid transparent;
	border-top:none;
	outline:none;
}
.content_hide .btn_tri:hover {
	opacity:0.8;
}
.content_hide .btn_tri:active {
	top:-42px;
}
.content_hide .btn_tri.active {
	transform: rotate(180deg);
}
.content_hide .carrusel {
	text-align:center;
	font-size:0px;
	margin: 10px 0px;
	display:none;
}
.content_hide .carrusel li {
	display:inline-block;
	vertical-align:top;
	width:18%;
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	max-width: 255px;
	position:relative;
	font-size: 25px;
}
.content_hide .carrusel li span {
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	color:#FFFFFF;
	box-sizing:border-box;
	width:100%;
	height:100%;
	padding: 10px 0px 0px 10px;
	background:rgba(0, 0, 0, 0.3);
	text-align:left;
}
.content_hide .carrusel li.actual span {
	background:none;
	border:3px solid #FFFFFF;
}
.content_hide .carrusel li img {
	display:block;
	width:100%;
	height:auto;
	margin:0px;
}
/*fancy audio*/
.cont_audio {
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index: 15;
	background: rgba(0, 0, 0, 0.45) url(../images/site/overlay.png) repeat top left;
	text-align:center;
}
.cont_audio > div {
	display: inline-block;
	vertical-align: middle;
	width: 85%;
	max-width: 500px;
	background: rgba(0, 0, 0, 0.7);
	padding: 50px 20px 40px;
}
.cont_audio h2 {
	font-size: 3em;
	margin-bottom: 25px;
	line-height: 1em;
}
.cont_audio p {
	font-weight: 700;
	margin-bottom: 30px;
	font-size: 1.2em;
	letter-spacing:0.1em;
}
.cont_audio img {
	display:block;
	width:100%;
	height:auto;
	margin:0px auto;
}
.cont_audio button {
	display:block;
	margin: 20px auto;
	background:none;
	outline:none !important;
	height:auto;
	max-width: 50%;
	cursor:auto;
	color: #FFF;
}
.cont_audio hr {
	display: block;
	width: 60px;
	height: 4px;
	background: #FFFFFF;
	border: none;
	margin: 20px auto 0px;
}
#player_audio {
/*width:0px;
	height:0px;
	visibility:hidden;
	opacity:0;
	overflow:hidden;*/
}
/*boton next*/
.btn_next {
	position:absolute;
	right:40px;
	bottom:50px;
	z-index:3;
	border:none;
	background:#FFFFFF;
	color:#000000;
	font-size: 2.5em;
	padding: 20px;
	display:none;
	animation-name: floating;
	-webkit-animation-name: floating;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}
@keyframes floating {
 0% {
 transform: translateY(0%);
}
 50% {
 transform: translateY(8%);
}
 100% {
 transform: translateY(0%);
}
}
 @-webkit-keyframes floating {
 0% {
 -webkit-transform: translateY(0%);
}
 50% {
 -webkit-transform: translateY(8%);
}
 100% {
 -webkit-transform: translateY(0%);
}
}
/*instrucciones*/
.cont_inst {
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index: 3;
	background:rgba(0, 0, 0, 0.25) url(../images/site/overlay.png) repeat left top;
	display:none;
	cursor:pointer;
}
.cont_inst img {
	display:none;
	position:absolute;
}
.cont_inst img.ione {
	top:6%;
	left:25px;
}
.cont_inst img.itwo {
	top:6%;
	right:60px;
}
.cont_inst img.ithree {
	bottom: 4%;
	left: 50%;
	margin-left: -70px;
}
.cont_inst img.ifour {
	top: 44%;
	left: 11%;
}
.cont_inst img.ifive {
	top: 20%;
	left: 50%;
	margin-left: -179px;
}
