#philips-hue-box {
    background-color: rgba(0,0,0,.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
#philips-hue-overlay, #philips-hue-box {
    display: none;
}
#philips-hue-overlay {
    cursor: pointer;
}
#philips-hue-close {
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 30px;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
#philips-hue-close > p:hover {
    text-decoration: underline;
}
#philips-hue-banner-wrap {
    overflow: hidden;
    clear: both;
    padding-top: 20px;
}
#philips-hue-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 110px;
    background-color: #f3f3f3;
    border: 2px solid rgba(0,0,0,.05);
}
#philips-hue-banner a > img {
    position: absolute;
    top: 0;
    right: 0;
    object-fit: none;
    height: 100%;
}
#philips-hue-banner a {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}


#philips-hue-video {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#philips-hue-video iframe {
    width: 50%;
}

#philips-hue-video-play {
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 30px 0 18px;
    border: 1px solid rgba(0,0,0,.05);
    margin: 0 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

#philips-hue-video-play > span {
    font-size: 95%;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Roboto';
}

#philips-hue-video-play > .background-overlay {
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: rgba(0,0,0,.05);
    border-radius: 50px;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0); 
    left: 91.5px;
    top: 11.5px;
}

#philips-hue-video-play:hover > .background-overlay {
    transform: scale(100);
    -moz-transform: scale(100);
    -webkit-transform: scale(100);
    -o-transform: scale(100);
    -ms-transform: scale(100); 
}

#philips-hue-video-play:hover > span {
    color: #a80000;
    text-decoration: underline;
}


#philips-hue-video-play > img {
    filter: brightness(110%);
    -moz-filter: brightness(110%);
    -webkit-filter: brightness(110%);
    -o-filter: brightness(110%);
    -ms-filter: brightness(110%);
    font-family: 'Roboto';
}

#philips-hue-video-play:hover > img {
    filter: brightness(100%);
    -moz-filter: brightness(100%);
    -webkit-filter: brightness(100%);
    -o-filter: brightness(100%);
    -ms-filter: brightness(100%);
    transform: scale(0.95);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);   
}

.anim {
    transition: 0.3s all;
    -moz-filter: 0.3s all;
    -webkit-filter: 0.3s all;
    -o-filter: 0.3s all;
    -ms-filter: 0.3s all;  
}

.anim-slow {
    transition: 0.95s all;
    -moz-filter: 0.95s all;
    -webkit-filter: 0.95s all;
    -o-filter: 0.95s all;
    -ms-filter: 0.95s all;  
}

