@charset "UTF-8";
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.9 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  html.with-featherlight {
    /* disable global scrolling when featherlights are visible */
    overflow: hidden;
  }
  .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: transparent;
  }
  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal;
  }
  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }
  /* don't show these though */
  .featherlight script.featherlight-inner,
  .featherlight link.featherlight-inner,
  .featherlight style.featherlight-inner {
    display: none;
  }
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #fff;
    /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    border: none;
    padding: 0;
  }
  /* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  .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;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }
  .featherlight iframe {
    /* styling */
    border: none;
  }
  .featherlight * {
    /* See https://github.com/noelboss/featherlight/issues/42 */
    box-sizing: border-box;
  }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}

/* hide non featherlight items when printing */
@media print {
  @page {
    size: landscape;
  }
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}

.c-custom-pop-up {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 1s;
}

.c-custom-pop-up.is-visible {
  opacity: 1;
}

.c-custom-pop-up .featherlight-content {
  width: 90%;
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 0;
  max-width: 1080px;
  padding: 25px 0;
  padding: 0;
  background: #F0EEEE;
  border: none;
}

.c-custom-pop-up .featherlight-content .featherlight-close-icon {
  background: transparent;
}

.c-custom-pop-up .featherlight-content:after {
  content: '';
  background: url(/wp-content/themes/flatsome-child/images/color-stripes.png) repeat repeat;
  height: 33px;
  background-repeat-y: no-repeat;  
  width: 100%;
  display: block;
}

.c-custom-pop-up .featherlight-close {
  color: #002030;
  font-size: 20px;
  font-weight: 900;
  top: 10px;
  right: 10px;
}

.c-custom-pop-up .featherlight-close:hover {
  box-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up .featherlight-close {
    top: 20px;
    right: 20px;
  }
}

.c-custom-pop-up .c-custom-pop-up__content {
  display: block !important;
}

.c-custom-pop-up__content {
  padding: 20px;
}

@media screen and (min-width: 960px) {
  .c-custom-pop-up__content {
    padding: 40px 20px 30px;
  }
}

@media screen and (min-width: 1120px) {
  .c-custom-pop-up__content {
    padding: 40px 80px 30px;
  }
}

.c-custom-pop-up__heading-wrapper {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__heading-wrapper {
    margin-bottom: 50px;
  }
}

.c-custom-pop-up__heading {
  font-size: 24px;
  text-align: center;
  color: #002030;
  font-weight: 900;
  position: relative;
  margin-bottom: 20px;
}

.c-custom-pop-up__heading:after {
  content: "";
  width: 5%;
  position: absolute;
  bottom: -10px;
  left: 45%;
  height: 3px;
  background: #002030;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__heading:after {
    height: 5px;
  }
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__heading {
    font-size: 50px;
    line-height: 60px;
  }
}

.c-custom-pop-up__heading-copy {
  font-size: 14px;
  line-height: 17px;
  color: #555555;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__heading-copy {
    font-size: 18px;
    line-height: 22px;
  }
}

.c-custom-pop-up__heading__text-breaker {
  display: block;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__heading__text-breaker {
    display: none;
  }
}

.c-custom-pop-up__store {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__store {
    padding: 30px;
  }
}

@media screen and (min-width: 480px) {
  .c-custom-pop-up__store {
    font-size: 0;
  }
  .c-custom-pop-up__store .c-custom-pop-up__store__item {
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__store .c-custom-pop-up__store__item {
    width: 100%;
  }
}

.c-custom-pop-up__store-img {
  margin: auto;
  display: block;
  max-width: 100px;
}

@media screen and (min-width: 1120px) {
  .c-custom-pop-up__store-img {
    max-width: 200px;
  }
}

.c-custom-pop-up__store-copy {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  padding-top: 15px;
}

@media screen and (min-width: 480px) {
  .c-custom-pop-up__store-copy {
    text-align: left;
  }
}

.c-custom-pop-up__store-link {
  font-size: 13px;
  line-height: 16px;
  color: #002030;
  font-weight: bold;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__store-link {
    position: absolute;
    bottom: 25px;
  }
}

.c-custom-pop-up__link-cancel-wrapper {
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .c-custom-pop-up__link-cancel-wrapper {
    margin-top: 50px;
  }
}

.c-custom-pop-up__link-cancel {
  display: inline-block;
  margin: auto;
  color: #9B9B9B;
  text-decoration: underline;
}

/* equal height */
@media screen and (min-width: 768px) {
  .row-eq-height {
    display: table;
  }
  .row-eq-height .columns {
    float: none !important;
    display: table-cell;
    vertical-align: top;
    background: #fff;
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
  .row-eq-height .columns::after, .row-eq-height .columns::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    background: #F0EEEE;
  }
  .row-eq-height .columns:before {
    left: 0;
  }
  .row-eq-height .columns:after {
    right: 0;
  }
}

@media screen and (min-width: 1120px) {
  .row-eq-height .columns {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
  }
  .row-eq-height .columns::after, .row-eq-height .columns::before {
    width: 0.9375em;
  }
}

/*# sourceMappingURL=custom-pop-up.css.map */
