/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.5.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2016, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

@media all {
    .featherlight {
        display: none;
        /* dimensions: spanning the background from edge to edge */
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647;
        /* z-index needs to be >= elements on the site. */
        /* position: centering content */
        text-align: center;
        /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
        white-space: nowrap;
        /* styling */
        cursor: pointer;
        background: #333;
        /* IE8 "hack" for nested featherlights */
        background: rgba(0, 0, 0, 0);
    }
    /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
    .featherlight:last-of-type {
        background: rgba(255, 255, 255, 0.3);
    }
    .featherlight:before {
        /* position: trick to center content vertically */
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em;
    }
}

.featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    background: #fff;
    cursor: auto;
    white-space: normal;
    width: 800px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
}


/* contains the content */

.featherlight .featherlight-inner {
    /* make sure its visible */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.featherlight .featherlight-inner .leftarea {
    text-align: center;
    padding: 0;
    width: 200px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.featherlight .featherlight-inner .leftarea:before {
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 1);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(238, 238, 238, 1)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=1);
}

.featherlight .featherlight-inner .leftarea img {
    max-width: 150px;
    position: relative;
    z-index: 1;
}

.featherlight .featherlight-inner .rightarea {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    position: relative;
}

.featherlight .featherlight-inner .rightarea h2 {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.featherlight .featherlight-inner .rightarea h2 span {
    font-size: 1.3rem;
    letter-spacing: 0px;
    position: relative;
}

.featherlight .featherlight-inner .rightarea h2 span:before {
    content: '-';
    margin-right: 4px;
}

.featherlight .featherlight-inner .rightarea p {
    margin-bottom: 15px;
}

.featherlight .featherlight-inner .rightarea .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.featherlight .featherlight-inner .rightarea .header .year {}

.featherlight .featherlight-inner .rightarea .header span,
.featherlight .featherlight-inner .rightarea .header a {
    display: block;
    font-weight: bold;
    color: #000;
}

.featherlight .featherlight-inner .rightarea .header span b {
    display: inline-block;
    margin-right: 3px;
}

.featherlight .featherlight-inner .rightarea .header span b:last-child {
    display: none;
}

.featherlight .featherlight-inner .rightarea .header > div {
    border-right: 1px #ccc solid;
    padding-right: 16px;
    margin-right: 16px;
}

.featherlight .featherlight-inner .rightarea .header > div:last-child {
    display: block;
    width: 100%;
    border-right: none;
    padding-right: 0px;
    margin: 10px 0 0 0;
}

.featherlight .featherlight-inner .rightarea .header > div:nth-last-child(2) {
    border: none;
}

.featherlight .featherlight-inner .ceoarea {
    width: 200px;
    padding: 45px 20px 20px;
    text-align: center;
    display: none;
    position: relative;
}

.featherlight .featherlight-inner .ceoarea .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
}
.featherlight .featherlight-inner .ceoarea .content > div{
    
}

.featherlight .featherlight-inner .ceoarea:before {
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 1);
    background: -webkit-gradient(right top, left top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(238, 238, 238, 1)));
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=1);
}

.featherlight .featherlight-inner .ceoarea.show {
    display: block;
}

.featherlight .featherlight-inner .ceoarea .thumb {
    border-radius: 100%;
    overflow: hidden;
    margin: 0px auto 15px;
    width: 140px;
    height: 140px;
    position: relative;
    z-index: 1;
}

.featherlight .featherlight-inner .ceoarea .title h3 {
    line-height: 1.1;
    font-size: 1.5rem;
}

.featherlight .featherlight-close-icon {
    display: none;
}

.featherlight a.close {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    line-height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 1.6rem;
    text-align: center;
    background: #00adee;
    color: #fff;
}

.featherlight .featherlight-image {
    /* styling */
    width: 100%;
}

.featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
}

.featherlight iframe {
    /* styling */
    border: none;
}

.featherlight * {
    /* See https://github.com/noelboss/featherlight/issues/42 */
    box-sizing: border-box;
}
