/************************************/
/* Cleaning up interactive elements */
/************************************/
.title-link {
    color: black;
}
.title-link:hover {
    border: none;
}
.title-link:focus {
    border: none;
}
button {
    outline: none;
}
/********************/
/* Go to top button */
/********************/
.go-top {
    background: none;
    margin: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    display: none;
    text-decoration: none;
    color: white;
    background-color: #9fc43e;
}
/**************/
/* Thumbnails */
/**************/
.video-list {
    margin: 0.5em auto 1.5em auto;
}
.fi-play-circle {
    text-shadow: 0px 0px 15px white;
}
.poster-container {
    cursor: pointer;
    float: left;
    position: relative;
    width: 100%;
    min-width: 295px;
}
.poster-container img {
    width: 100%;
}
.poster-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    min-height: 100%;
    background-color: transparent;
    text-decoration: none;
    color: black;
    opacity: 0;
    filter: alpha(opacity=0); /* IE transparency */
}
.poster-overlay:hover {
    background-color: transparent;
    opacity: 0.6;
    filter: alpha(opacity=60); /* IE transparency */
}
p.poster-overlay-content {
    text-align: center;
    font-size: 6rem;
    font-weight: 300;
    line-height: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: auto;
}
.content-length-hint {
    position: absolute;
    bottom: 0;
    right: 15px;
    background-color: black;
    color: white;
    padding: 5px 7px;
    opacity: 0.80;
    filter: alpha(opacity=80);
}
/*****************/
/* Slider Styles */
/*****************/
.slick-prev,
.slick-next {
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 30%;
    z-index: 99;
}
.slick-prev:focus,
.slick-prev:hover,
.slick-next:focus,
.slick-next:hover {
    background-color: rgba(0,0,0,0.5);
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-slide {
    margin: 0px;
    padding: 5px;
    max-width: 300px;
}
.slide a {
    color: black;
}
.slide a:hover {
    border-bottom: none;
}
/*****************/
/* Media Queries */
/*****************/
/* Small Screens */
@media only screen and (max-width: 40em) {
    .poster-overlay {
        opacity: 0.6;
        filter: alpha(opacity=60);
    }
}
/* Medium Screens */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
    .poster-overlay {
        opacity: 0.6;
        filter: alpha(opacity=60);
    }
}
