html, body {
    height: 100%;
    width: 100%;
    margin: 0px;
	padding: 0px;
/*	font-family: roboto;*/
}

#insideView {
    height: 100%;
	width: 100%;
    left: 0%;
    margin: 0px;
    padding: 0px;
    position: absolute;
    background-color: black;
}
#leftPanel {
	height: 100%;
    width: 30%;
    left: 0px;
    margin: 0px;
    padding: 0px;
    position: absolute;
}

#insideView img {
	border: none !important;
    max-width: none !important;
}

#buttonLevel {
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.298039) 0px 2px 6px;
    cursor: pointer;
    margin-bottom: 22px;
    line-height: 17px;
    z-index: 0;
    position: absolute;
    left: 5px;
    top: 13px;
    background-color: rgb(255, 255, 255);
}

/*Maps Custom Control*/
#fullScreenOption, #hideOption {
    cursor: pointer;
}

.divButtonCustom {
    margin-left: 5px;
    margin-top: 13px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.298039) 0px 2px 6px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
}

.buttonCustom {
    background-color: white;
    width: 27px;
    height: 27px;
    cursor: pointer;
    font-size: 15px;
}
/*
 * Animation configurations ( duration and fill mode ) 
*/
.animated {
    -webkit-animation: pulse infinite; /* Chrome, Safari, Opera */
    animation: mymove infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*
 * Pulse animation
*/
@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); }
    50% { -webkit-transform: scale(1.1); }
    100% { -webkit-transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

#inner-loading {
	font-size: 24px;
    position: absolute;
    width: 50%;
    height: 160px;
    z-index: 104;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
    background-color: white;
    text-align: center;
    border-radius: 10px;
	box-shadow: 2px 2px 10px 10px #888888;
		-webkit-box-shadow: 2px 2px 5px 5px #888888;
			-moz-box-shadow: 2px 2px 5px 5px #888888;
}

#loading {
	z-index: 1000;
	position: absolute;
	width: 100%;
	height: 100%;
}

#inner-loading span {
	position: relative;
	top: 16px;
}

#loadingContent {
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 104;
    -webkit-filter: blur(5px);
  	-moz-filter: blur(5px);
  	-o-filter: blur(5px);
  	-ms-filter: blur(5px);
  	filter: blur(5px);
    background-color: white;
}

.loadingStatus {
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

/*animation Loading*/
.la-ball-scale-ripple-multiple {
    position: relative;
}
.la-ball-scale-ripple-multiple > div {
    position: relative;
    box-sizing: content-box;
    color: #fff;
    background: #fff;
    border-color: #fff;
    border-style: solid;
    border-width: 0;
}
.la-ball-scale-ripple-multiple:after {
    display: table;
    line-height: 0;
    clear: both;
    content: "";
}
.la-ball-scale-ripple-multiple.la-dark > div {
    color: #444;
    background: #444;
    border-color: #444;
}
.la-ball-scale-ripple-multiple {
    width: 32px;
    height: 32px;
}
.la-ball-scale-ripple-multiple > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    float: left;
    background: transparent !important;
    border-width: 2px;
    border-radius: 100%;
    opacity: 0;
    animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21, .53, .56, .8);
}
.la-ball-scale-ripple-multiple > div:nth-child(1) {
    animation-delay: 0s;
}
.la-ball-scale-ripple-multiple > div:nth-child(2) {
    animation-delay: .25s;
}
.la-ball-scale-ripple-multiple > div:nth-child(3) {
    animation-delay: .5s;
}
.la-ball-scale-ripple-multiple.la-sm {
    width: 16px;
    height: 16px;
}
.la-ball-scale-ripple-multiple.la-sm > div {
    width: 14px;
    height: 14px;
    border-width: 1px;
}
.la-ball-scale-ripple-multiple.la-lg {
    width: 48px;
    height: 48px;
}
.la-ball-scale-ripple-multiple.la-lg > div {
    width: 42px;
    height: 42px;
    border-width: 3px;
}
.la-ball-scale-ripple-multiple.la-2x {
    width: 64px;
    height: 64px;
}
.la-ball-scale-ripple-multiple.la-2x > div {
    width: 56px;
    height: 56px;
    border-width: 4px;
}
/*
 * Animation
 */
@keyframes ball-scale-ripple-multiple {
    0% {
        opacity: 1;
        transform: scale(.1);
    }
    70% {
        opacity: .5;
        transform: scale(1);
    }
    95% {
        opacity: 0;
    }
}
#loadingObject {
    left: 50%;
    top: 50%;
  	transform: translate(-50%, -70%);
		-webkit-transform: translate(-50%, -70%);
			-ms-transform: translate(-50%, -70%);
}

#contentCardBoard {
	display: none;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 102;
	position: absolute;
}

#detail-popup-description {
	background: none;
	border: 0;
	text-align: left;
	font-size: 20px;
	overflow: scroll;
	max-height: 80vh;
}
