.trailer__button {
    display: inline-block;
    background-color: #f8cb36;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    width: auto;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 25px;
    transition: all .15s ease-in-out;
}

.trailer__button i.icon {
    display: inline-block;
    padding-right: 20px;
    border-right: 1px solid rgba(0,0,0, .25);
    margin-right: 10px;
}

.trailer__button:hover {
    color: #000;
    box-shadow: 5px 5px 0px #000;
}

.trailer__player {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color:rgba(0,0,0, .35);
    z-index: 150;
    cursor: pointer;
}

.trailer__player .player {
    position: fixed;
    max-width: 100%;
    min-height: 50%;
    z-index: 50;
    top: 50%;
    left: 50%;
    width: 75%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 50px #000;
}

.trailer__player iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.trailer__player .player button {
    position: absolute;
    top: -30px;
    right: -30px;
    color: #FFF;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
    background-color: rgb(109, 19, 19);
}

.trailer__player .player button:hover {
    background-color: rgb(235, 6, 6);
}