/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Tint Colors
| --------------------------------------------------
|
| Function for creating Tinted colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  POPUP
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#fullpopup,
#fullpopupbg {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9999999999;
}

#fullpopup {
  display: none;
}

#fullpopupbg {
  background-color: rgba(0, 0, 0, 0.65);
}

#fullpopupbox {
  width: 95%;
  max-width: fit-content;
  background: #ffffff none repeat scroll 0 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999999999;
  border-radius: 50px;
  overflow: hidden;
  background-size: 80%;
}
@media (max-width: 640px) {
  #fullpopupbox {
    width: 95%;
    max-width: none;
  }
}

#fullpopuptext {
  color: #8d4399;
  margin: 0.5em;
  padding: 1rem;
}
@media (max-width: 640px) {
  #fullpopuptext {
    padding: 1rem 0.5rem 0.5rem;
  }
}
#fullpopuptext .banner-logo {
  width: 50%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 2em;
  background: #ffffff;
  background: white;
  padding: 0.5rem;
}
#fullpopuptext h2 {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  color: #8d4399;
  text-transform: uppercase;
  font-size: 2.5em;
  line-height: 1.25em;
  margin: 0 0 1rem;
}
#fullpopuptext p {
  color: #8d4399;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 2em;
  padding: 0 0 1em;
  margin: 0;
}
#fullpopuptext p.small-text {
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1.5em;
}
#fullpopuptext a.btn:link, #fullpopuptext a.btn:visited, #fullpopuptext a.btn:active {
  display: inline-block;
  background-color: #444444;
  color: #ffffff;
  padding: 1em;
  text-decoration: none;
  font-weight: 500;
  margin: 1em auto 0;
}
#fullpopuptext a.btn:link:hover, #fullpopuptext a.btn:visited:hover, #fullpopuptext a.btn:active:hover {
  background-color: #111111;
}

a#btn-x:link,
a#btn-x:visited,
a#btn-x:active,
a#btn-x:hover {
  color: #444444;
  background-color: #ffffff;
  font-size: 2em;
  float: right;
  font-weight: 900;
  margin: 0;
  padding: 7px 11px 5px;
  position: absolute;
  right: 20px;
  text-decoration: none;
  top: 20px;
  border-radius: 50%;
  overflow: hidden;
}

a#btn-x:hover {
  color: #000000;
}

@media (max-width: 600px) {
  #fullpopupbox {
    width: 90%;
  }
  #fullpopuptext {
    margin: 0.5em;
  }
  #fullpopuptext h2 {
    margin: 0 0 0.25em;
  }
  #fullpopuptext p {
    font-size: 1.25em;
    line-height: 1.2em;
  }
  #fullpopuptext p.pop-up-disclaimer {
    font-size: 0.6rem;
    line-height: 1.5em;
  }
  a#btn-x:link {
    font-size: 1.2em;
  }
}

/*# sourceMappingURL=popup.css.map */
