html {
	height: 100%;
}

body {
	font-family: 'Raleway', Arial, serif;
	font-weight: 400;
	font-size: 14px;
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	position: relative;
}

.centered-text {
	text-align: center;
}

.logo-container {
	padding-top: 70px;
	font-size: 50px;
	font-weight: 600;
}

.loading-animation-container {
	padding: 100px;
}

.loading-description {
	padding: 10px;
}

.format-selection-description-container {
	padding: 40px 0 10px 0;
}

.format-buttons-container {
	display: flex;
	justify-content: center;
}

.format-button {
	margin: 10px;
}

.home-description-container {
	padding-top: 30px;
}

.enter-code-description-container {
	padding: 10px;
}

.code-input-container {
	padding: 10px;
}

.connect-button-container {
	padding: 10px;
}

.last-code-button-container {
	padding-top: 10px;
}

.connection-tips-container {
	padding-top: 20px;
}

.tips-title {
	font-weight: bold;
	font-size: 18px;
}

.tips-list-container {
	padding-top: 10px;
	font-size: 14px;
}

.first-tip {
	padding-bottom: 5px;
}

.connected-view-container {
	padding-top: 20px;
	width: 100%;
	margin: 0 auto;
}

@keyframes beat {
	to { transform: scale(0.7); }
}

.animateLogo {
	animation: beat .7s infinite alternate;
}

.top-right {
	position: absolute;
	top: 20px;
	right: 20px;
}

.left-small-logo {
	background: url("/images/web-main-logo.png") no-repeat;
	background-size: 44px 24px;
	width: 44px;
	height: 24px;
}

.left-small-name {
	position: absolute;
	left: 54px;
	top: 4px;
}

.search-input-container {
	padding-top: 10px;
	text-align: center;
}

.play-controls-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 24px;
	padding-bottom: 10px;
}

.song-name-container {
	padding-bottom: 6px;
}

.artist-album-container {
	font-size: 12px;
	color: gray;
}

.seekbar-container {
	display: flex;
}

.song-time {
	width: 60px;
}

.buttons-controls-container {
	margin-left: 20px;
}

.hide-audio-controls {
	display: none;
}

.reconnect-button {
	padding: 5px !important;
	font-size: 14px !important;
	width: 100px !important;
}

.main-button {
	background-color: #00cc7a;
	border: none;
	color: white;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	box-shadow: 0 4px 16px 0 rgba(0,0,0,0.24);
}

.big-button {
	padding: 10px 14px;
	font-size: 16px;
}

.big-button:active {
	background-color: #3e8e41;
	transform: translateY(4px);
}

.small-button {
	padding: 5px 10px;
	font-size: 12px;
}

.big-button:active {
	background-color: #3e8e41;
	transform: translateY(2px);
}

.main-button:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

a {
	color: #000;
	text-decoration: none
}

.list-container {
	width: 200px;
	margin-right: 40px;

	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0;
	transition: all 0.3s ease-in-out 0;
}

.navigation-arrow {
	position: fixed;
	top: 23%;
	bottom: 70px;
	width: 28px;
	height: 42px;
	margin: auto 0;
	z-index: 1000;
	cursor: pointer;
	padding: 20px 10px;
	-webkit-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s
}

#prev {
	left: 10px;
	-webkit-transform: rotateZ(180deg) scale(0.8);
	transform: rotateZ(180deg) scale(0.8)
}

#prev:hover {
	-webkit-transform: scale(1) rotateZ(180deg);
	transform: scale(1) rotateZ(180deg)
}

.animated-link {
	font-weight: 600;
	font-size: 16px;
	padding: 5px 7px;
	display: inline-block;
	margin: 15px 0 0;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s
}

.underline {
	display: block;
	position: relative;
	padding: 0;
	width: 100%;
	height: 2px;
	bottom: 35%;
	right: 0;
	background-color: #000;
	-webkit-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
	-webkit-transform: scaleX(0);
	transform: scaleX(0)
}

a:hover .underline {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

@media (max-width: 650px) {

	.animated-link {
		margin-top: 7px
	}
}

.reconnection-loading-button {
	background-color: #00cc7a;
	border: none;
	color: white;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	box-shadow: 0 4px 16px 0 rgba(0,0,0,0.24);
}

.three-bounce-small > div {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce-small .one {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s
}

.three-bounce-small .two {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s
}

.three-bounce > div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #000;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce .one {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s
}

.three-bounce .two {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s
}

@-webkit-keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0)
	}
	40% {
		-webkit-transform: scale(1)
	}
}

@keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
	40% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}

.magnifying-glass {
	position: relative;
	left: 6px;
	top: 6px;
	background: url("/images/ic_search_gray_48dp_2x.png") no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.media-links-container {
	text-align: center;
}

.media-selection-link {
	padding: 0 100px;
}

.top-buttons-container {
	padding-bottom: 20px;
	cursor: pointer;
}

.small-subtitle {
	font-size: 10px;
	color: gray;
}

.artist-name-title {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.album-info-title {
	padding-bottom: 10px;
}

.album-title {
	font-weight: bold;
	font-size: 16px;
}

.album-subtitle {
	font-size: 12px;
	color: gray;
}

.song-duration {
	font-size: 10px;
	color: gray;
}

.video-item-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-thumbnail {
	height: 40px;
	width: 40px;
	padding-right: 5px;
}

.video-name {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	max-width: 200px;
	text-overflow: ellipsis;
}

.video-duration {
	font-size: 10px;
	color: gray;
	padding-left: 5px;
}

.play-queue {
	padding-top: 170px;
	width: 100%;
	min-height: 400px;
}

.play-queue-title {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.play-queue-buttons {
	padding-bottom: 20px;
	cursor: pointer;
}

.play-queue-empty-message {
	font-size: 14px;
	padding-top: 10px;
	color: gray;
}

.lists-container {
	background: url("/images/web-background.png") no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: contain;
}

.library-container {
	padding-top: 80px;
	text-align: center;
	height: 100%;
}

.video-library-container {
	padding-top: 80px;
}

.video-library-subcontainer {
	display: flex;
	justify-content: center;
}

.video-folders-container {
	width: 400px;
	text-align: center;
}

.video-names-container {
	width: 400px;
	text-align: center;
	padding: 10px;
}

.media-list-container {
	width: 100%;
	min-height: 500px;
}

.media-item {
	margin: 0 auto;
	width: 90%;
	padding-bottom: 5px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.media-item:hover {
	transform: scale(1.1);
}

.libraryPlaying {
	padding: 170px !important;
}

.top-bar {
	background-color: white;
	position: fixed;
	top: 0;
	height: 80px;
	width: 100%;

	box-shadow: inset 0 -10px 10px -10px #00995c;
	z-index: 10;
}

.topBarPlaying {
	height: 170px !important;
}

.search-input {
	border: none;
	border-bottom: 1px solid lightgray;
	width: 275px;
	outline: none;
	margin-left: 5px;
}

.search-input:focus {
	border-bottom: 1px solid gray;
}

.search-input::-webkit-input-placeholder {
	font-family: 'Raleway', Arial, serif;
}

.search-input:-ms-input-placeholder {
	font-family: 'Raleway', Arial, serif;
}

.search-input:-moz-placeholder {
	font-family: 'Raleway', Arial, serif;
}

.search-input::-moz-placeholder {
	font-family: 'Raleway', Arial, serif;
}

.hide {
	visibility: hidden;
}

.reset-search {
	position: relative;
	left: -15px;
	color: lightgray;
	cursor: pointer;
}

.reset-search:hover {
	color: gray;
}

.media-button {
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: inline-block;
	transition: all .2s ease-in-out;
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.media-button:hover {
	transform: scale(1.1);
}

.smallPlayButton {
	background: url("/images/ic_play_arrow_black_48dp_2x.png") no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	position: relative;
	top: -1px;
	margin-left: 5px;
}

.smallAddToQueueButton {
	background: url("/images/ic_playlist_add_black_48dp_2x.png") no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	position: relative;
	top: -1px;
}

.playButton {
	background: url("/images/ic_play_arrow_black_48dp_2x.png") no-repeat;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
	position: relative;
	top: 5px;
}

.pauseButton {
	background: url("/images/ic_pause_black_48dp_2x.png") no-repeat;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
	position: relative;
	top: 5px;
}

.previous-button {
	background: url("/images/ic_skip_previous_black_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.next-button {
	background: url("/images/ic_skip_next_black_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.shuffleButton {
	background: url("/images/ic_shuffle_green_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.shuffleButtonDisabled {
	background: url("/images/ic_shuffle_gray_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.playQueueButton {
	background: url("/images/ic_queue_music_green_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.playQueueButtonDisabled {
	background: url("/images/ic_queue_music_gray_48dp_2x.png") no-repeat;
	background-size: 30px 30px;
}

.play-add-buttons-container {
	visibility: hidden;
	position: absolute;
}


.item-description-container:hover .play-add-buttons-container {
	visibility: visible;
}

.play-add-buttons-container-video {
	visibility: hidden;
	position: relative;
}

.item-description-container:hover .play-add-buttons-container-video {
	visibility: visible;
}

.volume-down-icon {
	margin-left: 20px;
	width: 24px;
	height: 24px;
	display: inline-block;
	background: url("/images/ic_volume_down_black_48dp_2x.png") no-repeat;
	background-size: 24px 24px;
}

.volume-up-icon {
	margin-left: 2px;
	width: 24px;
	height: 24px;
	display: inline-block;
	background: url("/images/ic_volume_up_black_48dp_2x.png") no-repeat;
	background-size: 24px 24px;
}

.playingNow {
	font-weight: bold;
}

.playingNow a {
	color: #00cc7a !important;
}

.logo {
	position: fixed;
	left: 0;
	top: 0;
	margin: 10px 0 0 10px;
	z-index: 20;
	font-size: 16px;
	font-weight: 800;
}

.play-store-link {
	position: fixed;
	left: 5px;
	bottom: 0;
	z-index: 20;
}

.play-store-img {
	width: 140px;
}

.follow-buttons-container {
	position: fixed;
	left: 145px;
	bottom: 6px;
	z-index: 20;
}

.info-links-container {
	position: fixed;
	left: 218px;
	bottom: 8px;
	z-index: 20;
}

.info-link {
	font-size: 12px;
}

.white-background {
	border-radius: 10px;
	padding: 4px 6px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 0px 22px 4px rgba(255,255,255,1);
}

.language-change-container {
	position: fixed;
	right: 0;
	bottom: 0;
	margin: 0 10px 5px 0;
	z-index: 20;
}

.language-change {
	float: right;
	font-size: 14px;
}

.flag {
	position: relative;
	top: 12px;
	right: 30px;
	width: 30px;
	height: 30px;
}

.britishFlag {
	background: url("/images/british_flag.png");
	background-size: 30px 30px;
	background-repeat: no-repeat;
}

.spanishFlag {
	background: url("/images/spanish_flag.png");
	background-size: 30px 30px;
	background-repeat: no-repeat;
}

.connected {
	position: fixed;
	right: 0;
	margin: 10px 10px 0 0;
	z-index: 20;
	display: inline-block;
	padding: 5px 5px;
	white-space: nowrap;
	font-weight: bold;
	border-radius: 0.35em;
	color: #00cc7a;
	border: 1px solid #00cc7a;
}

.disconnected-container {
	position: fixed;
	right: 0;
	margin: 10px 10px 0 0;
	z-index: 20;
}

.disconnected {
	display: inline-block;
	padding: 5px 5px;
	white-space: nowrap;
	font-weight: bold;
	border-radius: 0.35em;
	color: #cc0000;
	background-color: #ffcccc;
	border: 1px solid lightcoral;
}

.reconnect-tip {
	position: fixed;
	right: 0;
	top: 36px;
	margin: 10px 10px 0 0;
	z-index: 20;

	background: white;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 430px;
}

.new-version-msg {
	position: fixed;
	left: 10px;
	top: 80px;
	margin: 10px 10px 0 0;
	z-index: 20;

	background: white;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 280px;
}

.newVersionMsgLower {
	top: 170px;
}

.notification {
	text-align: center;
	position: fixed;
	margin-top: 10px;
	width: 100%;
	z-index: -1;
	padding: 5px 10px;
	font-weight: bold;

	opacity: 0;
	-webkit-transition: opacity .6s, z-index 1s;
}

.error-message {
	color: #cc0000;
	background-color: #ffcccc;
	border-top: 1px solid lightcoral;
	border-bottom: 1px solid lightcoral;
}

.success-message {
	color: #006600;
	background-color: #c2f0c2;
	border-top: 1px solid #009900;
	border-bottom: 1px solid #009900;
}

.displayMessage {
	opacity: 1;
	z-index: 21;
	-webkit-transition: opacity .6s;
}

.backGround {
	z-index: -1;
}

.showList {
	display: block;
}

.hideList {
	display: none;
}

progress[value] {
	-webkit-appearance: none;
	appearance: none;

	cursor: pointer;
	width: 240px;
	height: 10px;
}

progress[value]::-webkit-progress-bar {
	background-color: #eee;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
	background-image: linear-gradient(to bottom, rgba(0, 204, 122, 1), rgba(0, 204, 122, 0.3));
	border-radius: 2px;
	background-size: 35px 20px, 100% 100%, 100% 100%;
}

input[type=range] {
	-webkit-appearance: none;
	width: 120px;
}

input[type=range]:focus {
	outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 3px;
	cursor: pointer;
	animate: 0.2s;
	box-shadow: 0px 0px 0px #000000;
	background: #00CC7A;
	border-radius: 0px;
	border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
	box-shadow: 1px 1px 2px #000000;
	border: 0px solid #000000;
	height: 22px;
	width: 12px;
	border-radius: 4px;
	background: #FFFFFF;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -9.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
	background: #00CC7A;
}
input[type=range]::-moz-range-track {
	width: 100%;
	height: 3px;
	cursor: pointer;
	animate: 0.2s;
	box-shadow: 0px 0px 0px #000000;
	background: #00CC7A;
	border-radius: 0px;
	border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
	box-shadow: 1px 1px 2px #000000;
	border: 0px solid #000000;
	height: 22px;
	width: 12px;
	border-radius: 4px;
	background: #FFFFFF;
	cursor: pointer;
}
input[type=range]::-ms-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
input[type=range]::-ms-fill-lower {
	background: #00CC7A;
	border: 0px solid #000000;
	border-radius: 0px;
	box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
	background: #00CC7A;
	border: 0px solid #000000;
	border-radius: 0px;
	box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
	box-shadow: 1px 1px 2px #000000;
	border: 0px solid #000000;
	height: 6px;
	width: 12px;
	border-radius: 1px;
	background: #FFFFFF;
	cursor: pointer;
	margin-top: 0 !important;
	margin-left: 1px;
	margin-right: 1px;
}
input[type=range]:focus::-ms-fill-lower {
	background: #00CC7A;
}
input[type=range]:focus::-ms-fill-upper {
	background: #00CC7A;
}

.about-container {
	position: absolute;
	top: 100px;
	margin: 0 auto 40px auto;
	left: 0;
	right: 0;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 50%;
	z-index: 21;
	text-align: left;
}

.help-container {
	position: absolute;
	top: 40px;
	margin: 0 auto 40px auto;
	left: 0;
	right: 0;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 60%;
	z-index: 21;
	text-align: left;
}

.help-header {
	font-weight: bold;
	font-size: 16px;
}

.help-question {
	padding-top: 14px;
	font-weight: bold;
}

.help-answer {
	padding-top: 5px;
	font-size: 14px;
}

.fake-link {
	color: #00cc7a;
	font-weight: bold;
}

.help-link {
	cursor: pointer;
}

.rate-popup {
	position: fixed;
	top: 30%;
	margin: 0 auto 40px auto;
	left: 0;
	right: 0;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 30%;
	z-index: 200;
	text-align: left;
}

.rate-header {
	font-weight: bold;
	font-size: 16px;
	padding-bottom: 10px;
}

.rate-buttons-container {
	text-align: center;
	padding-top: 10px;
}

.rate-full-screen-background {
	z-index: 100;
	height: auto;
	width: 100%;
	background-color: black;
	position: fixed;
	top: 0;
	bottom: 0;
	opacity: 0.4;
}

video {
	padding: 20px;
}

.video-player-container {
	margin: 10px;
}

.video-container {
	border-radius: 20px;


	-moz-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;

	background: #ffffff;
	box-shadow: 0 0 10px #ccc;
}

.video-container:hover, .video-container:focus {
	box-shadow: 0 0 20px #6fd6ac;
}

#controls {
	display: none; margin: 10px 30px;
}

.mediaTypeButtonContainer {
	animation-name: moveRight;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes moveRight {
	to {
		top: 80px;
		right: 0;
	}
}

.mediaTypeButtonTop {
	animation-name: moveDown;
	animation-duration: 0s;
	animation-fill-mode: forwards;
}

@keyframes moveDown {
	to {
		top: 170px;
		right: 0;
	}
}