/*
	Shared CSS for styling all collection content
    */

/***
Slideshow Shared Styles
***/

/***  initial slideshow animation  ***/
@-webkit-keyframes custom-slideshow-init {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes custom-slideshow-init {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes custom-slideshow-init {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes custom-slideshow-init {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
/*** end animation ***/

.show-wrapper {
    position: relative;
    padding-top: 68px;
    z-index: 1;
    max-width: 1280px;
    margin: 0px auto;
    -webkit-animation: custom-slideshow-init 1.5s;
    -moz-animation: custom-slideshow-init 1.5s;
    -o-animation: custom-slideshow-init 1.5s;
    animation: custom-slideshow-init 1.5s;
}
.show-wrapper.full-width {
    max-width: 100%;
    width: 100%;
}


.custom_header_slideshow { position: relative; }
.custom_header_slideshow .slide img { 
    border: 5px solid #fff; 
    position: relative; 
}
.show-wrapper.full-width .custom_header_slideshow .slide img {
    border: none;
}

.custom_header_slideshow .slide:before {
    content: " ";
    height: 30%;
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 100%);
    /*background: -webkit-radial-gradient(top center, ellipse cover, rgba(255,255,255,0.0) 0%,rgba(0,0,0,0.5) 100%);*/
}


.show-wrapper.full-width .custom_header_slideshow .slide:before {
    background: none;
    height: 0px;
}

.custom_header_slideshow .slide .text { z-index: 2; }
.custom_header_slideshow .slide .playicon{
    display: block;
    width: 85px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 14px 15px;
    background-color: rgba(0,0,0,0.5);
    background-image: url("/includes/public/assets/images/play-arrow.png");
    background-position: 33px center;
    background-repeat: no-repeat;
    -webkit-transition: all 275ms ease-in-out;
    -moz-transition: all 275ms ease-in-out;
    -o-transition: all 275ms ease-in-out;
    transition: all 275ms ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.custom_header_slideshow a.shadow:hover .playicon{
    background-color: rgba(218,41,28, 0.95);
    border: solid 1px rgba(255, 255, 255, 0.41);
}



/* Iframe settings */
.show-wrapper.full-width .custom_header_slideshow .header-slider .header-slide{
    position: relative;
    height: 100%;
    width: auto;
}

.show-wrapper.full-width .custom_header_slideshow .header-slider .header-slide .img-wrapper{
    opacity: 1;
    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}

.show-wrapper.full-width .custom_header_slideshow iframe{
    position: absolute;
    width: 100%;
    height: 1080px;
    margin-top: -540px;
    left: 0;
    top: 50%;
    z-index: -1;
}


/*** Tablet and Desk***/ 
@media only screen and (min-width: 40.063em){ 
    .show-wrapper { padding-top: 0px; }
}
@media only screen and (max-width: 40.063em){ 
    .show-wrapper { padding-top: 20px; }
}
