/*
Theme Name: Live Iframe
Author: PaperPlane.co
Author URI: http://paperplane.co/
Version: 1.0
*/



/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
}	
.viewCont {
    width: 100%;
    height: 100%;
    position: relative;
}
#containerIframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.menuIframe{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: black;
	padding: 15px 0;
/*	overflow: hidden;*/
	box-sizing: border-box;
}
.menuItem{
	display: block;
	position: relative;
    height: 50px;
	text-align: center;
	border-right: solid 1px rgba(255,255,255,0.5);
	font-family: 'Roboto-Medium';
	text-transform: uppercase;
	color: #fff;
}
.menuItem:hover .contImgPreview{
    height: 130px;
    width: 140px;
    position: absolute;
    background-color: #000;
    bottom: 90px;
    left: 50%;
    margin-left: -70px;
    padding: 5px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.menuItem:hover .contImgPreview:before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50px;
    width: 0;
    height: 0;
    border-width: 25px 25px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.imgPreview{
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bgActiveSelect{
	display: none;
}
.menuItem.activeMenu .bgActiveSelect{
	display: block;
	position: absolute;
	width: 100%;
	height: 80px;
	top: -15px;
	left: 0;
	background-color: #161616;
}
.outer {
	display: table;
    position: absolute;
    height: 100%;
	width: 100%;
}
.middle {
	display: table-cell;
    vertical-align: middle;
}

.slick-next.slick-arrow{
	height: 30px;
	width: 30px;
	background-image: url('img/arrow-2.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	right: 10px;
	z-index: 10;
}
.slick-prev.slick-arrow{
	height: 30px;
	width: 30px;
	background-image: url('img/arrow-1.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	left: 10px;	
	z-index: 10;
}
.slick-prev.slick-arrow.slick-disabled,
.slick-next.slick-arrow.slick-disabled{
	display: none!important;
}

.slick-next:before,
.slick-prev:before{
	content: "";
}
.slick-list{
	overflow: visible;
}



