/************************
Plugin: CopperPress Paywall
Author: CopperPress

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

 */
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* MENU TABS */
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/********************
BREAKPOINTS
 */
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
#copperpress-paywall .cp-paywall-message {
    display: block;
    padding: 1rem;
    margin: 2rem;
    border-radius: 6px;
    color: #296fa8;
    background-color: #eff5fb;
}

#copperpress-paywall .cp-paywall-message.success {
    color: #257953;
    background-color: #effaf5;
}

#copperpress-paywall .cp-paywall-message.warning {
    color: #fffaeb;
    background-color: #946c00;
}

#copperpress-paywall .cp-paywall-message.error {
    color: #cc0f35;
    background-color: #feecf0;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
#copperpress-paywall .button {
    color: #fff;
    display: block;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    background-color: #3AA6D6;
    font-family: Calibri, "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    max-width: 30rem;
    width: 100%;
}

#copperpress-paywall .button:hover {
    background-color: #21779e;
}

#copperpress-paywall .button:active {
    background-color: #2891bf;
}

#copperpress-paywall input[disabled].button,
#copperpress-paywall .button.disabled {
    background-color: #68778d;
    cursor: not-allowed;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
#copperpress-paywall label {
    font-weight: bold;
}

#copperpress-paywall input[type=text],
#copperpress-paywall input[type=password],
#copperpress-paywall input[type=datetime],
#copperpress-paywall input[type=datetime-local],
#copperpress-paywall input[type=date],
#copperpress-paywall input[type=month],
#copperpress-paywall input[type=time],
#copperpress-paywall input[type=week],
#copperpress-paywall input[type=number],
#copperpress-paywall input[type=email],
#copperpress-paywall input[type=url],
#copperpress-paywall input[type=search],
#copperpress-paywall input[type=tel],
#copperpress-paywall input[type=color],
#copperpress-paywall select,
#copperpress-paywall textarea,
#copperpress-paywall .field {
    display: block;
    height: 3rem;
    line-height: 1rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #5c6b80;
    border-radius: 6px;
    vertical-align: middle;
    box-shadow: none;
    border: 0;
    width: 100%;
    max-width: 30rem;
    font-family: "Georgia", "Lora", Times New Roman, Times, serif;
    background-color: #ebedf0;
}

#copperpress-paywall input[type=text]:focus, #copperpress-paywall input[type=text]:active,
#copperpress-paywall input[type=password]:focus,
#copperpress-paywall input[type=password]:active,
#copperpress-paywall input[type=datetime]:focus,
#copperpress-paywall input[type=datetime]:active,
#copperpress-paywall input[type=datetime-local]:focus,
#copperpress-paywall input[type=datetime-local]:active,
#copperpress-paywall input[type=date]:focus,
#copperpress-paywall input[type=date]:active,
#copperpress-paywall input[type=month]:focus,
#copperpress-paywall input[type=month]:active,
#copperpress-paywall input[type=time]:focus,
#copperpress-paywall input[type=time]:active,
#copperpress-paywall input[type=week]:focus,
#copperpress-paywall input[type=week]:active,
#copperpress-paywall input[type=number]:focus,
#copperpress-paywall input[type=number]:active,
#copperpress-paywall input[type=email]:focus,
#copperpress-paywall input[type=email]:active,
#copperpress-paywall input[type=url]:focus,
#copperpress-paywall input[type=url]:active,
#copperpress-paywall input[type=search]:focus,
#copperpress-paywall input[type=search]:active,
#copperpress-paywall input[type=tel]:focus,
#copperpress-paywall input[type=tel]:active,
#copperpress-paywall input[type=color]:focus,
#copperpress-paywall input[type=color]:active,
#copperpress-paywall select:focus,
#copperpress-paywall select:active,
#copperpress-paywall textarea:focus,
#copperpress-paywall textarea:active,
#copperpress-paywall .field:focus,
#copperpress-paywall .field:active {
    background-color: #d5edf8;
    outline: none;
}

#copperpress-paywall input[type=text].error, #copperpress-paywall input[type=text].is-invalid,
#copperpress-paywall input[type=password].error,
#copperpress-paywall input[type=password].is-invalid,
#copperpress-paywall input[type=datetime].error,
#copperpress-paywall input[type=datetime].is-invalid,
#copperpress-paywall input[type=datetime-local].error,
#copperpress-paywall input[type=datetime-local].is-invalid,
#copperpress-paywall input[type=date].error,
#copperpress-paywall input[type=date].is-invalid,
#copperpress-paywall input[type=month].error,
#copperpress-paywall input[type=month].is-invalid,
#copperpress-paywall input[type=time].error,
#copperpress-paywall input[type=time].is-invalid,
#copperpress-paywall input[type=week].error,
#copperpress-paywall input[type=week].is-invalid,
#copperpress-paywall input[type=number].error,
#copperpress-paywall input[type=number].is-invalid,
#copperpress-paywall input[type=email].error,
#copperpress-paywall input[type=email].is-invalid,
#copperpress-paywall input[type=url].error,
#copperpress-paywall input[type=url].is-invalid,
#copperpress-paywall input[type=search].error,
#copperpress-paywall input[type=search].is-invalid,
#copperpress-paywall input[type=tel].error,
#copperpress-paywall input[type=tel].is-invalid,
#copperpress-paywall input[type=color].error,
#copperpress-paywall input[type=color].is-invalid,
#copperpress-paywall select.error,
#copperpress-paywall select.is-invalid,
#copperpress-paywall textarea.error,
#copperpress-paywall textarea.is-invalid,
#copperpress-paywall .field.error,
#copperpress-paywall .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4;
}

#copperpress-paywall input[type=text].success, #copperpress-paywall input[type=text].is-valid,
#copperpress-paywall input[type=password].success,
#copperpress-paywall input[type=password].is-valid,
#copperpress-paywall input[type=datetime].success,
#copperpress-paywall input[type=datetime].is-valid,
#copperpress-paywall input[type=datetime-local].success,
#copperpress-paywall input[type=datetime-local].is-valid,
#copperpress-paywall input[type=date].success,
#copperpress-paywall input[type=date].is-valid,
#copperpress-paywall input[type=month].success,
#copperpress-paywall input[type=month].is-valid,
#copperpress-paywall input[type=time].success,
#copperpress-paywall input[type=time].is-valid,
#copperpress-paywall input[type=week].success,
#copperpress-paywall input[type=week].is-valid,
#copperpress-paywall input[type=number].success,
#copperpress-paywall input[type=number].is-valid,
#copperpress-paywall input[type=email].success,
#copperpress-paywall input[type=email].is-valid,
#copperpress-paywall input[type=url].success,
#copperpress-paywall input[type=url].is-valid,
#copperpress-paywall input[type=search].success,
#copperpress-paywall input[type=search].is-valid,
#copperpress-paywall input[type=tel].success,
#copperpress-paywall input[type=tel].is-valid,
#copperpress-paywall input[type=color].success,
#copperpress-paywall input[type=color].is-valid,
#copperpress-paywall select.success,
#copperpress-paywall select.is-valid,
#copperpress-paywall textarea.success,
#copperpress-paywall textarea.is-valid,
#copperpress-paywall .field.success,
#copperpress-paywall .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2;
}

#copperpress-paywall input[type=text][disabled], #copperpress-paywall input[type=text].is-disabled,
#copperpress-paywall input[type=password][disabled],
#copperpress-paywall input[type=password].is-disabled,
#copperpress-paywall input[type=datetime][disabled],
#copperpress-paywall input[type=datetime].is-disabled,
#copperpress-paywall input[type=datetime-local][disabled],
#copperpress-paywall input[type=datetime-local].is-disabled,
#copperpress-paywall input[type=date][disabled],
#copperpress-paywall input[type=date].is-disabled,
#copperpress-paywall input[type=month][disabled],
#copperpress-paywall input[type=month].is-disabled,
#copperpress-paywall input[type=time][disabled],
#copperpress-paywall input[type=time].is-disabled,
#copperpress-paywall input[type=week][disabled],
#copperpress-paywall input[type=week].is-disabled,
#copperpress-paywall input[type=number][disabled],
#copperpress-paywall input[type=number].is-disabled,
#copperpress-paywall input[type=email][disabled],
#copperpress-paywall input[type=email].is-disabled,
#copperpress-paywall input[type=url][disabled],
#copperpress-paywall input[type=url].is-disabled,
#copperpress-paywall input[type=search][disabled],
#copperpress-paywall input[type=search].is-disabled,
#copperpress-paywall input[type=tel][disabled],
#copperpress-paywall input[type=tel].is-disabled,
#copperpress-paywall input[type=color][disabled],
#copperpress-paywall input[type=color].is-disabled,
#copperpress-paywall select[disabled],
#copperpress-paywall select.is-disabled,
#copperpress-paywall textarea[disabled],
#copperpress-paywall textarea.is-disabled,
#copperpress-paywall .field[disabled],
#copperpress-paywall .field.is-disabled {
    cursor: not-allowed;
    background-color: #bfc5d0;
    opacity: 0.6;
}

#copperpress-paywall input[type=text][disabled]:focus, #copperpress-paywall input[type=text][disabled]:active, #copperpress-paywall input[type=text].is-disabled:focus, #copperpress-paywall input[type=text].is-disabled:active,
#copperpress-paywall input[type=password][disabled]:focus,
#copperpress-paywall input[type=password][disabled]:active,
#copperpress-paywall input[type=password].is-disabled:focus,
#copperpress-paywall input[type=password].is-disabled:active,
#copperpress-paywall input[type=datetime][disabled]:focus,
#copperpress-paywall input[type=datetime][disabled]:active,
#copperpress-paywall input[type=datetime].is-disabled:focus,
#copperpress-paywall input[type=datetime].is-disabled:active,
#copperpress-paywall input[type=datetime-local][disabled]:focus,
#copperpress-paywall input[type=datetime-local][disabled]:active,
#copperpress-paywall input[type=datetime-local].is-disabled:focus,
#copperpress-paywall input[type=datetime-local].is-disabled:active,
#copperpress-paywall input[type=date][disabled]:focus,
#copperpress-paywall input[type=date][disabled]:active,
#copperpress-paywall input[type=date].is-disabled:focus,
#copperpress-paywall input[type=date].is-disabled:active,
#copperpress-paywall input[type=month][disabled]:focus,
#copperpress-paywall input[type=month][disabled]:active,
#copperpress-paywall input[type=month].is-disabled:focus,
#copperpress-paywall input[type=month].is-disabled:active,
#copperpress-paywall input[type=time][disabled]:focus,
#copperpress-paywall input[type=time][disabled]:active,
#copperpress-paywall input[type=time].is-disabled:focus,
#copperpress-paywall input[type=time].is-disabled:active,
#copperpress-paywall input[type=week][disabled]:focus,
#copperpress-paywall input[type=week][disabled]:active,
#copperpress-paywall input[type=week].is-disabled:focus,
#copperpress-paywall input[type=week].is-disabled:active,
#copperpress-paywall input[type=number][disabled]:focus,
#copperpress-paywall input[type=number][disabled]:active,
#copperpress-paywall input[type=number].is-disabled:focus,
#copperpress-paywall input[type=number].is-disabled:active,
#copperpress-paywall input[type=email][disabled]:focus,
#copperpress-paywall input[type=email][disabled]:active,
#copperpress-paywall input[type=email].is-disabled:focus,
#copperpress-paywall input[type=email].is-disabled:active,
#copperpress-paywall input[type=url][disabled]:focus,
#copperpress-paywall input[type=url][disabled]:active,
#copperpress-paywall input[type=url].is-disabled:focus,
#copperpress-paywall input[type=url].is-disabled:active,
#copperpress-paywall input[type=search][disabled]:focus,
#copperpress-paywall input[type=search][disabled]:active,
#copperpress-paywall input[type=search].is-disabled:focus,
#copperpress-paywall input[type=search].is-disabled:active,
#copperpress-paywall input[type=tel][disabled]:focus,
#copperpress-paywall input[type=tel][disabled]:active,
#copperpress-paywall input[type=tel].is-disabled:focus,
#copperpress-paywall input[type=tel].is-disabled:active,
#copperpress-paywall input[type=color][disabled]:focus,
#copperpress-paywall input[type=color][disabled]:active,
#copperpress-paywall input[type=color].is-disabled:focus,
#copperpress-paywall input[type=color].is-disabled:active,
#copperpress-paywall select[disabled]:focus,
#copperpress-paywall select[disabled]:active,
#copperpress-paywall select.is-disabled:focus,
#copperpress-paywall select.is-disabled:active,
#copperpress-paywall textarea[disabled]:focus,
#copperpress-paywall textarea[disabled]:active,
#copperpress-paywall textarea.is-disabled:focus,
#copperpress-paywall textarea.is-disabled:active,
#copperpress-paywall .field[disabled]:focus,
#copperpress-paywall .field[disabled]:active,
#copperpress-paywall .field.is-disabled:focus,
#copperpress-paywall .field.is-disabled:active {
    background-color: #d5edf8;
}

#copperpress-paywall input[type=password] {
    letter-spacing: 0.3em;
}

#copperpress-paywall textarea {
    max-width: 100%;
    min-height: 120px;
    line-height: 1.5em;
}

#copperpress-paywall select {
    -webkit-appearance: none;
    /* 1 */
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-position: 97.5% center;
}

#copperpress-paywall hr {
    border: 1px solid #323944;
}

/**********************/
/* PAYWALL VISIBILITY */
/***********/
/* DEFAULT */
/* Hide Full Content */
.cp-paywall-user {
    display: none;
}

/* Display Excerpt */
.cp-paywall-guest {
    display: block;
    position: relative;
}

.cp-paywall-guest .paywall-filter {
    max-height: 260px;
    overflow: hidden;
}

/*****************/
/* AUTHENTICATED */
/* Show Full Content */
.cp-paywall-authenticated .cp-paywall-user {
    display: block;
}

/* Hide Excerpt */
.cp-paywall-authenticated .cp-paywall-guest {
    display: none;
}

/***********/
/* EXPIRED */
.cp-paywall-logged-in .cp-paywall-expired {
    display: block;
}

.cp-paywall-expired,
.cp-paywall-authenticated .cp-paywall-expired {
    display: none;
}

/************
IMPORTING VIEWS
Views are where the core styles live. _core establishes the core
plugin styles while each php view has a dedicated scss file based
on individual view needs. HTML elements like buttons and input
styles should all live inside modules and only be modified if needed.
 */
/*****************/
/* GLOBAL STYLES */
#copperpress-paywall {
    font-family: Calibri, "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    text-align: center;
}

#copperpress-paywall h1 {
    color: #323944;
    font-size: 3rem;
    font-weight: bold;
}

#copperpress-paywall h2 {
    color: #3AA6D6;
    font-family: "Georgia", "Lora", Times New Roman, Times, serif;
}

#copperpress-paywall h3 {
    color: #68778d;
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

#copperpress-paywall .section {
    margin-left: 2rem;
}

#copperpress-paywall .cp-subscription-terms {
    font-size: 0.9rem;
    margin: 2rem 0;
    clear: both;
}

#copperpress-paywall .cp-subscription-terms p {
    color: #68778d;
    margin-bottom: 0.8rem;
}

/*******************/
/* CUSTOM OVERRIDE */
.post--1 .ss-inline-share-wrapper {
    display: none;
}

.copperpress-paywall-subscriptions .kiwi-article-bar,
.copperpress-paywall-newpassword .kiwi-article-bar,
.copperpress-paywall-emailsent .kiwi-article-bar,
.copperpress-paywall-login .kiwi-article-bar,
.page-id-151045 .kiwi-article-bar {
    display: none;
}

#footer-upgrade {
    display: none;
}

#copperpress-paywall .cp-paywall-login {
    margin: auto;
    text-align: left;
    max-width: 30rem;
    width: 100%;
}

#copperpress-paywall .cp-paywall-login label {
    font-weight: bold;
}

#copperpress-paywall #cp-password-error {
    display: none;
    font-size: 1rem;
    color: red;
    margin-bottom: 1rem;
}

#copperpress-paywall .cp-paywall-profile {
    text-align: left;
}

#copperpress-paywall .cp-paywall-profile .cp-subscription-string + h2 {
    margin-top: 2.5rem;
}

#copperpress-paywall .cp-paywall-profile h2 {
    margin-top: 4rem;
}

#copperpress-paywall .cp-paywall-profile .button {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#copperpress-paywall .cp-paywall-profile .cp-paywall-subscriptions {
    text-align: center;
    margin-top: 3rem;
}

#copperpress-paywall .cp-paywall-expired .button {
    margin: auto;
}

#copperpress-paywall .cp-paywall-subscriptions .logo {
    max-width: 50%;
}

#copperpress-paywall .cp-paywall-subscriptions .button {
    margin: auto;
}

#copperpress-paywall .cp-paywall-subscriptions h1 {
    font-size: 3.3rem;
    margin-top: 0;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-subtitle {
    color: #3AA6D6;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product {
    border: 0.6rem solid #8ecce8;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1.6rem;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product .title {
    color: #3AA6D6;
    font-weight: bold;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product .price {
    font-weight: bold;
    font-size: 2.2rem;
    color: #323944;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product .price span {
    font-size: 1.4rem;
    top: -0.2rem;
    position: relative;
    text-transform: lowercase;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product .billing {
    color: #323944;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product hr {
    border-color: #bfc5d0;
    margin: 1rem 0.25rem;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product ul {
    font-size: 1rem;
    text-align: left;
    list-style-type: circle;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product .button {
    font-size: 0.9rem;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product:nth-child(2) {
    border-color: #3AA6D6;
    border-top-width: 3rem;
    margin: 1rem 0;
    padding-top: 0;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product:nth-child(2)::before {
    content: "MOST POPULAR";
    top: -2.7rem;
    position: relative;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
}

#copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product:nth-child(2) .content {
    position: relative;
    top: -0.8rem;
}

#copperpress-paywall .cp-paywall-subscriptions .member {
    clear: both;
    font-weight: bold;
    margin-top: 2rem;
    color: #323944;
    padding-top: 1.4rem;
}

@media (min-width: 1024px) {
    #copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product {
        width: 32.5%;
        float: left;
        margin-top: 3rem;
    }

    #copperpress-paywall .cp-paywall-subscriptions .cp-paywall-product:nth-child(2) {
        margin: 0 0.5rem;
    }
}

#copperpress-paywall .cp-paywall-register .cp-register-form .cp-wrap {
    border: 2px solid #3AA6D6;
    border-radius: 6px;
    text-align: left;
    padding: 1rem;
    margin: 1rem;
}

#copperpress-paywall .cp-paywall-register .cp-register-form .cp-wrap .cp-column {
    width: 100%;
}

#copperpress-paywall .cp-paywall-register .cp-register-form .button {
    float: right;
    max-width: 15rem;
    margin-bottom: 2rem;
    margin-right: 1rem;
}

#copperpress-paywall .cp-paywall-register .cp-error {
    color: #cc0f35;
    background-color: #feecf0;
    padding: 0.5rem;
    display: none;
}

@media (min-width: 1024px) {
    #copperpress-paywall .cp-paywall-register .cp-register-form .cp-wrap .cp-column {
        width: 48.5%;
        float: left;
    }

    #copperpress-paywall .cp-paywall-register .cp-register-form .cp-wrap .cp-column + .cp-column {
        margin-left: 1rem;
    }
}

#cp-share-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
}

#cp-share-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    min-width: 270px;
    max-width: 400px;
    position: relative;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

#cp-share-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 2px;
    padding: 0 10px;
}

#cp-share-modal .close:hover,
#cp-share-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#cp-share-modal h3 {
    font-size: 2.1em;
    line-height: 1.2em;
    margin: 0;
}

#cp-share-modal label {
    display: block;
    font-weight: bold;
    margin-bottom: 1em;
}

#cp-share-modal input {
    font-size: 1em;
}

#cp-share-modal textarea {
    font-size: 1em;
    padding-top: 9px;
}

#copperpress-paywall .cp-paywall-modal {
    background-color: rgba(0, 0, 0, 0.6);
    margin: -60px 0 0 -1em;
    padding: 1rem 0;
    position: absolute;
    width: 100vw;
    z-index: 99;
}

#copperpress-paywall .cp-paywall-modal #paywall-logo img {
    margin-bottom: 0;
}

#copperpress-paywall .cp-paywall-modal .cp-modal-content {
    background-color: #fff;
    border: 1px solid #bfc5d0;
    margin: 10% auto;
    padding: 0 2rem;
    width: 90%;
}

@media (min-width: 768px) and (max-width: 1023px) {
    #copperpress-paywall .cp-paywall-modal {
        margin-left: -1.3em;
    }

    #copperpress-paywall .cp-paywall-modal .cp-modal-content {
        width: 80%;
    }
}

@media (min-width: 1024px) {
    #copperpress-paywall .cp-paywall-modal {
        width: 1020px;
        margin-left: -0.4em;
    }

    #copperpress-paywall .cp-paywall-modal .cp-modal-content {
        width: 70%;
    }
}

/*# sourceMappingURL=copperpress.css.map */
.cp-paywall-logged-in #upper-header .cp-paywall-user {
    display: block;
}

.cp-paywall-logged-in #upper-header .cp-paywall-guest {
    display: none;
}