div.cover {
    height: 750px;
    font-family: PFDinDisplayPro-LightItalic;
    position: relative;

    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;

    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

div.cover div.container {
    z-index: 2;
}

div.cover > div:first-child {
    position: relative;
}

div.cover .video-wrapper {
    width: 100%;
    height: inherit;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 980px) {
    div.cover .video-wrapper video {
        position: absolute;
        left: 0;
        bottom: 118px;
        width: 100%;
        z-index: 1;
    }
}

div.cover .video-wrapper video {
    position: absolute;
    left: 0;
    z-index: 1;
    top: 35%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}


/* FILTER */
div.filter {
    background-color: rgba(60, 56, 53, 0.5);
    padding: 20px 50px;
    color: #f19d16;
    margin: 0 auto;
    border-radius: 5px;
    font-family: PFDinDisplayPro-Thin;
}

.filter .filter-title {
    width: 20%;
    float: left;
    line-height: normal;
    color: #f19d16;
    font-size: 24px;
}

.filter .filter-form  {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0;
    font-family:'PFDinDisplayPro-Thin';
}

.filter .filter-form > * {
    font-size: 15px;
    /*padding: 0px 5px;*/
    border-radius: 5px;
    width: 140px;
    height: 30px;
    margin: 0;
}

.filter .filter-form .input-append input {
    float: left;
    width: 100px; /* 140 - 38 */
}

@media screen and (max-width: 980px) {
    .filter .filter-title {
        display: none;
    }

    .citations-wrapper {
        display: none;
    }

    .filter .filter-form > * {
        height: inherit;
        box-sizing: border-box;
    }
}

@media screen and (min-width: 980px) {
    #filterCheckOutMobile,
    #filterCheckInMobile {
        display: none;
    }
}

@media screen and (max-width: 736px) {
    .filter .filter-form {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;

        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 0 auto;
    }

    .filter .filter-form > select,
    .filter button {
        margin: 10px 0;
    }

    .filter .filter-title {
        width: 100%;
        text-align: center;
    }
}

.header-img {
    background: url('../../img/parisviews4.jpg') no-repeat center top;
    height:795px;
    margin: auto;
    margin-bottom:30px;
    overflow: hidden;
}

/* LAST MINUTE */
.last-minute-wrapper {
    position: absolute;
    top: -15px;
    right: 50px;
    z-index: 9;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
}

.last-minute-wrapper:hover {
    -webkit-transition: top 0.5s; /* Safari */
    transition: top 0.5s;
    top: 0px;
}

.last-minute img {
    height: 250px;
}

.encart-wrapper {
    border-radius: 5px;
    position: absolute;
    top: 50px;
    left: 40px;
    z-index: 9;
    background-color: rgba(255,255,255,0.6);
    width: 400px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    color: #444444;
    font-family: 'PFDinDisplayPro-Light';
    font-weight: bold;
}

.right-encart-wrapper {
    border-radius: 5px;
    position: absolute;
    top: 50px;
    right: 40px;
    z-index: 9;
    background-color: rgba(255,255,255,0.6);
    /* width: 400px; */
    padding: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    color: #444444;
    font-family: 'PFDinDisplayPro-Light';
    font-weight: bold;
}

.right-encart-wrapper img {
    height:180px;
}