/*
Theme Name: Conference Scheduler
Theme URI: http://conferencescheduler.com/
Author: Shane Warner
Author URI: http://myceliumdesign.ca/
Description: Theme for my website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blue, two-columns, three-columns, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: conf_theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* ----  Colours  ----- */
/*  --------- 1.0 Reset ---------- */
@import 'assets/css/reset.css';
hr {
  margin: 0.5em 0;
}
/* Use border-box sizing everywhere! */
*,
*:before,
*:after {
  box-sizing: border-box;
}
::selection {
  background: #f3d7be;
  text-shadow: none;
}
::-moz-selection {
  background: #f3d7be;
  text-shadow: none;
}
/*  --------- 2.0 Typography ---------- */
body {
  font-family: 'Overlock', serif;
}
h1,
h2,
h3 {
  font-family: 'Exo', serif;
  color: #666;
  font-weight: 300;
  border-bottom: 2px dashed #bbb;
  line-height: 1.3em;
}
h1,
h2 {
  font-size: 30px;
}
.site-footer h1,
.site-footer h2,
.site-footer h3 {
  color: #f5f5f5;
  border-bottom: 2px dashed #f5f5f5;
}
h1 a,
h2 a,
h3 a {
  color: #f5f5f5;
}
h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
}
a {
  color: #d87927;
  font-weight: 700;
}
a:hover,
a:visited,
a:hover:visited {
  color: #e4a168;
}
a img {
  border: none;
}
.site-footer {
  font-family: 'Lato', sans-serif;
}
.site-footer h1,
.site-footer h2,
.site-footer h3 {
  border-bottom-color: #a7a9ab;
}
/**
 * Repeatable Patterns
 * -----------------------------------------------------------------------------
 */
/* Input fields */
input,
textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: #2b2b2b;
  padding: 8px 10px 7px;
}
textarea {
  width: 100%;
}
input:focus,
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: 0;
}
/* Buttons */
button,
.wp-block-button > a,
.button,
a.button,
a.button:visited,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #333;
  font-family: 'Exo', serif;
  border: 1px solid #333;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5em 1em .5em;
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
}
button:hover,
.wp-block-button > a:hover,
.button:hover,
a.button:hover,
a.button:visited:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
.button:focus,
a.button:focus,
a.button:visited:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  background-color: #666;
  color: #fff;
}
button:active,
.button:active,
a.button:active,
a.button:visited:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background-color: #666;
}
.wp-block-buttons {
  margin-bottom: 24px;
}
.search-field {
  width: 100%;
}
.search-submit {
  display: none;
}
/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #939393;
}
:-moz-placeholder {
  color: #939393;
}
::-moz-placeholder {
  color: #939393;
  opacity: 1;
  /* Since FF19 lowers the opacity of the placeholder by default */
}
:-ms-input-placeholder {
  color: #939393;
}
/* Responsive images. Fluid images for posts, comments, and widgets */
.comment-content img,
.entry-content img,
.entry-summary img,
#site-header img,
.widget img,
.wp-caption {
  max-width: 100%;
}
/**
 * Make sure images with WordPress-added height and width attributes are
 * scaled correctly.
 */
.comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"],
#site-header img {
  height: auto;
}
img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
  height: auto;
  max-width: 100%;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object,
video {
  margin-bottom: 24px;
  max-width: 100%;
}
p > embed,
p > iframe,
p > object,
span > embed,
span > iframe,
span > object {
  margin-bottom: 0;
}
/* Alignment */
blockquote.alignleft,
figure.wp-caption.alignleft,
img.alignleft {
  margin: 7px 24px 7px 0;
}
.wp-caption.alignleft {
  margin: 7px 14px 7px 0;
}
blockquote.alignright,
figure.wp-caption.alignright,
img.alignright,
iframe.alignright {
  margin: 7px 0 7px 24px;
}
.wp-caption.alignright {
  margin: 7px 0 7px 14px;
}
blockquote.aligncenter,
img.aligncenter,
.wp-caption.aligncenter {
  margin-top: 7px;
  margin-bottom: 7px;
}
.site-content blockquote.alignleft,
.site-content blockquote.alignright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 17px;
  width: 50%;
}
.site-content blockquote.alignleft p,
.site-content blockquote.alignright p {
  margin-bottom: 17px;
}
.wp-caption {
  margin-bottom: 24px;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
}
.wp-caption {
  color: #767676;
}
.wp-caption-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px 0;
}
div.wp-caption .wp-caption-text {
  padding-right: 10px;
}
div.wp-caption.alignright img[class*="wp-image-"],
div.wp-caption.alignright .wp-caption-text {
  padding-left: 10px;
  padding-right: 0;
}
.wp-smiley {
  border: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Assistive text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  left: 5px;
  top: 5px;
  text-decoration: none;
  text-transform: none;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}
.hide {
  display: none;
}
/*  --------- 3.0 Structure ---------- */
.full,
.span4,
.span2,
.span3,
.span2-3,
.span3-4 {
  border: 1px solid transparent;
  /* make space for borders everywhere so they can be used if needed without breaking alignment */
  margin-left: 1.5%;
  padding-left: 1.5%;
  padding-right: 1.5%;
  float: left;
}
.full {
  width: 97%;
  clear: both;
}
.span4 {
  width: 22%;
}
.span2 {
  width: 48.5%;
}
.span3 {
  width: 32.333%;
}
.span2-3 {
  width: 66.16666%;
}
.span3-4 {
  width: 72%;
}
[class*="span"] {
  margin-top: 20px;
}
[class*="span"]:first-of-type {
  margin-left: 0;
}
[class*="span"] h1,
[class*="span"] h2,
[class*="span"] h3,
[class*="span"] h4 {
  margin-top: 0;
}
.main-content {
  padding: 0 2%;
}
.site-content {
  margin-bottom: 40px;
}
.clearfix:after,
.clearfixrules {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.main-content img {
  box-shadow: 2px 2px 5px #999;
}
/*  --------- 4.0 Colours ---------- */
.main-content {
  color: #666;
}
.navbar {
  background: #333;
}
.colourbar {
  background: linear-gradient(180deg, #ffdd17 0%, #ffdd17 49%, #d87927 50%, #d87927 100%);
}
html {
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
body {
  min-height: 100%;
  position: relative;
  padding-bottom: 200px;
  margin: 0;
}
.site-footer {
  background: #333;
  margin-top: 6px;
  /* -- for lower colourbar -- */
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-bottom: -20px;
}
.site-footer:before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(0deg, #ffdd17 0%, #ffdd17 49%, #d87927 50%, #d87927 100%);
  margin-bottom: 44px;
}
/*  --------- 5.0 Header ---------- */
#banner {
  text-align: right;
}
#banner .fa-spinner {
  font-size: 50px;
  color: #666;
  position: absolute;
  top: 50%;
  left: 50%;
}
#slider {
  width: 100%;
  z-index: 10;
  display: block;
  text-align: right;
  position: relative;
}
#banner .ls-loading-container {
  background: #f5f5f5;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
}
#banner .ls-loading-container .ls-loading-indicator {
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"%3E%3Cpath d="M460.116 373.846l-20.823-12.022c-5.541-3.199-7.54-10.159-4.663-15.874 30.137-59.886 28.343-131.652-5.386-189.946-33.641-58.394-94.896-95.833-161.827-99.676C261.028 55.961 256 50.751 256 44.352V20.309c0-6.904 5.808-12.337 12.703-11.982 83.556 4.306 160.163 50.864 202.11 123.677 42.063 72.696 44.079 162.316 6.031 236.832-3.14 6.148-10.75 8.461-16.728 5.01z"/%3E%3C/svg%3E');
  background-size: contain;
  animation: fa-spin 1s infinite linear;
}
.navbar {
  clear: right;
  -webkit-transform: translateZ(0);
  /* fix Safari font flickering on slider transition */
}
#page-banner {
  display: none;
}
body.home #main-content {
  margin: 0;
  padding: 0;
}
#primary {
  overflow: auto;
}
.mobile-menu {
  display: none;
}
.navbar {
  z-index: 90;
  font-size: 21px;
  border-radius: 0;
  position: relative;
  text-align: center;
}
.nav-title {
  position: absolute;
  left: 20px;
  margin-left: 0.5em;
  padding: 0.5em 0;
  text-align: left;
}
.nav-title img {
  margin-right: 5px;
  position: relative;
  top: -1px;
  max-width: none;
  width: 35px;
}
.nav-title a,
.nav-title a:visited {
  color: #ffffff;
}
.navbar .sf-menu {
  display: block;
}
.navbar:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}
.colourbar {
  width: 100%;
  height: 6px;
  clear: left;
}
.navbar,
.navbar a,
.navbar > ul > li > a:visited,
.navbar > ul > li > a:hover:visited {
  font-family: 'Exo', serif;
  font-weight: 300;
  color: #f5f5f5;
}
.navbar a {
  border-bottom: none;
}
.navbar li li,
.navbar li li a {
  font-weight: 500;
  font-size: 18px;
  color: #666;
  text-align: left;
}
.navbar-nav {
  margin-left: 17%;
}
/*** ESSENTIAL STYLES ***/
.sf-menu,
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sf-menu li {
  position: relative;
}
.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}
.sf-menu > li {
  display: inline-block;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}
.sf-menu a {
  display: block;
  position: relative;
}
.sf-menu ul ul {
  top: 0;
  left: 100%;
}
.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 8em;
  /* allow long menu items to determine submenu width */
  *width: 8em;
  /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
  padding: .5em .8em;
  text-decoration: none;
  zoom: 1;
  /* IE7 */
}
.sf-menu li {
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s;
}
.sf-menu li ul {
  border: 1px solid rgba(50, 69, 29, 0.3);
}
.sf-menu li li {
  background: #fff;
  border-bottom: 1px dotted rgba(50, 69, 29, 0.5);
}
.sf-menu li li:last-child {
  border-bottom: none;
}
.sf-menu > li:hover,
.sf-menu > li.sfHover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}
.sf-menu li li:hover,
.sf-menu li li.sfHover {
  background-color: #f5f5f5;
  color: #ffffff;
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}
.navbar .dropdown-toggle:after {
  /* -- Chevrons after dropdown menu headers -- */
  font-family: 'FontAwesome';
  content: '\f078';
  display: inline-block;
  font-size: 10px;
  margin-left: 5px;
  line-height: 1px;
  position: relative;
  top: -3px;
}
.navbar .dropdown-menu:after {
  /* -- Points on top of submenus -- */
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 10px;
}
.navbar .dropdown-submenu .dropdown-menu:before,
.navbar .dropdown-submenu .dropdown-menu:after {
  display: none;
}
.navbar .dropdown-submenu {
  position: relative;
}
.navbar .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -4px;
  margin-left: -1px;
}
.navbar .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.navbar .dropdown-submenu > a:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-left-color: #959d86;
}
.navbar .dropdown-submenu a {
  padding-right: 1.6em;
}
.navbar .dropdown-submenu .pull-left {
  float: none;
}
.navbar .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}
.sf-menu li,
.sf-menu li:hover {
  transform: translate3d(0, 0, 0);
}
/* prevent jumping text in Safari as renderer changes */
/* -------- 4.0 Footer -------- */
.site-footer {
  clear: both;
  font-size: 13px;
  font-weight: 400;
  color: #808284;
  padding-bottom: 20px;
  text-align: center;
}
.site-footer h1 {
  border: none;
}
.site-footer h1 img {
  margin-right: 10px;
  height: 1.5em;
  vertical-align: middle;
}
.site-footer .divider {
  margin: 0 10px;
}
.site-footer a {
  color: #fff097;
}
.site-footer a:hover {
  color: #ffdd17;
}
.site-footer i.fa {
  padding-right: .3em;
}
/* -------- 7.0 Galleries -------- */
.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
  background-color: transparent;
  border-bottom-color: transparent;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav {
  top: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
  border: none;
  border-radius: 50%;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
  right: 10px;
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
  left: 10px;
}
/* -------- 9.0 Mindshift -------- */
.blockquote {
  clear: both;
  border: 2px dashed #808284;
  margin: 20px 3%;
  padding: 3%;
  background: #e8e8e8;
}
.blockquote p:last-child {
  margin-bottom: 0;
}
#content > p,
#content > h1,
#content > h2,
#content > h3,
#content > h4,
#content > div {
  margin-right: 40px;
  margin-left: 40px;
}
#content > pre,
#content > ul,
#content > ol {
  margin-right: 80px;
  margin-left: 80px;
}
#content div[class*="span"] + *:not([class*="span"]) {
  clear: left;
}
#content .wedgeleft,
#content .wedgeright {
  padding: calc(3vw + 20px) 40px 3vw 40px;
  margin: 20px 0;
  background: #e5e5e5;
}
#content .wedgeleft > h1:first-child,
#content .wedgeright > h1:first-child,
#content .wedgeleft > h2:first-child,
#content .wedgeright > h2:first-child,
#content .wedgeleft > h3:first-child,
#content .wedgeright > h3:first-child,
#content .wedgeleft > h4:first-child,
#content .wedgeright > h4:first-child {
  margin-top: 16px;
}
.wedgeleft {
  -webkit-clip-path: polygon(0 0, 100% 3vw, 100% calc(100% - 3vw), 0 100%);
  clip-path: polygon(0 0, 100% 3vw, 100% calc(100% - 3vw), 0 100%);
}
.wedgeright {
  -webkit-clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 calc(100% - 3vw));
  clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 calc(100% - 3vw));
}
.cards {
  margin: 0 20px;
}
.cards:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.card {
  background: #f5f5f5;
  border: 1px solid #cccccc;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  margin-bottom: 20px;
}
.card h3 {
  text-align: center;
  border: none;
  white-space: nowrap;
  overflow: hidden;
}
.card h3:before,
.card h3:after {
  border-top: 1px solid #e6a771;
  width: 50px;
  height: 0;
  display: inline-block;
  content: " ";
  vertical-align: middle;
}
.card h3:after {
  margin-left: 10px;
  margin-right: -100%;
}
.card h3:before {
  margin-right: 10px;
  margin-left: -100%;
}
.card i.fa {
  color: #cccccc;
  display: inline-block;
  margin-right: 10px;
}
.card i.fa + i.fa {
  margin-right: 0;
  margin-left: 10px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card li {
  text-align: center;
  padding: 5px 10px;
  margin: 0 10px;
}
.card li:after {
  content: "";
  display: block;
  width: 50%;
  margin-left: 25%;
  margin-top: 10px;
  border-top: 1px dotted #666;
}
.card li:first-child:before {
  content: "";
  display: block;
  width: 50%;
  margin-left: 25%;
  margin-bottom: 10px;
  border-top: 1px dotted #666;
}
.rate {
  text-align: center;
  margin-top: 24px;
  font-size: 1.3em;
}
.profile .details {
  text-align: center;
}
.profile .name {
  font-size: 1.2em;
  font-weight: bold;
}
.profile img {
  border-radius: 50%;
  max-width: 100%;
  margin-bottom: 10px;
}
.profile .fa {
  color: #cccccc;
}
.photography .gallery {
  width: 90%;
  box-shadow: 2px 2px 5px #999;
  overflow: hidden;
  margin: auto;
}
.photography .gallery img {
  box-shadow: none;
}
.portfolio .gallery {
  margin-top: 44px;
}
.portfolio .nav {
  display: none;
  text-align: center;
}
.portfolio .gallery-item {
  width: calc((100% - 20px)/2);
  float: left;
  margin-left: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.portfolio .gallery-item img {
  max-width: 100%;
}
.portfolio .gallery-item img:hover {
  opacity: 0.8;
}
.portfolio .gallery-icon > a:hover {
  border-bottom-color: transparent;
}
.portfolio .gallery .gallery-item:nth-child(2n+1) {
  clear: left;
  margin-left: 0;
}
.portfolio .gallery:after {
  display: table;
  content: "";
}
.portfolio .gallery-item figcaption {
  display: none;
}
#port-detail img {
  margin-bottom: 12px;
}
#content .cd-testimonials-wrapper {
  background: #f5f5f5;
  margin: 2em auto;
  border: 1px solid #cccccc;
  padding: 40px 50px 0px;
}
#content .cd-testimonials-wrapper::after {
  background: #fff;
  color: #666;
  border: 1px solid #cccccc;
}
#content .cd-testimonials-wrapper > p {
  display: none;
}
#content .cd-testimonials-wrapper .cd-testimonials {
  color: #666;
}
#content .cd-testimonials-wrapper .cd-author {
  padding: 24px 0 50px;
}
#content .cd-testimonials-wrapper .cd-author img {
  margin-right: 20px;
}
#content .cd-testimonials-wrapper .cd-author p {
  display: none;
}
#content .cd-testimonials-wrapper .flex-direction-nav li a::before,
#content .cd-testimonials-wrapper .flex-direction-nav li a::after {
  background-color: #666;
}
#content .cd-testimonials-wrapper .flex-direction-nav li a:hover::before,
#content .cd-testimonials-wrapper .flex-direction-nav li a:hover::after {
  background-color: #e6a771;
}
#content .cd-testimonials-wrapper .cd-see-all {
  display: none;
  color: #666;
  font-size: 1.1em;
  background-color: #e5e5e5;
  border-top: 1px solid #cccccc;
}
#content .cd-testimonials-wrapper .cd-see-all:hover {
  background-color: #cccccc;
}
#content .cd-testimonials-all {
  z-index: 9999;
  margin: 0;
}
#content .cd-testimonials-all ul {
  list-style: none;
}
#content .cd-testimonials-all p {
  display: none;
}
#content .cd-testimonials-all li p:first-child {
  display: block;
  background-color: #666;
}
#content .cd-testimonials-all li p:first-child::after {
  border-top-color: #666;
}
#content .cd-testimonials-all .close-btn {
  z-index: 10000;
}
#port-slider {
  display: none;
  width: 90%;
  margin: 0 auto 20px;
  position: relative;
}
#port-slider ul {
  list-style: none;
}
#port-slider .slides {
  margin: 0;
}
#port-slider .slides p {
  margin: 10px 0 0;
  text-align: center;
}
#port-slider .slides h3 {
  margin-top: 0;
  border: none;
}
#port-slider .flex-direction-nav li:first-child {
  right: 100%;
  left: inherit;
}
#port-slider .flex-direction-nav li:last-child {
  left: 100%;
}
#port-slider .flex-direction-nav li a::before,
#port-slider .flex-direction-nav li a::after {
  background-color: #333;
}
#port-slider .flex-direction-nav li a:hover::before,
#port-slider .flex-direction-nav li a:hover::after {
  background-color: #e6a771;
}
/* -------- 9.0 Conference Scheduler -------- */
pre {
  border-radius: 3px;
  background: #f5f5f5;
  display: inline-block;
}
.csp-promo > div {
  float: right;
  background: #f5f5f5;
  border: 1px solid #666;
  padding: 0 1.5em;
  border-radius: 5px;
  margin-top: 24px;
}
.csp-promo > div h3 {
  margin-top: 1em;
}
.csp-promo > div .price {
  margin-bottom: 10px;
  font-size: 2em;
}
.float-right-wrap {
  float: right;
  width: 47.82608696%;
  padding-left: 4.34782609%;
  background: #fff;
}
h2.clear-left,
h3.clear-left,
h4.clear-left {
  clear: left;
}
.no-shadow img {
  box-shadow: none;
}
.conference-scheduler h2,
.conference-scheduler h3,
.conference-scheduler h4 {
  clear: left;
}
.conference-scheduler h4 {
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  #wpadminbar {
    position: fixed !important;
    top: 0;
  }
  .float-right-wrap {
    float: none;
    width: auto;
    padding: 0;
  }
}
#documentation img {
  max-width: 100%;
  height: auto;
}
.note-info {
  background: #e5e5e5;
  border: 1px solid #666;
  padding: 0.5em 1em;
  display: inline-block;
  border-radius: 3px;
}
.note-info:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f05a";
  margin-right: 5px;
}
.note-warning {
  background: #f5f5f5;
  border: 1px solid #666;
  padding: 0.5em 1em;
  display: inline-block;
  border-radius: 3px;
}
.note-warning:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f071";
  margin-right: 5px;
  color: #c00;
}
.flickity {
  display: block !important;
  margin: 0 40px;
}
.flickity .wp-block-image {
  width: 300px !important;
  min-height: 150px;
  max-height: 100%;
  margin: 10px !important;
  display: block !important;
}
.flickity .wp-block-image img {
  width: 100%;
  height: auto;
}
.flickity figcaption {
  display: none !important;
}
.flickity .item {
  width: 300px;
  min-height: 150px;
  max-height: 100%;
  margin: 10px;
}
.flickity .item img {
  width: 100%;
  height: auto;
}
.fancybox-bg {
  background: #fff;
}
.fancybox-content {
  box-shadow: 0 0 10px 0px #999;
}
.fancybox-container button,
.fancybox-container .button,
.fancybox-container a.button,
.fancybox-container a.fancybox-button,
.fancybox-container a.fancybox-button:visited,
.fancybox-container a.button:visited,
.fancybox-container input[type="button"],
.fancybox-container input[type="reset"],
.fancybox-container input[type="submit"] {
  background: #333;
  border-radius: 50%;
  color: #fff;
}
.fancybox-container button:hover,
.fancybox-container .button:hover,
.fancybox-container a.button:hover,
.fancybox-container a.fancybox-button:hover,
.fancybox-container a.fancybox-button:visited:hover,
.fancybox-container a.button:visited:hover,
.fancybox-container input[type="button"]:hover,
.fancybox-container input[type="reset"]:hover,
.fancybox-container input[type="submit"]:hover,
.fancybox-container button:focus,
.fancybox-container .button:focus,
.fancybox-container a.button:focus,
.fancybox-container a.fancybox-button:focus,
.fancybox-container a.fancybox-button:visited:focus,
.fancybox-container a.button:visited:focus,
.fancybox-container input[type="button"]:focus,
.fancybox-container input[type="reset"]:focus,
.fancybox-container input[type="submit"]:focus {
  color: #fff;
  background-color: #666;
}
.fancybox-container .fancybox-content .fancybox-close-small {
  padding: 0;
  width: 35px;
  height: 35px;
  top: -17px;
  right: -17px;
  color: #fff;
}
.fancybox-container .fancybox-navigation .fancybox-button {
  width: 60px;
  height: 60px;
  font-size: 60px;
  line-height: 0px;
  padding: 0;
  margin: 0;
  text-align: center;
}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_left i.fa {
  transform: translateX(-15%);
}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_right i.fa {
  transform: translateX(15%);
}
.fancybox-container .fancybox-caption {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px 30px rgba(0, 0, 0, 0.6);
  padding-top: 0;
}
.fancybox-container .fancybox-caption:before,
.fancybox-container .fancybox-caption::after {
  display: none;
}
.col3-4 {
  width: 73.91304348%;
  margin-right: 4.34782609%;
}
#content.documentation {
  float: left;
  width: 73.91304348%;
}
#navigation {
  width: 21.73913043%;
  float: right;
  text-align: right;
}
#navigation h4 {
  margin-top: 0;
}
#navigation a.h4 {
  font-size: 0.8em;
  font-weight: normal;
  color: #666;
}
#navigation a.h3 {
  border-bottom: 1px solid transparent;
}
#navigation a.h3:visited {
  color: #d87927;
}
#navigation a.h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #666;
  margin-top: 12px;
  display: inline-block;
}
#navigation.sticky {
  position: fixed;
  top: 30px;
  right: 30px;
  height: 100vh;
  overflow-y: scroll;
}
#navigation nav a {
  display: block;
  padding-right: 5px;
  border-right: 2px solid transparent;
}
#navigation nav nav {
  display: none;
}
#navigation a.active + nav,
#navigation a.h2 + nav {
  display: block;
}
#navigation a.h4.active {
  font-weight: bold;
  border-right-color: #666;
}
#navigation a.h3.active {
  color: #b86721;
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  #navigation {
    display: none;
  }
  #content.documentation {
    float: none;
    width: auto;
  }
}
#content {
  position: relative;
}
div.wpcf7-mail-sent-ok {
  border-radius: 3px;
  background: #d4edda;
  padding: 10px 15px;
}
/* -------- 9.0 WooCommerce -------- */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.buttonAlt {
  background-color: #d87927;
  color: #fff;
  border: 1px solid #b86721;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.buttonAlt:hover {
  background-color: #e4a168;
}
.api_license_key {
  display: inline-block;
  font-size: 1.2em;
  padding: 5px 10px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  font-family: monospace;
  margin-right: 10px;
}
a.button.small {
  padding: 5px 7px;
  font-weight: 400;
  font-size: 0.8em;
}
.woocommerce-account .api-product {
  margin-bottom: 36px;
}
.woocommerce-account .api-product::after {
  display: table;
  clear: both;
  content: '';
}
.woocommerce-account .api-product img.logo {
  box-shadow: none;
  max-width: 200px;
  float: left;
  background: white;
  padding-right: 24px;
}
.woocommerce-account .api-product h3 {
  clear: none;
}
.woocommerce-account .api-product .license-status {
  line-height: 1.1em;
}
.woocommerce-account .api-product .license-status span::after {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  display: inline-block;
  margin-left: 3px;
}
.woocommerce-account .api-product .license-status span.available,
.woocommerce-account .api-product .license-status span.forever {
  color: green;
}
.woocommerce-account .api-product .license-status span.available::after,
.woocommerce-account .api-product .license-status span.forever::after {
  content: '\f00c';
}
.woocommerce-account .api-product .license-status span.expired {
  color: green;
}
.woocommerce-account .api-product .license-status span.expired::after {
  content: '\f00d';
}
.woocommerce-account .api-product .license-status .expires {
  font-size: 15px;
  font-style: italic;
}
.woocommerce-account .api-product .button.renew-license::before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  display: inline-block;
  margin-right: 6px;
  content: '\f217';
}
.woocommerce-account .product-info {
  display: flex;
}
.woocommerce-account .product-info .product-download {
  min-width: 200px;
  margin-right: 24px;
}
.woocommerce-account .product-info div.activations {
  flex-grow: 1;
}
.woocommerce-account .product-info div.activations li {
  line-height: 1em;
  clear: both;
  margin-bottom: 6px;
}
.woocommerce-account .product-info div.activations .activated {
  font-size: 14px;
  font-style: italic;
  line-height: 1.4em;
}
.woocommerce-account .product-info div.activations a.button.delete {
  background: none;
  padding: 7px 10px;
  float: right;
  border: 1px solid #666;
  margin-left: 10px;
}
.woocommerce-account .product-info div.activations a.button.delete:hover {
  background: #f2f2f2;
}
.woocommerce-account .product-info div.activations a.button.delete::before {
  color: #CC0000;
  font-family: 'Font Awesome 5 Pro';
  content: '\f057';
  display: inline-block;
  margin-right: 2px;
  font-weight: 900;
}
.woocommerce-account a.button.api-download {
  display: inline-block;
  min-width: 200px;
  text-align: center;
}
.woocommerce-account a.button.api-download::before {
  font-family: FontAwesome;
  content: '\f019';
  display: inline-block;
  margin-right: 5px;
}
.woocommerce-account h4 {
  margin-top: 0;
  clear: none;
}
.woocommerce-account p.details {
  text-align: center;
  font-size: 0.8em;
  margin-top: -24px;
}
.woocommerce-account p.details a {
  color: #666;
}
.woocommerce-account p.details a:hover {
  color: #333;
}
.woocommerce-account p.details a::before {
  content: '| ';
  display: inline;
}
.woocommerce-account p.details a:first-child::before {
  display: none;
}
#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 0.4em 0 0;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: inline-block;
  margin-left: 0;
}
.woocommerce-MyAccount-navigation ul li a {
  background-color: #333;
  font-family: 'Exo', serif;
  border: 1px solid #333;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5em 1em .5em;
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
  display: inline-block;
  margin-bottom: 3px;
  width: 100%;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: #666;
}
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation ul li a:hover::before {
  opacity: 1;
}
.woocommerce-MyAccount-navigation ul li a::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.125em;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f15c";
  line-height: 1.618;
  margin-left: 0.5407911001em;
  width: 1.41575em;
  text-align: right;
  float: right;
  opacity: 0.5;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li a:visited,
.woocommerce-MyAccount-navigation ul li a:hover:visited {
  color: white;
}
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  opacity: 1;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
  content: "\f084";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--api-keys a::before {
  content: "\f084";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--api-downloads a::before {
  content: "\f56d";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
  content: "\f291";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
  content: "\f1c6";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
  content: "\f015";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::before {
  content: "\f09d";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
  content: "\f007";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  content: "\f2f5";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a::before {
  content: "\f021";
}
/* -------- 9.0 General Overrides -------- */
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
[class*="span"].alignright {
  margin-top: 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* -------- 10.0 Responsive Structure -------- */
/* Defaults to desktop - tablet landscape also shows desktop site */
/* Truncate menubar on narrow windows */
@media only screen and (min-width: 950px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 20%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 78%;
  }
}
@media only screen and (max-width: 950px) {
  ul.navbar-nav > li {
    display: none;
  }
  ul.navbar-nav > li.dropdown {
    display: block;
  }
}
/* Mobile Landscape & Tablet Portrait */
@media only screen and (max-width: 780px) {
  .sf-menu a:hover:visited {
    border-bottom: none;
  }
  ul.navbar-nav > li {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu .mobile-title {
    margin-left: 0.5em;
    padding: 0.3em 0;
    text-align: left;
  }
  .mobile-menu .mobile-title img {
    margin-right: 5px;
    margin-top: -5px;
    height: 25px;
  }
  .mobile-menu .mobile-title a,
  .mobile-menu .mobile-title a:visited {
    color: #ffffff;
  }
  .mobile-menu .mobile-menu-button {
    float: right;
    cursor: pointer;
    margin: 0.3em 0.5em 0.3em 0;
    padding: 0em 0.3em;
    border: 1px solid #32451d;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .mobile-menu .mobile-menu-button:before {
    font-family: "FontAwesome";
    content: "\f0c9";
    font-size: 16px;
    margin-right: 5px;
  }
  .mobile-menu .mobile-menu-button.open {
    border: 1px solid #32451d;
    background: rgba(255, 255, 255, 0.3);
  }
  .mobile-menu .mobile-menu-button.open:before {
    color: #32451d;
  }
  #slider .flex-direction-nav {
    display: none;
  }
  .navbar {
    display: block;
    border-bottom: 1px solid #d1d2d4;
    padding: 0;
    border-top: none;
  }
  .nav-title {
    display: none;
  }
  .mobile-menu .colourbar {
    background: linear-gradient(180deg, #ffdd17 0%, #ffdd17 49%, #d87927 50%, #d87927 100%);
  }
  .navbar > .colourbar {
    display: none;
  }
  .navbar .sf-menu {
    padding-left: 0;
    display: none;
  }
  .navbar a,
  .navbar > ul > li > a:visited,
  .navbar > ul > li > a:hover,
  .navbar > ul > li > a:hover:visited {
    color: #666;
  }
  .sf-menu > li {
    float: none;
    cursor: pointer;
    background: #ffffff;
  }
  .sf-menu > li a {
    text-align: left;
    border-bottom: 1px solid #a7a9ab;
  }
  .sf-menu > li:hover {
    background: #ffffff;
  }
  .navbar .dropdown-toggle:after {
    content: '\f0fe';
    font-family: 'FontAwesome';
    color: #d87927;
    font-size: inherit;
    float: right;
    line-height: inherit;
  }
  .navbar .active .dropdown-toggle:after {
    content: '\f146';
    color: #e4a168;
  }
  .navbar .dropdown-menu:after {
    display: none;
  }
  /* hide submenu points */
  .sf-menu ul {
    width: 100%;
    position: static;
    box-shadow: none;
    background: #ffffff;
  }
  .sf-menu > li > .dropdown-menu {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  .sf-menu li ul {
    border: none;
  }
  .sf-menu li li {
    border: none;
    background-color: #f5f5f5;
  }
  .sf-menu li li a {
    padding-left: 1.6em;
    border-bottom: 1px dotted rgba(50, 69, 29, 0.5);
  }
  .sf-menu li li li {
    background-color: #d9deca;
  }
  .sf-menu li li li a {
    padding-left: 2.4em;
  }
  .sf-menu li:hover ul {
    display: none;
  }
  .navbar .dropdown-submenu a {
    padding-right: 1.8em;
  }
  .navbar .dropdown-submenu > a:after {
    border: none;
    content: '\f0fe';
    font-family: 'FontAwesome';
    color: #959d86;
    font-size: inherit;
    float: right;
    line-height: inherit;
    position: static;
  }
  .navbar .dropdown-submenu.subactive > a:after {
    content: '\f146';
    color: #32451d;
  }
  .navbar .dropdown-submenu.subactive > .dropdown-menu li:first-child a {
    border-top: 1px dotted rgba(50, 69, 29, 0.5);
  }
  .navbar .dropdown-submenu:hover > .dropdown-menu {
    display: none;
  }
  .card.span3 {
    padding: 4%;
    margin-left: 0;
    width: 100%;
  }
  .cards {
    column-count: 2;
    column-gap: 4vw;
    margin: 0 4%;
  }
  .cards .card {
    float: none;
    break-inside: avoid;
    margin-top: 0;
    display: inline-block;
  }
  .portfolio .thumbs,
  .portfolio #port-detail {
    display: none;
  }
  .portfolio #port-slider {
    display: block;
  }
  #content .cd-testimonials-wrapper {
    padding: 20px 30px 0px;
  }
  #content .cd-testimonials-wrapper .cd-author {
    padding-bottom: 25px;
  }
  #content .cd-testimonials-wrapper .cd-author img {
    margin: 10px auto;
    display: block;
  }
  #content .cd-testimonials-wrapper .cd-author li {
    text-align: center;
  }
  .woocommerce-account .product-info {
    flex-wrap: wrap;
  }
}
/* 4.5 - Mobile Portrait */
@media only screen and (max-width: 509px) {
  #main-content {
    margin-top: 12px;
  }
  .full,
  .span4,
  .span3,
  .span2,
  .span2-3,
  .span3-4 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    clear: both;
  }
  .full.card,
  .span4.card,
  .span3.card,
  .span2.card,
  .span2-3.card,
  .span3-4.card {
    padding-left: 6%;
    padding-right: 6%;
    margin-left: 6%;
    margin-right: 6%;
    width: 88%;
  }
  .cards {
    column-count: 1;
    margin: 0;
  }
  #content .wedgeleft,
  #content .wedgeright {
    padding-left: 24px;
    padding-right: 24px;
  }
  .card {
    margin-top: 0;
    padding-top: 6%;
    padding-bottom: 6%;
  }
  #primary img {
    max-width: 100%;
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #content > h2:first-child {
    margin-top: 10px;
  }
  #content > p,
  #content > h1,
  #content > h2,
  #content > h3,
  #content > h4,
  #content > div {
    margin-left: 24px;
    margin-right: 24px;
  }
  #content > pre,
  #content > ul,
  #content > ol {
    margin-right: 48px;
    margin-left: 48px;
  }
  .woocommerce-account #primary .api-product img {
    max-width: 200px;
    padding: 0;
  }
  .woocommerce-account #primary .api-product h3 {
    margin-top: 12px;
  }
  .woocommerce-account #primary .product-info .product-download {
    width: 100%;
    text-align: center;
  }
  .woocommerce-account #primary .woocommerce-MyAccount-navigation ul {
    display: block;
  }
}
