

/* ------------------------- VIDEO IMAGE ------------------------- */
#frontImage {
	position:fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 99999;
	background-size: cover;
	background-position: center center;
}

#homeVideo {
	position:relative;
	width: 100%;
	height: auto;
	margin-top: 100px;
	left: 0px;
	z-index: 999;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 100%;
  
  .hi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
    color: #fff;
    
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    
    span {
      color: #ff0;
      cursor: pointer;
      text-decoration: underline;
    }
    
    em {
      font-style: normal;
      
      &.hidden {
        display: none;
      }
    }
  }
}

.tv {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  overflow: hidden;
  
  .screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

    margin: auto;

    opacity: 0;
    transition: opacity .5s;

    &.active {
      opacity: 1;
    }
  }
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#ytStop {
	position:absolute;
	top: 0px;
	right: 0px;
	font-size: 30px;
	color: #fff;
	text-shadow: 2px 2px 2px #555;
	cursor: pointer;
	padding: 0 10px 5px;
	line-height: 1;
	z-index: 999;
}

#ytStop img {
	width: 10px;
}

@media (min-width: 768px) {
	#ytStop {
		padding: 10px;
	}
	
	#ytStop img {
		width: 15px;
	}
}

@media (min-width: 980px) {
	#ytStop {
		padding: 15px;
	}
	
	#ytStop img {
		width: 20px;
	}
}












