.inner-container-live {
	background-color: #fbe1ae;
}

.left-section {
	position: relative;
	display: flex;
	width: 100%;
	box-sizing: border-box;
	padding: 60px 100px;
	flex-direction: column;
}

.video-section {
	position: relative;
	display: flex;
}

.video-section .video-holder {
	position: relative;
	display: flex;
	width: 100%;
}

.video-section .video-holder video {
	max-height: 700px;
	width: 100%;
	object-fit: cover;
}

.video-section .video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 15px 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.video-section .seekbar_wrap {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	height: 55px;
	display: flex;
	align-items: center;
	margin-left: 10px;
	padding: 0 10px;
}

.video-section .seekbar {
	width: 100%;
	display: flex;
	height: 5px;
	background-color: rosybrown;
	margin-left: 10px;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.video-section .seekbar:hover {
	height: 10px;
}

.video-section .progress {
	height: 100%;
	display: flex;
	background: red;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.video-section .buffered {
	height: 100%;
	display: flex;
	background: darkgray;
	position: absolute;
	top: 0;
	left: 0;
}

.video-section .dragger {
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: peachpuff;
	left: 0;
	z-index: 2;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

.video-section .seekbar:hover .dragger {
	width: 15px;
	height: 15px;
}

.video-section .play-btn-live {
	width: 70px;
	height: 55px;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	outline: none;
	background-size: 100%;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

.video-section .play-icon {
	background-image: url("../images/play-icon.png");
}

.video-section .pause-icon {
	background-image: url("../images/pause-icon.png");
}

.video-section .stall-view {
	max-width: 500px;
	display: flex;
	list-style: none;
	position: relative;
	right: 0;
	top: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	flex-direction: column;
	background-color: #e1bd69;
	height: 900px;
}

.video-section .stall-view h3 {
	padding: 20px 0 20px 30px;
	box-sizing: border-box;
	background-color: #a27e32;
	color: #fff;
	margin: 0;
}

.video-section .stall-view .stall-cams {
	margin: 20px;
	height: 100%;
	overflow: auto;
}

.video-section .stall-view .stall-cams .cam-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
}

.video-section .stall-view .stall-cams .cam-row:last-child {
	border: none;
}

.video-section .stall-view .stall-cams .cam-row img {
	max-width: auto;
	width: 100%;
	height: auto;
}

.video-section .stall-view .stall-cams .cams-re {
	flex-basis: 30%;
	color: #fff;
}

.video-section .stall-view .stall-cams .cams-re a {
	color: #fff;
	text-decoration: none;
}

.video-section .stall-view .stall-cams .cams-re .cam-title {
	margin-bottom: 20px;
	font-size: 13px;
	margin-top: 5px;
	color: #000;
}

.video-section .stall-view .stall-cams .cams-re .cam-title .price {
	display: block;
	font-weight: bold;
}

.video-section .mCSB_scrollTools .mCSB_draggerRail {
	background-color: rgba(255, 255, 255, 0.4);
}

.video-section .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff;
	border-radius: 0;
	width: 10px;
}

.video-call-badge {
	margin-top: 25px;
}

#videos {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
}

#subscriber {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 10;
}

#publisher {
	position: relative;
	width: 100px;
	height: 130px;
	top: 30px;
	
	bottom: 0px;
	left: 15px;
	z-index: 100;
	border-radius: 3px;
}

#buttonholder {
	position: relative;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	bottom: 2px;
	left: 20px;
	z-index: 200;
}

.video-box-inner1 {
	display: table-row;
}

.video-box-inner-new {
	text-align: end !important;
}

.modal-inner-live {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.8);
	/* Black w/ opacity */
}

/* Modal Content */
.modal-content-inner {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	max-width: 500px;
}

/* The Close Button */
.modal-content-inner .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	text-decoration: none;
}

.modal-content-inner .close:hover,
.modal-content-inner .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#videos {
	position: relative;
	width: 100%;
	height: 100%;
	float: none;
	max-height: 372px;
}

#subscriber {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 484px;
	z-index: 10;
}

#publisher {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    border-radius: 3px;
}

#buttonholder {
	position: absolute;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	bottom: 2px;
	left: 20px;
	z-index: 200;
}

.video-box-inner {
	display: block;
	vertical-align: bottom;
	text-align: center;
	margin-top: 0px;
}

.video-btn1 {
	width: 80px;
	padding: 10px 15px;
	font: 400 14px/18px "Roboto", sans-serif;
	color: #ffffff;
	border-radius: 0;
	border: none;
	background: none;
}

.video-btn2 {
	width: 80px;
	padding: 10px 15px;
	font: 400 14px/18px "Roboto", sans-serif;
	color: #ffffff;
	border-radius: 0;
	border: none;
	background: none;
}

.video-btn1:before {
	content: url(../images/switch-camera.png);
	display: inline-block;
	float: left;
}

.video-btn2:before {
	content: url(../images/save-video.png);
	display: inline-block;
	float: left;
}

.video-box-inner1 {
	display: table-row;
}

.video-box-inner-new {
	text-align: end !important;
}

#video_p {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background-color: #000;
	position: relative;
	z-index: 99;
	color: #ffffff;
}
#video_p p a {
	text-decoration: none;
	color: #ed1c24;
}

.img-inner-live {
	margin: 15px 0;
	text-align: center;
	min-height: 450px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.bg-live {
	background-color: #e9bb59;
}
.left-section-new {
	position: relative;
	display: flex;
	display: -ms-flexbox;
	width: 100%;
	box-sizing: border-box;
	padding: 40px 126px;
	-ms-flex-direction: column;
	flex-direction: column;
}
.height-live-2 {
	height: 1169px !important;
}

.video-section-main {
	position: relative;
}

.video-section-main .video-holder {
	position: relative;
	display: inline-block;
	width: 100%;
}

.video-section-main .video-holder video {
	max-height: 800px;
	height: 100%;
	width: 100%;
	object-fit: cover;
	background-color: #000;
}

.video-section-main .video-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	max-width: 60%;
	transform: translateX(-50%);
}

.video-section-main .seekbar_wrap {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	height: 55px;
	display: flex;
	align-items: center;
	margin-left: 10px;
	padding: 0 10px;
}

.video-section-main .seekbar {
	width: 100%;
	display: flex;
	height: 5px;
	background-color: rosybrown;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.video-section-main .seekbar:hover {
	height: 10px;
}

.video-section-main .progress {
	height: 100%;
	display: flex;
	background: red;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.video-section-main .buffered {
	height: 100%;
	display: flex;
	background: darkgray;
	position: absolute;
	top: 0;
	left: 0;
}

.video-section-main .dragger {
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: peachpuff;
	left: 0;
	z-index: 2;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

.video-section-main .seekbar:hover .dragger {
	width: 15px;
	height: 15px;
}

.video-section-main .play-btn-main {
	width: 70px;
	height: 55px;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	outline: none;
	background-size: 100%;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

.video-section-main .play-icon {
	background-image: url("../images/play-icon.png");
}

.video-section-main .pause-icon {
	background-image: url("../images/pause-icon.png");
}

.video-section-main .video-chapters {
	width: 100%;
	
	padding: 20px;
	
	box-sizing: border-box;
	
	display: inline-block;
	
	list-style: none;
	
	margin: 0;
	
	position: relative;
	
	overflow: auto;
	
	height: 390px;
	
	background-image: url("../images/active.png");
	background-repeat: no-repeat;
	background-position: 0% 56%;
}

.video-section-main .video-chapters li {
	width: 100%;
	
	float: left;
	
	color: #fff;
}

.video-section-main .video-chapters li a {
	color: inherit;
	
	text-decoration: none;
	
	padding: 10px 15px;
	
	float: left;
	
	width: 100%;
	
	box-sizing: border-box;
}

.video-section-main .video-chapters li.active a {
	background-color: green;
	
	color: #fff;
}

.video-section-main .stall-view {
	width: 350px;
	
	display: inline-block;
	
	background-color: rgba(0, 0, 0, 0.7);
	
	list-style: none;
	
	position: absolute;
	
	right: 20px;
	
	top: 40px;
	
	margin: 0 0 0px 0;
	
	padding: 0 0 0px 0;
	
	height: 400px;
	
	overflow: hidden;
}

.video-section-main .stall-view .stall-cams {
	margin: 20px;
}

.video-section-main .mCSB_scrollTools .mCSB_draggerRail {
	background-color: rgba(255, 255, 255, 0.4);
}

.video-section-main .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff;
	
	border-radius: 0;
	
	width: 10px;
}

.video-section-main .video-call-badge {
	position: absolute;
	
	bottom: 30px;
	
	right: 380px;
}
.img-inner-live h3 {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 0;
	color: #000000;
	text-transform: uppercase;
}
.img-inner-live h3 a {
	color: #000000;
	text-decoration: none;
}
.img-inner-live p {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 15px;
	color: #000000;
	text-transform: uppercase;
}
#myBtn {
	text-decoration: none;
}
#myBtn h3 {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 0;
	color: #000000;
	text-transform: uppercase;
}
#myBtn p {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 15px;
	color: #000000;
	text-transform: uppercase;
}
#myBtn img {
	margin-top: 10px;
	margin-bottom: 10px;
}

@media (max-width: 1460px) {
}
@media (max-width: 1366px) {
	.left-section-new {
		padding: 40px 60px;
	}
	
	.left-section {
		padding: 60px 60px;
	}
	.video-section .stall-view {
		height: 670px;
	}
}

@media (max-width: 1200px) {
	.video-section-main .stall-view {
		width: 250px;
		
		height: 290px;
	}
	.left-section-new {
		padding: 40px 20px;
	}
	.img-inner-live h3 {
		font-size: 20px;
		line-height: 24px;
	}
	
	.img-inner-live p {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 10px;
	}
	#myBtn h3 {
		font-size: 20px;
		line-height: 24px;
	}
	#myBtn p {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 10px;
	}
	
	.video-section-main .video-chapters {
		height: 280px;
		background-image: url("../images/active992.png");
		background-repeat: no-repeat;
		background-position: 19% 63%;
	}
}

@media (max-width: 992px) {
	.video-section .stall-view {
		height: 670px;
		max-width: 100%;
	}
	.left-section-new {
		padding: 40px 40px;
	}
	.height-live-2 {
		height: 670px !important;
	}
	.video-section-main .video-chapters li a {
		padding: 5px 10px;
		
		font-size: 12px;
	}
	
	.video-section-main .stall-view {
		width: 210px;
		
		right: 10px;
		
		top: 10px;
		
		height: 240px;
	}
	
	.video-section-main .video-chapters {
		height: 230px;
		background-image: url("../images/active768.png");
		background-repeat: no-repeat;
		background-position: 19% 65%;
	}
}

@media (max-width: 768px) {
	.video-section-main .video-controls {
		bottom: 10px;
		
		left: 50%;
		
		width: 100%;
		
		padding: 10px 15px;
	}
	
	.video-section-main .stall-view {
		width: 180px;
		
		height: 220px;
	}
	
	.video-section-main .video-chapters {
		height: 210px;
		background-image: url("../images/active576.png");
		background-repeat: no-repeat;
		background-position: 19% 57%;
	}
}

@media (max-width: 576px) {
	.left-section {
		padding: 30px 30px;
	}
	.left-section-new {
		padding: 40px 0px;
	}
	.img-inner-live {
		min-height: 300px;
		padding: 10px;
	}
	.video-section .video-controls {
		padding: 10px 10px;
	}
	.video-section .stall-view {
		max-width: 100%;
	}
	.height-live-2 {
		height: auto !important;
	}
	.modal-inner-live {
		position: fixed;
		z-index: 1;
		padding-top: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	.modal-content-inner {
		max-width: 100%;
		height: 100%;
		position: relative;
	}
	#videos {
		position: relative;
		width: 100%;
		height: 95%;
		display: table;
	}
	#subscriber {
		width: 100%;
		height: 100%;
	}
	#publisher {
		top: 70%;
	}
	
	.video-section-main {
		background-color: #000;
	}
	
	.video-section-main .stall-view {
		width: 100%;
		position: relative;
		right: 0px;
		top: 0;
		height: 220px;
	}
	
	.video-section-main .video-controls {
		max-width: 85%;
	}
	
	.video-section-main .video-chapters {
		height: 210px;
		background-image: url("../images/activemobile.png");
		background-repeat: no-repeat;
		background-position: 0% 57%;
	}
}

@media (max-width: 420px) {
	.left-section {
		padding: 30px 20px;
	}
}
