/*
Theme Name: SpecialistOnCall
Description: Styles CSS
Version: 2.
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: specialistoncall
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.

SpecialistOnCall 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.com/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;
}

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;
}

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,
button,
input,
select,
textarea {
	color: #404040;
	color: #445678;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.8em;
}

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: #455560;
    opacity: 0.2;
    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. */
	/*width: auto;*/
	max-width: 100%; /* Adhere to container width. */
}

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;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
/*	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
*/}

/*button:hover,*/
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

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;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

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: royalblue;
}

a:visited {
	color: purple;
}

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

a:focus {
	outline: thin dotted;
}

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

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

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@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;
}

.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;
}


/*--------------------------------------------------------------
## Additional styling made by EV
--------------------------------------------------------------*/

.page-heading {
	display: flex;
	align-items: center;
}

.page-heading-cover {
	background-size: cover !important;
}

.page-heading > div {
	margin: 0 auto;
}

.page-heading h1 {
	color: white;
	text-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.flex {
	display: flex;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.center {
	margin-left: auto;
	margin-right: auto;
}

.section-margin {
	margin-top: 100px;
	margin-bottom: 100px;
}

.list-border {
	border-radius: 5px;
	border: 1px solid #dcdcdc;
	margin: 5px;
}

.pull-quotes {
	padding: 30px;
}

/* --------------------------------------------------------------
COLUMNS
-------------------------------------------------------------- */

.flex-column-1 .flex-column-child {
	margin: 10px;
	display: inline-block;
}

.flex-column-1,
.flex-column-4  {
	margin: 30px 30px 100px;
}

.flex-column-1 .flex-column-child {
	margin: 10px;
	display: inline-block;
}

.flex-column-4 .flex-column-child {
	margin: 10px;
	display: inline-block;
}

.flex-column-stretch {
	width: 100%;
	padding: 60px 0px;
	margin-bottom: 100px;
}

.flex-column-stretch .flex-column-child {
	margin: 0px 30px;
}

.section-text-content h1 {
	max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-image {
	width: 100%;
}

.section-image img {
	margin: 0 auto;
  display: block;
}

.flex-column-stretch .flex-column-child h2 {
	margin-top: 0px;
	margin-bottom: 30px;
	text-align: center;
}

.flex-center {
	display: flex;
	justify-content: center;
}

/* --------------------------------------------------------------
TYPOGRAPHY
-------------------------------------------------------------- */


p, span {
	font-weight: 300;
}

a:hover,
a:active {
	text-decoration: none !important;
}

/* --------------------------------------------------------------
RESULT LOOP: (Group)
- Single List
- Blog Posts
- Events Posts
- Press Release Posts
- Overview Page
-------------------------------------------------------------- */

/* FILTER BAR ------------------ */

.posts-filter-blog {
	position: relative;
}

.filter-bar {
	display: flex;
}

.filter-bar .filter-categories,
.filter-bar .filter-search,
.filter-bar .filter-subscribe {
	/*flex-grow: 1;*/
	cursor: pointer;
}

.filter-search input:focus,
.filter-subscribe input:focus {
	outline: none;
}

.filter-icons {
	width: 30px;
}

.filter-categories-menu {
	display: flex;
}

.section-filter .filter-bar span.active,
.filter-categories-menu .active {
	color: white;
}


.filter-categories-menu .active:hover {
	color: white;
	opacity: 0.90;
}

.filter-categories-menu-container {
	display: none;
}

.filter-categories-menu > span {
	background-color: #EAEFFA;
	padding: 5px 15px;
	margin: 5px;
	border-radius: 40px;
}

.filter-categories-menu > span:hover {
	color: #01c4bb;
	cursor: pointer;
}

.filter-bar .filter-button.active {
	color: white;
	background-color: #01c4bb;
}

.filter-bar .filter-button.active:hover {
	color: white;
	opacity: 0.90;
}

/* SINGLE LIST (General style for posts list) ------------------ */

.single-list-container {
	margin: 30px 30px 60px;
}

.single-list {
	margin-bottom: 7px;
}

.single-list-image {
	margin-bottom: 20px;
}

.single-list-content {
	padding-bottom: 30px;
}

.single-list-content h2 {
	margin-top: 5px;
}

.single-list-border {
	border-bottom: 2px solid #ededed;
	margin-bottom: 30px;
}

.single-list-bg-gray {
	background-color: #eff4f7;
}

.blog-list-content .cta,
.events-list-content .cta {
	max-width: 200px;
}

/* SINGLE LIST META  ------------------ */

ul.post-categories {
	list-style: none;
	display: inline-block;
	margin-left: 0px;
	margin-bottom: 10px;
	padding-left: 0px;
}

ul.post-categories li {
	display: inline-block;
	margin-left: 15px;
	color: #d3d3d3;
}

ul.post-categories li:first-child {
	margin-left: 0px;
}

ul.post-categories li a:link, .single-meta {
	color: #475468;
	font-size: 0.9rem;
    font-weight: 400;
	
}

ul.post-categories li a:hover, .single-meta:hover {
	color: #01c4bb;
}


/* --------------------------------------------------------------
SINGLE PAGE CONTENT
- BLOG POST
- EVENT PAGE
- PRESS RELEASE
-------------------------------------------------------------- */

.post-content {
	width: 100%;
	margin-top: 100px;
}

.post-content-main,
.post-content-side,
.press-release-content {
	margin: 30px 30px 60px;
}

.post-content-main > *,
.press-release-content > * {
	margin-bottom: 18px;
	text-align: left;
}

.post-content-main h1 {
	margin-top: 0px;
}

.post-content-main img {
	width: 100%;
}

.press-release-content h1 {
	text-align: left;
	margin-bottom: 10px;
}

.press-release-content h2{
	font-size: 1.2em;
	font-style: italic;
    margin-top: 0px;
}

.press-release-content img {
	margin: 30px auto 60px;
	display: block;
}

/* PAGINATION ------------------ */

.posts-pagination {
	margin: 60px 0px;
	padding: 0px 30px 60px;
	border-bottom:1px solid #cccccc;
}

.pagination-footer {
	display: flex;
	justify-content: center;
}

.pagination-footer a > span{
	height: 50px;
	width: 50px;
	border: 1px solid #01c4bb;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	text-align: center;
	vertical-align: middle;
	margin: 0 5px;
}

.pagination-footer a:last-child > span{
	border: none;
}

/* --------------------------------------------------------------
SOCIAL MEDIA SHARE TEMPLATE
-------------------------------------------------------------- */
.social-share-section {
	width: 90%;
	margin: 30px 30px 60px;
}

.social-share {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.social-share span {
	height: 50px;
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	margin-top: 10px;
	margin-right: 10px;
	padding-right: 5px;
	padding-left: 5px;
	color: white;
}

.social-share span:hover {
	opacity: 0.95;
}

.social-share-fb {
	background-color: #3b5998;
}

.social-share-tw {
	background-color: #00c1f7;
}

.social-share-li {
	background-color: #0083be;
}

/* --------------------------------------------------------------
NEXT AND PREV BLOG POSTS TEMPLATE
-------------------------------------------------------------- */
.next-prev-blog {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 30px;
}

.next-prev-blog div {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 50px;
	height: 100px;
	background-color: #e9e9e9;
	font-size: 36px;
}

.next-prev-blog a:link {
	color: #696969;
	opacity: 0.5;
}

.next-blog:hover a,
.prev-blog:hover a {
	color: #696969;
	opacity: 1;
}


/* --------------------------------------------------------------
TEXT CONTENT SECTION
-------------------------------------------------------------- */
.section-text-content {
	margin: 60px 30px 100px;
}

.section-text-content h1 {
	margin-top: 0px;
}

.section-text-content p {
	max-width: 700px;
	margin:0px auto 36px auto;
	/*text-align: center;*/
	text-align: left;
}

/* --------------------------------------------------------------
SUBJECT LIST CONTENT SECTION
TEXT LIST CONTENT SECTION
-------------------------------------------------------------- */

.section-text-list-container,
.section-subject-list-container {
	margin: 50px 30px 50px;
}

.section-text-list-container {
	max-width: 800px;
  margin-left: auto;
  margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

.soc-narrow {
	max-width: 800px;
}

.section-text-list-container > div,
.section-subject-list-container > div {
	margin-top: 30px;
	margin-bottom: 60px;
}

.section-subject-list-heading {
	text-align: center;
	display: block;
}

.section-subject-list-heading a {
	margin-left: auto;
	margin-right: auto;
}

.section-text-list-content,
.section-subject-list-content,
.section-subject-list-content-2,
.section-subject-list-content-3,
.section-subject-list-content-4,
.section-subject-list-content-6,
.section-banner-2 {
	display: block;
}

.section-text-list-content {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.subject-list {
	display: flex;
	margin-top: 10px;
	margin-bottom: 10px;
}

.text-list {
	display: flex;
	margin-top: 40px;
	margin-bottom: 10px;
}

.subject-list > div {
	display: inline-block;
	margin: 10px;
}

.text-list > div {
	display: inline-block;
}

.subject-list-image {
	min-width: 100px;
}

.text-list-image {
	font-size: 72px;
}

.subject-list-image img{
	width: 210px;
}

.text-list-content {
	margin: 10px 10px 10px 50px;
}

.text-list-content ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	font-weight: 100;
}

.section-text-list-container p .glyphicon {
	margin-right: 30px;
}

.text-list-content .glyphicon {
	margin-right: 10px;
}

.text-list-content li li {
  margin-left: 20px;
}

.section-text-list-content .glyphicon {
	color: #01c4bb;
}

.section-text-table-container .glyphicon-ok,
.section-text-list-container .glyphicon-ok {
	color: #a8b533;
}

.text-list img,
.subject-list img {
	/*border-radius: 50%;*/
}

.text-list .h2,
.text-list .h3,
.text-list p {
	margin: 0px 0px 5px;
}


.subject-list .h1,
.subject-list .h2,
.subject-list .h3,
.subject-list .h4,
.subject-list .h5 {
	margin-top: 0px;
}

.text-list p,
.subject-list p {
	/*margin-bottom: 0px;    */
	margin-bottom: 20px;
}

.section-profile-list-container {
	display: block;
}

.section-subject-list-content-2 .subject-list,
.section-subject-list-content-3 .subject-list,
.section-subject-list-content-4 .subject-list {
	display: block;
	margin-top: 10px;
	margin-bottom: 50px;
	text-align: center;
}

.section-subject-list-container.point-list-3 .subject-list,
.section-subject-list-container.point-list-5 .subject-list {
	display: block;
	text-align: center;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	margin: 5px;
	padding: 20px;
}

.section-subject-list-content-2 .subject-list > div,
.section-subject-list-content-3 .subject-list > div,
.section-subject-list-content-4 .subject-list > div,
.section-subject-list-content-6 .subject-list > div {
	display: block;
}

.section-subject-list-content-2 .subject-list .subject-list-content,
.section-subject-list-content-3 .subject-list .subject-list-content,
.section-subject-list-content-4 .subject-list .subject-list-content {
	margin-top: 20px;
}

.section-subject-list-content-2 .subject-list h3,
.section-subject-list-content-3 .subject-list h3,
.section-subject-list-content-4 .subject-list h3 {
	margin-bottom: 20px;
}

/* --------------------------------------------------------------
JOB / CAREER SECTION
CTA FORM PAGE
-------------------------------------------------------------- */


.cta-form,
.physician-job-form {
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	padding: 15px;
	max-width: 500px;
	margin: 0 auto;
}

.actions input[type="submit"]{
	background-color: #01c4bb;
	background-image: none;
	font-weight: 700 !important;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* WORKABLE SCRIPT OVERRIDE */
#whr_embed_hook .whr-group {
	font-size: 1.5em;
	font-weight: 300;
}

#whr_embed_hook .whr-group a {
	background-color: #F5F5F5;
	padding: 10px;
	display: block;
}

#whr_embed_hook ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

#whr_embed_hook .whr-items {
	display: flex;
	flex-wrap: wrap;
}

#whr_embed_hook .whr-item {
	width: 94%;
	border: 1px solid #DCDCDC;
	padding: 15px;
	margin: 10px;
	border-radius: 10px;
}

#whr_embed_hook .whr-title {
	margin-top: 5px;
}

/* --------------------------------------------------------------
CONTACT SECTION
-------------------------------------------------------------- */
.section-contact-list {
	display: block;
	margin: 30px 30px 50px;
}

.section-contact-list .subject-list {
	display: block;
	width: 100%;
}

.section-subject-list-content-2 .subject-list .contact-list {
	display: flex;
}

.contact-list .glyphicon {
	font-size: 36px;
  margin-right: 30px;
	color: #808080;
}

.section-contact-list .contact-form {
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	padding: 15px;
}

/* --------------------------------------------------------------
ABOUT SECTION
-------------------------------------------------------------- */

.pillars-container .flex-column-child{
	text-align: center;
}

.gold-seal-container {
	margin: 30px 30px 60px;
}

.gold-seal {
	display: flex;
	flex-wrap: wrap;
  margin-bottom: 7px;
}

.gold-seal-image {
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
}

.gold-seal-image img {
	max-width: 150px;
}

.gold-seal-content {
	padding-bottom: 30px;
	width: 100%;
}

.gold-seal-content h2 {
  margin-top: 5px;
}


/* --------------------------------------------------------------
RESOURCES SECTION
-------------------------------------------------------------- */




/* --------------------------------------------------------------
MODAL PROFILE SECTION
-------------------------------------------------------------- */

.modal-profile-image {
	padding: 30px 30px 0px;
	text-align: center;
}

.modal-profile-content {
	padding: 0px 30px 30px;
}

.modal-profile-content .h3,
.modal-profile-content .h4 {
	text-align: center;
}

/*Modal dialog override*/
.modal-dialog {
  max-width: 700px;
  margin: 60px auto;
}

/* --------------------------------------------------------------
SECTION TEXT TABLE SECTION
LIST STACK (Neurology Service)
BORDER BETWEEN
-------------------------------------------------------------- */
.section-text-table-container {
	margin-left: 30px;
	margin-right: 30px;
}

.section-text-table {
  padding-top: 20px;
}

.text-table-row {
	margin-bottom: 1.5em;
	border-bottom: 1px dotted #DCDCDC;
}

.list-check .text-table-row {
	margin-bottom: 0em;
}

.text-table-cell .h2 {
	margin-top: 0px;
}

.list-check .table-column-1 {
	font-size: 36px;
  display: flex;
  align-items: center;
	color: #808080;
}

.border-between .h3 {
  line-height: 1.8em;
}

.border-between .subject-list {
	border-right: 1px solid #dcdcdc;
	padding-left: 30px;
	padding-right: 30px;
}

.border-between .subject-list:last-child {
	border-right: none;
}

.border-between .h3 {
  line-height: 1.8em;
}

.border-between .subject-list-content .h3,
.border-between .subject-list-content {
	margin: 0px;
	padding: 0px;
}



/* --------------------------------------------------------------
FOOTER: JSI Gold Seal
-------------------------------------------------------------- */
.jsi-seal-container {
	display: flex;
	/*border: 1px solid rgba(255,255,255,0.2);*/
	padding: 15px;
	padding-left: 0px;
	margin-top: -10px;
	border-radius: 7px;
	margin-bottom: 20px;
	margin-right: 10px;
}

.jsi-seal-image {
	margin-right: 15px;
}

.jsi-seal-content {

}

/* --------------------------------------------------------------
SECTION: QUOTE
-------------------------------------------------------------- */
.quote-container {
	display: flex;
	width: 85%;
	margin-left: 30px;
	margin-right: 30px;
	padding: 30px;
  	border: 1px solid #dcdcdc;
	background-color: #f5f5f5;
  	border-radius: 5px;
}

.quote-image {
	width: 25%;
  	margin-right: 30px;
}

.quote-content {
	width: 75%;
}



/* --------------------------------------------------------------
SECTION: BANNER
-------------------------------------------------------------- */

.section-banner {
	width: auto;
	padding: 40px 50px 0px;
	margin-left: auto;
	margin-right: auto;
}

.section-banner h3, .section-banner .subject-list-image {
	text-align: center;
}

.section-banner-image .subject-list-image img {
	width: auto;
}

.section-banner-2 {
	padding: 50px;
}

.section-banner-2 .subject-list {
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 8px;
	display: inline-block;
	width: 97%;
	margin-left: 10px;
  	margin-right: 10px;
}

.section-banner-2DD .subject-list {
	display: flex;
}

.section-banner-2 .subject-list > div {
  	text-align: center;
	margin: 30px 20px 0px;
}

.section-banner-2 .subject-list h3,
.section-banner-2 .subject-list a {
	color: white;
}

.section-banner-2 .single-list-image {
	margin-bottom: 0px;
}

.section-banner-2 .subject-list img {
    width: auto;
    border-radius: 0px;
}

.section-banner-2 .single-list-cta {
    display: inline-block;
}

@media only screen and (min-width: 600px){
	.filter-meta-title {display: inline-block;}
	.section-subject-list-content-2 .subject-list, .section-subject-list-content-3 .subject-list, .section-subject-list-content-4 .subject-list {display: inline-block;width: 49%;vertical-align: top;}
	.text-list-image {width: 15%;}
	.text-list-content {width: 80%;}
	.point-list-3 .section-subject-list-content-3, .point-list-5 .section-subject-list-content-3 {display: flex; flex-wrap: wrap;}
	.point-list-3 .section-subject-list-content-3 .subject-list, .point-list-5 .section-subject-list-content-3 .subject-list {width: 47%;}
	.flex-column-4 {display: flex;}
	.flex-column-4 .flex-column-child {width: 25%;}
	.flex-column-4 .flex-column-child:first-child {margin-left: 0px;margin-right: 10px;}
	.flex-column-4 .flex-column-child:last-child {margin-left: 10px;margin-right: 0px;}
	.flex-column-stretch .flex-column-child {display: flex;justify-content: space-between;align-items: center;}
	.flex-column-stretch .flex-column-child h2 {margin-bottom: 0px;}
}

@media only screen and (min-width: 768px){
   .filter-bar .filter-search-dropdown {display: none;}
   .filter-bar .filter-search-input, .single-list-cta, .single-list, .post-content, .section-subject-list-content, .section-subject-list-content-6, .section-subject-list-content-3, .section-subject-list-content-4, .section-contact-list, .text-table-row, .list-check .table-column-2, .list-stack .table-column-2, .section-banner, .section-banner-2 .subject-list-container, .section-banner-2 .subject-list {display: flex;}
   .filter-bar .filter-search-input {width: 100%;}
   .single-list { -webkit-box-shadow: 0px 5px 44px -7px rgba(69,85,96,0.65); -moz-box-shadow: 0px 5px 44px -7px rgba(69,85,96,0.65); box-shadow: 0px 5px 44px -7px rgba(69,85,96,0.65);}
	.single-list-image { margin-bottom: 0px; width: 35%;}
	.single-list-content { width: 65%; padding: 30px;}
	.single-list-cta a:first-child > span{margin-right: 10px; font-size: 16px;font-weight: 700;}
	.single-list-cta a:first-child > .skew-arrow{font-size: 0.9em; -webkit-transform: rotate(40deg); -moz-transform: rotate(40deg); -o-transform: rotate(40deg); transform: rotate(40deg);}
	.single-meta {padding-top: 0px;}
	.blog-list-image,.events-list-image {width: 40%;}
	.post-content-main {width: 70%;}
	.post-content-side {width: 30%;}
	.press-release-content-main {max-width: 700px;margin: 0 auto;}
	.section-subject-list-content, .section-subject-list-content-6  {flex-wrap: wrap;}
	.subject-list {width: 50%;padding-left: 10px;padding-right: 10px;}
	.section-subject-list-content-3 {width: 100%;flex-wrap: wrap;}
	.section-subject-list-content-3 h1 {width: 100%;}
	.section-subject-list-content-3 .subject-list {width: 32%;}
	.point-list-3 .section-subject-list-content-3 .subject-list {width: 31%;}
	.point-list-5 .section-subject-list-content-3 .subject-list {width: 18%;}
	.section-subject-list-content-6 .subject-list {width: 48%;}
	.section-text-list-container.soc-narrow {max-width: 700px;}
	.section-subject-list-content-3 .list-border {width: 32%;}
	#whr_embed_hook .whr-item {width: 47%;}
	.gold-seal-container { max-width: 900px;margin-left: auto;margin-right: auto;padding-left: 30px;padding-right: 30px;}
	.gold-seal-image {margin-right: 30px;width: 15%;}
	.gold-seal-image img {max-width: 100%;}
	.gold-seal-content {margin-left: 30px;width: 75%;}
	.table-column-1 {width: 40%;padding-right: 2em;}
	.list-check .table-column-1, .list-stack .table-column-1 {padding-right: 2em;}
	.list-stack .table-column-1 {width: 70%;}
	.list-check .table-column-1 {width: 10%;}
	.table-column-2 {width: 60%;}
	.list-stack .table-column-2 {width: 30%;}
	.list-check .table-column-2 {width: 90%;}
	.quote-container {max-width: 700px;margin-left: auto;margin-right: auto;}
	.section-banner {align-items: flex-end;padding-top: 30px;}
	.section-banner > div {width: 50%;}
	.section-banner > .section-banner-content {padding-bottom: 40px;}
	.section-banner .single-list-cta a {margin-left: 0px;margin-right: 0px;}
	.section-banner-2 .subject-list {width: 47%;}
	.section-banner-2 .subject-list > div {width: 100%;}
}

@media only screen and (min-width: 1000px){
	.social-share-section {width: auto; margin: 30px auto; padding-left: 30px;}
	#whr_embed_hook .whr-item {width: 31%;}
	.section-text-table {max-width: 800px;margin-left: auto;margin-right: auto;}
}

@media only screen and (min-width: 1065px){
   .filter-bar .filter-subscribe-dropdown {display: none;}
   .single-list-container {max-width: 1000px;margin-left: auto;margin-right: auto;}
   .press-release-list .single-list-content {padding-top: 30px; padding-bottom: 30px;}
   .post-content {max-width: 1000px;margin: 60px auto 0px;}
   .section-text-content { max-width: 1000px; margin-left: auto; margin-right: auto;}
   .section-subject-list-container {display: flex;}
   .section-subject-list-container.point-list-3, .section-subject-list-container.point-list-5 {display: block;}
   .section-text-list-container, .section-subject-list-content-2,.section-subject-list-content-3,.section-subject-list-container, .section-banner-2 {max-width: 1000px;margin-left: auto;margin-right: auto;}
   .text-narrow {max-width: 800px;}
   .section-subject-list-heading {width: 30%;padding-left: 10px;padding-right: 10px;}
   .section-subject-list-heading h2, .section-subject-list-heading p {text-align: left;}
   .section-subject-list-heading a {margin-left: 0px;}
   .section-subject-list-content {width: 70%;}
   .section-subject-list-content-6 .subject-list {width: 32%;}
   .section-profile-list-container {max-width: 1000px;margin-left: auto;margin-right: auto;}
   .section-banner > .section-banner-content {padding-bottom: 50px;}
   .next-prev-blog div {position: fixed;}
   .next-blog {top: 500px;right: 0px;}
   .prev-blog {top: 500px;left: 0px;}
   .flex-column-1, .flex-column-4 { max-width: 1000px; margin-left: auto; margin-right: auto;}
	.flex-column-stretch .flex-column-child {max-width: 1000px;margin-left: auto;margin-right: auto;}
}

@media only screen and (min-width: 1280px){
	.social-share-section { position: fixed; top: 150px; left: 0px;}
	.social-share {display: block;}
}