body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif !important;
}

.show {
	display: block;
}

.hide{
	display: none;
}

.mhb-container {
	width: 1200px;
    height: 675px;
    /*width: auto;*/
    position: relative;
}

.mhb {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	overflow: hidden;
}

.mhb_video, .mhb_img{
	position: absolute;
	width: auto;
	height: auto;
	min-width: 102%;
	min-height: 102%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transition: opacity .3s ease-out;
	-webkit-transition: opacity .3s ease-out;
}

.mhb_video{
	opacity: 0;
}

.logo {
	position: absolute;
	width: 1000px;
	height: 130px;
	margin: 0;
	display: inline-block;
	cursor: pointer;
	z-index: 2;
}

.logo img {
	margin: 20px 0 0 20px;
	width: auto;
	height: 40px;
	/*-moz-box-shadow:    3px 3px 5px 6px #000;
    -webkit-box-shadow: 3px 3px 5px 6px #000;
    box-shadow:         3px 3px 5px 6px #000;*/
    -webkit-filter: drop-shadow( 0px 0px 30px #000 );
            filter: drop-shadow( 0px 0px 30px #000 );
}

.logo-icons-container {
	height: 130px;
	display: inline-block;
	color: #fff;
	float: left;
	position: relative;
}

.logo-icons {
	position: absolute;
	left: 20px;
	top: 20px;
}

.icons-container {
	width: auto;
	height: 130px;
	display: inline-block;
	color: #fff;
	float: right;
	position: relative;
}
.icons {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2;
}



.status {
	padding: 0;
	margin: 0;
	width: 77px;
	border-radius: 5px;
	margin-bottom: 7px;
	/*height: 30px;*/
}

.status p {
	/*display: table-cell;*/
	/*position: absolute;*/
	/*padding-top: 3px;*/
	/*line-height: 30px;*/
	/*padding-bottom: 5px;*/
	text-align: center;
	padding: 4px 0;
}

.live-dot {
	height: 16px;
	width: 16px;
	background-color: rgba(94, 180, 0, 1);
	border-radius: 50px;
	position: absolute;
	margin-top: 7px;
	margin-left: 6px;
}

.live-status {
	opacity: 0.8;
}

.live-status p {
	display: inherit;
	margin-left: 10px;
}

.free-status {
	opacity: 0.8;
	/*margin-top: 7px;*/
}

.nickname {
	position: absolute;
	display: table;
	width: 100%;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.8);
	bottom: 0;
	z-index: 2;
}

.nickname p {
	display: table-cell;
	font-size: 30px;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
}

.live-icon-animation{
    display: block;
    -webkit-animation: fadeInFromNone 2s infinite ease-out;
    -moz-animation: fadeInFromNone 2s infinite ease-out;
    -o-animation: fadeInFromNone 2s infinite ease-out;
    animation: fadeInFromNone 2s infinite ease-out;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        opacity: 0.2;
    }

	50% {
		opacity: 1;
	}

    100% {
        opacity: 0.2;
    }

}

@-moz-keyframes fadeInFromNone {
    0% {
        opacity: 0.2;
    }

	50% {
		opacity: 1;
	}

    100% {
        opacity: 0.2;
    }
}

@-o-keyframes fadeInFromNone {
    0% {
        opacity: 0.2;
    }

	50% {
		opacity: 1;
	}

    100% {
        opacity: 0.2;
    }
}

@keyframes fadeInFromNone {
    0% {
        opacity: 0.2;
    }

	50% {
		opacity: 1;
	}

    100% {
        opacity: 0.2;
    }
}




.mhb-profile-container {
	width: 100%;
	/*height: 350px;*/
	position: absolute;
	/*margin-top: 165px;*/
	top: 50%;
	transform: translateY(-50%);
}

.mhb-profile {
	height: 220px;
	width: 560px;
	border-radius: 150px;
	background-color: rgba(0, 0, 0, 0.5);
	margin: 0 auto;
	cursor: pointer;
	z-index: 5;
}

.mhb-profile-picture {
	width: 210px;
	height: 210px;
	border-radius: 150px;
	margin-top: 5px;
	margin-left: 5px;
	display: inline-block;
	object-fit: cover;
	background-size: cover;

}

.mhb-profile-info {
	display: inline-block;
	position: absolute;
	width: 340px;
	height: 220px;
}

.mhb-profile-info p {
	margin: 0;
	padding: 0;
	margin-left: 30px;
	font-size: 20px;
}

.mhb-nickname {
	font-size: 40px !important;
	margin-top: 70px !important;
}

.button{
	background-color: #c60ac2;
	color: #fff;
	border: none;
	outline: none;
	padding: 0;
	width: 400px;
	height: 60px;
	border-radius: 50px;
	font-size: 25px;
	-moz-box-shadow: 0px 0px 70px #000;
	-webkit-box-shadow: 0px 0px 70px #000;
	box-shadow: 0px 0px 70px #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	z-index: 1;
}

.mhb-button {
	margin-top: 60px;
	margin-left: 50%;
	transform: translateX(-50%);
}

.stream-button{
    position: absolute;
	left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    width: 405px;
    height: 60px;
}

button:active span, button:focus span {
    position:relative;
    top: 0;
    left: 0;
}

.end-screen-canvas{
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	opacity: 1;
	left: 50%;
	top: 50%;
	visibility: hidden;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}





.slide-logo {
	width: 900px;
	height: 100px;
}

.gallery-name {
	color: #fff;
	background-color: #000;
	opacity: 0.8;
	margin: 20px 20px 0 20px;
	padding: 5px;
	border-radius: 5px;
	font-size: 22px;
	text-transform: uppercase;
}

.gallery-name-container {
	height: 100px !important;
}

.no-logo {
	float: left;
	/*margin-left: 20px;*/
}

.slide-container {
	/*margin-top: 100px;*/
	margin-top: 0 !important;
	width: 100%;
	height: 480px;
	position: absolute;
	overflow: hidden;
	top: 50%;
	transform: translateY(-50%);
}

.slider {
    width: 50%;
    /*margin: 100px auto;*/
}

.slick-slide {
	width: 640px !important;
	position: relative;
}

.slide-overlay {
	background-color: #000;
	opacity: 0.7;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
}

.slick-active {
	opacity: 1 !important;
}

.slick-active .slide-overlay {
	background-color: transparent !important;
}

.slick-slide img {
	width: 100%;
	height: auto;
}

.slick-slider {
	width: 100%;
	margin: 0;
	position: absolute !important;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.arrow {
	width: 112px;
	height: 112px;
	border-radius: 100px;
	background-color: #fff;
	position: absolute;
	margin-top: 185px;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	cursor: pointer;
}

.arrow i {
	color: #000;
	font-size: 50px;
	margin-top: 33px;
	pointer-events: none;
}

.arrow-left {
	margin-left: 20px;
}

.arrow-left i {
	margin-left: 35px;
}

.arrow-right {
	float: right;
	right: 20px;
}

.arrow-right i {
	margin-left: 42px;
}


.mhb-profile-picture.compat-object-fit {
    background-size: cover;
    background-position: center;
}
.mhb-profile-picture.compat-object-fit img {
    opacity: 0;
}





.mhb .playWraper{
    position: absolute;
	display: none;
    top: 0;
	height: 100%;
	width: 100%;
/*	opacity: 0.8;*/
	background-color: #121119;
	background-size: cover;
	z-index: 1;
}

.mhb .playButton{
    position: absolute;
	display: none;
	width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    z-index: 3;
}
.mhb .playButton object{
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}
.mhb .playClickable{
	position: absolute;
	display: none;
	cursor: pointer;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1001;
}

#soundController{
	position: absolute;
	display: block;
	right: 15px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	opacity: 0.6;
}

#soundController .soundWraper{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1001;
}

#soundController object{
	-webkit-filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
	pointer-events: none;
	height: 100%;
	width: 100%;
}





@media screen and (min-width: 800px) and (max-width: 1199px) {

	.mhb-container {
		width: 100%;
	}
	.mhb {
		width: 100%;
		height: 100%;
	}

	.mhb_video {
		width: 100%;
		height: auto;
	}

	.mhb_img {
		width: 100%;
		height: auto;
	}

	.logo img {
		height: 35px;
	}

	.mhb-profile-container {
		/*margin-top: 115px;*/
	}

	.mhb-profile {
		width: 405px;
		height: 160px;
	}

	.mhb-profile-picture{
		width: 150px;
		height: 150px;
	}

	.mhb-nickname {
		font-size: 30px !important;
		margin-top: 45px !important;
	}

	.mhb-profile-info p {
		margin-left: 20px;
	}

	.mhb-button {
		height: 50px;
		width: 340px;
		margin-top: 40px;
		font-size: 22px;
	}

	.stream-button{
	    height: 50px;
		width: 340px;
        bottom: 65px;
	}







	.slide-container {
		margin-top: 0 !important;
		top: 50%;
		transform: translateY(-50%);
		height: 320px;
	}

	.gallery-name {
		font-size: 20px;
	}

	.slick-slide {
		width: 426px !important;
	}

	.arrow {
		width: 73px;
		height: 73px;
		margin-top: 125px;
	}

	.arrow i {
		font-size: 35px;
		margin-top: 21px;
	}

	.arrow-left i {
		margin-left: 21px;
	}

	.arrow-right {
		margin-left: 705px;
	}

	.arrow-right i {
		margin-left: 28px;
	}

}





@media screen and (min-width: 600px) and (max-width: 799px) {

	.mhb-container {
		width: 100%;
	}
	.mhb {
		width: 100%;
		height: 100%;
	}

	.mhb_video {
		width: 100%;
		height: auto;
	}

	.mhb_img {
		width: 100%;
		height: auto;
	}

	.logo img {
		height: 28px;
	}

	.status {
		width: 67px;
	}

	.status p {
		padding: 2px 0;
	}

	.live-dot {
		width: 14px;
		height: 14px;
		margin-top: 6px;
	}

	.nickname {
		height: 50px;
	}

	.nickname p {
		font-size: 24px;
	}





	.mhb-profile-container {
		/*margin-top: 88px;*/
	}

	.mhb-profile {
		width: 270px;
		height: 107px;
	}

	.mhb-profile-picture {
		width: 101px;
		height: 101px;
		margin-top: 3px;
		margin-left: 3px;
	}

	.mhb-nickname {
		font-size: 20px !important;
		margin-top: 30px !important;
	}

	.mhb-profile-info p {
		margin-left: 15px;
		font-size: 14px;
	}

	.mhb-button {
		height: 35px;
		width: 230px;
		margin-top: 27px;
		font-size: 15px;
	}

	.stream-button{
	    height: 35px;
		width: 230px;
		font-size: 15px;
		bottom: 60px;
	}





	.slide-container {
		margin-top: 0 !important;
		top: 50%;
		transform: translateY(-50%);
		height: 240px;
	}

	.gallery-name {
		font-size: 18px;
	}

	.slick-slide {
		width: 320px !important;
	}

	.arrow {
		width: 56px;
		height: 56px;
		margin-top: 93px;
	}

	.arrow i {
		font-size: 26px;
		margin-top: 17px;
	}

	.arrow-left {
		margin-left: 10px;
	}

	.arrow-left i {
		margin-left: 17px;
	}

	.arrow-right {
		margin-left: 533px;
	}

	.arrow-right i {
		margin-left: 21px;
	}

	#soundController{
		height: 40px;
		width: 40px;
		right: 13px;
	}

}




@media screen and (min-width: 500px) and (max-width: 599px) {

	.mhb-container {
		width: 100%;
	}
	.mhb {
		width: 100%;
		height: 100%;
	}

	.mhb_video {
		width: 100%;
		height: auto;
	}

	.mhb_img {
		width: 100%;
		height: auto;
	}

	.logo img {
		height: 24px;
		margin: 15px 0 0 15px;
	}

	.logo-icons {
		left: 15px;
		top: 15px;
	}

	.icons {
		top: 15px;
		right: 15px;
	}

	.status {
		width: 52px;
		border-radius: 3px;
		margin-bottom: 5px;
	}

	.status p {
		padding: 2px 0;
		font-size: 14px;
	}

	.live-dot {
		width: 10px;
		height: 10px;
		margin-top: 6px;
		margin-left: 5px;
	}

	.live-status p {
		margin-left: 7px;
	}

	.nickname {
		height: 40px;
	}

	.nickname p {
		font-size: 22px;
	}






	.mhb-profile-container {
		/*margin-top: 79px;*/
	}

	.mhb-profile {
		width: 225px;
		height: 90px;
	}

	.mhb-profile-picture {
		width: 84px;
		height: 84px;
		margin-top: 3px;
		margin-left: 3px;
	}

	.mhb-nickname {
		font-size: 17px !important;
		margin-top: 23px !important;
	}

	.mhb-profile-info p {
		margin-left: 10px;
		font-size: 12px;
	}

	.mhb-button {
		height: 28px;
		width: 190px;
		margin-top: 22px;
		font-size: 13px;
	}

	.stream-button{
	    height: 28px;
		width: 190px;
		font-size: 13px;
		bottom: 48px;
	}





	.slide-container {
		margin-top: 0 !important;
		top: 50%;
		transform: translateY(-45%);
		height: 200px;
	}

	.gallery-name {
		font-size: 15px;
		margin: 15px 15px 0 15px;
		padding: 3px;
	}

	/*.no-logo {
		margin-left: 15px;
	}*/

	.slick-slide {
		width: 266px !important;
	}

	.arrow {
		width: 46px;
		height: 46px;
		margin-top: 77px;
	}

	.arrow i {
		font-size: 26px;
		margin-top: 12px;
	}

	.arrow-left {
		margin-left: 12px;
	}

	.arrow-left i {
		margin-left: 12px;
	}

	.arrow-right {
		right: 10px;
	}

	.arrow-right i {
		margin-left: 17px;
	}

	#soundController{
		height: 30px;
		width: 30px;
		right: 10px;
	}
}




@media screen and (min-width: 400px) and (max-width: 499px) {

	.mhb-container {
		width: 100%;
	}
	.mhb {
		width: 100%;
		height: 100%;
	}

	.mhb_video {
		width: 100%;
		height: auto;
	}

	.mhb_img {
		width: 100%;
		height: auto;
	}

	.logo img {
		height: 20px;
		margin: 11px 0 0 11px;
	}

	.logo-icons {
		left: 11px;
		top: 11px;
	}

	.icons {
		top: 11px;
		right: 11px;
	}

	.status {
		width: 42px;
		border-radius: 2px;
		margin-bottom: 3px;
	}

	.status p {
		padding: 2px 0;
		font-size: 12px;
	}

	.live-dot {
		width: 8px;
		height: 8px;
		margin-top: 6px;
		margin-left: 3px;
	}

	.live-status p {
		margin-left: 5px;
	}

	.nickname {
		height: 30px;
	}

	.nickname p {
		font-size: 18px;
	}





	.mhb-profile-container {
		/*margin-top: 55px;*/
	}

	.mhb-profile {
		width: 225px;
		height: 90px;
	}

	.mhb-profile-picture {
		width: 84px;
		height: 84px;
		margin-top: 3px;
		margin-left: 3px;
	}

	.mhb-nickname {
		font-size: 17px !important;
		margin-top: 23px !important;
	}

	.mhb-profile-info p {
		margin-left: 10px;
		font-size: 12px;
	}

	.mhb-button {
		height: 28px;
		width: 190px;
		margin-top: 22px;
		font-size: 13px;
	}

	.stream-button{
	    height: 28px;
		width: 190px;
		font-size: 13px;
		bottom: 35px;
	}




	.slide-container {
		margin-top: 0 !important;
		top: 50%;
		transform: translateY(-40%);
		height: 160px;
	}

	.gallery-name {
		font-size: 13px;
		margin: 11px 11px 0 11px;
		padding: 2px;
	}

	/*.no-logo {
		margin-left: 11px;
	}*/

	.slick-slide {
		width: 212px !important;
	}

	.arrow {
		width: 37px;
		height: 37px;
		margin-top: 62px;
	}

	.arrow i {
		font-size: 20px;
		margin-top: 10px;
	}

	.arrow-left {
		margin-left: 10px;
	}

	.arrow-left i {
		margin-left: 10px;
	}

	.arrow-right {
		right: 10px;
	}

	.arrow-right i {
		margin-left: 14px;
	}
	#soundController{
		height: 30px;
		width: 30px;
		right: 6px;
	}
}


@media screen and (min-width: 300px) and (max-width: 399px) {

	.mhb-container {
		width: 100%;
	}
	.mhb {
		width: 100%;
		height: 100%;
	}

	.mhb_video {
		width: 100%;
		height: auto;
	}

	.mhb_img {
		width: 100%;
		height: auto;
	}

	.logo img {
		height: 15px;
		margin: 10px 0 0 10px;
	}

	.logo-icons {
		left: 10px;
		top: 10px;
	}

	.icons {
		top: 10px;
		right: 10px;
	}

	.status {
		width: 42px;
		border-radius: 2px;
		margin-bottom: 2px;
	}

	.status p {
		padding: 2px 0;
		font-size: 12px;
	}

	.live-dot {
		width: 8px;
		height: 8px;
		margin-top: 6px;
		margin-left: 3px;
	}

	.live-status p {
		margin-left: 5px;
	}

	.nickname {
		height: 25px;
	}

	.nickname p {
		font-size: 14px;
	}





	.mhb-profile-container {
		/*margin-top: 42px;*/
	}

	.mhb-profile {
		width: 160px;
		height: 64px;
	}

	.mhb-profile-picture {
		width: 60px;
		height: 60px;
		margin-top: 2px;
		margin-left: 2px;
	}

	.mhb-nickname {
		font-size: 12px !important;
		margin-top: 15px !important;
	}

	.mhb-profile-info p {
		margin-left: 5px;
		font-size: 10px;
	}

	.mhb-button {
		height: 25px;
		width: 135px;
		margin-top: 16px;
		font-size: 11px;
	}

	.stream-button {
		height: 25px;
		width: 135px;
		font-size: 11px;
		bottom: 28px;
	}




	.slide-container {
		margin-top: 0 !important;
		top: 50%;
		transform: translateY(-40%);
		height: 120px;
	}

	.gallery-name {
		font-size: 11px;
		margin: 10px 10px 0 10px;
		padding: 2px;
	}

	/*.no-logo {
		margin-left: 10px;
	}*/

	.slick-slide {
		width: 160px !important;
	}

	.arrow {
		width: 28px;
		height: 28px;
		margin-top: 46px;
	}

	.arrow i {
		font-size: 15px;
		margin-top: 7px;
	}

	.arrow-left {
		margin-left: 10px;
	}

	.arrow-left i {
		margin-left: 7px;
	}

	.arrow-right {
		right: 10px;
	}

	.arrow-right i {
		margin-left: 10px;
	}
	#soundController {
		height: 30px;
		width: 30px;
		right: 6px;
	}
}

@media screen and (min-width: 250px) and (max-width: 339px) {
	#soundController {
		height: 30px;
		width: 30px;
		right: 6px;
	}
}
@media screen and (max-width: 249px) {
	#soundController {
		height: 25px;
		width: 25px;
		right: 5px;
	}
}


.blurFilter{
	filter: blur(10px);
    -webkit-filter: blur(5px);
}




.IIV::-webkit-media-controls-play-button,
.IIV::-webkit-media-controls-start-playback-button {
    opacity: 0;
    pointer-events: none;
    width: 5px;
}
