@charset "UTF-8";
/**
 * The whole CSS/SASS structure is based on the Inverted Triangle CSS methodology.
 *
 * All CSS rules are grouped by type as follows:
 * Display & Box Model
 *      display
 *      box-sizing
 *      clear
 *      float
 *      overflow
 *      width
 *      height
 *      padding
 *      margin
 *      border-width
 *
 * Positioning
 *      position
 *      z-index
 *      left
 *      right
 *      top
 *      bottom
 *
 * Text
 *      font-size
 *      line-height
 *      font-family
 *      font-weight
 *      text-align
 *      vertical-align
 *      text-shadow
 *
 * Stylistic
 *      border-style
 *      border-radius
 *      box-shadow
 *      cursor
 *
 * Other
 *      content
 *
 * Colors, backgrounds
 *      border-color
 *      background-color
 *      color
 *      opacity
 *
 *
 * TABLE OF CONTENTS
 *
 *  1. Settings
 *      1.1 Global
 *
 *  2. Tools
 *      2.1 Functions
 *      2.2 Mixins
 *
 *  3. Generic
 *       3.1 Reset
 *
 *  4. Elements
 *      4.1 Default
 *      4.2 Forms
 *
 *  5. Objects
 *      5.1 Grid
 *      5.2 Fluid wrapper
 *
 *  6. Components
 */
/* 1.1 Reset
----------------------------------------------------------------------------- */
html, body,
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
abbr, acronym, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

:focus {
  outline: 0; }

ins {
  text-decoration: none; }

del {
  text-decoration: line-through; }

/* 1.2 Default
----------------------------------------------------------------------------- */
body {
  background-color: #fff;
  color: #666; }

ul {
  margin-left: 2em;
  list-style-type: circle; }

ol {
  margin-left: 2em;
  list-style-type: decimal; }

dl {
  margin-bottom: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: 0.75em; }

pre,
code,
kbd,
samp {
  font-family: "Lucida Console", Courier, "DejaVu Sans Mono", monospace, sans-serif; }

pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

code {
  font-family: monospace, serif; }

pre code {
  padding: 0.75em;
  display: block;
  border-width: 0; }

blockquote {
  min-height: 32px;
  padding: 0 22px; }

a {
  cursor: pointer;
  text-decoration: none;
  border-width: 0;
  border-style: solid; }

a:hover,
a:active {
  outline: none; }

/* Avoid grey background in IE10 */
small {
  font-size: 11px; }
  h1 small,
  h2 small,
  h3 small {
    font-size: 75%; }

strong {
  font-weight: bold; }

dfn,
em,
q,
cite {
  font-weight: normal;
  font-style: italic; }

del {
  text-decoration: line-through; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

h1 sub, h2 sub, h3 sub {
  font-size: 50%;
  bottom: 0; }

h1 sup, h2 sup, h3 sup {
  font-size: 50%;
  top: -0.75em; }

abbr,
acronym {
  text-transform: uppercase; }

hr {
  border-width: 1px 0 0;
  margin: 1.5em 0;
  border-style: solid;
  opacity: 0.1667; }

/* ----->>> IMAGES <<<-------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto; }
  #ie8 img {
    width: auto; }

video,
embed,
object,
iframe {
  max-width: 100%; }

/* ----->>> TABLES <<<-------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0; }
  table caption {
    width: 100%;
    padding: 6px 10px; }

th {
  font-weight: bold;
  vertical-align: bottom; }

td {
  font-weight: normal;
  vertical-align: top; }

/* --- Text highlighting ----------------------------------------------------------------------- */
ins {
  color: #333;
  background-color: #c1f7ff; }

mark {
  padding: 0 0.33em; }

figure {
  position: relative;
  margin-bottom: 1.5rem; }

.clearfix, .g1-section, .g1-socials-section .g1-socials-items {
  font-size: 0;
  line-height: 0; }
  .clearfix:after, .g1-section:after, .g1-socials-section .g1-socials-items:after {
    content: "";
    display: table;
    clear: both; }

.clearfix-soft:after {
  content: "";
  display: table;
  clear: both; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* Hide the clear button of a text input control */
input::-ms-clear {
  display: none; }

input,
select,
button,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 8px;
  border-width: 1px;
  font-size: 1rem;
  border-style: solid;
  border-color: #e6e6e6;
  background-color: transparent;
  color: inherit;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out; }

[type="email"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="tel"],
[type="text"],
[type="url"] {
  height: 40px; }

[type=checkbox],
[type=radio] {
  height: auto; }

input[type=search] {
  -webkit-appearance: none; }

[type=submit],
[type=reset],
[type=button],
button {
  width: auto;
  padding: 7px 28px;
  border-width: 2px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select {
  padding: 8px 24px 8px 8px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-size: 4px 4px, 4px 4px;
  background-position: calc(100% - 16px) center, calc(100% - 12px) center;
  background-repeat: no-repeat; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    -webkit-appearance: listbox;
    -moz-appearance: listbox;
    appearance: listbox;
    background-image: none;
    background-position: 0% 0%; }

html.lt-ie10 select {
  padding: 8px;
  background-image: none; }

optgroup {
  font-weight: bold; }

textarea {
  width: 100%; }

fieldset {
  display: table-column;
  min-width: inherit; }

/* Focus */
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  border-color: currentColor; }

/* Disabled */
button[disabled],
input[disabled] {
  cursor: default;
  opacity: 0.666; }

/* Placeholder text - selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.33; }

::-moz-placeholder {
  color: inherit;
  opacity: 0.33; }

:-ms-input-placeholder {
  color: inherit;
  opacity: 0.33; }

/*  Grid System
----------------------------------------------------------------------------- */
/* Base */
.g1-row {
  clear: both;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  margin: 0 auto; }
  .g1-row:after {
    display: table;
    clear: both;
    content: ""; }
  .g1-row .g1-row {
    width: auto;
    margin-left: -10px;
    margin-right: -10px; }

.g1-row-layout-page > .g1-row-background {
  background-color: #fff; }

.g1-row-inner {
  position: relative;
  z-index: 1;
  max-width: 708px;
  margin: 0 auto;
  font-size: 0; }

@media only screen and (min-width: 801px) {
  .g1-row-inner {
    max-width: 1182px; } }

.g1-row-wide > .g1-row-inner {
  max-width: none; }

.g1-row-background {
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.g1-column {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
  vertical-align: top;
  font-size: 1rem; }

@media only screen and (max-width: 800px) {
  #secondary {
    margin-top: 30px; } }

@media only screen and (min-width: 801px) {
  .g1-column {
    display: inline-block; }
  /* Columns sizes */
  .g1-column-1of2 {
    width: 50%; }
  .g1-column-1of3 {
    width: 33.33333%; }
  .g1-column-2of3 {
    width: 66.66667%; }
  .g1-column-1of6 {
    width: 16.66667%; }
  #secondary {
    padding-left: 20px; } }

@media only screen and (min-width: 1025px) {
  .g1-row .g1-row {
    margin-left: -15px;
    margin-right: -15px; }
  .g1-column {
    padding-left: 15px;
    padding-right: 15px; }
  #secondary {
    padding-left: 45px; } }

.g1-primary-max {
  width: 100%; }

.g1-row-padding-m {
  padding-top: 30px;
  padding-bottom: 30px; }

.g1-row-padding-xs {
  padding-top: 10px; }
  .g1-row-padding-xs > .g1-row-inner > .g1-column-1of3 {
    padding-top: 35px; }

.g1-current-background {
  background-color: #fff; }

/* Fluid (responsive) wrapper for iframes, objects, embeds */
.g1-fluid-wrapper {
  max-width: 100%;
  margin: 0 0 1.5em; }

.g1-fluid-wrapper-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; }
  .g1-fluid-wrapper-inner > iframe,
  .g1-fluid-wrapper-inner > object,
  .g1-fluid-wrapper-inner > embed {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%; }

.g1-fluid-wrapper-16x9 {
  width: 9999px; }

/* Vertical ads */
.g1-fluid-wrapper-300x600 {
  width: 300px; }
  .g1-fluid-wrapper-300x600 > .g1-fluid-wrapper-inner {
    padding-bottom: 200%; }

/* Rectangle ads */
.g1-fluid-wrapper-300x250 {
  width: 300px; }
  .g1-fluid-wrapper-300x250 > .g1-fluid-wrapper-inner {
    padding-bottom: 83.33333%; }

/* Horizontal ads */
.g1-fluid-wrapper-728x90 {
  width: 728px; }
  .g1-fluid-wrapper-728x90 > .g1-fluid-wrapper-inner {
    padding-bottom: 12.36264%; }

.g1-fluid-wrapper-970x250 {
  width: 970px; }
  .g1-fluid-wrapper-970x250 > .g1-fluid-wrapper-inner {
    padding-bottom: 25.7732%; }

#g1-breakpoint-desktop {
  min-width: 1024px; }

/* ----------------------------------------------------------------------------

3 . ELEMENTS

----------------------------------------------------------------------------- */
/**
 * Standard heading sizes:
 * .g1-alpha        -> h1
 * .g1-beta         -> h2
 * .g1-gamma        -> h3
 * .g1-delta        -> h4
 * .g1-epsilon      -> h5
 * .g1-zeta         -> h6
 *
 * This way we can alter the size of any heading or even paragraph without changing its tag.
 * Good for SEO and proper heading hierarchy.
 *
 * Extra heading sizes:
 * .g1-mega
 * .g1-giga
 *
 * Purpose modifiers:
 * .g1-beta-1st     -> Regular headings
 * .g1-beta-2nd     -> Section titles (e.g. "YOU MAY ALSO LIKE")
 * .g1-beta-3rd     -> Subtitles
 */
html {
  font-size: 15px; }

body,
input,
select,
textarea,
button {
  line-height: 1.5;
  font-family: "Roboto", "Arial", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

label {
  font-size: 13px;
  line-height: 20px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase; }

.g1-giga {
  font-size: 1.80203rem;
  line-height: 1.067;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #000; }

.g1-mega {
  font-size: 1.80203rem;
  line-height: 1.067;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #000; }

h1,
.g1-alpha {
  font-size: 1.60181rem;
  line-height: 1.067;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #000; }

h2,
.g1-beta {
  font-size: 1.42383rem;
  line-height: 1.125;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #000; }

h3,
.g1-gamma {
  font-size: 1.26563rem;
  line-height: 1.125;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #000; }

h4,
.g1-delta {
  font-size: 1.125rem;
  line-height: 1.2;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #000; }

h5,
.g1-epsilon,
.item-title {
  font-size: 14px;
  line-height: 18px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: #000; }

h6,
.g1-zeta {
  font-size: 11px;
  line-height: 12px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  letter-spacing: 0em;
  font-weight: 500;
  text-transform: uppercase;
  color: #000; }

/* Large screen typography */
@media only screen and (min-width: 1025px) {
  h6,
  .g1-zeta {
    font-size: 11px; }
  h5,
  .g1-epsilon,
  .item-title {
    font-size: 14px; }
  h4,
  .g1-delta {
    font-size: 18px; }
  h3,
  .g1-gamma {
    font-size: 21px; }
  h2,
  .g1-beta,
  .g1lg-beta {
    font-size: 24px; }
  h1,
  .g1-alpha,
  .g1lg-alpha {
    font-size: 29px;
    line-height: 1.067; }
  .g1-mega {
    font-size: 40px; }
  .g1-giga {
    font-size: 48px; } }

.g1-giga-2nd,
.g1-mega-2nd,
.g1-alpha-2nd,
.g1-beta-2nd,
.g1-gamma-2nd,
.g1-delta-2nd,
.g1-epsilon-2nd,
.g1-zeta-2nd {
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal; }

.g1-giga-3rd,
.g1-mega-3rd,
.g1-alpha-3rd,
.g1-beta-3rd,
.g1-gamma-3rd,
.g1-delta-3rd,
.g1-epsilon-3rd,
.g1-zeta-3rd {
  font-weight: 300;
  letter-spacing: -0.025em;
  opacity: 0.5; }

h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
dl, ol, ul, table,
legend, hr, figure {
  margin-bottom: 21px;
  margin-bottom: 1.5rem; }

.g1-typography-xl {
  font-size: 18px;
  line-height: 30px; }
  .g1-typography-xl h1,
  .g1-typography-xl h2 {
    margin-top: 3rem; }
  .g1-typography-xl h1:first-child,
  .g1-typography-xl h2:first-child {
    margin-top: 0; }

.g1-meta {
  font-size: 13px;
  line-height: 16px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  color: #999; }
  .g1-meta a {
    color: #000; }
  .g1-meta strong {
    font-weight: 400; }

.g1-meta-m {
  font-size: 15px;
  line-height: 18px; }

/* =Button */
[type=submit],
[type=reset],
[type=button],
button,
.g1-button {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  z-index: 0;
  margin-right: 0.2px;
  /*IE8 inline-block fix*/
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  zoom: 1;
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: border-color 0.175s ease-in-out, background-color 0.175s ease-in-out, color 0.175s ease-in-out, padding 0.175s ease-in-out;
  -moz-transition: border-color 0.175s ease-in-out, background-color 0.175s ease-in-out, color 0.175s ease-in-out, padding 0.175s ease-in-out;
  -o-transition: border-color 0.175s ease-in-out, background-color 0.175s ease-in-out, color 0.175s ease-in-out, padding 0.175s ease-in-out;
  transition: border-color 0.175s ease-in-out, background-color 0.175s ease-in-out, color 0.175s ease-in-out, padding 0.175s ease-in-out; }
  [type=submit]:hover,
  [type=reset]:hover,
  [type=button]:hover,
  button:hover,
  .g1-button:hover {
    box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.333); }
  [type=submit]:active,
  [type=reset]:active,
  [type=button]:active,
  button:active,
  .g1-button:active {
    box-shadow: inset 0 3px 6px -3px rgba(0, 0, 0, 0.333); }
  [type=submit]:disabled,
  [type=reset]:disabled,
  [type=button]:disabled,
  button:disabled,
  .g1-button:disabled {
    filter: grayscale(100%);
    opacity: 0.333;
    box-shadow: none; }

/* Extra small buttons */
.g1-button-xs {
  padding: 0px 9px;
  border-width: 1px;
  line-height: 19px;
  font-size: 10px; }

/* Small buttons */
.g1-button-s {
  padding: 3px 19px;
  border-width: 1px;
  font-size: 12px; }

/* Medium buttons */
.g1-button-m {
  padding: 7px 28px;
  border-width: 2px; }

/* Large buttons */
.g1-button-l {
  padding: 14px 37px;
  border-width: 2px;
  font-size: 16px;
  line-height: 18px; }

/* Extra large buttons */
.g1-button-xl {
  padding: 21px 37px;
  border-width: 3px;
  font-size: 18px; }

/* Wide buttons */
.g1-button-wide {
  display: block; }

.g1-button-subtle {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2; }

.g1-arrow {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  border-width: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 60px;
  margin-left: auto;
  margin-right: 25px;
  position: relative;
  border-radius: 6px 9px 9px 6px;
  font-size: 18px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  color: #333; }
  .g1-arrow:before {
    display: block;
    width: 0;
    height: 2px;
    border-width: 25px 20px;
    margin-left: -1px;
    margin-right: 0;
    position: absolute;
    left: 100%;
    right: auto;
    top: 4px;
    border-style: solid;
    border-color: inherit;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    content: ""; }

.g1-arrow-left {
  margin-left: 25px;
  margin-right: auto;
  border-radius: 6px 9px 9px 6px; }
  .g1-arrow-left:before {
    left: auto;
    right: 100%;
    margin-right: -1px;
    margin-left: 0;
    border-color: inherit;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent; }

.g1-arrow-xl {
  height: 80px; }
  .g1-arrow-xl:before {
    border-width: 35px 20px; }

a.g1-arrow:hover {
  box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.333); }

span.g1-arrow-simple {
  color: #999; }

.g1-arrow-disabled {
  pointer-events: none;
  opacity: 0.5; }

.g1-form-s [type=text],
.g1-form-s [type=search] {
  font-size: 13px;
  height: 32px;
  padding-top: 4px;
  padding-bottom: 4px; }

.g1-form-s button {
  height: 32px;
  padding-top: 3px;
  padding-bottom: 3px; }

/* Search form */
.search-form {
  position: relative;
  margin-bottom: 1.5rem; }
  .search-form label {
    display: block; }
  .search-form .screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px); }
  .search-form .search-field {
    width: 100%;
    padding-right: 40px; }
  .search-form .search-submit {
    width: 40px;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    font-size: 0;
    border-color: transparent;
    background-color: transparent;
    color: inherit;
    box-shadow: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    opacity: 0.666; }
    .search-form .search-submit:hover {
      opacity: 0.999; }
    .search-form .search-submit:before {
      font-size: 24px;
      line-height: 22px;
      font-family: "bimber";
      content: "\e016"; }

.g1-form-s .search-form .search-submit:before {
  font-size: 16px; }

.g1-searches > ul {
  margin: 20px 0 5px;
  list-style: none; }
  .g1-searches > ul > li {
    margin: 0 0 15px; }

.g1-searches-all-results {
  text-align: center; }
  .g1-searches-all-results > a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase; }

blockquote {
  position: relative;
  padding: 2em 10px 0.5em;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 300;
  letter-spacing: 0.025em;
  /* Open quote */
  /* Borders */ }
  blockquote:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: 50%;
    right: auto;
    top: 20px;
    font-size: 60px;
    line-height: 1;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    font-weight: 700;
    cursor: default;
    vertical-align: bottom;
    content: "\201c"; }
  blockquote::after {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: -1;
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    border-width: 6px 0 1px;
    border-style: solid;
    content: "";
    opacity: 0.1666; }

@media only screen and (min-width: 1025px) {
  blockquote {
    padding-left: 3em;
    padding-right: 3em; } }

.g1-message {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  border-width: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  border-style: solid;
  border-color: #e6e6e6; }
  .g1-message:before {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    right: auto;
    top: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    content: ""; }
  .g1-message:after {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
    text-align: center;
    font: 24px/40px FontAwesome;
    cursor: default;
    color: #fff; }

.g1-message-inner {
  padding: 20px 20px 0 68px;
  text-align: left; }
  .g1-message-inner:after {
    display: block;
    margin-top: 20px;
    content: ""; }
  .g1-message-inner p {
    margin-bottom: 20px; }

/* Color scheme */
.g1-message-success:before {
  background-color: #2ecc71; }

.g1-message-success:after {
  content: "\f00c"; }

.g1-message-info:before {
  background-color: #22a7f0; }

.g1-message-info:after {
  content: "\f0eb"; }

.g1-message-warning:before {
  background-color: #f5ab35; }

.g1-message-warning:after {
  content: "\f0a2"; }

.g1-message-error:before {
  background-color: #96281b; }

.g1-message-error:after {
  content: "\f0e7"; }

.avatar {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.wp-audio-shortcode {
  margin-bottom: 1.5em; }

.wp-video {
  margin-bottom: 1.5em; }

.gallery {
  font-size: 0; }

.gallery-item {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem; }
  .gallery-columns-1 .gallery-item {
    width: 100%; }
  .gallery-columns-2 .gallery-item {
    width: 50%; }
  .gallery-columns-3 .gallery-item {
    width: 33.33333%; }
  .gallery-columns-4 .gallery-item {
    width: 25%; }
  .gallery-columns-5 .gallery-item {
    width: 20%; }
  .gallery-columns-6 .gallery-item {
    width: 16.66667%; }
  .gallery-columns-7 .gallery-item {
    width: 14.28571%; }
  .gallery-columns-8 .gallery-item {
    width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    width: 11.11111%; }

.g1-breadcrumbs {
  margin-bottom: 0.75rem;
  font-size: 13px;
  line-height: 15px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif; }
  .g1-breadcrumbs ol {
    margin: 0;
    list-style: none; }

.g1-breadcrumbs-label {
  margin: 0;
  /* assistive-text */
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px); }

.g1-breadcrumbs-item {
  display: inline-block;
  max-width: 10em;
  margin-right: 0.333em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top; }
  .g1-breadcrumbs-item + .g1-breadcrumbs-item:before {
    display: inline-block;
    margin-right: inherit;
    content: "\203a"; }

@media only screen and (min-width: 801px) {
  .g1-breadcrumbs-item {
    max-width: 20em;
    margin-right: 0.666em; } }

/* --- Pagination, Page links ------------------------------------------------------------------ */
.g1-pagination {
  clear: both;
  overflow: hidden;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  position: relative;
  font-size: 16px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif; }
  .g1-pagination ul {
    position: relative;
    margin: 0 -3px;
    list-style: none;
    text-align: center; }
    .g1-pagination ul:after {
      display: table;
      clear: both;
      content: ""; }

.g1-pagination-label {
  padding: 10px 0;
  text-align: center;
  font: 16px/20px "Poppins", "Roboto", "Arial", sans-serif; }

.g1-pagination-item {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  vertical-align: middle; }
  .g1-pagination-item > a {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    line-height: 20px; }
  .g1-pagination-item > span {
    display: inline-block;
    padding: 0.25rem 10px; }

.g1-pagination-item-current {
  display: inline-block;
  vertical-align: middle; }
  .g1-pagination-item-current > span {
    padding: 10px;
    font-size: 16px;
    line-height: 20px; }

.g1-pagination-item-prev {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle; }

.g1-pagination-item-next {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding-left: 3px;
  vertical-align: middle; }

.g1-pagination-just-arrows .g1-arrow span,
.g1-pagination-just-arrows .g1-link span {
  display: none; }

.g1-pagination-label-links {
  display: none; }

.g1-pagination-label-xofy {
  margin-bottom: 10px; }
  .g1-pagination-label-xofy + ul .g1-pagination-item-prev {
    width: 50%;
    float: left; }
  .g1-pagination-label-xofy + ul .g1-pagination-item-next {
    width: 50%;
    float: right; }
  .g1-pagination-label-xofy + ul .g1-pagination-item,
  .g1-pagination-label-xofy + ul .g1-pagination-item-current {
    display: none; }

@media only screen and (min-width: 601px) {
  .g1-pagination-label-xofy {
    width: 33.333%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .g1-pagination-label-xofy + ul .g1-pagination-item-prev {
      width: 33.333%;
      float: left; }
    .g1-pagination-label-xofy + ul .g1-pagination-item-next {
      width: 33.333%;
      float: right; } }

.g1-pagination-label-none {
  display: none; }
  .g1-pagination-label-none + ul .g1-pagination-item-prev {
    width: 50%;
    float: left; }
  .g1-pagination-label-none + ul .g1-pagination-item-next {
    width: 50%;
    float: right; }
  .g1-pagination-label-none + ul .g1-pagination-item,
  .g1-pagination-label-none + ul .g1-pagination-item-current {
    display: none; }

.g1-pagination-end {
  display: none;
  text-align: center; }

/* =table */
table {
  border-color: #e6e6e6; }

caption {
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 400; }

th,
.g1-th {
  padding: 10px 5px;
  border-width: 0 0 1px;
  font-size: 13px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  vertical-align: top;
  border-style: solid;
  border-color: #e6e6e6; }

td,
.g1-td {
  padding: 10px 5px;
  border-width: 0 0 1px;
  vertical-align: top;
  border-style: solid;
  border-color: #e6e6e6; }

.g1-table {
  margin-bottom: 1.5em;
  overflow-x: auto; }
  .g1-table caption {
    width: auto;
    padding: 2px 16px 10px 16px;
    font-size: 0.83em; }
  .g1-table table {
    width: 100%;
    margin: 0;
    position: relative;
    border-collapse: separate;
    border-spacing: 0; }
  .g1-table th {
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em; }
  .g1-table td {
    padding: 8px 16px; }
  .g1-table thead th {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    text-align: left; }

/* Simple style */
.g1-table-simple table {
  border-width: 0 0 2px; }

.g1-table-simple thead th {
  border-width: 2px 0; }

.g1-table-simple tbody td {
  border-width: 0 0 1px 0; }

.g1-table-simple tfoot td {
  border-width: 1px 0 0; }

/* Solid style */
.g1-table-solid {
  padding: 4px; }
  .g1-table-solid thead th {
    border-width: 1px 1px 1px 0; }
  .g1-table-solid thead th:first-child {
    border-width: 1px 1px 1px 1px; }
  .g1-table-solid tfoot td,
  .g1-table-solid tfoot th, .g1-table-solid tbody td,
  .g1-table-solid tbody th {
    border-width: 0 1px 1px 0; }
  .g1-table-solid tfoot td:first-child,
  .g1-table-solid tfoot th:first-child, .g1-table-solid tbody td:first-child,
  .g1-table-solid tbody th:first-child {
    border-width: 0 1px 1px 1px; }

@media only screen and (max-width: 600px) {
  .g1-table {
    margin: 0 0 1.5em 0;
    overflow-x: scroll;
    border-style: dotted solid;
    border-width: 3px; }
    .g1-table table {
      width: auto;
      margin: 0;
      white-space: nowrap; }
    .g1-table caption {
      text-align: left; } }

.mc4wp-form label {
  display: block; }

.g1-newsletter {
  margin-bottom: 30px; }
  .g1-newsletter .mc4wp-form input[type=text],
  .g1-newsletter .mc4wp-form input[type=email],
  .g1-newsletter .mc4wp-form input[type=select] {
    width: 100%; }
  .g1-newsletter .mc4wp-form input[type=submit] {
    display: block;
    width: 100%; }

.g1-newsletter-privacy {
  margin-top: -0.25em;
  opacity: 0.666; }

.g1-box .mc4wp-form-fields label {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden; }

.g1-box .mc4wp-form-fields p {
  margin-bottom: 0.75em; }

.g1-newsletter-horizontal {
  margin: 3em auto; }
  .g1-collection-item .g1-newsletter-horizontal {
    margin-top: 30px;
    margin-bottom: 60px; }
  .g1-newsletter-horizontal .g1-mega + .g1-delta,
  .g1-newsletter-horizontal .g1-alpha + .g1-delta {
    margin-top: -1.5rem; }

.g1-newsletter-avatar {
  position: relative;
  display: block;
  margin-bottom: 20px; }
  .g1-newsletter-avatar img {
    max-width: 80px;
    -webkit-border-radius: 128px;
    -moz-border-radius: 128px;
    -ms-border-radius: 128px;
    -o-border-radius: 128px;
    border-radius: 128px; }

@media only screen and (min-width: 481px) {
  .g1-newsletter-horizontal .mc4wp-form-fields {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 561px;
    margin-left: auto;
    margin-right: auto; }
    .g1-newsletter-horizontal .mc4wp-form-fields input[type=email] {
      text-align: left; }
    .g1-newsletter-horizontal .mc4wp-form-fields p {
      display: inline-block;
      vertical-align: top;
      margin-left: 5px;
      margin-right: 5px; }
    .g1-newsletter-horizontal .mc4wp-form-fields p:first-child {
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; } }

.g1-back-to-top {
  display: block;
  visibility: hidden;
  width: 30px;
  height: 30px;
  border-width: 1px;
  overflow: hidden;
  position: fixed;
  right: 10px;
  left: auto;
  bottom: 10px;
  z-index: 999;
  text-indent: 100%;
  white-space: nowrap;
  border-style: solid;
  border-color: transparent;
  background-color: black;
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: opacity 0.375s ease-in-out;
  -moz-transition: opacity 0.375s ease-in-out;
  -o-transition: opacity 0.375s ease-in-out;
  transition: opacity 0.375s ease-in-out; }
  .g1-back-to-top:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: auto;
    width: 100%;
    margin-top: -0.5em;
    text-indent: 0;
    text-align: center;
    font: 24px/1 "bimber";
    content: "\e00f"; }
  .g1-back-to-top:hover {
    background-color: #000000;
    color: #ffffff;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    opacity: 0.75; }

@media only screen and (max-width: 800px) {
  .g1-sharebar-on ~ .g1-back-to-top {
    bottom: 54px; } }

@media only screen and (min-width: 801px) {
  .g1-back-to-top {
    width: 38px;
    height: 38px; } }

.cssanimations .g1-back-to-top-on {
  display: block;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  -moz-transition: -moz-transform 0.35s ease-in-out;
  -o-transition: -o-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  -webkit-backface-visibility: hidden; }

.cssanimations .g1-back-to-top-off {
  visibility: hidden;
  -webkit-transform: translate(0px, 80px);
  -moz-transform: translate(0px, 80px);
  -ms-transform: translate(0px, 80px);
  -o-transform: translate(0px, 80px);
  transform: translate(0px, 80px);
  -webkit-transition: visibility 0s, -webkit-transform 0.35s ease-in-out;
  -webkit-transition-delay: 0.35s, 0s;
  -moz-transition: visibility 0s 0.35s, -moz-transform 0.35s ease-in-out;
  -o-transition: visibility 0s 0.35s, -o-transform 0.35s ease-in-out;
  transition: visibility 0s 0.35s, transform 0.35s ease-in-out; }

/* ----------------------------------------------------------------------------

4 . MODULES

----------------------------------------------------------------------------- */
.sticky {
  /* Sticky*/ }

.entry-featured-media img {
  width: 100%; }

.entry-media-with-ellipsis {
  position: relative;
  max-height: 500px;
  overflow: hidden; }

.entry-media-ellipsis {
  padding: 10px 20px 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  text-align: center;
  background-color: #454545; }
  .entry-media-ellipsis .g1-button {
    border-color: #fff;
    background-color: #fff;
    color: #000; }

.entry-author {
  display: block;
  margin-right: 10px; }
  .entry-author .avatar {
    float: left;
    margin-right: 10px; }

/* Entry categories */
.entry-category {
  display: inline-block;
  position: relative;
  padding: 2px 9px;
  border-width: 1px;
  font-size: 13px;
  line-height: 16px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  pointer-events: auto;
  border-style: solid;
  text-shadow: none;
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  color: #000;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out; }

.entry-categories {
  display: inline;
  margin: 0 0 16px;
  margin: 0 0 1rem; }

.entry-categories-inner {
  display: inline;
  margin-top: -1px;
  font-size: 0; }

/* Entry tags */
.entry-tag {
  display: inline-block;
  margin-right: 8px;
  font-size: 14px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 400;
  vertical-align: top;
  text-transform: uppercase;
  color: inherit; }
  .entry-tag:before {
    content: "#"; }

.entry-date {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top; }

.entry-comments-link {
  display: inline-block;
  vertical-align: top;
  pointer-events: auto; }
  .entry-comments-link a {
    display: inline-block;
    position: relative; }
    .entry-comments-link a:before {
      display: inline-block;
      margin-right: 0.25em;
      font: 16px/11px "bimber";
      vertical-align: middle;
      content: "\e010";
      opacity: 0.333; }
    .entry-comments-link a > span {
      clip: rect(1px, 1px, 1px, 1px);
      position: absolute;
      height: 1px;
      width: 1px;
      overflow: hidden; }
  .entry-comments-link a:hover:before {
    opacity: 0.999; }

.entry-shares {
  display: inline-block;
  margin-right: 8px;
  vertical-align: top; }
  .entry-shares:before {
    display: inline-block;
    margin-right: 4px;
    font: 16px/11px "bimber";
    vertical-align: middle;
    content: "\e011"; }

.entry-views {
  display: inline-block;
  margin-right: 8px;
  vertical-align: top; }
  .entry-views:before {
    display: inline-block;
    margin-right: 0.25em;
    font: 16px/11px "bimber";
    vertical-align: middle;
    content: "\e014";
    opacity: 0.5; }

.entry-counter {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 3;
  top: -10px;
  left: 10px;
  right: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  line-height: 40px;
  font-size: 18px;
  font-family: "Poppins", "Roboto", sans-serif;
  font-weight: 300;
  text-align: center;
  pointer-events: none; }
  .entry-counter:before {
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    border-radius: inherit;
    content: ""; }
  .entry-counter:after {
    position: relative;
    z-index: 2;
    content: counter(g1-collection-item-counter); }

.entry-byline {
  margin-bottom: 0.25rem; }
  .entry-byline:after {
    clear: both;
    display: table;
    content: ""; }
  .entry-byline .entry-date {
    display: block; }

.entry-stats {
  display: inline-block;
  clear: both;
  position: relative;
  z-index: 6;
  margin-bottom: 0.75rem;
  padding: 3px 10px 3px 0; }

.entry-stats-m .entry-views {
  vertical-align: middle; }
  .entry-stats-m .entry-views:before {
    font-size: 32px;
    line-height: 32px; }

.entry-stats-m .entry-views-popular:before {
  content: "\e015";
  color: #ff577b; }

.entry-stats-m .entry-views-popular strong {
  color: #ff577b; }

.entry-stats-m .entry-views-hot:before {
  content: "\e01c";
  color: #ff0036; }

.entry-stats-m .entry-views-hot strong {
  color: #ff0036; }

.entry-stats-m .entry-views-trending:before {
  content: "\e00e";
  content: "\e030";
  color: #bf0029; }

.entry-stats-m .entry-views-trending strong {
  color: #bf0029; }

.entry-stats-m .entry-comments-link a:before {
  font-size: 32px;
  line-height: 32px; }

.g1-meta-m strong {
  font-weight: 600; }

.entry-meta-m {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.75rem; }
  .entry-meta-m .entry-date {
    white-space: nowrap; }

.entry-meta-csstodo {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 0.75rem; }
  .entry-meta-csstodo .entry-categories-inner {
    font-size: inherit; }
  .entry-meta-csstodo .entry-categories-label {
    margin-right: 0.25em; }
  .entry-meta-csstodo .entry-stats,
  .entry-meta-csstodo .entry-byline,
  .entry-meta-csstodo .entry-categories {
    margin: 0.25rem 30px 0.25rem 0; }

.entry-flag {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  top: 0;
  width: 40px;
  height: 40px;
  border-width: 1px;
  vertical-align: top;
  font-size: 0;
  line-height: 38px;
  text-align: center;
  border-style: solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border-color: #ff0036;
  background-color: #ff0036;
  color: #fff; }
  .entry-flag:before {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
    text-align: center;
    font-size: 24px;
    line-height: 1;
    font-family: "bimber";
    font-weight: normal;
    content: ""; }
  .entry-flag > .wyr-reaction-icon {
    width: inherit;
    height: inherit; }

.entry-flag-text {
  font-size: 12px; }

a.entry-flag {
  pointer-events: auto;
  -webkit-transition: top 0.175s ease-in-out;
  -moz-transition: top 0.175s ease-in-out;
  -o-transition: top 0.175s ease-in-out;
  transition: top 0.175s ease-in-out; }
  a.entry-flag:hover {
    top: -5px; }

.entry-flag-latest {
  border-color: #808080;
  background-color: #808080;
  color: #fff; }
  .entry-flag-latest:before {
    content: "\e017"; }

.entry-flag-popular {
  border-color: #ff577b;
  background-color: #ff577b;
  color: #fff; }
  .entry-flag-popular:before {
    content: "\e015"; }

.entry-flag-hot:before {
  content: "\e01c"; }

.entry-flag-top,
.entry-flag-trending {
  border-color: #bf0029;
  background-color: #bf0029;
  color: #fff; }
  .entry-flag-top:before,
  .entry-flag-trending:before {
    content: "\e00e";
    content: "\e030"; }

.entry-flag-reaction {
  border-color: transparent;
  background-color: transparent; }

.entry-flags {
  margin-right: -6px;
  font-size: 0;
  pointer-events: none; }
  .entry-flags .entry-flag {
    display: none;
    margin-right: 6px; }
  .entry-flags .entry-flag:first-child,
  .entry-flags .entry-flag:first-child + .entry-flag-reaction,
  .entry-flags .entry-flag-trending + .entry-flag-reaction,
  .entry-flags .entry-flag-hot + .entry-flag-reaction,
  .entry-flags .entry-flag-popular + .entry-flag-reaction {
    display: inline-block; }

.entry-before-title .entry-flags {
  margin-bottom: 10px;
  float: right; }

.menu-item > a .entry-flag {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.entry-before-title:after {
  display: table;
  clear: both;
  content: ""; }

.entry-before-title .entry-stats,
.entry-before-title .entry-categories {
  float: left;
  margin-bottom: 0; }

.entry-title > a {
  color: inherit; }

.entry-title + .entry-subtitle {
  margin-top: -0.75em; }

.g1-content-narrow {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 758px;
  margin-left: auto;
  margin-right: auto; }

@media only screen and (min-width: 1025px) {
  .g1-content-narrow {
    padding-left: 48px;
    padding-right: 48px; }
    .g1-content-narrow .g1-pagination,
    .g1-content-narrow .mashsb-container {
      margin-left: -48px;
      margin-right: -48px; }
    .g1-content-narrow .quads-location {
      margin-left: -48px !important;
      margin-right: -48px !important; }
    .g1-content-narrow .adace-slot-wrapper {
      margin-left: -48px !important;
      margin-right: -48px !important;
      margin-bottom: 1.5rem; }
      .g1-content-narrow .adace-slot-wrapper img {
        max-width: none;
        height: auto; }
    .g1-content-narrow .adace-slot-wrapper.adace-align-left-wrap {
      margin-left: 10px !important;
      margin-right: 10px !important;
      position: relative;
      left: -48px; }
    .g1-content-narrow .adace-slot-wrapper.adace-align-right-wrap {
      margin-left: 10px !important;
      margin-right: 10px !important;
      position: relative;
      right: -48px; } }

.entry-content .aligncenter,
.entry-summary .aligncenter {
  width: 100%; }
  .entry-content .aligncenter img,
  .entry-content .aligncenter canvas,
  .entry-summary .aligncenter img,
  .entry-summary .aligncenter canvas {
    width: 100%; }

.entry-content video,
.entry-summary video {
  width: 100%;
  margin-bottom: 100px; }

.entry-content::after {
  clear: both;
  display: table;
  content: ""; }

.entry-media-row > .g1-row-inner > .g1-column-2of3 {
  position: absolute;
  bottom: 0; }

.entry-media-row > .g1-row-background > .g1-row-background-media {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #808080;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

.entry-media-row-03 > .g1-row-inner {
  max-width: none; }
  .entry-media-row-03 > .g1-row-inner > .g1-column {
    padding-left: 0;
    padding-right: 0; }

.entry-media-row-03 > .g1-row-background > .g1-row-background-media {
  top: 0;
  bottom: auto;
  height: 400px; }

.entry-media-row-03 .g1-row-1 {
  height: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto; }
  .entry-media-row-03 .g1-row-1 > .g1-row-background {
    background-color: transparent;
    background-image: -owg-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px); }

.entry-media-row-03 .g1-row-2 {
  margin: 0 auto; }
  .entry-media-row-03 .g1-row-2:after {
    display: table;
    clear: both;
    content: ""; }

.entry-media-row-03 .entry-before-title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  position: absolute;
  left: 0;
  right: 10px;
  bottom: 100%; }

.entry-media-row-03 .entry-flags {
  margin-left: auto;
  margin-bottom: 0; }

.entry-media-row-03 .entry-header {
  padding-top: 1.5rem; }

.entry-media-row-03 h1, .entry-media-row-03 h2 {
  color: #fff; }

.entry-media-row-03 .entry-media-credit {
  padding: 0.333em 0; }

@media only screen and (max-width: 800px) {
  .entry-media-row-03 .g1-row-2 {
    background: #1a1a1a; } }

@media only screen and (min-width: 801px) {
  .entry-media-row-03 > .g1-row-inner {
    min-height: 66vh; }
    .entry-media-row-03 > .g1-row-inner > .g1-column {
      position: static; }
  .entry-media-row-03 > .g1-row-background > .g1-row-background-media {
    top: 0;
    bottom: 0;
    height: auto; }
  .entry-media-row-03 .g1-row-2 {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0; }
    .entry-media-row-03 .g1-row-2 .g1-column-2of3 {
      width: calc( 66.666% + 45px); }
    .entry-media-row-03 .g1-row-2 .g1-column-1of3 {
      width: calc( 33.333% - 45px - 15px);
      position: absolute;
      z-index: 3;
      bottom: 0;
      left: auto;
      right: 15px;
      text-align: right;
      background-color: rgba(0, 0, 0, 0.333);
      color: #fff; }
    .entry-media-row-03 .g1-row-2 > .g1-row-background {
      background-color: transparent;
      background-image: -owg-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.666));
      background-image: -webkit-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.666));
      background-image: -moz-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.666));
      background-image: -o-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.666));
      background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.666)); } }

.entry-media-row-04 {
  max-width: 1182px; }
  .entry-media-row-04 > .g1-row-inner {
    max-width: none; }
    .entry-media-row-04 > .g1-row-inner > .g1-column {
      padding-left: 0;
      padding-right: 0; }
  .entry-media-row-04 > .g1-row-background {
    background-color: #fff; }
    .entry-media-row-04 > .g1-row-background > .g1-row-background-media {
      max-width: 100%;
      width: 1152px;
      top: 0;
      bottom: auto;
      height: 400px; }
  .entry-media-row-04 .g1-row-1 {
    height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto; }
  .entry-media-row-04 .g1-row-2 {
    max-width: 1242px;
    margin: 0 auto; }
    .entry-media-row-04 .g1-row-2:after {
      display: table;
      clear: both;
      content: ""; }
    .entry-media-row-04 .g1-row-2 > .g1-row-background {
      max-width: 1152px; }
  .entry-media-row-04 .entry-header {
    padding-bottom: 1.5rem; }
  .entry-media-row-04 h1, .entry-media-row-04 h2 {
    color: #fff; }
  .entry-media-row-04 .entry-media-credit {
    padding: 0.333em 0; }

@media only screen and (max-width: 800px) {
  .entry-media-row-04 .g1-row-2 {
    background: #1a1a1a; } }

@media only screen and (min-width: 801px) {
  .entry-media-row-04 > .g1-row-inner {
    min-height: 66vh; }
    .entry-media-row-04 > .g1-row-inner > .g1-column {
      position: static; }
  .entry-media-row-04 > .g1-row-background > .g1-row-background-media {
    top: 0;
    bottom: 0;
    height: auto; }
  .entry-media-row-04 .g1-row-1 .g1-breadcrumbs {
    padding-left: 15px;
    padding-right: 15px; }
  .entry-media-row-04 .g1-row-2 {
    padding-top: 120px;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0; }
    .entry-media-row-04 .g1-row-2 .g1-column-2of3 {
      width: calc( 66.666% + 45px);
      padding-left: 60px; }
    .entry-media-row-04 .g1-row-2 .g1-column-1of3 {
      width: calc( 33.333% - 45px);
      position: absolute;
      z-index: 3;
      bottom: 0;
      left: auto;
      right: 15px;
      text-align: right;
      background-color: rgba(0, 0, 0, 0.333);
      color: #fff; }
    .entry-media-row-04 .g1-row-2 > .g1-row-background {
      background-image: -owg-linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.333) 120px, rgba(0, 0, 0, 0.666) 100%);
      background-image: -webkit-linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.333) 120px, rgba(0, 0, 0, 0.666) 100%);
      background-image: -moz-linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.333) 120px, rgba(0, 0, 0, 0.666) 100%);
      background-image: -o-linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.333) 120px, rgba(0, 0, 0, 0.666) 100%);
      background-image: linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.333) 120px, rgba(0, 0, 0, 0.666) 100%); } }

.entry-media-row-05 {
  max-width: 1212px; }
  .entry-media-row-05 > .g1-row-inner {
    max-width: none; }
    .entry-media-row-05 > .g1-row-inner > .g1-column {
      padding-left: 0;
      padding-right: 0; }
  .entry-media-row-05 > .g1-row-background {
    background-color: #fff; }
    .entry-media-row-05 > .g1-row-background > .g1-row-background-media {
      max-width: 100%;
      width: 1152px;
      top: 0;
      bottom: auto;
      height: 400px; }
  .entry-media-row-05 .g1-row-1 {
    max-width: 1152px;
    height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto; }
    .entry-media-row-05 .g1-row-1 > .g1-row-background {
      background-color: transparent;
      background-image: -owg-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
      background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
      background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
      background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px); }
  .entry-media-row-05 .g1-row-2 {
    margin: 0 auto; }
    .entry-media-row-05 .g1-row-2 .g1-column-2of3 {
      padding-top: 1.5rem;
      background-color: #fff; }
    .entry-media-row-05 .g1-row-2:after {
      display: table;
      clear: both;
      content: ""; }
  .entry-media-row-05 .entry-before-title {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 100%; }
  .entry-media-row-05 .entry-flags {
    margin-left: auto;
    margin-bottom: -10px; }
  .entry-media-row-05 .entry-media-credit {
    padding: 0.333em 0; }

@media only screen and (min-width: 801px) {
  .entry-media-row-05 > .g1-row-inner {
    min-height: 66vh; }
    .entry-media-row-05 > .g1-row-inner > .g1-column {
      position: static; }
  .entry-media-row-05 > .g1-row-background > .g1-row-background-media {
    top: 0;
    bottom: 0;
    height: auto; }
  .entry-media-row-05 .g1-row-1 .g1-breadcrumbs {
    padding-left: 15px;
    padding-right: 15px; }
  .entry-media-row-05 .g1-row-2 {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0; }
    .entry-media-row-05 .g1-row-2 .g1-column-2of3 {
      width: calc( 66.666% + 45px); }
    .entry-media-row-05 .g1-row-2 .g1-column-1of3 {
      width: calc( 33.333% - 45px - 15px);
      position: absolute;
      z-index: 3;
      bottom: 0;
      left: auto;
      right: 15px;
      text-align: right;
      background-color: rgba(0, 0, 0, 0.333);
      color: #fff; } }

.entry-media-row-06 > .g1-row-inner {
  max-width: none; }
  .entry-media-row-06 > .g1-row-inner > .g1-column {
    padding-left: 0;
    padding-right: 0; }

.entry-media-row-06 > .g1-row-background > .g1-row-background-media {
  top: 0;
  bottom: auto;
  height: 400px; }

.entry-media-row-06 .g1-row-1 {
  height: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto; }
  .entry-media-row-06 .g1-row-1 > .g1-row-background {
    background-color: transparent;
    background-image: -owg-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.333), transparent 60px); }

.entry-media-row-06 .g1-row-2 {
  width: 100%;
  max-width: 1242px;
  margin: 0 auto;
  background-color: #fff; }
  .entry-media-row-06 .g1-row-2:after {
    display: table;
    clear: both;
    content: ""; }
  .entry-media-row-06 .g1-row-2 > .g1-row-inner,
  .entry-media-row-06 .g1-row-2 > .g1-row-inner > .g1-column {
    position: static; }

.entry-media-row-06 .entry-header {
  padding-top: 2.5rem; }

.entry-media-row-06 .entry-before-title {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0; }
  .entry-media-row-06 .entry-before-title:after {
    display: table;
    clear: both;
    content: ""; }

@media only screen and (min-width: 801px) {
  .entry-media-row-06 .g1-row-1 .g1-column-1of3 {
    text-align: right; } }

@media only screen and (min-width: 1200px) {
  .entry-media-row-06 > .g1-row-inner {
    min-height: 66vh; }
    .entry-media-row-06 > .g1-row-inner > .g1-column {
      position: static; }
  .entry-media-row-06 > .g1-row-background > .g1-row-background-media {
    top: 0;
    bottom: 0;
    height: auto; }
  .entry-media-row-06 .g1-row-2 {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0; } }

.entry-tpl-grid {
  position: relative;
  width: 100%;
  margin-bottom: 30px; }
  .entry-tpl-grid .entry-featured-media {
    margin-bottom: 0; }
  .entry-tpl-grid .entry-flags {
    padding: 0 10px;
    margin-bottom: 10px;
    position: absolute;
    z-index: 3;
    top: -10px;
    left: 0;
    right: auto; }
  .entry-tpl-grid .entry-flags:first-child {
    position: relative; }
  .entry-tpl-grid .entry-header {
    position: relative; }
  .entry-tpl-grid .entry-before-title {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 0; }
    .entry-tpl-grid .entry-before-title .entry-categories,
    .entry-tpl-grid .entry-before-title .entry-categories-inner {
      display: inline;
      float: none;
      clear: none;
      vertical-align: middle; }
  .entry-tpl-grid .entry-featured-media ~ .entry-body .entry-before-title {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%; }
  .entry-tpl-grid .entry-stats {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0; }
  .entry-tpl-grid .entry-categories {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0; }
  .entry-tpl-grid .entry-title {
    padding-top: 0.75em;
    margin-bottom: 0.75em; }
  .entry-tpl-grid .g1-button {
    float: right;
    margin-bottom: 15px; }

.entry-tpl-grid {
  margin-bottom: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 1px 1px #ededed; }
  .entry-tpl-grid .entry-header,
  .entry-tpl-grid .entry-summary,
  .entry-tpl-grid footer {
    padding-left: 10px;
    padding-right: 10px; }

@media only screen and (min-width: 801px) {
  .entry-tpl-grid {
    margin-bottom: 20px; }
    .entry-tpl-grid .entry-header,
    .entry-tpl-grid .entry-summary,
    .entry-tpl-grid footer {
      padding-left: 20px;
      padding-right: 20px; }
    .entry-tpl-grid .entry-before-title .entry-stats {
      padding-left: 20px; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-grid {
    margin-bottom: 30px; }
    .entry-tpl-grid .entry-header,
    .entry-tpl-grid .entry-summary,
    .entry-tpl-grid footer {
      padding-left: 30px;
      padding-right: 30px; }
    .entry-tpl-grid .entry-before-title .entry-stats {
      padding-left: 30px; } }

.entry-tpl-grid-fancy {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  counter-increment: g1-collection-item-counter;
  background-color: #fff;
  text-align: center; }
  .entry-tpl-grid-fancy .entry-counter {
    display: table;
    margin-left: auto;
    margin-right: auto; }
  .entry-tpl-grid-fancy .entry-counter {
    display: block;
    left: 0;
    right: 0;
    top: -6px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px; }
  .entry-tpl-grid-fancy .entry-featured-media {
    margin-bottom: 0; }
  .entry-tpl-grid-fancy .entry-header {
    position: relative; }
  .entry-tpl-grid-fancy .entry-before-title {
    font-size: 0; }
  .entry-tpl-grid-fancy .entry-featured-media + .entry-body .entry-header .entry-before-title {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 100%; }
  .entry-tpl-grid-fancy .entry-stats {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0; }
  .entry-tpl-grid-fancy .entry-categories {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 13px; }
  .entry-tpl-grid-fancy .entry-title {
    padding-top: 0.75em;
    margin-bottom: 0.75em; }

.entry-tpl-grid-fancy {
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 1px 1px #ededed;
  border-radius: 0; }
  .entry-tpl-grid-fancy .entry-featured-media {
    overflow: hidden;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .entry-tpl-grid-fancy .entry-before-title {
    padding-left: 30px;
    left: -30px !important;
    background: #fff !important; }
  .entry-tpl-grid-fancy .entry-meta {
    background: #fff !important; }
  .entry-tpl-grid-fancy .entry-body {
    padding-left: 30px;
    padding-right: 30px; }

.entry-tpl-gridxs {
  max-width: 100%; }
  .entry-tpl-gridxs .entry-featured-media {
    margin-bottom: 0.5rem; }
  .entry-tpl-gridxs .entry-header {
    margin-top: 0.5rem;
    padding: 0 10px; }
  .entry-tpl-gridxs .entry-title {
    margin-bottom: 15px; }

/**
 * List template
 */
.entry-tpl-list {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 1px 1px #ededed;
  background-color: #fff; }
  .entry-tpl-list:after {
    display: table;
    clear: both;
    content: ""; }
  .entry-tpl-list .entry-featured-media {
    margin: 0; }
  .entry-tpl-list .entry-flags {
    padding: 0 10px;
    margin: 0 0 10px;
    position: absolute;
    z-index: 3;
    top: -10px;
    left: -10px;
    right: auto; }
  .entry-tpl-list .entry-flags:first-child {
    position: relative; }
  .entry-tpl-list .entry-body {
    padding: 0 10px 1px; }
  .entry-tpl-list .entry-title {
    padding-top: 0.75em;
    margin-bottom: 0.75em; }
  .entry-tpl-list .g1-button {
    float: right;
    margin-bottom: 15px; }

@media only screen and (max-width: 600px) {
  .entry-tpl-list .entry-header {
    position: relative; }
  .entry-tpl-list .entry-featured-media ~ .entry-body .entry-header .entry-before-title {
    position: absolute;
    left: -10px;
    right: auto;
    bottom: 100%;
    padding-left: 10px;
    background-color: #fff; } }

@media only screen and (min-width: 601px) {
  .entry-tpl-list {
    position: relative; }
    .entry-tpl-list .entry-featured-media {
      float: left;
      width: 50%;
      max-width: 364px;
      margin: 0; }
    .entry-tpl-list .entry-flags {
      margin-top: 0;
      position: absolute;
      left: 0;
      right: auto; }
    .entry-tpl-list .entry-body {
      padding-top: 15px;
      padding-bottom: 10px;
      overflow: hidden; } }

@media only screen and (min-width: 801px) {
  .entry-tpl-list {
    margin-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-list {
    margin-bottom: 30px; }
    .entry-tpl-list .entry-body {
      padding: 15px 30px 10px; } }

.entry-tpl-list-fancy {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  counter-increment: g1-collection-item-counter;
  background: #fff;
  box-shadow: 0 1px 1px #ededed; }
  .entry-tpl-list-fancy:after {
    display: table;
    clear: both;
    content: ""; }
  .entry-tpl-list-fancy .entry-featured-media {
    margin: 0; }
  .entry-tpl-list-fancy .entry-body {
    padding: 10px 20px; }
  .entry-tpl-list-fancy .entry-title {
    padding-top: 0.75em;
    margin-bottom: 0.75em; }

@media only screen and (min-width: 601px) {
  .entry-tpl-list-fancy {
    position: relative; }
    .entry-tpl-list-fancy .entry-featured-media {
      margin: 0;
      float: left;
      width: 50%;
      max-width: 364px; }
    .entry-tpl-list-fancy .entry-counter {
      position: absolute;
      left: 10px;
      margin-top: 0; }
    .entry-tpl-list-fancy .entry-body {
      padding-top: 15px;
      padding-bottom: 10px;
      overflow: hidden; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-list-fancy .entry-body {
    padding: 15px 30px 10px; } }

.entry-tpl-listxs {
  width: 344px; }
  .entry-tpl-listxs .entry-featured-media {
    float: left;
    margin: 0 20px 0 0;
    max-width: 110px; }
  .entry-tpl-listxs .entry-header {
    padding: 20px 0 10px; }
    .entry-tpl-listxs .entry-header .entry-title {
      clear: none; }

.entry-tpl-listxxs:after {
  display: table;
  clear: both;
  content: ""; }

.entry-tpl-listxxs .entry-featured-media {
  float: left;
  margin: 0 15px 0 0;
  width: 55px; }

.entry-tpl-listxxs .entry-header {
  overflow: hidden; }
  .entry-tpl-listxxs .entry-header .entry-title {
    margin-bottom: 0; }

.entry-tpl-tile {
  position: relative;
  margin-bottom: 10px;
  background: #000;
  color: #fff; }
  .entry-tpl-tile .entry-featured-media {
    position: relative;
    width: 100%;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .entry-tpl-tile .entry-before-title {
    margin-bottom: 0.5rem; }
    .entry-tpl-tile .entry-before-title .g1-meta {
      color: #fff;
      text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.333); }
  .entry-tpl-tile .entry-title {
    margin-bottom: 0;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.333); }
    .entry-tpl-tile .entry-title > a {
      position: relative; }
  .entry-tpl-tile .entry-categories {
    display: inline-block; }
  .entry-tpl-tile .entry-header {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: 1;
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    pointer-events: none;
    background-image: -owg-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75) 100%);
    background-image: -webkit-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75) 100%);
    background-image: -moz-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75) 100%);
    background-image: -o-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75) 100%);
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75) 100%); }

@media only screen and (min-width: 801px) {
  .entry-tpl-tile {
    margin-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-tile {
    margin-bottom: 30px; }
    .entry-tpl-tile .entry-header {
      padding: 60px 30px 20px; } }

.entry-tpl-tile-xl .entry-featured-media .g1-frame-inner {
  padding-bottom: 56.25%; }

.entry-header .entry-categories {
  float: left; }

.entry-header .entry-flags {
  position: static;
  float: right; }

.entry-header .entry-title {
  clear: both; }

.entry-header-02 .entry-meta {
  padding-top: 10px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #e6e6e6; }

@media only screen and (min-width: 601px) {
  .g1-wrapper-with-stickies {
    padding-left: 86px; }
    .g1-wrapper-with-stickies:after {
      display: table;
      clear: both;
      content: ""; }
    .g1-wrapper-with-stickies .entry-essentials {
      width: 100%;
      float: right; }
    .g1-wrapper-with-stickies .entry-actions {
      width: 66px;
      float: left;
      margin-left: -86px;
      position: -webkit-sticky;
      position: sticky;
      top: 10px; } }

@media only screen and (min-width: 1025px) {
  .g1-wrapper-with-stickies {
    padding-left: 96px; }
    .g1-wrapper-with-stickies .entry-actions {
      margin-left: -96px; } }

.entry-tpl-classic-v3 > .entry-header .entry-meta-bunchy {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  float: none;
  position: relative;
  min-width: 240px;
  min-height: 30px;
  padding-left: 40px; }
  .entry-tpl-classic-v3 > .entry-header .entry-meta-bunchy .entry-categories {
    margin-bottom: 0; }
  .entry-tpl-classic-v3 > .entry-header .entry-meta-bunchy .avatar {
    position: absolute;
    left: 0;
    right: auto;
    top: 0; }

@media only screen and (min-width: 1025px) {
  .g1-indent {
    padding-left: 120px; }
    .g1-indent blockquote,
    .g1-indent .snax-message,
    .g1-indent .snax-items,
    .g1-indent .mashsb-container {
      margin-left: -120px; }
  .g1-indent-both {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 878px;
    padding-left: 120px;
    padding-right: 120px;
    margin-left: auto;
    margin-right: auto; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-bunchy .entry-tpl-index {
    padding-left: 120px; }
  .entry-tpl-bunchy .entry-tpl-index-stickies:after {
    display: table;
    clear: both;
    content: ""; }
  .entry-tpl-bunchy .entry-tpl-index-stickies .entry-box {
    width: 100%;
    float: right; }
  .entry-tpl-bunchy .entry-tpl-index-stickies .entry-actions {
    position: -webkit-sticky;
    position: sticky;
    float: left;
    width: 110px;
    border-width: 0;
    margin-left: -120px;
    top: 10px; } }

.entry-tpl-index {
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 1px 1px #ededed; }
  .entry-tpl-index .entry-flags {
    margin-bottom: 10px; }
  .entry-tpl-index .entry-featured-media {
    margin-bottom: 10px; }
  .entry-tpl-index .g1-button {
    float: right;
    margin-bottom: 15px; }
  .entry-tpl-index .entry-meta-with-avatar {
    min-width: 240px;
    min-height: 30px;
    padding-left: 40px;
    position: relative; }
    .entry-tpl-index .entry-meta-with-avatar .avatar {
      position: absolute;
      left: 0;
      right: auto;
      top: 0; }
  .entry-tpl-index .entry-categories {
    margin-bottom: 0; }

.entry-tpl-index > .entry-header {
  padding: 30px 10px 0 10px; }

.entry-tpl-index > .entry-summary {
  padding: 30px 10px; }

.entry-tpl-index > footer {
  padding: 0 10px; }

@media only screen and (min-width: 1025px) {
  .entry-tpl-index > .entry-header,
  .entry-tpl-index > .entry-summary,
  .entry-tpl-index > footer {
    padding-left: 30px;
    padding-right: 30px; } }

.archive-body-stream > .g1-row-inner > .g1-column-2of3 {
  max-width: 608px; }

@media only screen and (max-width: 800px) {
  .archive-body-stream > .g1-row-inner > .g1-column-1of6 {
    display: none; } }

.entry-tpl-stream {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 608px;
  width: 100%;
  margin: 0 auto 10px; }
  .entry-tpl-stream .entry-categories,
  .entry-tpl-stream .entry-flags {
    margin-bottom: 10px; }
  .entry-tpl-stream > .entry-header {
    position: relative; }
    .entry-tpl-stream > .entry-header .entry-categories {
      float: left; }
    .entry-tpl-stream > .entry-header .entry-title {
      clear: both; }
  .entry-tpl-stream > .entry-footer {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-top: 1px solid #e6e6e6; }
    .entry-tpl-stream > .entry-footer .mashsb-compact {
      display: inline-block;
      padding: 0;
      border: 0;
      margin-left: auto; }
    .entry-tpl-stream > .entry-footer .entry-stats {
      margin-top: 10px;
      margin-bottom: 10px; }
    .entry-tpl-stream > .entry-footer .snax-voting .snax-voting-score {
      font-size: 0 !important; }
      .entry-tpl-stream > .entry-footer .snax-voting .snax-voting-score strong {
        font-size: 16px; }
    .entry-tpl-stream > .entry-footer .price {
      margin-right: 10px;
      -webkit-order: -1;
      -ms-flex-order: -1;
      order: -1; }
    .entry-tpl-stream > .entry-footer .g1-button {
      margin: 10px 0 10px auto; }
  .entry-tpl-stream .entry-byline {
    margin-top: 10px;
    margin-bottom: 10px; }
  .entry-tpl-stream .snax-voting-upvote:before,
  .entry-tpl-stream .snax-voting-downvote:before {
    font-size: 21px; }

.entry-footer .snax-voting {
  margin-top: 10px;
  margin-bottom: 10px; }

.entry-footer .mashsb-compact {
  margin-top: 10px;
  margin-bottom: 10px; }

@media only screen and (min-width: 801px) {
  .entry-tpl-stream {
    margin-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-stream {
    margin-bottom: 30px; } }

.entry-tpl-stream {
  background: #fff;
  box-shadow: 0 1px 1px #ededed; }
  .entry-tpl-stream > .entry-header {
    padding: 1.5rem 10px 1px; }
  .entry-tpl-stream > .entry-featured-media {
    margin-bottom: 0; }
  .entry-tpl-stream > .entry-body {
    padding: 0 10px; }
  .entry-tpl-stream > .entry-footer {
    padding-left: 10px;
    padding-right: 10px; }

@media only screen and (min-width: 801px) {
  .entry-tpl-stream > .entry-header,
  .entry-tpl-stream > .entry-body,
  .entry-tpl-stream > .entry-footer {
    padding-left: 20px;
    padding-right: 20px; } }

@media only screen and (min-width: 1025px) {
  .entry-tpl-stream > .entry-header,
  .entry-tpl-stream > .entry-body,
  .entry-tpl-stream > .entry-footer {
    padding-left: 30px;
    padding-right: 30px; } }

/**
 * Index entry template.
 */
.entry-tpl-index-stickies .snax-bar {
  margin-bottom: 0; }

.entry-tpl-index-stickies .entry-flags {
  margin-top: 10px;
  padding: 0 10px;
  text-align: right;
  position: relative;
  z-index: 2; }

.entry-tpl-index-stickies .entry-flags + .entry-featured-media {
  margin-top: -60px; }

@media only screen and (max-width: 600px) {
  .entry-tpl-index-stickies .entry-featured-media {
    margin-left: -10px;
    margin-right: -10px; } }

.entry-tpl-index-stickies .entry-actions {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #e6e6e6; }

@media only screen and (min-width: 1025px) {
  .entry-tpl-index-stickies {
    padding-left: 120px; }
  .entry-tpl-index-stickies:after {
    display: table;
    clear: both;
    content: ""; }
  .entry-tpl-index-stickies .entry-box {
    width: 100%;
    float: right; }
  .entry-tpl-index-stickies .entry-actions {
    position: -webkit-sticky;
    position: sticky;
    float: left;
    width: 110px;
    border-width: 0;
    margin-left: -120px;
    top: 10px; } }

.g1-collection {
  clear: both;
  margin: 0 auto; }

.g1-collection-viewport {
  clear: both;
  margin-left: -10px;
  margin-right: -10px; }

.g1-collection-items {
  counter-reset: g1-collection-item-counter;
  clear: both;
  list-style: none;
  font-size: 0; }

.g1-collection-item {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  vertical-align: top;
  font-size: 1rem; }

.g1-collection-item .g1-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%; }

.g1-collection-item .g1-advertisement {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background: #e6e6e6; }

.g1-collection-item-1of3 {
  width: 100%; }

@media only screen and (min-width: 709px) {
  .g1-collection-items {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    margin-bottom: 0; }
  .g1-collection-item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch; } }

@media only screen and (min-width: 709px) and (max-width: 1024px) {
  .g1-collection-item-1of3 {
    width: 50%; } }

@media only screen and (min-width: 1025px) {
  .g1-collection-viewport {
    margin-left: -15px;
    margin-right: -15px; }
  .g1-collection-item {
    padding: 0 15px; }
  .g1-collection-columns-2 .g1-collection-item {
    width: 50%; }
  .g1-collection-columns-3 .g1-collection-item {
    width: 33.33333%; }
  .g1-collection-columns-4 .g1-collection-item {
    width: 25%; } }

.g1-collection-more {
  overflow: hidden;
  position: relative;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  text-align: center; }
  .g1-collection-more .g1-button {
    width: 100%; }

.g1-collection-more-spinner {
  display: none;
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  font-size: 21px;
  -webkit-animation: g1-anim-spin 2s infinite linear;
  animation: g1-anim-spin 2s infinite linear; }
  .g1-collection-more-spinner:before {
    font-family: "bimber";
    font-style: normal;
    content: "\e01d"; }

.g1-collection-more-inner {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto; }

.g1-collection-more-inner {
  max-width: 758px; }

.g1-collection-more-loading .g1-button {
  visibility: hidden; }

.g1-collection-more-loading .g1-collection-more-spinner {
  display: block; }

.g1-related-entries {
  margin: 3rem 0; }

.g1-dont-miss {
  margin-top: 60px; }

.g1-hot-content,
.g1-trending-content,
.g1-popular-content {
  margin-bottom: 3rem; }

.g1-collection-narrow .g1-collection-title,
.g1-collection-narrow .g1-collection-more {
  max-width: 608px;
  margin-left: auto;
  margin-right: auto; }

.g1-collection-masonry {
  max-width: none; }
  .g1-collection-masonry .g1-collection-item {
    display: inline-block; }
  .g1-collection-masonry .g1-collection-viewport {
    margin-left: -10px;
    margin-right: -10px; }
  .g1-collection-masonry .g1-collection-item {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px; }
    .g1-collection-masonry .g1-collection-item > * {
      margin-bottom: 10px; }

@media only screen and (min-width: 480px) {
  .g1-collection-masonry .g1-collection-item {
    width: 50%; } }

@media only screen and (min-width: 768px) {
  .g1-collection-masonry .g1-collection-item {
    width: 33.33333%;
    padding-left: 10px;
    padding-right: 10px; }
    .g1-collection-masonry .g1-collection-item > * {
      margin-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .g1-collection-masonry .g1-collection-item {
    width: 25%; } }

@media only screen and (min-width: 1280px) {
  .g1-collection-masonry .g1-collection-item {
    width: 20%; } }

.g1-featured-row {
  margin-bottom: 10px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: #e6e6e6; }
  .g1-featured-row > .g1-row-inner {
    max-width: 1182px; }

.g1-featured {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
  overflow-x: hidden; }

@media only screen and (min-width: 1183px) {
  .g1-featured {
    margin-left: auto;
    margin-right: auto; } }

/* Arrow navigation */
.g1-featured-arrow {
  display: none;
  overflow: hidden;
  width: 20px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0px;
  text-indent: 100%;
  text-align: center;
  white-space: nowrap;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.666);
  color: #fff; }
  .g1-featured-arrow:before {
    display: block;
    margin-top: -0.5em;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    font: 18px/1 "bimber";
    text-indent: 0;
    content: ""; }

.g1-featured-arrow-next {
  right: 0;
  left: auto; }
  .g1-featured-arrow-next:before {
    content: ""; }

.g1-hoverable .g1-featured:hover .g1-featured-arrow {
  display: block; }

.g1-hoverable .g1-featured-viewport-start:hover .g1-featured-arrow-prev {
  display: none; }

.g1-hoverable .g1-featured-viewport-end:hover .g1-featured-arrow-next {
  display: none; }

.g1-hoverable .g1-featured-viewport-no-overflow:hover .g1-featured-arrow-prev {
  display: none; }

.g1-hoverable .g1-featured-viewport-no-overflow:hover .g1-featured-arrow-next {
  display: none; }

.g1-featured-title {
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: 0.75em 0; }

/* Fade indicators */
.g1-featured-fade {
  display: block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 20px;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.375s ease-in-out;
  -moz-transition: opacity 0.375s ease-in-out;
  -o-transition: opacity 0.375s ease-in-out;
  transition: opacity 0.375s ease-in-out;
  background-image: -owg-linear-gradient(to left, transparent, rgba(0, 0, 0, 0.333));
  background-image: -webkit-linear-gradient(to left, transparent, rgba(0, 0, 0, 0.333));
  background-image: -moz-linear-gradient(to left, transparent, rgba(0, 0, 0, 0.333));
  background-image: -o-linear-gradient(to left, transparent, rgba(0, 0, 0, 0.333));
  background-image: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.333)); }

.g1-featured-fade-after {
  right: 0;
  left: auto;
  background-image: -owg-linear-gradient(to right, transparent, rgba(0, 0, 0, 0.333));
  background-image: -webkit-linear-gradient(to right, transparent, rgba(0, 0, 0, 0.333));
  background-image: -moz-linear-gradient(to right, transparent, rgba(0, 0, 0, 0.333));
  background-image: -o-linear-gradient(to right, transparent, rgba(0, 0, 0, 0.333));
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.333)); }

.g1-featured-viewport-start .g1-featured-fade-before {
  opacity: 0; }

.g1-featured-viewport-end .g1-featured-fade-after {
  opacity: 0; }

@media only screen and (min-width: 720px) {
  .g1-featured-fade {
    width: 40px; } }

.g1-hoverable .g1-featured-fade {
  display: none; }

@media only screen and (min-width: 1141px) {
  .g1-featured .g1-featured-fade {
    display: none; } }

.g1-featured-items {
  position: relative;
  margin: 0 auto;
  list-style: none;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  font-size: 0;
  letter-spacing: normal; }
  @media (hover: hover) {
    .g1-featured-items {
      overflow-x: hidden; } }

.g1-featured-item {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 192px;
  margin: 0;
  vertical-align: top;
  font-size: 1rem;
  white-space: normal; }
  .g1-featured-5 .g1-featured-item {
    width: 230.4px; }
  .g1-featured-4 .g1-featured-item {
    width: 288px; }
  .g1-featured-3 .g1-featured-item {
    width: 384px; }

.g1-featured-item + .g1-featured-item > .entry-tpl-listxs {
  margin-left: 60px; }

.g1-featured-with-gutter .g1-featured-items {
  padding: 3px 0;
  margin: 0 -3px; }

.g1-featured-with-gutter .g1-featured-item {
  padding: 3px; }

.g1-featured-no-results {
  margin-top: 22px;
  margin-top: 1.5rem; }

.g1-featured-5 .entry-tpl-gridxs {
  width: 230px; }

.g1-featured-4 .entry-tpl-gridxs {
  width: 288px; }

.g1-featured-ratio-1-1 .entry-tpl-gridxs .g1-frame-inner {
  padding-bottom: 100% !important; }
  .g1-featured-ratio-1-1 .entry-tpl-gridxs .g1-frame-inner img {
    height: 192px; }

.g1-featured-ratio-2-1 .entry-tpl-gridxs .g1-frame-inner {
  padding-bottom: 50% !important; }
  .g1-featured-ratio-2-1 .entry-tpl-gridxs .g1-frame-inner img {
    height: 192px/2; }

.g1-featured-ratio-16-9 .entry-tpl-gridxs .g1-frame-inner {
  padding-bottom: 56.25% !important; }
  .g1-featured-ratio-16-9 .entry-tpl-gridxs .g1-frame-inner img {
    height: 108px; }

.g1-featured-ratio-4-3 .entry-tpl-gridxs .g1-frame-inner {
  padding-bottom: 75% !important; }
  .g1-featured-ratio-4-3 .entry-tpl-gridxs .g1-frame-inner img {
    height: 144px; }

.g1-featured-items-bunchy .g1-featured-row {
  width: 100%;
  background-color: #000; }

.g1-featured-items-bunchy .g1-featured-title {
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: 0.75em 0; }

.g1-featured-items-bunchy .g1-featured-items {
  position: relative;
  margin: 0 auto;
  list-style: none;
  font-size: 0;
  letter-spacing: normal; }

.g1-featured-items-bunchy .g1-featured-item {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  vertical-align: top;
  font-size: 1rem;
  white-space: normal; }

@media only screen and (min-width: 801px) {
  .g1-featured-items-bunchy .g1-featured-item {
    width: 33.33333%; } }

.g1-featured-items-bunchy .g1-featured-no-results {
  margin-top: 22px;
  margin-top: 1.5rem; }

.g1-featured-items-bunchy .entry-tpl-tile {
  position: relative;
  background: #000;
  margin-bottom: 0; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-badge {
    position: absolute;
    left: 0;
    right: auto;
    top: 0; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-featured-media {
    position: relative;
    width: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-before-title {
    margin-bottom: 0.5rem; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-title {
    margin-bottom: 0;
    font-weight: 700; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-categories {
    display: inline-block; }
  .g1-featured-items-bunchy .entry-tpl-tile .entry-header {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    padding: 30px 10px 15px 10px;
    pointer-events: none;
    background-image: -owg-linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    background-image: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    background-image: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    background-image: -o-linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%); }

@media only screen and (min-width: 1025px) {
  .g1-featured-items-bunchy .entry-tpl-tile .entry-header {
    padding: 30px 30px 10px 30px; } }

.g1-featured-items-bunchy .entry-tpl-tile-xl .entry-featured-media .g1-frame-inner {
  padding-bottom: 56.25%; }

.g1-featured-row > .g1-row-inner.g1-featured-full-width {
  width: 100%;
  max-width: 100%;
  overflow: hidden; }
  .g1-featured-row > .g1-row-inner.g1-featured-full-width .g1-column {
    padding-left: 0;
    padding-right: 0; }
  .g1-featured-row > .g1-row-inner.g1-featured-full-width .g1-featured {
    margin-left: 0;
    margin-right: 0; }

.archive-featured {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.archive-featured-row .g1-mosaic {
  margin-bottom: 0; }

.archive-featured .archive-featured-title {
  overflow: visible;
  margin-bottom: 0;
  position: absolute;
  z-index: 1;
  left: 30px;
  right: auto;
  top: 15px; }
  .archive-featured .archive-featured-title strong {
    padding: 10px 10px;
    display: block;
    background-color: #f2f2f2; }

.archive-featured-with-gutter .archive-featured-title {
  left: 36px;
  top: 21px; }

@media only screen and (min-width: 709px) {
  .archive-featured.g1-row .archive-featured-title {
    position: absolute;
    z-index: 1;
    left: 45px;
    right: auto;
    top: -20px; }
    .archive-featured.g1-row .archive-featured-title strong {
      display: table-caption;
      padding: 20px 20px;
      position: absolute;
      left: 0;
      top: 0;
      text-align: center; } }

@media only screen and (max-width: 800px) {
  .archive-featured.g1-row .archive-featured-title {
    margin-left: -10px;
    margin-right: -10px; } }

.archive-featured-with-title > .g1-row-inner {
  padding-top: 30px; }

.g1-mosaic {
  position: relative; }
  .g1-mosaic:after {
    display: table;
    clear: both;
    content: ""; }
  .g1-mosaic .entry-tpl-tile {
    margin-bottom: 0; }

.g1-mosaic-item {
  position: relative; }
  .g1-mosaic-item > article {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .g1-mosaic-item > article > .entry-featured-media {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }
      .g1-mosaic-item > article > .entry-featured-media > .g1-frame {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0; }
      .g1-mosaic-item > article > .entry-featured-media img {
        display: none; }

.archive-featured-with-gutter .g1-mosaic {
  padding: 3px 0;
  margin-left: -3px;
  margin-right: -3px; }

.archive-featured-with-gutter .g1-mosaic-item > article {
  top: 3px;
  bottom: 3px; }

@media only screen and (min-width: 601px) {
  .archive-featured-with-gutter .g1-mosaic-item > article {
    left: 3px;
    right: 3px; } }

.archive-featured .entry-badge-open-list {
  display: none; }

.g1-mosaic-1 {
  margin-bottom: 1.5rem; }
  .g1-mosaic-1 .g1-mosaic-item {
    width: 100%;
    height: 400px; }

.archive-featured-bunchy {
  border-width: 0 0 1px;
  margin-bottom: 1.5rem;
  border-style: solid;
  border-color: #e6e6e6; }
  .archive-featured-bunchy .archive-featured-row {
    width: 100%;
    margin-bottom: 0;
    background-color: #474747; }
  .archive-featured-bunchy .archive-featured-header {
    min-height: 0;
    background: #474747;
    color: white;
    color: rgba(255, 255, 255, 0.666); }
    .archive-featured-bunchy .archive-featured-header .archive-featured-title {
      color: #fff; }
    .archive-featured-bunchy .archive-featured-header .g1-column {
      min-height: 0; }
  .archive-featured-bunchy .archive-featured-title,
  .archive-featured-bunchy #primary > .archive-body-title:first-child {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px); }
  .archive-featured-bunchy .g1-featured-row {
    width: 100%;
    background-color: #000; }
  .archive-featured-bunchy .g1-featured-title {
    overflow: hidden;
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    margin: 0.75em 0; }
  .archive-featured-bunchy .g1-featured-items {
    position: relative;
    margin: 0 auto;
    list-style: none;
    font-size: 0;
    letter-spacing: normal; }
  .archive-featured-bunchy .g1-featured-item {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    vertical-align: top;
    font-size: 1rem;
    white-space: normal; }
  @media only screen and (min-width: 801px) {
    .archive-featured-bunchy .g1-featured-item {
      width: 33.33333%; } }
  .archive-featured-bunchy .entry-tpl-feat-bunchy {
    margin: 0 0 3rem; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-categories {
      float: none;
      margin-bottom: 0; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-meta {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-meta-with-avatar {
      min-width: 240px;
      min-height: 30px;
      padding-left: 40px;
      position: relative; }
      .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-meta-with-avatar .avatar {
        position: absolute;
        left: 0;
        right: auto;
        top: 0; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .snax-bar {
      margin-bottom: 0; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .snax-bar + .entry-featured-media {
      margin-top: -10px; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-flags + .entry-featured-media {
      margin-top: -60px; }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-flags {
      margin-bottom: 0;
      z-index: 2;
      position: relative;
      text-align: right;
      padding: 10px; }
    @media only screen and (max-width: 600px) {
      .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-featured-media {
        margin-left: -10px;
        margin-right: -10px; } }
    .archive-featured-bunchy .entry-tpl-feat-bunchy .entry-actions {
      border-width: 1px 0 0;
      border-style: solid;
      border-color: #e6e6e6; }
  @media only screen and (min-width: 1025px) {
    .archive-featured-bunchy .entry-tpl-feat-bunchy > .entry-body {
      padding-left: 120px; }
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body:after {
      display: table;
      clear: both;
      content: ""; }
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body .entry-box {
      width: 100%;
      float: right; }
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body .entry-actions {
      position: -webkit-sticky;
      position: sticky;
      float: left;
      width: 110px;
      border-width: 0;
      margin-left: -120px;
      top: 10px; } }
  .archive-featured-bunchy .g1-featured-no-results {
    margin-top: 22px;
    margin-top: 1.5rem; }
  @media only screen and (min-width: 1025px) {
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body:after {
      display: table;
      clear: both;
      content: ""; }
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body .entry-box {
      width: 100%;
      float: right; }
    .archive-featured-bunchy .entry-tpl-feat-stickies > .entry-body .entry-actions {
      position: -webkit-sticky;
      position: sticky;
      float: left;
      width: 110px;
      border-width: 0;
      margin-left: -120px;
      top: 10px; } }

.g1-mosaic-2-2 .g1-mosaic-item {
  width: 100%;
  height: 400px; }

@media only screen and (min-width: 801px) {
  .g1-mosaic-2-2 .g1-mosaic-item {
    float: left;
    width: 50%;
    height: 400px; } }

.g1-mosaic-2-4-4 .g1-mosaic-item {
  width: 100%;
  height: 400px; }

@media only screen and (min-width: 601px) {
  .g1-mosaic-2-4-4 .g1-mosaic-item {
    float: left;
    width: 50%;
    height: 400px; }
  .g1-mosaic-2-4-4 .g1-mosaic-item-1 {
    width: 100%; } }

@media only screen and (min-width: 801px) {
  .g1-mosaic-2-4-4 .g1-mosaic-item {
    width: 25%;
    height: 400px; }
  .g1-mosaic-2-4-4 .g1-mosaic-item-1 {
    width: 50%; } }

.g1-mosaic-3-3-3 .g1-mosaic-item {
  width: 100%;
  height: 400px; }

@media only screen and (min-width: 801px) {
  .g1-mosaic-3-3-3 {
    height: 400px; }
    .g1-mosaic-3-3-3 .g1-mosaic-item {
      float: left;
      width: 33.33333%;
      height: 100%; } }

.g1-mosaic-2of3-3v-3v .g1-mosaic-item {
  height: 400px;
  float: left;
  width: 100%; }

@media only screen and (min-width: 601px) {
  .g1-mosaic-2of3-3v-3v .g1-mosaic-item {
    height: 400px;
    width: 50%; }
  .g1-mosaic-2of3-3v-3v .g1-mosaic-item-1 {
    width: 100%; } }

@media only screen and (min-width: 1025px) {
  .g1-mosaic-2of3-3v-3v {
    height: 400px;
    overflow: hidden; }
    .archive-featured-stretched .g1-mosaic-2of3-3v-3v {
      height: 500px; }
    .g1-mosaic-2of3-3v-3v .g1-mosaic-item {
      float: left;
      height: 50%;
      width: 33.33333%; }
    .g1-mosaic-2of3-3v-3v .g1-mosaic-item-1 {
      height: 100%;
      width: 66.66667%; } }

.g1-mosaic-4-4-4-4 .g1-mosaic-item {
  width: 100%;
  height: 400px; }

@media only screen and (min-width: 601px) {
  .g1-mosaic-4-4-4-4 .g1-mosaic-item {
    float: left;
    width: 50%;
    height: 400px; } }

@media only screen and (min-width: 801px) {
  .g1-mosaic-4-4-4-4 .g1-mosaic-item {
    float: left;
    width: 25%;
    height: 400px; } }

.g1-mosaic-3-3v-3v-3v-3v {
  overflow: hidden; }
  .g1-mosaic-3-3v-3v-3v-3v:after {
    display: table;
    clear: both;
    content: ""; }
  .g1-mosaic-3-3v-3v-3v-3v .g1-mosaic-item {
    width: 100%;
    height: 230px; }

@media only screen and (min-width: 601px) {
  .g1-mosaic-3-3v-3v-3v-3v .g1-mosaic-item {
    float: left;
    width: 50%;
    height: 230px; }
  .g1-mosaic-3-3v-3v-3v-3v .g1-mosaic-item-1 {
    height: 460px;
    width: 100%; } }

@media only screen and (min-width: 801px) {
  .g1-mosaic-3-3v-3v-3v-3v {
    height: 460px; }
    .g1-mosaic-3-3v-3v-3v-3v .g1-mosaic-item {
      width: 33.33333%;
      height: 50%; }
    .g1-mosaic-3-3v-3v-3v-3v .g1-mosaic-item-1 {
      height: 100%; } }

.g1-links ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .g1-links ul a {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    color: inherit;
    /* right arrow */
    /* clearfix */ }
    .g1-links ul a:before {
      width: 18px;
      display: inline-block;
      font-size: 14px;
      font-family: "bimber";
      content: "\e00b"; }
    .g1-links ul a:after {
      display: table;
      clear: both;
      content: ""; }
    .g1-links ul a .g1-meta {
      float: right;
      opacity: 0.666; }
  .g1-links ul a:hover {
    color: #000; }

.g1-links > ul {
  margin-bottom: 1.5rem; }

.widget_recent_entries ul {
  margin-left: 0;
  margin-right: 0;
  list-style: none; }

.widget_recent_entries li {
  margin-bottom: 0.666em;
  font-size: 15px;
  line-height: 20px; }
  .widget_recent_entries li > a {
    color: #333; }
  .widget_recent_entries li > a:hover {
    color: #ff0036; }
  .widget_recent_entries li > .post-date {
    display: block;
    font-size: 13px;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    color: #999; }

#wp-calendar {
  table-layout: fixed;
  position: relative;
  max-width: 350px;
  width: 100%;
  border-top-width: 3px;
  border-style: solid; }
  #wp-calendar caption {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 45px 0.375rem 0;
    text-align: left; }
  #wp-calendar table {
    width: 100%; }
  #wp-calendar th {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    text-align: center; }
  #wp-calendar td {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    text-align: center; }
  #wp-calendar tbody td {
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6; }
  #wp-calendar tfoot {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 40px;
    height: 1.5em; }
  #wp-calendar #prev {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    width: 50%;
    height: 100%;
    font-size: 0; }
    #wp-calendar #prev > a,
    #wp-calendar #prev > span {
      display: block;
      width: 100%;
      height: 100%; }
      #wp-calendar #prev > a:before,
      #wp-calendar #prev > span:before {
        display: block;
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: -0.5em;
        text-align: left;
        font: 21px/1 "bimber";
        content: ""; }
    #wp-calendar #prev > span {
      opacity: 0.2; }
  #wp-calendar #next {
    display: block;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 50%;
    height: 100%;
    font-size: 0; }
    #wp-calendar #next > a,
    #wp-calendar #next > span {
      display: block;
      width: 100%;
      height: 100%; }
      #wp-calendar #next > a:before,
      #wp-calendar #next > span:before {
        display: block;
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: -0.5em;
        text-align: right;
        font: 21px/1 "bimnber";
        content: ""; }
    #wp-calendar #next > span {
      opacity: 0.2; }

.tagcloud {
  margin-bottom: 1.5rem; }
  .tagcloud:after {
    display: table;
    clear: left;
    content: ""; }
  .tagcloud > a {
    display: block;
    position: relative;
    float: left;
    margin: 0 6px 6px 0;
    padding: 5px 9px 4px;
    font-size: 13px !important;
    line-height: 1.125;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    color: inherit;
    -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out; }
    .tagcloud > a:before {
      margin-right: 0.25em;
      content: "#"; }
    .tagcloud > a:after {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      border-width: 1px;
      border-style: solid;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
      border-radius: 12px;
      content: "";
      opacity: 0.1666;
      background-color: currentColor;
      -webkit-transition: opacity 0.375s ease-in-out;
      -moz-transition: opacity 0.375s ease-in-out;
      -o-transition: opacity 0.375s ease-in-out;
      transition: opacity 0.375s ease-in-out; }
  .tagcloud > a:hover:after {
    opacity: 1;
    border-color: currentColor;
    background: transparent; }

ul#recentcomments {
  margin-left: 0;
  margin-right: 0;
  list-style: none; }
  ul#recentcomments li.recentcomments {
    position: relative;
    margin-bottom: 1em;
    padding-left: 20px; }
    @media only screen and (min-width: 1025px) {
      ul#recentcomments li.recentcomments {
        padding-left: 30px; } }
    ul#recentcomments li.recentcomments:before {
      position: absolute;
      left: 0;
      right: auto;
      top: 0;
      font-size: 18px;
      font-family: "bimber";
      font-weight: normal;
      vertical-align: middle;
      content: "\e010";
      opacity: 0.333; }
    ul#recentcomments li.recentcomments .comment-author-link {
      font-size: 13px;
      font-family: "Poppins", "Roboto", "Arial", sans-serif; }
      ul#recentcomments li.recentcomments .comment-author-link .url {
        color: #666; }
      ul#recentcomments li.recentcomments .comment-author-link .url:hover {
        color: #000; }
    ul#recentcomments li.recentcomments > a {
      display: block;
      font-size: 1rem;
      font-size: 15px;
      line-height: 20px;
      color: inherit; }

.widget_archive select,
.widget_categories select {
  width: 100%; }

.widget_rss ul {
  margin-left: 0;
  list-style: none; }
  .widget_rss ul li {
    margin-bottom: 1.5rem; }
    .widget_rss ul li a.rsswidget {
      display: block;
      margin-bottom: 0.25em;
      font-size: 1.17em;
      line-height: 1.125; }
    .widget_rss ul li .rssSummary {
      margin-bottom: 0.75em; }
    .widget_rss ul li .rss-date,
    .widget_rss ul li .rssSummary + cite {
      display: block;
      margin-bottom: 0.75em;
      font: 13px/1.125 "Poppins", "Roboto", "Arial", sans-serif;
      opacity: 0.666; }

#secondary .widget {
  margin-bottom: 3rem; }

.widget_adace_patreon_widget .widgettitle {
  display: none; }

.widget_adace_patreon_widget .g1-section-patreon {
  padding: 90px 40px 30px 40px; }
  .widget_adace_patreon_widget .g1-section-patreon .g1-section-icon {
    top: 0%;
    left: 50%;
    width: 140px;
    height: 60px;
    margin: 0 0 0 -70px; }
    .widget_adace_patreon_widget .g1-section-patreon .g1-section-icon:after {
      bottom: -10px;
      right: 0;
      border-style: solid;
      border-width: 10px 70px 0px 70px;
      border-color: #fff transparent transparent transparent; }

.widget_adace_patreon_widget .g1-section-label {
  text-align: center; }

.widget_adace_patreon_widget .g1-section-body {
  text-align: center;
  float: none; }

.widget_adace_patreon_widget .g1-section-title {
  text-align: center; }

.widget_adace_patreon_widget .g1-section-btn-wrap {
  display: block;
  text-align: center;
  float: none;
  margin-top: 20px; }

.widget_g1_socials_youtube {
  text-align: center; }

.g1-youtube-video {
  margin-bottom: 10px; }
  .g1-youtube-video a {
    display: block;
    position: relative; }
    .g1-youtube-video a:after {
      display: inline-block;
      position: absolute;
      z-index: 2;
      left: 50%;
      right: auto;
      top: 50%;
      margin: -0.5em 0 0 -0.5em;
      font-size: 70px;
      line-height: 1;
      font-family: FontAwesome;
      font-style: normal;
      content: "\f16a";
      color: #fff;
      text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
  .g1-youtube-video img {
    display: block; }

.g1-youtube-video-title,
.g1-youtube-channel-name {
  margin-bottom: 0.75rem; }

.bypostauthor {
  /* By post author */ }

.g1-comments {
  margin: 0 auto; }
  .g1-comments .g1-tabs {
    margin-bottom: 10px; }
  .g1-comments .g1-tab .count {
    display: none; }

#comments {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 4.5em; }

.g1-comment-form-anchor {
  width: 100%;
  margin-bottom: 1.5rem; }

.comment-list {
  clear: both;
  margin: 0 0 1.5rem;
  list-style: none; }
  .comment-list .children {
    margin: 0;
    list-style: none; }

.comment {
  position: relative; }

.comment-body {
  padding: 0.75em 0 1.5em; }

.comment-meta {
  margin-bottom: 0.25em;
  font-size: 16px;
  line-height: 18px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  color: #999; }
  .comment-meta .says {
    display: none; }
  .comment-meta b {
    font-weight: 600; }
    .comment-meta b > a {
      color: #000; }
  .comment-meta a {
    color: #666; }

.comment-author {
  display: block;
  margin-right: 0.75em;
  text-align: left; }
  .comment-author .g1-epsilon {
    font-size: 16px; }
  .comment-author > .avatar {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    top: 0; }

.comment-metadata {
  display: inline-block;
  text-align: left; }

.comment-edit-link {
  margin-left: 1.5em; }

.comment .reply {
  margin-top: -1.25em; }

.comment-list .children {
  margin-left: 10px; }
  .comment-list .children .comment-author .g1-epsilon {
    font-size: 13px; }

.comment-form .g1-fake-avatar {
  display: none;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  cursor: default;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }
  .comment-form .g1-fake-avatar:before {
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: currentColor;
    opacity: 0.1666; }
  .comment-form .g1-fake-avatar:after {
    display: inline-block;
    position: relative;
    z-index: 2;
    left: 1px;
    right: auto;
    top: 5px;
    text-align: center;
    font: 40px/1 "bimber";
    content: "\e013";
    opacity: 0.333; }

.comment-form label {
  display: block; }

.comment-form > p {
  margin-bottom: 20px; }

.comment-form #author,
.comment-form #email,
.comment-form #url {
  width: 100%; }

.comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label,
.comment-form .comment-form-comment label {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden; }

@media only screen and (min-width: 801px) {
  .comment-form {
    position: relative;
    padding-left: 55px; }
    .comment-form > .g1-fake-avatar,
    .comment-form > .avatar {
      display: block;
      position: absolute;
      left: 0;
      right: 0; }
    .comment-form #author,
    .comment-form #email,
    .comment-form #url {
      width: auto;
      min-width: 50%; } }

@media only screen and (max-width: 800px) {
  .comment-meta {
    position: relative;
    min-height: 40px;
    padding-left: 50px; }
  .children .comment-meta {
    padding-left: 40px; } }

@media only screen and (min-width: 801px) {
  .comments-title {
    float: left; }
  .g1-comment-form-anchor {
    width: auto;
    float: right; }
  .comment {
    padding-left: 55px; }
  .comment-author {
    display: inline-block; }
    .comment-author .avatar {
      position: absolute;
      left: 0;
      right: auto; }
  .comment-list .children {
    margin-left: 0; }
    .comment-list .children .comment {
      padding-left: 40px; }
    .comment-list .children .comment-meta {
      padding-left: 0; } }

/**
    * Add some empty space before the target element.
    *
    * This way sticky elements won't cover it
    */
#comments:target:before {
  display: block;
  height: 120px;
  content: ""; }

#respond .snax-wpsl .wp-social-login-connect-with {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden; }

.g1-comment-count {
  display: none; }

.g1-notice-loading {
  display: none;
  text-align: center; }

.g1-comment-type.g1-loading .g1-notice-loading {
  display: block; }

/**
    * Add some empty space before the target element.
    *
    * This way sticky elements won't cover it
    */
#comments:target:before {
  display: block;
  height: 120px;
  content: ""; }

.g1-tab-item-fb a:before {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  font: 16px/12px "bimber";
  content: "\e040"; }

.g1-tab-item-dsq a:before {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  font: 16px/12px "bimber";
  content: "\e043"; }

.author-info {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 0 0;
  margin: 0 auto 30px;
  position: relative;
  border-radius: 0;
  background-color: #ededed; }
  .author-info:after {
    display: table;
    clear: both;
    content: ""; }
  .author-info .author-info-inner {
    position: relative; }
  .author-info .author-avatar {
    position: absolute;
    left: 10px;
    right: auto;
    top: 0;
    width: 40px;
    height: 40px;
    margin: 0; }
  .author-info .author-overview {
    padding-left: 60px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .author-info .author-title {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
    .author-info .author-title .g1-delta {
      margin-bottom: 0.76rem; }
  .author-info .g1-socials-items {
    order: 4;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    text-align: right;
    margin-bottom: .5rem; }
    .author-info .g1-socials-items .g1-socials-item-icon {
      font-size: 21px; }
  .author-info .author-avatar a {
    position: relative; }
  .author-info .author-avatar .author-info-rank {
    position: absolute;
    max-height: 40px;
    right: -40px;
    bottom: 0px;
    display: none; }
  .author-info .author-bio {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    order: 2; }

.g1-row .author-info {
  margin-left: auto;
  margin-right: auto; }

@media only screen and (min-width: 801px) {
  .author-info {
    padding: 30px 30px 0; }
    .author-info .author-avatar {
      left: 0;
      width: auto;
      height: auto; }
    .author-info .author-overview {
      min-height: 100px;
      padding-left: 120px; }
    .author-info .author-avatar .author-info-rank {
      display: block; } }

.g1-nav-single {
  margin: 2rem auto 1rem;
  font-family: "Poppins", "Roboto", "Arial", sans-serif; }

.g1-single-nav-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden; }

.g1-nav-single-links {
  margin: 0;
  overflow: hidden;
  list-style: none; }
  .g1-nav-single-links:after {
    display: table;
    clear: both;
    content: ""; }

.g1-nav-single-prev,
.g1-nav-single-next {
  margin-bottom: 1rem; }
  .g1-nav-single-prev > a,
  .g1-nav-single-next > a {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    color: inherit; }
    .g1-nav-single-prev > a > strong,
    .g1-nav-single-next > a > strong {
      display: block;
      margin-bottom: 0.5em;
      font-size: 13px;
      line-height: 16px;
      font-family: "Poppins", "Roboto", "Arial", sans-serif;
      font-weight: normal;
      opacity: 0.666; }
    .g1-nav-single-prev > a > span,
    .g1-nav-single-next > a > span {
      display: block;
      position: relative; }

.g1-nav-single-prev > a > span {
  margin-left: auto;
  margin-right: 0; }
  .g1-nav-single-prev > a > span:before {
    display: inline-block;
    position: absolute;
    top: -3px;
    width: 30px;
    margin-left: -30px;
    font-size: 28px;
    font-family: "bimber";
    font-weight: normal;
    content: "\e00d";
    text-align: left; }

.g1-nav-single-next > a > span {
  margin-left: 0;
  margin-right: auto; }
  .g1-nav-single-next > a > span:after {
    display: inline-block;
    position: absolute;
    top: -3px;
    left: auto;
    right: 100%;
    width: 30px;
    font-size: 28px;
    font-family: "bimber";
    font-weight: normal;
    content: "\e00b";
    text-align: left; }

.g1-nav-single-back {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden; }

@media only screen and (min-width: 801px) {
  .g1-nav-single-prev {
    float: left;
    width: 50%;
    text-align: left; }
  .g1-nav-single-next {
    float: right;
    width: 50%;
    text-align: right; }
    .g1-nav-single-next > a > span:after {
      left: 100%;
      right: auto;
      text-align: right; } }

.g1-teaser {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 80px;
  padding-left: 48px;
  position: fixed;
  z-index: 99;
  left: 0;
  right: auto;
  top: 50%;
  margin-top: -40px;
  background: #fff;
  color: #666; }
  .g1-teaser .entry-tpl-listxxs {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    width: 368px;
    min-height: 80px;
    padding-left: 48px;
    padding-right: 15px;
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    -moz-transition: -moz-transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    -o-transition: -o-transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out; }

.g1-teaser-arrow {
  display: block;
  width: 48px;
  position: absolute;
  z-index: 2;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s ease-in-out;
  background-color: inherit; }
  .g1-teaser-arrow:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -0.5em;
    font-size: 32px;
    line-height: 1;
    font-family: "bimber";
    content: ""; }
  .g1-teaser-arrow:hover {
    box-shadow: none;
    transition: box-shadow 0.5s ease-in-out; }

.g1-teaser-next {
  padding-left: 0;
  padding-right: 48px;
  right: 0;
  left: auto; }
  .g1-teaser-next .g1-teaser-arrow {
    right: 0;
    left: auto; }
    .g1-teaser-next .g1-teaser-arrow:before {
      content: ""; }
  .g1-teaser-next .entry-tpl-listxxs {
    right: 0;
    left: auto;
    padding-right: 48px;
    padding-left: 15px;
    -webkit-transform: translate(100%, -50%);
    -moz-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    -o-transform: translate(100%, -50%);
    transform: translate(100%, -50%); }

.g1-teaser:hover .entry-tpl-listxxs {
  -webkit-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%); }

@media only screen and (min-width: 1278px) {
  .g1-teaser {
    display: block; } }

.page-header {
  padding-top: 20px; }
  .page-header > .g1-row-background {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #e6e6e6; }
  .page-header .g1-column {
    overflow: hidden; }

.page-title {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-width: 0; }

.page-subtitle {
  margin-top: -20px;
  margin-bottom: 20px; }

.page-header-02 {
  text-align: center; }

.page-header-03 {
  text-align: center; }
  .page-header-03 > .g1-row-inner {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 360px;
    padding-top: 70px;
    padding-bottom: 70px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }

.page-header-02 .g1-archive-filter {
  margin-bottom: 20px; }

.page-header-01.archive-header-modifiable .g1-archive-filter {
  margin-bottom: 10px; }

@media only screen and (min-width: 801px) {
  .page-header-01.archive-header-modifiable .g1-column {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .page-header-01.archive-header-modifiable .g1-column .g1-archive-featured-image {
      margin-right: 20px; }
    .page-header-01.archive-header-modifiable .g1-column .g1-archive-filter {
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      justify-content: flex-end;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-grow: 1;
      flex-grow: 1; } }

.g1-archive-featured-image img {
  width: 80px;
  height: 80px;
  border-radius: 100px; }

.archive-icon {
  float: left;
  margin-right: 20px; }

.archive-body {
  padding: 10px 0; }
  .archive-body > .g1-row-background {
    background-color: #ededed !important; }

@media only screen and (min-width: 801px) {
  .archive-body {
    padding-top: 20px;
    padding-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .archive-body {
    padding-top: 30px;
    padding-bottom: 30px; } }

.archive-body-stream {
  text-align: center; }
  .archive-body-stream > .g1-row-inner > .g1-column {
    text-align: left; }

body.tag .archive-title:before {
  content: "#"; }

@-webkit-keyframes g1_frame_icon_bounce {
  0% {
    -webkit-transform: scale(1, 1); }
  50% {
    -webkit-transform: scale(0.5, 0.5); }
  100% {
    -webkit-transform: scale(1, 1); } }

@keyframes g1_frame_icon_bounce {
  0% {
    transform: scale(1, 1); }
  50% {
    transform: scale(0.5, 0.5); }
  100% {
    transform: scale(1, 1); } }

.alignleft {
  max-width: 50%;
  margin: 0 1.5em 0.75em 0;
  float: left; }

.alignright {
  margin: 0 0 0.75em 1.5em;
  float: right; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

/* Responsive captions */
.mceTemp,
.wp-caption,
.wp-caption-dt,
.wp-caption-dd {
  max-width: 100%; }

.gallery-caption {
  text-transform: none; }

.wp-caption img {
  display: block; }

.wp-caption-text {
  padding-top: 0.5em;
  padding-right: 10px;
  text-align: left;
  font-size: 13px;
  line-height: 16px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  color: #999; }
  .wp-caption-text a {
    color: #000; }

.g1-frame {
  display: block; }

.g1-frame-inner {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  position: relative; }
  .g1-frame-inner img {
    display: block; }

.g1-frame-icon {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  top: 50%;
  font-size: 18px;
  line-height: 60px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.05em;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2); }
  .g1-frame-icon:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 60px;
    font-family: "bimber";
    font-style: normal;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.666);
    opacity: 0.8; }

.entry-tpl-grid-fancy .g1-frame-icon,
.entry-tpl-list-fancy .g1-frame-icon {
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  font-size: 18px;
  line-height: 60px; }
  .entry-tpl-grid-fancy .g1-frame-icon:before,
  .entry-tpl-list-fancy .g1-frame-icon:before {
    font-size: 60px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.333); }

.entry-tpl-tile .g1-frame-icon,
.entry-tpl-gridxs .g1-frame-icon,
.entry-tpl-listxs .g1-frame-icon {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  font-size: 14px;
  line-height: 40px; }
  .entry-tpl-tile .g1-frame-icon:before,
  .entry-tpl-gridxs .g1-frame-icon:before,
  .entry-tpl-listxs .g1-frame-icon:before {
    font-size: 40px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.333); }

.entry-tpl-tile .g1-frame-icon {
  left: auto;
  right: 20px;
  top: 20px;
  margin: 0; }

.g1-frame-icon-video {
  display: block; }
  .g1-frame-icon-video:before {
    content: "\e01e"; }

.g1-frame-icon-gallery {
  display: block; }
  .g1-frame-icon-gallery:before {
    content: "\e024"; }

.entry-featured-media-main .g1-frame-inner {
  overflow: visible; }

.bimber-microshare-item-share {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: auto;
  right: 100%;
  top: 0;
  margin-right: 6px; }
  @media only screen and (max-width: 800px) {
    .bimber-microshare-item-share {
      right: calc(100% - 48px);
      top: 8px; } }

.bimber-microshare-item-share-toggle {
  display: block;
  overflow: hidden;
  width: 32px;
  height: 32px;
  font-size: 0;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  color: #999; }
  .bimber-microshare-item-share-toggle:before {
    margin: 0;
    display: inline-block;
    font: 18px/1 "bimber";
    line-height: 32px;
    vertical-align: middle;
    content: "\e011"; }

.bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle {
  visibility: hidden; }

.bimber-microshare-item-share:hover .bimber-microshare-item-share-content,
.bimber-microshare-item-share-expanded .bimber-microshare-item-share-content {
  visibility: visible; }

.bimber-microshare-item-share-content {
  visibility: hidden;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  width: 48px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff; }
  .bimber-microshare-item-share-content .bimber-microshare {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 48px;
    border-width: 2px;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
    text-align: center;
    border-style: solid;
    -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
    -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
    -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
    transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
    color: #fff; }
    .bimber-microshare-item-share-content .bimber-microshare:before {
      color: inherit;
      font: 18px/44px "bimber"; }
    .bimber-microshare-item-share-content .bimber-microshare:hover {
      opacity: 0.8; }
  .bimber-microshare-item-share-content .bimber-microshare-facebook {
    border-color: #2d5f9a;
    background-color: #2d5f9a; }
    .bimber-microshare-item-share-content .bimber-microshare-facebook:before {
      content: "\e040"; }
  .bimber-microshare-item-share-content .bimber-microshare-twitter {
    border-color: #00c3f3;
    background-color: #00c3f3; }
    .bimber-microshare-item-share-content .bimber-microshare-twitter:before {
      content: "\e041"; }
  .bimber-microshare-item-share-content .bimber-microshare-pinterest {
    border-color: #bd081c;
    background-color: #bd081c; }
    .bimber-microshare-item-share-content .bimber-microshare-pinterest:before {
      content: "\e042"; }

.entry-tpl-classic-v2 .bimber-microshare-item-share,
.entry-tpl-media-v2 .bimber-microshare-item-share,
.entry-tpl-background-stretched-v2 .bimber-microshare-item-share,
.entry-tpl-background-boxed-v2 .bimber-microshare-item-share,
.entry-tpl-overlay-stretched-v2 .bimber-microshare-item-share,
.entry-tpl-overlay-boxed-v2 .bimber-microshare-item-share {
  left: 10px;
  top: 10px; }

.entry-tpl-classic-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-classic-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle,
.entry-tpl-media-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-media-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle,
.entry-tpl-background-stretched-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-background-stretched-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle,
.entry-tpl-background-boxed-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-background-boxed-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle,
.entry-tpl-overlay-stretched-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-overlay-stretched-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle,
.entry-tpl-overlay-boxed-v2 .bimber-microshare-item-share:hover .bimber-microshare-item-share-toggle,
.entry-tpl-overlay-boxed-v2 .bimber-microshare-item-share-expanded .bimber-microshare-item-share-toggle {
  visibility: visible; }

.jsgif {
  position: relative; }
  .jsgif:hover {
    cursor: pointer; }
  .jsgif canvas {
    display: block;
    width: 100%; }

.g1-indicator-gif {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-width: 3px;
  border-style: solid;
  text-align: center;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border-color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.666);
  color: #fff; }
  .g1-indicator-gif:before {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
    content: "gif"; }

@media only screen and (min-width: 801px) {
  .g1-indicator-gif {
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    border-width: 0;
    font-size: 24px; } }

.g1-indicator-gif-playing {
  display: none; }

.g1-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: 45px 30px 1px 30px;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  /* Tricky bottom padding */ }
  .g1-box:after {
    display: block;
    width: 100%;
    height: 0;
    margin-top: 35px;
    content: ""; }

.g1-box-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  pointer-events: none;
  text-align: center;
  font: 24px/40px "bimber";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }
  .g1-box-icon:before {
    content: "\e012"; }

.g1-box > header {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px); }

.g1-box {
  text-align: center; }
  .g1-box input,
  .g1-box select {
    text-align: center; }
  .g1-box input:focus,
  .g1-box select:focus {
    text-align: left; }
  .g1-box input[type=submit]:focus {
    text-align: center; }
  .g1-box .mc4wp-form label {
    display: none; }

@media only screen and (min-width: 1025px) {
  .g1-box {
    padding-left: 34px;
    padding-right: 34px; } }

/**
 * MashShare LTR | RTL
 */
.mashsb-count {
  float: left; }

[class*=" mashicon-"] .icon::before,
[class^="mashicon-"] .icon::before {
  margin-right: 0; }
  @media only screen and (min-width: 801px) {
    [class*=" mashicon-"] .icon::before,
    [class^="mashicon-"] .icon::before {
      margin-right: 0.7em; } }

/**
 * Change the yellow subscribe icon
 */
.mashicon-subscribe {
  border-color: #808080;
  background-color: #808080; }
  .mashicon-subscribe .icon,
  .mashicon-subscribe .text {
    color: #fff; }

/* Change the yellow subscribe icon */
.mashsb-toggle-container {
  position: relative;
  margin-top: 15px;
  padding: 1.5rem 1.5rem 0;
  border-width: 0;
  border-color: currentColor; }
  .mashsb-toggle-container:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 6px;
    border-style: solid;
    content: "";
    opacity: 0.1667; }
  .mashsb-toggle-container:after {
    display: block;
    overflow: hidden;
    height: 0;
    margin-top: 1.5rem;
    content: " "; }

.onoffswitch:before {
  font-family: bimber;
  font-size: 32px;
  font-weight: normal;
  content: "\e01f"; }

.onoffswitch2:before {
  font-family: bimber;
  font-size: 24px;
  font-weight: normal;
  content: "\e01b"; }

.mashsb-box .text {
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em; }

.mashsbcount,
.mashpv .count {
  letter-spacing: -0.05em; }

.mashsb-count {
  margin-top: 6px;
  margin-right: 15px; }

.mashsb-buttons .mashsb-count {
  margin-right: 0;
  margin-left: 15px; }

.mashsb-buttons .mashsb-count:first-child {
  margin-right: 15px;
  margin-left: 0; }

.mashsb-sharetext {
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 300; }

.mashsb-main {
  padding-top: 12px;
  padding-bottom: 24px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #e6e6e6; }
  .mashsb-main .mashsbcount,
  .mashsb-main .mashpv .count {
    font-size: 36px;
    line-height: 1;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em; }
  .mashsb-main .mashsb-sharetext {
    display: block;
    font-size: 13px;
    line-height: 1;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    font-weight: 300; }

.mashsb-buttons:after {
  display: table;
  clear: both;
  content: ""; }

.mashsb-buttons a {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.mashsb-buttons .onoffswitch,
.mashsb-buttons .onoffswitch2 {
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  color: #999;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }
  .mashsb-buttons .onoffswitch:before,
  .mashsb-buttons .onoffswitch2:before {
    font-weight: normal; }

.mashsb-box .mashsb-buttons {
  margin-top: -6px; }
  .mashsb-box .mashsb-buttons a,
  .mashsb-box .mashsb-buttons .onoffswitch,
  .mashsb-box .mashsb-buttons .onoffswitch2 {
    margin: 6px 0 0 6px; }

@media only screen and (min-width: 801px) {
  .mashsb-main .mashsbcount,
  .mashsb-main .mashpv .count {
    font-size: 42px;
    line-height: 42px; } }

@media only screen and (min-width: 1025px) {
  .mashsb-main .mashsbcount,
  .mashsb-main .mashpv .count {
    font-size: 56px;
    line-height: 42px; } }

.mashsb-micro {
  position: absolute;
  left: 6px;
  right: auto;
  top: 6px; }
  @media only screen and (min-width: 1024px) {
    .mashsb-micro {
      right: 100%;
      left: auto;
      top: 0;
      padding-right: 6px; } }
  .mashsb-micro .mashsb-micro-toggle {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    border-color: #e6e6e6;
    background-color: #e6e6e6;
    color: #999; }
    .mashsb-micro .mashsb-micro-toggle:before {
      font-family: "bimber";
      font-weight: normal;
      content: "\e011"; }
  .mashsb-micro .mashsb-buttons {
    display: none;
    overflow: hidden;
    width: 48px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px; }
    .mashsb-micro .mashsb-buttons a {
      width: 100%;
      padding: 0px;
      margin: 0px;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0; }
      .mashsb-micro .mashsb-buttons a .icon {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0;
        text-align: center; }
        .mashsb-micro .mashsb-buttons a .icon:before {
          float: none;
          margin: 0;
          line-height: 48px; }
    .mashsb-micro .mashsb-buttons .text {
      display: none; }

.g1-wrapper-with-stickies .mashsb-micro {
  left: 6px;
  right: auto;
  top: 6px; }

.g1-img-wrap {
  display: block;
  position: relative; }

.mashsb-micro-wrapper {
  display: block;
  position: relative; }
  .mashsb-micro-wrapper .onoffswitch,
  .mashsb-micro-wrapper .onoffswitch2 {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden; }

.g1-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-micro-toggle,
.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-micro-toggle {
  display: none; }

.g1-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-buttons,
.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-buttons {
  display: block; }

.mashsb-compact .mashsb-buttons a {
  min-width: 0;
  padding-top: 10px;
  padding-bottom: 10px; }

.mashsb-compact .onoffswitch {
  display: none; }

@media only screen and (min-width: 601px) {
  .mashsb-side {
    position: relative;
    float: left;
    width: 66px;
    padding-bottom: 48px; }
    .mashsb-side .mashsb-count {
      width: 100%;
      padding: 10px 0;
      margin: 0;
      font-size: 30px;
      font-family: "Poppins", sans-serif;
      font-weight: 900;
      background-color: #fff;
      color: #000; }
    .mashsb-side .mashsb-buttons {
      clear: both;
      position: static;
      overflow: hidden;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px; }
      .mashsb-side .mashsb-buttons a {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-width: 0;
        width: 100%;
        margin: 0;
        text-align: center;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0; }
      .mashsb-side .mashsb-buttons .onoffswitch,
      .mashsb-side .mashsb-buttons .onoffswitch2 {
        width: 100%;
        margin-left: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0; }
      .mashsb-side .mashsb-buttons .icon {
        font-size: 28px !important;
        line-height: 39px !important;
        text-align: center !important; }
        .mashsb-side .mashsb-buttons .icon:before {
          display: inline-block;
          float: none !important;
          margin: 0 !important;
          font-size: 28px !important;
          line-height: 39px !important;
          text-align: center !important; }
      .mashsb-side .mashsb-buttons .text {
        display: none !important; } }

.g1-link-toggle {
  display: none;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent currentColor transparent;
  content: ""; }

.g1-hamburger {
  display: block;
  float: left;
  padding: 4px 0;
  margin-right: 20px;
  z-index: 1;
  cursor: pointer;
  color: inherit; }

.g1-hamburger-icon {
  display: block;
  font-size: 32px;
  line-height: 32px;
  font-family: "bimber";
  text-align: center; }
  .g1-hamburger-icon:before {
    display: inline;
    content: "\e018"; }

.g1-hamburger-label {
  display: none;
  font-size: 13px;
  line-height: 15px; }

.g1-hb-row-normal .g1-hamburger-label {
  display: block; }

.g1-hb-row-normal .g1-hamburger-label-hidden {
  display: none; }

.g1-hamburger-m .g1-hamburger-icon {
  width: 32px;
  font-size: 24px;
  line-height: 24px; }

.g1-hamburger-s .g1-hamburger-icon {
  width: 32px;
  font-size: 16px;
  line-height: 16px; }

.menu-item {
  position: relative; }
  .menu-item > a {
    display: block;
    position: relative;
    line-height: 1.25;
    color: inherit;
    -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
    transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out; }
    .menu-item > a mark {
      visibility: visible;
      display: inline-block;
      min-width: 1em;
      padding: 2px 6px;
      margin-left: 4px;
      vertical-align: top;
      font-size: 9px;
      line-height: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-align: center;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      border-radius: 10px;
      border-color: #000000;
      background-color: #000000;
      color: #ffffff; }

.menu-item-has-children > a mark {
  right: -3px; }

.menu-item-has-children > a:after {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  font-family: "bimber";
  content: "\e000"; }

.menu-item-g1-standard .sub-menu .menu-item-has-children > a:after {
  position: absolute;
  margin-left: 0;
  left: calc( 100% - 20px - 6px);
  right: auto;
  content: ""; }

.menu-item-g1-mega .sub-menu .menu-item-has-children > a:after {
  display: none; }

.mtm-drop-expanded > a:after {
  content: "\e002"; }

.g1-menu-item-helper {
  margin-bottom: 6px; }
  .g1-menu-item-helper > .mtm-link {
    font-size: 13px;
    line-height: 15px;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.666; }
  .menu-item-g1-mega .g1-menu-item-helper {
    display: none !important; }

.sub-menu {
  margin: 0;
  padding: 15px 0;
  list-style: none; }
  .sub-menu .menu-item > a {
    display: block; }
  .sub-menu > li > a {
    padding: 4px 20px;
    padding-right: 26px;
    font-size: 13px;
    font-family: "Poppins", "Roboto", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: normal; }

.g1-canvas .sub-menu {
  display: none; }

.menu-item-g1-mega {
  position: static; }

.g1-dropable .menu-item-g1-standard .sub-menu {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  left: 0;
  right: auto;
  width: 240px;
  padding: 20px 0;
  -webkit-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07); }
  .g1-dropable .menu-item-g1-standard .sub-menu .sub-menu {
    left: 100%;
    right: auto;
    top: -20px; }

.g1-dropable .menu-item-g1-mega > a .g1-link-toggle {
  border-color: transparent transparent #fff; }

.g1-dropable .menu-item-g1-mega .sub-menu-wrapper {
  display: none;
  max-width: 100%;
  width: 1212px;
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07); }
  .g1-dropable .menu-item-g1-mega .sub-menu-wrapper > .sub-menu {
    max-width: 1182px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0; }
    .g1-dropable .menu-item-g1-mega .sub-menu-wrapper > .sub-menu > .menu-item {
      display: inline-block;
      width: 25%;
      vertical-align: top;
      font-size: 1rem; }
      .g1-dropable .menu-item-g1-mega .sub-menu-wrapper > .sub-menu > .menu-item > a {
        font-weight: 700; }

.sub-menu-wrapper .g1-collection-items {
  margin-top: 30px;
  margin-bottom: 0; }

.g1-hoverable .g1-dropable .menu-item:hover,
.mtm-drop-expanded {
  z-index: 1; }
  .g1-hoverable .g1-dropable .menu-item:hover > .sub-menu,
  .g1-hoverable .g1-dropable .menu-item:hover > .sub-menu-wrapper,
  .mtm-drop-expanded > .sub-menu,
  .mtm-drop-expanded > .sub-menu-wrapper {
    display: block; }

.g1-hoverable .g1-dropable .menu-item:hover > a > .g1-link-toggle {
  display: block; }

/* CSS3 animations */
.g1-dropable .menu-item-g1-standard .sub-menu,
.g1-dropable .menu-item-g1-mega .sub-menu-wrapper,
.g1-dropable .menu-item > a > .g1-link-toggle {
  display: block;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -moz-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
  -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.55s, 0.175s, 0.175s;
  -moz-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
  -o-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
  transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden; }

.g1-hoverable .g1-dropable .menu-item-g1-standard:hover > .sub-menu,
.g1-hoverable .g1-dropable .menu-item-g1-standard .menu-item:hover > .sub-menu,
.g1-hoverable .g1-dropable .menu-item:hover > .sub-menu-wrapper,
.g1-hoverable .g1-dropable .menu-item:hover > a > .g1-link-toggle,
.g1-dropable .mtm-drop-expanded > .sub-menu,
.g1-dropable .mtm-drop-expanded > .sub-menu-wrapper,
.g1-dropable .mtm-drop-expanded > a > .g1-link-toggle {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: visibility 0s ease-in-out, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.175s, 0.175s, 0.175s;
  -moz-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
  -o-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
  transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s; }

/* Off-canvas sidebars */
html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll; }

.g1-body-inner {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out; }

.g1-canvas-overlay {
  display: block;
  visibility: hidden;
  position: absolute;
  z-index: 998;
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: visibility 0s ease-in-out, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
  -webkit-transition-delay: 0.5s, 0s;
  -moz-transition: visibility 0s ease-in-out 0.5s, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
  -o-transition: visibility 0s ease-in-out 0.5s, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
  transition: visibility 0s ease-in-out 0.5s, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
  background-color: #000;
  opacity: 0; }

.g1-canvas {
  visibility: hidden;
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  right: auto;
  width: 320px;
  max-width: 100vw;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-transition: visibility 0s ease-in-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition: visibility 0s ease-in-out 0.5s;
  -o-transition: visibility 0s ease-in-out 0.5s;
  transition: visibility 0s ease-in-out 0.5s; }
  .g1-canvas > .g1-canvas-content {
    position: relative;
    margin: 48px 30px 30px; }

.g1-canvas-toggle {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 44px;
  height: 28px;
  margin-left: -22px;
  position: absolute;
  left: 50%;
  right: auto;
  top: 10px;
  z-index: 1;
  line-height: 26px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #000;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }
  .g1-canvas-toggle:hover {
    opacity: 0.666; }
  .g1-canvas-toggle:before {
    display: inline-block;
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    width: 100%;
    margin-top: -0.5em;
    font-size: 24px;
    line-height: 1;
    font-family: "bimber", sans-serif;
    font-weight: normal;
    content: "\e01b"; }

html.g1-off-global {
  overflow: hidden; }
  html.g1-off-global body {
    height: 100%;
    overflow: hidden; }
  html.g1-off-global .g1-body-inner {
    -webkit-transform: translate(320px, 0);
    -moz-transform: translate(320px, 0);
    -ms-transform: translate(320px, 0);
    -o-transform: translate(320px, 0);
    transform: translate(320px, 0); }
  html.g1-off-global .g1-canvas {
    visibility: visible;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: visibility 0s ease-in-out;
    -moz-transition: visibility 0s ease-in-out;
    -o-transition: visibility 0s ease-in-out;
    transition: visibility 0s ease-in-out; }
  html.g1-off-global .g1-canvas-overlay {
    display: block;
    visibility: visible;
    opacity: 0.666;
    -webkit-transition: visibility 0.5s ease-in-out, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
    -moz-transition: visibility 0.5s ease-in-out, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
    -o-transition: visibility 0.5s ease-in-out, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245);
    transition: visibility 0.5s ease-in-out, opacity 0.5s cubic-bezier(0.735, 0.185, 0.41, 1.245); }

.g1-canvas .g1-quick-nav {
  margin-bottom: 1.5rem; }

.g1-canvas-snax {
  padding: 10px 30px;
  border-width: 1px 0 0;
  margin: 0 -30px;
  border-style: solid;
  border-color: #e6e6e6; }

.g1-socials-item-tooltip {
  display: none !important; }

.g1-socials-item-link {
  color: inherit; }

.g1-menu-v .menu-item a {
  display: block;
  position: relative; }
  .g1-menu-v .menu-item a:after {
    position: absolute;
    right: 0;
    left: auto; }

.g1-primary-nav {
  margin-bottom: 1.5rem; }

.g1-primary-nav-menu {
  margin: 0;
  list-style: none; }
  .g1-primary-nav-menu > .menu-item {
    display: block;
    font-size: 1rem;
    text-align: left; }
    .g1-primary-nav-menu > .menu-item > a {
      display: block;
      padding: 4px 0;
      font-size: 14px;
      line-height: 1;
      font-family: "Poppins", "Roboto", "Arial", sans-serif;
      font-weight: 700;
      text-transform: uppercase; }
      .g1-primary-nav-menu > .menu-item > a > strong {
        position: relative;
        top: 0.0833em;
        font-size: 1.5em;
        line-height: 0.01em;
        font-family: inherit;
        font-weight: inherit;
        letter-spacing: -0.05em; }
  .g1-primary-nav-menu > .menu-item-object-post_tag > a {
    text-transform: none !important;
    font-weight: 400 !important; }
    .g1-primary-nav-menu > .menu-item-object-post_tag > a:before {
      font-weight: 700;
      content: "#"; }

.g1-secondary-nav {
  margin-bottom: 1.5rem;
  z-index: 0; }

.g1-secondary-nav-menu {
  margin: 0;
  list-style: none; }
  .g1-secondary-nav-menu > .menu-item {
    display: block;
    font-size: 1rem;
    text-align: left; }
    .g1-secondary-nav-menu > .menu-item > a {
      display: block;
      padding: 6px 0;
      font-size: 13px;
      line-height: 14px;
      font-family: "Poppins", "Roboto", sans-serif;
      font-weight: 400; }

.g1-quick-nav {
  clear: both; }

.g1-quick-nav-menu {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  list-style: none;
  text-align: center; }
  .g1-quick-nav-menu > .menu-item {
    display: inline-block;
    margin: 6px 0;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
    .g1-quick-nav-menu > .menu-item > a {
      display: block;
      padding: 0 5px;
      text-transform: uppercase;
      font-size: 11px;
      line-height: 1.125;
      font-family: "Poppins", "Roboto", "Arial", sans-serif;
      font-weight: 700; }

.g1-quick-nav-short .menu-item .entry-flag {
  width: 1em;
  height: 1em;
  margin-bottom: 0.2em;
  font-size: 18px;
  line-height: 1;
  border-color: transparent;
  background-color: transparent;
  color: currentColor; }
  .g1-quick-nav-short .menu-item .entry-flag:before {
    font-size: inherit;
    opacity: 0.25;
    -webkit-transition: opacity 0.375s ease-in-out;
    -moz-transition: opacity 0.375s ease-in-out;
    -o-transition: opacity 0.375s ease-in-out;
    transition: opacity 0.375s ease-in-out; }

.g1-quick-nav-short .menu-item:hover .entry-flag:before,
.g1-quick-nav-short .current-menu-item .entry-flag:before {
  opacity: 0.99; }

.g1-quick-nav-long .g1-quick-nav-menu {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

@media only screen and (min-width: 1025px) {
  .g1-quick-nav {
    display: block;
    clear: none;
    float: right;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 0;
    padding-bottom: 0; }
    .g1-quick-nav .g1-quick-nav-menu {
      display: block; }
      .g1-quick-nav .g1-quick-nav-menu > .menu-item > a {
        padding: 0 10px;
        font-size: 16px; }
  .g1-quick-nav-short .menu-item .entry-flag {
    font-size: 32px; } }

.g1-quick-nav-without-labels .g1-quick-nav-menu > .menu-item > a {
  font-size: 0; }

.g1-quick-nav-without-labels .menu-item > a .wyr-reaction-icon,
.g1-quick-nav-without-labels .menu-item > a .entry-flag {
  margin-top: 0;
  margin-bottom: 0; }

.g1-quick-nav-tabs {
  float: none;
  margin-top: 0;
  margin-bottom: 30px; }
  .g1-quick-nav-tabs .g1-quick-nav-menu {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    font-size: 0; }
  .g1-quick-nav-tabs .menu-item {
    margin: 0 !important;
    font-size: 1rem; }
    .g1-quick-nav-tabs .menu-item > a {
      padding: 10px 10px !important; }
      .g1-quick-nav-tabs .menu-item > a .entry-flag {
        display: none; }
  .g1-quick-nav-tabs .current-menu-item > a .entry-flag {
    display: block; }

.g1-hb-row .g1-quick-nav-top {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }
  .g1-hb-row .g1-quick-nav-top .menu-item {
    margin: 0; }
    .g1-hb-row .g1-quick-nav-top .menu-item > a {
      font-size: 13px;
      line-height: 15px;
      font-family: inherit;
      font-weight: inherit;
      text-transform: none; }
    .g1-hb-row .g1-quick-nav-top .menu-item .entry-flag {
      height: 20px;
      width: 20px;
      margin: 7px auto;
      line-height: 20px;
      border-color: transparent;
      background-color: transparent;
      color: inherit; }
      .g1-hb-row .g1-quick-nav-top .menu-item .entry-flag:before {
        font-size: 20px;
        color: inherit; }

.g1-quick-nav-small-icons {
  clear: both;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }
  .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item {
    margin: 0;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
    .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item > a {
      display: block;
      padding: 5px 5px;
      text-transform: none;
      font-size: 13px;
      line-height: 14px;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      color: inherit; }
      .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item > a:before {
        display: block;
        margin-bottom: 0.1em;
        font: 17px/1 "bimber";
        opacity: 0.666;
        -webkit-transition: opacity 0.375s ease-in-out;
        -moz-transition: opacity 0.375s ease-in-out;
        -o-transition: opacity 0.375s ease-in-out;
        transition: opacity 0.375s ease-in-out; }
  .g1-quick-nav-small-icons .g1-quick-nav-menu > .current-menu-item > a:before,
  .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item:hover > a:before {
    opacity: 1; }
  .g1-quick-nav-small-icons .menu-item-type-g1-latest > a:before {
    position: relative;
    top: -1px;
    content: "\e017"; }
  .g1-quick-nav-small-icons .menu-item-type-g1-popular > a:before {
    position: relative;
    top: -2px;
    content: "\e015"; }
  .g1-quick-nav-small-icons .menu-item-type-g1-hot > a:before {
    content: "\e01c"; }
  .g1-quick-nav-small-icons .menu-item-type-g1-trending > a:before {
    content: "\e030"; }
  @media only screen and (min-width: 1024px) {
    .g1-quick-nav-small-icons {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      clear: none;
      float: left;
      margin-left: -10px;
      margin-top: 0px;
      margin-bottom: 0px; }
      .g1-quick-nav-small-icons .g1-quick-nav-menu {
        display: block; }
        .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item > a {
          padding: 9px 10px;
          font-size: 14px; }
          .g1-quick-nav-small-icons .g1-quick-nav-menu > .menu-item > a:before {
            display: inline-block;
            margin-right: 0.5em;
            margin-bottom: 0;
            font-size: 18px;
            line-height: 1px;
            vertical-align: middle; } }

.g1-preheader-bunchy .g1-quick-nav {
  clear: both; }

.g1-preheader-bunchy .g1-quick-nav-menu > .menu-item {
  margin: 0;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%; }
  .g1-preheader-bunchy .g1-quick-nav-menu > .menu-item > a {
    display: block;
    padding: 5px 5px;
    text-transform: none;
    font-size: 13px;
    line-height: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: inherit; }
    .g1-preheader-bunchy .g1-quick-nav-menu > .menu-item > a:before {
      display: block;
      margin-bottom: 0.1em;
      font: 17px/1 "bimber";
      opacity: 0.666;
      -webkit-transition: opacity 0.375s ease-in-out;
      -moz-transition: opacity 0.375s ease-in-out;
      -o-transition: opacity 0.375s ease-in-out;
      transition: opacity 0.375s ease-in-out; }

.g1-preheader-bunchy .g1-quick-nav-menu > .current-menu-item > a:before,
.g1-preheader-bunchy .g1-quick-nav-menu > .menu-item:hover > a:before {
  opacity: 1; }

.g1-preheader-bunchy .menu-item-type-g1-latest > a:before {
  position: relative;
  top: -1px;
  content: "\e017"; }

.g1-preheader-bunchy .menu-item-type-g1-popular > a:before {
  position: relative;
  top: -2px;
  content: "\e015"; }

.g1-preheader-bunchy .menu-item-type-g1-hot > a:before {
  content: "\e01c"; }

.g1-preheader-bunchy .menu-item-type-g1-trending > a:before {
  content: "\e030"; }

@media only screen and (min-width: 1025px) {
  .g1-preheader-bunchy .g1-quick-nav {
    display: block;
    clear: none;
    float: left;
    margin-left: -10px;
    margin-top: 0px;
    margin-bottom: 0px; }
    .g1-preheader-bunchy .g1-quick-nav .g1-quick-nav-menu {
      display: block; }
      .g1-preheader-bunchy .g1-quick-nav .g1-quick-nav-menu > .menu-item > a {
        padding: 9px 10px;
        font-size: 14px; }
        .g1-preheader-bunchy .g1-quick-nav .g1-quick-nav-menu > .menu-item > a:before {
          display: inline-block;
          margin-right: 0.5em;
          margin-bottom: 0;
          font-size: 18px;
          line-height: 1px;
          vertical-align: middle; } }

.g1-footer-nav {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 15px; }
  .g1-footer-nav:after {
    display: table;
    clear: both;
    content: ""; }
  .g1-footer-nav > ul {
    margin: 0 -10px;
    list-style: none; }
    .g1-footer-nav > ul > .menu-item {
      display: inline-block; }
  .g1-footer-nav a {
    display: block;
    padding: 0 10px;
    color: inherit; }

.g1-drop {
  display: block;
  margin-bottom: 1.5rem; }

.g1-drop-toggle {
  display: none;
  position: relative;
  font-size: 0;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out; }

.g1-drop-toggle-icon {
  display: inline-block;
  width: 30px;
  font-size: 32px;
  line-height: 50px;
  font-family: "bimber";
  font-style: normal;
  text-align: center;
  vertical-align: middle; }
  .g1-drop-toggle-icon:before {
    display: block; }

.g1-drop-toggle-badge {
  display: inline-block;
  visibility: visible;
  min-width: 1em;
  padding: 0 0.25em;
  position: absolute;
  right: -0.75em;
  left: auto;
  top: -0.375em;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  z-index: 2;
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em; }

.g1-drop-toggle-badge-hidden {
  visibility: hidden; }

.g1-drop-toggle-arrow {
  display: none;
  position: absolute;
  z-index: 99;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent currentColor transparent;
  content: "";
  /* Hide if there's no .g1-drop-content inside .g1-drop */ }
  .g1-drop-toggle:last-child > .g1-drop-toggle-arrow {
    display: none !important; }

.g1-drop-content {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.g1-dropable .g1-drop {
  display: inline-block;
  margin-left: 10px;
  vertical-align: top; }

.g1-dropable .g1-drop-toggle {
  display: inline-block; }

.g1-dropable .g1-drop-content {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07); }

.g1-hoverable .g1-dropable .g1-drop:hover .g1-drop-content,
.g1-dropable .g1-drop-expanded .g1-drop-content {
  display: block; }

@media only screen and (min-width: 1025px) {
  .g1-dropable .g1-drop {
    position: relative; }
  .g1-dropable .g1-drop-content {
    width: 320px;
    left: 0;
    right: auto;
    top: 100%; }
  .g1-dropable .g1-drop-before .g1-drop-content {
    right: 0;
    left: auto; } }

.g1-drop-s .g1-drop-toggle-icon {
  font-size: 16px;
  line-height: 32px; }

.g1-drop-m .g1-drop-toggle-icon {
  font-size: 24px;
  line-height: 40px; }

/* Individual elements */
.g1-drop-the-user .g1-drop-toggle-icon {
  position: relative; }
  .g1-drop-the-user .g1-drop-toggle-icon:before {
    content: "\e013"; }
    body.logged-in .g1-drop-the-user .g1-drop-toggle-icon:before {
      visibility: hidden; }
  .g1-drop-the-user .g1-drop-toggle-icon .avatar {
    position: absolute;
    z-index: 2;
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }

.g1-drop-the-search .g1-drop-toggle-icon:before {
  content: "\e016"; }

.g1-drop-the-socials .g1-drop-toggle-icon:before {
  content: "\e011"; }

.g1-drop-the-wpml > .g1-drop-content {
  left: 50%;
  right: auto;
  width: 180px;
  padding: 6px;
  margin-left: -90px; }

.g1-dropable .g1-drop-the-socials {
  position: relative; }
  .g1-dropable .g1-drop-the-socials > .g1-drop-content {
    left: 50%;
    right: auto;
    width: 60px;
    padding: 6px;
    margin-left: -30px; }
  .g1-dropable .g1-drop-the-socials .g1-socials-items {
    margin: 0; }

.g1-dropable .g1-drop-the-search .search-form {
  margin: 20px 30px; }

.g1-dropable .g1-drop-the-search .g1-searches > ul {
  margin-left: 30px;
  margin-right: 30px; }

.g1-dropable .g1-drop-the-search .g1-searches > .no-results {
  margin-left: 30px;
  margin-right: 30px;
  text-align: center; }

.g1-dropable .g1-drop-the-search .g1-searches .g1-searches-all-results {
  padding: 8px 30px;
  margin: 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #e6e6e6; }

.g1-dropable .g1-drop-the-cart {
  margin-left: 20px; }
  .g1-dropable .g1-drop-the-cart .product_list_widget {
    margin: 0; }
  .g1-dropable .g1-drop-the-cart > .g1-drop-content {
    padding: 15px; }

/* CSS3 animations */
.g1-dropable .g1-drop > .g1-drop-content,
.g1-dropable .g1-drop > .g1-drop-toggle > .g1-drop-toggle-arrow {
  display: block;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -moz-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  -o-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
  -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.55s, 0.175s, 0.175s;
  -moz-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
  -o-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
  transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden; }

.g1-hoverable .g1-dropable .g1-drop:hover > .g1-drop-content,
.g1-hoverable .g1-dropable .g1-drop:hover > .g1-drop-toggle > .g1-drop-toggle-arrow,
.g1-dropable .g1-drop-expanded > .g1-drop-content,
.g1-dropable .g1-drop-expanded > .g1-drop-toggle > .g1-drop-toggle-arrow {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: visibility 0s ease-in-out, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.175s, 0.175s, 0.175s;
  -moz-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
  -o-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
  transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s; }

@keyframes g1-drop-toggle-badge-jump {
  0% {
    transform: translate(0, 0); }
  25% {
    transform: translate(0, -12px); }
  50% {
    transform: translate(0, 0); }
  75% {
    transform: translate(0, -6px); }
  100% {
    transform: translate(0, 0); } }

.g1-drop-toggle-badge-animate {
  animation: g1-drop-toggle-badge-jump 0.666s ease-in-out forwards; }

.adsbygoogle {
  color: inherit;
  background: transparent; }

.g1-advertisement {
  margin-top: 3rem;
  margin-bottom: 3rem; }
  .g1-advertisement img {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .g1-advertisement .adace-align-left img {
    margin-left: 0; }
  .g1-advertisement .adace-align-left ins {
    margin-left: auto;
    margin-right: 0; }
  .g1-advertisement .adace-align-right img {
    margin-right: 0; }
  .g1-advertisement .adace-align-right ins {
    margin-left: 0;
    margin-right: auto; }
  .g1-advertisement .adace-align-center ins {
    margin: 0 auto; }
  .g1-advertisement .g1-fluid-wrapper {
    margin: 0 auto; }

.adace-align-center ins {
  margin: 0 auto; }

.g1-advertisement-before-header-theme-area {
  margin-top: 0;
  margin-bottom: 0; }
  .g1-advertisement-before-header-theme-area > .g1-row-background {
    background-color: #252525 !important; }
  .g1-advertisement-before-header-theme-area .adace-slot div {
    padding: 10px 0; }

.g1-advertisement-before-content-theme-area {
  margin-top: 0;
  margin-bottom: 0;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #e6e6e6; }
  .g1-advertisement-before-content-theme-area .quads-location {
    padding: 10px 0; }

.g1-advertisement-after-featured-content {
  width: 100%;
  max-width: 1152px;
  padding: 10px 0;
  margin: 20px auto 0; }

.g1-advertisement-inside-list {
  margin-top: 30px;
  margin-bottom: 60px; }

.g1-advertisement-inside-grid,
.g1-advertisement-inside-stream {
  margin-top: 0;
  margin-bottom: 10px; }

.g1-advertisement-left-stream,
.g1-advertisement-right-stream {
  margin-top: 0;
  margin-bottom: 30px; }

.widget .g1-advertisement {
  margin-top: 0;
  margin-bottom: 0; }

@media only screen and (min-width: 801px) {
  .g1-advertisement-inside-grid,
  .g1-advertisement-inside-stream {
    margin-bottom: 20px; } }

@media only screen and (min-width: 1025px) {
  .g1-advertisement-inside-grid,
  .g1-advertisement-inside-stream {
    margin-bottom: 30px; } }

.adace-sponsor {
  margin-bottom: 0px;
  margin-top: 15px; }

.g1-featured-row + .g1-advertisement {
  margin-top: -10px; }

.g1-sharebar {
  position: fixed;
  z-index: 99;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
  .g1-sharebar > div.g1-row-background {
    background: #fff; }
  .g1-sharebar .mashsb-main {
    border-top-width: 0; }

@media only screen and (max-width: 800px) {
  .g1-sharebar > .g1-row-inner {
    max-width: 100%; }
    .g1-sharebar > .g1-row-inner > .g1-column {
      padding: 0; }
  .g1-sharebar .mashsb-container {
    padding: 0;
    border-width: 0; }
  .g1-sharebar .mashsb-count {
    margin: 0;
    padding: 5px 10px; }
  .g1-sharebar .mashsb-buttons {
    margin: 0; }
    .g1-sharebar .mashsb-buttons a,
    .g1-sharebar .mashsb-buttons .onoffswitch,
    .g1-sharebar .mashsb-buttons .onoffswitch2 {
      margin: 0;
      border-radius: 0; } }

@media only screen and (min-width: 801px) {
  .g1-sharebar {
    top: 0;
    bottom: auto; }
    body.admin-bar .g1-sharebar {
      top: 46px; }
    .g1-sharebar .mashsb-container {
      padding-top: 6px;
      padding-bottom: 6px; }
  .g1-sharebar-on {
    display: block; }
  .g1-sharebar-off {
    display: none; }
  /* CSS3 animations */
  .cssanimations .g1-sharebar {
    display: block;
    -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
    -moz-transition: visibility 0s, opacity 0.375s ease-in-out, -moz-transform 0.375s ease-in-out;
    -o-transition: visibility 0s, opacity 0.375s ease-in-out, -o-transform 0.375s ease-in-out;
    transition: visibility 0s, opacity 0.375s ease-in-out, transform 0.375s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden; }
  .cssanimations .g1-sharebar-off {
    visibility: hidden;
    -webkit-transform: translate(0px, -100%);
    -moz-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    -o-transform: translate(0px, -100%);
    transform: translate(0px, -100%);
    -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
    -webkit-transition-delay: 0.375s, 0s, 0s;
    -moz-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -moz-transform 0.375s ease-in-out;
    -o-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -o-transform 0.375s ease-in-out;
    transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, transform 0.375s ease-in-out; }
  .cssanimations .g1-sharebar-on {
    visibility: visible;
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

.g1-sharebar .mashsb-count {
  color: inherit; }

.g1-sharebar .mashsbcount,
.g1-sharebar .mashpv .count {
  font-size: 24px;
  line-height: 1; }

.g1-sharebar .mashsb-sharetext {
  display: block; }

.g1-404-icon {
  display: inline-block;
  margin-bottom: 0.2em;
  font-size: 64px;
  line-height: 1;
  font-family: bimber;
  font-style: normal;
  opacity: 0.2; }

.g1-404-search .g1-404-icon:before {
  content: "\e016"; }

.g1-404-report .g1-404-icon:before {
  content: "\e012"; }

.g1-404-back .g1-404-icon:before {
  content: "\e019"; }

/*
 * Sections - Base Styles. Loads all specific sections.
 */
.g1-section {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .g1-section [type=text],
  .g1-section [type=email] {
    border-color: transparent; }

.g1-section-background {
  background: #fff; }

.g1-dark-background {
  background: #1a1a1a; }
  .g1-dark-background .g1-section-background {
    background: #1a1a1a; }

.g1-dark-background-tone {
  background: #262626; }

.g1-section-icon {
  position: absolute;
  display: block;
  background-color: #fff; }
  .g1-section-icon:before {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    color: #000;
    font-family: "bimber" !important;
    font-size: 32px;
    line-height: 32px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .g1-section-icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0; }

.g1-section-body {
  position: relative;
  display: block;
  margin-bottom: 20px; }

.g1-section-img {
  position: relative;
  display: block;
  margin-bottom: 20px; }
  .g1-section-img img {
    max-width: 80px;
    -webkit-border-radius: 128px;
    -moz-border-radius: 128px;
    -ms-border-radius: 128px;
    -o-border-radius: 128px;
    border-radius: 128px; }

.g1-section-label {
  display: block;
  margin-bottom: 2px;
  text-align: center; }

.g1-section-title {
  display: block;
  margin-bottom: 0;
  text-align: center; }
  .g1-section-title a {
    color: inherit; }

@media only screen and (min-width: 901px) {
  .g1-section-label {
    text-align: left; }
  .g1-section-title {
    text-align: left; } }

.g1-section-btn-wrap {
  position: relative;
  display: block;
  text-align: center; }

.g1-section-btn {
  position: relative;
  display: inline-block; }

/*
 * Sections - Newsletter. Loads all specific sections.
 */
.g1-section-newsletter {
  margin: 20px 0;
  padding: 90px 40px 20px 40px; }
  .g1-section-newsletter .g1-section-body {
    position: relative;
    display: block;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center; }
    .g1-section-newsletter .g1-section-body .g1-mega + .g1-delta, .g1-section-newsletter .g1-section-body .g1-alpha + .g1-delta {
      margin-top: 0; }
  .g1-section-newsletter .g1-section-form-wrap {
    position: relative;
    display: block;
    text-align: center; }
    .g1-section-newsletter .g1-section-form-wrap.g1-newsletter-section-standard {
      min-width: auto; }
      .g1-section-newsletter .g1-section-form-wrap.g1-newsletter-section-standard p {
        margin-bottom: 0; }
    .g1-section-newsletter .g1-section-form-wrap.g1-newsletter-section-large {
      margin: 0 auto;
      max-width: 560px;
      min-width: auto; }
  .g1-section-newsletter form {
    position: relative; }
    .g1-section-newsletter form .mc4wp-form-fields {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: column;
      flex-flow: column; }
      .g1-section-newsletter form .mc4wp-form-fields [type=text],
      .g1-section-newsletter form .mc4wp-form-fields [type=email] {
        text-align: left; }
      .g1-section-newsletter form .mc4wp-form-fields p:first-child {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto; }
  .g1-section-newsletter.g1-section-large {
    padding: 10px 0px; }
    .g1-section-newsletter.g1-section-large .g1-section-icon {
      display: none; }
    .g1-section-newsletter.g1-section-large .g1-section-body {
      display: block;
      float: none;
      text-align: center; }
    .g1-section-newsletter.g1-section-large .g1-section-title {
      text-align: center; }
    .g1-section-newsletter.g1-section-large .g1-section-form-wrap {
      display: block;
      margin-top: 20px;
      float: none;
      text-align: center; }
    .g1-section-newsletter.g1-section-large .g1-newsletter-privacy {
      text-align: center;
      margin-top: 10px; }

@media only screen and (min-width: 901px) {
  .g1-section-newsletter {
    padding: 20px 40px 20px 120px; }
    .g1-section-newsletter .g1-section-icon {
      top: 50%;
      width: 80px;
      height: 60px;
      margin-top: -30px;
      left: 0;
      margin-left: 0; }
      .g1-section-newsletter .g1-section-icon:after {
        bottom: 0px;
        right: -10px;
        border-width: 30px 0 30px 10px;
        border-color: transparent transparent transparent #fff; }
    .g1-section-newsletter .g1-section-body {
      float: left;
      margin-bottom: 20px;
      text-align: left; }
    .g1-section-newsletter .g1-section-form-wrap {
      float: right; }
    .g1-section-newsletter form {
      position: relative; }
      .g1-section-newsletter form .mc4wp-form-fields {
        -webkit-flex-flow: row;
        flex-flow: row; } }

/*
 * Patreon - Base Styles.
 */
.g1-section-patreon {
  padding: 90px 40px 20px 40px; }
  .g1-section-patreon .g1-section-icon {
    top: 0%;
    left: 50%;
    width: 120px;
    height: 51px;
    margin-left: -60px;
    background-color: #fff;
    background-image: url("../../../images/patreon.png");
    background-position: 50% 50%;
    background-size: 80%;
    background-repeat: no-repeat; }
    .g1-section-patreon .g1-section-icon:after {
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      bottom: -10px;
      border-style: solid;
      border-width: 10px 60px 0px 60px;
      border-color: #fff transparent transparent transparent; }

.g1-section-boxed .g1-section-patreon {
  margin: 20px 0; }

.g1-section-full .g1-section-patreon {
  margin: 0; }

@media only screen and (min-width: 901px) {
  .g1-section-patreon {
    padding: 20px 40px 20px 180px; }
    .g1-section-patreon .g1-section-icon {
      position: absolute;
      display: block;
      top: 50%;
      width: 140px;
      height: 60px;
      margin-top: -30px;
      left: 0;
      margin-left: 0; }
      .g1-section-patreon .g1-section-icon:after {
        bottom: 0px;
        right: -10px;
        border-width: 30px 0 30px 10px;
        border-color: transparent transparent transparent #fff; }
    .g1-section-patreon .g1-section-body {
      float: left;
      margin-bottom: 0px;
      text-align: left; }
    .g1-section-patreon .g1-section-btn-wrap {
      float: right; }
  .g1-section-full .g1-section-patreon {
    margin: 20px 0;
    padding: 0px 40px 0px 180px; } }

/*
 * Instagram - Base Styles.
 */
.g1-instagram-section {
  overflow: hidden; }
  .g1-instagram-section .g1-column {
    padding-left: 0;
    padding-right: 0; }
  .g1-instagram-section .g1-instagram-items {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: -2.5px; }
    .g1-instagram-section .g1-instagram-items li {
      width: 33.33333%;
      padding: 2.5px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .g1-instagram-section .g1-instagram-items li a {
        display: block; }
        .g1-instagram-section .g1-instagram-items li a img {
          display: block; }
  .g1-instagram-section .g1-instagram-profile {
    margin-bottom: 0.75rem; }
  .g1-instagram-section .g1-instagram-follow {
    margin-bottom: 0.75rem; }
  .g1-instagram-section .g1-instagram-overview {
    text-align: center; }
  .g1-instagram-section .after-instagram-username-widget {
    margin-bottom: 0.75rem; }
  .g1-instagram-section .g1-instagram-feed {
    position: relative;
    display: block; }
    .g1-instagram-section .g1-instagram-feed.g1-instagram-feed-compressed .g1-instagram-items {
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
    @media only screen and (min-width: 699px) {
      .g1-instagram-section .g1-instagram-feed.g1-instagram-feed-compressed .g1-instagram-items {
        -ms-flex-wrap: none;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap; } }
  .g1-instagram-section .g1-instagram-feed .g1-instagram-items {
    margin: 0px; }
  .g1-instagram-section .g1-instagram-feed .g1-instagram-items li {
    width: 25%;
    padding: 0; }
  .g1-instagram-section .g1-instagram-feed-overlay {
    display: block;
    padding: 30px 30px 15px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #000;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .g1-instagram-section .g1-instagram-feed-overlay .fa-instagram {
    font-size: 42px;
    line-height: 42px; }
  @media only screen and (min-width: 901px) {
    .g1-instagram-section .g1-instagram-feed .g1-instagram-items li {
      width: 16.66667%;
      padding: 0; }
    .g1-instagram-section .g1-instagram-feed-overlay {
      padding: 50px 50px 35px 50px; } }

.g1-dark .g1-instagram-feed-overlay {
  color: #fff;
  background-color: #262626; }

/*
 * Promoted Product - Base Styles.
 */
.g1-section-promoted-product {
  display: block;
  margin: 60px 0;
  padding: 70px 40px 0px 40px; }
  .g1-section-promoted-product .g1-section-thumbnail {
    position: absolute;
    display: block;
    left: 50%;
    top: -50px;
    width: 100px;
    height: 100px;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    -webkit-transform: rotate(-5deg) translate(-50%, 0%);
    -moz-transform: rotate(-5deg) translate(-50%, 0%);
    -ms-transform: rotate(-5deg) translate(-50%, 0%);
    -o-transform: rotate(-5deg) translate(-50%, 0%);
    transform: rotate(-5deg) translate(-50%, 0%); }

@media only screen and (min-width: 901px) {
  .g1-section-promoted-product {
    margin: 40px 0;
    padding: 20px 40px 0px 140px; }
    .g1-section-promoted-product .g1-section-thumbnail {
      left: 20px;
      top: -5px;
      -webkit-transform: rotate(-5deg) translate(0%, 0%);
      -moz-transform: rotate(-5deg) translate(0%, 0%);
      -ms-transform: rotate(-5deg) translate(0%, 0%);
      -o-transform: rotate(-5deg) translate(0%, 0%);
      transform: rotate(-5deg) translate(0%, 0%); }
    .g1-section-promoted-product .g1-section-body {
      float: left; }
    .g1-section-promoted-product .g1-section-btn-wrap {
      float: right; } }

@media only screen and (min-width: 1025px) {
  #page {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh; }
    body.admin-bar #page {
      min-height: calc( 100vh - 32px); }
    #page > #primary.g1-primary-max {
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; } }

/* 5.3 Header - Theme Area
----------------------------------------------------------------------------- */
.g1-preheader {
  clear: both;
  position: relative;
  z-index: 70;
  margin: 0 auto; }
  .g1-preheader > .g1-row-background {
    border-bottom: 1px solid transparent; }
  .g1-preheader .g1-drop {
    display: none;
    float: right;
    margin-top: 0;
    margin-bottom: 0; }
  .g1-preheader .g1-drop-toggle {
    color: inherit; }
  .g1-preheader .g1-drop-toggle-icon {
    width: 20px;
    height: 32px; }
    .g1-preheader .g1-drop-toggle-icon:before {
      font-size: 16px; }
  .g1-preheader .g1-socials-items {
    display: none;
    float: right;
    margin: 0 0 0 20px; }
  .g1-preheader .wpml-ls {
    display: none; }

@media only screen and (min-width: 1025px) {
  .g1-preheader .g1-drop,
  .g1-preheader .g1-socials-items,
  .g1-preheader .wpml-ls {
    display: block; } }

.g1-header {
  clear: both;
  position: relative;
  z-index: 60;
  margin: 0 auto; }
  .g1-header:before {
    display: table;
    content: ""; }
  .g1-header > .g1-row-inner,
  .g1-header > .g1-row-inner > .g1-column {
    position: static; }
  .g1-header > .g1-row-background {
    border-bottom: 1px solid transparent; }
  .g1-header .g1-drop .g1-socials-item-link {
    color: #666; }
  .g1-header .g1-drop .g1-socials-item-link:hover {
    color: #000; }

.g1-sticky-top-wrapper {
  clear: both;
  position: static;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  top: 0; }
  body.admin-bar .g1-sticky-top-wrapper {
    top: 32px; }

@media only screen and (max-width: 601px) {
  body.admin-bar .g1-sticky-top-wrapper {
    top: 0px; } }

.site-title,
.site-description {
  margin-bottom: 0; }

.g1-logo-wrapper {
  display: block;
  position: relative; }
  .g1-logo-wrapper .g1-logo {
    display: block; }

.g1-id {
  margin: 15px auto;
  z-index: 1; }

.g1-logo-small-wrapper {
  display: none;
  float: left;
  margin: 5px 0; }
  .g1-logo-small-wrapper .g1-logo-small {
    display: block;
    max-height: 40px;
    width: auto; }

@media only screen and (max-width: 1024px) {
  body.g1-has-mobile-logo .g1-logo-small-wrapper {
    display: block; } }

@media only screen and (min-width: 1025px) {
  .g1-header .g1-id {
    float: left; } }

.g1-hb-row {
  position: relative;
  z-index: 50;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%; }
  .g1-hb-row > .g1-row-inner {
    position: static; }
    .g1-hb-row > .g1-row-inner > .g1-column {
      position: static; }
    .g1-hb-row > .g1-row-inner:after {
      display: table;
      clear: both;
      content: ""; }
  .g1-hb-row .g1-hamburger {
    margin-right: 10px; }
  .g1-hb-row .g1-drop {
    margin-bottom: 0; }
  .g1-hb-row .g1-drop-toggle-badge {
    top: 6px; }
  .g1-hb-row .g1-socials-items {
    margin: 0 0 0 20px; }
  .g1-hb-row .g1-drop .g1-socials-item-link {
    color: #666; }
  .g1-hb-row .g1-drop .g1-socials-item-link:hover {
    color: #000; }
  .g1-hb-row .g1-quick-nav {
    float: none; }

.g1-navbar + .g1-header,
.g1-navbar + .g1-sticky-top-wrapper {
  z-index: 40; }

.g1-body-inner .g1-primary-nav,
.g1-body-inner .g1-secondary-nav {
  margin-bottom: 0; }

.g1-body-inner .g1-primary-nav-menu > .menu-item {
  display: inline-block;
  vertical-align: top; }
  .g1-body-inner .g1-primary-nav-menu > .menu-item > a {
    padding: 7px 10px;
    line-height: 16px; }

.g1-body-inner .g1-secondary-nav {
  display: none; }

.g1-body-inner .g1-secondary-nav-menu > .menu-item {
  display: inline-block;
  vertical-align: top; }
  .g1-body-inner .g1-secondary-nav-menu > .menu-item > a {
    padding: 8px 0;
    margin-right: 12px; }

@media only screen and (max-width: 1024px) {
  body.g1-has-mobile-logo .g1-header .g1-id,
  body.g1-has-mobile-logo .g1-navbar .g1-id {
    display: none; } }

@media only screen and (min-width: 961px) {
  .g1-navbar .g1-primary-nav {
    display: block; }
  .g1-navbar .g1-hamburger {
    display: none; } }

.g1-socials {
  position: relative; }
  .g1-socials .g1-socials-items {
    display: inline-block;
    margin-bottom: 0; }

.g1-hb-row .g1-drop-create {
  order: unset; }

@media only screen and (min-width: 1025px) {
  .g1-body-inner .g1-secondary-nav {
    display: block; } }

.g1-hb-row-3 {
  z-index: 55; }

.g1-hb-row-2 {
  z-index: 60; }

.g1-hb-row-1 {
  z-index: 65; }

.g1-hb-row .g1-column {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.g1-hb-full .g1-row-inner {
  max-width: 100%; }

.g1-hb-shadow-on {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.g1-bin {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.g1-bin-align-left {
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }

.g1-bin-align-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; }

.g1-bin-align-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }

.g1-bin-grow-on {
  -webkit-flex-grow: 1;
  flex-grow: 1; }

.g1-bin-grow-off {
  -webkit-flex-grow: 0;
  flex-grow: 0; }

.g1-bin-1 .g1-primary-nav,
.g1-bin-1 .g1-secondary-nav,
.g1-bin-1 .g1-quick-nav,
.g1-bin-1 .g1-id,
.g1-bin-1 .g1-hb-search-form,
.g1-bin-1 .g1-socials-hb-list,
.g1-bin-1 .snax-button-create,
.g1-bin-1 .wpml-ls {
  margin-right: 20px;
  margin-left: 0px; }

.g1-bin-1 .g1-hamburger,
.g1-bin-1 .g1-drop {
  margin-right: 10px;
  margin-left: 0px; }

.g1-bin-2 .g1-primary-nav,
.g1-bin-2 .g1-secondary-nav,
.g1-bin-2 .g1-quick-nav,
.g1-bin-2 .g1-id,
.g1-bin-2 .g1-hb-search-form,
.g1-bin-2 .g1-socials-hb-list,
.g1-bin-2 .snax-button-create,
.g1-bin-2 .wpml-ls {
  margin-right: 10px;
  margin-left: 10px; }

.g1-bin-2 .g1-hamburger,
.g1-bin-2 .g1-drop {
  margin-right: 5px;
  margin-left: 5px; }

.g1-bin-3 .g1-primary-nav,
.g1-bin-3 .g1-secondary-nav,
.g1-bin-3 .g1-quick-nav,
.g1-bin-3 .g1-id,
.g1-bin-3 .g1-hb-search-form,
.g1-bin-3 .g1-socials-hb-list,
.g1-bin-3 .snax-button-create,
.g1-bin-3 .wpml-ls {
  margin-right: 0px;
  margin-left: 20px; }

.g1-bin-3 .g1-hamburger,
.g1-bin-3 .g1-drop {
  margin-right: 0px;
  margin-left: 10px; }

.g1-hb-row-normal {
  display: none; }

@media only screen and (min-width: 1025px) {
  .g1-hb-row-mobile {
    display: none; }
  .g1-hb-row-normal {
    display: block; } }

.g1-hb-row-mobile .g1-helper {
  display: none; }

.g1-hb-row-mobile .g1-id,
.g1-hb-row-mobile .g1-logo-small-wrapper {
  max-width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.g1-hb-row-mobile .g1-quick-nav {
  width: 100%; }

.g1-hb-row-mobile .g1-quick-nav-top {
  width: auto; }

#g1-hb-preview-elements,
#g1-hb-preview-elements-canvas {
  display: none; }

.g1-hb-row .g1-drop-content .g1-socials-items-tpl-grid {
  display: block; }

.g1-hb-row .snax-button-create {
  -webkit-align-self: center;
  align-self: center; }

.g1-hb-row .g1-id {
  margin: 0; }

.g1-hb-row .g1-hb-search-form {
  margin-top: 6px;
  margin-bottom: 6px; }

.g1-hb-row .g1-dropable .g1-bin-1 .g1-drop-content {
  left: 0;
  right: auto; }

.g1-hb-row .g1-dropable .g1-bin-2 .g1-drop-content,
.g1-hb-row .g1-dropable .g1-bin-3 .g1-drop-content {
  left: auto;
  right: 0; }

.g1-hb-search-form .search-form {
  margin-bottom: 0px; }

.g1-canvas-background {
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.g1-socials-s .g1-socials-item-icon-48 {
  font-size: 14px;
  height: auto;
  width: 32px;
  line-height: inherit; }

/* 5.5 Content - Theme Area
----------------------------------------------------------------------------- */
/* Default Template - Sidebar on Right */
#primary {
  display: block;
  font-size: 1rem;
  text-align: left; }

#secondary {
  display: block;
  font-size: 1rem;
  text-align: left; }

@media only screen and (min-width: 801px) {
  #primary,
  #secondary {
    display: inline-block;
    vertical-align: top; } }

/* 5.7 Footer - Theme Area
----------------------------------------------------------------------------- */
.g1-prefooter {
  z-index: 0;
  padding-top: 3rem; }
  .g1-prefooter .widget {
    margin-bottom: 3rem; }

.g1-footer {
  padding-top: 15px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif; }
  .g1-footer .g1-column {
    font-size: 13px;
    line-height: 1.5; }

.g1-prefooter + .g1-footer:before {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  border-width: 1px 0 0;
  border-style: solid;
  content: "";
  border-color: currentColor;
  opacity: 0.1667; }

.g1-footer-stamp {
  display: table;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 14px;
  color: inherit;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out, opacity 0.375s ease-in-out; }
  .g1-footer-stamp:hover {
    opacity: 0.8; }

.g1-footer-stamp-icon {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.g1-footer-stamp-label {
  display: block;
  margin: 0.75em 0; }

.g1-footer-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 15px; }

@media only screen and (max-width: 800px) {
  .g1-footer {
    text-align: center; } }

@media only screen and (min-width: 801px) {
  .g1-footer-text {
    width: 50%;
    padding-right: 15px;
    float: left; }
  .g1-footer-nav {
    width: 50%;
    padding-left: 15px;
    float: right; }
    .g1-footer-nav > ul {
      float: right; } }

/* Fix Instagram embed before the JS is applied  */
blockquote.instagram-media:before, blockquote.instagram-media:after,
blockquote.instagram-media-registered:before,
blockquote.instagram-media-registered:after {
  display: none; }

.instagram-media,
.instagram-media-registered {
  box-shadow: none !important;
  border-radius: 0 !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #e6e6e6 !important; }

.instagram-media {
  position: inherit !important; }

/**
 * Magnific Popup adjustments
 */
.mfp-close {
  font-size: 0; }
  .mfp-close:before {
    font: 24px/44px "bimber";
    content: "\e01b"; }
  .mfp-close:hover, .mfp-close:active {
    top: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }

.g1-link {
  font-size: 14px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #000; }

.g1-link-right:after {
  display: inline-block;
  margin-left: 8px;
  font-family: "bimber";
  vertical-align: middle;
  content: "\e00b";
  content: ""; }

.g1-link-left:before {
  display: inline-block;
  margin-right: 8px;
  font-family: "bimber";
  vertical-align: middle;
  content: "\e00d";
  content: ""; }

span.g1-link {
  opacity: 0.333; }

.g1-link-xs {
  font-size: 10px; }

.g1-link-s {
  font-size: 12px; }

.g1-link-l {
  font-size: 16px; }

.g1-link-xl {
  font-size: 18px; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden; }

@media print {
  .g1-quick-nav,
  .g1-navbar,
  .g1-featured-row {
    display: none; }
  .mashsb-container,
  .mashsb-micro,
  .g1-advertisement,
  .g1-newsletter {
    display: none; }
  /* Hide content elements */
  .g1-nav-single,
  .g1-related-entries,
  .g1-more-from,
  .g1-dont-miss,
  #secondary {
    display: none; }
  /* Force a page-break before the comments */
  #comments {
    position: relative;
    page-break-before: always; }
  /* Hide comment elements */
  .comments-title + .g1-button,
  .comment-edit-link,
  .comment-reply-link,
  #respond {
    display: none; }
  /* Hide footer */
  .g1-prefooter,
  .g1-footer {
    display: none; } }

.entry-media-nsfw {
  position: relative; }

.g1-nsfw {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 1.125;
  background: #000;
  color: #fff; }

.g1-nsfw-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.g1-nsfw-icon {
  display: block;
  width: 1.333em;
  height: 1.333em;
  margin: 0 auto;
  position: relative;
  font-size: 32px;
  line-height: 1.333;
  font-weight: 400;
  font-style: normal;
  color: #ff0036; }
  .g1-nsfw-icon:before {
    font-family: "bimber";
    content: "\e022"; }

.g1-nsfw-title {
  font-size: 1.17em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em; }

.g1-nsfw-desc {
  font-size: 0.83em;
  font-family: "Poppins", sans-serif;
  color: #ccc; }

.entry-media-nsfw-embed > *:first-child {
  visibility: hidden; }

.entry-tpl-stream .g1-nsfw-icon,
.entry-tpl-index .g1-nsfw-icon {
  font-size: 48px; }

.entry-tpl-stream .g1-nsfw-title,
.entry-tpl-index .g1-nsfw-title {
  font-size: 1.5em; }

.entry-tpl-stream .g1-nsfw-desc,
.entry-tpl-index .g1-nsfw-desc {
  font-size: 1em; }

.entry-tpl-gridxs .g1-nsfw-title {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.entry-tpl-gridxs .g1-nsfw-desc,
.entry-tpl-grid-fancy .g1-nsfw-desc,
.entry-tpl-list-fancy .g1-nsfw-desc {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.g1-related-entries-row,
.g1-dont-miss-row {
  background: #ededed;
  margin-left: calc((100% - 100vw)/2);
  margin-right: calc((100% - 100vw)/2);
  padding-left: calc((100vw - 100%)/2);
  padding-right: calc((100vw - 100%)/2); }

/* Tabs */
.g1-tabs {
  border-bottom: 1px solid #e6e6e6; }

.g1-tab-items {
  margin-left: 0;
  list-style: none;
  margin-bottom: 0px;
  font-size: 0;
  color: #000; }
  .g1-tab-items > .g1-tab-item {
    display: inline-block;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: -1px;
    font-size: 1rem;
    opacity: 0.6;
    vertical-align: top; }

.g1-subtab-items {
  margin-left: 0;
  list-style: none;
  font-size: 0; }
  .g1-subtab-items > .g1-subtab-item {
    display: inline-block;
    font-size: 13px;
    vertical-align: top; }

.g1-tab {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 16px;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit; }
  .g1-tab .count {
    display: inline-block;
    min-width: 16px;
    padding: 0;
    margin-left: 0.25em;
    font: 300 12px/16px "Poppins","Roboto",sans-serif;
    text-align: center;
    vertical-align: top;
    border-radius: 8px;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    color: #666; }

.g1-subtab {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  opacity: 0.6;
  color: #000; }

.g1-tab-pane {
  display: none; }

.g1-tab-pane-current {
  display: block; }

.g1-tab-items .g1-tab-item.active,
.g1-tab-items .g1-tab-item:hover,
.g1-tab-items .g1-tab-item-current,
.g1-tab-items .g1-subtab-item:hover,
.g1-tab-items .g1-subtab-item-current,
.g1-subtab-items .g1-tab-item.active,
.g1-subtab-items .g1-tab-item:hover,
.g1-subtab-items .g1-tab-item-current,
.g1-subtab-items .g1-subtab-item:hover,
.g1-subtab-items .g1-subtab-item-current {
  border-color: #000;
  color: #000;
  opacity: 1; }
  .g1-tab-items .g1-tab-item.active .g1-tab:before,
  .g1-tab-items .g1-tab-item:hover .g1-tab:before,
  .g1-tab-items .g1-tab-item-current .g1-tab:before,
  .g1-tab-items .g1-subtab-item:hover .g1-tab:before,
  .g1-tab-items .g1-subtab-item-current .g1-tab:before,
  .g1-subtab-items .g1-tab-item.active .g1-tab:before,
  .g1-subtab-items .g1-tab-item:hover .g1-tab:before,
  .g1-subtab-items .g1-tab-item-current .g1-tab:before,
  .g1-subtab-items .g1-subtab-item:hover .g1-tab:before,
  .g1-subtab-items .g1-subtab-item-current .g1-tab:before {
    opacity: 1; }
  .g1-tab-items .g1-tab-item.active .g1-subtab,
  .g1-tab-items .g1-tab-item:hover .g1-subtab,
  .g1-tab-items .g1-tab-item-current .g1-subtab,
  .g1-tab-items .g1-subtab-item:hover .g1-subtab,
  .g1-tab-items .g1-subtab-item-current .g1-subtab,
  .g1-subtab-items .g1-tab-item.active .g1-subtab,
  .g1-subtab-items .g1-tab-item:hover .g1-subtab,
  .g1-subtab-items .g1-tab-item-current .g1-subtab,
  .g1-subtab-items .g1-subtab-item:hover .g1-subtab,
  .g1-subtab-items .g1-subtab-item-current .g1-subtab {
    opacity: 1; }

.g1-tab-item-icon:before {
  display: block;
  text-align: center;
  font: 32px/40px "bimber";
  content: "\e001";
  -webkit-transition: opacity 0.375s ease-in-out;
  -moz-transition: opacity 0.375s ease-in-out;
  -o-transition: opacity 0.375s ease-in-out;
  transition: opacity 0.375s ease-in-out; }

/**
 * What's Your Reaction plugin customisations.
 */
.wyr-reaction-track {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.wyr-reaction-button {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.wyr-load-more {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", "Roboto", "Arial", sans-serif;
  text-transform: uppercase;
  text-align: center;
  background: #f2f2f2;
  color: inherit;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.wyr-more-results {
  text-align: right; }

.g1-fb-page-loading-indicator {
  display: none; }

.g1-fb-page-loading {
  width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: scale(1); }
  .g1-fb-page-loading:before {
    display: block;
    width: 1em;
    margin: 0 auto;
    font: 24px/1 "bimber";
    content: "\e01d";
    -webkit-animation: g1-anim-spin 2s infinite linear;
    animation: g1-anim-spin 2s infinite linear; }

/* WPML integration */
.wpml-ls {
  float: right; }
  .wpml-ls ul {
    margin: 0;
    list-style: none; }

.wpml-ls-item {
  position: relative;
  font-size: 13px;
  line-height: 18px;
  font-family: "Poppins", "Roboto", sans-serif; }
  .wpml-ls-item > a {
    display: block;
    padding: 7px 0;
    color: inherit; }

.wpml-ls-flag {
  display: inline-block;
  max-width: none;
  margin-right: 8px;
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  .wpml-ls-flag:last-child {
    position: static;
    margin: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.wpml-ls-flag + .wpml-ls-display,
.wpml-ls-flag + .wpml-ls-native {
  padding-left: 26px; }

.wpml-ls-sub-menu {
  display: none;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  background-color: #fff; }
  .wpml-ls-sub-menu .wpml-ls-item > a {
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap; }
  .wpml-ls-sub-menu .wpml-ls-flag {
    left: 20px; }

.wpml-ls-item:hover .wpml-ls-sub-menu {
  display: block; }

.wpml-ls-legacy-list-horizontal .wpml-ls-item {
  display: inline-block;
  margin-right: 20px; }

.g1-socials-items-tpl-grid {
  font-size: 0; }

.g1-socials-section {
  padding: 24px 0;
  text-align: center; }
  .g1-socials-section.g1-dark {
    background-color: #303030;
    color: #fff; }
  .g1-socials-section .g1-column {
    padding-left: 0;
    padding-right: 0; }
  .g1-socials-section .g1-socials-items {
    display: block;
    position: relative;
    margin: 0;
    max-width: none; }
  .g1-socials-section .g1-socials-item {
    padding: 0 20px; }
  .g1-socials-section .g1-socials-item-icon {
    width: auto;
    font-size: 28px;
    line-height: 32px;
    vertical-align: middle; }
  .g1-socials-section .g1-socials-item-tooltip {
    position: relative;
    display: inline-block;
    visibility: visible;
    width: auto;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    margin-left: 10px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
  .g1-socials-section .g1-socials-item-tooltip-inner {
    left: 0;
    color: inherit;
    background-color: transparent;
    font-size: 16px;
    line-height: 32px;
    font-family: "Poppins", "Roboto", "Arial", sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px; }
    .g1-socials-section .g1-socials-item-tooltip-inner:after {
      display: none; }

.g1-mycred-notice-overlay:not(:first-child) {
  display: none; }

.g1-mycred-notice-overlay-standard:not(:first-child) {
  display: none; }

.g1-mycred-notice-overlay {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0;
  right: auto;
  background: rgba(0, 0, 0, 0.5); }
  .g1-mycred-notice-overlay .g1-mycred-notice {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 480px;
    height: 470px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    max-width: 90%; }
    .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-close {
      z-index: 1;
      cursor: pointer; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-close:before {
        font: 16px/1 "bimber";
        content: "\e01b";
        position: absolute;
        right: 10px;
        top: 10px; }
    .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-title {
      margin-top: 40px;
      margin-bottom: 36px;
      z-index: 1; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-title .g1-epsilon-2nd {
        margin-bottom: 0;
        opacity: 0.5; }
    .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-name {
      margin-top: 32px;
      margin-bottom: 30px;
      z-index: 1; }
    .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-image {
      z-index: -1; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-image .g1-mycred-notice-suburst {
        top: 0px;
        left: 0px;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        transform-origin: center;
        animation: g1-anim-spin 10s infinite linear; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-image .g1-mycred-notice-suburst .g1-mycred-notice-suburst-rays:before {
          content: "\e034";
          font: 340px/470px "bimber";
          position: absolute;
          top: 0px;
          bottom: 0px;
          left: 0px;
          right: 0px;
          margin: auto;
          z-index: 1;
          color: #c4edfe; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-image .g1-mycred-notice-suburst .g1-mycred-notice-suburst-overlay {
          top: 0px;
          bottom: 0px;
          left: 0px;
          right: 0px;
          margin: auto;
          position: absolute;
          width: 350px;
          height: 350px;
          z-index: 2;
          background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, white 66%);
          /* FF3.6-15 */
          background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, white 66%);
          /* Chrome10-25,Safari5.1-6 */
          background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, white 66%, white 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fcfcfc', endColorstr='#fff', GradientType=1);
          /* IE6-9 fallback on horizontal gradient */ }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-image img {
        height: 185px;
        width: auto;
        display: block;
        margin: 0 auto;
        z-index: 1; }
    .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      padding: 0 56px;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share {
        font-size: 12px;
        font-family: "Poppins", "Roboto", "Arial", sans-serif;
        font-weight: 500;
        letter-spacing: -0.025em;
        padding: 5px 20px;
        border-width: 2px;
        color: white;
        display: inline-block;
        border-radius: 4px; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share:before {
          display: inline-block;
          margin-right: 8px;
          vertical-align: middle;
          color: inherit;
          /* Just in case (Avada styles pseudo elements) */
          font: 14px/1 "bimber"; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share:hover {
          opacity: 0.8; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-facebook {
        border-color: #2d5f9a;
        background-color: #2d5f9a; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-facebook:before {
          content: "\e040"; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-twitter {
        border-color: #00c3f3;
        background-color: #00c3f3;
        margin: 0 5px; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-twitter:before {
          content: "\e041"; }
      .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-pinterest {
        border-color: #bd081c;
        background-color: #bd081c; }
        .g1-mycred-notice-overlay .g1-mycred-notice .g1-mycred-notice-shares .g1-mycred-notice-share-pinterest:before {
          content: "\e042"; }

.g1-mycred-notice-overlay-standard {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 10px;
  right: 10px;
  left: auto; }
  .g1-mycred-notice-overlay-standard .g1-notification-standard {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 300px;
    padding: 20px 30px 20px 20px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff; }
    .g1-mycred-notice-overlay-standard .g1-notification-standard .g1-notification-standard-close {
      display: block;
      width: 20px;
      height: 16px;
      padding: 2px 0;
      position: absolute;
      top: 5px;
      right: 5px;
      left: auto;
      text-align: center;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      cursor: pointer;
      -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
      -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
      -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
      transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
      background-color: #333;
      color: #999; }
      .g1-mycred-notice-overlay-standard .g1-notification-standard .g1-notification-standard-close:hover {
        background-color: #fff;
        color: #000; }
      .g1-mycred-notice-overlay-standard .g1-notification-standard .g1-notification-standard-close:before {
        font: 16px/1 "bimber";
        content: "\e01b"; }

#buddypress .mycred-table {
  min-width: 100%; }

.bimber-badges-badge {
  text-align: center;
  margin-bottom: 3rem; }
  .bimber-badges-badge .bimber-badges-requirements strong small em {
    display: none; }
  .bimber-badges-badge .bimber-badges-title {
    margin: 0; }
  .bimber-badges-badge .bimber-badges-image img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px; }
  .bimber-badges-badge .mycred-badge-requirement-list {
    list-style-type: none;
    margin: 0;
    font-size: 14px;
    color: #666; }

.bimber-badges-badge-single-level .bimber-badges-requirements strong {
  visibility: hidden; }

.member-header .the-badge {
  display: inline; }

.member-header .mycred-my-rank {
  margin-left: 30px;
  font-size: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative; }
  .member-header .mycred-my-rank:after {
    content: "Rank";
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    font-family: "Roboto", "Arial", sans-serif;
    margin-top: -5px; }
  @media only screen and (max-width: 800px) {
    .member-header .mycred-my-rank {
      margin-bottom: 20px;
      margin-left: 0px; } }

.member-header .mycred-balance {
  order: 3;
  margin-left: 30px;
  font-size: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-table;
  text-align: center; }
  .member-header .mycred-balance:after {
    content: "Points";
    position: absolute;
    top: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    font-family: "Roboto", "Arial", sans-serif;
    margin-top: -5px; }
  @media only screen and (max-width: 800px) {
    .member-header .mycred-balance {
      margin-left: 0px;
      margin-bottom: 20px; } }

.author-info-inner #mycred-users-badges {
  margin-bottom: .5rem;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  order: 3; }

.author-info-inner .mycred-badge-image {
  max-height: 40px;
  max-width: 40px;
  margin: 0 5px 5px 0; }

.widget_bimber_mycred {
  width: 100%; }
  .widget_bimber_mycred .bimber-mycred-widget {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
    .widget_bimber_mycred .bimber-mycred-widget .bimber-mycred-widget-total {
      -webkit-flex-grow: 1;
      flex-grow: 1;
      -webkit-flex-basis: 100%;
      flex-basis: 100%;
      margin-bottom: 25px; }
    .widget_bimber_mycred .bimber-mycred-widget .bimber-mycred-widget-today {
      -webkit-flex-grow: 1;
      flex-grow: 1; }
    .widget_bimber_mycred .bimber-mycred-widget .bimber-mycred-widget-best {
      -webkit-flex-grow: 1;
      flex-grow: 1; }
    .widget_bimber_mycred .bimber-mycred-widget .g1-more-results {
      margin-top: 3rem;
      -webkit-flex-basis: 100%;
      flex-basis: 100%;
      text-align: right; }

.widget .bimber-mycred-leaderboard {
  list-style-type: none;
  margin-left: 0px; }
  .widget .bimber-mycred-leaderboard li {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: middle;
    -webkit-justify-content: middle;
    justify-content: middle;
    margin: 10px 0; }
    .widget .bimber-mycred-leaderboard li img {
      margin-right: 12px;
      -webkit-flex-grow: 0;
      flex-grow: 0; }
  .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-widget-avatar {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-widget-avatar .bimber-mycred-leaderboard-widget-rank {
      display: none; }
  .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-pos {
    margin-right: 16px;
    text-align: center;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    width: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-user {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 0px; }
    .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-user a {
      color: inherit; }
  .widget .bimber-mycred-leaderboard .bimber-mycred-leaderboard-balance {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    text-align: right;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 16px; }

.mycred-rank-list {
  margin-left: 0;
  list-style: none; }
  .mycred-rank-list li {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #e6e6e6; }
    .mycred-rank-list li img {
      height: 80px;
      margin-right: 20px; }
    .mycred-rank-list li h3 {
      margin-bottom: 0px; }
    .mycred-rank-list li .g1-mycred-ranks-range {
      -webkit-flex-grow: 1;
      flex-grow: 1;
      text-align: right; }
  .mycred-rank-list li:first-child {
    border-top-width: 0; }

@media only screen and (max-width: 800px) {
  .mycred-rank-list li {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding: 10px 0 10px 120px;
    min-height: 80px;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 0px; }
    .mycred-rank-list li img {
      position: absolute;
      top: 50%;
      margin-top: -40px;
      left: 0px; }
    .mycred-rank-list li .g1-mycred-ranks-range {
      -webkit-flex-grow: 0;
      flex-grow: 0;
      text-align: left; } }

.entry-content .bimber-mycred-leaderboard {
  margin-left: 0;
  list-style: none; }
  .entry-content .bimber-mycred-leaderboard li {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 80px;
    padding: 10px 0 10px 120px;
    border-top-width: 1px;
    position: relative;
    border-style: solid;
    border-color: #e6e6e6; }
    .entry-content .bimber-mycred-leaderboard li > a {
      margin-top: -40px;
      position: absolute;
      left: 0;
      right: auto;
      top: 50%; }
      .entry-content .bimber-mycred-leaderboard li > a > span img {
        display: block; }
      .entry-content .bimber-mycred-leaderboard li > a > span img + img {
        display: block;
        height: 40px;
        width: auto;
        position: absolute;
        right: -20px;
        bottom: 0; }
    .entry-content .bimber-mycred-leaderboard li > h3 {
      margin-bottom: 0; }
      .entry-content .bimber-mycred-leaderboard li > h3 a {
        color: inherit; }
  .entry-content .bimber-mycred-leaderboard li:first-child {
    border-top-width: 0; }

@media only screen and (min-width: 800px) {
  .entry-content .bimber-mycred-leaderboard li {
    padding: 10px 0;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
    .entry-content .bimber-mycred-leaderboard li > a {
      position: relative;
      margin-top: 0;
      top: auto; }
      .entry-content .bimber-mycred-leaderboard li > a > span {
        position: initial; }
        .entry-content .bimber-mycred-leaderboard li > a > span img + img {
          display: block;
          height: 40px;
          width: 40px;
          position: absolute;
          right: -20px;
          bottom: 0;
          max-width: 40px; }
    .entry-content .bimber-mycred-leaderboard li .bimber-mycred-leaderboard-pos {
      width: 40px;
      text-align: center; }
    .entry-content .bimber-mycred-leaderboard li .bimber-mycred-leaderboard-user {
      -webkit-flex-grow: 1;
      flex-grow: 1;
      margin-left: 30px; }
    .entry-content .bimber-mycred-leaderboard li .bimber-mycred-leaderboard-balance {
      font-size: 21px; } }

/*
 * RCP - Base Styles.
 */
.g1-rcp-message {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  text-align: center; }

.g1-rcp-actions {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem 1.25rem 1.5rem 1.25rem;
  position: relative;
  background-color: #f2f2f2; }

.g1-rcp-action {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1.5rem 1.25rem 1.5rem 1.25rem; }
  .g1-rcp-action i {
    display: block;
    margin-bottom: 1rem;
    font-size: 40px;
    line-height: 24px;
    color: #000; }
  .g1-rcp-action .g1-gamma {
    margin-bottom: 1rem; }

.g1-rcp-action-icon {
  font: 32px/1 "bimber"; }
  .g1-rcp-action-register .g1-rcp-action-icon:before {
    content: "\e013"; }
  .g1-rcp-action-login .g1-rcp-action-icon:before {
    content: "\e037"; }

.g1-rcp-action-buttons {
  margin-bottom: 0; }

@media only screen and (min-width: 801px) {
  .g1-rcp-action {
    width: 50%; } }

#rcp_registration_form.rcp_form {
  padding: 0; }
  #rcp_registration_form.rcp_form .rcp_login_link {
    display: block; }
  #rcp_registration_form.rcp_form .rcp_user_fieldset {
    position: relative;
    display: block;
    margin-bottom: 1rem; }
    #rcp_registration_form.rcp_form .rcp_user_fieldset > p {
      display: block;
      float: left;
      width: 50%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      #rcp_registration_form.rcp_form .rcp_user_fieldset > p:nth-child(odd) {
        padding-right: 10px; }
      #rcp_registration_form.rcp_form .rcp_user_fieldset > p:nth-child(even) {
        padding-left: 10px; }
    #rcp_registration_form.rcp_form .rcp_user_fieldset input {
      width: 100%; }
  #rcp_registration_form.rcp_form .rcp_registration_total_details {
    width: 100%; }

#rcp_subscription_levels {
  position: relative;
  display: block;
  margin-bottom: 1rem; }
  #rcp_subscription_levels .rcp_subscription_level {
    position: relative;
    display: block;
    padding: 20px;
    background-color: #f2f2f2; }
    #rcp_subscription_levels .rcp_subscription_level input {
      position: relative;
      display: block;
      float: left;
      margin: 3px 28px 0 0; }
    #rcp_subscription_levels .rcp_subscription_level label {
      position: relative;
      display: inline-block;
      width: calc(100% - 40px);
      text-transform: none; }
      #rcp_subscription_levels .rcp_subscription_level label .rcp_subscription_level_name {
        display: block;
        font-size: 1.5em;
        margin-bottom: 0.5rem;
        font-family: "Poppins", "Roboto", "Arial", sans-serif;
        font-weight: 700; }
      #rcp_subscription_levels .rcp_subscription_level label > .rcp_separator {
        display: none; }
      #rcp_subscription_levels .rcp_subscription_level label .rcp_level_description {
        display: block;
        padding: 0;
        margin-top: 0.5rem;
        font-family: "Roboto", "Arial", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px; }

#rcp_login_form.rcp_form .rcp_login_data {
  position: relative;
  display: block;
  margin-bottom: 1rem; }
  #rcp_login_form.rcp_form .rcp_login_data > p {
    display: block;
    float: left;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    #rcp_login_form.rcp_form .rcp_login_data > p:nth-child(1) {
      padding-right: 10px; }
    #rcp_login_form.rcp_form .rcp_login_data > p:nth-child(2) {
      padding-left: 10px; }
    #rcp_login_form.rcp_form .rcp_login_data > p:nth-child(3), #rcp_login_form.rcp_form .rcp_login_data > p:nth-child(4) {
      width: 100%; }
  #rcp_login_form.rcp_form .rcp_login_data .rcp_user_remember {
    float: left;
    margin: 3px 8px 0 0; }
  #rcp_login_form.rcp_form .rcp_login_data input[type=password],
  #rcp_login_form.rcp_form .rcp_login_data input[type=text] {
    width: 100%; }

p + .g1-rcp-message:before {
  display: block;
  width: 100%;
  height: 7.5rem;
  margin-top: -7.5rem;
  position: relative;
  top: -1.5rem;
  content: "";
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%); }

.adace-coupon-wrap {
  border-width: 2px;
  border-style: dashed;
  border-color: #e6e6e6;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem; }
  .adace-coupon-wrap:before {
    content: "\e041";
    position: absolute;
    display: block;
    font-family: "bimber";
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    line-height: 40px;
    left: 20px;
    top: -20px; }
  .adace-coupon-wrap .adace-coupon .coupon-thumbnail {
    max-width: 170px;
    margin: 0 auto 1.5rem auto; }
    .adace-coupon-wrap .adace-coupon .coupon-thumbnail img {
      vertical-align: bottom; }
  .adace-coupon-wrap .adace-coupon .coupon-title {
    margin-bottom: 0; }
  .adace-coupon-wrap .adace-coupon .coupon-copy-wrap .coupon-copy {
    overflow: hidden;
    margin: 0 auto;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-width: 2px;
    border-style: solid;
    border-color: #000;
    line-height: 0;
    box-shadow: none;
    padding: 2px;
    -webkit-transition: 0.375s;
    -moz-transition: 0.375s;
    -o-transition: 0.375s;
    transition: 0.375s; }
    .adace-coupon-wrap .adace-coupon .coupon-copy-wrap .coupon-copy .coupon-code {
      padding: 0 3rem;
      line-height: 32px;
      vertical-align: middle; }
    .adace-coupon-wrap .adace-coupon .coupon-copy-wrap .coupon-copy .coupon-action {
      padding: 0 0.5rem;
      height: 32px;
      line-height: 32px;
      vertical-align: middle; }
    .adace-coupon-wrap .adace-coupon .coupon-copy-wrap .coupon-copy.blink {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0; }

/*
 * Popup styles. Loads all specific popups.
 */
.g1-popup {
  display: block;
  visibility: hidden;
  position: fixed;
  z-index: 1050;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.g1-popup-overlay {
  display: block;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.375s, 0s, 0s;
  -moz-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -moz-transform 0.375s ease-in-out;
  -o-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -o-transform 0.375s ease-in-out;
  transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, transform 0.375s ease-in-out; }

.g1-popup-inner {
  display: block;
  visibility: hidden;
  position: fixed;
  z-index: 1050;
  max-width: 80%;
  left: 50%;
  top: 50%;
  background-color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  -moz-transform: translate(-50%, -50%) scale(0.85);
  -ms-transform: translate(-50%, -50%) scale(0.85);
  -o-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
  -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
  -webkit-transition-delay: 0.375s, 0s, 0s;
  -moz-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -moz-transform 0.375s ease-in-out;
  -o-transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, -o-transform 0.375s ease-in-out;
  transition: visibility 0s 0.375s, opacity 0.375s ease-in-out, transform 0.375s ease-in-out; }

.g1-popup-closer {
  display: block;
  padding: 10px;
  position: absolute;
  right: 5px;
  left: auto;
  top: 5px;
  font-size: 16px;
  line-height: 1;
  border-radius: 50%;
  border-color: #f2f2f2;
  background-color: #f2f2f2;
  color: #000;
  -webkit-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -moz-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  -o-transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out;
  transition: border-color 0.375s ease-in-out, background-color 0.375s ease-in-out, color 0.375s ease-in-out; }
  .g1-popup-closer:before {
    display: block;
    font-family: "bimber";
    content: "\e01b"; }
  .g1-popup-closer:hover {
    border-color: #1a1a1a;
    background-color: #1a1a1a;
    color: #fff; }

@media only screen and (min-width: 1025px) {
  html.g1-popup-visible {
    overflow: hidden; }
    html.g1-popup-visible .g1-popup,
    html.g1-popup-visible .g1-popup-overlay,
    html.g1-popup-visible .g1-popup-inner {
      visibility: visible;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
      opacity: 1;
      -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
      -moz-transition: visibility 0s, opacity 0.375s ease-in-out, -moz-transform 0.375s ease-in-out;
      -o-transition: visibility 0s, opacity 0.375s ease-in-out, -o-transform 0.375s ease-in-out;
      transition: visibility 0s, opacity 0.375s ease-in-out, transform 0.375s ease-in-out; }
    html.g1-popup-visible .g1-popup-inner {
      -webkit-transform: translate(-50%, -50%) scale(1);
      -moz-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
      -o-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1); } }

/*
 * Popup newsletter. Loads all specific popups.
 */
.g1-popup-newsletter .g1-popup-inner {
  width: 1000px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); }

.g1-popup-newsletter .g1-newsletter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 0;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); }

.g1-popup-newsletter .mc4wp-form-fields label {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden; }

.g1-popup-newsletter .mc4wp-form-fields p {
  margin-bottom: 0.75em; }

.g1-newsletter-cover {
  width: 50%;
  position: relative;
  background-color: #e6e6e6; }
  .g1-newsletter-cover:before {
    display: block;
    padding: 40px;
    margin: -60px 0 0 -60px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    right: auto;
    font-size: 40px;
    line-height: 1;
    font-family: "starmile";
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border-color: #fff;
    background-color: #fff;
    color: #000;
    content: "\e001"; }

.g1-newsletter-cover-background {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  background-size: cover; }

.g1-newsletter-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 40px 40px 20px 40px;
  text-align: center; }

.g1-popup-newsletter .g1-newsletter-content {
  padding: 8.5rem 60px 7.5rem 60px; }

/*
 * Slideup styles. Loads all specific slideups.
 */
.g1-slideup-wrap {
  position: fixed;
  display: none;
  pointer-events: none;
  z-index: 1100;
  left: 0%;
  right: 0%;
  bottom: 0%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.375s;
  -moz-transition: 0.375s;
  -o-transition: 0.375s;
  transition: 0.375s;
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  -ms-transform: translate(0%, 100%);
  -o-transform: translate(0%, 100%);
  transform: translate(0%, 100%); }
  .g1-slideup-wrap [type=text],
  .g1-slideup-wrap [type=email] {
    border-color: transparent; }

.g1-slideup-base {
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 40px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.375s;
  -moz-transition: 0.375s;
  -o-transition: 0.375s;
  transition: 0.375s; }

html.g1-slideup-visible .g1-slideup-base {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

html.g1-slideup-visible .g1-slideup-wrap {
  pointer-events: all;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%); }

@media only screen and (min-width: 1025px) {
  .g1-slideup-wrap {
    display: block; } }

/*
 * slideup newsletter. Loads all specific slideups.
 */
.g1-slideup-newsletter {
  display: block;
  position: relative;
  max-width: 728px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px 20px 0 20px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); }
  .g1-slideup-newsletter .g1-newsletter-privacy {
    text-align: right; }

.g1-slideup-newsletter-avatar {
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 1055;
  top: 0px;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -30%);
  -moz-transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%);
  -o-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%; }

.g1-slideup-newsletter-body {
  position: relative;
  display: block;
  text-align: center;
  padding: 60px 40px 1px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff; }

.g1-slideup-newsletter-closer {
  padding: 18px;
  position: absolute;
  top: 40px;
  right: 0px;
  bottom: 150px;
  font-size: 24px;
  line-height: 16px;
  color: #fff; }
  .g1-slideup-newsletter-closer:before {
    font-family: "bimber";
    content: "\e01b"; }

@media only screen and (min-width: 801px) {
  .g1-slideup-newsletter-body .mc4wp-form-fields {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .g1-slideup-newsletter-body .mc4wp-form-fields p:first-child {
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
    .g1-slideup-newsletter-body .mc4wp-form-fields input[type=email] {
      text-align: left; } }

.g1-title-align-center {
  text-align: center; }

.g1-dark .g1-current-background {
  background-color: #1a1a1a; }

@-webkit-keyframes g1-anim-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes g1-anim-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.g1-divider {
  margin: 3em 0; }
  .g1-divider:before, .g1-divider:after {
    display: block;
    height: 4px;
    border-width: 4px 0;
    margin-bottom: 4px;
    border-style: dotted;
    content: "";
    opacity: 0.3; }
