/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

@media all {
    .featherlight-next,
    .featherlight-previous {
        display: inline-block;
        position: relative;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: rgba(0, 0, 0, 0);
        float: right;
        margin-top: 20px;
    }
    .featherlight-previous {
        float: left;
    }
    .featherlight-next:hover,
    .featherlight-previous:hover {
        background: rgba(255, 255, 255, .25)
    }
    .featherlight-next span,
    .featherlight-previous span {
        display: inline-block;
        position: relative;
        width: 100px;
        text-align: center;
        font-size: 36px;
        line-height: 40px;
        text-shadow: 0 0 5px #fff;
        color: #4F5362;
        font-style: normal;
        font-weight: 400;
        width: 100%;
    }
    .featherlight-next span::before {
        content: 'Next';
        width: auto;
        font-size: 20px;
        margin-left: 10px;
        position: absolute;
        right: 50px;
    }
    .featherlight-previous span::after {
        content: 'Previous';
        width: auto;
        font-size: 20px;
        margin-right: 10px;
        position: absolute;
        left: 50px;
    }
    .featherlight-loading .featherlight-next,
    .featherlight-loading .featherlight-previous,
    .featherlight-swipe-aware .featherlight-next,
    .featherlight-swipe-aware .featherlight-previous {
        display: none
    }
}

@media only screen and (max-device-width:1024px) {
    .featherlight-next:hover,
    .featherlight-previous:hover {
        background: 0 0
    }
    .featherlight-next span,
    .featherlight-previous span {
        display: inline-block
    }
}

@media only screen and (max-width:1024px) {
    .featherlight-next,
    .featherlight-previous {

    }
    .featherlight-previous {

    }
    .featherlight-next span,
    .featherlight-previous span {

    }
}