/*
Theme Name: DCO2017
Theme URI: http://www.bipsolutions.com
Author: Underscores.me
Author URI: http://www.bipsolutions.com
Descriptin: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tracker_2017
Tags:

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.

tracker_2017 is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

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

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

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

fieldset {
	border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
    background-color: #f9f9f9;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body *{
font-family: 'Open Sans', sans-serif;
color: #656565;
transition: .5s; }
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

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

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

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

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

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

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

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

a:focus {
	outline: 0;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.pricing-table-container{
	font-size: 85%;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
@media screen and (max-width: 80em) {
	.level{
		padding-left: 2em!important;
		padding-right: 2em!important;
	}
	.jet-container{
		max-width: 500px!important;
	}
	.owl-carousel{
		font-size: 80%;
	}
	.header-ads{
		padding-bottom: 1em;
	}
	.jet-container-responsive{
		max-width: 40% !important;
	}
	.slide-container, .slide-container .pure-g, .slide-container .pure-u-1{
		min-height: 200px !important
	}
}



@media screen and (max-width: 64em) {
	
	.carousel-container{
		width:100%;
	}
	.carousel-container img{
		width:100%;
	}
	.quicklinks{
		font-size:1.3em;
	}
	.level-hero .hero-blurb{
		overflow: initial!important;
	}
	.slide-container, .slide-container .pure-g, .slide-container .pure-u-1{
		min-height: 140px !important
	}

}


.button-menu-item{
	float:right;
}

.jet-container-responsive{
	top: -15px !important;
}





@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

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

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

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

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

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

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

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

.bypostauthor {
	display: block;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}


.level-header {
  background-image: -moz-linear-gradient( 180deg, rgb(122,44,114) 0%, rgb(91,44,122) 100%);
  background-image: -webkit-linear-gradient( 180deg, rgb(122,44,114) 0%, rgb(91,44,122) 100%);
  background-image: -ms-linear-gradient( 180deg, rgb(122,44,114) 0%, rgb(91,44,122) 100%);
  padding:0.5em 0;
}
.single-menu-item{
	float: left;
}
.purple{
	color: #951966;
}
.level-hero{
	background-image: url('img/clouds.jpg');
	background-position: center;
	height: 300px;
}
.cta {
    color: #fff;
    background-color: #000;
    padding: 0.5em 1em;
    font-size: 1em;
    border-radius: 1.5em;
    background-color: #5b2c7a;
    text-decoration: none;
    display: inline-block;	
}
.cta:hover{
	background-color: #951966;
	color: #fff
}
.level-hero .hero-blurb:not(.hero-blurb-repsonsive){
	height: 300px;
	padding: 2em 0;
}
.hero-blurb h2 {
    font-size: 1.8em;
    font-weight: 300;
    color: #642c78;
}
.hero-blurb h2, .hero-blurb h3, .hero-blurb h4{
 margin-top: 0;
}
.jet-container{
	position: absolute;
	right: 0;
    top: 75px;

}
.lastest-news-thumb img{
	border: 1px solid;
}

.lastest-news-title span{
	font-size: 80%;
}
.lastest-news-container{
	padding: 0 0 2.2em 0;
}
.lastest-news-title h3{
	margin: 0;
	font-size: 1em;
}
.owl-theme .owl-dots, .owl-theme .owl-nav{
	text-align: left;
}
.owl-theme .owl-dots .owl-dot.active span{
	background-color: purple !important;
}
.owl-theme .owl-dots span{
	background-color: #999!important
}
.level-hero .pure-g{
	position: relative;
}
.level-hero-sub{
	background-color: #ebebeb;
	padding: 1em 0;

}
.level-hero-sub .pure-g{
	position:relative;
}
.rpwe-thumb{
	width: 25%!important;
	max-height: 25%!important;
}
.quicklinks a{
	text-decoration: none;
	color: #382842;
	font-size: 1.3em;
}
.dci-post-content-container h2{
	margin-top: 0;

}
.dci-post-content-container h2 a{
	text-decoration: none;

}
.dci-post-thumbnail-inner{
	padding: 0 1em 0 0;
}
.dci-post-thumbnail-inner img{
	border: 1px solid #f3f3f3;
	padding: 0.5em;
}
a.page-numbers:not(.cta):not(.page-num) {
    background: #5b2c7a;
    color: white !important;
    text-decoration: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    pointer-events: all;
}

.page-numbers:not(.page-num) {
    border-radius: 50%;
    background: #951966;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    padding: 0;
    color: white;
    pointer-events: none;
}
.pagination{
	margin: 2em 0;
}
.carousel-container{
	float: right;
	max-width: 468px;
}
.post-list-title span {

    width: 100%;
    font-size: 0.6em;
    font-style: italic;
    font-weight: 600;
}
.post-meta, .posted-on, .single .byline, .group-blog .byline{
	font-size: 0.6em;
	font-style: italic;
	font-weight: 600;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4{
	clear: none;
}
.mod-content h2{
	font-size:2em;
}
.mod-content h3{
	font-size:1.5em;
}
.entry-header{
	margin-top: 3em;
}
.post-list-title.dia {
    background-size: 0.2em;
    background-repeat: repeat;
    padding: 0.5em;
}
article{
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 1em;
}
.header-ads{
	margin-top: 1em;
}
.level-media{
	padding: 2em 0;
}
.social-link{
	font-size: 1.5em!important;
    margin-top: em;
    line-height: 1em;
    display: inline-block;
}

.mod-content h1, .mod-content h2, .mod-content h3, .mod-content h4{
	color: purple;
	font-weight: 300;

}
.webinar-content{
	transition: none;
}
.dia{
	background-image: url('img/dia.png');
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 0.3em;
	padding-bottom : 0.4em;
}
.webinar-title{
	background-image: url('img/dia.png');
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 0.3em;
	padding-bottom : 0.4em;
}
.bip-accordion-title{
	background-image: url('img/dia.png');
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 0.3em;
	padding-bottom : 0.4em;
	border-bottom: 1px solid;
	
}

.webinar-container {
    margin-bottom: 1em;
    border: 1px solid #cdcdcd;
    padding: 1em;
    background-color: #f2f2f2;
}

.accord-title-tag{
	margin-bottom: 0;
}
.lastest-news-thumb img {
	overflow: hidden;
    width: auto;
    display: inline;
    min-width: 100%
}
.lastest-news-thumb {
	max-height: 60px;
	overflow: hidden;
}
.fun-fact-container{
	text-align: center
}
.fun-fact-container h2{
	font-size: 200%
}

.fun-fact-container .owl-theme .owl-dots, .fun-fact-container .owl-theme .owl-nav {
    text-align: center;
}
.fun-fact-container .item p{
	font-size: 1.6em;
}
.level-events{
	margin-top: 2em;
	padding: 2em 0;
	background-color: #f2f2f2;
	text-align: center;	
}
.level-ad{
	background-color: purple;
	padding: 1em;
}
.level-features{
	text-align: center;
	padding: 2em;
}
.feature-container{

  border-radius: 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.32);
padding: 1em;
margin: 0 1em;


}
.widget{
margin-bottom: 0 0 1em;
    background-image: url(img/dia.png);
    background-repeat: repeat-x;
    background-position: bottom;
    padding-bottom: 0.5em;
    background-size: 0.25em;
}

.title-content.extra-padding h2, .title-content.extra-padding h1, .title-content.extra-padding h3{
	margin-top: 0;
	padding-top: 0;
}
.widget-title{
	    background-image: url(img/dia.png);
    background-repeat: repeat-x;
    background-position: bottom;
    padding-bottom: 0.5em;
    background-size: 0.3em;
}
.widget ul{
	margin-left: 0;
	list-style: none;

}
.widget ul li.page_item{
		line-height: 2em;
		position:relative;
}
.widget ul li.page_item a{
	text-decoration: none;
}
.widget ul li.page_item:before{
    content: "\f0fb";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding-right: 0.5em;
    position: absolute;
    left: -1.5em;
    font-size: 0.75em;
}
.extra-padding{
	padding: 0 1em!important;
}


.level-header .sf-menu a{
	border: 0!important;
	color: #fff;
	font-size: 0.75em;
    padding-left: 0.4em;
	padding-top: 1.2em;
}
.level-header .sf-menu{
	margin-bottom: 0;
}
.level-header .sf-menu li{
	background: transparent	!important;
}
.level-header .sf-menu li ul{
	background: purple !important;
}
.level-header .sf-menu li ul li:hover{
	background: #382842 !important;
}
.feature-title {
  background-image: -moz-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(122,44,114) 100%);
  background-image: -webkit-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(122,44,114) 100%);
  background-image: -ms-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(122,44,114) 100%);
  margin: 0 1em;
  padding: 1em;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.feature-title.buyers{
  background-image: -moz-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(53,44,122) 100%);
  background-image: -webkit-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(53,44,122) 100%);
  background-image: -ms-linear-gradient( 180deg, rgb(91,44,122) 0%, rgb(53,44,122) 100%);
}

.product-type-6300 .bip-product-title-container{
	background-image: -moz-linear-gradient( 180deg, rgba(8, 57, 88, 1) 0%, rgb(12, 38, 53) 100%);
	background-image: -webkit-linear-gradient( 180deg, rgba(8, 57, 88, 1) 0%, rgb(12, 38, 53) 100%);
	background-image: -ms-linear-gradient( 180deg, rgba(8, 57, 88, 1) 0%, rgb(12, 38, 53) 100%);
}
.product-type-6300 .cta{
	background-color:#3bc83b;
}
#sidebar .image{
	width: 100%!important;
}


}
.feature-title h3{
color: #fff;
}
.feature-title, .feature-container{
	max-width: 400px;
	margin: 0 auto;
}
  .feature-content-cta{
  	padding: 1em;
  }
.level-footer{
	background-color: #29262b;
	padding: 2em;
}
.searchbox{
    position:relative;
    min-width:auto;
    width:0%;
    height:auto;
    overflow:hidden;
    
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}
.searchbox-input{
    top:0;
    right:0;
    border:0;
    outline:0;
    background:#dcddd8;
    width:100%;
    height:auto;
    margin:0;
    padding:0px 55px 0px 20px;
    color:red;
}
.searchbox-input::-webkit-input-placeholder {
    color: #d74b4b;
}
.searchbox-input:-moz-placeholder {
    color: #d74b4b;
}
.searchbox-input::-moz-placeholder {
    color: #d74b4b;
}
.searchbox-input:-ms-input-placeholder {
    color: #d74b4b;
}

.searchbox-icon,
.searchbox-submit{
    width:auto;
    height:auto;
    display:block;
    position:absolute;
    top:0;
    right:0;
    padding:0;
    margin:0;
    border:0;
    outline:0;
    line-height:auto;
    text-align:center;
    cursor:pointer;
}
.search-box-container{
	position: relative
}

.outer{
	display: table;
	height: 100%;
	width: 100%;
}
.inner{
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}

.searchbox-open{
    width:300%;
}
.level-hero.sub-page .jet-container{
    top: 76px;
    max-width: 400px!important;
}    
.sub-page .hero-blurb{
	padding:2em 0;
	font-size: 90%;
}
.mod-content.the_content .cta{
	font-size: 80%;
	margin-top: 1em;
	margin-bottom: 1em;
}
.jet-container{
	max-width: 0;
}
#searchform input{
    width: 0;
    position: absolute;
    width: 0;
    position: absolute;
    right: 1.25em;
    overflow: hidden;
    padding: 0.2em;
    top: 5px;
}
#searchform{
	position: relative;
}
.quicklinks.social-icons{

    float: right;
    position: absolute;
    right: 0;
}
.social-link .fa{
	color:inherit;
}
.social-handle{
	font-size: 0.55em;
    font-style: italic;
    display: inline-block;
        vertical-align: bottom;
}
.single-menu-item{
	cursor: pointer
}
.search-open{
	width: 600px!important;
	padding-left:1em !important;

}
#searchform .submit-open{
	width: 100px;
    padding-right: 1em!important;
    line-height: 1.35em;
    font-size: 1.1em;

}
#searchform .search-submit{
	line-height: 1.35em;
    font-size: 1.1em;
    padding-right: 0;
}
.search-container{
	display: inline-block;
}
.tooltipster-light *{
	color: #951966;
}
.tooltipster-sidetip .tooltipster-content{
	 color: #fff;
}

.tooltipster-sidetip.tooltipster-light .tooltipster-box {
    border-radius: 7px;
    background: #951966;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border: 1px solid #fff;
    padding: 0.25em 0.5em;


}

.tooltipster-sidetip.tooltipster-light .tooltipster-arrow {
    height: 11px;
    margin-left: -8px;
    width: 18px;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow {
    height: 18px;
    margin-left: 0;
    margin-top: -6px;
    width: 10px
}

.tooltipster-sidetip.tooltipster-light .tooltipster-arrow-background {
    border: 9px solid transparent
}

.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #951966;
    top: 1px
}

.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #951966;
    left: -1px
}

.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #951966;
    left: 1px
}

.tooltipster-sidetip.tooltipster-light.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #951966;
    top: -1px
}

.tooltipster-sidetip.tooltipster-light .tooltipster-arrow-border {
    border: 9px solid transparent
}

.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fff;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #eaeaea;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #eaeaea;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #eaeaea;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -6px
}

.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-uncropped {
    left: -6px
}

.tooltipster-fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    
  }
}

@keyframes fadeOutDown {
 from {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    
  }
}

ul#sidebar {
	    margin: 3.8em 1em !important;
    padding: 0 1em;
    border-left: 2px solid #f2f2f2;
}

.sub-page jet-container{

}
.cta:visited{
	color: #fff;
}
.multi-feature-column-inner{
	text-align: center;
	margin: 1em;
}
.bip-pricing-product-container, .bip-product-title-container{
	max-width: 450px;

}
.bip-pricing-product-container{
	margin-bottom: 1em;
}
.bip-product-features span{
	padding: 0.5em 0;
}
.cta.purple{
	color: #fff;
}
div.bip-product-features span {
    border-top:0;
    border-bottom: 0;
    font-size: 1.1em;
}
.multi-feature-icon-container.multi-feature-media-container > i {
    font-size: 3em;
    color: #5b2c7a;
}
.feature-type-icon .multi-feature-icon-container, .feature-type-icon .multi-feature-blurb p{
	margin-bottom: 0;
	padding-bottom: 0;
}
.mod-content input:not([type="submit"]):not([type="checkbox"]), .mod-content  select, textarea{
	width: 100%;
	padding: 0.25em 1em;
	margin: 0.25em;
	box-sizing: border-box;
	border-radius: 0.2em;
	font-weight: 400;
} 
.mod-content label{
	font-weight: 600;
	margin-left: 0.5em;
}
.mod-content input[type="submit"].cta{
	color: #fff;
	padding: 0.5em 1em;
	font-size: 1.3em;
	border-radius: 1.5em;
	background-color: #5b2c7a;
	text-decoration: none;
	display: inline-block;	
}
.mod-content ul{
	margin-left: 1em;

}
.mod-content h2 a, .mod-content h3 a{
	text-decoration: none
}
.footer-menu{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu li a, .level-footer p{
	color: #888;
	font-size: 0.8em;
	margin-right: 0.5em;
	text-decoration: none
}
.footer-menu li{
	float: left;
}
.menu-footer-menu-container{
	width: 100%;
	display: inline-block;
}
.sub-feature-padding{
	padding: 0.5em;
}
h3.sub-feature-title-container{
	font-size: 1.2em;
}
.sub-feature-title-container span{
	display: 	inline-block;
	width: 100%;
	font-size: 0.6em;
	font-style: italic;
	font-weight: 600
}

.tooltip_templates { display: none; }

.register-header-links a, .register-header-links i{
	color: #FFF !important;
	text-decoration: none;
	line-height: 1.5em;
}


/* DCI Upgrade page */
.dci-upgrade-page {
	background: #fff;
	padding-top: 30px;
}

.dci-upgrade-page .contract-details {
	float: left;
	width: 70%;
}

.dci-upgrade-page .right-column {
	float: left;
	width: 28%;
	height: 100%;
	overflow-y: auto;
}

.dci-upgrade-page .right-column div {
	background: #f1f1f1;
	padding: 1em;
}

.dci-upgrade-page .title-logo {
	margin: 0 1.5em 1em 1.5em;
}

.dci-upgrade-page h1,
.dci-upgrade-page h2 {
	color: #03405f;
}

.dci-upgrade-page h1 {
	display: block;
	float: none;
	height: auto;
	width: auto;
	font-family:'NewsCycleRegular', Arial, sans-serif;
	margin-right: 1.5em;
	padding-bottom: 15px;
}

.dci-upgrade-page h1 small {
	font-size: 70%;
	/* display: inline-block; */
}

.dci-upgrade-page .contract-left {
	float: left;
	width: 57%;
}

.dci-upgrade-page .benefits-section {
	float: right;
	width: 35%;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left {
	width: 90%;
}

.dci-upgrade-page.dci-generic-upgrade-page .benefits-section {
    width: 100%;
    background: #fff;
    padding-top: 30px;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left table img {
	margin: 0 auto;
	display: block;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left table,
.dci-upgrade-page.dci-generic-upgrade-page .contract-left table * {
	border: 0;
	vertical-align: middle;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left table td {
	padding: 4px 10px;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left table td:first-child {
	font-size: 11px;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left table td small {
	font-size:9px;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left ul {
	padding-left: 40px;
	margin-bottom: 20px;
	width: 35%;
	float: left;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left ul:nth-of-type(2){
	width: 48%;
}

.dci-upgrade-page.dci-generic-upgrade-page .contract-left p {
	clear: both;
}

.dci-upgrade-page .benefits-section p img {
	background: #03405f;
	padding: 8px;
	display: inline-block;
	border-radius: 50%;
	width: 22px;
	margin-right: 15px;
}

.dci-upgrade-page .benefits-section p {
	clear: both;
	margin-bottom: 25px;
}

.dci-upgrade-page .additional-services {
	clear: both;
	margin: 1.5em;
	border-top: 1px solid #b3b3b3;
	padding-top: 2.5em;
}

.dci-upgrade-page .additional-services h2 {
	margin-left: 0;
	margin-top: 0;
}

.dci-upgrade-page .additional-services p {
	padding-left: 0;
	padding-right: 0;
}

.dci-upgrade-page h3 {
	color: #464646;
}

.dci-upgrade-page .additional-services table {
	border-collapse: collapse;
	border: 0;
	width: 100%
}

.dci-upgrade-page .additional-services table td {
	border: 1px solid #b3b3b3;
	padding: 5px;
}

.dci-upgrade-page .additional-services table td:first-child {
	font-weight: bold;
}

.dci-upgrade-page .additional-services table th {
	padding: 5px;
	border: 0;
	text-align: center;
	font-weight: bold;
}

.dci-upgrade-page .upgrade-button {
	font-weight: bold;
	display: inline-block;
	padding: 12px 40px;
	text-decoration: none;
	border: 0;
	background: #03405F;
	color: #FFF !important;
	border-radius:3px;
	font-size: 16px;
	line-height: 18px;
	margin-top: 10px;
	transition: background-color 0.5s, color 0.5s;
}

.dci-upgrade-page .upgrade-button:hover {
	color: #FFF;
	background: #fb674b;
}
.slide-container, .slide-container .pure-g, .slide-container .pure-u-1{
    background-position: center;
    background-size: cover;
    min-height: 300px;
}
.slide-container .cta{
	position: absolute;
}
.slide-container .cta i{
	color: inherit!important;
}

.level-full-width .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -2em;
    z-index: 999999999;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.level-full-width-slider{
	padding-left:0!important;
	padding-right:0!important;
}

.quicklinks {
    font-size: 13px;
    text-align: center;
}

@media only screen and (max-width: 1282px) {
	.button-menu-item {
	    float: right;
	    position: relative;
	    right: 80px;
	}
}