/*========================================================
 * sg-main.css
 *
 */

/* Table of Contents
- Custom Fonts
- HTML5 Reset
  - Baseline Normalize
  - Box Sizing
  - Float Clearing
- Custom Settings
- Defaults
  - Typographical Elements
  - Headings
  - Objects
  - Gallery
  - Forms
  - Tables
  - Screen Reader Text
- Structure and Layout
  - Site Container
  - Site Inner
- Common Classes
  - Avatar
  - Genesis
  - Search Form
  - Titles
  - WordPress
- Widgets
  - Featured Content
- Plugins
  - Genesis eNews Extended
  - Genesis Simple FAQ
  - WPForms
- Skip Links
- Site Header
  - Title Area
- Site Navigation
  - Responsive Menu
  - Header Menu
- Content Area
  - Entry Content
  - Entry Meta
  - Pagination
  - Entry Comments
- Sidebar
- Media Queries
  - Min-width: 960px
    - Site Header
    - Genesis Menu
    - Responsive Menu
    - Header Menu
    - Site Inner
    - Content
    - Sidebar
    - Author Box
    - After Entry
    - Column Classes
    - Entry Misc.
- Print Styles
*/

/* Custom Fonts
---------------------------------------------------------------------------- */


/* source-sans-pro-300 - latin */
@font-face {
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-300.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-regular - latin */
@font-face {
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-600 - latin */
@font-face {
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-700 - latin */
@font-face {
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-900 - latin */
@font-face {
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-900.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/*========================================================
 * Custom Vars
 *
 * all sizes
 */

:root {
  --sg--color--yellow-regular: #FAE65A;
  --sg--color--blue-regular: #46b4eb;
  --sg--color--purple-regular: #8462ca;
  --sg--color--coral-regular: #E86E5A;
  --sg--color--grey-dark: #271E2C;

  --sg--color--blue-dark: #3C3C80;
  --sg--color--blue-light: #D7D7FF;
  --sg--color--turquoise-regular: #46C8BE;
  --sg--color--turquoise-light: #C8F0EB;
  --sg--color--coral-light: #FAD2C8;
  --sg--color--grey-medium: #87828A;
  --sg--color--grey-light: #B7B4B9;
  --sg--color--grey-light-2: #E0E0E0;
  --sg--color--grey-x-light: #F9F8F9;
  --sg--color--white: #fff;
  --sg--drop--shadow-dark: 0 6px 16px rgba(0,0,0,0.16);
  --sg--font-size--x-large: 54px;
  --sg--font-size--large: 42px;
  --sg--font-size--medium-large: 30px;
  --sg--font-size--medium: 24px;
  --sg--font-size--regular-medium: 20px;
  --sg--font-size--regular: 16px;
  --sg--font-size--small: 14px;
  --sg--font-size--x-small: 12px;
  --sg--spacing--1-unit: 8px;
  --sg--partner-logo-width: 22%;

  --sg--font-family--main: 'Source Sans Pro';
  --sg--font-family--titles: 'Source Sans Pro';
}

@media ( max-width: 768px ) { 

/*========================================================
 * Custom Vars
 *
 * 0-768
 */

  :root {
    --sg--font-size--x-large: calc( 54px * 0.8);
    --sg--font-size--large: calc( 42px * 0.8);
    --sg--font-size--medium-large: calc( 30px * 0.8);
    --sg--font-size--medium: calc( 24px * 0.8);
    --sg--font-size--regular-medium: calc( 20px * 0.8);
    --sg--font-size--regular: 16px;
    --sg--font-size--small: 14px;
    --sg--font-size--x-small: 12px;
    --sg--spacing--1-unit: 5px;
  }


}

@media ( max-width: 599px ) { 

/*========================================================
 * Custom Vars
 *
 * 0-599
 */

  :root {
    --sg--font-size--x-large: calc( 54px * 0.7);
    --sg--font-size--large: calc( 42px * 0.75);
  }


}


@media ( max-width: 499px ) { 

/*========================================================
 * Custom Vars
 *
 * 0-499
 */

  :root {
    --sg--font-size--large: calc( 42px * 0.7);
  }


}

/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */




/* Box Sizing
--------------------------------------------- */

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
  content: " ";
  display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
  clear: both;
  content: " ";
  display: table;
}


/* Custom Settings
---------------------------------------------------------------------------- */

/* hide ugly scrollbars that show when mac system preferences are set to show them all the time */
/*::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
*/


/* hide the tab color on touch devices */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* disable the link preview on iOS browser */
/*
* {
  -webkit-touch-callout: none;
}
*/


.sg-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 calc( var(--sg--spacing--1-unit) * 4);
  position: relative;
}

/* Defaults
---------------------------------------------------------------------------- */




/* Typographical Elements
--------------------------------------------- */

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--sg--color--grey-dark);
  color: var(--sg--color--grey-medium);
  font-family: var(--sg--font-family--main);
  font-size: var(--sg--font-size--regular);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

sub, sup {
  font-size: 30%;
}

sup {
  top: -2em;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
  transition: all 0.2s ease-in-out;
}

a {
  color: var( --sg--color--purple-regular );
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
  color: var( --sg--color--purple-regular );
  text-decoration: none;
}

p {
  margin: 0 0 1.45em;
  padding: 0;
}

p + h2 {
  margin-top: 1em;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

hr {
  border: 0;
  border-collapse: collapse;
  border-bottom: 1px solid currentColor;
  clear: both;
  color: var(--sg--color--grey-medium);
  margin: 1.65em auto;
}

b,
strong {
  font-weight: 700;
}

blockquote,
cite,
em,
i {
  font-style: italic;
}

mark {
  background: var( --sg--color--grey-light );
  color: var(--sg--color--grey-dark);
}

blockquote {
  margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin: 0;
/*  margin: 0 0 20px;*/
}

h1 {
  color: var(--sg--color--grey-dark);
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var(--sg--font-size--x-large);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: calc( var(--sg--spacing--1-unit) * 3);
}

h2 {
  color: var(--sg--color--grey-dark);
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var(--sg--font-size--large);
  font-weight: 600;
  margin-bottom: calc( var(--sg--spacing--1-unit) * 3);
}

h3 {
  color: var(--sg--color--grey-medium);
  font-family: var( --sg--font-family--main ), sans-serif;
  font-size: var(--sg--font-size--medium);
  font-weight: initial;
}

h4 {
  color: var(--sg--color--grey-dark);
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
}

/*.entry-content h3,
.entry-content h4 {
  font-weight: 600;
}*/

/*.entry-content h4 {
  margin-top: 40px;
}*/

h5 {
/*  font-size: 18px;*/
  color: var(--sg--color--grey-dark);
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
}

h6 {
/*  font-size: 16px;*/
  color: var(--sg--color--grey-dark);
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: top;
}

figure {
  margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
  overflow: hidden;
}

.gallery img {
  border: 1px solid var(--sg--color--grey-light);
  height: auto;
  padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
  border: 1px solid var(--sg--color--grey-medium);
  outline: none;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

.gallery-item {
  float: left;
  margin: 0 0 30px;
  text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
  background-color: var(--sg--color--white);
  border: 1px solid var( --sg--color--grey-medium );
  color: var( --sg--color--grey-dark );
  font-size: var( --sg--font-size--regular );
  padding: 12px;
  width: 100%;
}

textarea {
  min-height: 44px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border: 1px solid var( --sg--color--grey-dark );
  outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: auto;
}

:-ms-input-placeholder {
  color: var( --sg--color--grey-medium );
  opacity: 1;
}

::placeholder {
  color: var( --sg--color--grey-medium );
  opacity: 1;
}

button:not(.fancybox-button),
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
  align-items: center;
  background-color: var( --sg--color--purple-regular );
  border: 1px solid var( --sg--color--purple-regular );
  border-radius: 48px;
  color: var( --sg--color--white );
  cursor: pointer;
  display: inline-flex;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 8px 24px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  width: auto;
}

button:not(.fancybox-button):focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.button:focus {
  background-color: var( --sg--color--purple-regular );
  border: 1px solid var( --sg--color--purple-regular );
  color: var( --sg--color--white );
}


button:not(.fancybox-button):hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:hover {
  background-color: var( --sg--color--grey-dark );
  border: 1px solid var( --sg--color--grey-dark );
  color: var( --sg--color--white );
}

.entry-content .button:focus,
.entry-content .button:hover {
  color: var( --sg--color--white );
}

.button {
  display: inline-flex;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
  background-color: var( --sg--color--grey-light );
  border-color: var( --sg--color--grey-light );
  color: var( --sg--color--grey-medium );
  cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
  display: none;
}

.sg-button,
.sg-button:focus {
  align-items: center;
  background-color: var( --sg--color--purple-regular );
  border: 1px solid var( --sg--color--purple-regular );
  border-radius: 48px;
  color: var( --sg--color--white );
  cursor: pointer;
  display: inline-flex;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 8px 24px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  width: auto;
}


.sg-button:hover{
  background-color: var( --sg--color--grey-dark );
  border: 1px solid var( --sg--color--grey-dark );
  color: var( --sg--color--white );
}


.hbspt-form {
  display: block;
  width: 100%;
}


.sg-hp-field {
  display: none !important;
}



.hs-form-field {
  margin-bottom: 12px;
}

.hbspt-form .invalid,
.hbspt-form .error {
  border-color: var( --sg--color--coral-regular );
}

.hs-form-field label {
  display: inline-block;
  color: var( --sg--color--grey-dark );
  margin: 0 0 4px;
}

.hs-error-msgs {
  color: var( --sg--color--coral-regular );
}
.hs-error-msgs label {
  color: var( --sg--color--coral-regular );
}

.hs-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16.501" height="9.625" viewBox="0 0 16.501 9.625"><path d="M8.25-2.75a1.369,1.369,0,0,1-.972-.4L.4-10.028a1.374,1.374,0,0,1,0-1.944,1.374,1.374,0,0,1,1.944,0l5.9,5.9,5.9-5.9a1.374,1.374,0,0,1,1.944,0,1.374,1.374,0,0,1,0,1.944L9.223-3.152A1.371,1.371,0,0,1,8.25-2.75Z" transform="translate(0 12.375)" fill="%237f7f7f"/></svg>' );
  background-position: right 16px center;
  background-repeat: no-repeat;
}

.hs-form .inputs-list {
  padding-bottom: 4px;
}

.hs-form ul.inputs-list[role="checkbox"] li {
  margin-bottom: 16px;
}

.hs-form ul.inputs-list[role="checkbox"] label {
  align-items: center;
  display: flex;
  margin: 12px;
}

.hs-form input[type=checkbox] {
  height: 24px;
  margin: 0;
  width: 24px;
}

.hs-form input[type=checkbox] + span {
  padding-left: 16px;
}

/* Tables
--------------------------------------------- */

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 40px;
  width: 100%;
  word-break: break-all;
}

tbody {
  border-bottom: 1px solid var(--sg--color--grey-medium);
}

td,
th {
  line-height: 2;
  text-align: left;
  vertical-align: top;
}

td {
  padding: 0.5em;
}

tr {
  border-top: 1px solid var(--sg--color--grey-medium);
}

th {
  font-weight: 600;
  padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
  background: var(--sg--color--white);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--sg--color--grey-dark);
  display: block;
  font-size: 1em;
  font-weight: 700;
  height: auto;
  padding: 15px 23px 14px;
  text-decoration: none;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

.more-link {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
  animation: fadein 1s;
  word-wrap: break-word;
}

@keyframes fadein {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}

/* Site Inner
--------------------------------------------- */

.site-inner {
  clear: both;
  margin: 0 auto;
  padding: 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
  border-radius: 50%;
  float: left;
}

.author-box .avatar,
.alignleft .avatar {
  margin-right: 20px;
}

.alignright .avatar {
  margin-left: 20px;
}

.comment .avatar {
  margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
  margin-bottom: 40px;
}

.after-entry {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
}

.after-entry .widget:last-of-type {
  margin-bottom: 0;
}

.breadcrumb {
  border-bottom: 1px solid var(--sg--color--grey-medium);
  font-size: 16px;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
  margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
  margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
  overflow: hidden;
}

.entry-content .search-form {
  margin-bottom: 40px;
  width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
  margin-top: 10px;
}

.widget_search input[type="submit"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.entry-title {
  font-size: var(--sg--font-size--x-large);
  margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
  color: var(--sg--color--grey-dark);
  text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
  color: var(--sg--color--grey-dark);
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
  padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
  display: block;
  margin: 0 auto;
}

a.alignnone {
  display: inline-block;
}

.alignleft {
  float: left;
  text-align: left;
}

.alignright {
  float: right;
  text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
  max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
  display: block;
  margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
  margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.5em;
  margin-bottom: 1em;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
  margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
  margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
  margin-bottom: 0;
}

.widget ul > li {
  margin-bottom: 10px;
}

.widget ul > li:last-of-type {
  padding-bottom: 0;
}

.widget ol > li {
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 20px;
  text-indent: -20px;
}

.widget li li {
  border: 0;
  margin: 0 0 0 30px;
  padding: 0;
}

.widget_calendar table {
  width: 100%;
}

.widget_calendar td,
.widget_calendar th {
  text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
  border-bottom: 1px solid var(--sg--color--grey-medium);
  margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.featured-content .entry-title {
  font-size: 16px;
  margin-bottom: 5px;
  margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
  text-align: center;
  padding: 10px;
}

.sidebar .enews {
  background-color: var(--sg--color--grey-light);
  padding: 30px;
}

.enews-widget input {
  font-size: 16px;
  margin-bottom: 10px;
}

.after-entry .enews-widget input {
  text-align: center;
}

.enews-widget input[type="submit"] {
  margin: 0;
  width: 100%;
}

.enews form + p {
  margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
  background: transparent;
  border-bottom: 1px solid var(--sg--color--grey-medium);
  color: var(--sg--color--grey-dark);
  padding-left: 0;
  padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
  background: transparent;
  color: var(--sg--color--grey-dark);
}

.gs-faq__question::after {
  content: "\f132";
  font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
  float: right;
}

.gs-faq__question.gs-faq--expanded::after {
  content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
  margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
  clear: both;
  margin: 20px 0;
  overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
  border-radius: 0;
  height: auto;
  padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
  font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
  font-size: 14px;
  font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
  display: none !important;
  left: -9000px !important;
  position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
  padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
  height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
  height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
  height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
  margin: 0;
}

.genesis-skip-link .skip-link-hidden {
  display: none;
  visibility: hidden;
}

.genesis-skip-link li {
  height: 0;
  list-style: none;
  width: 0;
}

/* Display outline on focus */
:focus {
/*  color: #333;*/
  outline: none !important;
}





/*========================================================
 * Content Area
 *
 * all sizes
 */


/*========================================================
 * Entry Content
 *
 * all sizes
 */

.entry {
  margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
  margin-bottom: 30px;
  padding-left: 40px;
}

.entry-content ol > li {
  list-style-type: decimal;
}

.entry-content ul > li {
  list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
  list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0;
}

.entry-content code {
  background-color: var(--sg--color--grey-light);
}

.content .sticky {
  background-color: var(--sg--color--grey-light);
  padding: 30px;
}

/*========================================================
 * Entry Meta
 *
 * all sizes
 */

p.entry-meta {
  font-size: 16px;
  margin-bottom: 0;
}

.entry-header .entry-meta {
  margin-bottom: 20px;
}

.entry-footer .entry-meta {
  border-top: 1px solid var(--sg--color--grey-light);
  padding-top: 20px;
}

.entry-categories,
.entry-tags {
  display: block;
}

.entry-comments-link::before {
  content: "\2014";
  margin: 0 6px 0 2px;
}

.post-edit-link {
  display: none;
}

/*========================================================
 * Pagination
 *
 * all sizes
 */


.pagination {
  clear: both;
  margin: 60px 0;
}

.adjacent-entry-pagination {
  margin-bottom: 0;
}

.archive-pagination li {
  display: inline;
}

.archive-pagination li a {
  background-color: var(--sg--color--grey-light);
  color: var(--sg--color--grey-dark);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 8px 12px;
  text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
  background-color: var(--sg--color--grey-dark);
  color: var(--sg--color--white);
}

/*========================================================
 * Entry Comments
 *
 * all sizes
 */


.comment-respond,
.entry-comments,
.entry-pings {
  margin-bottom: 40px;
}

.comment-list li {
  padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
  padding-left: 0;
}

.comment-header {
  margin-bottom: 30px;
}

.comment-content {
  clear: both;
}

.comment-content ul > li {
  list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
  width: 50%;
}

.comment-respond label {
  display: block;
  margin-right: 12px;
}

.comment-header p {
  margin-bottom: 0;
}

.entry-pings .reply {
  display: none;
}

.comment-form-cookies-consent label {
  display: inline;
  padding-left: 10px;
}

/*========================================================
 * Sidebar
 *
 * all sizes
 */


.sidebar {
  font-size: 16px;
  line-height: 1.5;
}

.sidebar .widget {
  margin-bottom: 40px;
}

.sidebar p {
  margin-bottom: 20px;
}




/*========================================================
 * Error Pages
 *
 * all sizes
 */



.sg-404-page {
  margin-top: 112px;
  margin-bottom: 64px;
  text-align: center;
}


/*========================================================
 * Slick Slider
 *
 * all sizes
 */

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.sg-slick-slider-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.sg-slick-slider-wrap.slick-initialized {
  visibility: visible;
  opacity: 1;
}


.slick-dots {
  bottom: 20px;
}

.slick-dots li {
  height: 40px;
  margin: 0;
  width: 40px;
}

.slick-dots li:only-child {
  display: none;
}

.slick-dots li button {
  border: 1px solid transparent;
  height: 40px;
  position: relative;
  width: 40px;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  border: 0px solid transparent;
  background-color: transparent;
}


.slick-dots li button::before {
  background-color: #F9F8F9;
  border: 0px solid transparent;
  border-radius: 50%;
  content: '';
  font-size: 13px;
  height: 13px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.2s ease-in-out;
  width: 13px;
}

.slick-dots li.slick-active button::before {
  background-color: var( --sg--color--grey-dark );
  border: 0px solid transparent;
}

.slick-dots li:hover button::before,
.slick-dots li.slick-active:hover button::before {
  background-color: var( --sg--color--grey-dark ) !important;
  border: 0px solid transparent;
}




/*========================================================
 * single post page
 *
 * all sizes
 */


.sg-single-post-page__content-wrap {
  margin-bottom: 64px;
  margin-top: 40px;
}

.sg-single-post-page__content {
  display: flex;
  flex-wrap: wrap;
}

.sg-single-post-page__back-to-index-link-wrap {
  margin-bottom: 32px;
}


.sg-single-post-page__back-to-index-link,
.sg-single-post-page__back-to-index-link:hover,
.sg-single-post-page__back-to-index-link:focus {
  align-items: center;
  color: var( --sg--color--grey-dark );
  display: flex;
  text-decoration: none;
}

.sg-single-post-page__back-to-index-link svg {
  transform: rotate( 180deg );
  height: 16px;
  width: 16px;
}

.sg-single-post-page__back-to-index-link-text {
  padding-left: 8px;
}







.sg-single-post-page__article-wrap {
  width: calc(100% / 3 * 2);
}



.sg-single-post-page__article-main-image-wrap {
  margin: 0;
}

.sg-single-post-page__article-main-image-wrap img {
  border: 1px solid #eee;
  border-radius: 0;
  height: auto;
  margin: 0;
  width: 100%;
}


.sg-single-post-page__article-categories-wrap {
  margin: 24px 0 8px;
}

.sg-single-post-page__article-categories {
  display: flex;
  flex-wrap: wrap;
}

.sg-single-post-page__article-category-wrap {
  display: inline-block;
}

.sg-single-post-page__article-category-wrap::after {
  color: var(--sg--color--grey-medium );
  content: '|';
  display: inline-block;
  padding: 0 6px 0 2px;
}

.sg-single-post-page__article-category-wrap:last-of-type::after {
  content: "";
  display: none;
  padding: 0;
}


  

.sg-single-post-page__article-category {
  color: var(--sg--color--grey-medium );
  font-size: var(--sg--font-size--regular);
  display: inline-block;
}


.sg-single-post-page__article-date-wrap {
  margin-bottom: 20px;
}

.sg-single-post-page__article-date {
  color: var(--sg--color--grey-medium );
  display: inline-block;
  margin-bottom: 0;
}

.sg-single-post-page__article-title {
  font-size: var(--sg--font-size--large);
  
  
}



.sg-single-post-page__article-blog-text h2 {

  font-size: var( --sg--font-size--medium );
  margin: 2em 0 1em !important;
}

.sg-single-post-page__article-blog-text h2:first-of-type {
  margin-top: 0 !important;
}



.sg-single-post-page__article-blog-text h3 {
  font-size: var( --sg--font-size--regular );
  font-weight: 600;
  margin: 2em 0 1em 0 !important;
}


.sg-single-post-page__article-blog-text img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.sg-single-post-page__article-blog-text img.aligncenter {
  margin: 20px auto;
}

.sg-single-post-page__article-blog-text ol  {
  list-style-type: decimal;
  margin: 20px 0;
}

.sg-single-post-page__article-blog-text ul {
  list-style-type: disc;
  margin: 20px 0;
}

.sg-single-post-page__article-blog-text li {
  margin: 10px;
}



.sg-single-post-page__article-blog-text-button {
  display: block;
  font-size: 17px !important;
  text-align: center;
}




.sg-single-post-page__related-items-wrap {
  padding: 0 0 80px 48px;
  width: calc(100% / 3 );
}

.sg-single-post-page__related-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: -24px -24px 0;

}

.sg-single-post-page__related-items-wrap .sg-post-index-page__article-wrap {
  width: 100%;
}



.sg-single-post-page .sg-flexible-rows-page-cta {
  margin-top: 80px;
}


/*========================================================
 * blog news category index page
 *
 * all sizes
 */



.archive-description {
  display: none;
}

.sg-post-index-page__content-wrap {
  margin-bottom: 0;
}

.sg-post-index-page .sg-flexible-rows-page-top-banner {
  background-color: var( --sg--color--grey-dark );
  background-image: none;
  background-position: center center;
  min-height: auto;
  padding-bottom: 96px;
  padding-top: 112px;
}

.sg-post-index-page .sg-flexible-rows-page-top-banner__inner-wrap {
  text-align: center !important;
}


.sg-post-index-page .sg-flexible-rows-page-top-banner__title {
  font-size: var(--sg--font-size--x-large);
  color: var(--sg--color--white)
}

.sg-post-index-page-body-wrap--news-index-page {
  margin-top: 40px;
}

.sg-post-index-page-body-wrap--content-library-page {
  margin-top: 40px;
}


.sg-post-index-page-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -24px;
}

.sg-post-index-page-body__nav {
  margin: 64px auto 32px;
  text-align: center;
}

.sg-post-index-page-body__nav-item {
  display: inline-block;
  
}


.sg-post-index-page-body__nav-item-link {
  color: var( --sg--color--grey-dark );
  font-family: var( --sg--font-family--titles ), sans-serif;
  font-size: var( --sg--font-size--regular-medium );
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.sg-post-index-page-body__nav-item-link:link, 
.sg-post-index-page-body__nav-item-link:visited, 
.sg-post-index-page-body__nav-item-link:active,
.sg-post-index-page-body__nav-item-link:focus {
  color: var( --sg--color--grey-dark );
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
}

.sg-post-index-page-body__nav-item-link:hover {
  color: var( --sg--color--purple-regular );
  text-decoration: none;
}


.category-identity .sg-post-index-page-body__nav-item-link--category-identity,
.category-age-verification .sg-post-index-page-body__nav-item-link--category-age-verification,
.category-onboarding .sg-post-index-page-body__nav-item-link--category-onboarding,
.category-kyc-aml-kyb-compliance .sg-post-index-page-body__nav-item-link--category-kyc-aml-kyb-compliance,
.category-data-privacy-and-security .sg-post-index-page-body__nav-item-link--category-data-privacy-and-security,
.category-other .sg-post-index-page-body__nav-item-link--category-other {
  color: var( --sg--color--purple-regular );
  text-decoration: none;
}

.sg-post-index-page:not(.category) .sg-post-index-page-body__nav-item-link--all{
  color: var( --sg--color--purple-regular );
  text-decoration: none;
}




.sg-post-index-page__article-wrap {
  
/*  border: 1px solid var(--sg--color--grey-light-2);*/
  display: flex;
  padding: 24px;
  margin-bottom: 0;
  text-decoration: none !important;
  transition: all .2s ease-out;
  width: calc(100% / 3);
  position: relative;
}

.sg-post-index-page__article-wrap:hover {
  background-color: var(--sg--color--grey-x-light);
/*  border-color: var(--sg--color--grey-light-2);*/
/*  box-shadow: 3px 3px 10px #d9d9d9;*/
}

.sg-post-index-page__article-wrap:hover .sg-post-index-page__article-read-more {
  color: var(--sg--color--grey-dark);
}

.sg-post-index-page__article {
  display: flex;
  flex-direction: column;
  width: 100%;
}


.sg-post-index-page__article-main-image-outer-wrap {
  background-color: #fff;
  padding: 0;
  border: 1px solid var(--sg--color--grey-light-2);
  height: 100%;
  flex: 0;
}

.sg-post-index-page-body-wrap--news-index-page .sg-post-index-page__article-main-image-outer-wrap {
  padding: 24px;
}


.sg-single-post-page__related-items-wrap--news .sg-post-index-page__article-main-image-outer-wrap {
  padding: 24px;
}

.sg-post-index-page__article-main-image-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.sg-post-index-page__article-main-image {
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.sg-post-index-page-body-wrap--news-index-page .sg-post-index-page__article-main-image {
  background-size: contain;
}

.sg-single-post-page__related-items-wrap--news .sg-post-index-page__article-main-image {
  background-size: contain;
}


.sg-post-index-page__article-text-wrap {
  flex: 1 1 auto;

}

.sg-post-index-page__article-text {
  padding: 16px 0 8px;
}

.sg-post-index-page__article-title {
  font-size: var( --sg--font-size--regular-medium);
  font-weight: 600;
/*  line-height: 1.5;*/
  text-decoration: none !important;
}

.sg-post-index-page__article-title--events {
  margin-bottom: 16px;
}


.sg-post-index-page__article-categories-wrap {
  margin: 0 0 8px;
}

.sg-post-index-page__article-categories {
  display: flex;
  flex-wrap: wrap;
}

.sg-post-index-page__article-category-wrap {
    display: inline-block;
}

.sg-post-index-page__article-category-wrap::after {
  color: var( --sg--color--grey-medium );
  content: '|';
  display: inline-block;
  padding: 0 6px 0 2px;
}

.sg-post-index-page__article-category-wrap:last-of-type::after {
  content: "";
  display: none;
  padding: 0;
}




.sg-post-index-page__article-category,
.sg-post-index-page__article-date {
  color: var( --sg--color--grey-medium );
  display: inline-block;
  margin: 0;
}


.sg-post-index-page__article-date {
  margin-bottom: 5px;
}

.sg-post-index-page__article-date--events {
  color: #4b4b4b;
  font-weight: 500;
}

.sg-post-index-page__article-excerpt-wrap {
  overflow: hidden;
}

.sg-post-index-page__article-read-more-wrap {
  /*position: absolute;
  bottom: 20px;
  right: 25px;*/
}

.sg-post-index-page__article-read-more {
  color: var( --sg--color--grey-dark );
}

.sg-post-index-page__pagination-wrap {
  margin-top: 32px;
}

.sg-post-index-page__pagination {
  display: flex;
  justify-content: center;
}

.sg-post-index-page__pagination a,
.sg-post-index-page__pagination span {
/*  font-family: 'Roboto', sans-serif;*/
  color: var( --sg--color--grey-dark );
  font-size: var( --sg--font-size--regular );
  display: flex;
  justify-content: center;
  display: inline-block;
  padding: 16px;
 
}

.sg-post-index-page__pagination .page-numbers.current {
  color: var( --sg--color--grey-medium );
}


.sg-post-index-page .sg-flexible-rows-page-cta {
  margin-top: 80px;
}




/*========================================================
 * Opt-in Popup
 * 
 * all sizes
 */




.fancybox-close-small:focus:after {
  outline: none;
}


.home .fancybox-is-open .fancybox-bg {
  background: white;
  opacity: 0;
}

.sg-any-page-popup-fancybox-container .fancybox-bg {
  background: white;
  opacity: 0;
}


.home .fancybox-content {
  padding: 0 !important;
}



.sg-any-page-popup-fancybox-container .fancybox-close-small:after {
  background: transparent;
  color: #fff;
  font: 40px/40px var( --sg--font-family--main ),sans-serif;
  top: 1px;
}

body.sg-popup-is-open {
  height: auto;
  overflow: hidden;
  margin-right: 0px;
}

body.sg-popup-is-open .site-container {
  filter: blur( 2px );
}

.sg-any-page-popup-wrap {
  display: none;
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}



.sg-any-page-popup {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sg-popup-is-open .sg-any-page-popup {
  overflow: hidden;
}

.sg-any-page-popup__background {
  background: white;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 0;
}

.sg-any-page-popup__inner-wrap {
  height: 100%;
  padding: 6px;
  position: relative;
}

.sg-any-page-popup__inner {
   -webkit-backface-visibility: hidden;
/*  display: none;*/
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  text-align: center; /* this will align the contents horizontally */
  top: 0;
  transition-property: transform,opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.sg-any-page-popup__inner::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle; /* this will align the contents vertically */
  width: 0;
}

.sg-any-page-popup__content-wrap {
  display: inline-block;
  padding: calc( var( --sg--spacing--1-unit ) * 2 );
  vertical-align: middle;
  max-width: 90%;
  width: 850px;
}

.sg-any-page-popup__content {
  background-color: var( --sg--color--grey-dark );
  display: inline-block;
  padding: calc( var( --sg--spacing--1-unit ) * 5 );
}

.sg-any-page-popup__text {
  text-align: left;
}


.sg-any-page-popup__text-title {
  color: var( --sg--color--white );
  font-size: var( --sg--font-size--medium );
}


.sg-any-page-popup__text-description {
  color: var( --sg--color--grey-light );
  font-size: var(--sg--font-size--regular-medium);
  line-height: 1.45;
  margin: 0 0 0;
}

.sg-any-page-popup__buttons-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: calc( var( --sg--spacing--1-unit ) * 6 );
}

.sg-any-page-popup__buttons-title {
  color: var( --sg--color--white );
  font-size: var( --sg--font-size--regular-medium );
  margin-bottom: calc( var( --sg--spacing--1-unit ) * 4 );
}


.sg-any-page-popup__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -16px;
  width: calc(100% + 32px);
}

.sg-any-page-popup__buttons--text-box-align_center {
  justify-content: center;
}


.sg-any-page-popup__button-wrap {
  padding: 0 16px 16px;
}


.sg-any-page-popup__button {
  align-items: center;
  border-radius: 48px;
  display: flex;
  font-size: var(--sg--font-size--regular);
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 8px 24px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  width: 200px;
}

.sg-any-page-popup__button,
.sg-any-page-popup__button:focus {
  background-color: #8462ca;
  border: 1px solid #8462ca;
  color: #ffffff;
}

.sg-any-page-popup__button:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #8462ca;
}







.back-to-top-container {
  background-color: rgba(200,200,200,0.5);
  bottom: 20px;
  color: #fff;
  display: none;
  height: 60px;
  padding: 0;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 60px;
}

.back-to-top-container a,
.back-to-top-container a:link,
.back-to-top-container a:visited {
  color: #fff;
  display: block;
  line-height: 55px;
  font-size: 30px;
  padding: 0 0 5px;
}

.back-to-top-container a:hover,
.back-to-top-container a:active,
.back-to-top-container a:focus {
  color: #686868;
}


/*========================================================
 * wpml plugin
 *
 * all sizes
 */

.otgs-development-site-front-end {
  display: none;
}

/*========================================================
 * captcha
 *
 * all sizes
 */

/* If you want to hide the recaptcha badge, then the form needs this disclaimer on the forms */

/*<small>This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.</small>*/

/*<small>Diese Website ist durch reCAPTCHA geschützt und es gelten die <a href="https://policies.google.com/privacy" target="_blank">Datenschutzbestimmungen</a> und <a href="https://policies.google.com/terms" target="_blank">Nutzungsbedingungen</a> von Google.</small>*/

.grecaptcha-badge {
  visibility: hidden;
}


/*========================================================
 * Media Queries
 *
 * 
 */



@media only screen and (min-width: 480px) {

  table {
    table-layout: auto;
    word-break: normal;
  }

}

@media only screen and (min-width: 1025px) {


  /* Content
  --------------------------------------------- */

  .content {
    float: left;
    width: 65%;
  }

  .sidebar-content .content {
    float: right;
  }

  .full-width-content .content {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* Sidebar
  --------------------------------------------- */

  .sidebar {
    float: right;
    width: 30%;
  }

  .sidebar-content .sidebar {
    float: left;
  }

  /* Author Box
  --------------------------------------------- */

  .author-box {
    background-color: var(--sg--color--grey-light);
    padding: 30px;
  }

  /* After Entry
  --------------------------------------------- */

  .after-entry {
    padding: 40px 60px;
  }

  .after-entry .enews {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* Column Classes
  --------------------------------------------- */

  .five-sixths,
  .four-sixths,
  .one-fourth,
  .one-half,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-sixths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    float: left;
    margin-left: 2.564102564102564%;
  }

  .one-half,
  .three-sixths,
  .two-fourths {
    width: 48.717948717948715%;
  }

  .one-third,
  .two-sixths {
    width: 31.623931623931625%;
  }

  .four-sixths,
  .two-thirds {
    width: 65.81196581196582%;
  }

  .one-fourth {
    width: 23.076923076923077%;
  }

  .three-fourths {
    width: 74.35897435897436%;
  }

  .one-sixth {
    width: 14.52991452991453%;
  }

  .five-sixths {
    width: 82.90598290598291%;
  }

  .first {
    clear: both;
    margin-left: 0;
  }

  /* Entry Misc.
  --------------------------------------------- */

  .after-entry,
  .archive-description,
  .author-box,
  .comment-respond,
  .entry,
  .entry-comments,
  .entry-pings {
    margin-bottom: 60px;
  }



}









@media (max-width: 1100px) {


}/* end of 0-1100 */


@media (max-width: 1024px) {


/*========================================================
 * blog news category index page
 *
 * 0-1024
 */

  .sg-post-index-page-body {
    margin: 0 -16px;
  }


  .sg-post-index-page__article-wrap {
    padding: 16px;
    width: calc(100% / 2);
  }


  .sg-post-index-page-body__nav-item-link {
    font-size: var(--sg--font-size--medium );
  }


/*========================================================
 * single post page
 *
 * 0-1024
 */


  .sg-single-post-page__related-items {
    margin: -16px -16px 0;
  }

  .sg-single-post-page__related-items-wrap {
    padding: 0 0 80px 32px;
  }






  
} /* end of 0-1024 */


@media (max-width: 1000px) {




} /* end of 0-1000 */

@media (max-width: 900px) {


/*========================================================
 * blog news category index page
 *
 * 0-900
 */

  .sg-single-post-page__article-wrap {
    width: 100%;
  }

  .sg-single-post-page__related-items-wrap {
    padding: 80px 0 0;
    width: 100%;
  }

  .sg-single-post-page__related-items {
    flex-direction: row;
  }


  .sg-single-post-page__related-items-wrap .sg-post-index-page__article-wrap {
    width: 50%;
  }





} /* end of 0-900 */


@media (max-width: 782px) {

/*========================================================
 * Header
 *
 * 0-782
 */

  .admin-bar .site-header {
    top: 46px;
  }



}/* end of 0-782 */


@media (max-width: 768px) {


} /* end of 0-768 */



@media (max-width: 600px) {


/*========================================================
 * blog news category index page
 *
 * 0-600
 */

  .sg-single-post-page__related-items {
    margin: 0 -16px;
  }


  .sg-single-post-page__related-items-wrap .sg-post-index-page__article-wrap {
    padding: 16px;
    margin-bottom: 24px;
    width: calc(100% / 1);
  }

/*========================================================
 * blog news category index page
 *
 * 0-600
 */

  .sg-post-index-page-body {
    margin: 0 -16px;
  }


  .sg-post-index-page__article-wrap {
    padding: 16px;
    margin-bottom: 24px;
    width: calc(100% / 1);
  }











} /* end of 0-600 */


@media (max-width: 500px) {




} /* end of 0-500 */



@media (max-width: 400px) {




} /* end of 0-400 */


/* Print Styles
---------------------------------------------------------------------------- */

@media print {

  *,
  *::before,
  *::after {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--sg--color--grey-dark) !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]::after,
  a[href^="#"]::after,
  .site-title > a::after {
    content: "";
  }

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 2cm 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    wsgws: 3;
  }

  blockquote,
  pre {
    border: 1px solid var(--sg--color--grey-medium);
    page-break-inside: avoid;
  }

  .content,
  .content-sidebar {
    width: 100%;
  }

  button,
  input,
  select,
  textarea,
  .breadcrumb,
  .comment-edit-link,
  .comment-form,
  .comment-list .reply a,
  .comment-reply-title,
  .edit-link,
  .entry-comments-link,
  .entry-footer,
  .genesis-box,
  .header-widget-area,
  .hidden-print,
  .home-top,
  .nav-primary,
  .nav-secondary,
  .post-edit-link,
  .sidebar {
    display: none !important;
  }

  .title-area {
    text-align: center;
    width: 100%;
  }

  .site-title > a {
    margin: 0;
    text-decoration: none;
    text-indent: 0;
  }

  .site-inner {
    padding-top: 0;
    position: relative;
  }

  .author-box {
    margin-bottom: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    orphans: 3;
    page-break-after: avoid;
    page-break-inside: avoid;
    wsgws: 3;
  }


  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  blockquote,
  pre,
  table {
    page-break-inside: avoid;
  }

  dl,
  ol,
  ul {
    page-break-before: avoid;
  }

}






