/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.10 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, NoÃ«l Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  html.with-featherlight {
    overflow: hidden
  }

  .featherlight {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 17px;
    z-index: 2147483646;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background: #000000;
    background-color: rgba(0,0,0,0.4); 
    height: 100%;
  }

  .featherlight:last-of-type {
    background: rgba(0, 0, 0, .35)
  }

  .featherlight:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
  }

  .featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    padding: 0;
    border-bottom: 0 solid transparent;
    /* max-height: 100%; */
    width: 100%;
    max-width:798px;
    background: #fff;
    cursor: auto;
    white-space: normal;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.16);
  }

  .featherlight.featherlight--no-pad .featherlight-content {
    padding: 48px 0 0 0;
    position: relative;
    height: 100%;
  }

  .featherlight .featherlight-inner {
    display: block !important;
    overflow-y: auto !important;
    height: 100%;
    width: 100%;
    min-height: 350px;
  }

  .featherlight link.featherlight-inner,
  .featherlight script.featherlight-inner,
  .featherlight style.featherlight-inner {
    display: none
  }

  .featherlight .featherlight-close-icon {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    text-align: center;
    background: #fff;
    background: rgba(255, 255, 255, .3);
    color: #FFF;
    border: 0;
    padding: 0;
    font-size: 0.933rem;
    width: 103px;
    height: 38px;
    background-color: #231E1F;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    top: -38px;
  }

  .featherlight .featherlight-close-icon:hover,
  .featherlight .featherlight-close-icon:active,
  .featherlight .featherlight-close-icon:focus {
    background-color: rgb(224, 50, 50);
    -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in
  }

  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0
  }

  .featherlight .featherlight-image {
    width: 100%
  }

  .featherlight-iframe .featherlight-content {
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;

  }

  .featherlight iframe {
    border: 0
  }

  .featherlight * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
  }

  .featherlight .featherlight-content {
    
  }
}

@media only screen and (min-height:765px) {
  .featherlight .featherlight-inner {
    min-height: 650px;
  }
}

@media only screen and (max-width:799px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 85%;
    padding: 0 10px 0 10px;
    border-bottom: 0 solid transparent;
    height: 100%;
  }

  .featherlight.featherlight--no-pad .featherlight-inner {
    padding: 35px 0 0 0;
  }
  
  .featherlight .featherlight-inner {
    padding:0;
  }
  
}

@media only screen and (max-width:599px) {
  .featherlight .featherlight-close-icon {
    font-size: 0.825rem;
    width: 80px;
    height: 35px;
    top: -35px;
  }


}

@media print {
  @page {
    size: landscape
  }

  html.with-featherlight>*>:not(.featherlight) {
    display: none
  }
}