@font-face {
    font-family: 'continuummedium';
    src: url('continuummedium.ttf');
}

body {
	background-color: #111;
	text-align: center;
	font-family: continuummedium;
}

.app-tile {
	background-color: rgba(0,0,0,0.8);
	border: none;
	box-shadow: 0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
}

.app-core {
	text-align: center;
	font-size: 16px;
	color: #DDD;
}

.app-title, .app-subtitle {
	text-align: center;
	color: #FFF;
}

.app-play {
	cursor: pointer;
	text-align: center;
	background-color: #222;
	color: #FFF;
	z-index: 2;
}
.app-play:hover {
	background-color: rgba(255,255,255,0.2);
}

.app-name {
	text-align: center;
	font-size: 16px;
	color: #BBB;
}

.app-content {
	width: var(--app-content-width) !important;
	left : var(--app-content-left) !important;
}

.app-tile, .app-title {
	width: var(--app-content-width) !important;
}

.app-img {
	left: var(--app-img-left) !important;
}

.app-play {
	background-color: var(--app-play-bg);
}

.app-name, .app-subtitle, .app-core {
	visibility: var(--app-info-show);
}
/*
@media (min-width: 1280px) {
	.app-content {
		width: 1280px !important;
		left : calc(50vw - 640px) !important;
		left : calc(var(--vw, 1vh) * 50 - 640px) !important;
	}
}


@media (max-width: 1280px) {
	.app-play {
		background-color: rgba(0,0,0,0.8);
	}

	.app-name, .app-subtitle, .app-core {
		visibility: hidden;
	}
}

@media (max-width: 1280px) and (min-width: 960px) {
	.app-content {
		width: 960px !important;
		left : calc(50vw - 480px) !important;
		left : calc(var(--vw, 1vh) * 50 - 480px) !important;
	}

	.app-tile, .app-title {
		width: 960px !important;
	}

	.app-img {
		left: 0 !important;
	}
}

@media (max-width: 960px) {
	.app-content {
		width: 100vw !important;
		left : 0 !important;
	}

	.app-tile, .app-title {
		width: 100vw !important;
	}

	.app-img {
		left: calc(50% - 480px) !important;
		left : calc(var(--vw, 1vh) * 50 - 480px) !important;
	}
}
*/
#bg {
	visibility: visible;
}

#bg-tel {
	width: 100%;
	/*height: 100%;*/
	top: 0 !important;
	position: fixed !important;
	/*background-image: linear-gradient(to bottom right, #3295c7, #1d5b85);*/
	/*background-image: linear-gradient(to bottom right, #001447, #000000);*/
	visibility: hidden;
}

@media (max-device-width:480px) , (max-device-height:480px) {
	#bg {
		visibility: hidden;
	}

	#bg-tel {
		visibility: visible;
	}

	.app-tile {
		margin-bottom: 120px;
	}
}

.app-img {
	opacity: 0.90;
}

.imgfull {
	height:100%;
	width:100%;
}

.full {
	 height:100%;
	 width:100%;
}

.invert {
	-webkit-filter: grayscale(1) invert(1);
	filter: grayscale(1) invert(1);
}

.none:hover {
	pointer-events:auto;
}
.none:active {
	pointer-events:none;
}

h1 {
	font-size: 48px;
	margin-bottom: 8px;
	margin-top: 4px;
}

h2 {
	font-size: 24px;
	margin-bottom: 4px;
	margin-top: 4px;
}

h3 {
	font-size: 20px;
	margin-bottom: 0px;
	margin-top: 0px;
}

h4 {
	font-size: 10px;
	margin-bottom: 0px;
	margin-top: -2px;
}

.chevron {
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition: opacity 0.4s ease-in-out;
	-ms-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}

.slider:hover ~ .chevron {
	opacity: 0.4;
}

/*.chevron {
	opacity: 0;
	pointer-events: none;
	-webkit-animation: blink 5s infinite;
	-moz-animation: blink 5s infinite;
	-ms-animation: blink 5s infinite;
	-o-animation: blink 5s infinite;
	animation: blink 5s infinite;
}
@keyframes blink {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	80% {
		opacity: 0.25;
	}
	100% {
		opacity: 0;
	}
}*/

.ScrollStyle::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #444444;
}

.ScrollStyle::-webkit-scrollbar
{
	width: 12px;
	background-color: #444444;
}

.ScrollStyle::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #888888;
}

.ScrollShadow {
    overflow-x:hidden;
    overflow-y:scroll;
 }
.ScrollShadow::-webkit-scrollbar {
    width:12px;
}
.ScrollShadow::-webkit-scrollbar * {
    background:transparent; 
 }
.ScrollShadow::-webkit-scrollbar-thumb {
    background:rgba(255,255,255,0.2) !important;
}