/* Consideration Star */
.star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .9em;
    margin-right: .9em;
    margin-bottom: 1.2em;
    border-right:  .3em solid transparent;
    border-bottom: .7em  solid #cba135;
    border-left:   .3em solid transparent;

    /* Controlls the size of the stars. */
    font-size: 24px;
}
    .star:before, .star:after {
        content: '';  
        display: block;
        width: 0;
        height: 0;  
        position: absolute;
        top: .6em;
        left: -1em;
        border-right:  1em solid transparent;
        border-bottom: .7em  solid #cba135;
        border-left:   1em solid transparent;
        transform: rotate(-35deg);
    }

    .star:after { transform: rotate(35deg); }

/* Video Wrapper */
.videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; height: 0; }
.videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/*! ________________
*   ___  ____/_  __ \
*   __  /_   _  / / /
*   _  __/   / /_/ /
*   /_/      \____/
*   Focus Overlay
*
*  Version: 0.9.5
*  Author: Maurice Mahan
*  License: MIT
*  Repo: https://github.com/MauriceMahan/FocusOverlay
*/#focus-overlay{display:none;position:relative;border-radius:2px;-webkit-box-shadow:0 0 3px 2px #78aeda;box-shadow:0 0 3px 2px #78aeda;-webkit-transition:all .2s cubic-bezier(0,1,0,1);transition:all .2s cubic-bezier(0,1,0,1)}#focus-overlay::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;-webkit-box-shadow:0 0 2px 1px #008cff,0 0 2px #008cff inset;box-shadow:0 0 2px 1px #008cff,0 0 2px #008cff inset;-webkit-transition:all .1s ease-out;transition:all .1s ease-out}#focus-overlay.focus-overlay-active{display:block}#focus-overlay.focus-overlay-animating::after{opacity:1}.focus-overlay-target{outline:0}