@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************

Stylesheet: Main Stylesheet

Calls every scss file in correct order.

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.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, header, footer, section, article, nav, canvas, aside, figcaption, figure, hgroup, menuitem, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  font-size: 62.5%;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5em;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: 500;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: none;
  -epub-hyphens: manual;
  hyphens: manual;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 10px 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: border-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************************************************

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.

******************************************************************/
/*********************
WRAPS
*********************/
/*********************
COLORS
*********************/
/*********************
FONT SIZES
*********************/
/*********************
PADDINGS
*********************/
/*********************
TRANSITIONS
*********************/
/******************************************************************

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.

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/** Ultra Light */
@font-face {
  font-family: "San Francisco";
  font-weight: 100;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-ultralight-webfont.woff");
}
/** Thin */
@font-face {
  font-family: "San Francisco";
  font-weight: 200;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-thin-webfont.woff");
}
/** Regular */
@font-face {
  font-family: "San Francisco";
  font-weight: 400;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
/** Medium */
@font-face {
  font-family: "San Francisco";
  font-weight: 500;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-medium-webfont.woff");
}
/** Semi Bold */
@font-face {
  font-family: "San Francisco";
  font-weight: 600;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-semibold-webfont.woff");
}
/** Bold */
@font-face {
  font-family: "San Francisco";
  font-weight: 700;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-bold-webfont.woff");
}
/** SFProText Regular*/
@font-face {
  font-family: "SFProText-Regular";
  font-weight: 400;
  src: url("../fonts/SFProText-Regular.ttf");
}
/** SFProText Medium*/
@font-face {
  font-family: "SFProText-Medium";
  font-weight: 500;
  src: url("../fonts/SFProText-Medium.ttf");
}
/** SFProText Bold*/
@font-face {
  font-family: "SFProText-Bold";
  font-weight: 600;
  src: url("../fonts/SFProText-Bold.ttf");
}
.text-small {
  font-size: 1.4rem;
}

.text-base {
  font-size: 1.6rem;
}

.text-big {
  font-size: 2.2rem;
}

/******************************************************************

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%;
*********************/
/******************************************************************

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? */
/*********************
PSEUDO
*********************/
/* @include pseudo; */
/*********************
CSS TRIANGLE
*********************/
/* @include css-triangle(black, up, 6px false); */
/*********************
TEXT MARGINS
*********************/
/* @include text-margins(); */
/******************************************************************

Stylesheet: Grid Stylesheet

Still using this pretty basic grid, but it's customized a bit to
feel more like Bootstrap.
Wrap grid columns in grid-skin wrappers.

******************************************************************/
.with-padding {
  padding: 0 8px;
}

.with-padding-large {
  padding: 0 32px;
}

.grid-skin {
  position: relative;
  margin: 0 -8px;
}

.grid-skin-large {
  position: relative;
  margin: 0 -32px;
}

/* Mobile Grid Styles */
@media (max-width: 767px) {
  .m-all {
    float: left;
    width: 100%;
  }
  .m-1of2 {
    float: left;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .m-2of3 {
    float: left;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    width: 75%;
  }
  .grid-m-all {
    grid-template-columns: 1fr;
  }
  .grid-m-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-m-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* Large Mobile to Tablet Grid Styles */
@media (min-width: 480px) and (max-width: 767px) {
  .mt-all {
    float: left;
    width: 100%;
  }
  .mt-1of2 {
    float: left;
    width: 50%;
  }
  .mt-1of3 {
    float: left;
    width: 33.33%;
  }
  .mt-2of3 {
    float: left;
    width: 66.66%;
  }
  .mt-1of4 {
    float: left;
    width: 25%;
  }
  .mt-3of4 {
    float: left;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    width: 100%;
  }
  .t-1of2 {
    float: left;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .t-2of3 {
    float: left;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    width: 80%;
  }
  .grid-t-all {
    grid-template-columns: 1fr;
  }
  .grid-t-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-t-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-t-1of4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    width: 100%;
  }
  .d-1of2 {
    float: left;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .d-2of3 {
    float: left;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    width: 8.33%;
  }
  .grid-d-all {
    grid-template-columns: 1fr;
  }
  .grid-d-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-d-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-d-1of4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-space-right {
    padding-right: 32px;
  }
}
/******************************************************************

Stylesheet: Animations

******************************************************************/
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sp-loader {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  animation-delay: -0.5s;
}
.sp-loader div {
  position: absolute;
  border: 4px solid #161616;
  opacity: 1;
  border-radius: 50%;
  animation: sp-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.sp-loader div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes sp-loader {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.has-black-color {
  color: #000;
}

.has-black-background-color {
  background-color: #000;
}

.has-light-gray-color {
  color: #F1F1F5;
}

.has-light-gray-background-color {
  background-color: #F1F1F5;
}

.has-gray-color {
  color: #F9F4D6;
}

.has-gray-background-color {
  background-color: #F9F4D6;
}

.has-white-color {
  color: #FFFFFF;
}

.has-white-background-color {
  background-color: #FFFFFF;
}

.has-orange-color {
  color: #EAAA1F;
}

.has-orange-background-color {
  background-color: #EAAA1F;
}

.has-yellow-color {
  color: #F7E57A;
}

.has-yellow-background-color {
  background-color: #F7E57A;
}

.has-violet-color {
  color: #B9A7D9;
}

.has-violet-background-color {
  background-color: #B9A7D9;
}

.has-pink-color {
  color: #F9E3D6;
}

.has-pink-background-color {
  background-color: #F9E3D6;
}

.has-blue-color {
  color: #262F9B;
}

.has-blue-background-color {
  background-color: #262F9B;
}

.has-dark-blue-color {
  color: #16164A;
}

.has-dark-blue-background-color {
  background-color: #16164A;
}

.wp-block-button.is-style-arrow-right .wp-block-button__link:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url(../images/icons/arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-arrow-right .wp-block-button__link:hover:after, .wp-block-button.is-style-arrow-right .wp-block-button__link:focus:after {
  margin-left: 16px;
}

.wp-block-button__link:hover {
  text-decoration: none;
}
.wp-block-button__link:not(.has-text-color) {
  color: white;
}
.wp-block-button__link:not(.has-text-color):hover {
  color: white;
}
.wp-block-button__link:not(.has-background) {
  background-color: #000;
}
.wp-block-button__link:not(.has-background):hover, .wp-block-button__link:not(.has-background):focus {
  background-color: black;
}
.wp-block-button__link.has-black-color:hover, .wp-block-button__link.has-black-color:focus {
  color: #000;
}
.wp-block-button__link.has-black-background-color:hover, .wp-block-button__link.has-black-background-color:focus {
  background-color: black;
}
.wp-block-button__link.has-light-gray-color:hover, .wp-block-button__link.has-light-gray-color:focus {
  color: #F1F1F5;
}
.wp-block-button__link.has-light-gray-background-color:hover, .wp-block-button__link.has-light-gray-background-color:focus {
  background-color: rgb(181.5, 181.5, 202.5);
}
.wp-block-button__link.has-gray-color:hover, .wp-block-button__link.has-gray-color:focus {
  color: #F9F4D6;
}
.wp-block-button__link.has-gray-background-color:hover, .wp-block-button__link.has-gray-background-color:focus {
  background-color: rgb(235.9787234043, 220.1276595745, 125.0212765957);
}
.wp-block-button__link.has-white-color:hover, .wp-block-button__link.has-white-color:focus {
  color: #FFFFFF;
}
.wp-block-button__link.has-white-background-color:hover, .wp-block-button__link.has-white-background-color:focus {
  background-color: #cccccc;
}
.wp-block-button__link.has-orange-color:hover, .wp-block-button__link.has-orange-color:focus {
  color: #EAAA1F;
}
.wp-block-button__link.has-orange-background-color:hover, .wp-block-button__link.has-orange-background-color:focus {
  background-color: rgb(149.0285714286, 106.4489795918, 13.9714285714);
}
.wp-block-button__link.has-yellow-color:hover, .wp-block-button__link.has-yellow-color:focus {
  color: #F7E57A;
}
.wp-block-button__link.has-yellow-background-color:hover, .wp-block-button__link.has-yellow-background-color:focus {
  background-color: rgb(241.2127659574, 210.1914893617, 25.7872340426);
}
.wp-block-button__link.has-violet-color:hover, .wp-block-button__link.has-violet-color:focus {
  color: #B9A7D9;
}
.wp-block-button__link.has-violet-background-color:hover, .wp-block-button__link.has-violet-background-color:focus {
  background-color: rgb(128.3333333333, 95.7619047619, 186.2380952381);
}
.wp-block-button__link.has-pink-color:hover, .wp-block-button__link.has-pink-color:focus {
  color: #F9E3D6;
}
.wp-block-button__link.has-pink-background-color:hover, .wp-block-button__link.has-pink-background-color:focus {
  background-color: rgb(235.9787234043, 166.2340425532, 125.0212765957);
}
.wp-block-button__link.has-blue-color:hover, .wp-block-button__link.has-blue-color:focus {
  color: #262F9B;
}
.wp-block-button__link.has-blue-background-color:hover, .wp-block-button__link.has-blue-background-color:focus {
  background-color: rgb(17.9170984456, 22.1606217617, 73.0829015544);
}
.wp-block-button__link.has-dark-blue-color:hover, .wp-block-button__link.has-dark-blue-color:focus {
  color: #16164A;
}
.wp-block-button__link.has-dark-blue-background-color:hover, .wp-block-button__link.has-dark-blue-background-color:focus {
  background-color: black;
}

.has-small-font-size {
  font-size: 1.4rem;
}

.has-normal-font-size {
  font-size: 1.8rem;
}

.has-large-font-size {
  font-size: 2.4rem;
}

.has-larger-font-size {
  font-size: 3.2rem;
}

.has-huge-font-size {
  font-size: 4.8rem;
}

.wp-block-media-text figure {
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .wp-block-media-text {
    grid-row-gap: 32px;
  }
}
.wp-block-group .wp-block-group__inner-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.wp-block-group.has-background {
  padding: 64px 0;
}
.wp-block-group.has-padding {
  padding: 64px 0;
}
.wp-block-group.has-extra-padding {
  padding: 128px 0;
}

@media (min-width: 768px) {
  .wp-block-group .wp-block-group__inner-container {
    max-width: 834px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1030px) {
  .wp-block-group .wp-block-group__inner-container {
    max-width: 1250px;
  }
}
.wp-block-columns > * {
  margin-bottom: 32px;
}
.wp-block-columns > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    margin-left: 0 !important;
  }
}

.wp-block-gallery .blocks-gallery-grid {
  margin-bottom: -16px;
}

.wp-block-image {
  line-height: 0;
}
.wp-block-image figcaption {
  line-height: 1.4;
  margin-top: 16px;
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.6;
}

.alignwide .inner-wrap,
.alignfull .inner-wrap {
  width: 100%;
  max-width: 542px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .alignwide .inner-wrap,
  .alignfull .inner-wrap {
    max-width: 834px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1030px) {
  .alignwide .inner-wrap,
  .alignfull .inner-wrap {
    max-width: 1250px;
  }
}

/*********************
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.
*********************/
/******************************************************************

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.

******************************************************************/
/*********************
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

*********************/
#loginform #wp-submit, .modal-content .sp-share-resource button.copy-to-clipboard, .modal-content header.sp-lightbox-header .resource-btn-text, .wp-block-file__button, .wp-block-button .wp-block-button__link, .btn,
button,
.button,
.woocommerce a.button,
.sp-action-button, .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  opacity: 0.9;
  padding: 1rem 1.6rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: #3a3a3a;
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  -webkit-appearance: none;
}
#loginform #wp-submit:hover, .modal-content .sp-share-resource button.copy-to-clipboard:hover, .modal-content header.sp-lightbox-header .resource-btn-text:hover, .wp-block-file__button:hover, .btn:hover,
button:hover,
.button:hover,
.woocommerce a.button:hover,
.sp-action-button:hover, .wp-block-button__link:hover, #loginform #wp-submit:focus, .modal-content .sp-share-resource button.copy-to-clipboard:focus, .modal-content header.sp-lightbox-header .resource-btn-text:focus, .wp-block-file__button:focus, .btn:focus,
button:focus,
.button:focus,
.woocommerce a.button:focus,
.sp-action-button:focus, .wp-block-button__link:focus {
  color: #3a3a3a;
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 4px 0 rgba(22, 22, 74, 0.3);
  opacity: 1;
}
#loginform #wp-submit:active, .modal-content .sp-share-resource button.copy-to-clipboard:active, .modal-content header.sp-lightbox-header .resource-btn-text:active, .wp-block-file__button:active, .btn:active,
button:active,
.button:active,
.woocommerce a.button:active,
.sp-action-button:active, .wp-block-button__link:active {
  top: 1px;
}
#loginform .medium#wp-submit, .modal-content .sp-share-resource button.medium.copy-to-clipboard, .modal-content header.sp-lightbox-header .medium.resource-btn-text, .medium.wp-block-file__button, .medium.btn,
button.medium,
.medium.button,
.woocommerce a.medium.button,
.medium.sp-action-button, .medium.wp-block-button__link {
  text-transform: none;
  font-size: 1.6rem;
}
#loginform .full-width#wp-submit, .modal-content .sp-share-resource button.full-width.copy-to-clipboard, .modal-content header.sp-lightbox-header .full-width.resource-btn-text, .full-width.wp-block-file__button, .full-width.btn,
button.full-width,
.full-width.button,
.woocommerce a.full-width.button,
.full-width.sp-action-button, .full-width.wp-block-button__link {
  width: 100%;
}
#loginform [disabled=disabled]#wp-submit, .modal-content .sp-share-resource button[disabled=disabled].copy-to-clipboard, .modal-content header.sp-lightbox-header [disabled=disabled].resource-btn-text, [disabled=disabled].wp-block-file__button, [disabled=disabled].btn,
button[disabled=disabled],
[disabled=disabled].button,
.woocommerce a[disabled=disabled].button,
[disabled=disabled].sp-action-button, [disabled=disabled].wp-block-button__link {
  opacity: 0.5;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn.btn-icon-right i,
.btn.btn-icon-right span.icon,
button.btn-icon-right i,
button.btn-icon-right span.icon,
.button.btn-icon-right i,
.button.btn-icon-right span.icon,
.woocommerce a.button.btn-icon-right i,
.woocommerce a.button.btn-icon-right span.icon,
.sp-action-button.btn-icon-right i,
.sp-action-button.btn-icon-right span.icon {
  margin-left: 10px;
}
.btn.btn-icon-left i,
.btn.btn-icon-left span.icon,
button.btn-icon-left i,
button.btn-icon-left span.icon,
.button.btn-icon-left i,
.button.btn-icon-left span.icon,
.woocommerce a.button.btn-icon-left i,
.woocommerce a.button.btn-icon-left span.icon,
.sp-action-button.btn-icon-left i,
.sp-action-button.btn-icon-left span.icon {
  margin-right: 10px;
}
.btn.tag,
button.tag,
.button.tag,
.woocommerce a.button.tag,
.sp-action-button.tag {
  background-color: #16164a;
  color: #fff;
  padding: 0.8rem 1.1rem;
  font-size: 1.4rem;
}
.btn.tag:hover, .btn.tag:focus,
button.tag:hover,
button.tag:focus,
.button.tag:hover,
.button.tag:focus,
.woocommerce a.button.tag:hover,
.woocommerce a.button.tag:focus,
.sp-action-button.tag:hover,
.sp-action-button.tag:focus {
  background-color: rgb(16.15625, 16.15625, 54.34375);
  color: #fff;
  box-shadow: none;
}

* + .wp-block-file__button {
  margin-left: 0.75em;
}

.wp-block-file__button {
  font-size: 13px;
  padding: 0.5em 1em;
}

/******************************************************************

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.

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: inline-block;
  height: auto;
  line-height: normal;
  padding: 10px;
  border-radius: 3px;
  vertical-align: middle;
  border: 1px solid #d1d1d1;
  background: #eee;
  color: #3a3a3a;
  font-size: 16px;
  width: inherit;
  -webkit-appearance: none;
  max-width: none;
  width: 100%;
  font-family: -apple-system, system-ui, "San Francisco", "Helvetica Neue", Helvetica, Ubuntu, Roboto, Noto, "Segoe UI", Arial, sans-serif;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=datetime]:hover,
input[type=datetime-local]:hover,
input[type=date]:hover,
input[type=month]:hover,
input[type=time]:hover,
input[type=week]:hover,
input[type=number]:hover,
input[type=email]:hover,
input[type=url]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=color]:hover,
select:hover,
textarea:hover,
.field:hover {
  border-color: #3a3a3a;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
  background: #fff;
  border-color: #3a3a3a;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  border-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  border-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #EBEBF0;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, .field::-moz-placeholder {
  color: rgb(96.25, 96.25, 96.25);
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder,
select::placeholder,
textarea::placeholder,
.field::placeholder {
  color: rgb(96.25, 96.25, 96.25);
}

textarea {
  max-width: 100%;
  min-height: 80px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #3a3a3a;
  box-shadow: 0px 1px 3px rgba(22, 22, 22, 0.1);
  background-image: url("../images/chev.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 32px;
  width: 100%;
}
select:hover, select:focus, select:active {
  background-image: url("../images/chev.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  border: 1px solid #3a3a3a;
}

/********************************
ESSENTIAL VARIABLES
********************************/
/********************************
HIDE AND DISPLAY CORRECT ELEMENTS
ON DIFFERENT BREAKPOINTS
********************************/
.desktop-navigation {
  display: none;
}

#nav-toggle {
  display: inline-flex;
}

@media only screen and (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
  #nav-toggle {
    display: none;
  }
  .desktop-navigation {
    display: inline-block;
  }
}
/*********************
MAIN HEADER STYLING
*********************/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0;
  line-height: 0;
  z-index: 999;
}
.header #inner-header {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .header #inner-header {
    padding: 16px 32px;
  }
}
.header.scrolled #inner-header {
  height: 72px;
}

@media only screen and (min-width: 1030px) {
  .mobile-nav {
    display: none !important;
  }
}
/*********************
HEADER ELEMENTS
*********************/
.custom-logo-link {
  display: inline-block;
  height: 100%;
  line-height: 0;
  margin-right: auto;
  position: relative;
}
.custom-logo-link .custom-logo {
  height: auto;
  width: auto;
  max-width: 140px;
  max-height: 50px;
}

#nav-toggle i.la-bars {
  display: inline-block;
}
#nav-toggle i.la-times {
  display: none;
}
#nav-toggle.nav-active i.la-bars {
  display: none;
}
#nav-toggle.nav-active i.la-times {
  display: inline-block;
}

.btn.log-in {
  background-color: #16164a;
  color: #fff;
}
.btn.log-in:hover, .btn.log-in:focus {
  background-color: rgb(16.15625, 16.15625, 54.34375);
  color: #fff;
}

/************************
DESKTOP NAVIGATION STYLES
************************/
@media only screen and (min-width: 768px) {
  .desktop-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 32px;
    width: 100%;
    /* end .menu ul li */
  }
  .desktop-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .desktop-navigation ul.nav {
    margin-top: -2px;
  }
  .desktop-navigation li {
    display: inline-block;
    line-height: 1em;
    margin-right: 20px;
  }
  .desktop-navigation li a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #161616;
    font-weight: 500;
    padding: 5px 0 3px;
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .desktop-navigation li a:after {
    display: block;
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #161616;
  }
  .desktop-navigation li:first-of-type {
    border: none;
  }
  .desktop-navigation li:last-of-type {
    margin-right: 0;
  }
  .desktop-navigation li.current-menu-item > a {
    text-decoration: none;
  }
  .desktop-navigation li.current-menu-item > a:after {
    width: 100%;
  }
  .desktop-navigation li.sp-welcome-text > a {
    position: relative;
    padding-right: 28px;
  }
  .desktop-navigation li.sp-welcome-text > a i {
    position: absolute;
    font-size: 24px;
    right: 0;
    top: 2px;
  }
  .desktop-navigation li:hover > a {
    color: #161616;
    text-decoration: none;
  }
  .desktop-navigation li:hover > a:after {
    width: 100%;
  }
  .desktop-navigation > ul > li > ul.sub-menu {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    display: flex;
    position: absolute;
    background: #eee;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 5px 0 rgba(22, 22, 22, 0.1);
    transition: all 0.25s ease-in-out;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li {
    margin-bottom: 8px;
    transform: translateY(-5px);
    opacity: 0;
    transition: all 0.25s ease-in-out;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:last-child {
    margin-bottom: 0;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a {
    font-weight: 400;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(4) {
    transition-delay: 0.25s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(5) {
    transition-delay: 0.3s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(6) {
    transition-delay: 0.35s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(7) {
    transition-delay: 0.4s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(8) {
    transition-delay: 0.45s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(9) {
    transition-delay: 0.5s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(10) {
    transition-delay: 0.55s;
  }
  .desktop-navigation > ul > li > ul.sub-menu a {
    text-transform: none;
    padding: 9px 0;
    color: #161616;
  }
  .desktop-navigation > ul > li > ul.sub-menu a:hover {
    text-decoration: underline;
  }
  .desktop-navigation > ul > li > ul.sub-menu ul.sub-menu {
    display: flex;
    flex-direction: column;
  }
  .desktop-navigation > ul > li:hover > ul.sub-menu {
    display: flex;
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
  }
  .desktop-navigation > ul > li:hover > ul.sub-menu > li {
    transform: translateY(0);
    opacity: 1;
  }
  /* end .nav */
}
/***********************************
SUB HEADER
***********************************/
.sub-header {
  display: none;
  background: #fff;
  line-height: 1.5;
  border-top: 1px solid #eee;
}
.prepareDownload .sub-header {
  display: block;
}

#sub-header-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 767px) {
  #sub-header-content {
    height: auto;
  }
}
#sub-header-content .sp-right-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}
#sub-header-content .sp-right-actions > * {
  margin-right: 16px;
}
#sub-header-content .sp-right-actions > *:last-child {
  margin-right: 0;
}
#sub-header-content .sp-right-actions .sp-download-all-button {
  display: flex;
  gap: 3.5px;
  background: #16164a;
  color: #fff;
}
#sub-header-content .sp-right-actions .sp-download-all-button.hidden {
  display: none;
}
@media (max-width: 767px) {
  #sub-header-content .sp-right-actions .sp-download-all-button {
    margin: 8px 0;
  }
}
#sub-header-content .sp-right-actions .sp-edit-collection-button {
  opacity: 0.4;
  pointer-events: none;
}
#sub-header-content .sp-right-actions .sp-edit-collection-button .icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(../images/edit-collection.svg);
  background-size: contain;
}
#sub-header-content .sp-parent-collection-terms {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  margin-right: auto;
}
#sub-header-content .sp-parent-collection-terms ul {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.6rem;
  position: relative;
  border: none;
  position: relative;
}
#sub-header-content .sp-parent-collection-terms ul li {
  margin-right: 16px;
}
#sub-header-content .sp-parent-collection-terms ul li a {
  color: #3a3a3a;
  text-decoration: none;
}
#sub-header-content .sp-parent-collection-terms ul li a.selected {
  text-decoration: underline;
  font-weight: 500;
}
#sub-header-content .sp-parent-collection-terms ul li a:hover {
  text-decoration: underline;
}
#sub-header-content .sp-parent-collection-terms ul li:last-of-type {
  margin-right: 0;
}
#sub-header-content .sp-parent-collection-terms ul li.favorites-option {
  padding-right: 30px;
  position: relative;
}
#sub-header-content .sp-parent-collection-terms ul li.favorites-option a i {
  -webkit-text-stroke: 2px #E54141;
  color: #fff;
  margin-right: 10px;
}
#sub-header-content .sp-parent-collection-terms ul li.favorites-option:after {
  content: "·";
  color: #3a3a3a;
  position: absolute;
  top: -10px;
  right: 5px;
  font-size: 30px;
}

/***********************************
EXTRA ELEMENTS RELATED TO NAVIGATION
***********************************/
.desktop-navigation .searchform {
  margin-right: 32px;
  position: relative;
  width: 100%;
}
.desktop-navigation .searchform input.s {
  padding-left: 54px;
  border-radius: 50px;
}
.desktop-navigation .searchform button.searchsubmit {
  opacity: 1;
  padding: 12px 14px 12px 20px;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  color: #161616;
  opacity: 0.6;
  border: none;
  box-shadow: none;
}
.desktop-navigation .searchform button.searchsubmit .la-search {
  background: url(../images/search.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}
.desktop-navigation .searchform button.searchsubmit .la-search:before {
  display: none;
}
.desktop-navigation .searchform button.searchsubmit:hover, .desktop-navigation .searchform button.searchsubmit:focus {
  opacity: 1;
}
.desktop-navigation .important-header-links {
  margin-right: 32px;
}
.desktop-navigation .sp-user-avatar-action {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50px;
  flex: none;
  cursor: pointer;
}
.desktop-navigation .sp-user-avatar-action img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.desktop-navigation .sp-user-avatar-action:hover {
  filter: brightness(0.7);
}

.background-overlay {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.2);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}
.background-overlay.nav-active {
  cursor: w-resize;
  opacity: 1;
  pointer-events: all;
}
.background-overlay.active {
  cursor: pointer;
  opacity: 1;
  pointer-events: all;
}
.scrolled .background-overlay {
  top: 72px;
}

/********************************
DISPLAY CORRECT MARGINS WHEN
ADMIN BAR IS DISPLAYED
********************************/
body.admin-bar #wpadminbar {
  position: fixed;
}
body.admin-bar .header {
  top: 46px;
}
body.admin-bar .background-overlay,
body.admin-bar .mobile-nav {
  top: calc(76px + 46px);
}
body.admin-bar.scrolled .background-overlay,
body.admin-bar.scrolled .mobile-nav {
  top: calc(72px + 46px);
}

@media only screen and (min-width: 783px) {
  body.admin-bar .header {
    top: 32px;
  }
  body.admin-bar .background-overlay,
  body.admin-bar .mobile-nav {
    top: calc(76px + 32px);
  }
  body.admin-bar.scrolled .background-overlay,
  body.admin-bar.scrolled .mobile-nav {
    top: calc(72px + 32px);
  }
}
nav.sp-user-dropdown {
  display: block;
  position: absolute;
  top: 80px;
  right: 32px;
  background: #000;
  color: #fff;
  line-height: 1.3;
  padding: 16px;
  border-radius: 2px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.15s ease-in-out;
}
nav.sp-user-dropdown.active {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
nav.sp-user-dropdown .user-info {
  margin-bottom: 8px;
}
nav.sp-user-dropdown .user-info .sp-user-name {
  font-weight: 700;
  font-size: 16px;
}
nav.sp-user-dropdown .user-info .sp-user-email {
  font-size: 14px;
}
nav.sp-user-dropdown ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
nav.sp-user-dropdown ul li svg {
  width: auto;
  height: 16px;
  color: #fff;
}
nav.sp-user-dropdown ul li svg.stroke path {
  stroke: #fff;
}
nav.sp-user-dropdown ul li svg.path path {
  fill: #fff;
}
nav.sp-user-dropdown ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  padding: 8px 0;
}
nav.sp-user-dropdown ul li a:after {
  content: none;
}
nav.sp-user-dropdown ul li a:hover, nav.sp-user-dropdown ul li a.focus {
  color: #fff;
  text-decoration: underline;
}

/********************************
MOBILE MENU
********************************/
.mobile-nav {
  border-top: 1px solid #eee;
  position: fixed;
  bottom: 0;
  top: 76px;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 998;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translate3d(0, -32px, 0);
  box-shadow: 0 2px 27px 0 rgba(22, 22, 22, 0.13);
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}
.mobile-nav .searchform {
  margin-right: 32px;
  position: relative;
  width: 100%;
}
.mobile-nav .searchform input.s {
  padding-left: 54px;
  border-radius: 50px;
}
.mobile-nav .searchform button.searchsubmit {
  opacity: 1;
  padding: 10px 19px;
  font-size: 20px;
  position: absolute;
  top: 1px;
  left: 1px;
  background: transparent;
  color: #161616;
  opacity: 0.6;
}
.mobile-nav .searchform button.searchsubmit:hover, .mobile-nav .searchform button.searchsubmit:focus {
  opacity: 1;
}
.mobile-nav .searchform .searchsubmit .la-search {
  background: url(../images/search.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}
.mobile-nav .searchform .searchsubmit .la-search:before {
  display: none;
}
.mobile-nav .sp-parent-collection-terms {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  height: 100%;
  position: relative;
  display: block;
}
.mobile-nav .sp-parent-collection-terms select {
  padding: 8px 32px 8px 1px;
  background-position: 100% center;
  border: none;
  box-shadow: none;
  background-color: transparent;
  width: 100%;
}
.mobile-nav .sp-parent-collection-terms ul {
  margin: 0;
  font-size: 1.6rem;
  position: relative;
}
.mobile-nav .sp-parent-collection-terms ul li {
  padding: 6px 0;
}
.mobile-nav .sp-parent-collection-terms ul li a {
  color: #3a3a3a;
  text-decoration: none;
}
.mobile-nav .sp-parent-collection-terms ul li a.selected {
  text-decoration: underline;
  font-weight: 500;
}
.mobile-nav .sp-parent-collection-terms ul li a:hover {
  text-decoration: underline;
}
.mobile-nav .sp-parent-collection-terms ul li:last-of-type {
  margin-right: 0;
}
.mobile-nav .sp-parent-collection-terms ul li.favorites-option {
  padding-right: 32px;
  position: relative;
}
.mobile-nav .sp-parent-collection-terms ul li.favorites-option a i {
  -webkit-text-stroke: 2px #E54141;
  color: #fff;
  margin-right: 10px;
}
.mobile-nav .sp-parent-collection-terms ul {
  border: none;
  position: relative;
  margin-right: 0px;
  margin-top: 10px;
}
.mobile-nav.nav-active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all;
}
.has-sub-header .mobile-nav {
  top: 98px;
  border-top: 0;
}
.scrolled .mobile-nav {
  top: 72px;
}
.mobile-nav .sp-edit-collection-button.sp-action-button {
  border: none;
  box-shadow: none;
  padding-left: 0;
}

.mobile-menu {
  width: 100%;
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
}
.mobile-menu li {
  display: block;
  margin-bottom: 16px;
}
.mobile-menu li:last-of-type {
  margin-bottom: 0;
}
.mobile-menu li a {
  display: inline-block;
  color: #161616;
  text-decoration: none;
  padding: 8px 0;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.3;
  transition: transform 0.4s cubic-bezier(0.4, 0.195, 0.26, 1.085);
  transition-delay: 0.1s;
}
.mobile-menu li a:hover {
  text-decoration: underline;
}
.mobile-menu li.menu-item-has-children {
  position: relative;
}
.mobile-menu li.menu-item-has-children .toggle-sub-menu {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #eee;
  text-align: center;
  display: block;
  transform: rotate(0);
  transition: all 0.25s ease-in-out;
}
.mobile-menu li.menu-item-has-children .toggle-sub-menu:hover, .mobile-menu li.menu-item-has-children .toggle-sub-menu:focus {
  background: rgb(212.5, 212.5, 212.5);
}
.mobile-menu li.menu-item-has-children ul.sub-menu {
  display: none;
}
.mobile-menu li.menu-item-has-children.open .toggle-sub-menu {
  background: #bbbbbb;
  transform: rotate(180deg);
}
.mobile-menu li ul.sub-menu {
  transition: none;
}
.mobile-menu li ul.sub-menu li {
  margin-bottom: 8px;
}
.mobile-menu li ul.sub-menu li a {
  font-size: 1.6rem;
  padding: 4px 0;
}
.mobile-menu li ul.sub-menu li:last-of-type {
  margin-bottom: 0;
}
/* end .nav */
.searchwp-live-search-results {
  max-height: calc(100vh - 98px);
}
@media (min-width: 1030px) {
  .searchwp-live-search-results {
    padding: 16px;
  }
}

.searchwp-live-search-results-showing {
  position: fixed !important;
}

.searchwp-live-search-results,
.searchwp-live-search-results-showing {
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(22, 22, 22, 0.1);
}
@media (min-width: 1030px) {
  .searchwp-live-search-results,
  .searchwp-live-search-results-showing {
    width: calc(100vw - 64px) !important;
    max-width: calc(1250px - 64px);
  }
}
@media (max-width: 1029px) {
  .searchwp-live-search-results,
  .searchwp-live-search-results-showing {
    left: 0 !important;
    width: 290px !important;
    max-height: calc(100vh - 133px);
  }
}

.searchwp-live-search-result {
  padding: 10px;
}
.searchwp-live-search-result:nth-of-type(even) {
  background: #eee;
}
.searchwp-live-search-result > a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  white-space: normal;
}
.searchwp-live-search-result > a:hover, .searchwp-live-search-result > a:focus {
  text-decoration: none;
  background: #d1d1d1;
  color: #161616;
}
.searchwp-live-search-result .search-thumb {
  display: inline-block;
  line-height: 0;
  height: 73px;
}
.searchwp-live-search-result .search-thumb img {
  height: 100%;
  width: auto;
}
@media (min-width: 1030px) {
  .searchwp-live-search-result .search-thumb {
    height: 100px;
  }
}
.searchwp-live-search-result .search-product-info {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.4;
  padding: 16px;
  max-width: calc(100% - 73px - 16px);
  width: 100%;
}
.searchwp-live-search-result .search-product-info .search-title {
  font-weight: 500;
  color: #161616;
}
.searchwp-live-search-result .search-product-info .search-price {
  color: #fb8500;
  font-size: 1.4rem;
}
@media (min-width: 1030px) {
  .searchwp-live-search-result .search-product-info {
    max-width: calc(100% - 100px - 16px);
  }
}
.searchwp-live-search-result:last-child {
  border-bottom: none;
}

.sp_upload_form,
.sp_edit_file_form {
  width: 100%;
  font-size: 1.6rem;
}
.sp_upload_form > *,
.sp_edit_file_form > * {
  margin-bottom: 16px;
}
.sp_upload_form > *:last-child,
.sp_edit_file_form > *:last-child {
  margin-bottom: 0;
}
.sp_upload_form fieldset ul span,
.sp_edit_file_form fieldset ul span {
  position: relative;
  top: -1px;
}

.sp_edit_file_form {
  padding: 32px;
  font-size: 1.6rem;
}
.sp_edit_file_form .sp-field-title,
.sp_edit_file_form .sp-field-description {
  display: none;
}
.sp_edit_file_form[count="0"] .sp-field,
.sp_edit_file_form[count="0"] .sp-save-edit {
  display: none;
}
.sp_edit_file_form[count="1"] .sp-field-title,
.sp_edit_file_form[count="1"] .sp-field-description {
  display: block;
}
.sp_edit_file_form button[type=submit] {
  display: inline-block;
  width: auto;
  margin-bottom: 0;
}
.sp_edit_file_form button.sp-save-edit {
  width: 100%;
  margin-right: 8px;
  background: #16164a;
  color: #fff;
}
.sp_edit_file_form button.sp-save-edit:hover, .sp_edit_file_form button.sp-save-edit:focus {
  background: rgb(10.3125, 10.3125, 34.6875);
}
.sp_edit_file_form button.sp-cancel-edit {
  background: #fb8500;
}
.sp_edit_file_form button.sp-cancel-edit:hover, .sp_edit_file_form button.sp-cancel-edit:focus {
  background: rgb(200, 105.9760956175, 0);
}

.sp_upload_message .alert,
.sp_form_message .alert {
  text-align: center;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #3a3a3a;
}
.sp_upload_message .alert.alert-danger,
.sp_form_message .alert.alert-danger {
  background: #fb8500;
  color: #fff;
}
.sp_upload_message .alert.alert-success,
.sp_form_message .alert.alert-success {
  background: #e6efc2;
}

#sp_file_uploads {
  border-radius: 4px;
  background: #eee;
  color: #161616;
  text-transform: none;
  font-size: 1.4rem;
  padding: 150px 32px 50px;
  width: 100%;
  position: relative;
  text-align: center;
  border: 1px dashed #3a3a3a;
}
#sp_file_uploads p {
  font-size: 1.6rem;
  color: #3a3a3a;
}
#sp_file_uploads .sp-limit-text {
  color: #fb8500;
}
#sp_file_uploads:before {
  content: "";
  display: block;
  background: url(../images/upload.svg);
  width: 62px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#sp_file_uploads input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sp-uploading-header,
.sp-done-header {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 20px;
  color: #161616;
}

.select-all-files {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #3a3a3a;
}
.select-all-files span {
  display: block;
}
.select-all-files span.deselect {
  display: none;
}
.select-all-files.all-selected span.select {
  display: none;
}
.select-all-files.all-selected span.deselect {
  display: block;
}

#sp_file_previews,
.sp_file_previews-uploading {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100% !important;
  gap: 4px;
}
#sp_file_previews .sp-file-skeleton,
.sp_file_previews-uploading .sp-file-skeleton {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 35px;
  margin-bottom: 16px;
  position: relative;
}
#sp_file_previews .sp-file-skeleton:last-of-type,
.sp_file_previews-uploading .sp-file-skeleton:last-of-type {
  margin-bottom: 0;
}
#sp_file_previews .sp-file-skeleton .skeleton-box,
.sp_file_previews-uploading .sp-file-skeleton .skeleton-box {
  display: block;
  height: 100%;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
#sp_file_previews .sp-file-skeleton .skeleton-box .skeleton-filename,
.sp_file_previews-uploading .sp-file-skeleton .skeleton-box .skeleton-filename {
  height: auto !important;
  flex: none;
  color: #161616;
  line-height: 19px;
  margin-top: 2px;
  width: calc(100% - 50px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#sp_file_previews .sp-file-skeleton .skeleton-box .skeleton-filesize,
.sp_file_previews-uploading .sp-file-skeleton .skeleton-box .skeleton-filesize {
  width: 100%;
  height: auto !important;
  flex: none;
  color: #3a3a3a;
  font-size: 12px;
}
#sp_file_previews .sp-file-skeleton .skeleton-box.skeleton-image,
.sp_file_previews-uploading .sp-file-skeleton .skeleton-box.skeleton-image {
  width: 30px;
  height: 30px;
  transform: translateY(2px);
  border: 1px solid;
  font-size: 8px;
  word-break: break-all;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #3a3a3a;
  padding: 0px 3px;
}
#sp_file_previews .sp-file-skeleton .skeleton-box.skeleton-text,
.sp_file_previews-uploading .sp-file-skeleton .skeleton-box.skeleton-text {
  width: calc(100% - 50px);
}
#sp_file_previews .sp_file_preview,
.sp_file_previews-uploading .sp_file_preview {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
#sp_file_previews .sp_file_preview.no-resource,
.sp_file_previews-uploading .sp_file_preview.no-resource {
  pointer-events: none;
  opacity: 0.5;
}
#sp_file_previews .sp_file_preview:hover, #sp_file_previews .sp_file_preview:focus,
.sp_file_previews-uploading .sp_file_preview:hover,
.sp_file_previews-uploading .sp_file_preview:focus {
  cursor: pointer;
}
#sp_file_previews .sp_file_preview:hover .sp-filename, #sp_file_previews .sp_file_preview:focus .sp-filename,
.sp_file_previews-uploading .sp_file_preview:hover .sp-filename,
.sp_file_previews-uploading .sp_file_preview:focus .sp-filename {
  color: #16164a;
}
#sp_file_previews .sp_file_preview:hover .sp-checkbox-container .checkmark, #sp_file_previews .sp_file_preview:focus .sp-checkbox-container .checkmark,
.sp_file_previews-uploading .sp_file_preview:hover .sp-checkbox-container .checkmark,
.sp_file_previews-uploading .sp_file_preview:focus .sp-checkbox-container .checkmark {
  border-color: #444BE8;
}
#sp_file_previews .sp_file_preview > button,
.sp_file_previews-uploading .sp_file_preview > button {
  display: inline-block;
  width: auto;
  padding: 0;
  border-radius: 50%;
  margin-left: 8px;
  font-size: 1.6rem;
  padding: 6px;
  height: 30px;
  width: 30px;
}
#sp_file_previews .sp_file_preview > button.sp_file_delete,
.sp_file_previews-uploading .sp_file_preview > button.sp_file_delete {
  width: 30px;
  height: 30px;
  background-color: #fff;
  background-image: url(../images/trash.svg);
  background-size: 16px;
  background-position: center;
  padding: 0;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  z-index: 2;
  opacity: 0.5;
}
#sp_file_previews .sp_file_preview > button.sp_file_delete:hover, #sp_file_previews .sp_file_preview > button.sp_file_delete:focus,
.sp_file_previews-uploading .sp_file_preview > button.sp_file_delete:hover,
.sp_file_previews-uploading .sp_file_preview > button.sp_file_delete:focus {
  opacity: 1;
  box-shadow: 0 0 0 1px #161616;
}
#sp_file_previews .sp_file_preview:last-of-type,
.sp_file_previews-uploading .sp_file_preview:last-of-type {
  margin-bottom: 0;
}
#sp_file_previews .sp_image_container,
.sp_file_previews-uploading .sp_image_container {
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 4px;
}
#sp_file_previews .sp_image_container img,
.sp_file_previews-uploading .sp_image_container img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sp_file_previews .sp-filename,
.sp_file_previews-uploading .sp-filename {
  font-size: 1.6rem;
  margin-right: 0;
  color: #3a3a3a;
  border: 1px solid transparent;
  border-radius: 4px;
  height: 40px;
  padding: 0 8px;
  padding-top: 7px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 40px);
}

#sp_file_previews .sp_file_preview {
  padding-left: 45px;
  position: relative;
}
#sp_file_previews .sp_file_preview:after {
  content: "";
  display: block;
  width: calc(100% + 26px);
  height: calc(100% + 8px);
  background-color: #eee;
  z-index: 0;
  position: absolute;
  top: -4px;
  left: -13px;
  border-radius: 2px;
  opacity: 0;
}
#sp_file_previews .sp_file_preview > * {
  z-index: 1;
}
#sp_file_previews .sp_file_preview.active:after {
  opacity: 1;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container {
  display: block;
  position: absolute;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  left: 0;
  top: 9px;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container input ~ .checkmark {
  border-color: transparent;
  border-color: #eee;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container input:checked ~ .checkmark {
  border-color: #444BE8;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #d1d1d1;
  border-radius: 4px;
}
#sp_file_previews .sp_file_preview .sp-checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #444be8;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sp-file-loader {
  margin-top: 16px;
  color: #16164a;
  position: relative;
}
.sp-file-loader .loader {
  margin-top: 32px;
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  animation-delay: -0.5s;
}
.sp-file-loader .loader div {
  position: absolute;
  border: 4px solid #161616;
  opacity: 1;
  border-radius: 50%;
  animation: sp-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.sp-file-loader .loader div:nth-child(2) {
  animation-delay: -0.5s;
}

.sp-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.sp_form_thankyou > * {
  margin-bottom: 16px;
}
.sp_form_thankyou > *:last-child {
  margin-bottom: 0;
}
.sp_form_thankyou.success {
  text-align: center;
  background: #eee;
  border-radius: 4px;
  padding: 32px 16px;
  font-size: 1.4rem;
  color: #161616;
}
.sp_form_thankyou a.btn {
  color: #fff;
  text-decoration: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
body.page-template-page-upload-files article.hentry .article-header {
  margin: 0;
  margin-bottom: 30px;
}
body.page-template-page-upload-files article.hentry .article-header h1 {
  max-width: 100%;
  font-family: "SFProText-Bold";
  font-size: 50px;
  color: #161616;
}
body.page-template-page-upload-files .entry-content {
  max-width: 1235px;
  width: 100%;
  margin-bottom: 100px;
}
body.page-template-page-upload-files .entry-content .sp_upload_form {
  width: 100% !important;
  max-width: 100% !important;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-edit-file-header {
  font-weight: bold;
  font-size: 24px;
  color: #161616;
  margin-bottom: 13px;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-field label {
  font-family: "SFProText-Medium";
  font-size: 1.6rem;
  color: #161616;
  margin-bottom: 5px;
  display: block;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-field input[type=text],
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-field textarea {
  border-radius: 4px;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #3a3a3a;
  height: 41px;
  padding: 9px;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-field textarea[name=sp-title] {
  height: 59px;
  min-width: 100%;
  min-height: 59px;
  line-height: 19px;
  padding-top: 7px;
  resize: none;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form .sp-field #sp-category {
  padding: 8px 0;
  background: transparent;
}
body.page-template-page-upload-files .entry-content .sp_edit_file_form button.sp-save-edit {
  margin-right: 0;
  height: 40px;
  border-radius: 4px;
  background: #16164a;
  color: #fff;
  width: 100%;
  font-size: 1.6rem;
  text-decoration: none;
  text-transform: none;
}

.spinner-wrap {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.spinner {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 28px;
  right: 0;
  margin: -30px 0 0 -30px;
  animation: rotation 1s infinite linear;
  border: 6px solid rgba(22, 22, 22, 0.2);
  border-radius: 100%;
}

.spinner:before {
  content: "";
  display: block;
  position: absolute;
  left: -6px;
  top: -6px;
  height: 100%;
  width: 100%;
  border-top: 6px solid #444BE8;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 100%;
}

.spinner-present {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 10px;
  padding-top: 10px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.sp-right-form .sp_image_container {
  display: none;
}
.sp-right-form .sp-filename {
  display: none;
}

.sp-form-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: 100% !important;
}
@media (min-width: 1030px) {
  .sp-form-container {
    flex-direction: row;
  }
}
.sp-form-container .sp-left-form,
.sp-form-container .sp-right-form {
  border-radius: 4px;
  background: #fff;
}
.sp-form-container .sp-left-form {
  width: 100%;
  padding: 32px;
}
.sp-form-container .sp-right-form {
  display: none;
  position: sticky;
  top: 192px;
  width: 33%;
  margin-top: 0;
  border-left: 1px solid #EEEEEE;
}
.sp-form-container .sp-right-form .sp_file_preview {
  margin-bottom: 0;
}
.sp-form-container .sp-file-edit-container {
  display: flex;
}
.sp-form-container.is-editing .sp-left-form {
  width: 67%;
}
.sp-form-container.is-editing .sp-right-form {
  display: block;
  width: 33%;
}

.select2 {
  display: block !important;
  width: 100% !important;
}

.select2-container.select2-container--custom-selection {
  margin-top: 8px;
}
.select2-container.select2-container--custom-selection .select2-selection--custom {
  background-color: transparent !important;
}
.select2-container.select2-container--custom-selection .select2-selection__rendered {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 !important;
}
.select2-container.select2-container--custom-selection .select2-selection__rendered .select2-selection__choice {
  margin-top: 0;
}
.select2-container.select2-container--empty {
  height: 0px;
  overflow: hidden;
}
.select2-container .select2-selection--multiple {
  background-color: #eee !important;
  border-color: #d1d1d1 !important;
  border-radius: 2px !important;
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice {
  background-color: #161616;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1px 6px 1px 2px;
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url("../images/close-white.svg");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove:hover, .select2-container .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove:focus {
  background-image: url("../images/close-red.svg");
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered .select2-search--inline .select2-search__field {
  padding: 5px;
}

.sp-archives-action-panel {
  margin-bottom: 16px;
}
.sp-archives-action-panel .sp-archives-action-panel-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.sp-archives-action-panel .sp-add-files-button {
  background-color: #16164a;
  color: #fff;
}
.sp-archives-action-panel .sp-add-files-button span.icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background: url(../images/add-files.svg);
  filter: brightness(2);
}
.sp-archives-action-panel .sp-content-types-button i,
.sp-archives-action-panel .sp-sort-button i {
  display: inline-block;
  width: 15px;
  height: 8px;
  background-size: contain;
  background: url(../images/chev.svg);
  margin-left: 15px;
}
.sp-archives-action-panel .sp-line-button,
.sp-archives-action-panel .sp-tiles-button {
  padding: 6px;
}
.sp-archives-action-panel .sp-line-button i,
.sp-archives-action-panel .sp-tiles-button i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
.sp-archives-action-panel .sp-line-button i {
  background: url(../images/line-view.svg);
}
.sp-archives-action-panel .sp-tiles-button i {
  background: url(../images/tile-view.svg);
}

/*********************
ARCHIVE RESOURCE
*********************/
.sp-resources-container {
  display: block;
  min-height: 50vh;
  position: relative;
  width: calc(100% + 10px);
  margin-left: -5px;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .sp-resources-container {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}
.no-results {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.gutter-sizer {
  width: 0;
}

.grid-sizer,
.sp-resource-simple {
  width: 50%;
}
@media (min-width: 768px) {
  .grid-sizer,
  .sp-resource-simple {
    width: 33.333333%;
  }
}
@media (min-width: 1200px) {
  .grid-sizer,
  .sp-resource-simple {
    width: 25%;
  }
}
@media (min-width: 1640px) {
  .grid-sizer,
  .sp-resource-simple {
    width: 20%;
  }
}
/*********************
ARCHIVE COLLECTIONS
*********************/
.sp-collections-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 16px;
}
@media (min-width: 480px) {
  .sp-collections-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1030px) {
  .sp-collections-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-header-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
}
.blog-header-actions .sp-copy-to-clipboard {
  padding: 1rem 1.3rem;
  border: 1px solid #d1d1d1;
}
.blog-header-actions .sp-copy-to-clipboard i {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url(../images/link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blog-header-actions .sp-copy-to-clipboard i:before {
  content: none;
  display: none;
}
.blog-header-actions .delete-collection {
  background-color: #fb8500;
  color: #fff;
}

/*********************
ARCHIVE FILTERS
*********************/
.archive-filters {
  padding: 32px 16px;
  margin-left: auto;
  margin-right: auto;
}
.archive-filters > * {
  margin-left: auto;
  margin-right: auto;
}

.sp-archives-action-panel {
  position: relative;
}
.sp-archives-action-panel .right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sp-archives-action-panel .right .facetwp-facet-results_count {
  text-align: left;
  background: #9d9d9d;
  line-height: 35px;
  color: #fff;
  border-radius: 2px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
  margin-bottom: 0;
}

.archive-filter-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
}
.archive-filter-bar .facetwp-facet {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .archive-filter-bar {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .archive-filter-bar {
    position: absolute;
    top: 46px;
    background: #f8f8f8;
    padding: 16px;
    width: 100%;
    z-index: 9;
    left: 0;
    border-top: 1px solid #EBEBF0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.215s ease-in-out, transform 0.215s ease-in-out;
  }
  .archive-filter-bar.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}

.sp-filters-toggle {
  order: 2;
  width: 100px;
}
@media (min-width: 768px) {
  .sp-filters-toggle {
    display: none;
  }
}
@media (max-width: 400px) {
  .sp-filters-toggle {
    width: 50px;
  }
  .sp-filters-toggle span {
    display: none;
  }
}

.facetwp-facet-colors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.facetwp-color {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  margin: 0;
  position: relative;
}
.facetwp-color:before {
  position: absolute;
  content: attr(data-value);
  opacity: 0;
  left: 50%;
  bottom: -16px;
  font-size: 11px;
  color: #fff;
  background: #161616;
  display: block;
  width: 100%;
  line-height: 1;
  text-align: center;
  border-radius: 2px;
  padding: 1px 2px;
  width: auto;
  z-index: 1;
  word-break: keep-all;
  transform: translateX(-50%);
  text-transform: capitalize;
  pointer-events: none;
}
.facetwp-color:hover:before {
  opacity: 1;
}
.facetwp-color.checked:after {
  width: 14px;
  margin: 10px 0 0 7.5px;
  filter: drop-shadow(0px 1px 1px rgba(22, 22, 22, 0.3));
}

.sp-popover {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .sp-popover {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 520px;
  }
}
@media (min-width: 432px) and (max-width: 767px) {
  .sp-popover {
    display: block;
    max-width: 48%;
  }
}
@media (min-width: 768px) {
  .sp-popover {
    width: auto;
  }
}
.sp-popover.active .sp-popover-content {
  display: block !important;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
@media (min-width: 1100px) {
  .sp-popover.active .sp-popover-content {
    transform: perspective(5em) rotateX(0deg);
  }
}
.sp-popover.active .sp-popover-content#popover-color {
  line-height: 0;
}
.sp-popover.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.sp-popover-toggle {
  background: #fff;
  width: 100%;
  padding: 1rem 1.6rem;
  color: #161616;
  color: #3a3a3a;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-weight: 600;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  transition: all 0.25s ease-in-out;
}

.sp-popover-content {
  display: block !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  z-index: 9;
  min-width: 160px;
  width: clamp(160px, 420px, 100%);
  font-size: 1.4rem;
  max-height: 340px;
  overflow-y: scroll;
  padding: 8px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.215s ease-in-out;
}
@media (min-width: 1100px) {
  .sp-popover-content {
    transform: perspective(5em) rotateX(10deg);
  }
}
.sp-popover-content::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.sp-popover-content::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #16164a;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.sp-popover-content#popover-color {
  min-width: 231px;
  padding: 16px 11px 16px 16px;
}

.facetwp-type-hierarchy .facetwp-link {
  padding: 4px 26px 4px 8px;
  border-radius: 0.5rem;
  margin-bottom: 4px;
  position: relative;
}
.facetwp-type-hierarchy .facetwp-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  height: 12px;
  width: 12px;
  background-image: url("../images/arrow-right-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.facetwp-type-hierarchy .facetwp-link:last-of-type {
  margin-bottom: 0;
}
.facetwp-type-hierarchy .facetwp-link .facetwp-counter {
  display: none;
}
.facetwp-type-hierarchy .facetwp-link.checked {
  background: #d1d1d1;
}
.facetwp-type-hierarchy .facetwp-link:focus, .facetwp-type-hierarchy .facetwp-link:hover {
  background: #d1d1d1;
}

.facetwp-type-checkboxes .facetwp-checkbox {
  padding: 4px 8px;
  border-radius: 2px;
  background-image: none;
  margin-bottom: 4px;
}
.facetwp-type-checkboxes .facetwp-checkbox:last-of-type {
  margin-bottom: 0;
}
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-counter {
  display: none;
}
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-expand .fwp-collapse,
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-expand .fwp-expand {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-expand .fwp-expand {
  background-image: url("../images/expand.SVG");
}
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-expand .fwp-collapse {
  background-image: url("../images/collapse.SVG");
}
.facetwp-type-checkboxes .facetwp-checkbox.checked {
  background: #16164a;
  color: #fff;
}
.facetwp-type-checkboxes .facetwp-checkbox:focus, .facetwp-type-checkboxes .facetwp-checkbox:hover {
  background: #16164a;
  color: #fff;
}

.facetwp-sort-radio .facetwp-radio {
  padding: 4px 8px;
  border-radius: 2px;
  background-image: none;
  margin-bottom: 4px;
}
.facetwp-sort-radio .facetwp-radio:last-of-type {
  margin-bottom: 0;
}
.facetwp-sort-radio .facetwp-radio .facetwp-counter {
  display: none;
}
.facetwp-sort-radio .facetwp-radio .facetwp-expand .fwp-collapse,
.facetwp-sort-radio .facetwp-radio .facetwp-expand .fwp-expand {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.facetwp-sort-radio .facetwp-radio .facetwp-expand .fwp-expand {
  background-image: url("../images/expand.SVG");
}
.facetwp-sort-radio .facetwp-radio .facetwp-expand .fwp-collapse {
  background-image: url("../images/collapse.SVG");
}
.facetwp-sort-radio .facetwp-radio.checked {
  color: #fff;
  background: #16164a;
}
.facetwp-sort-radio .facetwp-radio:focus, .facetwp-sort-radio .facetwp-radio:hover {
  color: #fff;
  background: #16164a;
}

.sp-popover-button {
  padding: 4px 8px;
  border-radius: 0.5rem;
  background-image: none;
  margin-bottom: 4px;
  display: block;
  width: 100%;
  text-align: left;
  line-height: 1.5;
  background: #fff;
  color: #161616;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
}
.sp-popover-button.checked, .sp-popover-button:focus, .sp-popover-button:hover {
  background: #d1d1d1;
}
.sp-popover-button:last-of-type {
  margin-bottom: 0;
}

.bottom-filter-bar {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.bottom-filter-bar .facetwp-facet-results {
  margin: 0;
  order: 2;
  font-size: 1.4rem;
  font-weight: 600;
  min-width: 80px;
  text-align: right;
}

.facetwp-selections {
  font-size: 1.4rem;
  margin-bottom: -8px;
}
.facetwp-selections ul {
  margin: 0 0 16px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.facetwp-selections .facetwp-selection-label {
  display: none;
}
.facetwp-selections .facetwp-selection-value,
.facetwp-selections .facetwp-selection-value-custom {
  background-color: #16164a;
  color: #fff;
  padding: 6px 26px 7px 8px !important;
  font-size: 1.4rem;
  background-image: none !important;
  background-position: calc(100% - 8px) center !important;
  background-size: 10px !important;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(209, 209, 209, 0.05);
  transition: all 0.2s ease-in-out;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.facetwp-selections .facetwp-selection-value:after, .facetwp-selections .facetwp-selection-value:before,
.facetwp-selections .facetwp-selection-value-custom:after,
.facetwp-selections .facetwp-selection-value-custom:before {
  position: absolute;
  right: 12px;
  content: " ";
  height: 14px;
  width: 2px;
  top: 50%;
  background-color: #fff;
}
.facetwp-selections .facetwp-selection-value:before,
.facetwp-selections .facetwp-selection-value-custom:before {
  transform: translateY(-50%) rotate(45deg);
}
.facetwp-selections .facetwp-selection-value:after,
.facetwp-selections .facetwp-selection-value-custom:after {
  transform: translateY(-50%) rotate(-45deg);
}
.facetwp-selections .facetwp-selection-value:focus, .facetwp-selections .facetwp-selection-value:hover,
.facetwp-selections .facetwp-selection-value-custom:focus,
.facetwp-selections .facetwp-selection-value-custom:hover {
  background-color: rgb(16.15625, 16.15625, 54.34375);
}
.facetwp-selections li[data-facet=colors] .facetwp-selection-value,
.facetwp-selections li[data-facet=colors] .facetwp-selection-value-custom, .facetwp-selections li[data-facet=sort_by] .facetwp-selection-value,
.facetwp-selections li[data-facet=sort_by] .facetwp-selection-value-custom {
  text-transform: capitalize;
}

.facetwp-type-fselect {
  line-height: 0;
}
.facetwp-type-fselect .fs-wrap {
  line-height: 1;
}
.facetwp-type-fselect .fs-wrap.fs-open .fs-label-wrap {
  border-radius: 0.5rem 0.5rem 0 0;
}
.facetwp-type-fselect .fs-dropdown,
.facetwp-type-fselect .fs-label-wrap {
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
.facetwp-type-fselect .fs-dropdown {
  border-color: #EBEBF0;
  border-radius: 0 0 0.5rem 0.5rem;
}
.facetwp-type-fselect .fs-label-wrap {
  border-color: #EBEBF0;
}
.facetwp-type-fselect .fs-label-wrap .fs-arrow {
  background-image: url("../images/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  width: 14px;
  height: 100%;
  border: none;
  right: 2.1rem;
}
.facetwp-type-fselect .fs-label-wrap .fs-label {
  color: #d1d1d1;
  font-weight: 600;
  padding: 1.6rem 2.1rem 1.5rem;
}
.facetwp-type-fselect .fs-optgroup-label,
.facetwp-type-fselect .fs-search {
  font-size: 1.4rem;
  padding: 1.2rem 2.1rem 1.1rem;
}
.facetwp-type-fselect .fs-search input[type=text] {
  font-weight: 600;
}
.facetwp-type-fselect .fs-search input[type=text]::-moz-placeholder {
  color: #d1d1d1;
  font-weight: 600;
}
.facetwp-type-fselect .fs-search input[type=text]::placeholder {
  color: #d1d1d1;
  font-weight: 600;
}
.facetwp-type-fselect .fs-options {
  padding: 0.5rem 0;
}
.facetwp-type-fselect .fs-options .fs-checkbox {
  left: 1.2rem !important;
}
.facetwp-type-fselect .fs-option {
  padding: 1rem 2.1rem 1rem 4.2rem !important;
}
.facetwp-type-fselect .fs-option .fs-option-label {
  color: #d1d1d1;
  font-weight: 600;
}
.facetwp-type-fselect .fs-option.d1 .fs-checkbox {
  left: 3.2rem !important;
}

/*********************
CARD
*********************/
.sp-resource-simple {
  content-visibility: auto;
  contain-intrinsic-size: 300px 200px;
}

.sp-resource-simple {
  position: relative;
  margin-bottom: 10px;
  padding: 0 5px;
  transition: opacity 0.2s ease-in-out;
  z-index: -1;
  float: left;
  min-height: 30vw;
}
@media (min-width: 768px) {
  .sp-resource-simple {
    min-height: 20vw;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (min-width: 1200px) {
  .sp-resource-simple {
    min-height: 15vw;
  }
}
.sp-resource-simple.loaded {
  min-height: 1px !important;
  z-index: 1;
}
.sp-resource-simple .sp-resource-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1d1d1;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.sp-resource-simple .sp-resource-content {
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-resource-simple .sp-resource-content img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.sp-resource-simple .sp-resource-content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.34) 0, rgba(22, 22, 22, 0.338) 3.5%, rgba(22, 22, 22, 0.324) 7%, rgba(22, 22, 22, 0.306) 10.35%, rgba(22, 22, 22, 0.285) 13.85%, rgba(22, 22, 22, 0.262) 17.35%, rgba(22, 22, 22, 0.237) 20.85%, rgba(22, 22, 22, 0.213) 24.35%, rgba(22, 22, 22, 0.188) 27.85%, rgba(22, 22, 22, 0.165) 31.35%, rgba(22, 22, 22, 0.144) 34.85%, rgba(22, 22, 22, 0.126) 38.35%, rgba(22, 22, 22, 0.112) 41.85%, rgba(22, 22, 22, 0.103) 45.35%, rgba(22, 22, 22, 0.1) 48.85%, rgba(22, 22, 22, 0.103) 52.35%, rgba(22, 22, 22, 0.112) 55.85%, rgba(22, 22, 22, 0.126) 59.35%, rgba(22, 22, 22, 0.144) 62.85%, rgba(22, 22, 22, 0.165) 66.35%, rgba(22, 22, 22, 0.188) 69.85%, rgba(22, 22, 22, 0.213) 73.35%, rgba(22, 22, 22, 0.237) 76.85%, rgba(22, 22, 22, 0.262) 80.35%, rgba(22, 22, 22, 0.285) 83.85%, rgba(22, 22, 22, 0.306) 87.35%, rgba(22, 22, 22, 0.324) 90.85%, rgba(22, 22, 22, 0.338) 94.35%, rgba(22, 22, 22, 0.347) 97.85%, rgba(22, 22, 22, 0.35));
  opacity: 0;
}
.sp-resource-simple footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: 0.15s ease-in-out;
  height: 100%;
}
.sp-resource-simple footer .resource-btn {
  padding: 0;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  width: 36px;
  text-align: center;
  background: #fff;
  color: #161616;
  text-decoration: none;
  border-radius: 2px;
  opacity: 0.9;
  bottom: 16px;
  position: absolute;
  right: 16px;
  cursor: pointer;
}
.sp-resource-simple footer .resource-btn.select-file {
  opacity: 0.3;
  z-index: 99;
  top: 16px;
  bottom: auto;
}
.sp-resource-simple footer .resource-btn.select-file.selected {
  opacity: 1;
}
.sp-resource-simple footer .resource-btn.collection-add {
  opacity: 0.3;
  top: 16px;
  right: 64px;
  font-size: 22px;
}
.sp-resource-simple footer .resource-btn.remove-file-btn {
  opacity: 0.3;
  top: 16px;
  right: 112px;
  font-size: 22px;
}
.sp-resource-simple footer .resource-btn:hover, .sp-resource-simple footer .resource-btn:focus {
  box-shadow: 0 0 6px 0 rgba(22, 22, 22, 0.1);
  border-color: #161616;
  opacity: 1;
}
.sp-resource-simple:hover, .sp-resource-simple:focus {
  cursor: zoom-in;
}
.sp-resource-simple:hover .sp-resource-content:after, .sp-resource-simple:focus .sp-resource-content:after {
  opacity: 1;
}
.sp-resource-simple:hover footer, .sp-resource-simple:focus footer {
  opacity: 1;
  pointer-events: all;
}
.sp-resource-simple.selected .sp-resource-content:after {
  opacity: 1;
  box-shadow: inset 0 0 0 3px #16164a;
  border-radius: 2px;
}
.sp-resource-simple.selected footer {
  opacity: 1;
}
.sp-resource-simple.selected .resource-btn {
  opacity: 0;
}
.sp-resource-simple[data-preview-type=icon] {
  min-height: 200px;
}
.sp-resource-simple[data-resource-type=svg] .sp-resource-content img {
  width: 100%;
  display: block;
  padding: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sp-resource-simple[data-resource-type=mp4] .sp-resource-card, .sp-resource-simple[data-resource-type=avi] .sp-resource-card, .sp-resource-simple[data-resource-type=mp3] .sp-resource-card, .sp-resource-simple[data-resource-type=mov] .sp-resource-card, .sp-resource-simple[data-resource-type=wav] .sp-resource-card, .sp-resource-simple[data-resource-type="3gp"] .sp-resource-card, .sp-resource-simple[data-resource-type=m4v] .sp-resource-card, .sp-resource-simple[data-resource-type=wmv] .sp-resource-card, .sp-resource-simple[data-resource-type=mpeg] .sp-resource-card, .sp-resource-simple[data-resource-type=docx] .sp-resource-card, .sp-resource-simple[data-resource-type=xls] .sp-resource-card, .sp-resource-simple[data-resource-type=xlsx] .sp-resource-card, .sp-resource-simple[data-resource-type=ppt] .sp-resource-card, .sp-resource-simple[data-resource-type=pptx] .sp-resource-card, .sp-resource-simple[data-resource-type=txt] .sp-resource-card, .sp-resource-simple[data-resource-type=rtf] .sp-resource-card, .sp-resource-simple[data-resource-type=eps] .sp-resource-card, .sp-resource-simple[data-resource-type=ps] .sp-resource-card, .sp-resource-simple[data-resource-type=prn] .sp-resource-card, .sp-resource-simple[data-resource-type=html] .sp-resource-card, .sp-resource-simple[data-resource-type=psd] .sp-resource-card, .sp-resource-simple[data-resource-type=ai] .sp-resource-card, .sp-resource-simple[data-resource-type=indd] .sp-resource-card, .sp-resource-simple[data-resource-type=doc] .sp-resource-card {
  background-color: #fff;
}
.sp-resource-simple[data-resource-type=mp4] .sp-resource-content, .sp-resource-simple[data-resource-type=avi] .sp-resource-content, .sp-resource-simple[data-resource-type=mp3] .sp-resource-content, .sp-resource-simple[data-resource-type=mov] .sp-resource-content, .sp-resource-simple[data-resource-type=wav] .sp-resource-content, .sp-resource-simple[data-resource-type="3gp"] .sp-resource-content, .sp-resource-simple[data-resource-type=m4v] .sp-resource-content, .sp-resource-simple[data-resource-type=wmv] .sp-resource-content, .sp-resource-simple[data-resource-type=mpeg] .sp-resource-content, .sp-resource-simple[data-resource-type=docx] .sp-resource-content, .sp-resource-simple[data-resource-type=xls] .sp-resource-content, .sp-resource-simple[data-resource-type=xlsx] .sp-resource-content, .sp-resource-simple[data-resource-type=ppt] .sp-resource-content, .sp-resource-simple[data-resource-type=pptx] .sp-resource-content, .sp-resource-simple[data-resource-type=txt] .sp-resource-content, .sp-resource-simple[data-resource-type=rtf] .sp-resource-content, .sp-resource-simple[data-resource-type=eps] .sp-resource-content, .sp-resource-simple[data-resource-type=ps] .sp-resource-content, .sp-resource-simple[data-resource-type=prn] .sp-resource-content, .sp-resource-simple[data-resource-type=html] .sp-resource-content, .sp-resource-simple[data-resource-type=psd] .sp-resource-content, .sp-resource-simple[data-resource-type=ai] .sp-resource-content, .sp-resource-simple[data-resource-type=indd] .sp-resource-content, .sp-resource-simple[data-resource-type=doc] .sp-resource-content {
  line-height: 1;
  min-height: 250px;
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-label,
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-title, .sp-resource-simple[data-resource-type=avi] .sp-content-type-label,
.sp-resource-simple[data-resource-type=avi] .sp-content-type-title, .sp-resource-simple[data-resource-type=mp3] .sp-content-type-label,
.sp-resource-simple[data-resource-type=mp3] .sp-content-type-title, .sp-resource-simple[data-resource-type=mov] .sp-content-type-label,
.sp-resource-simple[data-resource-type=mov] .sp-content-type-title, .sp-resource-simple[data-resource-type=wav] .sp-content-type-label,
.sp-resource-simple[data-resource-type=wav] .sp-content-type-title, .sp-resource-simple[data-resource-type="3gp"] .sp-content-type-label,
.sp-resource-simple[data-resource-type="3gp"] .sp-content-type-title, .sp-resource-simple[data-resource-type=m4v] .sp-content-type-label,
.sp-resource-simple[data-resource-type=m4v] .sp-content-type-title, .sp-resource-simple[data-resource-type=wmv] .sp-content-type-label,
.sp-resource-simple[data-resource-type=wmv] .sp-content-type-title, .sp-resource-simple[data-resource-type=mpeg] .sp-content-type-label,
.sp-resource-simple[data-resource-type=mpeg] .sp-content-type-title, .sp-resource-simple[data-resource-type=docx] .sp-content-type-label,
.sp-resource-simple[data-resource-type=docx] .sp-content-type-title, .sp-resource-simple[data-resource-type=xls] .sp-content-type-label,
.sp-resource-simple[data-resource-type=xls] .sp-content-type-title, .sp-resource-simple[data-resource-type=xlsx] .sp-content-type-label,
.sp-resource-simple[data-resource-type=xlsx] .sp-content-type-title, .sp-resource-simple[data-resource-type=ppt] .sp-content-type-label,
.sp-resource-simple[data-resource-type=ppt] .sp-content-type-title, .sp-resource-simple[data-resource-type=pptx] .sp-content-type-label,
.sp-resource-simple[data-resource-type=pptx] .sp-content-type-title, .sp-resource-simple[data-resource-type=txt] .sp-content-type-label,
.sp-resource-simple[data-resource-type=txt] .sp-content-type-title, .sp-resource-simple[data-resource-type=rtf] .sp-content-type-label,
.sp-resource-simple[data-resource-type=rtf] .sp-content-type-title, .sp-resource-simple[data-resource-type=eps] .sp-content-type-label,
.sp-resource-simple[data-resource-type=eps] .sp-content-type-title, .sp-resource-simple[data-resource-type=ps] .sp-content-type-label,
.sp-resource-simple[data-resource-type=ps] .sp-content-type-title, .sp-resource-simple[data-resource-type=prn] .sp-content-type-label,
.sp-resource-simple[data-resource-type=prn] .sp-content-type-title, .sp-resource-simple[data-resource-type=html] .sp-content-type-label,
.sp-resource-simple[data-resource-type=html] .sp-content-type-title, .sp-resource-simple[data-resource-type=psd] .sp-content-type-label,
.sp-resource-simple[data-resource-type=psd] .sp-content-type-title, .sp-resource-simple[data-resource-type=ai] .sp-content-type-label,
.sp-resource-simple[data-resource-type=ai] .sp-content-type-title, .sp-resource-simple[data-resource-type=indd] .sp-content-type-label,
.sp-resource-simple[data-resource-type=indd] .sp-content-type-title, .sp-resource-simple[data-resource-type=doc] .sp-content-type-label,
.sp-resource-simple[data-resource-type=doc] .sp-content-type-title {
  display: block;
  width: 100%;
  padding: 8px;
  text-align: center;
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-title i, .sp-resource-simple[data-resource-type=avi] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=avi] .sp-content-type-title i, .sp-resource-simple[data-resource-type=mp3] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=mp3] .sp-content-type-title i, .sp-resource-simple[data-resource-type=mov] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=mov] .sp-content-type-title i, .sp-resource-simple[data-resource-type=wav] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=wav] .sp-content-type-title i, .sp-resource-simple[data-resource-type="3gp"] .sp-content-type-label i,
.sp-resource-simple[data-resource-type="3gp"] .sp-content-type-title i, .sp-resource-simple[data-resource-type=m4v] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=m4v] .sp-content-type-title i, .sp-resource-simple[data-resource-type=wmv] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=wmv] .sp-content-type-title i, .sp-resource-simple[data-resource-type=mpeg] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=mpeg] .sp-content-type-title i, .sp-resource-simple[data-resource-type=docx] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=docx] .sp-content-type-title i, .sp-resource-simple[data-resource-type=xls] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=xls] .sp-content-type-title i, .sp-resource-simple[data-resource-type=xlsx] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=xlsx] .sp-content-type-title i, .sp-resource-simple[data-resource-type=ppt] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=ppt] .sp-content-type-title i, .sp-resource-simple[data-resource-type=pptx] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=pptx] .sp-content-type-title i, .sp-resource-simple[data-resource-type=txt] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=txt] .sp-content-type-title i, .sp-resource-simple[data-resource-type=rtf] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=rtf] .sp-content-type-title i, .sp-resource-simple[data-resource-type=eps] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=eps] .sp-content-type-title i, .sp-resource-simple[data-resource-type=ps] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=ps] .sp-content-type-title i, .sp-resource-simple[data-resource-type=prn] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=prn] .sp-content-type-title i, .sp-resource-simple[data-resource-type=html] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=html] .sp-content-type-title i, .sp-resource-simple[data-resource-type=psd] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=psd] .sp-content-type-title i, .sp-resource-simple[data-resource-type=ai] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=ai] .sp-content-type-title i, .sp-resource-simple[data-resource-type=indd] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=indd] .sp-content-type-title i, .sp-resource-simple[data-resource-type=doc] .sp-content-type-label i,
.sp-resource-simple[data-resource-type=doc] .sp-content-type-title i {
  font-size: 42px;
  color: #16164a;
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=avi] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=avi] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=mp3] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=mp3] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=mov] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=mov] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=wav] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=wav] .sp-content-type-title .type, .sp-resource-simple[data-resource-type="3gp"] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type="3gp"] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=m4v] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=m4v] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=wmv] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=wmv] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=mpeg] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=mpeg] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=docx] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=docx] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=xls] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=xls] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=xlsx] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=xlsx] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=ppt] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=ppt] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=pptx] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=pptx] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=txt] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=txt] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=rtf] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=rtf] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=eps] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=eps] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=ps] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=ps] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=prn] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=prn] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=html] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=html] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=psd] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=psd] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=ai] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=ai] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=indd] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=indd] .sp-content-type-title .type, .sp-resource-simple[data-resource-type=doc] .sp-content-type-label .type,
.sp-resource-simple[data-resource-type=doc] .sp-content-type-title .type {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 8px;
  font-weight: bold;
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-title, .sp-resource-simple[data-resource-type=avi] .sp-content-type-title, .sp-resource-simple[data-resource-type=mp3] .sp-content-type-title, .sp-resource-simple[data-resource-type=mov] .sp-content-type-title, .sp-resource-simple[data-resource-type=wav] .sp-content-type-title, .sp-resource-simple[data-resource-type="3gp"] .sp-content-type-title, .sp-resource-simple[data-resource-type=m4v] .sp-content-type-title, .sp-resource-simple[data-resource-type=wmv] .sp-content-type-title, .sp-resource-simple[data-resource-type=mpeg] .sp-content-type-title, .sp-resource-simple[data-resource-type=docx] .sp-content-type-title, .sp-resource-simple[data-resource-type=xls] .sp-content-type-title, .sp-resource-simple[data-resource-type=xlsx] .sp-content-type-title, .sp-resource-simple[data-resource-type=ppt] .sp-content-type-title, .sp-resource-simple[data-resource-type=pptx] .sp-content-type-title, .sp-resource-simple[data-resource-type=txt] .sp-content-type-title, .sp-resource-simple[data-resource-type=rtf] .sp-content-type-title, .sp-resource-simple[data-resource-type=eps] .sp-content-type-title, .sp-resource-simple[data-resource-type=ps] .sp-content-type-title, .sp-resource-simple[data-resource-type=prn] .sp-content-type-title, .sp-resource-simple[data-resource-type=html] .sp-content-type-title, .sp-resource-simple[data-resource-type=psd] .sp-content-type-title, .sp-resource-simple[data-resource-type=ai] .sp-content-type-title, .sp-resource-simple[data-resource-type=indd] .sp-content-type-title, .sp-resource-simple[data-resource-type=doc] .sp-content-type-title {
  margin-top: 8px;
}
.sp-resource-simple[data-resource-type=mp4] .sp-resource-card, .sp-resource-simple[data-resource-type=avi] .sp-resource-card, .sp-resource-simple[data-resource-type=mov] .sp-resource-card {
  background-color: #161616;
}
.sp-resource-simple[data-resource-type=mp4] .sp-image-container video, .sp-resource-simple[data-resource-type=avi] .sp-image-container video, .sp-resource-simple[data-resource-type=mov] .sp-image-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 1;
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-label, .sp-resource-simple[data-resource-type=avi] .sp-content-type-label, .sp-resource-simple[data-resource-type=mov] .sp-content-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 0;
  text-align: center;
  z-index: 1 !important;
  position: relative;
  background: #fff;
  border-radius: 50px;
  color: #161616;
  box-shadow: 0 0 4px 0 rgba(22, 22, 74, 0.3);
}
.sp-resource-simple[data-resource-type=mp4] .sp-content-type-label i, .sp-resource-simple[data-resource-type=avi] .sp-content-type-label i, .sp-resource-simple[data-resource-type=mov] .sp-content-type-label i {
  font-size: 30px;
  color: #161616;
}
.sp-resource-simple[data-resource-type=mp4] .sp-resource-content:after, .sp-resource-simple[data-resource-type=avi] .sp-resource-content:after, .sp-resource-simple[data-resource-type=mov] .sp-resource-content:after {
  z-index: 1;
}

.sp-card-collection > a {
  position: relative;
  text-decoration: none;
  text-align: center;
}
.sp-card-collection > a:hover, .sp-card-collection > a:focus {
  text-decoration: none;
}
.sp-card-collection > a:hover .sp-card-image, .sp-card-collection > a:focus .sp-card-image {
  filter: brightness(0.6);
}
.sp-card-collection .sp-card-image {
  padding-bottom: 62%;
  margin: 0;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: all 0.15s ease-in-out;
}
.sp-card-collection .sp-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.35s ease-in-out;
}
.sp-card-collection .sp-card-footer {
  padding: 8px 16px;
}
.sp-card-collection .sp-card-footer .collection-info--title {
  font-size: 1.6rem;
  line-height: 1.35;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 480px) {
  .sp-card-collection .sp-card-footer .collection-info--title {
    font-size: 1.8rem;
  }
}
.sp-card-collection .sp-card-footer .collection-info--count {
  font-size: 1.4rem;
  color: #3a3a3a;
}

/*********************
MODAL STYLES
*********************/
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 22, 22, 0.92);
  cursor: zoom-out;
  z-index: 999;
  backface-visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 64px 0;
}
@media (min-width: 1030px) {
  .modal {
    padding: 32px 72px;
  }
}
@media (min-width: 1440px) {
  .modal {
    padding: 32px 128px;
  }
}
.modal.show-modal {
  display: block;
}
.modal .modal-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  position: fixed;
  width: calc(100% - 32px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1440px) {
  .modal .modal-pagination {
    width: calc(100% - 96px);
  }
}
.modal .modal-pagination button {
  display: none;
  border-radius: 50px;
  font-size: 26px;
  padding: 7px;
  background: #fff;
  color: #161616;
  opacity: 0.6;
}
.modal .modal-pagination button i {
  pointer-events: none;
}
.modal .modal-pagination button.sp-next {
  margin-left: auto;
}
.modal .modal-pagination button.active {
  pointer-events: all;
  display: inline-block;
}
.modal .modal-pagination button.active:hover, .modal .modal-pagination button.active:focus {
  opacity: 1;
}

.sp-action-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sp-action-message p {
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.sp-action-message .sp-loader {
  position: relative;
  top: auto;
  left: auto;
  transform: translate(0, 0);
  margin-top: 32px;
}

.sp-loader {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content {
  /* min-height: 100%; */
  min-height: calc(100vh - 196px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-resource .modal-content {
  min-height: 1px;
}
@media (min-width: 1030px) {
  .modal-content {
    min-height: calc(100vh - 64px);
  }
}
.modal-content.loaded .modal-inner-content {
  min-height: auto;
}
.modal-content .modal-inner-content {
  position: relative;
  cursor: auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(22, 22, 22, 0.15);
  min-width: 0;
  min-height: calc(100vh - 192px);
  margin: auto;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.modal-content .modal-inner-content .pdf-el {
  width: 100%;
  height: 100%;
}
.modal-content header.sp-lightbox-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .modal-content header.sp-lightbox-header {
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
  }
}
body.single-resource .modal-content header.sp-lightbox-header {
  padding: 10px 16px;
}
@media (min-width: 768px) {
  body.single-resource .modal-content header.sp-lightbox-header {
    padding: 10px 32px;
  }
}
.modal-content header.sp-lightbox-header .sp-lightbox-left-header h3 {
  font-size: 16px;
  color: #161616;
}
.modal-content header.sp-lightbox-header .sp-image-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #9d9d9d;
  line-height: 1;
  color: #fff;
  border-radius: 2px;
  padding: 0 10px;
  height: 36px;
  font-size: 12px;
  margin-right: 8px;
}
.modal-content header.sp-lightbox-header .sp-image-info .sp-filetype {
  text-transform: uppercase;
  font-weight: 600;
  font-family: "SFProText-Bold";
}
.modal-content header.sp-lightbox-header .sp-image-info .sp-dot {
  padding: 0 5px;
  font-size: 29px;
  line-height: 0;
  display: inline-block;
}
.modal-content header.sp-lightbox-header .sp-lightbox-right-header {
  display: inline-flex;
  flex-direction: row;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
}
@media (max-width: 560px) {
  .modal-content header.sp-lightbox-header .sp-lightbox-right-header {
    flex-wrap: wrap;
  }
}
.modal-content header.sp-lightbox-header .sp-download-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #16164a;
}
.modal-content header.sp-lightbox-header .sp-download-group > .sp-action-button {
  background-color: transparent;
  width: auto;
  min-width: 36px;
  box-shadow: none;
}
.modal-content header.sp-lightbox-header .sp-download-group > .sp-action-button.sp-download-resource {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 11px;
}
.modal-content header.sp-lightbox-header .sp-download-group > .sp-action-button.sp-sizes-actions {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 30px;
  justify-content: center;
  border-left: 1px solid rgba(22, 22, 74, 0.3);
}
.modal-content header.sp-lightbox-header .sp-download-group:hover {
  box-shadow: 0 0 4px 0 rgba(22, 22, 74, 0.3);
}
.modal-content header.sp-lightbox-header .sp-download-group:hover .sp-action-button {
  background: #16164a;
  color: #fff;
}
.modal-content header.sp-lightbox-header .sp-download-group:hover .sp-sizes-actions {
  border-color: rgb(10.3125, 10.3125, 34.6875);
}
.modal-content header.sp-lightbox-header .sp-download-group:focus, .modal-content header.sp-lightbox-header .sp-download-group:active {
  box-shadow: 0 0 4px 0 rgba(22, 22, 74, 0.3);
  border-color: rgb(10.3125, 10.3125, 34.6875);
  background: #16164a;
  color: #fff;
  outline: none;
  right: 0;
  top: 0;
  outline: none;
}
.modal-content header.sp-lightbox-header .sp-tippy-dropdown {
  margin: 8px;
}
.modal-content header.sp-lightbox-header .sp-tippy-dropdown#download-more-sizes {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.modal-content header.sp-lightbox-header .text-btn {
  display: block;
  text-align: right;
  padding: 6px 0;
}
.modal-content header.sp-lightbox-header .text-btn:last-of-type {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.modal-content header.sp-lightbox-header .resource-btn-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 4px 10px;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: none;
}
.modal-content header.sp-lightbox-header .resource-btn-text i {
  font-size: 20px;
  margin-right: 8px;
}
.modal-content header.sp-lightbox-header .resource-btn-text:last-of-type {
  margin-bottom: 0;
}
.modal-content header.sp-lightbox-header .resource-btn-text.sp-edit {
  background: #eee;
}
.modal-content header.sp-lightbox-header .resource-btn-text.sp-trash {
  background: #e00024;
  border-color: rgb(147.5, 0, 23.7053571429);
  color: #fff;
}
.modal-content header.sp-lightbox-header .resource-btn-text.sp-trash:hover {
  background: rgb(147.5, 0, 23.7053571429);
  border-color: rgb(147.5, 0, 23.7053571429);
}
.modal-content header.sp-lightbox-header .resource-btn-text[disabled] {
  color: rgba(22, 22, 22, 0.5);
  border-color: #d1d1d1 !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.modal-content header.sp-lightbox-header .sp-action-button,
.modal-content header.sp-lightbox-header .simplefavorite-button {
  padding: 10px 6px;
  width: 38px;
  height: 36px;
}
.modal-content header.sp-lightbox-header .sp-action-button.active,
.modal-content header.sp-lightbox-header .simplefavorite-button.active {
  background-color: #e00024;
  color: #fff;
}
.modal-content header.sp-lightbox-header #sp-edit i,
.modal-content header.sp-lightbox-header .sp-trash i,
.modal-content header.sp-lightbox-header .sp-copy-to-clipboard i {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.modal-content header.sp-lightbox-header #sp-edit i:before,
.modal-content header.sp-lightbox-header .sp-trash i:before,
.modal-content header.sp-lightbox-header .sp-copy-to-clipboard i:before {
  content: none;
  display: none;
}
.modal-content header.sp-lightbox-header #sp-edit i {
  background-image: url(../images/pencil.svg);
}
.modal-content header.sp-lightbox-header #sp-edit.edit-active {
  background: #16164a;
}
.modal-content header.sp-lightbox-header #sp-edit.edit-active i {
  filter: brightness(2);
}
.modal-content header.sp-lightbox-header .sp-trash i {
  background-image: url(../images/trash.svg);
}
.modal-content header.sp-lightbox-header .sp-copy-to-clipboard i {
  background-image: url(../images/link.svg);
}
.modal-content .sp-lightbox-content {
  display: flex;
  margin: 0 auto;
  height: calc(100vh - 192px);
  position: relative;
  cursor: zoom-in;
  align-items: center;
  justify-content: center;
  background: #eee;
  width: 100%;
}
.modal-content .sp-lightbox-content.document, .modal-content .sp-lightbox-content.video {
  cursor: auto;
}
.modal-content .sp-lightbox-content > img {
  display: block;
  max-width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  max-height: 100%;
  width: 100%;
}
.modal-content .sp-lightbox-content > video {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  cursor: initial;
}
.modal-content .sp-lightbox-content.zoomed {
  height: auto;
  width: calc(100% + 32px);
  margin-left: -16px;
  cursor: zoom-out;
}
.modal-content .sp-lightbox-content.zoomed > img {
  position: relative;
  max-width: none;
  -o-object-fit: initial;
     object-fit: initial;
  height: auto;
}
.edit-active .modal-content .sp-lightbox-content.zoomed {
  height: calc(100vh - 192px);
  width: 100%;
  margin-left: 0;
}
.edit-active .modal-content .sp-lightbox-content.zoomed > img {
  display: block;
  max-width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  max-height: 100%;
  width: 100%;
}
.modal-content .sp-lightbox-info {
  line-height: 1.4;
  font-size: 1.5rem;
}
.modal-content .sp-lightbox-info.has-info {
  padding: 32px;
}
.modal-content .sp-lightbox-info .two-col-info {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.modal-content .sp-lightbox-info .two-col-info .sub-col {
  width: 50%;
}
.modal-content .sp-lightbox-info .two-col-info .sub-col > * {
  margin-bottom: 8px;
}
.modal-content .sp-lightbox-info .two-col-info .sub-col > *:last-child {
  margin-bottom: 0;
}
.modal-content .sp-lightbox-info .two-col-info h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.modal-content .sp-lightbox-info .two-col-info p.flex-paragraph {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.modal-content .sp-lightbox-info .two-col-info p.flex-paragraph i {
  font-size: 22px;
}
.modal-content .sp-lightbox-info .bottom-col {
  margin: 32px auto 0;
}
.modal-content .sp-lightbox-edit {
  line-height: 1;
  position: absolute;
  top: 56px;
  right: 0;
  height: calc(100vh - 192px);
  width: 390px;
  padding: 0;
  background: #fff;
  max-height: 100vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.15s ease-in-out;
}
.modal-content .sp-lightbox-edit.edit-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.modal-content footer.sp-lightbox-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.modal-content footer.sp-lightbox-footer .sp-lightbox-right-footer {
  margin-left: auto;
}
.modal-content audio.wp-audio-shortcode {
  min-width: 300px;
  max-width: calc(100% - 64px);
  z-index: 0;
  position: relative;
}
.modal-content audio.wp-audio-shortcode input[aria-label="vis flere mediakontroller"] {
  display: none;
}

#pdfviewer {
  height: 100%;
  width: 100%;
}
#pdfviewer.hide-viewer {
  display: none;
}

/*********************
LOGIN PAGE
*********************/
body.page-template-page-login .header,
body.page-template-page-login .footer {
  display: none;
}
body.page-template-page-login #content {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.sp-login-window {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 768px) {
  .sp-login-window {
    flex-direction: row;
  }
}
.sp-login-window .custom-logo-link {
  height: auto;
}
.sp-login-window .page-title {
  font-size: 32px;
  margin-bottom: 16px;
}
.sp-login-window .login-column {
  padding: 32px;
}
@media (min-width: 768px) {
  .sp-login-window .login-column {
    width: 50%;
  }
}
@media (min-width: 1030px) {
  .sp-login-window .login-column {
    padding: 64px;
  }
}
.sp-login-window .login-column.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sp-login-window .login-column.left-column > * {
  width: 100%;
  max-width: 380px;
}
.sp-login-window .login-column.right-column {
  display: none;
  position: relative;
}
@media (min-width: 768px) {
  .sp-login-window .login-column.right-column {
    display: block;
  }
}
.sp-login-window .login-column.right-column img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#wppb-loginform > * {
  margin-bottom: 8px;
}
#wppb-loginform > *:last-child {
  margin-bottom: 0;
}

#wppb-submit {
  background: #16164a;
  color: #fff;
  margin-top: 16px;
  font-size: 1.6rem;
}

.login-remember {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.sp-notification {
  padding: 8px 16px;
  border: 2px solid #d1d1d1;
  border-radius: 2px;
}
.sp-notification.error {
  border-color: #e00024;
}

.user-cabinet {
  display: flex;
  max-width: 1235px;
  background: #fff;
  border-radius: 4px;
  color: #3a3a3a;
  padding: 31px 32px;
  margin-bottom: 100px !important;
}
.user-cabinet .sp-usercab-nav,
.user-cabinet .sp-edit-user-container {
  width: 100%;
  padding: 0;
}
@media (min-width: 1030px) {
  .user-cabinet .sp-edit-user-container {
    width: 80%;
    padding-left: 16px;
  }
}
.user-cabinet .sp-edit-user-container h1 {
  margin-bottom: 16px;
}
.user-cabinet .sp-usercab-nav {
  margin-bottom: 32px;
}
@media (min-width: 1030px) {
  .user-cabinet .sp-usercab-nav {
    width: 20%;
    margin-bottom: 0;
  }
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list {
  margin-top: 32px;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 16px;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li.current-page a {
  text-decoration: underline;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li a {
  color: #3a3a3a;
  font-weight: 500;
  text-decoration: none;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li a svg {
  margin-right: 12px;
  transform: translateY(4px);
  width: 18px;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li a:hover {
  color: #161616;
  text-decoration: underline;
}
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li a:hover > svg path,
.user-cabinet .sp-usercab-nav ul.sp-usercab-list li a:hover > svg rect {
  stroke: #161616;
}
.user-cabinet h1 {
  font-family: "SFProText-Bold";
  font-size: 24px;
  color: #161616;
}
.user-cabinet h2 {
  font-family: "SFProText-Bold";
  font-size: 24px;
  color: #161616;
}
.user-cabinet .sp-messages,
.user-cabinet .alert {
  display: none;
  margin: 16px 0;
  padding: 16px;
  background: #e6efc2;
  border-radius: 2px;
}
.user-cabinet .sp-messages.active, .user-cabinet .sp-messages.wppb-success,
.user-cabinet .alert.active,
.user-cabinet .alert.wppb-success {
  display: block;
}
.user-cabinet label {
  display: block;
  margin-bottom: 4px;
  color: #161616;
}
.user-cabinet label[for=avatar] {
  display: none;
}
.user-cabinet input {
  height: 40px;
  border-radius: 2px;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #161616;
  width: 100%;
  padding-left: 10px;
}
.user-cabinet input[type=file] {
  padding: 8px;
  text-align: center;
}
.user-cabinet input::-moz-placeholder {
  color: #3a3a3a;
}
.user-cabinet input::placeholder {
  color: #3a3a3a;
}

.sp-edit-user-container .wppb-user-forms {
  margin-top: 32px;
}
.sp-edit-user-container .wppb-user-forms > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .sp-edit-user-container .wppb-user-forms > ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "username username avatar" "firstname lastname avatar" "email password avatar";
  }
}
.sp-edit-user-container .wppb-user-forms > ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-default-username {
    grid-area: username;
  }
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-default-first-name {
    grid-area: firstname;
  }
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-default-last-name {
    grid-area: lastname;
  }
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-default-e-mail {
    grid-area: email;
  }
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-default-password {
    grid-area: password;
  }
  .sp-edit-user-container .wppb-user-forms > ul li.wppb-avatar {
    grid-area: avatar;
  }
}
.sp-edit-user-container #avatar_info_container {
  text-align: center;
}
.sp-edit-user-container #avatar_info_container .file-thumb > a {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}
.sp-edit-user-container #avatar_info_container .file-thumb > a img {
  width: 100px;
  height: 100px;
}
.sp-edit-user-container #avatar_info_container .file-name {
  display: block;
  line-height: 1.2;
}
.sp-edit-user-container #avatar_info_container .file-type {
  display: none;
}
.sp-edit-user-container #avatar_info_container .wppb-remove-upload {
  display: inline-block;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  background-color: #eee;
  margin-top: 8px;
  font-size: 1.4rem;
}
.sp-edit-user-container #avatar_info_container .wppb-remove-upload:hover, .sp-edit-user-container #avatar_info_container .wppb-remove-upload:focus {
  background: #16164a;
  color: #fff;
}
.sp-edit-user-container .form-submit input[type=submit] {
  display: block;
  height: 40px;
  border-radius: 2px;
  background: #16164a;
  color: #fff;
  width: 100%;
  text-align: center;
}
.sp-edit-user-container .right-ava-set {
  text-align: center;
  margin: 32px 0 16px;
}
@media (min-width: 768px) {
  .sp-edit-user-container .right-ava-set {
    width: 170px;
    margin: auto;
    margin-top: 3px;
  }
}
.sp-edit-user-container .right-ava-set .sp-user-ava-set {
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 7px;
}
.sp-edit-user-container .right-ava-set .sp-user-ava-set img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-edit-user-container .right-ava-set button {
  color: #3a3a3a;
  background: transparent;
  border: none;
  font-size: 16px;
  text-transform: none;
  padding: 0;
  width: 100%;
  text-align: center;
}
.sp-edit-user-container #updateuser {
  width: 100%;
  background: #16164a;
  color: #fff;
  height: 40px;
  font-size: 1.6rem;
  text-transform: none;
}

#edit-user {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  #edit-user {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 768px) {
  #edit-user .form-submit {
    grid-column: 1/span 2;
  }
}

#add_user {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  #add_user {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  #add_user .form-submit,
  #add_user .form-role {
    grid-column: 1/span 2;
  }
}

/*********************
TIPPY
*********************/
.tippy-box {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(22, 22, 22, 0.1);
  max-width: 300px !important;
  max-height: 350px;
  min-height: 255px;
  overflow-y: auto;
}
.tippy-box .tippy-box {
  min-height: 1px;
}
@media (min-width: 768px) {
  .tippy-box {
    max-width: 303px !important;
  }
}
@media (min-width: 1100px) {
  .tippy-box {
    max-width: 300px !important;
  }
}
.tippy-box[data-theme~=sp-simple] {
  min-height: 1px !important;
  overflow-y: visible !important;
}
.tippy-box[data-theme~=sp-simple] .tippy-content {
  min-width: 1px !important;
  min-height: 1px;
}
.tippy-box .tippy-content {
  min-width: 300px;
  min-height: 255px;
  padding: 16px;
}
.tippy-box .tippy-content button {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  width: 100%;
  color: #161616;
  margin-bottom: 8px;
  text-align: left;
  padding: 1.8rem 2.1rem;
  border-radius: 2px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}
.tippy-box .tippy-content button:last-of-type {
  margin-bottom: 0;
}
.tippy-box .tippy-content button.create-collection {
  border: 2px dashed #d1d1d1;
  color: #3a3a3a;
}
.tippy-box .tippy-content button.add-to-collection {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tippy-box .tippy-content button.add-to-collection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #161616;
  opacity: 0.8;
  transition: all 0.215s ease-in-out;
}
.tippy-box .tippy-content button.add-to-collection > span {
  display: block;
  z-index: 1;
  position: relative;
}
.tippy-box .tippy-content button.add-to-collection > span.resources-count {
  color: #eee;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.tippy-box .tippy-content button.add-to-collection > span.collection-title {
  padding-right: 28px;
  word-break: break-word;
}
.tippy-box .tippy-content button.add-to-collection:focus:before, .tippy-box .tippy-content button.add-to-collection:hover:before {
  opacity: 0.5;
}
.tippy-box .tippy-content button.add-to-collection.in-collection:before {
  opacity: 0.24;
}
.tippy-box .tippy-content button.add-to-collection.in-collection:after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-image: url("../images/folder-added.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tippy-box .tippy-content button.add-to-collection.in-collection:hover:after {
  background-image: url("../images/folder-remove.svg");
}
.tippy-box .tippy-content button.add-to-collection.current-collection {
  box-shadow: inset 0 0 0 6px #219ebc;
}
.tippy-box .tippy-content button.add-to-collection.current-collection:before {
  opacity: 0;
}
.tippy-box .tippy-content .create-collection-form input[type=submit] {
  margin-top: 8px;
  width: 100%;
  background: #16164a;
  color: #fff;
}

.sp-tooltip-info {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 240px;
  height: auto;
  border-radius: 2px;
  background: #fff;
  padding: 16px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: all 0.14s ease-in-out;
  font-size: 1.4rem;
  box-shadow: 0 0 8px 1px rgba(22, 22, 22, 0.2);
}
.sp-tooltip-info .tooltip-columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sp-tooltip-info .tooltip-title {
  line-height: 1.2;
  margin-bottom: 8px;
  word-wrap: break-word;
}
.sp-tooltip-info .tooltip-type,
.sp-tooltip-info .tooltip-size {
  padding: 4px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 2px;
  background: #eee;
  font-size: 12px;
  font-weight: bold;
}
.sp-tooltip-info .tooltip-type {
  background-color: #16164a;
  color: #fff;
}
.sp-tooltip-info.active {
  opacity: 1;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************

Stylesheet: Base Mobile Stylesheet

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  color: red;
  font-family: "SFProText-Regular";
  font-size: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3a3a3a;
  background-color: #fff;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body:before {
  left: 0;
}
body:after {
  right: 0;
}
body.single-post {
  background-color: #eee;
}
body.modal-active {
  overflow: hidden;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap,
.big-wrap,
.small-wrap {
  width: 100%;
  margin: 0 auto;
}

.big-wrap {
  padding-left: 16px;
  padding-right: 16px;
}

.wrap {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.small-wrap {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 542px;
}
@media (min-width: 768px) {
  .small-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.page-wrap {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .page-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.hidden {
  display: none;
}

/*********************
LINK STYLES
*********************/
a {
  color: #161616;
  text-decoration: none;
  /* on hover */
  /* mobile tap color */
}
a:hover, a:focus {
  color: #16164a;
  text-decoration: underline;
  outline: none;
}
a:link {
  -webkit-tap-highlight-color: rgba(22, 22, 22, 0.3);
}

/*********************
H1, H2, H3, H4, H5 STYLES
*********************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: 700;
  line-height: 1.34;
  position: relative;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

h1,
.h1 {
  font-size: 3rem;
}

h2,
.h2 {
  font-size: 2.2rem;
}

h3,
.h3 {
  font-size: 2.2rem;
}

h4,
.h4 {
  font-size: 1.4rem;
}

h5,
.h5 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  background: #eee;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 0;
}
body.bg-light_gray #content {
  background: #eee;
}
body.single-resource #content {
  padding-top: 1px;
  padding-bottom: 0;
}

/* end .hentry */
.article-header,
.entry-header {
  margin: 32px 0 32px;
}
.article-header .byline,
.entry-header .byline {
  margin-top: 16px;
}

.single-title,
.page-title,
.entry-title {
  margin: 0;
}
.single-title.title-align-left,
.page-title.title-align-left,
.entry-title.title-align-left {
  text-align: left;
}
.single-title.title-align-center,
.page-title.title-align-center,
.entry-title.title-align-center {
  text-align: center;
}
.single-title.title-align-right,
.page-title.title-align-right,
.entry-title.title-align-right {
  text-align: right;
}

/* post meta */
.byline,
cite {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #d1d1d1;
  display: block;
}

hr,
.wp-block-separator {
  border: none;
  height: 1px;
  margin: 1.65em auto;
  background: #eee;
}

.entry-content > *:first-child {
  margin-top: 32px;
}
.entry-content > *:first-child.wp-block-cover, .entry-content > *:first-child.banner {
  margin-top: 0;
}

/* entry content */
.entry-content > *,
.wp-block-media-text__content > *,
.wp-block-group__inner-container > *,
.wp-block-column > *,
.c-accordion__content > * {
  margin-bottom: 32px;
}
.entry-content > *:last-child,
.wp-block-media-text__content > *:last-child,
.wp-block-group__inner-container > *:last-child,
.wp-block-column > *:last-child,
.c-accordion__content > *:last-child {
  margin-bottom: 0;
}
.single-post .entry-content > *, .page-template-page-narrow .entry-content > *, .page-template-page-very-narrow .entry-content > *, .page-template-page-upload-files .entry-content > *,
.single-post .wp-block-media-text__content > *,
.page-template-page-narrow .wp-block-media-text__content > *,
.page-template-page-very-narrow .wp-block-media-text__content > *,
.page-template-page-upload-files .wp-block-media-text__content > *,
.single-post .wp-block-group__inner-container > *,
.page-template-page-narrow .wp-block-group__inner-container > *,
.page-template-page-very-narrow .wp-block-group__inner-container > *,
.page-template-page-upload-files .wp-block-group__inner-container > *,
.single-post .wp-block-column > *,
.page-template-page-narrow .wp-block-column > *,
.page-template-page-very-narrow .wp-block-column > *,
.page-template-page-upload-files .wp-block-column > *,
.single-post .c-accordion__content > *,
.page-template-page-narrow .c-accordion__content > *,
.page-template-page-very-narrow .c-accordion__content > *,
.page-template-page-upload-files .c-accordion__content > * {
  margin-bottom: 32px;
}
.single-post .entry-content > *:first-child, .page-template-page-narrow .entry-content > *:first-child, .page-template-page-very-narrow .entry-content > *:first-child, .page-template-page-upload-files .entry-content > *:first-child,
.single-post .wp-block-media-text__content > *:first-child,
.page-template-page-narrow .wp-block-media-text__content > *:first-child,
.page-template-page-very-narrow .wp-block-media-text__content > *:first-child,
.page-template-page-upload-files .wp-block-media-text__content > *:first-child,
.single-post .wp-block-group__inner-container > *:first-child,
.page-template-page-narrow .wp-block-group__inner-container > *:first-child,
.page-template-page-very-narrow .wp-block-group__inner-container > *:first-child,
.page-template-page-upload-files .wp-block-group__inner-container > *:first-child,
.single-post .wp-block-column > *:first-child,
.page-template-page-narrow .wp-block-column > *:first-child,
.page-template-page-very-narrow .wp-block-column > *:first-child,
.page-template-page-upload-files .wp-block-column > *:first-child,
.single-post .c-accordion__content > *:first-child,
.page-template-page-narrow .c-accordion__content > *:first-child,
.page-template-page-very-narrow .c-accordion__content > *:first-child,
.page-template-page-upload-files .c-accordion__content > *:first-child {
  margin-top: 0;
}
.single-post .entry-content > *:last-child, .page-template-page-narrow .entry-content > *:last-child, .page-template-page-very-narrow .entry-content > *:last-child, .page-template-page-upload-files .entry-content > *:last-child,
.single-post .wp-block-media-text__content > *:last-child,
.page-template-page-narrow .wp-block-media-text__content > *:last-child,
.page-template-page-very-narrow .wp-block-media-text__content > *:last-child,
.page-template-page-upload-files .wp-block-media-text__content > *:last-child,
.single-post .wp-block-group__inner-container > *:last-child,
.page-template-page-narrow .wp-block-group__inner-container > *:last-child,
.page-template-page-very-narrow .wp-block-group__inner-container > *:last-child,
.page-template-page-upload-files .wp-block-group__inner-container > *:last-child,
.single-post .wp-block-column > *:last-child,
.page-template-page-narrow .wp-block-column > *:last-child,
.page-template-page-very-narrow .wp-block-column > *:last-child,
.page-template-page-upload-files .wp-block-column > *:last-child,
.single-post .c-accordion__content > *:last-child,
.page-template-page-narrow .c-accordion__content > *:last-child,
.page-template-page-very-narrow .c-accordion__content > *:last-child,
.page-template-page-upload-files .c-accordion__content > *:last-child {
  margin-bottom: 0;
}
.entry-content a,
.wp-block-media-text__content a,
.wp-block-group__inner-container a,
.wp-block-column a,
.c-accordion__content a {
  color: #219ebc;
  text-decoration: underline;
}
.entry-content a.btn, .entry-content a.button,
.wp-block-media-text__content a.btn,
.wp-block-media-text__content a.button,
.wp-block-group__inner-container a.btn,
.wp-block-group__inner-container a.button,
.wp-block-column a.btn,
.wp-block-column a.button,
.c-accordion__content a.btn,
.c-accordion__content a.button {
  color: #fff;
  text-decoration: none;
}
.entry-content ul,
.entry-content ol,
.wp-block-media-text__content ul,
.wp-block-media-text__content ol,
.wp-block-group__inner-container ul,
.wp-block-group__inner-container ol,
.wp-block-column ul,
.wp-block-column ol,
.c-accordion__content ul,
.c-accordion__content ol {
  margin-top: 0;
  padding: 0;
}
.entry-content ul li,
.entry-content ol li,
.wp-block-media-text__content ul li,
.wp-block-media-text__content ol li,
.wp-block-group__inner-container ul li,
.wp-block-group__inner-container ol li,
.wp-block-column ul li,
.wp-block-column ol li,
.c-accordion__content ul li,
.c-accordion__content ol li {
  list-style: initial;
  margin-left: 20px;
}
.entry-content ul li a,
.entry-content ol li a,
.wp-block-media-text__content ul li a,
.wp-block-media-text__content ol li a,
.wp-block-group__inner-container ul li a,
.wp-block-group__inner-container ol li a,
.wp-block-column ul li a,
.wp-block-column ol li a,
.c-accordion__content ul li a,
.c-accordion__content ol li a {
  display: inline;
}
.entry-content ol li,
.wp-block-media-text__content ol li,
.wp-block-group__inner-container ol li,
.wp-block-column ol li,
.c-accordion__content ol li {
  list-style-type: decimal;
  margin-bottom: 16px;
}
.entry-content ol li:last-of-type,
.wp-block-media-text__content ol li:last-of-type,
.wp-block-group__inner-container ol li:last-of-type,
.wp-block-column ol li:last-of-type,
.c-accordion__content ol li:last-of-type {
  margin-bottom: 0;
}
.entry-content fieldset,
.wp-block-media-text__content fieldset,
.wp-block-group__inner-container fieldset,
.wp-block-column fieldset,
.c-accordion__content fieldset {
  border: none;
  margin: 0;
  padding: 8px 16px;
  background: #eee;
  border-radius: 4px;
}
.entry-content fieldset ul,
.wp-block-media-text__content fieldset ul,
.wp-block-group__inner-container fieldset ul,
.wp-block-column fieldset ul,
.c-accordion__content fieldset ul {
  margin-bottom: 0;
}
.entry-content fieldset ul li,
.wp-block-media-text__content fieldset ul li,
.wp-block-group__inner-container fieldset ul li,
.wp-block-column fieldset ul li,
.c-accordion__content fieldset ul li {
  margin-left: 0;
  list-style: none;
}
.entry-content .small-width,
.wp-block-media-text__content .small-width,
.wp-block-group__inner-container .small-width,
.wp-block-column .small-width,
.c-accordion__content .small-width {
  max-width: 340px;
}
.entry-content .medium-width,
.wp-block-media-text__content .medium-width,
.wp-block-group__inner-container .medium-width,
.wp-block-column .medium-width,
.c-accordion__content .medium-width {
  max-width: 520px;
}
.entry-content .small-wrap,
.wp-block-media-text__content .small-wrap,
.wp-block-group__inner-container .small-wrap,
.wp-block-column .small-wrap,
.c-accordion__content .small-wrap {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.entry-content .center,
.wp-block-media-text__content .center,
.wp-block-group__inner-container .center,
.wp-block-column .center,
.c-accordion__content .center {
  margin-left: auto;
  margin-right: auto;
}
.entry-content .block-small-wrap .wp-block-group__inner-container,
.wp-block-media-text__content .block-small-wrap .wp-block-group__inner-container,
.wp-block-group__inner-container .block-small-wrap .wp-block-group__inner-container,
.wp-block-column .block-small-wrap .wp-block-group__inner-container,
.c-accordion__content .block-small-wrap .wp-block-group__inner-container {
  max-width: 1250px;
}
.entry-content .seperator,
.wp-block-media-text__content .seperator,
.wp-block-group__inner-container .seperator,
.wp-block-column .seperator,
.c-accordion__content .seperator {
  position: relative;
}
.entry-content .seperator:before,
.wp-block-media-text__content .seperator:before,
.wp-block-group__inner-container .seperator:before,
.wp-block-column .seperator:before,
.c-accordion__content .seperator:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 70px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.entry-content blockquote,
.wp-block-media-text__content blockquote,
.wp-block-group__inner-container blockquote,
.wp-block-column blockquote,
.c-accordion__content blockquote {
  line-height: 1.4;
}
.entry-content blockquote > *,
.wp-block-media-text__content blockquote > *,
.wp-block-group__inner-container blockquote > *,
.wp-block-column blockquote > *,
.c-accordion__content blockquote > * {
  margin-bottom: 16px;
}
.entry-content blockquote > *:last-child,
.wp-block-media-text__content blockquote > *:last-child,
.wp-block-group__inner-container blockquote > *:last-child,
.wp-block-column blockquote > *:last-child,
.c-accordion__content blockquote > *:last-child {
  margin-bottom: 0;
}
.entry-content blockquote.wp-block-pullquote,
.wp-block-media-text__content blockquote.wp-block-pullquote,
.wp-block-group__inner-container blockquote.wp-block-pullquote,
.wp-block-column blockquote.wp-block-pullquote,
.c-accordion__content blockquote.wp-block-pullquote {
  padding: 32px 0;
}
.entry-content dd,
.wp-block-media-text__content dd,
.wp-block-group__inner-container dd,
.wp-block-column dd,
.c-accordion__content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 8px;
}
.entry-content img,
.wp-block-media-text__content img,
.wp-block-group__inner-container img,
.wp-block-column img,
.c-accordion__content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.wp-block-media-text__content .size-auto,
.wp-block-media-text__content .size-full,
.wp-block-media-text__content .size-large,
.wp-block-media-text__content .size-medium,
.wp-block-media-text__content .size-thumbnail,
.wp-block-group__inner-container .size-auto,
.wp-block-group__inner-container .size-full,
.wp-block-group__inner-container .size-large,
.wp-block-group__inner-container .size-medium,
.wp-block-group__inner-container .size-thumbnail,
.wp-block-column .size-auto,
.wp-block-column .size-full,
.wp-block-column .size-large,
.wp-block-column .size-medium,
.wp-block-column .size-thumbnail,
.c-accordion__content .size-auto,
.c-accordion__content .size-full,
.c-accordion__content .size-large,
.c-accordion__content .size-medium,
.c-accordion__content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content .alignfull,
.wp-block-media-text__content .alignfull,
.wp-block-group__inner-container .alignfull,
.wp-block-column .alignfull,
.c-accordion__content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  max-width: 1000%;
}
.entry-content .alignwide,
.wp-block-media-text__content .alignwide,
.wp-block-group__inner-container .alignwide,
.wp-block-column .alignwide,
.c-accordion__content .alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  width: auto;
  max-width: 1000%;
}
.entry-content .alignfull img,
.entry-content .alignwide img,
.wp-block-media-text__content .alignfull img,
.wp-block-media-text__content .alignwide img,
.wp-block-group__inner-container .alignfull img,
.wp-block-group__inner-container .alignwide img,
.wp-block-column .alignfull img,
.wp-block-column .alignwide img,
.c-accordion__content .alignfull img,
.c-accordion__content .alignwide img {
  display: block;
  margin: 0 auto;
}
.has-sidebar .entry-content .alignfull,
.has-sidebar .entry-content .alignwide,
.has-sidebar .wp-block-media-text__content .alignfull,
.has-sidebar .wp-block-media-text__content .alignwide,
.has-sidebar .wp-block-group__inner-container .alignfull,
.has-sidebar .wp-block-group__inner-container .alignwide,
.has-sidebar .wp-block-column .alignfull,
.has-sidebar .wp-block-column .alignwide,
.has-sidebar .c-accordion__content .alignfull,
.has-sidebar .c-accordion__content .alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-file,
.wp-block-media-text__content pre,
.wp-block-media-text__content .wp-block-code,
.wp-block-media-text__content .wp-block-file,
.wp-block-group__inner-container pre,
.wp-block-group__inner-container .wp-block-code,
.wp-block-group__inner-container .wp-block-file,
.wp-block-column pre,
.wp-block-column .wp-block-code,
.wp-block-column .wp-block-file,
.c-accordion__content pre,
.c-accordion__content .wp-block-code,
.c-accordion__content .wp-block-file {
  border: 1px solid #d1d1d1;
  box-shadow: inset 0 0 16px 0 rgba(22, 22, 22, 0.1);
  padding: 32px;
}
.entry-content .gallery,
.wp-block-media-text__content .gallery,
.wp-block-group__inner-container .gallery,
.wp-block-column .gallery,
.c-accordion__content .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.entry-content .gallery .gallery-item,
.wp-block-media-text__content .gallery .gallery-item,
.wp-block-group__inner-container .gallery .gallery-item,
.wp-block-column .gallery .gallery-item,
.c-accordion__content .gallery .gallery-item {
  padding: 0 16px;
}
.entry-content .gallery .gallery-item a,
.wp-block-media-text__content .gallery .gallery-item a,
.wp-block-group__inner-container .gallery .gallery-item a,
.wp-block-column .gallery .gallery-item a,
.c-accordion__content .gallery .gallery-item a {
  display: block;
  line-height: 0;
}
.entry-content .gallery .gallery-item img,
.wp-block-media-text__content .gallery .gallery-item img,
.wp-block-group__inner-container .gallery .gallery-item img,
.wp-block-column .gallery .gallery-item img,
.c-accordion__content .gallery .gallery-item img {
  margin: 0;
}
.entry-content .gallery.gallery-columns-2 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-2 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-2 .gallery-item,
.wp-block-column .gallery.gallery-columns-2 .gallery-item,
.c-accordion__content .gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.entry-content .gallery.gallery-columns-3 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-3 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-3 .gallery-item,
.wp-block-column .gallery.gallery-columns-3 .gallery-item,
.c-accordion__content .gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}
.entry-content .gallery.gallery-columns-4 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-4 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-4 .gallery-item,
.wp-block-column .gallery.gallery-columns-4 .gallery-item,
.c-accordion__content .gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.entry-content .gallery.gallery-columns-5 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-5 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-5 .gallery-item,
.wp-block-column .gallery.gallery-columns-5 .gallery-item,
.c-accordion__content .gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.entry-content .gallery.gallery-columns-6 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-6 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-6 .gallery-item,
.wp-block-column .gallery.gallery-columns-6 .gallery-item,
.c-accordion__content .gallery.gallery-columns-6 .gallery-item {
  width: 16.666666667%;
}
.entry-content .wp-block-embed .video-container,
.wp-block-media-text__content .wp-block-embed .video-container,
.wp-block-group__inner-container .wp-block-embed .video-container,
.wp-block-column .wp-block-embed .video-container,
.c-accordion__content .wp-block-embed .video-container {
  position: static;
  padding-bottom: 0;
  /* 16:9 */
  height: auto;
}
.entry-content .brand-thumbnails,
.wp-block-media-text__content .brand-thumbnails,
.wp-block-group__inner-container .brand-thumbnails,
.wp-block-column .brand-thumbnails,
.c-accordion__content .brand-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
  justify-content: center;
  grid-gap: 32px;
  list-style: none;
}
.entry-content .brand-thumbnails:before, .entry-content .brand-thumbnails:after,
.wp-block-media-text__content .brand-thumbnails:before,
.wp-block-media-text__content .brand-thumbnails:after,
.wp-block-group__inner-container .brand-thumbnails:before,
.wp-block-group__inner-container .brand-thumbnails:after,
.wp-block-column .brand-thumbnails:before,
.wp-block-column .brand-thumbnails:after,
.c-accordion__content .brand-thumbnails:before,
.c-accordion__content .brand-thumbnails:after {
  content: none;
}
.entry-content .brand-thumbnails:not(.fluid-columns) > li,
.wp-block-media-text__content .brand-thumbnails:not(.fluid-columns) > li,
.wp-block-group__inner-container .brand-thumbnails:not(.fluid-columns) > li,
.wp-block-column .brand-thumbnails:not(.fluid-columns) > li,
.c-accordion__content .brand-thumbnails:not(.fluid-columns) > li {
  list-style: none;
  margin: 0;
  width: 100% !important;
}
.entry-content .brand-thumbnails > li,
.wp-block-media-text__content .brand-thumbnails > li,
.wp-block-group__inner-container .brand-thumbnails > li,
.wp-block-column .brand-thumbnails > li,
.c-accordion__content .brand-thumbnails > li {
  list-style: none;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-content .brand-thumbnails > li img,
.wp-block-media-text__content .brand-thumbnails > li img,
.wp-block-group__inner-container .brand-thumbnails > li img,
.wp-block-column .brand-thumbnails > li img,
.c-accordion__content .brand-thumbnails > li img {
  transition: all 0.2s ease-in-out;
}
.entry-content .brand-thumbnails > li a,
.wp-block-media-text__content .brand-thumbnails > li a,
.wp-block-group__inner-container .brand-thumbnails > li a,
.wp-block-column .brand-thumbnails > li a,
.c-accordion__content .brand-thumbnails > li a {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 180px;
  line-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.entry-content .brand-thumbnails > li a:hover img, .entry-content .brand-thumbnails > li a:focus img,
.wp-block-media-text__content .brand-thumbnails > li a:hover img,
.wp-block-media-text__content .brand-thumbnails > li a:focus img,
.wp-block-group__inner-container .brand-thumbnails > li a:hover img,
.wp-block-group__inner-container .brand-thumbnails > li a:focus img,
.wp-block-column .brand-thumbnails > li a:hover img,
.wp-block-column .brand-thumbnails > li a:focus img,
.c-accordion__content .brand-thumbnails > li a:hover img,
.c-accordion__content .brand-thumbnails > li a:focus img {
  opacity: 0.5;
}
.entry-content .wc-block-grid ul.wc-block-grid__products,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products,
.wp-block-column .wc-block-grid ul.wc-block-grid__products,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 16px;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product {
  display: block;
  margin: 0;
  list-style: none;
  text-align: left;
  float: none;
  width: 100%;
  max-width: 100%;
  border: none;
  text-align: left;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 125%;
  margin: 0;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image > img,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image > img,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image > img,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image > img,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-width: 1px;
  min-height: 1px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0;
  transition: all 0.25s ease-in-out;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 8px 0;
  padding: 0;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price {
  display: inline-block;
  color: #161616;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 8px;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins {
  display: inline;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins {
  color: #fb8500;
  order: 1;
  margin-left: 4px;
  text-decoration: none;
  font-weight: 500;
}
.entry-content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.wp-block-column .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del {
  order: 2;
  color: #161616;
  font-size: 1.4rem;
}
.entry-content .wc-block-grid ul.wc-block-grid__products .wc-block-grid__product-onsale,
.wp-block-media-text__content .wc-block-grid ul.wc-block-grid__products .wc-block-grid__product-onsale,
.wp-block-group__inner-container .wc-block-grid ul.wc-block-grid__products .wc-block-grid__product-onsale,
.wp-block-column .wc-block-grid ul.wc-block-grid__products .wc-block-grid__product-onsale,
.c-accordion__content .wc-block-grid ul.wc-block-grid__products .wc-block-grid__product-onsale {
  display: none;
}

/* end .entry-content */
.sp-content-not-available {
  padding: 32px;
  background: #F9E3D6;
  text-align: center;
}
.sp-content-not-available > * {
  margin-bottom: 16px;
}
.sp-content-not-available > *:last-child {
  margin-bottom: 0;
}
.sp-content-not-available h1,
.sp-content-not-available h2,
.sp-content-not-available h3 {
  margin-bottom: 16px;
}
.sp-content-not-available i {
  margin-right: 16px;
}
.sp-content-not-available a {
  margin-right: 8px;
}
.sp-content-not-available a:last-of-type {
  margin-right: 0;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
.tags {
  margin: 0;
}

/*********************
ARCHIVE STYLES
*********************/
body.blog .blog-header {
  margin: 32px 0;
  text-align: center;
}
body.blog #inner-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
body.blog #blog-sidebar {
  order: 1;
  margin-bottom: 32px;
}
body.blog #main {
  order: 2;
}

.facetwp-type-pager {
  text-align: center;
}
.facetwp-type-pager button {
  margin-top: 64px;
}

.sp-aside-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1.43px;
}

.sp-blog-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 32px;
}

/*********************
ARCHIVE BANNER
*********************/
.sp-archive-banner {
  margin-top: -32px;
}
.sp-archive-banner .banner-content {
  font-size: 1.6rem;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 32px;
}
.sp-archive-banner .banner-content h1 {
  margin-bottom: 8px;
}

/*********************
RESOURCE / COLLECTION
*********************/
header.sp-header-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
}
header.sp-header-section > * {
  margin: 0 0 8px;
}
header.sp-header-section .sp-section-title {
  margin-right: auto;
}
header.sp-header-section a.sp-section-link {
  font-size: 18px;
  font-weight: 500;
  margin-left: auto;
  text-decoration: underline;
  color: #161616;
}

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  grid-gap: 16px;
}
.sp-card-grid .woocommerce {
  display: none;
}

.resource-carousel-section {
  margin: 32px 0 0;
}
.resource-carousel-section:first-of-type {
  margin-top: 0;
}
.resource-carousel-section .woocommerce {
  display: none;
}

.sp-card {
  display: inline-block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #161616;
  margin: 0;
  transition: all 0.315s ease-in-out;
  position: relative;
}
.sp-card > * {
  margin: 0;
  z-index: 1;
}
.sp-card .sp-card-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  line-height: 1.5;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(0deg, rgba(22, 22, 22, 0.6) 10%, rgba(22, 22, 22, 0) 60%);
  transition: all 0.25s ease-in-out;
}
.sp-card .sp-card-title h3 {
  color: #fff;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
}
.sp-card .sp-card-title .sp-card-byline {
  color: #fb8500;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.43px;
}
.sp-card .sp-locked-content {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 17px;
  line-height: 0;
  border-radius: 50%;
  background: #219ebc;
  padding: 6px;
}
.sp-card.sp-card-post, .sp-card.sp-card-event {
  padding-bottom: 100%;
}

/*********************
RESOURCE ARCHIVE
*********************/
.sp-term-header {
  margin-bottom: 32px;
}
@media (min-width: 1030px) {
  .sp-term-header {
    margin-bottom: 64px;
  }
}
@media (min-width: 1030px) {
  .sp-term-header > .wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}
.sp-term-header .term-header-text {
  width: 50%;
  max-width: 620px;
}
.sp-term-header .term-header-text > * {
  margin-bottom: 16px;
}
.sp-term-header .term-header-text > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .sp-term-header .term-header-text {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.sp-term-header .term-header-info {
  display: none;
  width: 50%;
  max-width: 444px;
  margin-left: auto;
}
.sp-term-header .term-header-info ul.term-header-info-list {
  list-style: none;
  margin: 0;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #fff;
}
.sp-term-header .term-header-info ul.term-header-info-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.sp-term-header .term-header-info ul.term-header-info-list li:last-of-type {
  border-bottom: 0;
}
.sp-term-header .term-header-info ul.term-header-info-list li span.heading {
  font-weight: 700;
}
@media (min-width: 1030px) {
  .sp-term-header .term-header-info {
    display: block;
  }
}

#download-progress {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: all 0.215s ease-in-out;
}
#download-progress.display {
  opacity: 1;
}
#download-progress .progress-bar {
  height: 100%;
  width: 0;
  display: block;
  background-color: #16164a;
  transition: width 0.8s ease-in-out;
}
#download-progress .progress-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 2px;
  font-size: 14px;
}

/*********************
SINGLE RESOURCE
*********************/
.single-resource-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 32px;
}
.single-resource-header .sp-single-resource-thumbnail {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 100%;
}
.single-resource-header .sp-single-resource-thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-resource-header h1 {
  font-size: 2.2rem;
}
.single-resource-header .sp-header-content > * {
  margin-bottom: 16px;
}
.single-resource-header .sp-header-content > *:last-child {
  margin-bottom: 0;
}
.single-resource-header .sp-header-content .sp-single-coll-credit {
  color: #fb8500;
  margin: 2px;
  margin-top: -8px;
  font-size: 12px;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  font-weight: 500;
}
.single-resource-header .sp-header-content a {
  color: #16164a;
}
.single-resource-header .sp-header-content a:hover, .single-resource-header .sp-header-content a:focus {
  color: rgb(11.48125, 11.48125, 38.61875);
}

.sp-facet-filters {
  border-top: 1px solid #eee;
  padding: 32px 0 0;
}
.sp-facet-filters .facetwp-facet {
  margin-bottom: 32px;
}
.sp-facet-filters .facetwp-facet.facetwp-facet-event_types_desktop {
  display: none;
}
.sp-facet-filters .facetwp-facet.facetwp-type-dropdown select {
  background: #219ebc;
  color: #fff;
  width: 100%;
  box-shadow: none;
  border-color: #219ebc !important;
  background-image: url("../images/chevron-down-white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}
.sp-facet-filters .facetwp-facet.facetwp-type-radio {
  text-align: center;
}
.sp-facet-filters .facetwp-facet.facetwp-type-radio .facetwp-radio {
  margin: 0 16px;
  display: inline-block;
  padding: 0;
  background: none;
  font-size: 2.2rem;
}
.sp-facet-filters .facetwp-facet.facetwp-type-radio .facetwp-radio:hover {
  text-decoration: underline;
}
.sp-facet-filters .facetwp-facet.facetwp-type-radio .facetwp-radio.checked {
  color: #fb8500;
  text-decoration: underline;
}

.facetwp-facet-paginering {
  margin: 32px auto 0;
  display: block;
  text-align: center;
}
/*********************
SEARCH PAGE
*********************/
body.search-results h1.archive-title,
body.search-no-results h1.archive-title {
  margin-bottom: 32px;
}

/*********************
SINGLE POST
*********************/
body.single-post .hentry,
body.page-template-page-narrow .hentry,
body.page-template-page-very-narrow .hentry,
body.page-template-page-upload-files .hentry {
  display: flex;
  flex-direction: column;
}
body.single-post .hentry .entry-header,
body.page-template-page-narrow .hentry .entry-header,
body.page-template-page-very-narrow .hentry .entry-header,
body.page-template-page-upload-files .hentry .entry-header {
  text-align: center;
  margin: 32px 0 32px;
}
body.single-post .hentry .article-header,
body.page-template-page-narrow .hentry .article-header,
body.page-template-page-very-narrow .hentry .article-header,
body.page-template-page-upload-files .hentry .article-header {
  margin: 32px 0 32px;
}

.sp-author-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #219ebc;
}
.sp-author-box .sp-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}
.sp-author-box .sp-author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-author-box .sp-author-content {
  text-align: left;
  position: relative;
}
.sp-author-box .sp-author-content p {
  margin: 2px;
  font-size: 12px;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  font-weight: 500;
}
.sp-author-box .sp-author-content p.byline {
  color: #fb8500;
}
.sp-author-box .sp-author-content p:last-child {
  margin-bottom: 0;
}

.more-articles {
  margin-top: 64px;
  margin-bottom: 64px;
}
.more-articles .section-header {
  border-bottom: 1px solid #219ebc;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/*********************
NAVIGATION
*********************/
.nextprevious-nav {
  margin-top: 32px;
  padding: 32px 0;
  position: relative;
  position: relative;
}
.nextprevious-nav .wrap {
  position: relative;
}
.nextprevious-nav .nav-item {
  display: block;
  text-decoration: none;
  margin-bottom: 32px;
}
.nextprevious-nav .nav-item h4 {
  font-size: 2rem;
}
.nextprevious-nav .nav-item p {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #d1d1d1;
  margin-bottom: 8px;
}
.nextprevious-nav .nav-item:last-of-type {
  margin-bottom: 0;
}
.nextprevious-nav .nav-item:hover h4, .nextprevious-nav .nav-item:focus h4 {
  text-decoration: underline;
}

.pagination,
.wp-prev-next {
  margin: 8px 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #d1d1d1;
}
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 8px;
  min-width: 1em;
  display: block;
  color: #16164a;
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: rgb(11.48125, 11.48125, 38.61875);
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #161616;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #161616;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
404
*********************/
#post-not-found {
  text-align: center;
  margin-bottom: 64px;
}
#post-not-found .illustration {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 32px;
}

/*********************
OWL SLIDER
*********************/
.owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 32px);
  pointer-events: none;
}

.owl-prev,
.owl-next {
  pointer-events: all;
  display: inline-block;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 19px !important;
  line-height: 32px !important;
  background: #eee !important;
  text-align: center;
  box-shadow: 0 2px 8px 0 rgba(22, 22, 22, 0.2);
}
.owl-prev i,
.owl-next i {
  position: relative;
  top: 1px;
}
.owl-prev:hover,
.owl-next:hover {
  background: #bbbbbb !important;
}

.owl-next {
  float: right;
}

/*********************
BREADCRUMBS & BLOG HEADER
*********************/
.breadcrumbs {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.breadcrumbs > span {
  margin-right: 3px;
  margin-left: 3px;
}
.breadcrumbs > span:first-of-type {
  margin-left: 0;
}
.breadcrumbs > span:last-of-type {
  margin-right: 0;
}
.breadcrumbs > span a {
  font-weight: 600;
}
.breadcrumbs i {
  margin: 0 8px;
}

.blog-header-full {
  margin-bottom: 32px;
  margin-top: calc(-32px + 1px);
  background: #fff;
  padding: 32px 0;
}
.blog-header-full .blog-header-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-header-full .blog-header-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/*********************
SIDEBARS & ASIDES
*********************/
#blog-sidebar {
  padding-left: 32px;
  border-left: 2px solid #d1d1d1;
}
#blog-sidebar .widget {
  margin-bottom: 32px;
}
#blog-sidebar .widget .widgettitle {
  font-size: 3rem;
  margin-bottom: 32px;
}
#blog-sidebar .widget:last-of-type {
  margin-bottom: 0;
}

.no-widgets {
  background-color: #fff;
  padding: 8px;
  text-align: center;
  border: 1px solid #EBEBF0;
  border-radius: 2px;
  margin-bottom: 8px;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  position: relative;
  padding: 0;
  background: #fff;
  font-size: 1.4rem;
}
.footer #inner-footer {
  position: relative;
}
.footer .sp-footer-logo {
  display: block;
  margin: 0 auto;
  width: 140px;
}
.footer .sp-footer-logo img {
  width: 100%;
  height: auto;
}
.footer .footer-nav {
  padding: 32px 0;
}
.footer .footer-nav ul.footer-menu {
  margin: 0;
}
.footer .footer-nav ul.footer-menu > * {
  margin-bottom: 8px;
}
.footer .footer-nav ul.footer-menu > *:last-child {
  margin-bottom: 0;
}
.footer .footer-nav ul.footer-menu li {
  display: block;
}
.footer .footer-nav ul.footer-menu li a {
  display: inline-block;
  color: #161616;
}
.footer .footer-nav ul.footer-menu li a:hover, .footer .footer-nav ul.footer-menu li a:focus {
  text-decoration: underline;
  font-weight: 500;
}

.footer-widgets > * {
  border-bottom: 1px solid #eee;
}
.footer-widgets > *:last-child {
  border-bottom: 0;
}
.footer-widgets .left-widgets,
.footer-widgets .right-widgets,
.footer-widgets .middle-widgets {
  padding: 32px;
  margin-left: -32px;
  width: calc(100% + 64px);
}
.footer-widgets .left-widgets > *,
.footer-widgets .right-widgets > *,
.footer-widgets .middle-widgets > * {
  margin-bottom: 32px;
}
.footer-widgets .left-widgets > *:last-child,
.footer-widgets .right-widgets > *:last-child,
.footer-widgets .middle-widgets > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .middle-widgets {
  display: none;
}
.footer-widgets .widget {
  color: #161616;
}
.footer-widgets .widget > * {
  margin-bottom: 8px;
}
.footer-widgets .widget > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget a {
  color: #161616;
}
.footer-widgets .widget a:hover, .footer-widgets .widget a:focus {
  text-decoration: underline;
  font-weight: 500;
}
.footer-widgets .widget .widgettitle {
  font-size: 12px;
  color: #fb8500;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-widgets .widget .textwidget > * {
  margin-bottom: 16px;
}
.footer-widgets .widget .textwidget > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget ul {
  margin: 0;
  padding: 0;
}
.footer-widgets .widget ul > * {
  margin-bottom: 8px;
}
.footer-widgets .widget ul > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget ul li {
  display: block;
}
.footer-widgets .widget ul li a {
  display: inline-block;
  color: #161616;
}
.footer-widgets .sp-contact-block .sp-contact-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-widgets .sp-contact-block .sp-contact-layout i {
  font-size: 20px;
  margin-right: 8px;
  margin-top: 3px;
}
.footer-widgets .sp-contact-block a.sp-contact-layout:hover, .footer-widgets .sp-contact-block a.sp-contact-layout:focus {
  text-decoration: none;
}
.footer-widgets .sp-contact-block a.sp-contact-layout:hover span, .footer-widgets .sp-contact-block a.sp-contact-layout:focus span {
  text-decoration: underline;
}

.sp-follow a {
  display: inline-block;
  font-size: 3rem;
  margin-right: 8px;
}
.sp-follow a:last-of-type {
  margin-right: 0;
}

/*********************
MY ACCOUNT PAGE
*********************/
#loginform {
  padding: 32px;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  box-shadow: 0 1px 3px rgba(22, 22, 22, 0.04);
  border-radius: 4px;
}
#loginform label {
  display: inline-block;
  margin-bottom: 3px;
}
#loginform input[type=text], #loginform input[type=password] {
  width: 100%;
  margin: 0 0 16px 0;
}
#loginform .login-remember {
  font-weight: 400;
  float: left;
  margin-top: 8px;
}
#loginform .login-remember label {
  line-height: 1.5;
  vertical-align: baseline;
}
#loginform .login-remember label input {
  position: relative;
  top: 1px;
}
#loginform #wp-submit {
  float: right;
  background: #219ebc;
  color: #fff;
}
#loginform #wp-submit:hover, #loginform #wp-submit:focus {
  background: rgb(25.3846153846, 121.5384615385, 144.6153846154);
  color: #fff;
  outline: none;
}

.facetwp-facet-favorites_search .facetwp-input-wrap {
  display: block;
  width: 100%;
  max-width: 542px;
  margin: 0 auto;
}
.facetwp-facet-favorites_search .facetwp-input-wrap input.facetwp-search {
  width: 100%;
  padding-left: 52px;
  border-radius: 50px;
}
.facetwp-facet-favorites_search .facetwp-input-wrap .facetwp-icon {
  padding: 9px 16px;
  font-size: 20px;
  position: absolute;
  top: 1px;
  left: 1px;
  right: auto;
  background: transparent;
  color: #161616;
  opacity: 0.6;
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.facetwp-facet-favorites_search .facetwp-input-wrap .facetwp-icon:before {
  width: auto;
  background-image: none;
  content: "\f002";
}

.sp-notice {
  text-align: center;
  background: #eee;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 1.4rem;
  color: #161616;
  max-width: 542px;
  margin: 0 auto;
}

.edit-users .sp-user-table-edit {
  margin-top: 13px;
  border-top: 1px solid #D1D1D1;
  width: 100%;
}
.edit-users .sp-user-table-edit th {
  text-align: left;
  padding-top: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid #D1D1D1;
}
.edit-users .sp-user-table-edit td {
  padding-top: 19px;
  padding-bottom: 2px;
  position: relative;
}
.edit-users .sp-user-table-edit td:nth-child(1) {
  width: 25%;
}
.edit-users .sp-user-table-edit td:nth-child(1) p {
  color: #161616;
  line-height: 1;
  margin-bottom: -3px;
}
.edit-users .sp-user-table-edit td:nth-child(1) span {
  font-size: 12px;
}
.edit-users .sp-user-table-edit td:nth-child(2) {
  width: 30%;
}
.edit-users .sp-user-table-edit td:nth-child(3) {
  width: 20%;
}
.edit-users .sp-user-table-edit td:nth-child(4) {
  width: 25%;
}
.edit-users .sp-user-table-edit td:nth-child(5) {
  width: 5%;
}
.edit-users .sp-user-table-edit .sp-user-roles-drop {
  display: none;
  width: 100%;
  position: absolute;
  background: #fff;
  z-index: 2;
  box-shadow: 0px 1px 3px rgba(22, 22, 22, 0.1);
}
.edit-users .sp-user-table-edit .sp-user-roles-drop ul {
  margin-top: 0;
  margin: 0;
  padding: 7px 0;
}
.edit-users .sp-user-table-edit .sp-user-roles-drop ul li {
  list-style: none;
  margin: 0;
}
.edit-users .sp-user-table-edit .sp-user-roles-drop ul li .submit-button {
  border: none;
  background: transparent;
  color: #3a3a3a;
  padding: 6px 9px;
}
.edit-users .sp-user-table-edit .sp-user-roles-drop ul li .submit-button:hover {
  color: #161616;
}
.edit-users .sp-user-table-edit .sp-user-roles-drop:hover {
  display: block;
}
.edit-users .sp-user-table-edit button {
  position: relative;
  height: 31px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #3a3a3a;
  box-shadow: 0px 1px 3px rgba(22, 22, 22, 0.1);
  color: inherit;
  text-transform: initial;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-right: 20px;
}
.edit-users .sp-user-table-edit button.open-role-drop:after {
  content: "";
  background: url(../images/chev.svg);
  width: 14px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(8px, -1px);
  position: relative;
}
.edit-users .sp-user-table-edit button.open-role-drop:hover + .sp-user-roles-drop {
  display: block;
}
.edit-users .sp-user-table-edit button.reset-password {
  border: none;
  padding: 0;
  box-shadow: none;
  padding-left: 28px;
}
.edit-users .sp-user-table-edit button.reset-password:before {
  content: "";
  background: url(../images/reset.svg);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(8px, -1px);
  position: absolute;
  left: 0;
  top: 10px;
}
.edit-users .sp-user-table-edit button.delete-user {
  border: none;
  padding: 0;
  box-shadow: none;
}
.edit-users .sp-user-table-edit button.delete-user:before {
  content: "";
  background: url(../images/trash.svg);
  width: 15px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-1px);
}
.edit-users .sp-user-table-edit button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/***********************************
sp-resources mobile
***********************************/
span.hide-on-mob {
  display: inline-block;
}

span.hide-on-des {
  display: none;
}

@media (max-width: 1030px) {
  .edit-profile .user-cabinet {
    display: block;
  }
}
@media (max-width: 767px) {
  .modal .modal-content header.sp-lightbox-header {
    flex-direction: column;
    align-items: baseline;
    padding: 10px;
  }
  .modal .modal-content header.sp-lightbox-header .sp-lightbox-left-header h3 {
    padding-left: 0;
    margin-bottom: 5px;
  }
  .modal .modal-content .sp-lightbox-content > video {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .single-resource header.sp-lightbox-header {
    flex-direction: column;
    align-items: baseline;
    padding: 10px;
  }
  .single-resource header.sp-lightbox-header .sp-lightbox-left-header h3 {
    padding-left: 0;
    margin-bottom: 5px;
  }
  .edit-users .sp-user-table-edit th {
    display: none;
  }
  .edit-users .sp-user-table-edit td {
    padding-top: 10px;
    display: block;
    width: 100% !important;
  }
  .edit-users .sp-user-table-edit td:nth-child(5) {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 15px !important;
  }
  .edit-users .sp-user-table-edit tbody tr {
    border-bottom: 1px solid #D1D1D1;
    position: relative;
  }
  .page-template-page-edit-user-profile .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
  .edit-profile .user-cabinet .sp-edit-user-container .user-form .field-wrapper {
    display: block;
    margin-bottom: 0;
  }
  .edit-profile .user-cabinet .sp-edit-user-container .user-form .field-wrapper p {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 560px) {
  body.admin-bar .mobile-nav {
    top: 77px !important;
  }
  .has-sub-header .mobile-nav {
    top: 48px;
    border-top: 0;
  }
  .sp-archives-action-panel .sp-archives-action-panel-inner {
    flex-direction: column;
    align-items: flex-end;
  }
  .sp-archives-action-panel .sp-archives-action-panel-inner .right {
    flex-direction: unset;
    margin-top: 12px;
  }
  .sp-archives-action-panel span.hide-on-des {
    display: inline-block;
  }
  .sp-archives-action-panel span.hide-on-mob {
    display: none;
  }
}
.sp-circle-loader {
  width: 16px;
  height: 16px;
  border: 3px solid #161616;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-right: 4px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.disclaimer {
  padding: 16px 32px;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 32px;
  text-align: center;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************

  Stylesheet: 481px and Up Stylesheet

  ******************************************************************/
  /*********************
  ENTRY CONTENT STYLES
  *********************/
  /*********************
  NAVIGATION
  *********************/
  .nextprevious-nav .wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nextprevious-nav .nav-item {
    width: 50%;
    margin-bottom: 0;
  }
  .nextprevious-nav .nav-item:nth-of-type(1) {
    margin-right: auto;
  }
  .nextprevious-nav .nav-item:nth-of-type(2) {
    text-align: right;
    margin-left: auto;
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    clear: both;
  }
  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  .footer .footer-nav ul.footer-menu {
    text-align: center;
  }
  .footer .footer-nav ul.footer-menu li {
    display: inline-block;
    margin: 0 16px;
  }
  .footer-widgets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 16px;
  }
  .footer-widgets > * {
    border-bottom: 0;
  }
  .footer-widgets .left-widgets,
  .footer-widgets .right-widgets,
  .footer-widgets .middle-widgets {
    padding: 32px 0;
    margin-left: 0;
    width: 100%;
  }
  .footer-widgets .left-widgets > *,
  .footer-widgets .right-widgets > *,
  .footer-widgets .middle-widgets > * {
    margin-bottom: 32px;
  }
  .footer-widgets .left-widgets > *:last-child,
  .footer-widgets .right-widgets > *:last-child,
  .footer-widgets .middle-widgets > *:last-child {
    margin-bottom: 0;
  }
}
/*********************
TABLET & SMALLER LAPTOPS (GUTEBERG)
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 600px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  /*********************
  SINGLE RESOURCE
  *********************/
  .single-resource-header {
    padding-bottom: 0;
  }
  .single-resource-header .single-resource-header-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
  }
  .single-resource-header .single-resource-header-wrapper .breadcrumbs {
    font-size: 1.4rem;
  }
  .single-resource-header .single-resource-header-wrapper .sp-single-resource-thumbnail {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 30%;
    max-width: none;
    padding-bottom: 30%;
  }
  .single-resource-header .single-resource-header-wrapper .sp-header-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 64px;
  }
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 64px + 32px);
  }
  .owl-prev,
  .owl-next {
    box-shadow: none;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }
  .big-wrap {
    width: 100%;
    max-width: 1250px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-on-desktop {
    display: none;
  }
  /*********************
  H1, H2, H3, H4, H5 STYLES
  *********************/
  h1,
  .h1 {
    font-size: 4.2rem;
  }
  h2,
  .h2 {
    font-size: 3rem;
  }
  h3,
  .h3 {
    font-size: 2.2rem;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  body.blog #inner-content {
    display: block;
  }
  body.blog #blog-sidebar {
    margin-bottom: 0;
  }
  .sp-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sp-blog-card-grid.sp-blog-card-grid-smaller {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /*********************
  ARCHIVE BANNER
  *********************/
  .sp-archive-banner .banner-content {
    font-size: 2.2rem;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .sp-archive-banner .banner-content > * {
    max-width: 65%;
  }
  .sp-facet-filters .facetwp-facet.facetwp-facet-event_types_mobile {
    display: none;
  }
  .sp-facet-filters .facetwp-facet.facetwp-facet-event_types_desktop {
    display: block;
  }
  /*********************
  SINGLE POST
  *********************/
  body.single-post .hentry,
  body.page-template-page-narrow .hentry {
    display: block;
  }
  body.single-post .entry-content > *,
  body.single-post .entry-header > *,
  body.single-post .article-header > *,
  body.page-template-page-narrow .entry-content > *,
  body.page-template-page-narrow .entry-header > *,
  body.page-template-page-narrow .article-header > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  body.single-post .entry-content > *.alignwide,
  body.single-post .entry-header > *.alignwide,
  body.single-post .article-header > *.alignwide,
  body.page-template-page-narrow .entry-content > *.alignwide,
  body.page-template-page-narrow .entry-header > *.alignwide,
  body.page-template-page-narrow .article-header > *.alignwide {
    max-width: 1000px;
  }
  body.single-post .entry-content > *.alignfull,
  body.single-post .entry-header > *.alignfull,
  body.single-post .article-header > *.alignfull,
  body.page-template-page-narrow .entry-content > *.alignfull,
  body.page-template-page-narrow .entry-header > *.alignfull,
  body.page-template-page-narrow .article-header > *.alignfull {
    max-width: 100%;
  }
  body.page-template-page-very-narrow .hentry,
  body.page-template-page-upload-files .hentry {
    display: block;
  }
  body.page-template-page-very-narrow .entry-content > *,
  body.page-template-page-very-narrow .entry-header > *,
  body.page-template-page-very-narrow .article-header > *,
  body.page-template-page-upload-files .entry-content > *,
  body.page-template-page-upload-files .entry-header > *,
  body.page-template-page-upload-files .article-header > * {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  body.page-template-page-very-narrow .entry-content > *.alignwide,
  body.page-template-page-very-narrow .entry-header > *.alignwide,
  body.page-template-page-very-narrow .article-header > *.alignwide,
  body.page-template-page-upload-files .entry-content > *.alignwide,
  body.page-template-page-upload-files .entry-header > *.alignwide,
  body.page-template-page-upload-files .article-header > *.alignwide {
    max-width: 600px;
  }
  body.page-template-page-very-narrow .entry-content > *.alignfull,
  body.page-template-page-very-narrow .entry-header > *.alignfull,
  body.page-template-page-very-narrow .article-header > *.alignfull,
  body.page-template-page-upload-files .entry-content > *.alignfull,
  body.page-template-page-upload-files .entry-header > *.alignfull,
  body.page-template-page-upload-files .article-header > *.alignfull {
    max-width: 100%;
  }
  body.page-template-page-my-account .hentry,
  body.page-template-page-favorites .hentry {
    display: block;
  }
  body.page-template-page-my-account .article-header > *,
  body.page-template-page-favorites .article-header > * {
    max-width: 542px;
    margin-left: auto;
    margin-right: auto;
  }
  body.page-template-page-my-account .article-header > *.alignwide,
  body.page-template-page-favorites .article-header > *.alignwide {
    max-width: 600px;
  }
  body.page-template-page-my-account .article-header > *.alignfull,
  body.page-template-page-favorites .article-header > *.alignfull {
    max-width: 100%;
  }
  body.page-template-page-my-account.logged-out .entry-content > *,
  body.page-template-page-favorites.logged-out .entry-content > * {
    max-width: 542px;
    margin-left: auto;
    margin-right: auto;
  }
  body.page-template-page-my-account.logged-out .entry-content > *.alignwide,
  body.page-template-page-favorites.logged-out .entry-content > *.alignwide {
    max-width: 600px;
  }
  body.page-template-page-my-account.logged-out .entry-content > *.alignfull,
  body.page-template-page-favorites.logged-out .entry-content > *.alignfull {
    max-width: 100%;
  }
  /*********************
  RESOURCE / COLLECTION
  *********************/
  .sp-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /*********************
  SINGLE RESOURCE
  *********************/
  .single-resource-header h1 {
    font-size: 3rem;
  }
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 32px);
  }
  .owl-prev,
  .owl-next {
    box-shadow: 0 2px 8px 0 rgba(22, 22, 22, 0.2);
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer .footer-nav ul.footer-menu li {
    margin: 0 32px;
  }
  .footer-widgets {
    grid-gap: 64px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-widgets .middle-widgets {
    display: block;
  }
  .footer-widgets .left-widgets,
  .footer-widgets .middle-widgets {
    position: relative;
  }
  .footer-widgets .left-widgets:after,
  .footer-widgets .middle-widgets:after {
    content: "";
    border-right: 1px solid #eee;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: -32px;
    height: 100%;
    pointer-events: none;
  }
  /*********************
  MODAL STYLES
  *********************/
  .modal .modal-content .sp-lightbox-content > img {
    min-width: 500px;
  }
}
/*********************
MEDIUM LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 900px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 64px + 32px);
  }
  .owl-prev,
  .owl-next {
    box-shadow: none;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************

  Stylesheet: Desktop Stylsheet

  ******************************************************************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    max-width: 1250px;
  }
  /*********************
  RESOURCE / COLLECTION
  *********************/
  .sp-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /*********************
  SINGLE RESOURCE
  *********************/
  .single-resource-header .single-resource-header-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: 100%;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  .sp-blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sp-blog-card-grid.sp-blog-card-grid-smaller {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************

  Stylesheet: Super Large Monitor Stylesheet

  ******************************************************************/
  .entry-content .brand-thumbnails {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  /******************************************************************

  Stylesheet: Super Large Monitor Stylesheet

  ******************************************************************/
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (max-width: 767px) {
  /******************************************************************

  Stylesheet: Only mobile

  ******************************************************************/
  .hide-on-mobile {
    display: none;
  }
}
/*********************
MOBILE & BIGGER MOBILE (GUTEBERG)
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (max-width: 600px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  .wp-block-media-text {
    grid-row-gap: 32px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
/*********************
WOOCOMMERCE STYLESHEET
*********************/

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