/*
@name:		Border, Box, and Background
@version:	1
@updated:	April 11, 2016
@requires:	A LESS compiler, file compiles to the
			main.min.css in /hut/{theme}/{version}/main.min.css
@comments:	File defines the shared mixins for border, box, and background styles
@source:	/themes/hut/shared/less/border-box-background.less
@map:
	Variables
	1. Borders
	1.1. Border Radius
	1.2. Border Box
	2. Background
	2.1. Box Shadow
*/
#video-gallery-widget {
  margin-bottom: 20px;
}
#video-gallery-widget .video-gallery-left {
  margin-bottom: 15px;
  cursor: pointer;
}
#video-gallery-widget .video-gallery-left:hover img {
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.3);
}
#video-gallery-widget .video-gallery-left img {
  width: 100%;
}
#video-gallery-widget .video-gallery-left i.icon-sl-play {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  font-size: 40px;
}
#video-gallery-widget .video-gallery-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#video-gallery-widget .video-gallery-player iframe,
#video-gallery-widget .video-gallery-player img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video-gallery-widget h2 {
  margin-top: 0;
  font-size: 22px;
}
#video-gallery-widget .video-gallery-subhead {
  font-size: 20px;
  font-weight: bold;
}
#video-gallery-widget .video-gallery-body {
  margin-bottom: 15px;
}
#video-gallery-widget .video-gallery-read-more {
  font-size: 18px;
}
#video-gallery-widget .video-gallery-social {
  font-size: 22px;
  color: #999;
}
#video-gallery-widget .video-gallery-social li {
  padding: 0;
}
#video-gallery-widget .video-gallery-social li a {
  color: #fff;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  display: block;
  font-size: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
#video-gallery-widget .video-gallery-social li a:hover {
  opacity: 0.5;
}
#video-gallery-widget .video-gallery-social li a.share-facebook {
  background: #3b5998;
}
#video-gallery-widget .video-gallery-social li a.share-linkedin {
  background: #007bb6;
}
#video-gallery-widget .video-gallery-social li a.share-twitter {
  background: #00aced;
}
#video-gallery-widget .video-gallery-overlay {
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 0;
  z-index: 1;
}
#video-gallery-widget .more-gallery-videos {
  margin-top: 20px;
}
#video-gallery-widget .more-gallery-videos h2 {
  font-size: 22px;
  margin-top: 0;
}
#video-gallery-widget .video-gallery-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
}
#video-gallery-widget .video-gallery-thumb img {
  width: 100%;
}
#video-gallery-widget .video-gallery-thumb-title {
  position: absolute;
  text-align: center;
  color: #fff;
  margin: auto;
  z-index: 2;
  left: 30px;
  right: 30px;
  font-weight: bold;
  /* mouseout transition (slow) */
  transition: all 1s ease-in-out;
  text-shadow: 0 0 3px #000;
  opacity: 1;
}
#video-gallery-widget .video-gallery-thumb i {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  color: #fff;
  margin: auto;
  font-size: 30px;
  z-index: 2;
  width: 30px;
  height: 30px;
  opacity: 0;
  /* mouseout transition (fast) */
  transition: all 0.2s ease-in-out;
}
#video-gallery-widget .video-gallery-thumb:hover i {
  top: 40%;
  opacity: 1;
  /* mouseover transition () */
  transition: all 0.5s ease-in-out;
}
#video-gallery-widget .video-gallery-thumb:hover .video-gallery-thumb-title {
  top: 400px !important;
  opacity: 0;
  /* mouseover transition () */
  transition: all 0.5s ease-in-out;
}
#video-gallery-widget .video-gallery-mobile-info {
  font-size: 13px;
}
/* VIDEO DETAIL */
#video-detail .main-video-display {
  margin-bottom: 50px;
}
#video-detail .main-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#video-detail .main-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video-detail .main-video-display iframe {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#video-detail h1 {
  font-size: 24px;
  margin-top: 0;
}
#video-detail h2 {
  font-size: 12px;
  margin-top: 0;
  font-weight: bold;
}
#video-detail .more-videos {
  font-size: 12px;
  font-weight: bold;
}
#video-detail .video-sidebar-header {
  margin-bottom: 15px;
}
#video-detail .video-sidebar {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
#video-detail .video-sidebar-thumb img {
  width: 100%;
}
#video-detail .video-sidebar-title a {
  color: #333;
}
#video-detail .play-video {
  font-size: 12px;
  font-weight: bold;
}
