/*=========================
	Global
==========================*/

html {
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
}
h1 { font-size: 1.6rem; margin-bottom: 1em; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 1rem; }

body {
	background-color: #E1E1E1;
}

body a:hover {
	transition: background-color 0.2s;
}
a {
	text-decoration: none;
	transition: background-color .25s;
}
a:hover,
a:focus {
	text-decoration: none;
}
a:focus {
	outline: none;
}
button:focus, button:active {
	outline: none;
}
p, li {
	font-size: 1rem;
}
small {
	font-size: 80%;
}
strong, b {
	font-weight: bold;
}

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

.responsive-object {
	padding-bottom: 0 !important;
}

ul.breadcrumbs {
	padding-left: 0;
}
.breadcrumbs li {
	list-style: none;
	display: inline;
	padding-left: 5px;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	color: rgb(154, 154, 154);
	letter-spacing: 1px;
}
.breadcrumbs li:not(:first-child):before {
	content: "\00BB";
	padding-right: 10px;
}
.breadcrumbs li.active {
	color: black;
}

.no-padding {
	padding-left: 0;
	padding-right: 0;
}

.rotate-45 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.link-indicator {
	margin-left: 4px;
}

span.no-underline {
	text-decoration: none;
	display: inline-block;
}

/* Wagtail User Bar: Change icon to gear */
.wagtail-icon-wagtail::before {
	content: "w" !important;
}


/* Nav */
.navbar {
	padding-left: 0;
}
.site-nav-container {
	background: black;
	padding: 20px 0;
	margin-bottom: 30px
}
.navbar-brand {
	padding-top: 0;
}
img.logo-nav {
	width: 96px;
	height: auto;
}
#site-nav .nav-item {
	position: relative;
}
#site-nav .nav-link {
	font-family: 'Oswald', sans-serif;
	min-height: 100%;
}
#site-nav a.nav-link {
	color: #c7db1d;
	font-size: 1rem;
}
#site-nav a.nav-link:hover {
	background-color: rgb(24, 30, 24);
}
@media(max-width: 1200px) {
	#site-nav.condensed a.nav-link {
		padding-left: .8rem;
		padding-right: .8rem;
	}	
}

#site-nav form input {
	width: 150px;
	border-radius: 6px;
	font-size: 14px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: rgb(17, 17, 17);
	border: 2px solid rgba(204, 204, 204, 0.5);
	color: white;
}
#site-nav .auth-links {
	padding-right: 20px;
}
.triangle {
	display: none;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 7px solid #E1E1E1;
	position: absolute;
	bottom: -28px;
	left: 42%;
}

.nav-item.active .triangle,
.nav-item.ancestor .triangle,
.connect-index .nav-item.connect .triangle,
.resources-index .nav-item.resources .triangle {
	display: block;
}



/* Login Modal */
.nav-modal .modal-content {
	background-color: rgb(255, 255, 255);
	box-shadow: 1.414px 1.414px 7px 0px rgba(0, 1, 1, 0.078);
	border-radius: 0;
}
.modal-backdrop {
	 background-color: transparent;
}
.nav-modal .modal-dialog {
	width: 304px;
	margin: 73px 61%;
}
.nav-modal .modal-body input,
.modal-body label {
	font-size: 15px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(138, 138, 138);
	line-height: 1.4;
}
.nav-modal .modal-body input {
	margin-bottom: 10px;
}
.nav-modal .modal-body a {
	font-size: 12px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(138, 138, 138);
	font-style: italic;
	line-height: 1.75;
}
.btn-login {
	background-color: rgb(199, 219, 29);
	position: relative;
	float: right;
	width: 80px;
	height: 41px;
	border-radius: 0px;
	font-size: 17px;
	color: rgb(65, 65, 65);
	line-height: 1.588;
	border: none;
}



/* Footer */
.footer {
	margin-top: 50px;
	background-color: black;
	min-height: 100px;
	padding-top: 20px;
}
.footer p {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	color: white;
	text-transform: uppercase;
	line-height: 1.893;
	text-align: center;
	letter-spacing: 1px;
	margin-top: 18px;
}
.footer a {
	color: white;
	text-decoration: underline;
}
.footer .green {
	color: #c7db1d;
}



/*=========================
	Home
==========================*/

.jumbotron h1 {
	font-size: 21px;
	color: #c7db1d;
	margin-bottom: 10px;
}
.jumbotron {
	background-color: #fff;
	text-align: center;
	padding: 30px 20px;
	margin-bottom: 0;
}
.jumbotron .container {
	position: relative;
}
.logo-home {
	width: 200px;
	height: auto;
	margin: 20px;
}
button.btn.btn-cross {
	background-color: #fff;
	padding: 0;
	color: #707070;
	position: absolute;
	right: 25px;
	top: -14px;
}
.jumbotron p {
	padding-top: 2px;
	max-width: 510px;
	margin: auto;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
}

h1.underline {
	width: 100%;
	font-size: 16px;
	color: rgb(70, 70, 70);
	letter-spacing: .3px;
	margin-bottom: 20px;
	margin-left: -10px;
}

h1.underline span {
	display: inline-block;
	height: 27px;
	border-bottom: 8px solid #c7db1d;
	line-height: 1.688;
	margin-left: -5px;
	padding-left: 10px;
	padding-right: 20px;
}

.see-all a {
	font-size: 10px;
	font-family: Arial;
	color: rgb(0, 0, 0);
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 1px;
}
.see-all a i {
	font-size: 16px;
	vertical-align: middle;
}

.see-all.toolkits {
	margin-top: -1em;
	text-align: right;
	padding-right: 30px;
}

.news-row {
	margin-top: 1em;
}
.news-row h2.title {
	font-size: 36px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(17, 17, 17);
	font-weight: bold;
	border: none;
	margin-bottom: 10px;
}

.spotlight .body {
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(39, 39, 39);
}
.spotlight .body img {
	max-width: 100%;
	height: auto;
}

/* Updates and News */
.updates .published-date,
.news .published-date {
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-style: italic;
	color: #9c9c9c;
	margin-top: .8em;
	margin-bottom: 1.5em;
}
.updates a,
.news a {
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: block;
}

/* Updates */
.updates a {
	font-size: 18px;
	color: #222222;
	font-weight: bold;
	line-height: 1.333;
	margin-bottom: -8px;
}

/* Recent News */
.news {
	margin-top: 2em;
}
.news a {
	font-size: 14px;
	color: rgb(112, 112, 112);
	font-weight: bold;
	line-height: 1.071;
	margin-bottom: -4px;
}


/*=========================
	Pages
==========================*/

.main-col {
	background-color: #fff;
	padding: 30px;
	box-shadow: 2.5px 4.33px 5px 0px rgba(0, 0, 0, 0.039);
	z-index: 2;
}
.media-text h1,
.media-text h2,
.media-text h3,
.media-text h4,
.media-text h5,
.media-text h6 {
	clear: left;
}
.media-text h1 {
	font-size: 2.5rem;
}
.media-text h2,
.media-text h3 {
	font-weight: bold;
	margin-top: 1.5em;
	margin-bottom: 1em;
}
.media-text h2 {
	font-size: 1.4rem;
	color: #000;
	line-height: 1.313;
}
.media-text h4 {
	margin-top: 1.5em;
	margin-bottom: .5em;
}
.media-text p {
	font-family: Arial;
	color: rgb(70, 70, 70);
	line-height: 1.5;
	margin: 1em 0;
}

.containerless-page h2 {
	font-size: 1.2rem;
	margin-top: 1.5em;
}

/* Page Content */
.media-text {
	margin-top: 10px;
}
.media-text blockquote {
	border-left: 4px solid #c7db1d;
	padding-left: 20px;
	color: rgb(70, 70, 70);
}
img.richtext-image.left {
	float: left;
	margin-right: 1rem;
}
img.richtext-image.right {
	float: right;
	margin-left: 1rem;
}

/* Tabs */
.tab-group {
	margin-top: 2em;
}
ul.nav.nav-tabs .nav-item:not(:first-child) {
	margin-left: 0.2rem;
}
ul.nav.nav-tabs .nav-item a {
	background-color: #D1D1D1;
	border-radius: 0;
	padding: 2px 29px;
	text-decoration: none;
	font-size: 12px;
	color: rgb(64, 64, 64);
	line-height: 2;
	font-family: 'Montserrat', sans-serif;
	border-color: #cfcfcf #cfcfcf transparent;
}
.media-text .tab-pane *:first-child {
	margin-top: 0;
}
ul.nav.nav-tabs .nav-item a:hover {
	background-color: #acacac;
}
ul.nav.nav-tabs .nav-item a.active {
	background-color: #c7db1d;
	color: #000;
}
.tab-content {
	border: 1px solid #cfcfcf;
	border-top: none;
}
.tab-pane {
	padding: 30px;
}

/* Right Sidebar Drawer */

.right-drawer {
	margin-top: 30px;
	background-color: #D1D1D1;
	position: relative;
	z-index: 1;
	padding-left: 20px;
	padding-top: 20px;
	min-height: 500px;
}
.no-pad-right {
	padding-right: 0;
}




/*=========================
	Toolkit Tiles
==========================*/
.toolkit {
	margin-bottom: 1em;
}
.toolkit img {
	width: 100%;
	height: auto;
}
.toolkit h2 {
	font-size: 1rem;
	color: rgb(70, 70, 70);
	line-height: 1.688;
	letter-spacing: .3px;
	background-color: #fff;
	padding: 6px 10px;
}
div.toolkit :hover h2 {
	background-color: #c7db1d
}



/*=========================
	About Us
==========================*/
#about .media-text {
	margin-top: 0px;
}
#about .media-text h2 {
	margin-top: 50px;
	margin-bottom: 20px;
}
#about .main-col {
	padding-bottom: 700px;
	margin-top: 55px;
}


/*=========================
	Connect Module
==========================*/
.connect-row {
	background-color: #E1E1E1;
	height: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
	padding-left: 0px;
	padding-right: 0px;
}
.connect-row h1 {
	font-size: 24px;
	color: rgb(17, 17, 17);
	line-height: 1;
	text-align: center;
}
.connect-row label {
	font-size: 16px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgba(17, 17, 17, 0.502);
	line-height: 1.5;
}
.connect-btn {
	height: 30px;
	background-color: transparent;
	border-radius: 20px;
	padding-top: 3px;
	border-color: rgb(17, 17, 17);
}
.connect-btn:hover, .connect-btn:active, .connect-btn:focus, .connect-btn.active {
	background-color: #fff;
	color: rgb(17, 17, 17);
	border-color: rgb(17, 17, 17);
}
.btn-1 {
	border-right: none;
}
.btn-2 {
	border-left: none;
}
.filter-ul li {
	display: inline-flex;
	margin-right: 20px;
	margin-top: 10px;
}
.filter-ul {
	padding-left: 0px;
	text-align: center;
}
.filter-ul select {
	height: 30px;
	background-color: transparent;
	border-radius: 0px;
	padding-top: 1px;
	border-color: rgb(17, 17, 17);
	font-size: 16px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgba(17, 17, 17, 0.502);
	line-height: 1.5;
	margin-top: -8px;
	background: url(../img/drop.png) right .35rem center no-repeat;
}
.filter-search {
	border-width: 1px;
	border-color: rgb(17, 17, 17);
	border-style: solid;
	width: 150px;
	height: 25px;
	border-radius: 20px;
	font-size: 12px;
	background-color: transparent;
	text-align: center;
	vertical-align: text-bottom;
}
.filter-search-i {
	position: relative;
	top: -4px;
	left: -140px;
	color: rgb(98, 98, 98);
}
.filter-search:focus, .filter-search:active, .filter-ul select:focus, .filter-ul select:active {
	outline: none;
	box-shadow: none;
	border-color: rgb(17, 17, 17);
}
.profile-col {
	margin-top: 10px;
}
.name-row span {
	font-size: 16px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(17, 17, 17);
	line-height: 1.5;
}
.img-row img {
	width: 160px;
	height: 160px;
	border: 1px solid #D0D0D0;
}
.profile .row {
	padding-left: 7px;
	padding-right: 7px;
}
.profile.text-center {
	margin-bottom: 10px;
}
.p-text h2 {
	font-size: 18px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(0, 0, 0);
	/*line-height: 0.5;*/
	padding-left: 15px;
	margin-bottom: 5px;
}
p.small {
	font-size: 11px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(0, 0, 0);
	margin-bottom: 10px;
	line-height: 13px;
}
.p-text ul li {
	list-style: none;
}
.p-text {
	text-align: left;
}
.p-text ul {
	padding-left: 0px;
}
.col-xs-4.email {
	text-align: right;
}
.profile-open .modal-dialog {
	max-width: 467px;
}
.profile-open .modal-content {
	border: none;
	border-radius: 0;
}
span.under-l {
	text-decoration: underline;
	word-break: break-all;
}
.p-img img {
	max-width: 121px;
}
.large-profile {
	width: 50%;
}
.lg-p {
	background-color: #fff;
	padding: 15px 0px;
}



/*=========================
	Profile Page
==========================*/
.profile-row {
	background-color: #E1E1E1;
	height: 100%;
	padding: 30px 0px;
	padding-bottom: 400px;
}
.profile-input label {
	font-size: 15px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(138, 138, 138);
	line-height: 1.4;
}
.profile-input input {
	border-width: 1px;
	border-color: rgb(209, 209, 209);
	border-style: solid;
	border-radius: 5px;
	background-color: rgb(255, 255, 255);
	height: 41px;
	font-size: 15px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
	line-height: 1.4;
}
.profile-input .chosen-container {
	display: block;
}
.profile-input .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	border-width: 1px;
	border-color: rgb(209, 209, 209);
	border-style: solid;
	border-radius: 5px;
	background-color: rgb(255, 255, 255);
	height: 41px;
	font-size: 15px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
	line-height: 1.4;
	width: 100%;
}
.profile-input textarea {
	resize: none;
}
button.p-cross {
	background-color: #fff;
	border: 1px solid rgb(209, 209, 209);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 18px;
	position: absolute;
	right: -10px;
	top: 20px;
}
button.p-cross i {
	vertical-align: middle;
}
.form-group.prf-img {
	position: relative;
}
.input-pic input {
	opacity: 0;
	height: 0;
}
.input-pic label {
	padding: 9px 15px;
	height: 41px;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid rgb(209, 209, 209);
	border-radius: 5px;
}
.input-pic span {
	font-size: 15px;
	font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: rgb(138, 138, 138);
	line-height: 1.4;
}
div.tagsinput {
	border: 1px solid rgb(209, 209, 209);
	border-radius: 5px;
	padding: 0;
	width: 100% !important;
	height: 100px;
}
div.tagsinput span.tag {
	border: 1px solid #FFFFFF;
	text-transform: uppercase;
	background: #FFFFFF;
	color: #000000;
}
div.tagsinput span.tag a {
	color: #939393;
	font-size: 13px;
}
.no-pad-lft {
	padding-left: 0;
}
fieldset.prf-check input {
	height: initial;
}
.pro-right-col {
	padding-top: 47px;
}
.prf-check .checkbox.chk-2 {
	padding-top: 5px;
}
.pro-right-col .btn-login {
	position: relative;
}

li.tag.grayed-out a {
    color: #CCCCCC;
    border: 1px solid #CCCCCC;
}

li.tag.available a {
    color: #000;
    border: 1px solid #000;
}

li.tag.selected a {
    color: #FFFFFF !important;
    background: #000000;
    border: 1px solid #000000 !important;
}


.contact-details {
    font-size: 11px;
    font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    line-height: 13px;	
}

.card .tag-btn-col li.tag a{
    font-size:8px;
}

div#categories {
    margin-top: 30px;
}

div#sort_by h1{
    /*margin-bottom: 10px;*/
}

div#categories h1{
    /*margin-bottom: 10px;*/
}

form #login{
    font-family:Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size:15px;
    line-height:1.8;
}

label#remember, #forgotpass {
    font-size:12px;
}

.prf-img input[type=file] {
    display: block !important;
    height: 41px !important;
    margin-top: 15px;

    /*Copied from .form-control*/
    width: 100%;
    padding: .375rem .75rem;
}

.prf-img .image_remove {
    display:none;
}

div#profileImage {
    display:block;
}

/* 404 Page Not Found */
.gcse-file-format {
	margin-bottom: 0;
	font-size: 0.8rem;
}
.gcse-file-format span.format-label {
	color: #444;
}
