/*

Theme Name: National MBP

*/

/* Video */

body .video-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

body .video-cover video {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

body .video-cover::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #00477f;
	opacity: .6;
	z-index: 4;
}

/*
SETUP
------------------------------------------------------------- */

img, video {
	max-width: 100%;
	height: auto;
}

*, *::after {
	box-sizing: border-box;
}

a:hover,
a:focus {
	outline: none;
	outline-offset: -2px;
	text-decoration: none;
}

*:focus {
	outline: none;
}

div {
	margin-bottom: 0;
}

body {
	font-family: Raleway,sans-serif;
	font-size: 14px;
	line-height: 25px;
	color: #666;
}

@media (min-width: 1400px) {
	.container {
		width: 1300px;
	}
}

.flex {
	-webkit-display: flex;
	display: flex;
}

.flex-text {
	padding: 60px 60px 60px 0;
}

/*
HEADER
------------------------------------------------------------- */

#cv_headerClear {
	height: 117px;
}

/* Main Header
------------------ */

#cv_header {
	background: #fff;
	position: fixed;
	width: 100%;
	z-index: 99998;
	top: 0;
	margin-left: 0;
	margin-right: 0;
	border-bottom: solid 1px #e6e6e6;
}

.admin-bar #cv_header {
	top: 32px;
}

#cv_header *,
#cv_headerClear,
#cv_headerRight {
	transition: all .4s ease !important;
}

#cv_header .logo {
	float: left;
	width: 200px;
	padding: 10px 0;
}

/* FIXED
--------------------------------------------- */

.header-fixed #cv_header .logo {
    width: 100px;
}

/* RIGHT ITEMS
--------------------------------------------- */

#cv_headerRight {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

#cv_headerRight div {
	display: inline-block;
	font-size: 18px;
	padding-left: 15px;
	padding-right: 15px;
	color: #333;
}

#cv_headerRight div i {
	width: auto;
	text-align: center;
	margin-right: 10px;
}

/* Phone */

#cv_headerRight .menu-phone {
	color: #00477f;
	font-weight: 600;
	font-family: Montserrat, sans-serif;
}

#cv_headerRight .menu-phone i {
	position: relative;
	top: 1px;
}

/* Account */

#cv_headerRight div a {
	padding: 5px 0;
	color: #333;
	position: relative;
}

#cv_headerRight div a::after {
	content: '';
	width: 20%;
	position: absolute;
	height: 2px;
	left: 0;
	bottom: 0;
	opacity: 0;
	background: #00477f;
	transition: all .4s ease;
}

#cv_headerRight div a:hover::after {
	width: 80%;
	opacity: 1;
}

/* Burger Menu */

#cv_headerRight .hamburger {
	line-height: 20px;
	padding: 0;
}

#cv_headerRight .hamburger:focus {
	outline: none !important;
}

#cv_headerRight .hamburger-box {
	width: 30px;
	height: 20px;
	top: 6px;
}

#cv_headerRight .hamburger-inner,
#cv_headerRight .hamburger-inner::before,
#cv_headerRight .hamburger-inner::after {
	width: 20px;
	height: 2px;
}

#cv_headerRight .hamburger-inner::before {
	top: -5px;
	transition-delay: none !important;
}

#cv_headerRight .hamburger-inner::after {
	bottom: -5px;
	transition-delay: none !important;
}

#cv_headerRight .is-active .hamburger-inner::before {
	top: 0;
}

#cv_headerRight .is-active .hamburger-inner::after {
	bottom: 0;
}

/* SIDEBAR MENU
--------------------------------------------- */

#cv_sidebarMenu {
	position: fixed;
	z-index: 99999;
	top: 0;
	width: 300px;
	height: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	transition: all .6s ease;
	background: #23282d url(imgs/menu-icon.png) no-repeat bottom right;
	background-size: auto 125px;
}

.admin-bar #cv_sidebarMenu {
	top: 32px;
	height: calc(100% - 32px);
}

.sidebar-open #cv_sidebarMenu {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

#cv_sidebarMenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#cv_sidebarMenu li {
	display: block;
	clear: both;
}

#cv_sidebarMenu a {
	position: relative;
	display: block;
	padding: 6px 14px;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	line-height: 60px;
	transition: all .6s ease;
	letter-spacing: 1.2px;
}

#cv_sidebarMenu li:not(:last-of-type) {
	border-bottom: solid 1px rgba(255,255,255,.3);
}

#cv_sidebarMenu a::before {
    content: '';
	font-size: 28px;
	display: block;
	width: 30px;
	margin-right: 20px;
	float: left;
	line-height: 60px;
	text-align: center;
	color: #555;
	font-family: 'themify';
	transition: all .4s ease;
}

#cv_sidebarMenu .dashboard a::before {
	content: '\e6aa';
}

#cv_sidebarMenu .files a::before {
	content: '\e6a3';
}

#cv_sidebarMenu .star a::before {
	content: '\e60a';
}

#cv_sidebarMenu .check a::before {
	content: '\e64c';
}

#cv_sidebarMenu .upload a::before {
	content: '\e66b';
}

#cv_sidebarMenu .download a::before {
	content: '\e6a7';
}

#cv_sidebarMenu .user a::before {
	content: '\e602';
}

#cv_sidebarMenu .news a::before {
	content: '\f1ea';
	font-family: FontAwesome;
}

/* Current */

.page-id-139 #menu-item-37 a::before,
.single-member-benefit #menu-item-53 a::before,
.single-sfwd-courses #menu-item-110 a::before,
.single-sfwd-lessons #menu-item-110 a::before,
.single-sfwd-quiz #menu-item-110 a::before,
#cv_sidebarMenu .current-menu-item a::before {
	color: #00477f !important;
}

#cv_sidebarMenu a:hover::before,
#cv_sidebarMenu a:focus::before {
	color: #fff;
}

.page-id-139 #menu-item-37 a,
.single-member-benefit #menu-item-53 a,
.single-sfwd-courses #menu-item-110 a,
.single-sfwd-lessons #menu-item-110 a,
.single-sfwd-quiz #menu-item-110 a,
#cv_sidebarMenu .current-menu-item a,
#cv_sidebarMenu a:hover,
#cv_sidebarMenu a:focus {
	background-color: #2a2f35;
}

/* Sidebar Active
------------------ */

body.sidebar-open {
	overflow: hidden;
}

#cv_mainContent::before {
	position: relative;
	transition: all .6s ease;
	left: 0;
}

.sidebar-open #cv_mainContent::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: rgba(255,255,255,.6);
	z-index: 100;
}

/*
FOOTER
------------------------------------------------------------- */

#cv_footer {
	background: #00477f;
	color: #fff;
}

#cv_footerCopyright {
	background: #f6f6f6;
	color: #666;
	font-size: 15px;
	line-height: 20px;
	padding: 20px 0;
	text-align: center;
	margin-bottom: -4px;
}

.page-id-139 #cv_footerCopyright {
	display: none;
}

.page-id-139 #cv_mainContent {
	margin-bottom: 0;
}

/*
PAGE SETUP
------------------------------------------------------------- */

/* Typography
------------------ */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	letter-spacing: .5px;
	color: #333;
}

.txt-center {
	text-align: center;
}

.txt-left {
	text-align: left;
}

.txt-right {
	text-align: right;
}

.inner-title {
	font-size: 19px;
	line-height: 27px;
	display: inline-block;
	margin: 0 auto 20px;
	color: #333;
}

strong {
	color: #333;
}

/* Banner
------------------ */

.banner {
	position: relative;
	display: block;
	height: 300px;
	background-size: cover;
	background-position: center center;
	overflow: hidden
}

.banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
}

.banner .inner {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner .container {
	position: relative;
	z-index: 100;
	height: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.banner h1 {
	color: #fff;
	font-weight: 600;
}

.banner h3 {
	margin-top: 10px;
	color: #fff;
}

.banner .title,
.banner .subtitle {
	width: 800px;
	max-width: 100%;
}

.banner .subtitle {
	font-size: 19px;
	line-height: 29px;
	color: #fff;
	margin-top: 10px;
	font-family: Raleway, sans-serif;
}

/* Not Logged In */

.banner.notloggedin-banner {
	min-height: 100vh;
}

.banner.notloggedin-banner::before,
.banner.notloggedin-banner::after {
	display: none;
}

.notloggedin-banner .banner {
    height: 270px;
}

.notloggedin-banner .banner .inner {
    position: relative;
}

.notloggedin-banner .banner .inner .title {
    max-width: 100%;
    text-align: center;
    width: auto;
}

.banner.notloggedin-banner h1 {
	color: #333;
}

.banner.notloggedin-banner img {
	display: block;
	width: 300px;
	margin: 0 auto 30px;
}

.banner.notloggedin-banner .inner {
	position: absolute;
	display: block;
	height: auto;
	width: 500px;
	left: 250px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

.banner.notloggedin-banner .inner .content, .login-box {
	background: #eee;
	padding: 30px;
}

.banner.notloggedin-banner .inner p {
	color: #333;
}

.banner.notloggedin-banner .inner hr {
	margin: 10px 0;
}

.banner.notloggedin-banner .inner .first input[type="text"],
.banner.notloggedin-banner .inner .first input[type="password"], .login-box input[type="text"], .login-box input[type="password"] {
	width: 100%;
	margin: 7.5px 0 15px 0;
	padding: 6px;
}

.banner.notloggedin-banner .inner .first input[type="submit"], .login-box input[type="submit"] {
	margin-top: 15px;
}

/* Items */

.login-box .items {
	position: relative;
	overflow: hidden;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.login-box .items .item {
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	left: 0;
}

.login-box .items .second {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
}

.login-box .gform_wrapper ul li.gfield {
	margin-top: 8px;
}

.login-box .items .second .field_sublabel_below label {
	display: none;
}

.login-box .items .second .gform_footer {
	padding-top: 0;
	margin-top: 16px;
}

.login-box .items .second textarea {
	margin-top: 8px;
}

.login-box .items.login-help .item {
	left: -100%;
}

.login-box .items.login-help .item.second {
	left: 0;
}

/* Content
------------------ */

#cv_mainContent {
	margin-top: 40px;
	margin-bottom: 40px;
}

/*
BUTTONS
------------------------------------------------------------- */

.cv_btn {
	position: relative;
	display: inline-block;
	background: #00477f;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: .8px;
	border: none 2px #00477f;
	color: #fff;
	padding: 12px 24px;
	min-width: 150px;
	text-align: center;
	font-size: 14px;
	transition: all .6s ease;
}

.cv_btn:hover,
.cv_btn:focus {
	color: #fff;
	background: #333;
	outline: none;
}

#cv_mainContent p a:not(.cv_btn) {
	position: relative;
	color: #00477f;
}

#cv_mainContent p a:not(.cv_btn)::after {
	content: '';
	width: 20%;
	position: absolute;
	height: 2px;
	left: 0;
	bottom: -2px;
	opacity: 0;
	background: #00477f;
	transition: all .4s ease;
}

#cv_mainContent p a:not(.cv_btn):hover::after {
	width: 80%;
	opacity: 1;
}

/*
LOGIN
------------------------------------------------------------- */

#cv_mainContent.notloggedin {
	margin: 0;
	padding: 40px 0;
	background: #e6e6e6;
}

#cv_mainContent.notloggedin .inner {
	padding: 20px 12px 20px 28px;
	background: #fff;
	box-shadow: 0 0 10px -2px rgba(0,0,0,.3);
	height: 100%;
}

#cv_login p:not(.login-remember) input {
	width: 100%;
	padding: 8px 6px;
}

/*
FORMS
------------------------------------------------------------- */

input[type="submit"],
input[type="text"],
input[type="tel"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	font-family: Raleway,sans-serif;
}

form input:not([type="submit"]),
form textarea,
form select {
	background-color: #ffffff;
	border-color: #e1e1e1;
	border-width: 2px;
	border-style: solid;
	transform: translateZ(0);
	color: #666;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 21px;
	border-radius: 0;
}

form select {
	-webkit-appearance: none;
	appearance: none;
	padding: 5px 4px !important;
	line-height: 25px !important;
}

form input:not([type="submit"]):focus,
form textarea:focus,
form select:focus {
	border-color: #00477f;
	outline: none;
}

form input[type="submit"] {
	position: relative;
	display: inline-block;
	background: #00477f;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: .8px;
	border: solid 2px #00477f;
	color: #fff;
	padding: 12px 24px;
	min-width: 150px;
	text-align: center;
	font-size: 14px;
	transition: all .6s ease;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
	outline: none;
	color: #fff;
	background: #333;
}

form .ginput_container_password .ginput_right {
	padding-left: 8px;
}

/* Image Boxes
------------------ */

.image-boxes .large {
	align-items: center;
    background: url(/wp-content/uploads/login-large.jpg) center center;
	background-size: cover;
	display: flex;
    height: 460px;
	justify-content: center;
    margin-bottom: 14px;
    position: relative;
}

.image-boxes .large::before, .image-boxes .left .small::before, .image-boxes .middle .small::before, .image-boxes .right .small::before {
    background: rgba(0,0,0,0.2);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.image-boxes .small {
    height: 226px;
}

.image-boxes .left .small {
    background: url(/wp-content/uploads/login-audit.jpg) center center;
}

.image-boxes .middle .small {
    background: url(/wp-content/uploads/login-training.jpg) center center;
}

.image-boxes .right .small {
    background: url(/wp-content/uploads/login-benefits.jpg) center center;
}

.image-boxes .left .small, .image-boxes .middle .small, .image-boxes .right .small {
	align-items: center;
	background-size: cover;
	display: flex;
	justify-content: center;
    position: relative;
}

.image-boxes .left {
    padding-right: 7px;
}

.image-boxes .middle {
    padding: 0 7px;
}

.image-boxes .right {
    padding-left: 7px;
}

.image-boxes h2, .image-boxes h3 {
	color: #fff;
    z-index: 1;
}

/*
DASHBOARD
------------------------------------------------------------- */

/* Notice Box
------------------ */

.notice-box {
	display: table;
	width: 100%;
	background: #eee;
	border: #ccc;
	padding: 50px 40px;
	margin-bottom: 50px;
}

.notice-box::before {
	content: 'Message Board';
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	letter-spacing: .5px;
	color: #333;
	font-size: 18px;
	margin-bottom: 10px;
}

.notice-box p {
	display: none !important;
}

.notice-box i {
	display: table-cell;
	vertical-align: middle;
	width: 50px;
	text-align: left;
	font-size: 32px;
	color: #00477f;
	padding-left: 1px;
}

.notice-box span {
	display: table-cell;
	vertical-align: middle;
	color: #333;
	font-size: 16px;
}

.slick-prev, .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	background: rgba(0, 71, 127, .6);
	border-radius: 50%;
	transition: all .6s ease;
}

.slick-prev:hover, .slick-next:hover {
	background: rgba(0, 71, 127, .9);
}

.slick-prev::before, .slick-next::before {
	font-family: 'themify';
	font-size: 12px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

.slick-prev::before {
	content: '\e64a';
}

.slick-next {
	right: -25px;
}

.slick-next::before {
	content: '\e649';
}

/* Dashboard Links
------------------ */

.cv_dashboard-link {
	position: relative;
	background: #fff;
	display: block;
	color: #333;
	text-align: center;
}

.cv_dashboard-link .image {
	position: relative;
	overflow: hidden;
}

.cv_dashboard-link .image img {
	transition: all .6s ease;
}

.cv_dashboard-link .icon {
	background: rgba(44, 44, 44, .4);
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all .4s ease;
}

.cv_dashboard-link .icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 44px;
	transition: all .4s ease;
}

/* Hover */

.cv_dashboard-link:hover img {
	transform: scale(1.2);
}

.cv_dashboard-link:hover .icon {
	opacity: 1;
}

.cv_dashboard-link:hover .icon i {
	transform: translate(-50%, -50%) scale(1);
}

/* Text */

.cv_dashboard-link h4 {
	display: block;
	position: relative;
	margin: 0;
	background: #eee;
	text-align: center;
	padding: 20px 6px;
	text-transform: uppercase;
	border-bottom: solid 2px #00477f;
}

.cv_dashboard-link p {
	display: none;
}

/* Latest News
------------------ */

#dashboardLatestNews {
	margin-top: 50px;
}

#dashboardLatestNews .item {
	display: table;
	width: 100%;
}

#dashboardLatestNews i {
	display: table-cell;
	vertical-align: middle;
	width: 50px;
	text-align: left;
	font-size: 32px;
	color: #00477f;
}

#dashboardLatestNews span {
	display: table-cell;
	vertical-align: middle;
}

#dashboardLatestNews h4 {
	margin-top: 0;
}

#dashboardLatestNews a {
	padding: 8px 16px;
	min-width: 0;
}

/*
AUDIT INFORMATION
------------------------------------------------------------- */

.page-id-139 #cv_mainContentInner {
	padding: 30px 14px 30px 30px;
	background: #fff;
	box-shadow: 0 0 10px -2px rgba(0,0,0,.3);
}

.validation_error {
	background: #790000;
	color: #fff !important;
	font-size: 110% !important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
	padding-top: 0;
	padding-left: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Icons
------------------ */

#auditIcons {
	z-index: 1000;
	bottom: 0;
	min-width: 1270px;
	max-width: 100%;
	margin-left: -30px;
	margin-bottom: 20px;
}

#auditIcons::after {
	content: '';
	display: table;
	clear: both;
}

#auditIcons .inner {
	background: #fff;
	border: solid 1px transparent;
	float: right;
	width: auto;
}

.audit-icons {
	text-align: right;
}

.audit-icons .item {
	position: relative;
	padding: 0 7.5px;
	line-height: 25px;
	display: inline-block;
	cursor: pointer;
}

.audit-icons a::after {
	display: none;
}

.audit-icons .item:hover i {
	opacity: .7;
}

.audit-icons .item:not(:last-child) {
	border-right: solid 1px rgba(0,0,0,.05);
}

.audit-icons i {
	color: #00477f;
	font-size: 24px;
	padding: 0 5px;
	line-height: 25px;
	position: relative;
	top: 2px;
}

.audit-icons .item span {
	position: absolute;
	background: #04477f;
	color: #fff;
	padding: 3px 6px;
	font-size: 13px;
	line-height: 15px;
	top: -40px;
	visibility: hidden;
	opacity: 0;
	left: 50%;
	width: 120px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.audit-icons .item span::after {
	content: '';
	position: absolute;
	height: 0;
	width: 0;
	border-left: solid 6px transparent;
	border-right: solid 6px transparent;
	border-top: solid 6px #04477f;
	bottom: -6px;
	left: calc(50% - 6px);
}

.audit-icons .item:hover span {
	top: -35px;
	opacity: 1;
	visibility: visible;
}

/* Form
------------------ */

.gfield {
	position: relative;
}

.gform_page_footer input[type="button"] {
	padding: 4px 8px;
	transition: all .4s ease;
}

.gform_page_footer input[type="button"]:hover {
	color: #00477f;
	border-color: #00477f;
}

.page-id-139 {
	background-color: #e6e6e6;
}

.page-id-139 .gfield_radio {
	position: relative;
	margin-left: 30px !important;
}

.page-id-139 li.gfield.no-padd {
	margin-left: 0 !important;
}

.page-id-139 .gfield.gfield_error {
	margin-left: 0 !important;
}

.page-id-139 .gfield.gfield_error i {
	top: 21px;
	left: 4px;
	background: #00477f;
	color: #fff;
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	font-size: 12px;
	text-align: center;
	line-height: 16px;
}

.page-id-139 .gfield.gfield_error i::before {
	content: '\e69c';
}

.page-id-139 .gfield.gfield_error .text {
	top: 18px;
	margin-left: 4px;
	text-transform: none !important;
}

/* Intro */

.form-intro {
	padding: 12px !important;
	background: #f4f4f4;
	border: solid 1px #eee;
	margin: 16px 0 30px !important;
	width: calc(100% - 16px);
}

/* Radio Btns */

.page-id-139 .gfield_label {
	padding-left: 24px;
}

.cv_no-padding-left .gfield_label {
	padding-left: 0;
}

.page-id-139 .no-padd .gfield_label {
	padding-left: 0;
}

#gform_page_6_1 .gfield_label {
	padding-left: 0;
}

#gform_page_6_1 .gfield:not(.gfield_html) {
	margin-left: 0 !important;
}

.page-id-139 input[type=radio] {
	margin-top: 0 !important;
	cursor: pointer !important;
}

.page-id-139 .gfield_radio li {
	float: left;
	clear: left;
}

/* No Text */

.page-id-139 .gfield_radio li:nth-child(2) input[type="text"] {
	margin-left: 32px;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease;
	width: 0px !important;
}

.page-id-139 .gfield_radio li:nth-child(2)::before {
	content: 'No';
	position: absolute;
	top: 16px;
	left: 17px;
	padding: 0;
	width: auto;
	line-height: 1.5;
	font-size: .875em;
	vertical-align: middle;
	max-width: 85%;
	white-space: normal;
	font-weight: 700;
}

.page-id-139 .gfield_radio li:nth-child(2) input[type="radio"]:checked ~ input[type="text"] {
	opacity: 1;
	visibility: visible;
	width: 400px !important;
}

/* Help */

.gfield_description i {
	position: absolute;
	font-size: 16px;
	top: 3.5px;
	color: #00477f;
	cursor: help;
}

.gfield_description .text {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 24px;
	background: #777;
	color: #fff;
	padding: 6px;
	width: 400px;
	z-index: 1;
}

.gfield_description .text::before {
	content: '';
	position: absolute;
	top: 8;
	left: -8px;
	border-right: solid 8px #777;
	border-top: solid 6px transparent;
	border-bottom: solid 6px transparent;
	z-index: 0;
}

.gfield_description i:hover ~ .text {
	visibility: visible;
	opacity: 1;
}

/* Submit */

.page-id-139 .gform_page_footer input[type="submit"] {
	padding: 0 12px;
	height: 37px;
	line-height: 37px;
	min-width: 0;
}

.page-id-139 .gform_page_footer input[type="submit"]:hover,
.page-id-139 .gform_page_footer input[type="submit"]:focus {
	background: transparent;
	color: #00477f;
}

/* Continue Later */

.page-id-139 .gform_page_footer {
	width: calc(100% - 16px);
	text-align: right;
}

.gform_footer .gform_save_link {
	padding: 0 12px;
	line-height: 33px;
	margin-left: 0 !important;
	margin-right: 16px;
	border: solid 2px #e1e1e1;
	color: #666;
	width: 150px;
}

.gform_page_footer .gform_previous_button {
	width: 100px !important;
}

.gform_wrapper .form_saved_message {
	background: transparent;
	border: none;
}

.gform_wrapper .form_saved_message span {
	padding: 0;
}

.gform_wrapper .form_saved_message input[type="text"] {
	width: 300px;
	padding: 15px 6px !important;
	margin-bottom: 0 !important;
	top: -1px;
	position: relative;
}

.gform_wrapper .form_saved_message input[type="submit"] {
	display: inline-block !important;
	height: 34px;
	line-height: 32px;
	padding: 0;
	top: 0px;
	text-align: center;
	margin-top: 0 !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	line-height: 2.25;
}

/* Great Success  */

.form_saved_message_sent::after {
	content: 'Didn\'t receive an email? Ensure you\'ve checked your junk folder.';
	display: block;
	margin-bottom: 16px;
}

/*
MEMBER BENEFITS (OVERVIEW)
------------------------------------------------------------- */

#cv_memberBenefitsCategories .notice-box {
	padding: 30px;
	margin-bottom: 25px;
}

#cv_memberBenefitsCategories .notice-box::before {
	display: none;
}

#cv_memberBenefitsCategories .cv_dashboard-link {
	margin: 15px 0;
}

#cv_memberBenefitsCategories .cv_dashboard-link i {
	display: none;
}

#cv_memberBenefitsCategories .cv_dashboard-link h5 {
	background-color: #00477f;
	color: #fff;
	border-bottom: none;
}

/* Featured Image
------------------ */

#cv_memberBenefits .featured-image {
	position: relative;
	display: block;
	width: 100%;
	border: solid 1px #e6e6e6;
	text-align: center;
}

#cv_memberBenefits .featured-image,
#cv_memberBenefits .featured-image::after,
#cv_memberBenefits .featured-image::before {
	transition: all .6s ease;
}

#cv_memberBenefits .featured-image::before {
	content: '\f061';
	font-family: FontAwesome;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	border: solid 1px #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	border-radius: 50%;
	opacity: 0;
}

#cv_memberBenefits .featured-image::after {
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 71, 127, .6);
	opacity: 0;
}

#cv_memberBenefits .featured-image:hover::before,
#cv_memberBenefits .featured-image:hover::after {
	opacity: 1;
}

#cv_memberBenefits .featured-image:hover::before {
	transition-delay: .2s;
}

#cv_memberBenefits .featured-image::before:hover {
	opacity: 0;
}

/* Content
------------------ */

#cv_memberBenefits .content {
	display: block;
	border: solid 1px #e6e6e6;
	border-top: none;
	color: #333;
	margin-bottom: 30px;
}

#cv_memberBenefits .content h4 {
	margin: 0;
}

#cv_memberBenefits .content h4 a {
	color: #333;
	padding: 15px 15px 10px;
	margin: 0;
	display: block;
	transition: all .6s ease;
}

#cv_memberBenefits .post-categories {
	list-style: none;
	padding: 0 15px 15px;
	margin: 0;
}

#cv_memberBenefits .post-categories a {
	color: #333;
	pointer-events: none;
}

#cv_memberBenefits .content h4 a:hover {
	opacity: .7;
}

/*
MEMBER BENEFITS (INNER)
------------------------------------------------------------- */

.single-member-benefit .banner {
	background-image: url('/wp-content/uploads/2017/09/banner_member-benefits.jpg') !important;
}

#cv_memberBenefitInner .icon {
	display: inline-block;
	background: #eee;
	color: #333;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
}

#cv_memberBenefitInner .right a {
	display: inline-block;
	color: #00477f;
	text-decoration: none !important;
}

#cv_memberBenefitInner .right a::after {
	content: '';
	display: block;
	margin-top: 1px;
	width: 100%;
	opacity: 1;
	height: 1px;
	background: #00477f;
	transition: all .6s ease;
	bottom: 0 !important;
}

#cv_memberBenefitInner .right a:hover::after {
	width: 20%;
	opacity: 0;
}

/* Table
------------------------------- */

#cv_memberBenefitInner table {
	border: solid 1px #e6e6e6;
	border-collapse: collapse;
}

#cv_memberBenefitInner tr {
	padding: 5px 10px;
	text-align: center;
	width: 33.333%;
	border-bottom: solid 1px #e6e6e6;
}


#cv_memberBenefitInner tr td {
	padding: 5px 10px;
}

#cv_memberBenefitInner tr:last-child {
	border-bottom: none;
}

#cv_memberBenefitInner table th {
	background-color: #00477f;
	color: #fff;
	padding: 3px 6px;
	border: solid #fff;
	border-width: 1px 1px 1px 0;
	text-align: center;
}

#cv_memberBenefitInner table th strong {
	color: #fff;
}

#cv_memberBenefitInner table th:last-of-type {
	border-right: none;
}

#cv_memberBenefitInner table tr td {
	padding: 3px 6px;
	text-align: left;
	border: solid #ccc;
	border-width: 1px 1px 1px 0;
}

#cv_memberBenefitInner table td:last-of-type {
	border-right: none;
}

#cv_memberBenefitInner table tr:nth-child(even) {
	background: #eee;
}

#cv_memberBenefitInner table tr:nth-child(odd) {
	background: #fff;
}

/*
TRAINING & COMPLIANCE - STAFF SIGNUP
------------------------------------------------------------- */

.page-template-staff-signup .banner.animate-when-visible,
.page-template-staff-signup #cv_header,
.page-template-staff-signup #cv_headerClear {
	display: none;
}

.staff-signup .name_first label,
.staff-signup .name_last label,
.ginput_container_password label {
	display: none !important;
}

.banner.notloggedin-banner.staff-signup .inner {
	width: 800px;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*
TRAINING & COMPLIANCE
------------------------------------------------------------- */

.training-signup .inner {
	background: #00477f;
	padding: 20px;
	margin-left: 15px;
	position: relative;
	margin-bottom: 40px;
}

.training-signup .inner h3,
.training-signup .inner h5 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #fff;
}

.training-signup .inner h5 {
	margin-bottom: 0;
}

.training-signup .inner a {
	position: absolute !important;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	padding: 10px 20px;
	background: #5cb85c;
	color: #fff !important;
	text-transform: uppercase;
	border: solid 2px #5cb85c;
}

.training-signup .inner a::after {
	display: none;
}

.training-signup .inner a:hover {
	background: transparent;
	color: #5cb85c !important;
}

/* Instructions
------------------------------- */

.instructions {
	display: flex;
}

.instructions .col-md-4,
.instructions .col-md-4 .inner {
	height: 100%;
	font-weight: 600;
}

.instructions .ld_course_grid {
	margin-bottom: 0;
}

.instructions br {
	display: none;
}

.instructions .col-md-4 .inner {
	background: #eee;
	padding: 15px 30px;
	align-items: center;
	display: flex;
}

.instructions ul {
	margin: 0;
	padding: 0;
}

.instructions ul li {
	list-style: none;
	margin-bottom: 10px;
}

.instructions ul li span {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background: #00477f;
	margin-right: 10px;
}

#ld_course_list {
	width: 66.66666666666666%;
	float: left;
}

/* Course Img
------------------------------- */

.course-img {
	position: relative;
	height: 100%;
	width: 100%;
	display: block;
}

.course-img div {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,.9);
	display: block;
	visibility: hidden;
	opacity: 0;
	transition: all .3s linear;
}

.course-img span {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	width: 90%;
	color: #333;
}

.course-img:hover div {
	opacity: 1;
	visibility: visible;
}

/* Course Link
------------------------------- */

.caption p {
	margin: 0;
}

.caption p a {
	border: solid 2px #00477f;
	padding: 6px;
	width: 100%;
	display: block;
	text-align: center;
}

.caption p a::after {
	display: none;
}

/*
TRAINING & COMPLIANCE - INNER
------------------------------------------------------------- */

.single-sfwd-courses .banner,
.single-sfwd-lessons .banner,
.single-sfwd-quiz .banner {
	display: none;
}

.widget_ldcoursenavigation ul {
	padding-left: 0;
}

.widget_ldcoursenavigation ul li {
	border: none;
	padding: 0;
	margin: 0;
}

/*
TRAINING & COMPLIANCE - QUIZ
------------------------------------------------------------- */

.single-sfwd-quiz {
	background: #e6e6e6;
}

.single-sfwd-quiz #cv_mainContentInner {
	padding: 20px 12px 20px 28px;
	background: #fff;
	box-shadow: 0 0 10px -2px rgba(0,0,0,.3);
}

/* Quiz */

.wpProQuiz_content {
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px #e6e6e6;
}

.wpProQuiz_content .wpProQuiz_questionList {
	background: transparent;
	border: none;
	padding: 0 0 0 20px;
}

.wpProQuiz_content .wpProQuiz_question_page {
	display: none;
}

.wpProQuiz_content .wpProQuiz_button,
.wpProQuiz_quiz input[type="button"],
.wpProQuiz_results input[type="button"] {
	position: relative;
	display: inline-block;
	background: #00477f;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: .8px;
	border: solid 2px #00477f;
	color: #fff;
	padding: 6px 24px;
	min-width: 150px;
	text-align: center;
	font-size: 14px;
	transition: all .6s ease;
}

.wpProQuiz_content .wpProQuiz_button:hover,
.wpProQuiz_quiz input[type="button"]:hover,
.wpProQuiz_results input[type="button"]:hover {
	background: transparent;
	color: #00477f;
}

/* Answers */

.wpProQuiz_results h4.wpProQuiz_header {
	margin-bottom: 20px;
}

.wpProQuiz_results .quiz_continue_link {
	float: right;
}

.wpProQuiz_results .quiz_continue_link a#quiz_continue_link {
	background: transparent;
	border-radius: 0;
	text-transform: uppercase;
	color: #a6020e;
	font-weight: 600;
}

.wpProQuiz_results .wpProQuiz_answerCorrect label {
	color: #fff;
}

.wpProQuiz_content .wpProQuiz_response {
	background: #f9f9f9;
	border: solid 1px #efefef;
	box-shadow: none;
}

.wpProQuiz_content .wpProQuiz_response .wpProQuiz_AnswerMessage {
	margin-bottom: 0;
}

/*
DOCUMENT UPLOADS
------------------------------------------------------------- */

.upload-item {
	height: 100%;
	padding-bottom: 25px;
}

.upload-item p:last-of-type {
	position: absolute;
	bottom: 0;
	margin-bottom: 0;
}

/* Triggers
------------------------------- */

.upload-trigger {
	cursor: pointer;
	margin-bottom: -10px;
	display: inline-block;
}

.upload-item.visible {
	padding-bottom: 450px;
}

.upload-item.visible p {
	margin-bottom: 0;
}

.upload-item.visible p:last-of-type {
	display: none;
}

.upload-form {
	display: none;
	visibility: hidden;
	height: 0;
	opacity: 0;
	transition: all .5s ease;
	padding: 10px;
	background: #f4f4f4;
	border: solid 1px #eee;
}

.upload-item.visible .upload-form {
	display: block;
	visibility: visible;
	opacity: 1;
	height: auto;
	position: absolute;
	bottom: 0;
	width: calc(100% - 30px);
	box-sizing: border-box;
}

.upload-form .gform_footer {
	padding: 0 !important;
}

.upload-form input[type="file"] {
	width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	margin-bottom: 12px;
	background: #f4f4f4 !important;
	color: #333 !important;
	line-height: 12px !important;
}

.upload-form input[type="submit"] {
	padding: 3px 20px;
	width: auto;
	min-width: 0;
}

.upload-form input {
	width: 100% !important;
}


/*
LATEST NEWS
------------------------------------------------------------- */

.cv_news-item {
	position: relative;
	margin-bottom: 30px;
}

.cv_news-item .featured-image {
	position: relative;
	display: block;
	overflow: hidden;
}

.cv_news-item .featured-image img {
	height: auto;
	filter: url(data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt…33 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale);
	filter: gray;
	-webkit-filter: grayscale(100%);
	transition: all .6s ease;
}

.cv_news-item:hover img {
	filter: url(data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt… 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale);
	-webkit-filter: grayscale(0%);
	transform: scale(1.05);
}

.cv_news-item .content {
	display: block;
	padding: 20px 20px 58px;
	border: solid 2px #e6e6e6;
	transition: all .6s ease;
	height: 100%;
}

.cv_news-item .content h4 {
	color: #333;
	margin-top: 0;
}

.cv_news-item .content span {
	color: #333;
}

.cv_news-item:hover .content {
	background: #f9f9f9;
}

.cv_news-item a {
	padding: 4px 12px;
	min-width: 0;
	position: absolute;
	bottom: 20px;
}

/* Inner
------------------------------- */

.single-post {
	background: #e6e6e6;
}

.single-post h1 {
	margin-top: 0;
}

.single-post .inner {
	padding: 30px 50px;
	background: #fff;
	box-shadow: 0 0 10px -2px rgba(0,0,0,.3);
}

.single-post .post-sidebar ul.post-categories {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.single-post .post-sidebar .item {
	margin-bottom: 30px;
}

.single-post .post-sidebar .item img {
	box-shadow: 0 0 10px -2px rgba(0,0,0,.3);
}

.single-post .backtoblog {
	margin-top: 20px;
	padding: 8px 12px;
}

/* Archive
------------------------------- */

.archive .banner {
	display: none;
}

/* Paination
------------------------------- */

#cv_latestNews .custom-pagination {
	clear: both;
	margin-top: 20px;
	text-align: right;
}

#cv_latestNews .custom-pagination .page-numbers {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 29px;
	text-align: center;
	border: solid 1px #ddd;
}

#cv_latestNews .custom-pagination .page-numbers:not(.current) {
	background: #ddd;
}

#cv_latestNews .custom-pagination .page-numbers:not(.current):hover {
	background: #ccc;
}

/*
ACCOUNT
------------------------------------------------------------- */

.profile_avatar {
	display: none;
}

/*
SIDEBAR
------------------------------------------------------------- */

.sidebar li {
	display: block;
	margin-top: 40px;
	list-style: none;
	background: #f7f7f7;
	padding: 10px;
	position: relative;
	border: solid 1px #e6e6e6;
}

.sidebar li:not(:last-child)::after {
	content: '';
	position: absolute;
	display: block;
	height: 1px;
	width: 100%;
	background: #e6e6e6;
	left: 0;
	bottom: -20px;
}

.sidebar li:not(:last-child) {
	margin-bottom: 20px;
}

.sidebar li h2 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 20px;
}

.sidebar li dd.course_progress {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

/*
LEARNDASH EXTRA WORK
------------------------------------------------------------- */

.learndash_course_certificate {
	display: none;
}

.learndash_content h3 {
	margin-top: 0;
}

#learndash_course_content_title {
	display: none;
}

#learndash_course_status {
	display: inline-block;
	background: #f4f4f4;
	padding: 6px 12px;
	margin-bottom: 20px;
	font-weight: 600;
}

/*#learndash_course_status br,
#learndash_course_status ~ br {
	display: none;
}

/*
PRINT
------------------------------------------------------------- */

@media print {
	
	#cv_sidebarMenu, #cv_header, #cv_headerClear, #cv_footer, #cv_footerCopyright, #auditIcons, #field_6_1, #field_6_2, #field_6_3, #field_6_6, #field_6_108, .gfield_description i, .gform_footer {
		display: none;
	}
	
	.banner {
		height: auto;
		margin-top: 10px;
		padding-bottom: 10px;
		border-bottom: solid 1px #ccc;
	}
	
	#cv_mainContent {
		margin-top: 0;
	}
	
	#cv_mainContentInner {
		padding: 0;
	}
	
	.page-id-139 .gfield_label {
		padding-left:0 ;
	}
	
	.gfield_description {
		padding-bottom: 10px;
	}
	
	.gfield_description .text {
		visibility: visible;
		opacity: 1;
		position: relative;
		top: auto;
		left: 0;
	}
	
	.gfield_description .text::before {
		display: none;
	}
	
	.gfield_html {
		padding-left: 20px;
		border-left: solid 2px #04477f;
	}
	
}

/*
RESPONSIVE
------------------------------------------------------------- */

@media (max-height: 900px) {
	
	.banner.notloggedin-banner {
		height: auto;
	}
	
	.banner.notloggedin-banner .inner {
		padding: 60px 0;
	}
	
	.banner.notloggedin-banner .inner {
		position: relative;
		top: auto;
		-webkit-transform: translate(0);
		transform: translate(0);
		left: 0;
		margin: 0 auto;
	}
	
}

@media (max-width: 1024px) {
	
	.page-id-139 .gfield_radio li:nth-child(1) input[type="radio"]::after, .page-id-139 .gfield_radio li:nth-child(3) input[type="radio"]::after {
	}
	
}

@media (max-width: 991px) {

	.banner.notloggedin-banner .inner {
		max-width: calc(100% - 40px);
		left: 0;
		transform: none;
		top: auto;
		margin: 20px;
	}
	
	.header-fixed #cv_header .logo {
		width: 200px;
	}
	
	.home .item {
		margin-bottom: 20px;
	}
	
	.audit-flex {
		display: block;
	}
	
	.audit-flex .flex-text {
		padding: 0 15px;
	}
	
	.audit-flex .flex-img {
		display: none;
	}
	
	#cv_memberBenefits .col-md-4 {
		width: 50%;
		float: left;
	}
    
    .notloggedin-banner .flex {
        display: block;
    }
    
    .image-boxes .col-md-12, .image-boxes .left, .image-boxes .middle, .image-boxes .right {
        padding: 0;
    }
    
    .image-boxes .col-md-12 {
        margin-top: 15px;
    }
    
    .image-boxes .left, .image-boxes .middle, .image-boxes .right {
        margin-bottom: 15px;
    }
	
}

@media (max-width: 786px) {
	
	.admin-bar #cv_header {
		top: 46px;
	}
	
}

@media (max-width: 700px) {
	
	#cv_header .logo {
		width: 100px !important;
	}
	
	#cv_headerClear {
		height: 69px !important;
	}
	
	#cv_headerRight * {
		font-size: 14px;
	}
	
	#cv_headerRight .hamburger-box {
		width: 20px;
		height: 15px;
		top: 4px;
	}
	
	#cv_headerRight .hamburger-inner, #cv_headerRight .hamburger-inner::before, #cv_headerRight .hamburger-inner::after {
		height: 1px;
		width: 15px;
	}
	
	#cv_memberBenefits .col-md-4 {
		width: 100%;
		float: none;
	}
	
}


h2 > a {
	color: #ffffff;
    padding: 15px 30px;
    background: #00477f;
    display: inline-block;
    font-weight: normal;
    text-transform: uppercase;
}

.ribbon-enrolled{
    text-align: center;
    background-color: #00477f;
    color: #fff;
    border-bottom: none;
    display: inline-block;
    padding: 5px 12px;
}

.course{
	position: relative;
}
.course .ribbon-enrolled{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
}
