/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/

/*
TABLE OF CONTENTS
- 00: Reset
- 01: Global
- 02: Header
- 03: Structure
- 04: Components
- 05: Footer
- 06: Forms
- 07: Tables
- 08: Bootstrap
- 09: Plugins
- 10: Behavioral (JS)
- 11: Responsive (Media Queries)
- 12: Print
*/

/* 01: Global
========================================================================================================================= */
/* Fonts
------------------------------------------------------------------------ */
/*
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/Proxima-Nova.eot');
	src: local('☺'), url('../fonts/Proxima-Nova.woff') format('woff'), url('../fonts/Proxima-Nova.ttf') format('truetype'), url('../fonts/Proxima-Nova.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/Proxima-Nova-Bold.eot');
	src: local('☺'), url('../fonts/Proxima-Nova-Bold.woff') format('woff'), url('../fonts/Proxima-Nova-Bold.ttf') format('truetype'), url('../fonts/Proxima-Nova-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal
}
*/

/* -------------------- variables -------------------- */
:root {
  /* primary colors */
  --color-red: #7A150D;
  --color-red-dark: #500B05;
  --color-red-light: #EC332E;
  --color-blue: #1A3742;
  --color-blue-light: #CAE4EA;
  --color-olive: #595D39;
  --color-olive-dark: #393F31;
  /* secondary colors */
  --color-secondary-beige: #E8E1D4;
  --color-secondary-blue: #A3CBD8;
  --color-secondary-green: #8C9B6D;
  --color-secondary-green-light: #D3E0BD;
  --color-secondary-peach: #EBC6AE;
  --color-secondary-yellow: #EDB44F;
  /* neutral colors */
  --color-light: #F7F4F3;
  --color-dark: #131314;
  /* gradients */
  --gradient-red: rgba(137, 29, 31, 1) to rgba(236, 51, 46, 1);
  /* fonts */
  --body-font: 'Lexend Deca', Helvetica, Arial, Lucida, sans-serif;
  --title-font: 'Lexend Deca', Helvetica, Arial, Lucida, sans-serif;
  --headline-font: 'sweet-sans-pro', Helvetica, Arial, Lucida, sans-serif;
}

/* Markup
------------------------------------------------------------------------ */
body {
	/*background: #fafbfd;*/
	color: #000;
	font-family: var(--body-font);
}
body.bb-custom-typo {
	font-family: var(--body-font);
}
body.page-template-template-account-registration {
	background: url(../images/page-bg-feather-vibrant.jpg) top center no-repeat;
	background-size: cover;
}

p.headline {
  font-family: var(--headline-font);
  font-weight: 500;
}

pre {
  background: var(--color-dark);
}

audio, video {
  display: block;
  max-width: 100%;
}

/* BuddyBoss custom typography */
.bb-custom-typo h1, .bb-custom-typo .h1 {
  font-size: 3em;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 300;
}
.bb-custom-typo h2, .bb-custom-typo .h2 {
  font-size: 2.25em;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 300;
}
.bb-custom-typo h3, .bb-custom-typo .h3 {
  font-size: 2em;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: capitalize;
}
.bb-custom-typo h4, .bb-custom-typo .h4 {
  font-size: 1.75em;
  font-family: var(--title-font);
  font-weight: 400;
}
.bb-custom-typo h5, .bb-custom-typo .h5 {
  font-size: 1.5em;
  font-family: var(--title-font);
  font-weight: 400;
}
.bb-custom-typo h6, .bb-custom-typo .h6 {
  font-size: 1.25em;
  font-family: var(--title-font);
  font-weight: 700;
}

/* -------------------- colors -------------------- */
.color-primary {color: var(--color-red) !important;}

.color-dark {color: var(--color-dark) !important;}
.color-light {color: var(--color-light) !important;}

.color-red {color: var(--color-red) !important;}
.color-red-dark {color: var(--color-red-dark) !important;}
.color-red-light {color: var(--color-red-light) !important;}

.color-blue {color: var(--color-blue) !important;}
.color-blue-light {color: var(--color-blue-light) !important;}

.color-olive {color: var(--color-olive) !important;}
.color-olive-dark {color: var(--color-olive-dark) !important;}

.color-secondary-beige {color: var(--color-secondary-beige) !important;}
.color-secondary-blue {color: var(--color-secondary-blue) !important;}
.color-secondary-green {color: var(--color-secondary-green) !important;}
.color-secondary-green-light {color: var(--color-secondary-green-light) !important;}
.color-secondary-peach {color: var(--color-secondary-peach) !important;}
.color-secondary-yellow {color: var(--color-secondary-yellow) !important;}

/* background colors */
.bg-dark {background: var(--color-dark) !important;}
.bg-light {background: var(--color-light) !important;}

.bg-red {background: var(--color-red) !important;}
.bg-red-dark {background: var(--color-red-dark) !important;}
.bg-red-light {background: var(--color-red-light) !important;}

.bg-blue {background: var(--color-blue) !important;}
.bg-blue-light {background: var(--color-blue-light) !important;}

.bg-olive {background: var(--color-olive) !important;}
.bg-olive-dark {background: var(--color-olive-dark) !important;}

.bg-secondary-beige {background: var(--color-secondary-beige) !important;}
.bg-secondary-blue {background: var(--color-secondary-blue) !important;}
.bg-secondary-green {background: var(--color-secondary-green) !important;}
.bg-secondary-green-light {background: var(--color-secondary-green-light) !important;}
.bg-secondary-peach {background: var(--color-secondary-peach) !important;}
.bg-secondary-yellow {background: var(--color-secondary-yellow) !important;} 


/* -------------------- buttons -------------------- */
.btn.btn-olive {
	background: var(--color-olive);
  color: #fff;
	border: 2px solid var(--color-olive);
}
.btn.btn-olive:hover {
	background: var(--color-olive-dark);
  color: #fff;
	border-color: var(--color-olive-dark);
}
.button.btn-new-topic,
.bbp-topic-reply-link {
  color: #fff !important;
  background: var(--color-red) !important;
}
.button.btn-new-topic:hover,
.bbp-topic-reply-link:hover {
  background: var(--color-red-light) !important;
}

/* -------------------- links -------------------- */
.link-subtle {
  color: #666 !important;
}
.link-subtle:hover {
  color: #000 !important;
}

/* -------------------- lists -------------------- */
.site-header .sub-menu a,
.site-header .sub-menu a:hover {
  padding: 15px 20px !important;
  line-height: 1em !important;
}

.site-header .sub-menu .sub-menu-inner {
  font-weight: 700;
}
.site-header .sub-menu .sub-menu-inner a,
.site-header .sub-menu .sub-menu-inner a:hover {
  padding: 10px 15px !important;
}

#wp-admin-bar-my-account-activity {
  display: none;
}

/* 02: Header
========================================================================================================================= */
.site-header.header-beta {
  padding: 15px 0;
}
.site-header.header-beta .header-brand sup {
  top: 21px;
  left: 180px;
  font-weight: 700;
}
.site-header.header-beta .header-nav ul li a i {
  color: var(--color-red-light);
}
.site-header.header-beta .header-nav ul li a:hover i {
  color: #fff;
}
.site-header.header-beta .header-nav ul li.nav-logout a i {
  color: var(--color-grey);
}
.site-header.header-beta .header-nav ul li.nav-logout a:hover {
  background: var(--color-light);
  color: var(--color-grey);
}


/* 03: Structure
========================================================================================================================= */
.single-attachment:not(.has-sidebar,
.elementor-template-full-width) .content-area,
.single-attachment:not(.has-sidebar,
.elementor-template-full-width) .site-content-grid,
.single-post:not(.has-sidebar,
.elementor-template-full-width) .content-area,
.single-post:not(.has-sidebar,
.elementor-template-full-width) .site-content-grid {
    max-width: inherit;
}
/* -------------------- app nav -------------------- */


/* -------------------- app body -------------------- */


/* -------------------- app header -------------------- */
.app-header.header-banner {
	  background: url(../images/well-bg-clg-feather.jpg) top center no-repeat;
	  background-size: cover;
}
.app-header.header-banner h1 {
  font-size: 3em;
  font-weight: 300;
}

.app-header.header-slim {
  background: var(--color-light);
  border-top: 1px solid #ddd;
}

/* ----- banner backgrounds ----- */
/*
.app-header.header-banner.banner-events {
    background: url(../images/banner-bg-events.jpg) top center no-repeat;
    background-size: cover;
}
.app-header.header-banner.banner-forums {
    background: url(../images/banner-bg-forums.jpg) top center no-repeat;
    background-size: cover;
}
.app-header.header-banner.banner-learning-paths {
    background: url(../images/banner-bg-learning-paths.jpg) top center no-repeat;
    background-size: cover;
}
.app-header.header-banner.banner-library {
    background: url(../images/bg-feather-clg.jpg) top center no-repeat;
    background-size: cover;
}
*/


/* -------------------- app content -------------------- */
/* active app page highlighting */
.app-dashboard .menu-dashboard a,
.app-library .menu-library a,
.app-courses .menu-courses a,
.app-events .menu-events a,
.app-community .menu-community a,
.app-forums .menu-forums a,
.app-groups .menu-groups a,
.app-members .menu-members a,
.app-learning-paths .menu-learning-paths a {
	  color: #962626 !important;
}

/* -------------------- app image -------------------- */
.app-image.image-full-200 {
  height: 200px;
  margin: 0 -30px;
  overflow: hidden;
  border-radius: 20px;
}
.app-image.image-full-200 img {
  width: 100%;
}

/* ---------- Login ---------- */
.page-template-template-login {
    background: url(../images/page-bg-login.jpg) center center fixed no-repeat !important;
    background-size: cover;
}

.login-rail {
    position: fixed;
    top: 0;
    left: 0;
    width: 450px;
    height: 100%;
    padding: 100px 50px;
    background: #fff;
}
.login-rail .login-brand {
    position: relative;
    width: 250px;
    margin: 0 0 20px;
}
.login-rail .login-brand img {
	  display: block;
}
.login-form h3 {
    text-transform: uppercase;
}


/* -------------------- forums -------------------- */
.bbpress .entry-content,
.bp_members .entry-content {
	  width: auto;
    max-width: 1400px !important;
    padding: 0 30px;
    margin: 0 auto;
}

.bbpress #bbpress-forums .bs-forums-items .bs-section-title {
  font-size: 1.5em !important;
  font-weight: 400;
}

/* bbpress list view styles */
#bbpress-forums .bbp-topics1.list-view li {
  border-top: 1px solid #ddd;
}
#bbpress-forums .bbp-topics1.list-view .bs-item-wrap {
  margin: 0;
}
#bbpress-forums .bbp-topics1.list-view .bs-item-wrap .item {
  padding: 0;
  border: none
}
#bbpress-forums .list-view .bs-item-wrap ol,
#bbpress-forums .list-view .bs-item-wrap ul {
  margin: 0 0 20px 20px;
}

#bbpress-forums .replies-content {
  padding-right: 30px;
}

#buddypress .bb-profile-grid.bb-grid {
  margin: 0;
}

.users-header #item-header-avatar:hover .link-change-overlay {
  height: 94px;
}
.users-header #item-header-avatar a.link-change-profile-image {
  top: 32px
}

/* 04: Components
========================================================================================================================= */
/* -------------------- accordions -------------------- */
.accordion.accordion-compact .accordion-toggle {
	padding: 10px 10px 10px 35px;
  margin: 0 -5px;
  border-radius: 4px;
  -webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.accordion.accordion-compact .accordion-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}
.accordion.accordion-compact .accordion-toggle .toggle-icon {
	left: 7px;
}

/* -------------------- cards -------------------- */
.card .card-title {
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
  text-transform: capitalize;
  letter-spacing: -0.025em;
}
.card .card-title a {
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
  font-size: inherit;
  font-weight: 400;
}

.card.card-resource .card-image {
    display: flex;
    min-height: 250px;
    max-height: 250px;
    align-items: flex-start;
    width: calc((1 - var(--container-widget-flex-grow)) * 100%);
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
}
.card.card-resource .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------- checklist -------------------- */
.checklist-item .label-checkmark {
  top: 25px;
}
.checklist-item .item-title {
  font-family: 'Oswald';
}

/* -------------------- checkout -------------------- */
.checkout .checkout-column.column-product {
	background-image: linear-gradient(#141924 10%, #2e3038 78%);
}


/* -------------------- items -------------------- */
.item.item-with-image .item-image.image-icon a {
  background: var(--color-red);
  color: #fff;
  border: none;
  -webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.item.item-with-image .item-image.image-icon a:hover {
  background: var(--color-red-light);
  color: #fff;
}
.item .item-title a {
  font-family: var(--title-font);
  font-weight: 700;
}

/* ---------- hero ---------- */
.hero h1 {
  font-size: 3em;
  font-weight: 300;
}


/* ---------- Meta ---------- */
.meta .meta-label.label-cat {
	color: var(--color-red);
}
.meta .meta-label.label-type {
	color: var(--color-dark);
}

/* ---------- Metrics ---------- */
.metric .metric-label {
	font-family: var( --body-font ), Sans-serif;
}
.metric .metric-value {
	font-family: var( --body-font ), Sans-serif;
  font-size: 2.5em;
  margin: 0 0 5px;
}
.metric .metric-desc {
	font-family: var( --body-font ), Sans-serif;
  font-weight: 400;
}

.metric.metric-circle {
	width: 100px;
	padding: 0;
	margin: 0 20px 20px 0;
}
.metric.metric-circle .metric-badge {
	display: block;
	width: 100px;
	margin: 0 0 15px;
}
.metric.metric-circle .metric-label {
	line-height: 1.4;
	text-align: center;
}
.metric.metric-circle .circle-score {
	display: block;
	width: 100px;
	height: 100px;
	padding: 35px 0;
	margin: 0 0 15px;
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: #000;
	color: #fff;
	border-radius: 500px;
}

/* -------------------- Paths -------------------- */
.path .path-section .section-number {
	top: 22px;
}
.path .path-section .section-title {
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: capitalize;
}
.path .path-item.item-task {
  padding: 10px 15px;
  margin: 0 0 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.path .path-item.item-task:hover {
  border-color: #000;
}
.path .path-item.item-task .item-number {
	top: 5px;
	left: -68px;
}
.path .path-item.item-task .item-header {
  padding-right: 160px;
}
.path .path-item.item-task .item-action {
  top: 10px;
  right: 10px;
}
.path .path-item.item-task .item-action .mdc-complete-button {
	padding: 8px 15px;
	font-size: .85em;
}



/* 05: Footer
========================================================================================================================= */



/* 06: Forms
========================================================================================================================= */
.label-option input {
	top: 12px;
}

.modal-footer .btn,
.modal input[type="submit"] {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}
.modal input[type="submit"] {
  background: var(--color-red);
  border: 2px solid var(--color-red);
}
.modal input[type="submit"]:hover {
	background: var(--color-red-light);
	border-color: var(--color-red-light);
}

/* -------------------- login / auth -------------------- */
/* hide site header and footer on main auth pages */
.page-template-template-account-create .site-header,
.page-template-template-account-create .elementor-location-header,
.page-template-template-account-confirmation .site-header,
.page-template-template-account-confirmation .elementor-location-header,
.page-template-template-account-login .site-header,
.page-template-template-account-login .elementor-location-header {
  display: none;
}
.page-template-template-account-create .site-footer,
.page-template-template-account-create .elementor-location-footer,
.page-template-template-account-confirmation .site-footer,
.page-template-template-account-confirmation .elementor-location-footer,
.page-template-template-account-login .site-footer,
.page-template-template-account-login .elementor-location-footer {
  display: none;
}
.page-template-template-account-create .wrap-app {
  position: static;
}
.auth-wrap {
  display: flex;
  width: 100%;
  height: 100vh;
}
.auth-image {
  display: flex;
  width: 50%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: url(../images/page-bg-feather-vibrant.jpg) center center no-repeat;
  background-size: cover;
}
.auth-content {
  display: flex;
  width: 50%;
  padding: 0 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*
.login-split {
  width: 50%;
  position: fixed;
  left: 0;
  height: 100%;
}
.login-create {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50vw;
  padding: 30px -webkit-calc((50vw - 450px) / 2);
  padding: 30px calc((50vw - 450px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
}
  */

.auth-content .label-auth {
  display: none;
}
#login input[type="submit"],
.auth-content .btn-auth,
.login.bb-login .button-primary,
.login.wp-core-ui .button-primary {
    width: 100%;
    height: auto;
    padding: 12px !important;
    font-size: .9em !important;
}

#login .gform_fields .gfield {
  margin: 0 0 20px;
}
#login .gform_footer {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.wp-login-logo {
  width: 250px;
}


/* 07: Tables
========================================================================================================================= */
/* leaderboard table */
.table-leaderboard th,
.table-leaderboard td {
	padding-left: 0;
	padding-right: 0;
}
.table-leaderboard.leaderboard-small thead {
	font-size: .85em;
}
.table-leaderboard.leaderboard-small .column-member {
	width: 220px;
}



/* 08: Bootstrap
========================================================================================================================= */
/* ----- alerts ----- */
.alert.alert-dark {
  border-left: 4px solid #962626;
}
.alert.alert-primary {
	border-left: 4px solid var(--color-red-light);
	background: var(--color-light);
}
.alert.alert-info {
	border-left: 4px solid var(--color-red);
	background: var(--color-light);
}
.alert.alert-neutral {
	border-left: 4px solid var(--color-red);
	background: var(--color-light);
}

/* ----- labels ----- */
.label.label-primary {
	background: #962626;
}

/* type labels */
.label.label-type {
	background: none;
	border-left: 2px solid;
}

.label.label-type.type-ice {
	color: #04e0fa;
}

/* ----- modal ----- */
.modal.modal-gated .modal-body {
  padding: 100px;
	background: #f7f5f3;
}
.modal.modal-gated .modal-dialog {
  margin-top: 150px;
}
.modal-header .close {
  top: 5px;
}

/* ----- nav ----- */
.nav-link {
	color: var(--bb-primary-color);
}
.nav-link:hover {
	color: var(--bs-link-hover-color-rgb);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	background: var(--bb-primary-color);
}

/* ----- wells ----- */
.well {
  background: var(--color-light);
}
.well-intro {
  padding: 0 50px 0 0;
  margin: 0;
  background: none;
  border-right: 1px solid #04e0fa;
}
.well-launch {
  padding: 0 0 0 50px;
  margin: 0;
  background: none;
}
.well-trans-ice {
  background: none;
  border: 1px solid #04e0fa;
}

.well.well-cta.cta-feather {
	background: url(../images/well-bg-feather-dark.jpg) top right no-repeat #350417;
  background-size: 100%;
}
.well.well-cta.cta-feather .well-content {
  background: none;
}

/* 09: Plugins
========================================================================================= */
 /* -------------------- AddEvent -------------------- */
.wrap .nav-t1 .addeventstc .ico {
  background: var(--color-red-light) !important;
}

 /* -------------------- BuddyBoss -------------------- */
.subnav-search.groups-search {
	display: none; /* hide groups search */
}
.component-navigation.groups-nav {
	display: none; /* hide groups index nav (because of access) */
}
/* hide specific BuddyBoss nav links */
#wp-admin-bar-my-account-settings-export {
	display: none;
}
/* hide specific Group nav links */
#activity-groups-li,
#documents-groups-li,
#photos-groups-li,
#videos-groups-li,
#albums-groups-li {
	display: none;
}
/* hide specific Profile nav links */
#media-personal-li,
#export-personal-li {
	display: none;
}
.user-wrap.menu-item-has-children #header-my-account-menu a {
	font-size: .75em;
	padding-right: 0;
	padding-left: 35px;
}
.user-wrap.menu-item-has-children #header-my-account-menu a i,
.user-wrap.menu-item-has-children #header-my-account-menu a img {
	left: 10px;
}

/* -------------------- Chosen JS -------------------- */
.chosen-container-single .chosen-single {
	height: 50px;
	padding: 14px;
	font-size: 1.1em;
	line-height: 20px;
	background: none;
	box-shadow: none !important;
	border: 1px solid #d5d5d5;
}
.chosen-container-single .chosen-single div b {
	display: none;
}

.chosen-container-multi .chosen-choices {
	padding: 13px;
	background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: none;
    border-radius: 3px;
    outline: none;
    font-family: 'Roboto';
}
.chosen-container .chosen-results li {
	padding: 10px;
}
.chosen-container .chosen-results li.highlighted {
	background: #4095ef;
}
.chosen-container .chosen-results li em {
	font-weight: 700;
}
.chosen-container-multi .chosen-choices li.search-choice {
	padding: 7px 25px 7px 7px;
	background: #eee;
    font-family: 'Roboto';
    font-size: .85em;
    box-shadow: none;
    border: none;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	top: 8px;
	right: 7px;
}

/* -------------------- Elementor -------------------- */
.elementor-location-header,
.elementor-location-header .elementor-container,
.elementor-location-header .elementor-column,
.elementor-location-header .elementor-widget-wrap {
  z-index: 100 !important;
}

/* -------------------- Gravity Forms -------------------- */
/* site currently uses GF Orbital theme */

.gform_button.button {
  background: var(--color-red) !important;
}
.gform_button.button:hover {
  background: var(--color-red-light) !important;
}
.gfield input[type="text"],
.gfield input[type="email"],
.gfield input[type="phone"],
.gfield input[type="number"],
.gfield input[type="password"],
.gfield input[type="search"],
.gfield input[type="url"],
.gfield input[type="tel"] {
  height: auto !important;
  padding: 15px !important;
  line-height: 1 !important;
}
.gfield input::placeholder {
  color: #d9d9d9 !important;
}
#gform_submit_button_2 {
  width: 100% !important;
  padding: 15px 0;
  font-weight: 700;
}

.gfield_checkbox input[type=checkbox]+label:before {
  background: none;
}
.gform_wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio]+label {
  margin-left: -21px !important;
  padding-left: 30px !important;
}


/* agree field styling */
.agree-field .gfield_radio {
  position: relative;
  display: block !important;
}
.agree-field .gfield_radio .gchoice {
  position: relative;
  width: 15%;
  padding: 0;
  margin: 0 0 10px;
}
.gform_wrapper .agree-field .ginput_container_radio .gfield_radio .gchoice input[type=radio]+label {
  font-size: .75em;
}
.gform_wrapper .agree-field .ginput_container_radio .gfield_radio .gchoice input[type=radio]+label::before {
  top: 11px
}
.gform_wrapper .agree-field .ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked+label::after {
  top: 11px;
}

/* rating field styling */
.rating-field .gfield_radio {
	  position: relative;
    display: block !important;
}
.rating-field .gfield_radio .gchoice {
	  position: relative;
	  display: inline-block !important;
	  width: 30px;
	  padding: 0;
    margin-right: 10px;
    cursor: pointer;
}
.rating-field .gfield_radio .gchoice input,
.rating-field .gfield_radio .gchoice label {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 30px;
	  padding: 10px;
	  opacity: 0;
	  cursor: pointer;
}
.gform_wrapper .rating-field .gfield_radio .gchoice input[type=radio]+label {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.rating-field .gfield_radio .gchoice:before {
    content: '★ ';
    font-size: 2em;
    color: #ccc;
}
.rating-field .gfield_radio .gchoice:hover,
.rating-field .gfield_radio .gchoice:hover:before {
    color: var(--color-red-light);
}
.rating-field .gfield_radio.rating-1 .gchoice:nth-child(1):before {
	color: var(--color-red-light);
}
.rating-field .gfield_radio.rating-2 .gchoice:nth-child(1):before,
.rating-field .gfield_radio.rating-2 .gchoice:nth-child(2):before {
	color: var(--color-red-light);
}
.rating-field .gfield_radio.rating-3 .gchoice:nth-child(1):before,
.rating-field .gfield_radio.rating-3 .gchoice:nth-child(2):before,
.rating-field .gfield_radio.rating-3 .gchoice:nth-child(3):before {
	color: var(--color-red-light);
}
.rating-field .gfield_radio.rating-4 .gchoice:nth-child(1):before,
.rating-field .gfield_radio.rating-4 .gchoice:nth-child(2):before,
.rating-field .gfield_radio.rating-4 .gchoice:nth-child(3):before,
.rating-field .gfield_radio.rating-4 .gchoice:nth-child(4):before {
	color: var(--color-red-light);
}
.rating-field .gfield_radio.rating-5 .gchoice:nth-child(1):before,
.rating-field .gfield_radio.rating-5 .gchoice:nth-child(2):before,
.rating-field .gfield_radio.rating-5 .gchoice:nth-child(3):before,
.rating-field .gfield_radio.rating-5 .gchoice:nth-child(4):before,
.rating-field .gfield_radio.rating-5 .gchoice:nth-child(5):before {
	color: var(--color-red-light);
}

/* score field styling */
/* score (1-5) button styling */
.score-field .gfield_radio {
	position: relative;
  display: block !important;
}
.score-field .gfield_radio .gchoice {
	position: relative;
	display: inline-block !important;
	width: 36px;
	height: 36px;
	padding: 0;
  margin: 0 5px 5px 0;
  text-align: center;
  cursor: pointer;
  border: 1px solid;
  border-radius: 100px;
}
.score-field .gfield_radio .gchoice input,
.score-field .gfield_radio .gchoice label {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	padding: 10px;
	opacity: 0;
	cursor: pointer;
}
.gform_wrapper .score-field .gfield_radio .gchoice input[type=radio]+label {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.score-field .gfield_radio .gchoice:before {
	display: inline-block;
  content: '1';
  font-size: .95em;
  font-weight: 700;
  color: #666;
  margin: 9px 0 0;
}
.score-field .gfield_radio .gchoice:hover,
.score-field .gfield_radio .gchoice:hover:before {
    color: var(--color-red-light);
}
.score-field .gfield_radio .gchoice:nth-child(1):before {
	content: '1';
}
.score-field .gfield_radio .gchoice:nth-child(2):before {
	content: '2';
}
.score-field .gfield_radio .gchoice:nth-child(3):before {
	content: '3';
}
.score-field .gfield_radio .gchoice:nth-child(4):before {
	content: '4';
}
.score-field .gfield_radio .gchoice:nth-child(5):before {
	content: '5';
}
.score-field .gfield_radio .gchoice:nth-child(6):before {
	content: '6';
}
.score-field .gfield_radio .gchoice:nth-child(7):before {
	content: '7';
}
.score-field .gfield_radio .gchoice:nth-child(8):before {
	content: '8';
}
.score-field .gfield_radio .gchoice:nth-child(9):before {
	content: '9';
}
.score-field .gfield_radio .gchoice:nth-child(10):before {
	content: '10';
}
.score-field .gfield_radio .gchoice.active {
	background: var(--color-red-light);
	color: #fff;
	border-color: var(--color-red-light);
}
.score-field .gfield_radio .gchoice.active:before {
	color: #fff;
}

/* -------------------- HubSpot Form -------------------- */
.auth-container [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0;
}
.auth-container [data-hsfc-id=Renderer] .hsfc-RichText p {
  color: rgba(255, 255, 255, .75);
}

/* -------------------- Magnific Popup (image galleries) -------------------- */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

/* zoom effect */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}  

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


/* -------------------- Yoast -------------------- */
.bb-yoast-breadcrumbs {
	display: none;
}

/* 10: Behavioral (JS)
========================================================================================================== */



/* 11: Responsive (Media Queries)
========================================================================================================== */
/* Retina-specific styles */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (   -moz-min-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {

}

/* LARGE DESKTOP */
@media (max-width: 1399px) {

}

@media (max-width: 1199px) {

  .site-header.header-beta .header-brand {
		padding: 0;
	}
  .site-header.header-beta .header-brand sup {
		top: 16px;
		left: 140px;
	}
  
  .js-countdown-timer {
    display: none; /* hide timer on mobile (NaN issue) */
  }
  .well-intro {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #04e0fa;
  }
  .well-launch {
    padding: 0;
    margin: 0;
  }

}

/* SMALL DESKTOP */
@media (min-width: 992px) {

}

/* TABLET */
@media (max-width: 1024px) {

  #bbpress-forums .replies-content {
    padding: 10px;
  }
	
}

@media (max-width: 992px) {

  .auth-wrap {
    display: block;
  }
  .auth-image {
    display: block;
    width: 100%;
    height: 100px;
  }
  .auth-content {
    display: block;
    width: 100%;
    padding: 50px 100px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .title-big {font-size: 2em;}
  .title-huge {font-size: 3em;}
  .title-massive {font-size: 5em;}

  .auth-content {
    padding: 50px;
  }

}

/* SUPER MOBILE */
@media (max-width: 600px) {

	.login-rail {
    position: relative;
    width: 100%;
  }

  .page-template-template-login #page .footer-bottom {
    display: block;
    color: #fff;
  }

  .path .path-item.item-task .accordion.accordion-compact {
    margin: 0 0 10px;
  }
  .path .path-item.item-task .item-action {
    position: static;
    padding: 10px 0 5px;
    border-top: 1px solid #eee;
  }

  .modal.modal-gated .modal-body {
    padding: 50px;
  }

  /* gravity forms */
  .agree-field .gfield_radio .gchoice {
    display: block !important;
    width: 100%;
  }
  .gform_wrapper .agree-field .ginput_container_radio .gfield_radio .gchoice input[type=radio]+label {
    padding-top: 3px;
    margin-left: -25px !important;
    font-size: .9em;
  }

}


/* 12: Print
========================================================================================================== */
/* PRINT styles */
@media print {

	

}

