@media all {
    .featherlight {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
    }
    .featherlight:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -.25em
    }
    .featherlight .featherlight-content {
        position: relative;
        text-align: left;
        vertical-align: middle;
        display: inline-block;
        overflow: auto;
        padding: 0;
        margin: 0;
        max-height: 100%;
        cursor: auto;
        white-space: normal;
    }
    .featherlight .featherlight-inner {
        display: block
    }
    .featherlight-next,.featherlight-previous,.featherlight .featherlight-close-icon {
        font-family: 'FontAwesome';
		display: block;
        color: #fff;
		position: fixed;
		cursor: pointer;
		/* preventing text selection */
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
        line-height: 60px;
        width: 60px;
        height: 60px;
        border-radius:100%;
        font-size: 30px;
        text-align:center;
	}
    .featherlight-next,.featherlight-previous {
		top: 50%;
        margin-top:-30px;
	}
    .featherlight-previous {
		left: 20px;
        padding-right:5px;
	}
    .featherlight-next {
		right: 20px;
        padding-left:5px;
	}
    .featherlight .featherlight-close-icon {
        line-height: 58px;
        top: 20px;
        right: 20px;
    }
    .featherlight .featherlight-image {
        width: 100%
    }
    .featherlight-iframe .featherlight-content {
        padding: 0
    }
    .featherlight iframe {
        border: none
    }
    .featherlight * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
    .featherlight-close-icon,.featherlight-next,.featherlight-previous {
        background:#007FD0;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .featherlight-next:hover,.featherlight-previous:hover,.featherlight-close-icon:hover {
        background:#0a6ebd !important;
    }
    .featherlight-loading .featherlight-content {border-left-color: #007FD0;}
}

@-webkit-keyframes featherlightLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes featherlightLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.featherlight-loading .featherlight-content {
    -webkit-animation: featherlightLoader 1s infinite linear;
    animation: featherlightLoader 1s infinite linear;
    background: transparent;
    border-width: 8px;
    border-style: solid;
    border-radius: 80px;
    width: 80px;
    height: 80px;
    min-width: 0;
    border-left-color: #2196F3;
}

.featherlight-loading .featherlight-content > * {
    display: none!important
}

.featherlight-loading .featherlight-close,
.featherlight-loading .featherlight-inner {
    display: none
}

@media only screen and (max-width: 480px) {
    .featherlight-next,.featherlight-previous,.featherlight .featherlight-close-icon {
        line-height: 40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .featherlight .featherlight-close-icon {
        top: 10px;
        right: 10px;
    }
    .featherlight-previous {
		left: 10px;
	}
    .featherlight-next {
		right: 10px;
	}
}