/* reset css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*/
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* APP */
body {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 750px;
    overflow: hidden;
    margin: 0px;
    border: 0px;
    padding: 0px;
}

.app {
    position: relative;
}
.svg-container { 
	display: inline-block;
	position: relative;
	width: 100%;
	padding-bottom: 100%; 
	vertical-align: middle; 
	overflow: hidden; 
}
.svg-content { 
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.bg {
    position: relative;
    top: 0; left: 0;
    width: 100%; height: auto;
    z-index: -1;
}
.mc {
    display: inline-block;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.myLogo {
    width: 40px;
    left: 614px;
    top: 136px;
    perspective: 200px;
    background-color: #ece6dc;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.logo {
    width: 100%;
    animation: rotateLogo 24s cubic-bezier(0,0,.59,.99) 0s infinite;
}
.boat {
    width: 90%;
}
.path {
    top: 150px;
}
.btn-pov {
    opacity: 0;
    fill: #FF0000;
    cursor: pointer;
}

.list-location {
    position: relative;
}
.list-location li {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0px;
    left: 0px;
    line-height: 20px;
    text-align: center;
    background: #9b6432;
    border-radius: 15px;
/*    overflow: hidden;*/
    font-family: 'MontserratBold';
    color: white;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-duration: 360ms;
}
.list-location li::after { 
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: -1;
    border: 3px solid rgba(30,145,208,0.4);
    border-radius: 40px;
    opacity: 0;
}
@keyframes spotPoint {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(1.4); }
}
.list-location li.spotlight::after {
    animation: 980ms spotPoint 490ms 3 ease-out;
}
.list-location li.spotlight {
    animation: spotlightMove 980ms 3 ease-in-out;
}
.list-location li:hover {
    background: #1e91d0 !important;
    
}
.list-location li>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.px-tooltip {
    padding: 18px 12px 12px 12px;
    text-align: center;
    background: white;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    transform: translateY(10px);
    opacity: 0;
    transition-duration: 360ms;
    transition-timing-function: cubic-bezier(.27,.9,.54,.94);
    z-index: 0;
}
.px-tooltip.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}
.px-tooltip h3 {
    font-family: 'MontserratBold';
    color: #231f20;
    font-size: 12px;
    line-height: 1.2em;
    margin-bottom: 12px;
}
.px-tooltip-img {
    display: inline-block;
    position: relative;
    width: 90px; height: 90px;
    white-space: nowrap;
    line-height: 0px;
    border-radius: 4px;
    overflow: hidden;
}
.opq {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.px-tooltip-img::after {
    content: '';
    display: block;
    position: absolute;
    width: 90px; height: 90px;
    top: 0px; left: 0px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: inset 0px 0px 4px 0px rgba(0,0,0,0.5);
}
.px-tooltip img {
    width: 90px;
}


/* -- Media -- */
@keyframes rotateLogo {
    0% {
    transform: rotate3d(0, 1, 0, 0deg);
    }
    87.5% {
    transform: rotate3d(0, 1, 0, 0deg);
    }
    100% {
    transform: rotate3d(0, 1, 0, 720deg);
    }
}
@keyframes spotlightMove {
    0% { background: #9b6432; }
    50% { background: #1e91d0; }
    100% { background: #9b6432; }
}
@media only screen and (max-width : 720px) {
    .px-hideMobile { display: none !important; }
}