@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap');

body {
	overflow: hidden;
	font-family: 'Red Hat Display', sans-serif;
	font-weight: normal;
	background-color: black;
	color: white;
}

#video-wrapper {
	position: relative;
}

#video-wrapper #player{
	width: 100%;
	height: calc((100vw*9) /16);
	display: none;
	margin-top: -60px;
}

#video-wrapper #video-overlay {
	position: absolute;
	top: 0;
	width: 100%;
	opacity: 0.01;
	bottom: 0;
	background-color: black;
	z-index: 1;
}

#video-wrapper #splash {
	position: fixed;
	top: 50%;
	max-width: 500px;
	padding: 20px;
	/* padding-bottom: 17px; */
	border: 1px solid white;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
	z-index: 1;
	border-radius: 10px;
}

#video-wrapper #splash h3 {
	font-size: 36px;
}

#video-wrapper #video-info {
	position: fixed;
	left: 25px;
	top: 25px;
	z-index: 1;
	display: none;

}

#video-wrapper #location {
	font-style: normal;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#video-wrapper #local-time {
	float: left;
	margin-top: 5px;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	color: #FFFFFF;
	height: 20px;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	background-image: url('/img/clock.png');
	background-repeat: no-repeat;
	background-position: inherit;
	padding-left: 27px;
	background-size: contain;
}

#video-wrapper #sunset-time {
	float: left;
	margin-left: 15px;
	margin-top: 5px;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	color: #FFFFFF;
	height: 20px;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	background-image: url('/img/sunset_icon_white.png');
	background-repeat: no-repeat;
	background-position: inherit;
	padding-left: 27px;
	background-size: contain;
}

#video-wrapper #local-temp {
	float: left;
	margin-left: 15px;
	margin-top: 5px;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	color: #FFFFFF;
	height: 20px;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	background-image: url('/img/temp.png');
	background-repeat: no-repeat;
	background-position: inherit;
	padding-left: 17px;
	background-size: contain;
}

#full-screen-controls {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 95px;
	height: 85px; /*100vh;*/
	z-index: 997;
	transform: translate(0%,0px);
}

#full-screen-controls.closed {
	-webkit-transform: translate(0px,150%);
	transform: translate(0px,150%);
	transition: all 0.45s ease;
}

#full-screen-controls #show-sidebar {
	padding: 15px 5px;
	text-align: center;
	margin: auto;
}

#full-screen-controls #show-sidebar img {
	width: 50px;
	height: 50px;
}

#sidebar {
	position: fixed;
	display: inherit !important;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 150px; /*100vh;*/
	background-color: rgba(0, 0, 0, 0.40);
	z-index: 997;
	padding: 15px 15px;
	transform: translate(0%,0px);
	-webkit-transform: translate(0%,0px);
	transition: all 0.45s ease;
}

#sidebar.closed {
	-webkit-transform: translate(0px,150%);
	transform: translate(0px,150%);
	transition: all 0.45s ease;
}



#sidebar #main-info {
	float: left;
	width: 180px;
	padding: 5px;
	padding-top: 30px;
}

#sidebar #main-info h1 {
	font-size: 28px;
	margin-bottom: 5px;
}

#sidebar #main-info h3 {
	font-size: 16px;
	color: #C0C0C0;
}

#sidebar #location-wrapper {
    padding-left: 5px;
	max-width: calc(100vw - 400px);
	white-space: nowrap;
	position: relative;
	overflow-x: scroll;
	overflow-y: hidden;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
	scrollbar-width: none;  /* Firefox */
}

#sidebar #location-wrapper::-webkit-scrollbar {
	display: none;  /* Safari and Chrome */
}

#sidebar .location {
	position: relative;
	width: 175px;
	border-radius: 10px;
	height: 115px;
	float: none;
	margin-right: 10px;
	background-size: cover;
	text-align: center;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
	cursor: pointer;
	display: inline-block;
	zoom: 1;
}

#sidebar .location .location-time-left {
	display: none;
}

#sidebar .location.active {
	border: 2px solid white;
}

#sidebar .location .live-sign {
	position: absolute;
	left: 7px;
	top: 5px;
}

#sidebar .location.active .live-sign {
	display: inherit !important;
}

#sidebar .location-txt {
	padding: 35px 5px;
	color: white;
	overflow: hidden;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.35), 1px 1px 5px rgba(0,0,0,0.5);
}

#sidebar .location-txt .location-city {

	font-weight: bold;
	font-size: 13px;
}

#sidebar .location-txt .location-country {

	font-size: 13px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.35), 1px 1px 5px rgba(0,0,0,0.5);
}

#sidebar #controls {
	position: fixed;
	bottom: 60px;
	width: 175px;
	right: 15px;
	font-style: normal;
	font-weight: bold;
	font-size: 11px;
	line-height: 25px;
	text-align: center;
}

#sidebar #controls #show-sidebar {
	display: none;
}

#sidebar #controls #sound-area #sound-off {
	cursor: pointer;
}

#sidebar #controls #sound-area #sound-on {
	display: none;
	cursor: pointer;

}

#sidebar #controls #sound-area img, #sidebar #controls #like-area #like-img img, #sidebar #controls #hide-sidebar img {
	height: 32px;
}

#sidebar #controls #like-area, #sidebar #controls #sound-area, #sidebar #controls #hide-sidebar
{
	width: 55px;
	float: left;
}

#vote {
	position: fixed;
	width: 550px;
	top: 45%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -55%);
	z-index: 1;
	padding: 10px;
	border-radius: 10px;
	background-color: rgb(0,0,0,0.5);
	display: none;

}

#vote #title {
	font-style: normal;
	font-weight: bold;
	font-size: 34px;
	line-height: 60px;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#vote #vote-options-area {
	display: inline-table;

}

#vote .vote-option {
	width: 20%;
	padding: 5px;
	margin: auto;
	font-size: 13px;
	line-height: 35px;
	display: table-cell;
	cursor: pointer;
}

#vote .vote-option img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

#vote .vote-option:hover img {
	border: 2px solid white;
}

#transfer-video {
    position: fixed;
    width: 350px;
    top: 45%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -55%);
    z-index: 1;
    display: none;
}


#transfer-video #transfer-img {
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    height: 220px;
    background-size: cover;
    width: 100%;
    padding-top: 75px;
}

#transfer-video #transfer-img .location-city {
    font-size: 22px;
}

#transfer-video #transfer-img .location-country {
    font-size: 18px;
}

#transfer-video #transfer-stay, #transfer-video #transfer-next {
    width: 47%;
    margin:5px;
    float: left;
    font-size: 17px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    margin-top: 8px;
    background-color: rgb(0, 0, 0, 0.7);
}

#transfer-video #transfer-stay {

}

#transfer-video #transfer-next {
    position: relative;
    font-weight: bold;
}

#transfer-video #transfer-next #next-progress-bar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    z-index: 1;
    background-color: rgb(255, 255, 255, 0.50);
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
}



#other-experiences {
    position: fixed;
    bottom: 35px;
    right: 20px;
	display: none;
}

#other-experiences  .btn{
    background-color: #000;
    border: 1px solid white;
    font-size: 13px;
    color: white;
    padding: 10px 5px;
    font-weight: 900;
    width: 100%;
    margin-top: 20px;
}

#footer {
    position: fixed;
    bottom: 10px;
    right: 15px;
}

#footer ul {
    list-style: none;
    padding: 0;
}

#footer ul li {
    float: left;
    font-size: 12px;
    font-weight: bold;
}

#footer .footer-item {
    padding-left: 10px;
}

#contact-us-link a:active, #contact-us-link a:link, #contact-us-link a, #about-us-link {
	color: white;
	cursor: pointer;
}

#about-us-link:hover {
	text-decoration: underline;
}

#mobile-mssg {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1000;
    background-color: black;
}

#mobile-mssg p {
    font-size: 20px;
    color: #eee;
}

#mobile-mssg .mobile-box {
    padding: 35px;
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#mobile-mssg .mobile-box h1 {
    font-size: 26px;
    color: #eee;
    line-height: 30px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}


.img-responsive{
    width: 100%;
}


/* support mobile devices (landscape) */
@media (max-width: 819.98px) {

	#video-wrapper #player{
		margin-top: 0px;
	}

	#video-wrapper #video-overlay {
		display: none !important;
	}

    #video-wrapper #video-info {
        left: 15px;
        top: 15px;
    }

    #video-wrapper #location {
        font-size: 18px;
        line-height: 24px;
    }

    #video-wrapper #local-time {
        font-size: 14px;
        line-height: 18px;
        height: 20px;
    }

    #video-wrapper #sunset-time {
        margin-left: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    #video-wrapper #local-temp {
        margin-left: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    #sidebar {
        height: 100px;
		padding: 11px 10px;
    }

    #sidebar .location {
        height: 75px;
        width: 115px;
        margin-right: 6px;
    }

    #sidebar #location-wrapper {
		max-width: calc(100vw - 290px);
	}

    #sidebar .location-txt {
        padding: 22px 3px;
        text-overflow: ellipsis;
        line-height: 15px;
    }

    #sidebar .location-txt .location-city {
        font-size: 12px;
    }

    #sidebar .location-txt .location-country {
        font-size: 12px;
    }


    #sidebar #main-info {
		width: 125px;
		padding-top: 15px;
    }

    #sidebar #main-info h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    #sidebar #main-info h3 {
        font-size: 12px;
        color: #C0C0C0;
    }

    #sidebar #controls {
        bottom: 35px;
        width: 150px;
        right: 7px;
    }

    #sidebar #controls #like-area, #sidebar #controls #sound-area, #sidebar #controls #hide-sidebar
    {
        width: 33%;
        float: left;
    }

    #other-experiences {
        position: fixed;
		display: none;
        width: 130px;
        bottom: 30px;
    }

    #other-experiences .btn {
        height: 25px;
        line-height: 4px;
        font-size: 10px;
    }

    #footer ul li {
        font-size: 10px;
    }

    #footer .footer-item {
        padding-left: 6px;
    }

	#full-screen-controls {
		width: 55px;
		height: 50px;
	}

	#full-screen-controls #show-sidebar {
		padding: 5px 5px;
	}

	#full-screen-controls #show-sidebar img {
		width: 35px;
		height: 35px;
	}

	#video-wrapper #splash {
		padding: 10px;
	}

	#video-wrapper #splash h3 {
		font-size: 20px;
	}

	#transfer-video {
		width: 240px;
	}

	#transfer-video #transfer-img {
		height: 130px;
	}

	#transfer-video #transfer-stay, #transfer-video #transfer-next {
		width: 48%;
		margin: 2px;
		margin-top: 5px;
		font-size: 12px;
		padding: 7px;
	}

	#vote {
		width: 300px;
	}

	#vote #title {
		font-size: 20px;
		line-height: 35px;
	}

	#vote .vote-option {
		font-size: 11px;
		line-height: 12px;
	}

	#vote .vote-option img {
		margin-bottom: 5px;
	}
}
