/*-----------------------
  General 
-----------------------*/
/* Define status bar size */
/* Bottom settings sections */
/* Define general spaces */
/*@media screen and (min-width: 576px) { 
	$screeny-padding: 5px;
}
@media screen and (min-width: 768px) { 
	$screeny-padding: 10px;
}
@media screen and (min-width: 992px) { 
	$screeny-padding: 15px;
}
@media screen and (min-width: 1200px) { 
	$screeny-padding: 20px;
}*/
/* Define global radius */
/* Define size of arrows */
/* Define general transition time */
/* Define general border size */
/* Define background image blur */
/*--------------------
   CHANNEL CARDS 
--------------------*/
.channel-card, .channel-card .card {
  padding: 0;
  max-width: 500px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: none;
  background: transparent;
}

.channel-card .card {
  padding: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.channel-card .card:hover {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.channel-card:hover,
.channel-card .card-header:hover,
.channel-card .card-body:hover,
.channel-card .card-title:hover,
.channel-card .card-subtitle:hover {
  text-decoration: none !important;
}

.channel-card .card-header {
  border: 0;
  padding: 0;
  background-color: #191a1b;
  border-radius: 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.channel-card .card:hover .card-header {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 12px 30px 0 rgba(0, 0, 0, 0.4);
}

.channel-card .card-body {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 1rem;
}

/* Video Title 
---------------*/
.channel-card .card-title {
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: transparent;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}

.channel-card .card:hover .card-title {
  color: #b200e3;
  text-decoration: none !important;
}

/* Video subtitle 
-----------------*/
.channel-card .card-subtitle {
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}

/* Thumbnail 
-------------*/
.channel-card .thumbnail-wrapper {
  border: 0;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 10px;
  background-image: linear-gradient(to right, #303133 0%, #191a1b 100%);
  display: block;
}

.channel-card .thumbnail {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  z-index: 100 !important;
  border-radius: 0 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  z-index: 100;
}

.channel-card .card:hover .thumbnail {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* Thumbnail overlay 
---------------------*/
.channel-card .thumbnail-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 0 10px;
  z-index: 101;
}

.channel-card .card:hover .thumbnail-overlay {
  background-image: linear-gradient(to right, #007de3 0%, #b200e3 100%);
  opacity: .6;
}

/* Overlay icons 
----------------*/
.channel-card .thumbnail-overlay .la {
  z-index: 102;
  position: relative;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.channel-card .card:hover .thumbnail-overlay .la {
  opacity: 1;
}

.channel-card .new-channel .thumbnail-overlay .la {
  z-index: 102;
  position: relative;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
