/*
phongtn - STB slide show background
*/
/* @import url(http://fonts.googleapis.com/css?family=PT+Sans); */

html, body { 
	width: 100%; 
	height: 100%; 
	margin: 0; 
	padding: 0; 
	background-color: #333333;
	font-family: sans-serif;
}

#global { 
	width: 100%; 
	height: 100%; 
	position: relative; 
	text-align: center;
}

#vanilla-slideshow .vanilla-slide { 
	width: 100%; 
	height: 100%; 
	background-size: cover; 
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute; 
	top: 0; 
	left: 0; 
	opacity: 0;
}

#vanilla-slideshow .vanilla-slide.vanilla-active { 
    opacity: 1;
}

#vanilla-slideshow .vanilla-slide img {
  min-height: 100%;
  min-width: 360px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) { 
  #vanilla-slideshow .vanilla-slide img {
/*    left: 50%;
    margin-left: -512px; */
  }
}

/* Arrows */

#vanilla-slideshow-previous {
	position: absolute;
	left: 10px;
	top: 40%;
	width: 48px;
	height: 50px;
	background-position: 0 100%;
	cursor: pointer; 
	opacity: 0.7;
	z-index: 5; 
	display: none;
}

#vanilla-slideshow-next {
	position: absolute;
	right: 10px;
	top: 40%;
	width: 48px;
	height: 50px;
	background-position: 100% 100%;
	cursor: pointer; 	
	opacity: 0.7;
	z-index: 5; 
	display: none;
}

#vanilla-slideshow-previous:hover, #vanilla-slideshow-next:hover {
	opacity: 1;
}

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 5;
	position: absolute;
    bottom: 50px;
    left: calc(50% - 40px);
}

.vanilla-indicators {
	box-shadow: 0 0 10px #333333;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	float: left;
	margin-right: 3px;
	cursor: pointer;
}

.vanilla-indicators.vanilla-active {
	background-color: #ffffff;
}

/*16.04.2018 -start*/
.content_stb {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    /* margin: 250px auto; */
    background: rgba(22,22,22, 0.6);
    width: 100%;
    /* max-width: 946px; */
    /* border-radius: 5px; */
    /* padding-bottom: 5px; */
    /* padding-top: 15px; */
    position: absolute;
    bottom: 0px;
    display: inline-block;
    left: 0% !important;
    /* overflow-x: hidden; */
    display: none;    
}


p.stb2 {
    /* width: 90%; */
    max-width: 650px;
    /* text-align: left; */
    margin: 0 auto;
    /* padding-bottom: 32px; */
    padding: 15px;
    display: block;
    line-height: 20px;
}


/*16.04.2018 -end*/