/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
 */
 
 
/* Google font - Roboto Condensed 300, 400, 700 */
/* Google font - PT Serif 400, 700 */

/* WEBSITE STYLES */
html {
	scroll-behavior: smooth;
}
body {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	font-family: 'Roboto Condensed', arial, helvetica, sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #000;
}
.desktop { display: block !important; }
.desktop-inline { display: inline-block !important; }
.mobile, .mobile-inline { display: none !important; }
div {
	box-sizing: border-box;
	word-wrap: break-word;
}
.col-sm-12 {
	padding: 0px;
}
.clearfix {
	display: block;
	float: none;
	clear: both;
	width: 100%;
}
.hidden_content {
	display: none;
}

/* GLOBAL */
.main-container a {
	color: #03a33a;
	font-weight: 400;
}
a:hover {
	color: #03a33a;
	text-decoration: underline;
}
a.anchor {
	display: inline-block;
	position: relative;
	top: -180px;
	visibility: hidden;
}

a.button {
	background: #2b4753;
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
}
a.button:hover {
	opacity: .8;
	text-decoration: none;
}
a.button.inactive {
	background: #ccc;
	pointer-events: none;
}
button#edit-submit.btn-primary {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}
button.btn-print {
	font-size: 18px;
}

p, .paragraph p:first-child {
	color: #000;
	line-height: 1.4em;
	font-weight: 400;
	font-size: 20px;
	font-style: normal;
	margin-bottom: 1em;
}
p.title-case {
	font-size: 1.4em;
	font-weight: bold;
}
h1, h1.page-header {
	border-bottom: none;
	font-size: 34px;
	text-transform: uppercase;
	font-weight: 700;
	color: #2b4753;
}
p.smaller-font {
	font-size: .8em;
}
body.path-frontpage h1.page-header {
	display: none;
}
h2 {
	font-size: 22px;
	font-weight: 700;
	color: #2b4753;
	text-transform: uppercase;
}
h3 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	text-transform: none !important;
}
b, strong {
	font-weight: 600;
}
h1 a, h2 a, h3 a {
	text-decoration: none !important;
}
p {
	word-wrap: break-word;
}
.field ul li {
	margin-bottom: 1em;
}

.blue_text {
	color: #fff;
}
.red_text {
	color: #af0000;
}

.align-left {
	margin: 0px 20px 20px 0px;
}
.align-right {
	margin: 0px 0px 20px 20px;
}

.center-this {
	display: block;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
}

.col-sm-6.left {
	padding-left: 0px;
	padding-right: 20px;
}
.col-sm-6.right {
	padding-left: 20px;
	padding-right: 0px;
}

/* COLUMNS */
.columns-wrapper {
	float: none;
	clear: both;
	width: 100%;
	display: flex;
	flex-flow: wrap;
}
.columns-two .column {
	flex: 0 0 auto;
	width: calc(50% - 20px);
	min-width: 280px;
	margin: 0px auto 40px;
	padding: 0px 40px 0px 0px;
}
.columns-three .column {
	flex: 0 0 auto;
	width: calc(33% - 20px);
	min-width: 280px;
	margin: 0px auto 40px;
	padding: 0px 40px 0px 0px;
}
.columns-four .column {
	flex: 0 0 auto;
	width: calc(25% - 20px);
	min-width: 280px;
	margin: 0px auto 40px;
	padding: 0px 40px 0px 0px;
}
.column img {
	width: 100% !important;
	height: auto !important;
}

/* COLLAPSIBLE DRAWERS */
.drawer {
  display: none;
  padding-bottom: 1em;
}
a.trigger {
  color: #999;
  position: relative;
  display: block;
  cursor: pointer;
  border-top: 1px solid #999;
  padding: 20px 50px 10px 0px;
  margin-top: 20px;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
}
a.trigger:first-child {
	margin-top: 0px;
}
a.trigger.closed:after {
  position: absolute;
  display: block;
  content: '\f067';
  color: #fff;
  font-family: fontawesome;
  font-size: 1.2em;
  font-weight: normal;
  width: 20px;
  height: auto;
  top: calc(50% - 10px);
  right: 20px;
}
a.trigger.opened:after {
  position: absolute;
  display: block;
  content: '\f068';
  color: #fff;
  font-family: fontawesome;
  font-size: 1.2em;
  font-weight: normal;
  width: 20px;
  height: auto;
  top: calc(50% - 10px);
  right: 20px;
}


/* HEADER */
header.navbar-default {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: none !important;
	padding: 10px 0;
	margin: 0 auto;
	background-color: #fff;
	border: none;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}
header.navbar-default .navbar-header {
	float: none;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	height: auto;
	display: block
}
header.navbar-default .navbar-header .header-left {
	float: left;
	width: 30%;
	text-align: left;
}
header.navbar-default .navbar-header .header-top #site-logo img.logo {
	width: 100%;
	height: auto;
	max-width: 250px;
	padding: 0;
	margin: 5px auto;
}
header.navbar-default .navbar-header .header-right {
	float: right;
	position: relative;
	width: 70%;
	height: auto;
	padding: 30px 0 10px;
	text-align: right;
}
header.navbar-default .navbar-header .header-bottom .region-navigation {
	position: relative;
	width: auto;
	height: auto;
	text-align: center;
}
header.navbar-default .navbar-header .header-bottom .region-navigation nav {
	width: auto;
	display: inline-block;
}
.navbar-nav {
	float: none !important;
}
.navbar-default .navbar-nav > li > a {
	text-transform: uppercase;
	color: #2b4753;
	font-size: 18px;
	font-weight: 600;
	padding: 3px 10px;
	border-right: 1px solid #ccc;
}
.navbar-default .navbar-nav > li:last-child > a {
	border-right: none;
}
.navbar-default .navbar-nav > li.active > a {
	background-color: transparent !important;
	color: #000 !important;
}
.navbar-default .navbar-nav > li > a:hover {
	text-decoration: underline;
	background-color: transparent !important;
	color: #000 !important;
}

#block-scs-main-menu { display: none; } /* Hides the main menu */
body.user-logged-in .navbar-default .navbar-nav > li a.login { display: none; }

#block-scs-account-menu ul {
	text-align: right;
}
#block-scs-account-menu ul li {
	float: none;
	display: inline-block;
}


/* MAIN PAGE */
.main-container {
	width: 100% !important;
	max-width: 1400px !important;
	padding-bottom: 50px;
}


/* REGISTRATION PAGE */
#user-register-form #edit-group-admin-use-only {
	display: none;
}
#user-register-form #edit-pass input {
	display: inline-block !important;
}

/* LOGIN PAGE */
body.login-page nav.tabs { display: none; }
body.login-page #block-resetpasswordlink {
	padding: 2em 0;
}

/* USER PAGE */
body.user-logged-in.path-user .main-container {
	padding-top: 0;
}
@media all and (max-width:1400px) {
	header.navbar-default {
		padding: 20px;
	}
	.main-container {
		padding: 0 40px;
	}
}
body.user-logged-in.path-user h1.page-header { display: none; }
body.user-logged-in.path-user .highlighted nav.tabs { display: none; }
body.user-logged-in.path-user .dashboard-header {
	text-align: center;
	padding: 30px 0;
	background: #fff;
	border: 1px solid #ccc;
	border-top: none;
	margin-bottom: 50px;
}
body.user-logged-in.path-user .dashboard-header h2 {
	font-size: 48px;
	margin: 0 auto;
}
body.user-logged-in.path-user .welcome-line {
	margin: 0 0 20px;
}
body.user-logged-in.path-user .class_wrapper {
	display: flex;
	margin: 0 0 20px;
}
body.user-logged-in.path-user .class_info_wrapper {
	width: 50%;
}
body.user-logged-in.path-user .class_choose {
	width: 50%;
	text-align: right;
}

body.user-logged-in.path-user .dashboard-messages {
	padding: 20px;
	margin: 0 auto 2em;
	background: #b7c326;
	text-align: center;
	font-size: 24px;
}
body.user-logged-in.path-user .dashboard-messages a {
	color: #000 !important;
	text-decoration: underline;
}
body.user-logged-in.path-user .dashboard-messages a:hover {
	color: #fff !important;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list {
	border-bottom: none;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button {
	min-width: 3em;
	border-bottom: 1px solid #ccc;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.active {
	background-color: #b7c326;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.active a {
	color: #000 !important;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.selected {
	margin-bottom: 0;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li:first-child {
	width: 100%;
	border-right: none;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li a strong {
	font-weight: 500 !important;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li a {
	font-size: 18px;
}
body.user-logged-in.path-user .horizontal-tabs ul.horizontal-tabs-list li:not(.selected) a {
	color: #000 !important;
}
body.user-logged-in.path-user .horizontal-tabs .tab-content-wrapper {
	min-height: 500px;
	padding: 30px;
}
body.user-logged-in.path-user .horizontal-tabs .tab-content-wrapper > div {
	margin-bottom: 2em;
}
body.user-logged-in.path-user .horizontal-tabs .tab-content-wrapper .profile-information .field {
	margin-bottom: 1em;
}
body.user-logged-in.path-user .profile-links {
	height: auto;
	padding: 20px 0;
	margin-top: 40px;
	border-top: 1px solid #ccc;
	text-align: center;
}
body.user-logged-in.path-user .profile-links .views-element-container {
	display: inline-block;
}

form#user-form {
	margin-top: 2em;
}
form#user-form input#edit-current-pass {
	display: inline-block;
}
form#user-form #edit-pass {
	margin-top: 2em;
}
form#user-form #edit-pass input.password-field, form#user-form #edit-pass input.password-confirm {
	display: inline-block !important;
}
form#user-form #edit-pass .form-item-pass-pass1 label:before {
	content: 'New ';
}

/* FACILITATOR DASHBOARD */
.view-facilitator-classes .view-header {
	border-bottom: 1px solid #ccc;
	margin-bottom: 2em;
}
.view-facilitator-classes .attachment {
	margin-top: 4em;
}
.view-facilitator-classes th#view-field-show-class-exercise-tabs-table-column, .view-facilitator-classes #view-field-show-exercise-results-table-column {
	width: 160px;
}

/* DATABASE RESEARCH NODE VIEW */
.field--name-field-word-research .paragraph {
	margin-bottom: 2em;
	padding-bottom: 2em;
	border-bottom: 1px solid #ccc;
}
.field--name-field-word-research .paragraph .field {
	margin-bottom: 1em;
}

/* STUDENT SURVEYS */
.student-surveys, .survey-responses {
	margin-bottom: 2em;
}
body.administrator .survey-responses .view-footer, body.facilitator .survey-responses .view-footer {
	display: none;
}
.have_final_survey_words .survey-responses caption {
	text-transform: uppercase;
	font-weight: bold;
}
.have_final_survey_words .survey-responses .view-footer {
	margin-top: 2em;
}


form#node-neighborhooding-form {
	padding: 0 40px;
}
#edit-field-survey-words {
	columns: 4;
}

#node-neighborhooding-form #edit-field-class-group-ref-wrapper { display: none; }
#node-neighborhooding-form .form-type-vertical-tabs { display: none; }

/* FINAL STUDENT SURVEYS */
#node-final-survey-responses-form td.field-multiple-drag { display: none; }

/* CARD RESPONSES */
form#node-card-response-form { padding: 0 40px; }
#edit-field-class-group-ref-wrapper { display: none; }
#edit-field-session-created-wrapper { display: none; }
#node-neighborhooding-form .form-type-vertical-tabs { display: none; }

/* PERSONAL RESEARCH FORM */
form#node-personal-research-form .form-type-vertical-tabs, form#node-personal-research-edit-form .form-type-vertical-tabs { display: none; }
body.page-node-type-personal-research .highlighted { display: none; }
body.page-node-type-personal-research .personal-research-message {
	margin-top: 2em;
}
table[id*='field-personal-research-word-values'] .field-multiple-drag { display: none; }

/* OPINION GAME */
form#node-opinion-game-form { padding: 0 40px; }
#node-opinion-game-form .form-type-vertical-tabs { display: none; }
#node-opinion-game-form #edit-field-how-i-am-right-now-wrapper td.field-multiple-drag { display: none; }
#field-list-score-values .field-multiple-drag { display: none; }
#field-word-id-add-values .field-multiple-drag { display: none; }

/* OPINION GAME DASHBOARD */
.view-opinion-game .views-field-field-list-score {
	margin-top: 2em;
}
.view-opinion-game .views-field-field-list-score .views-label {
	font-weight: bold;
}
.view-opinion-game .views-field-field-list-score ul {
	list-style: none;
	padding-left: 0;
}
.view-opinion-game .views-field-field-opinion-game-my-notes {
	margin-top: 2em;
}
.view-opinion-game .views-field-field-opinion-game-my-notes .views-label {
	font-weight: bold;
}
.view-opinion-game .views-field-field-opinion-game-my-notes .field-content {
	padding: 30px;
	border: 1px solid #ccc;
}

.view-personal-research h2 { display: none; }

/* SELF-DESCRIPTION QUESTIONNAIRE */
form#profile-self-description-questionnaire-edit-form .form-group {
	margin-bottom: 2em;
}
.view-self-dex-questionnaire-new article.self-description-questionnaire h2 { display: none; }
.view-self-dex-questionnaire-new article.self-description-questionnaire .content .field {
	margin-bottom: 1em;
}

.view-student-content h2 {
	font-size: 32px;
	color: #000;
	font-weight: 700;
	text-transform: capitalize;
}
.view-student-content .view-display-id-attachment_10 article h2 { display: none; }
.view-student-content .view-display-id-attachment_10 article .content .field {
	margin-bottom: 1em;
}
.view-student-content .view-display-id-attachment_11 .view-content .views-field {
	margin-bottom: 1em;
}
.view-student-content .view-display-id-attachment_11 .view-content .views-field .views-label {
	font-weight: 600;
}

/* STUDENT NEIGHBORHOODING */
a.noclick {
	pointer-events: none;
}
.view-student-neighborhooding .attachment-before {
	margin-bottom: 2em;
}

/* NEIGHBORHOOD VALIDATING */
#sn_left_half tr {
	display: block;
	padding: 0 0 .5em;
}
#sn_left_half tr:nth-of-type(2n+1) {
	background-color: transparent;
}
#sn_left_half tr td {
	padding: 0;
	border: none;
}
.view-card-responses-responses caption {
	background: #fff;
	padding: 5px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/* FINAL QUESTIONNAIRE */
article.final-questionnaire h2 { display: none; }
article.final-questionnaire .field {
	margin-bottom: 1em;
}

/* CHOOSE FINAL ESSENCE STATEMENTS */
#node-essence-final-edit-form .form-type-textarea label {
	display: none;
}


/* USER PAGE VIEW */
.view-self-description-questionnaire .field {
	margin-bottom: 2em;
}

/* WORKSHEET 5 DASHBOARD TAB */
.view-essence-statements .view-header {
	margin: 1em auto;
}
.view-essence-statements .views-row {
	margin-bottom: 2em;
}

.worksheet_buttons .views-element-container {
	display: inline-block;
	margin: 0 20px 0 0;
}

/* ESSENCE FINAL DASHBOARD TAB */
.paragraph--type--essence-final-slots .final_essence_statement_field_wrapper {
	margin-bottom: 1em;
}
.paragraph--type--essence-final-slots .highlighted {
	display: block;
	padding: 5px;
	background: #feffca;
}
.view-essence-final.view-display-id-block_2 .content > .field {
	border-bottom: 1px solid #ccc;
	padding: 20px;
	margin-bottom: 20px;
}

.view-essence-final.view-display-id-block_3 .non-highlighted {
	display: none;
}
.view-essence-final.view-display-id-block_3 .highlighted {
	background: #fff;
}

div[class*='field--name-field-essence-final-'] thead th:last-child { display: none; }
div[class*='field--name-field-essence-final-'] .paragraph-top {
	display: none;
}
[class*='field--name-field-essence-final-'] td.paragraph-bullet {
	display: none;
}

/* INTRIGUING LIST */
.view-word-research .view-footer {
	margin-top: 2em;
}

/* MASTER LIST */
.view-word-research .views-row .views-field-field-neighborhood-word-1 .field-content {
	font-weight: 600;
	text-transform: uppercase;
}
.view-word-research .views-row {
	margin-bottom: 2em;
}

/* FACILITATOR DASHBOARD */
.view-student-content .attachment {
	margin-top: 2em;
}
.view-student-content table > caption, #block-views-block-essence-final-block-4-2 h2.block-title {
	font-size: 32px;
	color: #000;
	font-weight: 700;
	text-transform: capitalize;
}
.view-student-content table tr td {
	width: auto;
}
.view-student-content td.views-field-edit-node, .view-student-content td.views-field-view-node {
	width: 50px;
}

@media all and (min-width:769px) {
	#main-menu-toggle {
		display: none;
	}
}

.main-container {
	padding-top: 50px;
}