/*
Theme Name: tonykuehn
Theme URI: http://www.tonykuehn.com/
Author: Tony Kuehn
Author URI: http://www.tonykuehn.com/
Description: A new, bespoke theme by Tony Kuehn. Built around Foundation 6, for WordPress.
Version: 1.0
Text Domain: tonykuehn

tonykuehn is influenced by Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc. & FoundationPress, http://foundationpress.olefredrik.com, by Ole Fredrik Lie.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

ol,
ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

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

a img {
  border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #440bbd;
  line-height: 1.1;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 42px;
}

h3 {
  color: #3c3c3c;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  margin: 8px 0;
}

.review-header h3 {
  font-size: 21px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 1.5em;
  line-height: 1.3;
}

b,
strong {
  font-weight: bold;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

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

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

th {
  font-weight: bold;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%; /* Corrects font size not being inherited in all browsers */
  margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #fff;
  color: #440bbd;
  border: 1px solid #440bbd;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: #fff;
  background-color: #440bbd;
}

button:focus,
.button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
.button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  color: #fff;
  background-color: #440bbd;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
  -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

textarea {
  overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top; /* Improves readability and alignment in all browsers */
  width: 100%;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #555;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #555;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #555;
}

input::placeholder,
textarea::placeholder {
  color: #555;
}

/* Gravity Forms */
body .gform_wrapper.gravity-theme input[type="color"],
body .gform_wrapper.gravity-theme input[type="date"],
body .gform_wrapper.gravity-theme input[type="datetime-local"],
body .gform_wrapper.gravity-theme input[type="datetime"],
body .gform_wrapper.gravity-theme input[type="email"],
body .gform_wrapper.gravity-theme input[type="month"],
body .gform_wrapper.gravity-theme input[type="number"],
body .gform_wrapper.gravity-theme input[type="password"],
body .gform_wrapper.gravity-theme input[type="search"],
body .gform_wrapper.gravity-theme input[type="tel"],
body .gform_wrapper.gravity-theme input[type="text"],
body .gform_wrapper.gravity-theme input[type="time"],
body .gform_wrapper.gravity-theme input[type="url"],
body .gform_wrapper.gravity-theme input[type="week"],
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea {
  padding: 13px;
  height: auto;
}

.enterprise-consent {
  text-align: right;
}

.enterprise-consent .ginput_container_consent {
  max-width: 66%;
  width: 100%;
  display: inline-block;
  text-align: left;
}

.en-enterprise-button {
  color: #6100ff;
  border: 1px solid #6100ff;
  padding: 0 1rem;
  font-size: 1rem;
  border-radius: 4px;
  background-color: #fff;
  padding: 14px;
  margin-left: -30px;
  width: 100%;
}

.enterprise-consent label {
  color: #fff;
  display: inline-block;
  width: 90%;
  line-height: 1.1;
}

.enterprise-consent label a {
  color: #fff;
  text-decoration: underline;
}

.enterprise-consent input {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

body .gform_wrapper .gfield_required {
  display: none;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #00bfa5;
}

a:visited {
  color: #00bfa5;
}

a:hover,
a:focus,
a:active {
  color: #00bfa5;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
/* Main */
.site-menu > div[class*="menu-main-"] {
  margin: 0;
  list-style: none;
}

.main-menu {
  float: right;
}

.site-menu > div[class*="menu-main-"] li {
  display: inline-block;
  position: relative;
}

.site-menu > div[class*="menu-main-"] li a {
  padding: 12px 15px;
  color: #000;
  display: inline-block;
}

.site-menu > div[class*="menu-main-"] ul {
  margin: 0;
  list-style: none;
}

.site-menu > div[class*="menu-main-"] ul > li > a {
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.site-menu > div[class*="menu-main-"] ul ul li {
  padding: 5px 10px;
  min-width: 300px;
  display: inline-block;
}

.site-menu > div[class*="menu-main-"] .purple > a {
  color: #440bbd;
}

.site-menu > div[class*="menu-main-"] li[class*="children"] > a::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  vertical-align: -1px;
  font-size: 18px;
  text-align: right;
  margin-left: 8px;
  line-height: 1;
  font-weight: 900;
}

.site-menu > div[class*="menu-main-"] ul ul {
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50px;
  left: -999em;
  z-index: 99999;
}

.site-menu > div[class*="menu-main-"] ul li:hover > ul {
  left: 0px;
}

.site-menu > div[class*="menu-main-"] ul li.right:hover > ul {
  right: 0px;
  left: auto;
}

.site-menu > div[class*="menu-main-"] > ul > li[class*="children"]:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.site-menu > div[class*="menu-main-"] ul ul a {
  padding: 6px 8px;
  display: block;
  color: #555;
  line-height: 1.2;
  font-size: 15px;
}

.site-menu > div[class*="menu-main-"] .menu-item a img {
  width: 20px;
  padding-right: 0;
}

/* Dropdown menu */
.menu-toggle {
  display: none;
  text-align: right;
}

.site-menu-dropdown {
  width: 100% !important;
  display: none;
  background-color: #440bbd;
}

.site-menu-dropdown .menu-item a img {
  width: 20px;
  padding-right: 0;
}

.site-menu-dropdown ul {
  margin: 0;
  list-style: none;
}

.site-menu-dropdown ul ul {
  background-color: #6729ea;
}

.site-menu-dropdown a,
.site-menu-dropdown a:visited,
.site-menu-dropdown a:hover,
.site-menu-dropdown a:active,
.site-menu-dropdown .lang-switcher a,
.site-menu-dropdown .lang-switcher a:visited,
.site-menu-dropdown .lang-switcher a:hover,
.site-menu-dropdown .lang-switcher a:active {
  color: #fff;
}

.site-menu-dropdown ul > li {
  font-weight: 600;
}

.site-menu-dropdown ul > li[class*="children"] > a::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  vertical-align: -1px;
  font-size: 18px;
  float: right;
  margin-right: 3px;
  line-height: 1;
  font-weight: 900;
  transition: transform 150ms ease;
}

.site-menu-dropdown ul > li[class*="open"] > a::after {
  transform: rotate(-180deg);
}

.site-menu-dropdown ul > li > a {
  padding: 12px 15px;
  display: block;
}

.site-menu-dropdown ul ul a {
  padding: 9px 15px;
  font-size: 14px;
}

.site-menu-dropdown ul > li > ul {
  display: none;
}

/* Footer Menu */
.menu-footer-container,
.menu-footer-pt-container {
  margin: 0 0 0 20px;
}

.menu-footer-container ul,
.menu-footer-pt-container ul {
  font-size: 14px;
  list-style: none;
  margin: 0;
}

.footer-menu > li {
  float: left;
  width: 25%;
  padding-right: 15px;
}

.footer-menu .f-purple > a {
  color: #440bbd;
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-menu li > ul li a {
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.footer-menu li > ul .f-purple a {
  padding-top: 20px;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 641px) {
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
9.0 Header/Footer/Widgets/Shortcodes
--------------------------------------------------------------*/
/* Header */
header {
  color: #440bbd;
  position: relative;
  z-index: 11;
}

.entry-header {
  z-index: 1;
}

.sticky.is-stuck,
.sticky.is-anchored {
  z-index: 11;
}

.site-branding {
  max-width: 90px;
  width: 100%;
}

.header-main-logo {
  max-height: 30px;
  height: 100%;
  width: 90px;
}

.header-main-logo path,
.header-main-logo {
  fill: #440bbd;
}

.is-stuck .header-main-logo path {
  fill: #440bbd;
}

#masthead {
  height: 80px;
}

.sticky.is-stuck #masthead {
  height: 50px;
}

.menu-icon-wrapper {
  text-align: right;
}

.site-header .grid-container {
  position: relative;
  z-index: 2;
}

.sticky.is-stuck .header-bkgnd {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sticky.is-stuck .header-main-logo {
  max-height: 20px;
}

.lang-switcher a {
  color: #000;
}

.lang-switcher a:first-child {
  margin-right: 5px;
}

.lang-switcher .active {
  font-weight: 700;
}

/* Verticals */
.menu-verticals-container {
  margin-left: 15px;
}

.verticals > div {
  display: inline-block;
}

.verticals-menu {
  margin: 0;
  list-style: none;
}

.verticals-menu li {
  display: inline-block;
}

.verticals-menu li a {
  padding: 6px 15px;
  color: #000;
}

.verticals-menu li.active a {
  border: 1px solid #440bbd;
  border-radius: 4px;
}

.vertical-sub-menu {
  background-color: #eceff1;
  padding: 4px;
  position: relative;
  z-index: 1;
}

.vertical-sub-menu ul {
  margin: 0 0 0 -10px;
  list-style: none;
}

.vertical-sub-menu li {
  position: relative;
}

.vertical-sub-menu > div > ul > li > a {
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.vertical-sub-menu > div > ul > li {
  padding: 5px 10px;
  min-width: 300px;
  display: inline-block;
}

.vertical-sub-menu .purple > a {
  color: #440bbd;
}

.vertical-sub-menu li[class*="children"] > a::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  vertical-align: -1px;
  font-size: 18px;
  text-align: right;
  margin-left: 8px;
  line-height: 1;
  font-weight: 900;
}

.vertical-sub-menu ul ul {
  background-color: #fff;
  min-width: 250px;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 39px;
  left: -999em;
  z-index: 99999;
}

.vertical-sub-menu ul li.right ul {
  right: -999em;
  left: auto;
}

.vertical-sub-menu > div > ul > li[class*="children"]:hover,
.vertical-sub-menu > div > ul > li.open {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.vertical-sub-menu ul li:hover > ul,
.vertical-sub-menu ul li.open > ul {
  left: 10px;
}

.vertical-sub-menu ul li.right:hover > ul,
.vertical-sub-menu ul li.right.open > ul {
  right: 0px;
  left: auto;
}

.vertical-sub-menu ul ul a {
  padding: 10px 15px;
  display: block;
  color: #555;
  line-height: 1.2;
}

.vertical-sub-menu .menu-item a img {
  width: 20px;
  padding-right: 0;
}

/* Footer */
.site-social {
  text-align: right;
}

.social-icons {
  display: inline-block;
  margin-bottom: 15px;
}

.site-footer {
  margin: 80px 0;
}

.site-footer a {
  color: #440bbd;
}

.site-badge {
	margin-top: 10px;
  text-align: right;
}

.site-meta,
.site-social {
  margin-top: 40px;
}

.social-icons a {
  color: #fff;
}

.social-icon {
  display: inline-block;
  background-color: #440bbd;
  padding: 7px;
  margin-left: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 500px;
  -moz-border-radius: 500px;
  -webkit-border-radius: 500px;
}

/* Footer Form */
.site-footer h6 {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 25px;
}

.site-footer .gform_wrapper .top_label .gfield_label {
  color: #440bbd;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
}

.site-footer .gform_wrapper .top_label .gfield_label.js-unhighlight-label {
  color: #ccc;
}

.site-footer input[type="text"],
.site-footer input[type="email"],
.site-footer
  .gform_wrapper
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  border-width: 0 0 1px;
  border-color: transparent transparent #ccc;
  border-style: none none solid;
  border-radius: 0;
  box-shadow: none;
  padding: 3px 15px;
}

.site-footer input[type="text"]:active,
.site-footer input[type="text"]:focus,
.site-footer input[type="email"]:active,
.site-footer input[type="email"]:focus,
.site-footer
  .gform_wrapper
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):active,
.site-footer
  .gform_wrapper
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus {
  border-color: transparent transparent #440bbd;
}

.site-footer .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  position: relative;
  padding-top: 2px;
}

.site-footer .gform_wrapper .gform_footer input[type="submit"] {
  border-radius: 500px;
  color: #440bbd;
  width: 100%;
  border: 1px solid #440bbd;
  background-color: transparent;
}

.site-footer .gform_wrapper .gform_footer input[type="submit"]:hover,
.site-footer .gform_wrapper .gform_footer input[type="submit"]:active,
.site-footer .gform_wrapper .gform_footer input[type="submit"]:focus {
  color: #fff;
  width: 100%;
  border: 1px solid #440bbd;
  background-color: #440bbd;
}

/* Widgets */
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/* Shortcodes */
.tk-hr-outer {
  width: 100%;
  clear: both;
  padding: 20px 10px;
  display: block;
}

.tk-hr-inner {
  max-width: 370px;
  width: 100%;
  background-color: #bbb;
  height: 1px;
  margin: 0 auto;
}

.jumbo {
  font-family: "Bree Serif", serif;
  font-size: 46px;
  text-align: center;
  color: #003e74;
  line-height: 1.2;
}

.tk-callout {
  color: #5f3c51;
  font-size: 22px;
  text-align: center;
  margin-bottom: 24px;
}

.tk-callout p {
  margin: 0;
  line-height: 1.1;
}

.feat-tours-outer p {
  margin: 0;
  display: inline;
}

.lead {
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1em;
}

/* Alert Boxes */
.info,
.success,
.warning,
.error {
  margin: 10px 0px;
  padding: 18px 18px 18px 50px;
  position: relative;
}

.info {
  color: #00529b;
  background-color: #bde5f8;
}

.info::before {
  content: "\f05a";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 7px;
  left: 12px;
  right: 25px;
  bottom: 0;
  font-size: 2em;
}

.success {
  color: #4f8a10;
  background-color: #dff2bf;
}

.success::before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 7px;
  left: 12px;
  right: 25px;
  bottom: 0;
  font-size: 2em;
}

.warning {
  color: #9f6000;
  background-color: #feefb3;
}

.warning::before {
  content: "\f06a";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 7px;
  left: 12px;
  right: 25px;
  bottom: 0;
  font-size: 2em;
}

.error {
  color: #d8000c;
  background-color: #ffd2d2;
}

.error::before {
  content: "\f057";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 7px;
  left: 12px;
  right: 25px;
  bottom: 0;
  font-size: 2em;
}

/* Statsbox */
.photo-box {
  position: relative;
  display: inline-block;
}

.title-banner {
  color: #fff;
  padding: 20px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.stats {
  font-size: 95px;
  font-weight: 700;
  margin-top: 100px;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.title-banner .stats {
  margin-top: 0;
}

.title-inner {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.stats-cta h1,
.stats-cta h2 {
  color: #440bbd;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

.stats-cta h1 {
  font-size: 33px;
}

.stats-cta h2 {
  font-size: 56px;
}

/* Stat */
.stat {
  font-size: 100px;
  font-weight: 600;
}

.title-stat {
  font-size: 18px;
  font-weight: 400;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 General Blocks/Sitewide
--------------------------------------------------------------*/
.purple,
.purple path {
  color: #440bbd;
  fill: #440bbd;
}

.green,
.green path {
  color: #00bfa5;
  fill: #00bfa5;
}

.white,
.white path {
  color: #ffffff;
  fill: #ffffff;
}

.full-height {
  min-height: 100vh;
  height: 100%;
}

.bold {
	font-weight: bold;
}

.menu-overlap {
  margin-top: -80px !important;
}

.ratings {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  color: #d2d2d2;
  overflow: hidden;
}

.full-stars {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #f7ba02;
  z-index: 1;
}

.empty-stars:before,
.full-stars:before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 14pt;
}

.rating-number {
  font-size: 18px;
  font-weight: 300;
  vertical-align: middle;
}

.slider {
  cursor: default;
}

.slick-prev,
.slick-next {
  position: static;
  display: inline-block;
  transform: none;
  width: 60px;
  height: 60px;
}

.slick-prev::before,
.slick-next::before {
  color: #440bbd;
  font-family: "Font Awesome 5 Pro";
  font-size: 60px;
  font-weight: 300;
  opacity: 1;
}

.slick-prev::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvdzwvdGl0bGU+PGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48Y2lyY2xlIGN4PSI0MC4xIiBjeT0iNDAuMSIgcj0iMzkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0MGJiZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIuMiIvPjxwb2x5bGluZSBwb2ludHM9IjQzLjc0IDMxLjMyIDM2LjQ1IDQwLjE2IDQzLjc0IDQ4Ljg4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0NDBiYmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz48L2c+PC9nPjwvc3ZnPg==");
}

.slick-next::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd19yPC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxjaXJjbGUgY3g9IjQwLjEiIGN5PSI0MC4xIiByPSIzOSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQwYmJkIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PHBvbHlsaW5lIHBvaW50cz0iMzYuNDUgNDguODggNDMuNzQgNDAuMDMgMzYuNDUgMzEuMzIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0MGJiZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIuMiIvPjwvZz48L2c+PC9zdmc+");
}

/* Product Selector */
.sel-title {
  font-size: 58px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #440bbd;
  margin: 30px 0 5px;
  line-height: 1;
}

.sel-subtitle {
  font-size: 25px;
  text-align: center;
  font-weight: 300;
  margin: 0 0 70px;
}

#product-sel-icons .sel-slide-icon img {
  opacity: 0.6;
  max-height: 60px;
  max-width: 60px;
  height: 100%;
  width: auto;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#product-sel-icons .sel-slide-icon {
  position: relative;
  height: 145px;
  width: 130px;
}

#product-sel-icons .slick-center img {
  opacity: 1;
  max-width: 120px;
  max-height: 135px;
}

#product-sel-icons .slick-prev,
#product-sel-icons .slick-next {
  position: absolute;
  transform: translate(0, -50%);
}

#product-sel-icons .slick-prev {
  left: -65px;
}

#product-sel-icons .slick-next {
  right: -65px;
}

.sel-slide-meta {
  text-align: center;
}

.sel-slide-title {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 50px 0 8px;
}

.sel-slide-subtitle {
  font-weight: 300;
  margin: 0 auto 30px;
  max-width: 400px;
}

a.sel-slide-button {
  background-color: #440bbd;
  color: #fff;
  padding: 8px 80px;
  border-radius: 500px;
  margin-bottom: 30px;
  display: inline-block;
}

a.sel-slide-button.white {
  background-color: #fff;
  color: #440bbd;
}

/* Pagebuilder */
.accordion-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  padding: 1.25rem 2rem 1.25rem 1rem;
}

.accordion-title::before {
  color: #f56e03;
  content: "\f055";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  right: 0.5rem;
}

.is-active > .accordion-title::before {
  content: "\f056";
}

.hr {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  display: block;
  clear: both;
  margin: 40px auto;
}

.layout-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.layout-wrapper.overlay::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-transform: uppercase;
}

.layout-wrapper.overlay .layout-inner {
  position: relative;
  z-index: 2;
}

.two_column > .grid-x > .cell {
  padding: 0 3rem;
}

.limit {
  max-height: 325px;
  width: auto;
}

.spacer {
  display: block;
  clear: both;
  width: 100%;
  float: none;
  background-color: transparent;
  min-height: 1px;
}

/* Reviews */
.review_items .small-12 {
  padding: 0;
}

.review-slider .slider-inner {
  padding: 55px 45px;
  width: 750px;
}

.review-slider .slick-slide {
  background-color: #fff;
  opacity: 0.5;
}

.review-slider .slick-current {
  background-color: #f3f3ff;
  opacity: 1;
  transition: opacity 1.5s, background_color 1.5s;
  margin-bottom: 25px;
}

.review-slider .rev-logo .style-svg {
  fill: #440bbd;
  height: 28px;
  margin-bottom: 10px;
}

.review-slider .rev-logo .style-svg path {
  fill: #440bbd;
}

.review-slider .rev-rating {
  color: #00bfa5;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-slider .rev-rating .dolla {
  margin-right: 8px;
}

.review-slider .quoted {
  margin: 40px 0;
}

.review-slider .rev-arrows {
  text-align: center;
}

.review-slider .slick-prev {
  margin-right: 80px;
}

/*--------------------------------------------------------------
10.2 Homepage
--------------------------------------------------------------*/
/* Main Header */
.main-header-wrapper {
  position: relative;
  height: 100vh;
}

.clip-image-main {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

#top-main {
  top: 0;
  width: 100%;
  bottom: 50%;
  background-position: top center;
  -webkit-clip-path: url(#topClip);
  clip-path: url(#topClip);
}

#top-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0) 0%,
    rgba(148, 116, 217, 0) 57%,
    rgba(68, 11, 189, 0.15) 100%
  );
  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(57%, rgba(148, 116, 217, 0)),
    color-stop(100%, rgba(68, 11, 189, 0.15))
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0) 0%,
    rgba(148, 116, 217, 0) 57%,
    rgba(68, 11, 189, 0.15) 100%
  );
  background: -o-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0) 0%,
    rgba(148, 116, 217, 0) 57%,
    rgba(68, 11, 189, 0.15) 100%
  );
  background: -ms-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0) 0%,
    rgba(148, 116, 217, 0) 57%,
    rgba(68, 11, 189, 0.15) 100%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0) 0%,
    rgba(148, 116, 217, 0) 57%,
    rgba(68, 11, 189, 0.15) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#440bbd', GradientType=1 );
}

#right-main {
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  background-position: right center;
  -webkit-clip-path: url(#rightClip);
  clip-path: url(#rightClip);
  z-index: 3;
}

#left-main {
  top: 0;
  width: 100%;
  bottom: 0;
  background-position: left center;
  -webkit-clip-path: url(#leftClip);
  clip-path: url(#leftClip);
}

#left-main::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.top-main-text {
  position: relative;
  top: 25%;
  margin: 0 auto;
  z-index: 2;
  max-width: 450px;
}

.right-main-text {
  position: absolute;
  top: 50%;
  left: 15%;
  max-width: 275px;
  transform: translateY(-50%);
  z-index: 2;
}

.left-main-text {
  position: absolute;
  top: 58%;
  left: 15%;
  max-width: 350px;
  z-index: 2;
}

.left-main-text a.sel-slide-button {
  margin-top: 0;
  margin-bottom: 5px;
}

.main-header-wrapper h2,
.main-header-wrapper h4 {
  margin-bottom: 0.2rem;
}

.main-header-wrapper p,
.main-header-wrapper a {
  margin-bottom: 0;
  margin-top: 5px;
}

.top-main-text p {
  font-size: 20px;
}

/* Purple Banner */
.home-banner-small-top {
	color: #ffffff; 
	font-size: 12px; 
	text-transform: uppercase; 
	margin-bottom: 25px; 
	font-weight: bold;
}

.home-banner-large-top {
	color: #ffffff; font-size: 42px;
}

.home-banner-large-top.last {
	margin-bottom: 40px;
}

.home-banner-small-bottom {
	color: #ffffff; 
	font-size: 18px; 
	margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
	.home-banner-small-top {
		margin-top: 20px;
		margin-bottom: 15px;
	}
	
	.home-banner-large-top {
		font-size: 18px;
		line-height: 1.6;
	}
	
	.home-banner-large-top.last {
		margin-bottom: 15px;
	}
	
	.home-banner-small-bottom {
		font-size: 14px;
		margin-bottom: 25px;
	}
	
	a.sel-slide-button.home-banner-button {
		margin-bottom: 0;
	}
}

/* Main Slider */
.home-slider-outer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
}

.home-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.home-slide-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(0, auto, auto, 0);
}

.home-slide-inner a {
  color: #fff;
}

.scrolldown {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
}

.scrolldown img {
  max-height: 45px;
}

.main-slider-nav {
  list-style: none;
  margin: 0;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.main-slider-nav li {
  cursor: pointer;
  position: relative;
  height: 20px;
  width: 20px;
}

.main-slider-nav .slide-nav-button::before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.main-slider-nav .slide-nav-button:hover::before {
  opacity: 1;
}

.main-slider-nav .active::before {
  opacity: 1;
  font-size: 17px;
}

.slide-logo {
  max-width: 600px;
  padding: 0 15px;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.slide-logo h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.slide-logo .white {
  margin-top: 30px;
  max-height: 120px;
}

.article.cell {
  margin-bottom: 40px;
}

a.main-link {
  color: #333;
}

.article-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.article-spacer {
  padding-bottom: 66%;
}

.article-title {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.article-subtitle {
  font-weight: 300;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
10.3 dfndr Home
--------------------------------------------------------------*/
.dfndr-logo {
  width: 160px;
  height: 120px;
}

.logos-top p {
  margin-bottom: 0;
}

.primary_content-logo.small {
  height: 30px;
}

.primary_content-logo.large {
  height: 50px;
}

.primary_content-left {
  padding-right: 40px;
}

.primary_content-title {
  color: #440bbd;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin: 30px 0 25px;
}

.primary_content-blurb {
  margin-bottom: 70px;
}

.store-buttons-wrapper {
  margin: 8px 0;
  overflow: auto;
}

.store-buttons {
  float: left;
  width: 45%;
}

.store-buttons img {
  max-height: 55px;
}

.store-buttons:first-child {
  margin-right: 5%;
}

.postscript {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}

.prod-grid-item {
  margin-bottom: 55px;
}

.prod-grid-icon {
  max-height: 55px;
  max-width: 55px;
  margin-bottom: 15px;
}

.primary_content .prod-grid-icon {
  float: right;
}

.prod-grid-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.prod-grid-content {
  font-size: 15px;
  font-weight: 300;
}

.product_features .grid-padding-x > .cell {
  padding: 0 2rem;
}

/* Slideshow */
.sc-wrapper-outer {
  height: 600px !important;
}

.sc-inner img {
  max-height: 100%;
  width: auto;
}

.cardslider__cards {
  height: 100%;
  width: 100%;
}

.cardslider__card {
  border-radius: 0;
  background-color: transparent;
  padding: 25px;
}

.cardslider--direction-left .cardslider__card--index-1 {
  transform: scale(0.95) translate3d(15%, 0, 3px);
}
.cardslider--direction-left .cardslider__card--index-2 {
  transform: scale(0.9) translate3d(25%, 0, 2px);
}
.cardslider--direction-left .cardslider__card--index-3 {
  transform: scale(0.85) translate3d(30%, 0, 1px);
}

.cardslider__direction-nav {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.cardslider__nav-next,
.cardslider__nav-prev {
  background-image: none;
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 0;
  text-indent: 0;
  margin: 0;
}

.cardslider__nav-next {
  margin-bottom: 30px;
}

.cardslider__nav-next::before,
.cardslider__nav-prev::before {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
}

.cardslider__nav-next:hover,
.cardslider__nav-prev:hover,
.cardslider__nav-next:active,
.cardslider__nav-prev:active,
.cardslider__nav-next:focus,
.cardslider__nav-prev:focus {
  background-color: transparent;
}

.cardslider__nav-prev::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvdzwvdGl0bGU+PGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48Y2lyY2xlIGN4PSI0MC4xIiBjeT0iNDAuMSIgcj0iMzkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0MGJiZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIuMiIvPjxwb2x5bGluZSBwb2ludHM9IjQzLjc0IDMxLjMyIDM2LjQ1IDQwLjE2IDQzLjc0IDQ4Ljg4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0NDBiYmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz48L2c+PC9nPjwvc3ZnPg==");
}

.cardslider__nav-next::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd19yPC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxjaXJjbGUgY3g9IjQwLjEiIGN5PSI0MC4xIiByPSIzOSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQwYmJkIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PHBvbHlsaW5lIHBvaW50cz0iMzYuNDUgNDguODggNDMuNzQgNDAuMDMgMzYuNDUgMzEuMzIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0MGJiZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIuMiIvPjwvZz48L2c+PC9zdmc+");
}

.cardslider__card img {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
10.4 Product Pages
--------------------------------------------------------------*/
.prod-logo-wrapper {
  text-align: center;
  margin-bottom: 70px;
}

.header-logo-product {
  max-height: 200px;
}

.prod-title-wrapper {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin: 30% 0 50px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.page_header-outer {
  height: 100vh;
  position: relative;
}

.page_header .postscript {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.page_header .store-buttons-wrapper {
  margin-bottom: 100px;
}

.page_header .store-buttons {
  float: none;
  width: 100%;
}

.page_header .store-buttons img {
  max-width: 200px;
}

.page_header .play-btn {
  text-align: right;
}

.page_header .app-store-btn {
  text-align: left;
}

.p-col-inner {
  padding: 20px 30px;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.price-col-inner {
  display: block;
  transition: all 1s;
}

.price-col-inner.closed,
.price-col-inner.open {
  display: block;
}

.price-column .price-title {
  color: #440bbd;
  font-size: 36px;
  font-weight: 300;
}

.price-column .price-subtitle {
  margin-bottom: 30px;
}

.price-column ul {
  list-style: none;
  margin: 0;
}

.price-column ul li {
  color: #cdcdcd;
  margin: 12px 0;
}

.price-column ul.active-items li {
  color: #333;
}

.price-column ul.active-items li::before {
  color: #00af07;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-right: 8px;
}

.price-column ul.inactive-items li::before {
  content: "";
  margin-right: 22px;
}

.pricing_grid .cta-button-wrapper {
  text-align: center;
}

.pricing_grid .sel-slide-button {
  display: inline-block;
  margin: 30px 0;
}

/* Floating button */
.download-button-wrapper {
  background-color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 12;
  width: 100%;
  -webkit-box-shadow: 0px -1px 13px -2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px -1px 13px -2px rgba(0, 0, 0, 0.35);
  box-shadow: 0px -1px 13px -2px rgba(0, 0, 0, 0.35);
}

.download-btn {
  color: #fff;
  background-color: #440bbd;
  font-size: 10px;
  margin: 12px auto;
  padding: 8px 12px;
  display: block;
  border-radius: 4px;
  text-align: center;
}

.download-btn-logo .style-svg {
  height: 15px;
  width: auto;
}

/*--------------------------------------------------------------
10.5 FAQ/Help Pages
--------------------------------------------------------------*/
/* Help Main */
.page-template-template-help .site-content,
.archive .site-content,
.single .site-content,
.menu-padding,
.search-outer {
  padding-top: 80px;
}

.page-template-template-help .entry-title {
  margin: 40px 0 80px;
}

.help-header {
  margin-bottom: 15px;
}

input[type="submit"] {
  background-color: #440bbd;
  border: medium none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 15px 9px;
  width: 100%;
}

.help-lower {
  background-color: #e8e8e8;
  padding: 60px 0 80px;
  margin-top: 60px;
}

.help-lower .cat-item-inner {
  margin-bottom: 20px;
}

.help-lower .cat-item-inner svg {
  height: 75px;
  width: 125px;
}

.help-cats-title {
  margin-bottom: 30px;
}

.cat-item {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 25px;
  position: relative;
  margin-bottom: 15px;
}

.docs-amnt {
  position: absolute;
  bottom: 15px;
  left: 0;
  text-align: center;
  width: 100%;
}

/* Help Cat Archive */
.breadcrumbs-wrapper {
  padding: 15px 0;
}

.breadcrumbs {
  margin: 0;
}

.breadcrumbs li {
  font-size: 0.8rem;
}

.breadcrumbs li:not(:last-child)::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f138";
}

.breadcrumbs a {
  color: #440bbd;
}

.help-cats-list {
  list-style: none;
  margin: 0;
  display: block;
}

.help-product-title {
  border-bottom: 1px solid #ccc;
  color: #440bbd;
  font-weight: 600;
  margin: 12px 0 15px;
  padding-bottom: 16px;
}

.help-categories {
  padding-left: 15px;
}

.docs-list {
  padding-right: 15px;
}

a.help-cat-item {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 24px 15px 0;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  width: 100%;
}

.help-cat-item:hover,
.help-cat-item:active,
.help-cat-item:focus,
.help-cat-item.current {
  color: #440bbd;
  border-bottom: 2px solid #440bbd;
  padding-bottom: 14px;
  position: relative;
}

.help-cat-item:hover::after,
.help-cat-item:active::after,
.help-cat-item:focus::after,
.help-cat-item.current::after {
  color: #440bbd;
  content: "\f138";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  margin-top: -14px;
  position: absolute;
  right: 0;
  top: 50%;
}

a.doc-wrapper {
  border: 1px solid #ccc;
  color: #333;
  display: inline-block;
  padding: 24px 28px;
  margin-bottom: 15px;
  width: 100%;
}

.doc-wrapper:hover,
.doc-wrapper:active,
.doc-wrapper:focus {
  border: 1px solid #440bbd;
  color: #440bbd;
}

.docs-article-title {
  border-bottom: 1px solid #ccc;
  margin: 12px 0 15px;
  padding-bottom: 16px;
}

.docs-question {
  border-top: 1px solid #ccc;
  margin: 50px 0 20px;
  padding: 20px 0;
}

.help-questions-blurb {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
10.6 News
--------------------------------------------------------------*/
.news-item {
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 1.875rem;
  padding: 30px;
  text-align: center;
}

.news-item img {
  max-height: 50px;
  width: auto;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
10.7 Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.page .hentry {
  margin: 80px 0 1.5em;
}

.page .hentry.no-title {
  margin-top: 0;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.pagination .current {
  background: #440bbd;
}

.entry-meta {
  margin: 25px 0;
}

/*--------------------------------------------------------------
10.8 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
10.9 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
13.0 Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
  .top-main-text {
    max-width: 400px;
    top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .photo-box .stats {
    font-size: 60px;
  }

  .photo-box .title-inner {
    font-size: 35px;
  }

  #product-sel-icons {
    max-width: 85%;
    margin: 0 auto;
  }

  .stats-cta h1 {
    font-size: 25px;
  }

  .stats-cta h2 {
    font-size: 40px;
  }

  .stat {
    font-size: 80px;
  }
}

@media screen and (max-width: 900px) {
  .review-slider .slider-inner {
    width: 500px;
  }

  .review-slider .rev-logo .style-svg {
    height: 22px;
  }

  .review-slider .rev-rating {
    font-size: 16px;
  }

  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }

  #product-sel-icons .slick-next {
    right: -40px;
  }

  #product-sel-icons .slick-prev {
    left: -40px;
  }

  .slick-prev::before,
  .slick-next::before {
    font-size: 40px;
  }

  #product-sel-icons {
    max-width: 75%;
  }

  #product-sel-icons .sel-slide-icon img {
    max-height: 35px;
    max-width: 35px;
  }

  #product-sel-icons .slick-center img {
    max-width: 70px;
    max-height: 85px;
  }

  .sel-title {
    font-size: 40px;
    line-height: 1;
  }

  .sel-subtitle {
    font-size: 20px;
  }

  .logos-top {
    text-align: center;
  }

  .dfndr-logo {
    width: 100%;
    max-height: 70px;
    margin-bottom: 20px;
  }

  .site-menu,
  .lang-switcher.main {
    display: none;
  }

  .lang-switcher.drop {
    padding: 12px 15px;
    color: #fff;
  }

  .lang-switcher.drop svg {
    color: #fff;
    margin-right: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle svg {
    cursor: pointer;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .home-slide {
    background-size: auto 100%;
  }

  .main-header-wrapper a {
    font-weight: bold;
  }

  #top-main {
    bottom: 61.4%;
    -webkit-clip-path: url(#topClipResponsive);
    clip-path: url(#topClipResponsive);
  }

  .top-main-text {
    left: 10px;
    top: 5px;
    max-width: 200px;
    margin: 0;
  }

  .top-main-text h2 {
    text-align: left !important;
    font-size: 23px;
  }

  .top-main-text p {
    text-align: left !important;
    font-size: 14px;
  }

  #right-main {
    left: 19%;
    bottom: 23%;
    background-position: 80% center;
  }

  .right-main-text {
    max-width: 160px;
  }

  .right-main-text h4 {
    font-size: 23px;
  }

  .right-main-text p {
    font-size: 14px;
  }

  #left-main {
    top: 30%;
    -webkit-clip-path: url(#leftClipResponsive);
    clip-path: url(#leftClipResponsive);
  }

  .left-main-text {
    max-width: 250px;
  }
}

@media screen and (max-width: 641px) {
  .enterprise-consent .ginput_container_consent {
    max-width: 100%;
    width: 100%;
  }

  .en-enterprise-button {
    margin-left: 0;
  }

  .pricing_grid .sel-slide-button {
    font-size: 20px;
    padding: 8px 40px;
  }

  .primary_content .prod-grid-icon {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .site-menu > div[class*="menu-main-"] .head-item.prods {
    width: 100%;
    float: none;
    padding: 0;
  }

  .lang-switcher {
    font-size: 14px;
  }

  .slide-logo {
    top: 35%;
  }

  .slide-logo h2 {
    font-size: 25px;
  }

  #slide1 {
    background-position: 27% top;
  }

  #slide2,
  .security {
    background-position: 64% top;
  }

  #slide3,
  .vault {
    background-position: 56% top;
  }

  #slide4,
  .performance {
    background-position: 62% top;
  }

  #slide5,
  .vpn {
    background-position: 62% top;
  }

  #slide6,
  .battery {
    background-position: 38% top;
  }

  .stat {
    font-size: 60px;
  }

  .slide-logo .white {
    max-height: 90px;
  }

  .main-slider-nav li {
    height: 15px;
    width: 15px;
  }

  .scrolldown {
    width: 35px;
    height: 35px;
    bottom: 10px;
  }

  .scrolldown img {
    max-height: 35px;
  }

  .main-slider-nav {
    bottom: 55px;
  }

  .main-slider-nav .slide-nav-button::before {
    font-size: 8px;
  }

  .main-slider-nav .active::before {
    font-size: 13px;
  }

  .stats-cta .small-12:first-child {
    padding: 0;
  }

  .photo-box .stats {
    font-size: 55px;
  }

  .photo-box .title-inner {
    font-size: 25px;
  }

  .title-banner {
    padding: 15px;
  }

  .stats-cta h1 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .stats-cta h2 {
    font-size: 30px;
    margin-bottom: 3px;
  }

  .stats-cta .body {
    font-size: 16px !important;
  }

  .selector-wrapper {
    padding-top: 35px;
  }

  .sel-title {
    font-size: 25px;
  }

  .sel-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }

  .sel-slide-title {
    font-size: 20px;
    margin-top: 5px;
  }

  .sel-slide-subtitle {
    margin-bottom: 20px;
  }

  a.sel-slide-button {
    padding: 8px 40px;
  }

  .site-meta {
    font-size: 14px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    padding-top: 6px;
  }

  .primary_content-blurb {
    margin-bottom: 0;
  }

  .postscript.mobile {
    text-align: center;
  }

  .rating-wrapper.bigger {
    text-align: center;
  }

  .rating-wrapper.bigger .rating-number {
    font-size: 22px;
  }

  .rating-wrapper.bigger .empty-stars::before,
  .rating-wrapper.bigger .full-stars::before {
    font-size: 22px;
  }

  .review-slider .slider-inner {
    padding: 30px 20px;
    width: 250px;
    font-size: 14px;
    height: 300px;
    overflow: scroll;
  }

  .review-slider .rev-logo .style-svg {
    height: 18px;
  }

  .primary_content-right {
    margin-top: 25px;
  }

  .site-meta,
  .site-social {
    margin-top: 20px;
    text-align: center;
  }

  .cardslider__direction-nav {
    display: none;
  }

  .screenshots .primary_content-right {
    margin: 30px 0 0;
    width: 100%;
  }

  .sc-wrapper-outer {
    height: 500px !important;
  }

  .price-column .price-title {
    font-size: 30px;
  }

  .p-col-inner {
    padding: 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .prod-title-wrapper {
    margin-top: 38%;
  }

  .price-column .price-subtitle {
    margin-bottom: 0;
  }

  .active .price-column .price-subtitle {
    margin-bottom: 30px;
  }

  .price-title {
    cursor: pointer;
  }

  .price-column .price-title,
  .price-column .price-subtitle {
    color: #9a9a9a;
  }

  .active .price-subtitle {
    color: #333;
  }

  .active .price-title {
    color: #440bbd;
  }

  .price-title::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd19nX2Q8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PGNpcmNsZSBjeD0iNDAuMSIgY3k9IjQwLjEiIHI9IjM5IiBmaWxsPSJub25lIiBzdHJva2U9IiM5YTlhOWEiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz48cG9seWxpbmUgcG9pbnRzPSIzMS4zMiAzNi40NSA0MC4xNiA0My43NCA0OC44OCAzNi40NSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjOWE5YTlhIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PC9nPjwvZz48L3N2Zz4=");
    float: right;
    width: 30px;
    margin-top: 3px;
  }

  .active .price-title::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd191PC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxjaXJjbGUgY3g9IjQwLjEiIGN5PSI0MC4xIiByPSIzOSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQwYmJkIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PHBvbHlsaW5lIHBvaW50cz0iNDguODggNDMuNzQgNDAuMDMgMzYuNDUgMzEuMzIgNDMuNzQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0MGJiZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIuMiIvPjwvZz48L2c+PC9zdmc+");
  }

  .site-branding {
    max-width: 60px;
    width: 100%;
  }

  .site-branding.standard-logo {
    max-width: 31px;
    overflow: hidden;
    width: 100%;
  }

  .header-main-logo {
    max-height: 30px;
    height: 100%;
    width: 90px;
  }

  .menu-verticals-container {
    margin-left: 0;
  }

  .sticky.is-stuck .header-main-logo {
    max-height: inherit;
  }

  .verticals {
    text-align: center;
  }

  .verticals-menu li a {
    padding: 6px 7px;
    font-size: 13px;
  }

  .vertical-sub-menu > div > ul > li {
    min-width: auto;
  }

  .vertical-sub-menu > div > ul > li > a {
    font-size: 13px;
  }

  .vertical-sub-menu li[class*="children"] > a::after {
    font-size: 15px;
  }

  .site-menu > div[class*="menu-main-"]-wrapper {
    padding-top: 90px;
  }

  .site-menu > div[class*="menu-main-"] .head-item {
    float: none;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    padding: 0;
  }

  .site-menu > div[class*="menu-main-"] .head-item > a::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd193X2Q8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PGNpcmNsZSBjeD0iNDAuMSIgY3k9IjQwLjEiIHI9IjM5IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz48cG9seWxpbmUgcG9pbnRzPSIzMS4zMiAzNi40NSA0MC4xNiA0My43NCA0OC44OCAzNi40NSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PC9nPjwvZz48L3N2Zz4=");
    position: absolute;
    right: 0;
    width: 30px;
  }

  .site-menu > div[class*="menu-main-"] .head-item.open > a::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yIDgwLjIiPjx0aXRsZT5hcnJvd193X3U8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PGNpcmNsZSBjeD0iNDAuMSIgY3k9IjQwLjEiIHI9IjM5IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz48cG9seWxpbmUgcG9pbnRzPSI0OC44OCA0My43NCA0MC4wMyAzNi40NSAzMS4zMiA0My43NCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PC9nPjwvZz48L3N2Zz4=");
  }

  .site-menu > div[class*="menu-main-"] ul ul,
  .menu-main-pt-container ul ul {
    display: none;
  }

  .header-logo-product {
    max-height: 150px;
  }

  .prod-title-wrapper {
    font-size: 30px;
  }

  .page_header .postscript {
    font-size: 16px;
  }

  .prod-grid-icon {
    max-height: 50px;
    max-width: 50px;
    float: right;
  }

  .primary_content .slider-wrapper-icons {
    margin: 30px 0;
    width: 100%;
  }

  .grid-item-slider .prod-grid-item {
    text-align: center;
    padding: 0 15px;
    opacity: 0.5;
    width: 160px;
  }

  .grid-item-slider .prod-grid-item.slick-center {
    opacity: 1;
  }

  .grid-item-slider .prod-grid-content {
    font-size: 13px;
  }

  .grid-item-slider .icon {
    min-height: 70px;
    position: relative;
  }

  .price-col-inner.closed {
    display: none;
  }

  .two_column .cell,
  .product_features .grid-padding-x > .cell {
    padding: 0 0.9375rem;
  }

  .two_column .cell {
    margin-bottom: 30px;
  }

  .prod-grid-content {
    font-size: 14px;
  }

  .primary_content-logo.large {
    height: 30px;
  }

  .layout-wrapper {
    padding: 15px 0 !important;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 21px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  .limit {
    max-height: 250px;
  }

  .store-buttons img {
    max-height: 35px;
  }

  .primary_content-title {
    font-size: 20px;
  }

  .review-slider .rev-arrows {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
  }

  .two_column > .grid-x > .cell {
    padding: 0 0.9375rem;
  }

  .help-categories {
    padding-right: 15px;
  }

  .docs-list {
    padding-left: 15px;
  }

  .help-product-title {
    border: 1px solid #ccc;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 15px;
    position: relative;
  }

  .help-product-title::after {
    color: #440bbd;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    margin-top: -10px;
    position: absolute;
    right: 15px;
    top: 50%;
  }

  .help-cats-list {
    display: none;
    margin-bottom: 30px;
  }
}

.cc-window {
	display: none !important;
}