/* ADH Practice Plugin
------------------------------------------- 

Table of contents
	- Single Page
	- Page Loop
	- Media Queries

------------------------------------------- */

/* Physicians Page Loop
-------------------------------------------- */

.physicians-container {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.physician {
	margin-bottom: 6%;
	text-align: center;
	width: 26%;
}

.physician-thumb-wrap {
	background-color: #0f4a80;
	border-radius: 50%;
	margin: 0 auto 24px;
	width: fit-content;
}

.physician-thumb-wrap img {
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

.physician-thumb-wrap a:hover img,
.physician-thumb-wrap a:focus img {
	opacity: .6;
}

.physician h2,
.elementor .physician h2 a {
	color: #4A4A4A;
	font-size: 24px;
	margin-bottom: 8px;
	text-decoration: none;
}

.provider-towns {
	font-style: italic;
	margin-bottom: 16px;
}

p.accepting-new-patients {
	color: #A32A5C;
	font-weight: 600;
	margin-bottom: 16px;
	text-transform: uppercase;
}

/* Single Physician
-------------------------------------------- */

.single-providers .subpage-header {
	margin-bottom: 104px;
}

.single-providers .subpage-header .wrap {
    padding: 24px 0 56px;
}

.single-providers .subpage-header .wrap:before {
    content: none;
}

.single-providers .subpage-header .subpage-header-content {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.single-providers .subpage-header img {
	border-radius: 50%;
	margin-bottom: -200px;
	max-height: 285px;
	max-width: 285px;
	position: relative;
	top: -40px;
}

.single-providers .subpage-header h1 {
	margin-left: 80px;
}

.single-providers .site-inner {
	padding: 80px 24px 120px;
}

.single-providers .entry-content,
.provider-content-row {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.provider-content-row {
	-webkit-flex-wrap:owrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* .provider-content-row div {
	margin: 24px 0 0;
	width: 48%;
} */

.single-providers .entry-content:before,
.single-providers .entry-content:after {
	display: none;
}

.provider-sidebar {
	background-color: #CDE7F4;
	border: 12px solid #F0FAFE;
	padding: 16px;
	text-align: center;
	width: 33%;
}

.provider-sidebar h2 {
	color: #4a4a4a;
	font-size: 24px;
}

.provider-sidebar h3 {
	color: #111;
	font-size: 20px;
	margin-bottom: 8px;
}

.provider-sidebar .button {
	margin-bottom: 12px;
}

.providers-location-phone {
	background-color: #fff;
	font-size: 24px;
	margin-bottom: 24px;
	padding: 8px;
}

.providers-location-phone a {
	text-decoration: none;
}

.providers-location-address {
	border-bottom: 2px solid #0F4A80;
	margin: 0 24px 24px;
	padding-bottom: 24px;
}

.providers-location-address:last-of-type {
	border-bottom: none;
	margin: 0 24px 0;
	padding-bottom: 0;
}

.provider-content {
	width: 63%;
}

.provider-fun-facts {
	border-bottom: 1px solid #CDE7F4;
	border-top: 1px solid #CDE7F4;
	margin: 40px 0 64px;
	padding: 24px 0;
}

.provider-fun-facts p:last-of-type {
	margin-bottom: 0;
}

.providers-conditions-diseases-container,
.providers-procedures-container {
	column-count: 2;
}

/* Single Conditions and Disease
-------------------------------------------- */

.tax-conditions-and-diseases .site-inner,
.tax-procedures .site-inner {
	padding: 80px 24px 120px;
}

.tax-conditions-and-diseases .content,
.tax-procedures .content {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.conditions-and-diseases-sidebar,
.procedures-sidebar {
	border-right: 2px solid #CDE7F4;
	padding-right: 4%;
	width: 33%;
}

.conditions-and-diseases-sidebar .button,
.procedures-sidebar .button,
.conditions-and-diseases-sidebar .related-physicians-wrap,
.procedures-sidebar .related-physicians-wrap,
.conditions-and-diseases-sidebar .helpful-links-wrap,
.procedures-sidebar .helpful-links-wrap,
.procedures-sidebar .hospital-affiliations,
.procedures-sidebar .surgical-centers {
	margin-bottom: 40px;
}

.conditions-and-diseases-sidebar li,
.procedures-sidebar li {
	margin-bottom: 16px;
}

.conditions-and-diseases-sidebar .helpful-links-wrap li:after,
.procedures-sidebar .helpful-links-wrap li:after {
	content: '\f35d';
	font-family: 'Font Awesome 5 Pro';
	font-size: 14px;
	margin-left: 8px;
}

.conditions-and-diseases-content,
.procedures-content {
	width: 63%;
}

.conditions-and-diseases-content ul,
.procedures-content ul {
	margin-bottom: 24px;
	padding-left: 24px;
}

.conditions-and-diseases-content ul li,
.procedures-content ul li {
	list-style-type: disc;
	margin-bottom: 8px;
}

.procedure-links-wrap {
	background-color: #F0FAFE;
	margin-bottom: 24px;
	padding: 40px;
}

.procedure-links-wrap ul {
	margin-bottom: 0;
	padding-left: 0;
}

.procedure-links-wrap ul li {
	list-style-type: none;
}

.procedure-links-wrap ul li a {
	text-decoration: none;
}

/* Conditions & Diseases
--------------------------------------------- */

.conditions-diseases-container,
.procedures-container {
	column-count: 2;
	column-gap: 32px;
	margin-top: 40px;
}

.condition-disease,
.procedure {
	border-top: 2px solid #E6E6E6;
}

.entry-content ul.conditions-diseases-container,
.entry-content ul.procedures-container {
	padding-left: 0;
}

.entry-content ul > li.condition-disease,
.entry-content ul > li.procedure {
	list-style-type: none;
	margin-bottom: 0;
}

.condition-disease span,
.procedure span {
	border-left: 4px solid transparent;
	display: inline-block;	
	padding: 16px;
	position: relative;
	width: 100%;
}

.condition-disease:hover span,
.procedure:hover span {
	border-left: 4px solid #0F4A80;
	color: #0F4A80;
	font-weight: 900;
}

.elementor .condition-disease span a,
.elementor .procedure span a {
	color: #4A4A4A;
	cursor: pointer;	
	text-decoration: none;
}

.elementor .condition-disease span a:after,
.elementor .procedure span a:after {
	bottom: 0;
	content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.elementor .condition-disease:hover span a,
.elementor .procedure:hover span a {
	color: #0F4A80;
}

li.no-pointer {
	pointer-events: none;
}

.treatment-row .conditions-diseases-container,
.treatment-row .procedures-container {
	column-count: 3;
}

.treatment-row .condition-disease,
.treatment-row .procedure {
	border-top: none;
}

.entry-content .treatment-row ul.conditions-diseases-container,
.entry-content .treatment-row ul.procedures-container {
	padding-left: 24px;
}

.entry-content .treatment-row ul > li.condition-disease,
.entry-content .treatment-row ul > li.procedure {
	list-style-type: disc;
	margin-bottom: 16px;
}

.treatment-row .condition-disease span,
.treatment-row .procedure span {
	border-left: none;	
	display: block;
	padding: 0;
}

.treatment-row .condition-disease:hover span,
.treatment-row .procedure:hover span {
	border-left: none;
	color: #0F4A80;
}

.elementor .treatment-row .condition-disease span a, 
.elementor .treatment-row .procedure span a {
	color: #0F4A80;
	text-decoration: underline;
}

/* Information
------------------------------------------- */

.single-information .entry-content {
	padding: 80px 0 120px;
}

.infromation-container {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 4%;
}

.infromation-container .information {
	margin: 0 0 4%;
	width: 48%;
}

.postid-798605 .entry-content {
	padding-bottom: 0;
}

/* Media Queries
------------------------------------------- */

@media only screen and (max-width: 960px) {

	.physician {
		width: 48%;
	}

}

@media only screen and (max-width: 768px) {

	.treatment-row .conditions-diseases-container,
	.treatment-row .procedures-container {
		column-count: 2;
	}

	.single-providers .subpage-header h1 {
		margin-left: 40px;
	}

	.single-providers .entry-content, 
	.provider-content-row,
	.tax-conditions-and-diseases .content,
	.tax-procedures .content {
        -webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.provider-sidebar,
	.provider-content,
	.provider-content-row div,
	.conditions-and-diseases-content, 
	.procedures-content,
	.conditions-and-diseases-sidebar, 
	.procedures-sidebar {
		width: 100%;
	}

	.conditions-and-diseases-sidebar, 
	.procedures-sidebar {
		border-right: none;
		border-top: 2px solid #CDE7F4;
		margin-top: 16px;
		padding-right: 0;
		padding-top: 40px;
	}

	.infromation-container .information {
		margin: 0 0 40px;
		width: 100%;
	}

}

@media only screen and (max-width: 500px) {

	.tax-conditions-and-diseases .site-inner,
	.tax-procedures .site-inner,
	.single-providers .site-inner {
		padding: 40px 24px 120px;
	}

	.treatment-row .conditions-diseases-container,
	.treatment-row .procedures-container,
	.conditions-diseases-container, 
	.procedures-container {
		column-count: 1;
	}

	.physician {
		margin-bottom: 40px;
		width: 100%;
	}

	.physician img {
		max-width: 185px;
	}
    
    .single-providers .subpage-header {
    	margin-bottom: 0;
    }

	.single-providers .subpage-header .subpage-header-content {
		display: block;
		text-align: center;
	}

	.single-providers .subpage-header img {
		margin-bottom: 24px;
		top: 0;
	}

	.single-providers .subpage-header h1 {
		font-size: 36px;
		margin-left: 0;
	}

	.providers-conditions-diseases-container,
	.providers-procedures-container {
		column-count: 1;
	}

}