/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: pinch-zoom; touch-action: pinch-zoom; /* direct pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}

	.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

	.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
	}

	.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
		text-align: center;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }

	.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
	
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
	
	.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }

	.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}

	.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
	.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(3a8a4582fe1dbc77086eccca317c459e.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
	
	
	/* theme: "dark-2" */

	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }


	/* theme: "dark-thick" */
	
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
	
	
	/* theme "rounded-dots-dark" */
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
		background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
		background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 8px;
		margin: 4px 0;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
	}

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 8px;
		margin: 4px auto;
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "3d-dark" */
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
	
	
	/* theme: "3d-thick-dark" */
	
	.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
	 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #fff; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
	
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "dark-3" */
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2);
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */
/**
  * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
  *
  * @version v3.3.4
  * @homepage https://bttstrp.github.io/bootstrap-switch
  * @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
  * @license Apache-2.0
  */

.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid;
  border-color: #ccc;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
  display: inline-block;
  top: 0;
  border-radius: 4px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
  text-align: center;
  z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #5bc0de;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #5cb85c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background: #f0ad4e;
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #d9534f;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #000;
  background: #eeeeee;
}
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  color: #333;
  background: #fff;
}
.bootstrap-switch span::before {
  content: "\200B";
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
  position: absolute !important;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container .toast {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 0.8;
}
#toast-container .toast:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
#toast-container .toast.toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container .toast.toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container .toast.toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container .toast.toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-center .toast,
#toast-container.toast-bottom-center .toast {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width .toast,
#toast-container.toast-bottom-full-width .toast {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
/*Animations*/
div[toast] {
  opacity: 1 !important;
}
div[toast].ng-enter {
  opacity: 0 !important;
  transition: opacity .3s linear;
}
div[toast].ng-enter.ng-enter-active {
  opacity: 1 !important;
}
div[toast].ng-leave {
  opacity: 1;
  transition: opacity .3s linear;
}
div[toast].ng-leave.ng-leave-active {
  opacity: 0 !important;
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container .toast.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline 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 {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  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"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
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;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(f4769f9bdb7466be65088239c12046d1.eot);
  src: url(f4769f9bdb7466be65088239c12046d1.eot?#iefix) format("embedded-opentype"), url(448c34a56d699c29117adc64c43affeb.woff2) format("woff2"), url(fa2772327f55d8198301fdb8bcfc8158.woff) format("woff"), url(e18bbf611f2a2e43afc071aa2f4e1512.ttf) format("truetype"), url(89889688147bd7575d6327160d64e760.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "*";
}
.glyphicon-plus:before {
  content: "+";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270F";
}
.glyphicon-glass:before {
  content: "\E001";
}
.glyphicon-music:before {
  content: "\E002";
}
.glyphicon-search:before {
  content: "\E003";
}
.glyphicon-heart:before {
  content: "\E005";
}
.glyphicon-star:before {
  content: "\E006";
}
.glyphicon-star-empty:before {
  content: "\E007";
}
.glyphicon-user:before {
  content: "\E008";
}
.glyphicon-film:before {
  content: "\E009";
}
.glyphicon-th-large:before {
  content: "\E010";
}
.glyphicon-th:before {
  content: "\E011";
}
.glyphicon-th-list:before {
  content: "\E012";
}
.glyphicon-ok:before {
  content: "\E013";
}
.glyphicon-remove:before {
  content: "\E014";
}
.glyphicon-zoom-in:before {
  content: "\E015";
}
.glyphicon-zoom-out:before {
  content: "\E016";
}
.glyphicon-off:before {
  content: "\E017";
}
.glyphicon-signal:before {
  content: "\E018";
}
.glyphicon-cog:before {
  content: "\E019";
}
.glyphicon-trash:before {
  content: "\E020";
}
.glyphicon-home:before {
  content: "\E021";
}
.glyphicon-file:before {
  content: "\E022";
}
.glyphicon-time:before {
  content: "\E023";
}
.glyphicon-road:before {
  content: "\E024";
}
.glyphicon-download-alt:before {
  content: "\E025";
}
.glyphicon-download:before {
  content: "\E026";
}
.glyphicon-upload:before {
  content: "\E027";
}
.glyphicon-inbox:before {
  content: "\E028";
}
.glyphicon-play-circle:before {
  content: "\E029";
}
.glyphicon-repeat:before {
  content: "\E030";
}
.glyphicon-refresh:before {
  content: "\E031";
}
.glyphicon-list-alt:before {
  content: "\E032";
}
.glyphicon-lock:before {
  content: "\E033";
}
.glyphicon-flag:before {
  content: "\E034";
}
.glyphicon-headphones:before {
  content: "\E035";
}
.glyphicon-volume-off:before {
  content: "\E036";
}
.glyphicon-volume-down:before {
  content: "\E037";
}
.glyphicon-volume-up:before {
  content: "\E038";
}
.glyphicon-qrcode:before {
  content: "\E039";
}
.glyphicon-barcode:before {
  content: "\E040";
}
.glyphicon-tag:before {
  content: "\E041";
}
.glyphicon-tags:before {
  content: "\E042";
}
.glyphicon-book:before {
  content: "\E043";
}
.glyphicon-bookmark:before {
  content: "\E044";
}
.glyphicon-print:before {
  content: "\E045";
}
.glyphicon-camera:before {
  content: "\E046";
}
.glyphicon-font:before {
  content: "\E047";
}
.glyphicon-bold:before {
  content: "\E048";
}
.glyphicon-italic:before {
  content: "\E049";
}
.glyphicon-text-height:before {
  content: "\E050";
}
.glyphicon-text-width:before {
  content: "\E051";
}
.glyphicon-align-left:before {
  content: "\E052";
}
.glyphicon-align-center:before {
  content: "\E053";
}
.glyphicon-align-right:before {
  content: "\E054";
}
.glyphicon-align-justify:before {
  content: "\E055";
}
.glyphicon-list:before {
  content: "\E056";
}
.glyphicon-indent-left:before {
  content: "\E057";
}
.glyphicon-indent-right:before {
  content: "\E058";
}
.glyphicon-facetime-video:before {
  content: "\E059";
}
.glyphicon-picture:before {
  content: "\E060";
}
.glyphicon-map-marker:before {
  content: "\E062";
}
.glyphicon-adjust:before {
  content: "\E063";
}
.glyphicon-tint:before {
  content: "\E064";
}
.glyphicon-edit:before {
  content: "\E065";
}
.glyphicon-share:before {
  content: "\E066";
}
.glyphicon-check:before {
  content: "\E067";
}
.glyphicon-move:before {
  content: "\E068";
}
.glyphicon-step-backward:before {
  content: "\E069";
}
.glyphicon-fast-backward:before {
  content: "\E070";
}
.glyphicon-backward:before {
  content: "\E071";
}
.glyphicon-play:before {
  content: "\E072";
}
.glyphicon-pause:before {
  content: "\E073";
}
.glyphicon-stop:before {
  content: "\E074";
}
.glyphicon-forward:before {
  content: "\E075";
}
.glyphicon-fast-forward:before {
  content: "\E076";
}
.glyphicon-step-forward:before {
  content: "\E077";
}
.glyphicon-eject:before {
  content: "\E078";
}
.glyphicon-chevron-left:before {
  content: "\E079";
}
.glyphicon-chevron-right:before {
  content: "\E080";
}
.glyphicon-plus-sign:before {
  content: "\E081";
}
.glyphicon-minus-sign:before {
  content: "\E082";
}
.glyphicon-remove-sign:before {
  content: "\E083";
}
.glyphicon-ok-sign:before {
  content: "\E084";
}
.glyphicon-question-sign:before {
  content: "\E085";
}
.glyphicon-info-sign:before {
  content: "\E086";
}
.glyphicon-screenshot:before {
  content: "\E087";
}
.glyphicon-remove-circle:before {
  content: "\E088";
}
.glyphicon-ok-circle:before {
  content: "\E089";
}
.glyphicon-ban-circle:before {
  content: "\E090";
}
.glyphicon-arrow-left:before {
  content: "\E091";
}
.glyphicon-arrow-right:before {
  content: "\E092";
}
.glyphicon-arrow-up:before {
  content: "\E093";
}
.glyphicon-arrow-down:before {
  content: "\E094";
}
.glyphicon-share-alt:before {
  content: "\E095";
}
.glyphicon-resize-full:before {
  content: "\E096";
}
.glyphicon-resize-small:before {
  content: "\E097";
}
.glyphicon-exclamation-sign:before {
  content: "\E101";
}
.glyphicon-gift:before {
  content: "\E102";
}
.glyphicon-leaf:before {
  content: "\E103";
}
.glyphicon-fire:before {
  content: "\E104";
}
.glyphicon-eye-open:before {
  content: "\E105";
}
.glyphicon-eye-close:before {
  content: "\E106";
}
.glyphicon-warning-sign:before {
  content: "\E107";
}
.glyphicon-plane:before {
  content: "\E108";
}
.glyphicon-calendar:before {
  content: "\E109";
}
.glyphicon-random:before {
  content: "\E110";
}
.glyphicon-comment:before {
  content: "\E111";
}
.glyphicon-magnet:before {
  content: "\E112";
}
.glyphicon-chevron-up:before {
  content: "\E113";
}
.glyphicon-chevron-down:before {
  content: "\E114";
}
.glyphicon-retweet:before {
  content: "\E115";
}
.glyphicon-shopping-cart:before {
  content: "\E116";
}
.glyphicon-folder-close:before {
  content: "\E117";
}
.glyphicon-folder-open:before {
  content: "\E118";
}
.glyphicon-resize-vertical:before {
  content: "\E119";
}
.glyphicon-resize-horizontal:before {
  content: "\E120";
}
.glyphicon-hdd:before {
  content: "\E121";
}
.glyphicon-bullhorn:before {
  content: "\E122";
}
.glyphicon-bell:before {
  content: "\E123";
}
.glyphicon-certificate:before {
  content: "\E124";
}
.glyphicon-thumbs-up:before {
  content: "\E125";
}
.glyphicon-thumbs-down:before {
  content: "\E126";
}
.glyphicon-hand-right:before {
  content: "\E127";
}
.glyphicon-hand-left:before {
  content: "\E128";
}
.glyphicon-hand-up:before {
  content: "\E129";
}
.glyphicon-hand-down:before {
  content: "\E130";
}
.glyphicon-circle-arrow-right:before {
  content: "\E131";
}
.glyphicon-circle-arrow-left:before {
  content: "\E132";
}
.glyphicon-circle-arrow-up:before {
  content: "\E133";
}
.glyphicon-circle-arrow-down:before {
  content: "\E134";
}
.glyphicon-globe:before {
  content: "\E135";
}
.glyphicon-wrench:before {
  content: "\E136";
}
.glyphicon-tasks:before {
  content: "\E137";
}
.glyphicon-filter:before {
  content: "\E138";
}
.glyphicon-briefcase:before {
  content: "\E139";
}
.glyphicon-fullscreen:before {
  content: "\E140";
}
.glyphicon-dashboard:before {
  content: "\E141";
}
.glyphicon-paperclip:before {
  content: "\E142";
}
.glyphicon-heart-empty:before {
  content: "\E143";
}
.glyphicon-link:before {
  content: "\E144";
}
.glyphicon-phone:before {
  content: "\E145";
}
.glyphicon-pushpin:before {
  content: "\E146";
}
.glyphicon-usd:before {
  content: "\E148";
}
.glyphicon-gbp:before {
  content: "\E149";
}
.glyphicon-sort:before {
  content: "\E150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\E151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152";
}
.glyphicon-sort-by-order:before {
  content: "\E153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\E154";
}
.glyphicon-sort-by-attributes:before {
  content: "\E155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\E156";
}
.glyphicon-unchecked:before {
  content: "\E157";
}
.glyphicon-expand:before {
  content: "\E158";
}
.glyphicon-collapse-down:before {
  content: "\E159";
}
.glyphicon-collapse-up:before {
  content: "\E160";
}
.glyphicon-log-in:before {
  content: "\E161";
}
.glyphicon-flash:before {
  content: "\E162";
}
.glyphicon-log-out:before {
  content: "\E163";
}
.glyphicon-new-window:before {
  content: "\E164";
}
.glyphicon-record:before {
  content: "\E165";
}
.glyphicon-save:before {
  content: "\E166";
}
.glyphicon-open:before {
  content: "\E167";
}
.glyphicon-saved:before {
  content: "\E168";
}
.glyphicon-import:before {
  content: "\E169";
}
.glyphicon-export:before {
  content: "\E170";
}
.glyphicon-send:before {
  content: "\E171";
}
.glyphicon-floppy-disk:before {
  content: "\E172";
}
.glyphicon-floppy-saved:before {
  content: "\E173";
}
.glyphicon-floppy-remove:before {
  content: "\E174";
}
.glyphicon-floppy-save:before {
  content: "\E175";
}
.glyphicon-floppy-open:before {
  content: "\E176";
}
.glyphicon-credit-card:before {
  content: "\E177";
}
.glyphicon-transfer:before {
  content: "\E178";
}
.glyphicon-cutlery:before {
  content: "\E179";
}
.glyphicon-header:before {
  content: "\E180";
}
.glyphicon-compressed:before {
  content: "\E181";
}
.glyphicon-earphone:before {
  content: "\E182";
}
.glyphicon-phone-alt:before {
  content: "\E183";
}
.glyphicon-tower:before {
  content: "\E184";
}
.glyphicon-stats:before {
  content: "\E185";
}
.glyphicon-sd-video:before {
  content: "\E186";
}
.glyphicon-hd-video:before {
  content: "\E187";
}
.glyphicon-subtitles:before {
  content: "\E188";
}
.glyphicon-sound-stereo:before {
  content: "\E189";
}
.glyphicon-sound-dolby:before {
  content: "\E190";
}
.glyphicon-sound-5-1:before {
  content: "\E191";
}
.glyphicon-sound-6-1:before {
  content: "\E192";
}
.glyphicon-sound-7-1:before {
  content: "\E193";
}
.glyphicon-copyright-mark:before {
  content: "\E194";
}
.glyphicon-registration-mark:before {
  content: "\E195";
}
.glyphicon-cloud-download:before {
  content: "\E197";
}
.glyphicon-cloud-upload:before {
  content: "\E198";
}
.glyphicon-tree-conifer:before {
  content: "\E199";
}
.glyphicon-tree-deciduous:before {
  content: "\E200";
}
.glyphicon-cd:before {
  content: "\E201";
}
.glyphicon-save-file:before {
  content: "\E202";
}
.glyphicon-open-file:before {
  content: "\E203";
}
.glyphicon-level-up:before {
  content: "\E204";
}
.glyphicon-copy:before {
  content: "\E205";
}
.glyphicon-paste:before {
  content: "\E206";
}
.glyphicon-alert:before {
  content: "\E209";
}
.glyphicon-equalizer:before {
  content: "\E210";
}
.glyphicon-king:before {
  content: "\E211";
}
.glyphicon-queen:before {
  content: "\E212";
}
.glyphicon-pawn:before {
  content: "\E213";
}
.glyphicon-bishop:before {
  content: "\E214";
}
.glyphicon-knight:before {
  content: "\E215";
}
.glyphicon-baby-formula:before {
  content: "\E216";
}
.glyphicon-tent:before {
  content: "\26FA";
}
.glyphicon-blackboard:before {
  content: "\E218";
}
.glyphicon-bed:before {
  content: "\E219";
}
.glyphicon-apple:before {
  content: "\F8FF";
}
.glyphicon-erase:before {
  content: "\E221";
}
.glyphicon-hourglass:before {
  content: "\231B";
}
.glyphicon-lamp:before {
  content: "\E223";
}
.glyphicon-duplicate:before {
  content: "\E224";
}
.glyphicon-piggy-bank:before {
  content: "\E225";
}
.glyphicon-scissors:before {
  content: "\E226";
}
.glyphicon-bitcoin:before {
  content: "\E227";
}
.glyphicon-btc:before {
  content: "\E227";
}
.glyphicon-xbt:before {
  content: "\E227";
}
.glyphicon-yen:before {
  content: "\A5";
}
.glyphicon-jpy:before {
  content: "\A5";
}
.glyphicon-ruble:before {
  content: "\20BD";
}
.glyphicon-rub:before {
  content: "\20BD";
}
.glyphicon-scale:before {
  content: "\E230";
}
.glyphicon-ice-lolly:before {
  content: "\E231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\E232";
}
.glyphicon-education:before {
  content: "\E233";
}
.glyphicon-option-horizontal:before {
  content: "\E234";
}
.glyphicon-option-vertical:before {
  content: "\E235";
}
.glyphicon-menu-hamburger:before {
  content: "\E236";
}
.glyphicon-modal-window:before {
  content: "\E237";
}
.glyphicon-oil:before {
  content: "\E238";
}
.glyphicon-grain:before {
  content: "\E239";
}
.glyphicon-sunglasses:before {
  content: "\E240";
}
.glyphicon-text-size:before {
  content: "\E241";
}
.glyphicon-text-color:before {
  content: "\E242";
}
.glyphicon-text-background:before {
  content: "\E243";
}
.glyphicon-object-align-top:before {
  content: "\E244";
}
.glyphicon-object-align-bottom:before {
  content: "\E245";
}
.glyphicon-object-align-horizontal:before {
  content: "\E246";
}
.glyphicon-object-align-left:before {
  content: "\E247";
}
.glyphicon-object-align-vertical:before {
  content: "\E248";
}
.glyphicon-object-align-right:before {
  content: "\E249";
}
.glyphicon-triangle-right:before {
  content: "\E250";
}
.glyphicon-triangle-left:before {
  content: "\E251";
}
.glyphicon-triangle-bottom:before {
  content: "\E252";
}
.glyphicon-triangle-top:before {
  content: "\E253";
}
.glyphicon-console:before {
  content: "\E254";
}
.glyphicon-superscript:before {
  content: "\E255";
}
.glyphicon-subscript:before {
  content: "\E256";
}
.glyphicon-menu-left:before {
  content: "\E257";
}
.glyphicon-menu-right:before {
  content: "\E258";
}
.glyphicon-menu-down:before {
  content: "\E259";
}
.glyphicon-menu-up:before {
  content: "\E260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014   \A0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: "\A0   \2014";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\A0";
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203A";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}/*!
 * angular-aside - v1.4.0
 * https://github.com/dbtek/angular-aside
 * 2017-03-27
 * Copyright (c) 2017 İsmail Demirbilek
 * License: MIT
 */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInTop {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInBottom {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}


@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
/* Common */

.ng-aside {
  overflow-y: auto;
  overflow-x: hidden;
}

.ng-aside .modal-dialog {
  position: absolute;
  margin: 0;
  padding: 0;
}

.ng-aside.fade .modal-dialog {
  -o-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -webkit-transition: none;
  transition: none;
  /*CSS transforms*/
  -o-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.ng-aside .modal-dialog .modal-content {
  overflow-y: auto;
  overflow-x: hidden;
  border: none;
  border-radius: 0;
}

/* Horizontal */

.ng-aside.horizontal {
  height: 100%;
}

.ng-aside.horizontal .modal-dialog .modal-content {
  height: 100%;
}

.ng-aside.horizontal .modal-dialog {
  position: absolute;
  top: 0;
  height: 100%;
}

.modal-open .ng-aside.horizontal.left .modal-dialog {
  animation: fadeOutLeft 250ms;
  -webkit-animation: fadeOutLeft 250ms;
  -moz-animation: fadeOutLeft 250ms;
  -o-animation: fadeOutLeft 250ms;
  -ms-animation: fadeOutLeft 250ms;
}

.ng-aside.horizontal.left.in .modal-dialog {
  animation: fadeInLeft 400ms;
  -webkit-animation: fadeInLeft 400ms;
  -moz-animation: fadeInLeft 400ms;
  -o-animation: fadeInLeft 400ms;
  -ms-animation: fadeInLeft 400ms;
}

.ng-aside.horizontal.left .modal-dialog {
  left: 0;
}

.ng-aside.horizontal.right .modal-dialog {
  animation: fadeOutRight 400ms;
  -webkit-animation: fadeOutRight 400ms;
  -moz-animation: fadeOutRight 400ms;
  -o-animation: fadeOutRight 400ms;
  -ms-animation: fadeOutRight 400ms;
}

.ng-aside.horizontal.right.in .modal-dialog {
  animation: fadeInRight 250ms;
  -webkit-animation: fadeInRight 250ms;
}

.ng-aside.horizontal.right .modal-dialog {
  right: 0;
}

/* Vertical */

.ng-aside.vertical {
  width: 100% !important;
  overflow: hidden;
}

.ng-aside.vertical .modal-dialog {
  left: 0;
  right: 0;
  width: 100% !important;
}

.ng-aside.vertical .modal-dialog .modal-content {
  max-height: 400px;
}

.ng-aside.vertical.top .modal-dialog {
  animation: fadeOutUp 250ms;
  -webkit-animation: fadeOutUp 250ms;
  -webkit-animation: fadeOutUp 250ms;
  -moz-animation: fadeOutUp 250ms;
  -o-animation: fadeOutUp 250ms;
  -ms-animation: fadeOutUp 250ms;
}

.ng-aside.vertical.top.in .modal-dialog {
  animation: fadeInTop 250ms;
  -webkit-animation: fadeInTop 250ms;
  -webkit-animation: fadeInTop 250ms;
  -moz-animation: fadeInTop 250ms;
  -o-animation: fadeInTop 250ms;
  -ms-animation: fadeInTop 250ms;
}

.ng-aside.vertical.bottom .modal-dialog {
  animation: fadeOutDown 250ms;
  -webkit-animation: fadeOutDown 250ms;
  -webkit-animation: fadeOutDown 250ms;
  -moz-animation: fadeOutDown 250ms;
  -o-animation: fadeOutDown 250ms;
  -ms-animation: fadeOutDown 250ms;
}
.ng-aside.vertical.bottom.in .modal-dialog {
  animation: fadeInBottom 250ms;
  -webkit-animation: fadeInBottom 250ms;
  -webkit-animation: fadeInBottom 250ms;
  -moz-animation: fadeInBottom 250ms;
  -o-animation: fadeInBottom 250ms;
  -ms-animation: fadeInBottom 250ms;
}

.ng-aside.vertical.bottom .modal-dialog {
  bottom: 0;
}

.ng-aside.vertical.top .modal-dialog {
  top: 0;
}

.ng-aside.vertical .modal-dialog .modal-content {
  width: 100%;
}/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.8 - 2017-04-18T05:43:43.881Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing.glyphicon {
    position: absolute;
    right: 0;
    padding: 8px 27px;
 }

@-webkit-keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.ui-select-spin {
  -webkit-animation: ui-select-spin 2s infinite linear;
  animation: ui-select-spin 2s infinite linear;
}

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}
/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */

.as-sortable-item, .as-sortable-placeholder {
    display: block;
}

.as-sortable-item {
    -ms-touch-action: none;
    touch-action: none;
    /* to disable context menu on iOS devices */
    -webkit-touch-callout: none;
}

.as-sortable-item-handle {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.as-sortable-placeholder {
}

.as-sortable-drag {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

.as-sortable-hidden {
    display: none !important;
}

.as-sortable-un-selectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}.colorpicker-visible,
.colorpicker-visible .dropdown-menu {
  display: block !important;
}
colorpicker-saturation {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAFJhJREFUeAGMU+/q4kAMzFYf4LgP96a+q4c+gSIqxf/r5maWDoTgz15gmM0kW5uMLa21v2b2G6jAG2iEzqUU6q5c/OlMuHtL/ULNd5TP6EJ1RP7NuXvKE397jmbg7MrzHI748T1UA3eopyGQV2qK1+vVHo/Hm1itVm0J7Q+afwGMmgeRphf7Noh6lCeuHJAvm/X8rAQNlw2VScoj6863OQjl2ZB3qkeu5Lh0RJ3qynuNjJA21FppQAHa8/l83263No5jOxwOttlsbL1e2xIXXpMZzzRsXoTw34bQgLiQbKh6M9SXDBSypn4XGOSkGUO1cJdn1Yh4/qYVgctmGSwXyARNcOSFRuBMHvA1GMzwy+Vix+PRdrvdYrvd2vl87oZYDCxBL9B/jEyopghzlNjL0DlB+gAoPNXyOfa3oA9puXonyVHzdH+g9MEISa5z0qUNkwkm6MJkxALg8mlMAxvNwBfhYLvf7w50vl6vBV9H2e/3BjYateQDY8gM5bmWovygdyEb87k/G5Zz9c/2zfEQFysO5nDJ6mMel91Z//pwFpygIWIaMXE3AoYssPBCI/B12DiONMT5VZxOJ0f+j/MyWo5chYGowfn/j03lNXBpl85Up8d46u6DChBMvKv2UePrrAsChtdLTi73oEBjFDYpmIp/KSgRhRw357sXuHLknRgI8d90F8QL761oI8iQeJqvUOGnAoEkgNblF13iiJASZCwhLkG+v7/Halvt5+enr7x+02lZOwKymJ7jMAXK32RxaXnNxfXzCOkCxTO2I3NiR0i9gAjQLLoVHkKG8pCi0UT4Q0h5xUFIlBJEYmg+1yg6TrUq+YfEWKK0lWsSS8+DkNvCWtvJXu0UbDyH/NYjoDHFybPd/cPeficiW5LvkVdBNY4UoIqOQMwPBXm9vUYIVCj3GkXCCo1tRS//uMhYoVG3q46HaBQtamESTs/+0o92hOTaBbqjBwpu8reCuzAP4rkXpQBzQwbhZxD7jNYEAS4CI2Rg4hLitPUor2hGh6j4hQ5FfWt8LQF+SwyJIpGUV05nu56VHqJhR8ybb+Q+/dnPYZYSigIICvY3xfYxCckz/qazprjDiFJ+5DWVwscaMpSDgkleI2uutaKk5kPFNTqO8pBDlBQZEqKvoJXp7+lxzx7Cuoqp2M7zlrm5JbH/9oZ/GLdzBGf9FNmmvPi+h2FXnm8L5WhdCMJNyr1D6yvKP1rFQYgSjWpteE0JMraEME8ykpzo/0/+wcg5yGHMooegQYIRyXU1i52tCSfn9oSQFH+Fe4jypxs3RHA+xNCcNUZ+BXRg7iu0lhgDAesisSfE6UA0iudz9sNHKChek5eBX9a+FwKkKQ+Nd6JljkLX6B4x2L8hhHOsVdhR4iHEEe1LeWJCSI2tCo9AU3OIKHGgbupv6NvyRciGgMzPPLP5LmhPdKTx8qgSWIXxVkZx8QJihmCvPP8nE6IRXniKT9GThhKF0QkZal3KQYcLgn+s8YwWJiNnLVL4mOz1b+4piM8/+YYb8xNlLoASXqC7c9DCOokhl4RAKgSkCNM9wklBOPL4BIJoblQggsb8Km9W/IlIJkKrPN4xEETPwtS3hczrp8//pxmzpoUIBfeSO8r8/OE59wgTIsnIb4yBj7Cft6pYI8Sbh5TBD749IANSlKPgJQQmrr0uUfjbCnlV/V9OCfLpDc9b0nw4x3bznAbWFAyfUeBLEIhA3uaCKifFyUBg8pg+Ro8nOCVOintKoy0xj5bFvhNCQMAfoUqgc8UwMRot8dWy/qPcDHQk5XkgOPD97//Gl/xC2kKlkhl2V4pMQmAON+22E+4XgIzMKYMSmp7S0ymTcpYEYM6eVjKlJV25HgYguZ6lD1hR4S4byoxRwMUQjm87MYVxrW19nCqbgTD4kSEde7FlxcF4tKDCPu41lBUKa7tjgGuHJuPCwpBPdcONuVTiMEMgbPpugJE0+GIRusL+yD9qGhrP05ClFHfOuppZeV4ZkgyJdJc3dkxh0+8YDBpbsyuxrXYzV4VfmJLFwxdAEq7azIj9Yw9AuUCjEL3I7pD1xgo0BPv5Y2U9MCBvegpGxq9/vK7BftOQssP3ueL+HfJwLkAqVLlgPH9CF7phgMoKj/X8EjiNCtGQHzFU9mM7gsR8W/5wkuZ9ZUKBcYuWdE3qU2YYqLIllfo5aog2m2haKnlsvP30YUHO+3f9Yu2GrNpW2rYV8id2bM/9KxBPc/QgZQT9AlotQRtgSls1pIDADvo+3hL0bXBU0yxqG4Fx2ZshdXSBaEjZYtIdh/uxQDOrpMV/Biatjj8nzRgq8p0Ud6w9fAwwe+9mSJPWUMWzPG+A21ZWG45nhoQp1RdaBZ1WYDteUQ4gffvH1jomTHlkxk9GTDi5AS0YAODxMoRjMiqsjq/MyqvFFJX9buv6+18Y8mwDyFRH7Dj+T1rBtYivRV1v9mHtiKhfD10QrRFdsxor9Z4bgChAtF22fLsv1sfsGL4B0grazi9DygpagZ0A2s2WBMBmLn0de15D11KG5WSAvh20rB92fEIVwk0jdV2qPdyWr4mYuw75NMua7FFtmZxbkN7qi4DSFgaqQjc75GwDwbgBMkMMAPfD6cR1wpl1o7GftDhMMSPaFmm05+Tv/HWW9aQXbMfiBAZ4cNLdnz6hyAyj7ki9oQYYqdYd4h405JRwXs4DhLKozKhzG65449eQ4i5nX2LKXYjCVDcWF58Y0uJvj2EpY2VN79NzjHlVF8E1M2JZxOzW62rIEhhlywoAMMhrS8dFBJhgMJx5aRxg/fv9rSW9WN7LeQxZPn4bo6ExYgppsWNkQIt2pOAU8DAK8Oh/yK7ECM8pCAboJDTRFNsJQ3ZkBdtFXgV+A5qAEasl4sk2WxjOzn9PY6sZ1ZxJD/p9FMwoc1pjLNhEbLd2eX2Kpv6Y+aSCn8OUxhqyGBOwS9fxUiwDPIXfZw2JeNs+hS2/2R6r2Lfv+S/ivt3PG7eHh3S/52EDDD0j5h9rStliJiQLc5/fW9wP0PNcfB77nmVpX6Js2WaOQwb9OrXLJ9UMz7UmuJaAQj7fjxi6V97wIGftsqVMwcGZN2ZTL30fr7IYkL4xpG/9Y9bV677pUYXfrHk5tzuvoS1aRPX9ScV+3+Mn1FU7YMR6GT8LEP38xs2OyzVZRjIz9mWrIV2lTYo6LLk3BKXGKCM47jycKCb4zb4GzBi0g3Ec0a9OsBVQQsp+YwTjo+Mr9C/MQluIJmIkYYvvzpL2RhuiKT1uttTrK+q74p8siUsR64/nlS3XedcfZgY6kfUsv/FOUZfOlwGTfjyPCxjrRDbCvMLr4vCc9kN26pBR7H8KuW0wHZrkYCzj2+z5WbPCoZM2rISeEwop48KRZdhiPtmYLXNSyZs91YAeH06dow/Vpg3o+W9a/hbgPI5jTnvdx5YxZUbrCY1V7De22qProHXrDL/9B8dlHIuM3QQqUxL7d/pLyyqrzKlV6/2O/F/GBXP6ochjYdiKvQ4saA1ddlTvY/bEkY9Wa1iLkEN2JVavOhxHRlvqMF/XAnEVOJgXy3fAhCgY0N8bC0Nnpl8Lw/bt2LnCnsENO6o5r7bMcn2hONzQswSK2WVbphBy2kcjGqqWNRJQfU6ALwFgHTlo41pWWaE+O4V2zuhYZ1jYinTnvVmcC0Oclck+MgTH1jZU9Ty/VWaUIS42JwFPpkiWyDiZafZDygiJTseTIrc/g5v1qYQ6kgVnT48A+bztNN774MD2U8kDphjxaP18nyGzZBGUh7Y9L1uGvIp6Mq3EePVl7Xxf2/pE9gWI2KTFX2J3xx8Z0jWvnv+VhaG6tr8vkccerdTfdvhaXzTlLUM8t6HNIa9a4DfuDYgCWEaUCQ5jBcz2YI43lgqsrRi21F+pRThPhW5NvqLDK0Nw5E7RV7DKjDreX69/ZVY14wGQ8+HN733OxHGci9MKTBlkMNCSMqJA/udFzgg5IWqXKW9pbwvDu9VxFIjREGtHAS1w7rs4bcXtpIEV1t7H9QdgfmPIGrTmKDAW+gmIFHxNaRl3iCKEvYcsjuPAgTEzQ5zO2SHY3q+FX98oqti8casANPRxL19nx34JWZ9XQJ4r+uOLpmwxZxGyZF8Bcb9lf+dUR0zZgjwCigMKmGltbXG/SzZmUzQlxzMzGCdcmVUDEH3OijXp7k5StNVSh7xnV6Nju98+MaTMaMjK+b7xCy2gD1vk+G54eVxM6PEzM2TLqjJk3IdR/4iG7RSF+y1klQk4jqGvb/h4n6TBQwHZ77GYE0alLzZOTOl1+ShiFvUyBYRJIvSC1PFPfYemMoW+EpWXtaznArCLitWSnX6BKnPOLkTWIT/3vB3SEFemqF+m0Bh7ZIoY13m7IfmhfyxNzsu90j/f65Bn5hSoMSHIvPE+nptWAKesbWRY6xJax/NG30AnvS4AAPkVEOuDmHBk3KJ+dsewIt41+3t8+kqRB85Sy82QAmZmpGrfGnfqejZrKlP8Rv+GIZ0nnWi/Ys74kWzs6Ly7INTfYvA4CshcGL6wpSJ8I1/GtLCs9ji0lQG+vgzBOkmInRh2a0Y1If0DYPmr5vTPwIv9hCWPXyBcjUGL+n+PhWEdL9Rhi390Wv2lxeHRjGZbYR0Os7DWgb0f15VVzPd5XVcgClAZ41se8uE/3efT7Eq7oQXk7xpSB3NcrfAYzGmFLUAL1MwYtabPjBeYXhcAAGolA3vSjJkZ88Zdx6+/pzrEaf35x9XeODgANYTlPox167cOfmJMAbnv4+1QGNA6pAwpg8qInhdAPa4GFTjrKQi5XSAsjrsf0qWSb3sjm+M4vQz5fNEaA1TGTMxo9vVu2wIATgWozlfavegXZJ7h/+3dYY7cOA7F8VQnu/e/5u4dtnqRwThD/KA/ywU0Jl9GQGCZkl0yHx9JSW4nGPRxKXuA8RzG/BygfJchBtujW5Ipzso9R5HGA998fC7MCMX2kYyrC+mrwd9z7+n5ZIMM9bODV8kYUjuEoeTPAyPemVxq0feB+cJ/xJYuKj3qFoL3r0khi4uHLEvLJwitTGlA4pz734whA7A+ElO05MEer2vLt9hPRgoQcVQmBUM6oNf7VxPlOXudyl7AYEI3Yk0z4TOYxXyEVDliCvOZp+NH8cmAEXNmevVk1p7fpr89MZyKP1l9xZIXzPmIdPmkkLlrqEL8bpbu8XUBJOTT+psdPAvPMV1LAnOlvgkIfyPoPsjxMxquUV2ncX/do65KmSvOriY70XSF2OecL0A7Yf08eYKMJeiHuFq7hE+A2V3WUGgE7sEKGHFjTuNKwAfp8HPGLRUA4N+GAv8QaOkqr91Yl9E+ActMDb059ktX92PIolQB+Hx9Ta9voeB8y/4A9mmCqjyzMvY5PhjHMchf7REHZNH15xSTIfafLss/R2hABEKmtPK5VwPszNms7xOwLB8VM5RrqZbprier+Ei/cncBZYzxQkCaIdv+uUvr9Mm3ViKmPIwBk0GAL7N0mRFjWh6z/+d0oRrAVGTMMSZwMwP9dOvW6077IcWUufB3cjnXUspxM2l+YvZwf2PHtFI+vEm/YMbhvGIJ/SI7Q4kyJGJVsk9mjIniD7Os27GEPjLiaLE323Nyimu85GXtMhM3kvs3F8BPsr+NISPNpR0WhKuaxvkSkIeu5PpW1rWqSrvnMqn+nvE4TxkymeA5zOnzcZnn34whtD281rb511sX+5mTPGVmrWWZP1vPd31Xix+gvMGcEwO9RycRvdFm7DH1TMB1VbqnQ1enDMYUWfNwtRelN1Nc32KVuIBA3qlxj6GMpZlhPYB4VIzyt4JhFyN+nXs/FH8vy5p7HlMZIjwyiGNGtCluDOrElNXKG+gEeAcw5j4HVygTbBf4qfTt/V7rP+YX5a7B+S1FFxFBvSeMs06/zfVk3f0Zf98gbJJge9WV6bKW9hP7vG8EeHcMUYxKOLkvY4D+WoDGMQO9TAt31oC2mysDAqhwaWBmf5iTACADEPZDZMJunYJG8NU9IburyOhztPgyjOt4igUE+3xW2SCYm7IFPQJ6z9SvclKKD6tchS0uyz4F/gocYDcjPLaRnTBIVzaex+Mp/pxiyXMAknvq5bZOR/vLBhX0oH8r/v6xx6d27x8FAgU3a2RixRCSooshjxUQPyV+zGooKD+PBUSwLmVfAWa09bOgZ9zQAwZMr/AcR1n10mWlHzaoNrv6WAogdazY9iXHUalOt+8FsJ8nt49rHYAMlxWAzBRYBWbATdkAVIujr22vLNd4Z+Z253pdh8quMQuMCp4NHUcA5PjWieDAjqByANJ1gRV0AcQ0yfioe6Rpldm2M6d/WuVHW7isUJ5lUV4yQ5mgC2y4SYGq/t5vjU8b4xmDynxo/TIi6iX7fgRk/ueQbrSMPY+rbrawAlfgFLA1nylSAHRbbjDj/n36ehk8ZBPome5eRZfV8w/lo+hK7Huso1TqgDkskvoat+L/X3QsGoDM2tHouKDcJmPWeT9kobMvXc+dwrkOhtJeK/Nm/XEXaCx01ssAWtc99rUOAJ6Uu/srhrQyWgn2g4K6GOvZL5TBwwSA742/x7ijZF3F7tfNUi7Lh5grvwbisoxwYReZamaf9VC8cWhVsAuV4Y5oYyaNcdAuoPa1TcPQZX3v/y16+N55kyFTGQIxNLcDpwIvFKe7cU7keHd2VMxrhR+Y+WXnx+xsrPbm4Mf+eTMn1mYGaFrjptDj/ZmkmjaXVWv19slxkTXJynCvnIdL8zdZOnn83A9ZFSTAB4VsSpGmyipunCjuGN9liwzZs8ddwQVEyzeyuGPYD7APuOS6o7aO9xWo/P3fbrnF8e5y2+7Lnamvyg8GKNeKog2m2NaW+SjwLCQhlr5/M6DamjnNlAbJLKtBaQZU226Ru2KbCe+Ph6Tk3THb/v5zaRQ7yz4M6usa1HywJU50n+7bgb4Z0sC2XIa8P56+JvvuWHTaa6kgbLn7ELvV9bU76A0+hpTKuh3PoryDwKvrflwx5F/1IMaK9wrK+h3ltf/+bb8d5d8/XdZ//txS/N9hxfdvGNg/ZQT1//4fih7V/hdi/qwAAAAASUVORK5CYII=");
  background-size: contain;
  cursor: crosshair;
  float: left;
}
colorpicker-saturation i {
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}
colorpicker-saturation i::after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #fff;
  border-radius: 5px;
}
colorpicker-hue,
colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}
colorpicker-hue i,
colorpicker-alpha i {
  display: block;
  height: 2px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}
colorpicker-hue {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEUA/z8AuP//JAAA/33/3AAA/1ABAv8A/7r/AH7/jgD2AP8A//j/AEHmAP/XAP/HAP+4AP//ALyoAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8ATv//AG7/cAD/vgD/APoAmv//ADH/AKwB/wMA5//4Eg4AL///AOr/UQD/nwAA/27/7AAA/+kAe/8Ayf8A/5sA/zEA/6z/ABEAEP8A/17/MgAA/9n/ACL/gAD/AJ0AXP8Aqv//AMoA/yHqFBb/zAD/AGD/ANsA9//1/wDk/wDV/wDF/wC3/wD/AI2m/wD/FACY/wCI/wB5/wBp/wD/YgBb/wBK/wA8/wAs/wAd/wAN/wAAPv8A/xH/AFAAi///rQAA/8r/+gAA1///QwAAH/8Abf8A/43c/JNGAAAAiUlEQVR4AQXBg2EDAAAAsMy2bds2ttp2+/8PTby79mDLsKJPq/oFPdk24dWXAxsGjRg1ZtykKdNmzJozb8GiJct63WjYl7fiWdOZkk0vOpyr2fVtyKl7FX2uXGjpcuxWDy69KdiRk5WRlpIUFxMVERLw78+vH1Unun1YV3ZkwKM1CYfq7nQK22sD03ITV2Aqp0IAAAAASUVORK5CYII=");
  background-size: contain;
}
colorpicker-alpha {
  display: none;
}
colorpicker-alpha,
.colorpicker-color {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAMAAACIElGlAAADAFBMVEUAAADT09PT09P////T09P////e3t7q6urT09Px8fHT09P////////T09PT09P////////T09PT09P////////////T09PT09P////////////T09P////T09PT09PT09P////T09PT09P////////////////T09P////T09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09P////T09P////////////T09PT09P////T09P////////////////////T09P////////T09PT09P////////////////////////T09PT09P////////////////////////T09PT09P////T09PT09P////////T09P////////////T09P////////T09P////T09P////T09P////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////////////////T09PT09P////////////T09P////////T09P////T09PT09PT09P////////T09P////////T09P////T09PT09P////////////////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////T09P////T09PT09PT09PT09PT09P////////////////////////////////////T09P////T09P////T09P////T09PT09P////////////T09P////T09P////T09P////////////T09PT09P////////////////T09PT09P////T09P////T09PT09P////T09P////T09PT09P////T09PT09PT09PT09P////T09PT09P////////////T09PT09P////T09P////////T09MQsm1FAAABAHRSTlMAgJN8/vcDAfcCnJyGaZmZlomGk4yJOmM/eTxs8wY0YDFC7HNdLx18n5/7aUvzCcW9+qKiK8P0ZiltRwfdw/n8Px3WduJjItj78ss5PDHUNELbwP5wplA2FglEVwvkqNarCs4Z7b2sDLgQ0xNdyLrr0eLLUeW1Vs5TWQLwjPI3ZvQGdvxFyFrAeevaLCLvGd0kpRskGyf4qK605xKvFrGyDRHnBYMEkJaDkIBvB/gpH99O6CrbIC4nH3Lg2SXp4A7Qul/GDEgPSlMQ6LjqFU0SjyCCj5V/gnBN7xglL3O70WBU7gjFFEfft0sPTo1ndRipwXr2yRemWRVENq+ytbGuxGaWGQAAAnpJREFUeNpNxmdcDHAAxvEHOWXvmXX23ntv2XvvMg/Z44x0KaRBSnfcKSqlnYZKp1QqGpT20KZh783/eePj+3vzw3/q/AM9iURPTy6XS+RwcXNzcZMQTE1dTE3bE7y9S0u9xxD600rCGtpI2ErOsbGxzoiMrIqscnaOi4vDdnp4XYSrguwxQSb7KpMllycnl2MFaTSaTxrY5NrY5BoKb2BnZ2doZ29vb2OPSdSd4Bcc7OcXGhqamgqrYCsrq+mEiEtC3gUBDg55Dg53IkQYSYG+gb6+GEqB5wV0o5D8/JAQdKK5hA40n3BS+L6c0JJmE+ZQW8JEak1YQJ0Jq+jbaQEPnotGE+IrK+Pj+xKqU6pTUrIDAgKysZ+WEY5QQkJxcQIO0WrCUbL4YmFhgZ3UlVAUHR1d1JEwjVoRRpDJKxMTE/ShBoRR1I6whLyyvLyyUFAQFhbWhTCFFArFawXOCu/bEHpQLYKnZ0aGZw2CR1qah0dmpqurK+pTU0ILakJoTi+PC7j5RHTrqQg1qRkh3T3d3b0xoSE1ItSleoSe1IswmIYQPl8UlhLWkaOj41tHbKENBLX6j1qt/KFUKnFN+Onk9NvJCQdJpfqlUqGiIjExcRthN91/JsJmGkhYRO/OCBhHwwgxMWUxZQMIu8j8o7m5OfbRLMJh2kTYQ1FRhYVR2EHzCOtpMmEG3SUsJEvLoKAg2Prb2tqOJYSH+/uH33shwlTaS1hLBwhX6AYX2tuiRwStVntOa5yUZJwEqbREKjUi5Bjl5BhZW1uXWOMYGRBOnNDX1zfoxz1FwwkfSJfgo6vr41P7soBBNJ7Qm2YSzHTMzMwmEHRoMf0Fm5mYOUrzNBYAAAAASUVORK5CYII=");
  background-size: 10px 100%;
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
.colorpicker colorpicker-hue,
.colorpicker colorpicker-alpha,
.colorpicker colorpicker-saturation {
  position: relative;
}
.colorpicker input {
  width: 100px;
  font-size: 11px;
  color: #000;
  background-color: #fff;
}
.colorpicker.alpha {
  min-width: 140px;
}
.colorpicker.alpha colorpicker-alpha {
  display: block;
}
.colorpicker.dropdown {
  position: absolute;
}
.colorpicker.colorpicker-fixed-position {
  position: fixed;
}
.colorpicker .dropdown-menu::after,
.colorpicker .dropdown-menu::before {
  content: '';
  display: inline-block;
  position: absolute;
}
.colorpicker .dropdown-menu::after {
  clear: both;
  border: 6px solid transparent;
  top: -5px;
  left: 7px;
}
.colorpicker .dropdown-menu::before {
  border: 7px solid transparent;
  top: -6px;
  left: 6px;
}
.colorpicker .dropdown-menu {
  position: static;
  top: 0;
  left: 0;
  min-width: 129px;
  padding: 4px;
  margin-top: 0;
}
.colorpicker-position-top .dropdown-menu::after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: auto;
  bottom: -5px;
}
.colorpicker-position-top .dropdown-menu::before {
  border-top: 7px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  top: auto;
  bottom: -6px;
}
.colorpicker-position-right .dropdown-menu::after {
  border-right: 6px solid #fff;
  border-left: 0;
  top: 11px;
  left: -5px;
}
.colorpicker-position-right .dropdown-menu::before {
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  top: 10px;
  left: -6px;
}
.colorpicker-position-bottom .dropdown-menu::after {
  border-bottom: 6px solid #fff;
  border-top: 0;
}
.colorpicker-position-bottom .dropdown-menu::before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
}
.colorpicker-position-left .dropdown-menu::after {
  border-left: 6px solid #fff;
  border-right: 0;
  top: 11px;
  left: auto;
  right: -5px;
}
.colorpicker-position-left .dropdown-menu::before {
  border-left: 7px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  top: 10px;
  left: auto;
  right: -6px;
}
colorpicker-preview {
  display: block;
  height: 10px;
  margin: 5px 0 3px 0;
  clear: both;
  background-position: 0 100%;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
/* nvd3 version 1.8.6 (https://github.com/novus/nvd3) 2017-08-23 */
.nvd3 .nv-axis {
    pointer-events:none;
    opacity: 1;
}

.nvd3 .nv-axis path {
    fill: none;
    stroke: #000;
    stroke-opacity: .75;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis path.domain {
    stroke-opacity: .75;
}

.nvd3 .nv-axis.nv-x path.domain {
    stroke-opacity: 0;
}

.nvd3 .nv-axis line {
    fill: none;
    stroke: #e5e5e5;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis .zero line,
    /*this selector may not be necessary*/ .nvd3 .nv-axis line.zero {
    stroke-opacity: .75;
}

.nvd3 .nv-axis .nv-axisMaxMin text {
    font-weight: bold;
}

.nvd3 .x  .nv-axis .nv-axisMaxMin text,
.nvd3 .x2 .nv-axis .nv-axisMaxMin text,
.nvd3 .x3 .nv-axis .nv-axisMaxMin text {
    text-anchor: middle;
}

.nvd3 .nv-axis.nv-disabled {
    opacity: 0;
}

.nvd3 .nv-bars rect {
    fill-opacity: .75;

    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-bars rect.hover {
    fill-opacity: 1;
}

.nvd3 .nv-bars .hover rect {
    fill: lightblue;
}

.nvd3 .nv-bars text {
    fill: rgba(0,0,0,0);
}

.nvd3 .nv-bars .hover text {
    fill: rgba(0,0,0,1);
}

.nvd3 .nv-multibar .nv-groups rect,
.nvd3 .nv-multibarHorizontal .nv-groups rect,
.nvd3 .nv-discretebar .nv-groups rect {
    stroke-opacity: 0;

    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-multibar .nv-groups rect:hover,
.nvd3 .nv-multibarHorizontal .nv-groups rect:hover,
.nvd3 .nv-candlestickBar .nv-ticks rect:hover,
.nvd3 .nv-discretebar .nv-groups rect:hover {
    fill-opacity: 1;
}

.nvd3 .nv-discretebar .nv-groups text,
.nvd3 .nv-multibarHorizontal .nv-groups text {
    font-weight: bold;
    fill: rgba(0,0,0,1);
    stroke: rgba(0,0,0,0);
}

/* boxplot CSS */
.nvd3 .nv-boxplot circle {
  fill-opacity: 0.5;
}

.nvd3 .nv-boxplot circle:hover {
  fill-opacity: 1;
}

.nvd3 .nv-boxplot rect:hover {
  fill-opacity: 1;
}

.nvd3 line.nv-boxplot-median {
  stroke: black;
}

.nv-boxplot-tick:hover {
  stroke-width: 2.5px;
}
/* bullet */
.nvd3.nv-bullet { font: 10px sans-serif; }
.nvd3.nv-bullet .nv-measure { fill-opacity: .8; }
.nvd3.nv-bullet .nv-measure:hover { fill-opacity: 1; }
.nvd3.nv-bullet .nv-marker { stroke: #000; stroke-width: 2px; }
.nvd3.nv-bullet .nv-markerTriangle { stroke: #000; fill: #fff; stroke-width: 1.5px; }
.nvd3.nv-bullet .nv-markerLine { stroke: #000; stroke-width: 1.5px; }
.nvd3.nv-bullet .nv-tick line { stroke: #666; stroke-width: .5px; }
.nvd3.nv-bullet .nv-range.nv-s0 { fill: #eee; }
.nvd3.nv-bullet .nv-range.nv-s1 { fill: #ddd; }
.nvd3.nv-bullet .nv-range.nv-s2 { fill: #ccc; }
.nvd3.nv-bullet .nv-title { font-size: 14px; font-weight: bold; }
.nvd3.nv-bullet .nv-subtitle { fill: #999; }

.nvd3.nv-bullet .nv-range {
    fill: #bababa;
    fill-opacity: .4;
}

.nvd3.nv-bullet .nv-range:hover {
    fill-opacity: .7;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect {
    stroke: #d62728;
    fill: #d62728;
}

.with-transitions .nv-candlestickBar .nv-ticks .nv-tick {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-candlestickBar .nv-ticks line {
    stroke: #333;
}

.nv-force-node {
    stroke: #fff;
    stroke-width: 1.5px;
}

.nv-force-link {
    stroke: #999;
    stroke-opacity: .6;
}

.nv-force-node text {
    stroke-width: 0px;
}

.nvd3 .nv-legend .nv-disabled rect {
    /*fill-opacity: 0;*/
}

.nvd3 .nv-check-box .nv-box {
    fill-opacity:0;
    stroke-width:2;
}

.nvd3 .nv-check-box .nv-check {
    fill-opacity:0;
    stroke-width:4;
}

.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check {
    fill-opacity:0;
    stroke-opacity:0;
}

.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check {
    opacity: 0;
}

/* line plus bar */
.nvd3.nv-linePlusBar .nv-bar rect {
    fill-opacity: .75;
}

.nvd3.nv-linePlusBar .nv-bar rect:hover {
    fill-opacity: 1;
}
.nvd3 .nv-groups path.nv-line {
    fill: none;
}

.nvd3 .nv-groups path.nv-area {
    stroke: none;
}

.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point {
    fill-opacity: .5 !important;
    stroke-opacity: .5 !important;
}


.with-transitions .nvd3 .nv-groups .nv-point {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-scatter .nv-groups .nv-point.hover,
.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 7px;
    fill-opacity: .95 !important;
    stroke-opacity: .95 !important;
}


.nvd3 .nv-point-paths path {
    stroke: #aaa;
    stroke-opacity: 0;
    fill: #eee;
    fill-opacity: 0;
}


.nvd3 .nv-indexLine {
    cursor: ew-resize;
}

/********************
 * SVG CSS
 */

/********************
  Default CSS for an svg element nvd3 used
*/
svg.nvd3-svg {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block;
    width:100%;
    height:100%;
}

/********************
  Box shadow and border radius styling
*/
.nvtooltip.with-3d-shadow, .with-3d-shadow .nvtooltip {
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border-radius: 5px;
}


.nvd3 text {
    font: normal 12px Arial, sans-serif;
}

.nvd3 .title {
    font: bold 14px Arial, sans-serif;
}

.nvd3 .nv-background {
    fill: white;
    fill-opacity: 0;
}

.nvd3.nv-noData {
    font-size: 18px;
    font-weight: bold;
}


/**********
*  Brush
*/

.nv-brush .extent {
    fill-opacity: .125;
    shape-rendering: crispEdges;
}

.nv-brush .resize path {
    fill: #eee;
    stroke: #666;
}


/**********
*  Legend
*/

.nvd3 .nv-legend .nv-series {
    cursor: pointer;
}

.nvd3 .nv-legend .nv-disabled circle {
    fill-opacity: 0;
}

/* focus */
.nvd3 .nv-brush .extent {
    fill-opacity: 0 !important;
}

.nvd3 .nv-brushBackground rect {
    stroke: #000;
    stroke-width: .4;
    fill: #fff;
    fill-opacity: .7;
}

/**********
*  Print
*/

@media print {
    .nvd3 text {
        stroke-width: 0;
        fill-opacity: 1;
    }
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive {
    stroke: #2ca02c;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative {
    stroke: #d62728;
}


.nvd3 .background path {
    fill: none;
    stroke: #EEE;
    stroke-opacity: .4;
    shape-rendering: crispEdges;
}

.nvd3 .foreground path {
    fill: none;
    stroke-opacity: .7;
}

.nvd3 .nv-parallelCoordinates-brush .extent {
    fill: #fff;
    fill-opacity: .6;
    stroke: gray;
    shape-rendering: crispEdges;
}

.nvd3 .nv-parallelCoordinates .hover  {
    fill-opacity: 1;
	stroke-width: 3px;
}


.nvd3 .missingValuesline line {
  fill: none;
  stroke: black;
  stroke-width: 1;
  stroke-opacity: 1;
  stroke-dasharray: 5, 5;
}

.nvd3.nv-pie path {
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-pie .nv-pie-title {
    font-size: 24px;
    fill: rgba(19, 196, 249, 0.59);
}

.nvd3.nv-pie .nv-slice text {
    stroke: #000;
    stroke-width: 0;
}

.nvd3.nv-pie path {
    stroke: #fff;
    stroke-width: 1px;
    stroke-opacity: 1;
}

.nvd3.nv-pie path {
    fill-opacity: .7;
}

.nvd3.nv-pie .hover path {
    fill-opacity: 1;
}

.nvd3.nv-pie .nv-label {
    pointer-events: none;
}

.nvd3.nv-pie .nv-label rect {
    fill-opacity: 0;
    stroke-opacity: 0;
}

/* scatter */
.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 20px;
    stroke-opacity: .5;
}

.nvd3 .nv-scatter .nv-point.hover {
    fill-opacity: 1;
}

.nv-noninteractive {
    pointer-events: none;
}

.nv-distx, .nv-disty {
    pointer-events: none;
}

/* sparkline */
.nvd3.nv-sparkline path {
    fill: none;
}

.nvd3.nv-sparklineplus g.nv-hoverValue {
    pointer-events: none;
}

.nvd3.nv-sparklineplus .nv-hoverValue line {
    stroke: #333;
    stroke-width: 1.5px;
}

.nvd3.nv-sparklineplus,
.nvd3.nv-sparklineplus g {
    pointer-events: all;
}

.nvd3 .nv-hoverArea {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-sparklineplus .nv-xValue,
.nvd3.nv-sparklineplus .nv-yValue {
    stroke-width: 0;
    font-size: .9em;
    font-weight: normal;
}

.nvd3.nv-sparklineplus .nv-yValue {
    stroke: #f66;
}

.nvd3.nv-sparklineplus .nv-maxValue {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-sparklineplus .nv-minValue {
    stroke: #d62728;
    fill: #d62728;
}

.nvd3.nv-sparklineplus .nv-currentValue {
    font-weight: bold;
    font-size: 1.1em;
}
/* stacked area */
.nvd3.nv-stackedarea path.nv-area {
    fill-opacity: .7;
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-stackedarea path.nv-area.hover {
    fill-opacity: .9;
}


.nvd3.nv-stackedarea .nv-groups .nv-point {
    stroke-opacity: 0;
    fill-opacity: 0;
}

.nvtooltip {
    position: absolute;
    background-color: rgba(255,255,255,1.0);
    color: rgba(0,0,0,1.0);
    padding: 1px;
    border: 1px solid rgba(0,0,0,.2);
    z-index: 10000;
    display: block;

    font-family: Arial, sans-serif;
    font-size: 13px;
    text-align: left;
    pointer-events: none;

    white-space: nowrap;

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;
}

.nvtooltip {
    background: rgba(255,255,255, 0.8);
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 4px;
}

/*Give tooltips that old fade in transition by
    putting a "with-transitions" class on the container div.
*/
.nvtooltip.with-transitions, .with-transitions .nvtooltip {
    transition: opacity 50ms linear;

    transition-delay: 200ms;
}

.nvtooltip.x-nvtooltip,
.nvtooltip.y-nvtooltip {
    padding: 8px;
}

.nvtooltip h3 {
    margin: 0;
    padding: 4px 14px;
    line-height: 18px;
    font-weight: normal;
    background-color: rgba(247,247,247,0.75);
    color: rgba(0,0,0,1.0);
    text-align: center;

    border-bottom: 1px solid #ebebeb;

    border-radius: 5px 5px 0 0;
}

.nvtooltip p {
    margin: 0;
    padding: 5px 14px;
    text-align: center;
}

.nvtooltip span {
    display: inline-block;
    margin: 2px 0;
}

.nvtooltip table {
    margin: 6px;
    border-spacing:0;
}


.nvtooltip table td {
    padding: 2px 9px 2px 0;
    vertical-align: middle;
}

.nvtooltip table td.key {
    font-weight: normal;
}

.nvtooltip table td.key.total {
    font-weight: bold;
}

.nvtooltip table td.value {
    text-align: right;
    font-weight: bold;
}

.nvtooltip table td.percent {
    color: darkgray;
}

.nvtooltip table tr.highlight td {
    padding: 1px 9px 1px 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-top-width: 1px;
}

.nvtooltip table td.legend-color-guide div {
    width: 8px;
    height: 8px;
    vertical-align: middle;
}

.nvtooltip table td.legend-color-guide div {
    width: 12px;
    height: 12px;
    border: 1px solid #999;
}

.nvtooltip .footer {
    padding: 3px;
    text-align: center;
}

.nvtooltip-pending-removal {
    pointer-events: none;
    display: none;
}


/****
Interactive Layer
*/
.nvd3 .nv-interactiveGuideLine {
    pointer-events:none;
}

.nvd3 line.nv-guideline {
    stroke: #ccc;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  width: 278px;
  padding: 4px;
  margin-top: 1px;
  top: 100px;
  left: 20px;
  /* Calendars */ }
  .daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: ''; }
  .daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc; }
  .daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent; }
  .daterangepicker.opensleft:before {
    right: 9px; }
  .daterangepicker.opensleft:after {
    right: 10px; }
  .daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.opensright:before {
    left: 9px; }
  .daterangepicker.opensright:after {
    left: 10px; }
  .daterangepicker.dropup {
    margin-top: -5px; }
    .daterangepicker.dropup:before {
      top: initial;
      bottom: -7px;
      border-bottom: initial;
      border-top: 7px solid #ccc; }
    .daterangepicker.dropup:after {
      top: initial;
      bottom: -6px;
      border-bottom: initial;
      border-top: 6px solid #fff; }
  .daterangepicker.dropdown-menu {
    max-width: none;
    z-index: 3001; }
  .daterangepicker.single .ranges, .daterangepicker.single .calendar {
    float: none; }
  .daterangepicker.show-calendar .calendar {
    display: block; }
  .daterangepicker .calendar {
    display: none;
    max-width: 270px;
    margin: 4px; }
    .daterangepicker .calendar.single .calendar-table {
      border: none; }
    .daterangepicker .calendar th, .daterangepicker .calendar td {
      white-space: nowrap;
      text-align: center;
      min-width: 32px; }
  .daterangepicker .calendar-table {
    border: 1px solid #fff;
    padding: 4px;
    border-radius: 4px;
    background-color: #fff; }
  .daterangepicker table {
    width: 100%;
    margin: 0; }
  .daterangepicker td, .daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer; }
    .daterangepicker td.available:hover, .daterangepicker th.available:hover {
      background-color: #eee;
      border-color: transparent;
      color: inherit; }
    .daterangepicker td.week, .daterangepicker th.week {
      font-size: 80%;
      color: #ccc; }
  .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999; }
  .daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0; }
  .daterangepicker td.start-date {
    border-radius: 4px 0 0 4px; }
  .daterangepicker td.end-date {
    border-radius: 0 4px 4px 0; }
  .daterangepicker td.start-date.end-date {
    border-radius: 4px; }
  .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff; }
  .daterangepicker th.month {
    width: auto; }
  .daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through; }
  .daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default; }
  .daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%; }
  .daterangepicker select.yearselect {
    width: 40%; }
  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin-bottom: 0; }
  .daterangepicker .input-mini {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    height: 30px;
    line-height: 30px;
    display: block;
    vertical-align: middle;
    margin: 0 0 5px 0;
    padding: 0 6px 0 28px;
    width: 100%; }
    .daterangepicker .input-mini.active {
      border: 1px solid #08c;
      border-radius: 4px; }
  .daterangepicker .daterangepicker_input {
    position: relative; }
    .daterangepicker .daterangepicker_input i {
      position: absolute;
      left: 8px;
      top: 8px; }
  .daterangepicker.rtl .input-mini {
    padding-right: 28px;
    padding-left: 6px; }
  .daterangepicker.rtl .daterangepicker_input i {
    left: auto;
    right: 8px; }
  .daterangepicker .calendar-time {
    text-align: center;
    margin: 5px auto;
    line-height: 30px;
    position: relative;
    padding-left: 28px; }
    .daterangepicker .calendar-time select.disabled {
      color: #ccc;
      cursor: not-allowed; }

.ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left; }
  .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%; }
  .ranges li {
    font-size: 13px;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    color: #08c;
    padding: 3px 12px;
    margin-bottom: 8px;
    cursor: pointer; }
    .ranges li:hover {
      background-color: #08c;
      border: 1px solid #08c;
      color: #fff; }
    .ranges li.active {
      background-color: #08c;
      border: 1px solid #08c;
      color: #fff; }

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 160px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .left .daterangepicker_input {
        padding-right: 12px; }
      .daterangepicker.ltr .calendar.left .calendar-table {
        padding-right: 12px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .left .daterangepicker_input {
        padding-left: 12px; }
      .daterangepicker.rtl .calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .calendar.left {
    clear: none !important; } }
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Light'),
         local('OpenSans-Light'),
         url(aac07fc6db99e7eb977e36c5b2571716.woff2) format('woff2'),
         url(9a0cfeda5ce5de1674106cd0a66ed55e.woff) format('woff'),
         url(25ad8d1b471db8cc26d864db84a86bd5.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Light Italic'),
         local('OpenSansLight-Italic'),
         url(3b472a011c149d4e3e20899165f9d836.woff2) format('woff2'),
         url(03fa0fb46f93a7cd5fbac457f20228e2.woff) format('woff'),
         url(161f7fcb431023d65bbd20417b321328.ttf) format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'),
         local('OpenSans'),
         url(48aa7ad98beedc63d82925f45fd8e72c.woff2) format('woff2'),
         url(811c8baeca3bb3329488f729979c1fbc.woff) format('woff'),
         url(d2a705b59e370eaa5d145962f3b1ade1.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Italic'),
         local('OpenSans-Italic'),
         url(fbf7f082bb8abfeef11c89c77452f796.woff2) format('woff2'),
         url(576f55c34a35e2d1e8d46dc916dd53de.woff) format('woff'),
         url(bf2f6b57cd6438b1e1ca22dd53c319c0.ttf) format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Semibold'),
         local('OpenSans-Semibold'),
         url(86dd4197bc664e69cc2dcba53bd2e6bc.woff2) format('woff2'),
         url(299b3be898e809232985246037e615b9.woff) format('woff'),
         url(483351b66d7f49ef56b83ecb00dd3712.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Semibold Italic'),
         local('OpenSans-SemiboldItalic'),
         url(1e7892227286bddc889ed66c71863ce9.woff2) format('woff2'),
         url(09c3b5a4acf6c0c8acdb419be166b4c8.woff) format('woff'),
         url(9e4f913fb70d77b2898dd935c62b626a.ttf) format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Bold'),
         local('OpenSans-Bold'),
         url(313824e85557a721d326424b6eb63fec.woff2) format('woff2'),
         url(6f05808b4f6a11d3feb1716291c7c038.woff) format('woff'),
         url(b87efff09ad1fd0e8da7f17ce94c4a83.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Bold Italic'),
         local('OpenSans-BoldItalic'),
         url(5f80e2b1fe2352fbe3f757c44ab1d590.woff2) format('woff2'),
         url(90b8cd144632dbd7c51c77336b7f5171.woff) format('woff'),
         url(47cf698e57af0651962238787bea4d2f.ttf) format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Extrabold'),
         local('OpenSans-Extrabold'),
         url(0f5ecd4c02213b058c52b19a729b2308.woff2) format('woff2'),
         url(6794db0115fe57ff032c2bc4d2fec757.woff) format('woff'),
         url(a4e0d32f8d8cb67da4af27c3f948600d.ttf) format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Extrabold Italic'),
         local('OpenSans-ExtraboldItalic'),
         url(51d4b21e8b8a03b7b5b6fb3681edbabf.woff2) format('woff2'),
         url(cb00b819da6093c52289da36f470549a.woff) format('woff'),
         url(41274fc221d9fe727256b3f302904a4e.ttf) format('truetype');
  font-weight: 800;
  font-style: italic;
}
.md-loader .md-loader-indicator {
  display: none;
}
.md-loader.loading {
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.md-loader.loading .md-loader-indicator {
  display: block;
  text-align: center;
  padding: 20px 0px;
  margin: 0px auto;
  font-size: 36px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.md-loader.loading .md-loader-indicator i {
  opacity: inherit;
  -ms-filter: inherit;
  filter: inherit;
}
.md-alert {
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  color: #d0d0d0;
  padding-top: 12px;
  padding-bottom: 12px;
}
.md-alert .close {
  outline: none;
}
.md-alert.success {
  background-color: #ecf8ec;
  color: #50b440;
  border-color: #98d48c;
}
.md-alert.warning {
  background-color: #fcf2e2;
  color: #f09b37;
  border-color: #f6c488;
}
.md-alert.info {
  background-color: #e8f6fd;
  color: #1da4f0;
  border-color: #77c8f6;
}
.md-alert.danger {
  background-color: #fff0f0;
  color: #da3549;
  border-color: #ec9aa4;
}
.md-clickable {
  cursor: pointer;
}
.md-capitalize {
  text-transform: capitalize;
}
.md-uppercase {
  text-transform: uppercase;
}
.md-inline {
  clear: none;
  display: inline-block;
}
.md-more {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}
.md-more a {
  display: block;
  cursor: pointer;
  color: #1da4f0;
}
.md-more a:hover,
.md-more a:focus {
  color: #4ab6f3;
}
.md-dropzone {
  padding: 30px 30px;
  background: #fff;
  color: #1da4f0;
  border: 2px dashed #1da4f0;
  border-radius: 5px;
  text-align: center;
}
.md-drag-handle {
  clear: none;
  display: inline-block;
  cursor: move;
}
.md-drag-handle i {
  color: #1da4f0;
}
.md-ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.md-text-wrap {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-blue {
  color: #1da4f0;
}
.md-input-expand {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: auto;
  min-width: 0px;
}
.md-input-expand:focus {
  min-width: 540px;
}
.rmd-help-icon {
  clear: none;
  display: inline-block;
}
.rmd-help-icon i.help-icon {
  vertical-align: text-top;
  font-size: 14px;
  padding-left: 5px;
}
.rmd-help-link i.help-icon {
  vertical-align: middle;
  font-size: 14px;
  padding-left: 5px;
}
.rmd-help-link.compact i.help-icon {
  font-size: 12px;
  padding-left: 3px;
}
@font-face {
  font-family: "referralMD";
  src: url("/fonts/referralMD.eot?-462oul");
  src: url("/fonts/referralMD.eot?#iefix-462oul") format("embedded-opentype"), url("/fonts/referralMD.woff?-462oul") format("woff"), url("/fonts/referralMD.ttf?-462oul") format("truetype"), url("/fonts/referralMD.svg?-462oul#referralMD") format("svg");
  font-weight: normal;
  font-style: normal;
}
.mdf {
  font-family: "referralMD";
  speak: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  top: 0;
  clear: none;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mdf-3dglasses:before {
  content: "\E6DD";
}
.mdf-abacus:before {
  content: "\E749";
}
.mdf-action-down:before {
  content: "\E600";
}
.mdf-action-left:before {
  content: "\E601";
}
.mdf-action-right:before {
  content: "\E602";
}
.mdf-action-up:before {
  content: "\E603";
}
.mdf-add:before {
  content: "\E79B";
}
.mdf-addressbook:before {
  content: "\E765";
}
.mdf-addressbook2:before {
  content: "\E766";
}
.mdf-aids:before {
  content: "\E76F";
}
.mdf-alarm:before {
  content: "\E6C9";
}
.mdf-alarm-cancel:before {
  content: "\E6CA";
}
.mdf-alarmclock:before {
  content: "\E6B1";
}
.mdf-alert:before {
  content: "\E79D";
}
.mdf-anchor:before {
  content: "\E7A8";
}
.mdf-android:before {
  content: "\E6AA";
}
.mdf-archive:before {
  content: "\E704";
}
.mdf-arrow-down-long:before {
  content: "\E604";
}
.mdf-arrow-left-long:before {
  content: "\E605";
}
.mdf-arrow-right-long:before {
  content: "\E606";
}
.mdf-arrow-up-long:before {
  content: "\E607";
}
.mdf-at:before {
  content: "\E608";
}
.mdf-atom:before {
  content: "\E79F";
}
.mdf-attachment:before {
  content: "\E747";
}
.mdf-auction:before {
  content: "\E743";
}
.mdf-badge:before {
  content: "\E78C";
}
.mdf-badge2:before {
  content: "\E78D";
}
.mdf-bag:before {
  content: "\E717";
}
.mdf-barcode:before {
  content: "\E785";
}
.mdf-barcode2:before {
  content: "\E786";
}
.mdf-baseball:before {
  content: "\E6DB";
}
.mdf-basket:before {
  content: "\E6C6";
}
.mdf-batman:before {
  content: "\E6FC";
}
.mdf-battery:before {
  content: "\E705";
}
.mdf-battery2:before {
  content: "\E706";
}
.mdf-battery3:before {
  content: "\E707";
}
.mdf-battery4:before {
  content: "\E708";
}
.mdf-battery5:before {
  content: "\E709";
}
.mdf-bell:before {
  content: "\E609";
}
.mdf-bike:before {
  content: "\E77C";
}
.mdf-bike2:before {
  content: "\E77F";
}
.mdf-blocked:before {
  content: "\E793";
}
.mdf-bomb:before {
  content: "\E703";
}
.mdf-book:before {
  content: "\E783";
}
.mdf-book2:before {
  content: "\E784";
}
.mdf-bookmark:before {
  content: "\E763";
}
.mdf-bookmark2:before {
  content: "\E764";
}
.mdf-bowling:before {
  content: "\E6D9";
}
.mdf-bowlingpin:before {
  content: "\E6DA";
}
.mdf-box:before {
  content: "\E714";
}
.mdf-box2:before {
  content: "\E715";
}
.mdf-briefcase:before {
  content: "\E60B";
}
.mdf-briefcase-square:before {
  content: "\E60A";
}
.mdf-brush:before {
  content: "\E731";
}
.mdf-building:before {
  content: "\E60C";
}
.mdf-bus:before {
  content: "\E77E";
}
.mdf-cabinet:before {
  content: "\E671";
}
.mdf-cabinet2:before {
  content: "\E672";
}
.mdf-cake:before {
  content: "\E690";
}
.mdf-calculator:before {
  content: "\E741";
}
.mdf-calendar:before {
  content: "\E673";
}
.mdf-calendar-radius:before {
  content: "\E60D";
}
.mdf-calendar-round:before {
  content: "\E60E";
}
.mdf-calendar-square:before {
  content: "\E60F";
}
.mdf-calendar2:before {
  content: "\E674";
}
.mdf-calendar3:before {
  content: "\E675";
}
.mdf-camera:before {
  content: "\E680";
}
.mdf-camera2:before {
  content: "\E681";
}
.mdf-camera3:before {
  content: "\E682";
}
.mdf-cancel:before {
  content: "\E697";
}
.mdf-cancel2:before {
  content: "\E698";
}
.mdf-cancel3:before {
  content: "\E6B7";
}
.mdf-car:before {
  content: "\E77B";
}
.mdf-card:before {
  content: "\E610";
}
.mdf-cassette:before {
  content: "\E6AD";
}
.mdf-chart:before {
  content: "\E6BE";
}
.mdf-chart2:before {
  content: "\E6BF";
}
.mdf-chart3:before {
  content: "\E6C0";
}
.mdf-chart4:before {
  content: "\E6C1";
}
.mdf-chart5:before {
  content: "\E6C2";
}
.mdf-chart6:before {
  content: "\E6C3";
}
.mdf-chat:before {
  content: "\E733";
}
.mdf-chat2:before {
  content: "\E735";
}
.mdf-chat3:before {
  content: "\E736";
}
.mdf-check:before {
  content: "\E613";
}
.mdf-check-square:before {
  content: "\E612";
}
.mdf-check-square-empty:before {
  content: "\E611";
}
.mdf-checked:before {
  content: "\E799";
}
.mdf-checkmark:before {
  content: "\E695";
}
.mdf-checkmark2:before {
  content: "\E696";
}
.mdf-checkmark3:before {
  content: "\E6B6";
}
.mdf-chevron-circle-down:before {
  content: "\E614";
}
.mdf-chevron-circle-left:before {
  content: "\E615";
}
.mdf-chevron-circle-right:before {
  content: "\E616";
}
.mdf-chevron-circle-up:before {
  content: "\E617";
}
.mdf-chevron-down:before {
  content: "\E618";
}
.mdf-chevron-left:before {
  content: "\E619";
}
.mdf-chevron-right:before {
  content: "\E61A";
}
.mdf-chevron-up:before {
  content: "\E61B";
}
.mdf-choose:before {
  content: "\E61C";
}
.mdf-chronometer:before {
  content: "\E6AF";
}
.mdf-circle:before {
  content: "\E75E";
}
.mdf-clipboard:before {
  content: "\E7B0";
}
.mdf-clipboard2:before {
  content: "\E7B1";
}
.mdf-clipboard3:before {
  content: "\E7B2";
}
.mdf-clock:before {
  content: "\E61D";
}
.mdf-cloud:before {
  content: "\E6BC";
}
.mdf-cloudy:before {
  content: "\E779";
}
.mdf-cloudy2:before {
  content: "\E77A";
}
.mdf-coffee:before {
  content: "\E68D";
}
.mdf-cog:before {
  content: "\E69F";
}
.mdf-cog2:before {
  content: "\E6A1";
}
.mdf-cogs:before {
  content: "\E6A0";
}
.mdf-coins:before {
  content: "\E761";
}
.mdf-collapse:before {
  content: "\E61E";
}
.mdf-collapse2:before {
  content: "\E788";
}
.mdf-comment:before {
  content: "\E620";
}
.mdf-comment-o:before {
  content: "\E61F";
}
.mdf-comments:before {
  content: "\E734";
}
.mdf-compass:before {
  content: "\E7A5";
}
.mdf-cone:before {
  content: "\E792";
}
.mdf-cord:before {
  content: "\E6ED";
}
.mdf-crop:before {
  content: "\E75B";
}
.mdf-cross:before {
  content: "\E6F9";
}
.mdf-cube:before {
  content: "\E713";
}
.mdf-davidstar:before {
  content: "\E6F8";
}
.mdf-diamond:before {
  content: "\E716";
}
.mdf-direction:before {
  content: "\E6D0";
}
.mdf-discout:before {
  content: "\E74E";
}
.mdf-dollar:before {
  content: "\E75F";
}
.mdf-dollar2:before {
  content: "\E760";
}
.mdf-download:before {
  content: "\E622";
}
.mdf-download-alt:before {
  content: "\E621";
}
.mdf-download2:before {
  content: "\E692";
}
.mdf-download3:before {
  content: "\E6C5";
}
.mdf-download4:before {
  content: "\E740";
}
.mdf-drink:before {
  content: "\E689";
}
.mdf-drink2:before {
  content: "\E68A";
}
.mdf-drink3:before {
  content: "\E68B";
}
.mdf-drink4:before {
  content: "\E68C";
}
.mdf-edit:before {
  content: "\E74F";
}
.mdf-eightball:before {
  content: "\E6D8";
}
.mdf-envelope:before {
  content: "\E626";
}
.mdf-envelope-alt:before {
  content: "\E623";
}
.mdf-envelope-open:before {
  content: "\E624";
}
.mdf-envelope-square:before {
  content: "\E625";
}
.mdf-envelope2:before {
  content: "\E768";
}
.mdf-envelope3:before {
  content: "\E769";
}
.mdf-equalizer:before {
  content: "\E73A";
}
.mdf-error:before {
  content: "\E79A";
}
.mdf-exclamation-circle:before {
  content: "\E627";
}
.mdf-expand:before {
  content: "\E787";
}
.mdf-eye:before {
  content: "\E629";
}
.mdf-eye-o:before {
  content: "\E628";
}
.mdf-eye2:before {
  content: "\E6B8";
}
.mdf-eyedropper:before {
  content: "\E7A0";
}
.mdf-female:before {
  content: "\E76E";
}
.mdf-file:before {
  content: "\E62B";
}
.mdf-file-round:before {
  content: "\E62A";
}
.mdf-file2:before {
  content: "\E676";
}
.mdf-file3:before {
  content: "\E677";
}
.mdf-file4:before {
  content: "\E678";
}
.mdf-files:before {
  content: "\E62D";
}
.mdf-files-o:before {
  content: "\E62C";
}
.mdf-files2:before {
  content: "\E679";
}
.mdf-film:before {
  content: "\E683";
}
.mdf-film2:before {
  content: "\E684";
}
.mdf-film3:before {
  content: "\E685";
}
.mdf-floppy-o:before {
  content: "\E62E";
}
.mdf-folder:before {
  content: "\E6C7";
}
.mdf-folder-open-o:before {
  content: "\E62F";
}
.mdf-football:before {
  content: "\E6D7";
}
.mdf-forward:before {
  content: "\E757";
}
.mdf-gamepad:before {
  content: "\E6C8";
}
.mdf-globe:before {
  content: "\E7A1";
}
.mdf-globe2:before {
  content: "\E7A2";
}
.mdf-graduate:before {
  content: "\E6D4";
}
.mdf-graduation-cap:before {
  content: "\E630";
}
.mdf-grid:before {
  content: "\E719";
}
.mdf-grid2:before {
  content: "\E71A";
}
.mdf-hammer:before {
  content: "\E730";
}
.mdf-hand:before {
  content: "\E6E6";
}
.mdf-headphones:before {
  content: "\E631";
}
.mdf-headphones2:before {
  content: "\E6B4";
}
.mdf-health:before {
  content: "\E6A3";
}
.mdf-heart:before {
  content: "\E633";
}
.mdf-heart-big:before {
  content: "\E632";
}
.mdf-heart2:before {
  content: "\E770";
}
.mdf-heart3:before {
  content: "\E7AD";
}
.mdf-heart4:before {
  content: "\E7AE";
}
.mdf-hourglass:before {
  content: "\E748";
}
.mdf-icecream:before {
  content: "\E68F";
}
.mdf-image:before {
  content: "\E6CD";
}
.mdf-inbox:before {
  content: "\E691";
}
.mdf-inbox2:before {
  content: "\E694";
}
.mdf-info:before {
  content: "\E771";
}
.mdf-info-circle:before {
  content: "\E634";
}
.mdf-info2:before {
  content: "\E772";
}
.mdf-injection:before {
  content: "\E70E";
}
.mdf-ipod:before {
  content: "\E67E";
}
.mdf-justice:before {
  content: "\E744";
}
.mdf-key:before {
  content: "\E6EC";
}
.mdf-keyboard:before {
  content: "\E795";
}
.mdf-keyboard2:before {
  content: "\E796";
}
.mdf-lab:before {
  content: "\E6D5";
}
.mdf-lamp:before {
  content: "\E6FF";
}
.mdf-lamp2:before {
  content: "\E700";
}
.mdf-lamp3:before {
  content: "\E710";
}
.mdf-lamp4:before {
  content: "\E711";
}
.mdf-lamp5:before {
  content: "\E712";
}
.mdf-layout:before {
  content: "\E71F";
}
.mdf-layout10:before {
  content: "\E728";
}
.mdf-layout11:before {
  content: "\E729";
}
.mdf-layout12:before {
  content: "\E72A";
}
.mdf-layout13:before {
  content: "\E72B";
}
.mdf-layout14:before {
  content: "\E72C";
}
.mdf-layout2:before {
  content: "\E720";
}
.mdf-layout3:before {
  content: "\E721";
}
.mdf-layout4:before {
  content: "\E722";
}
.mdf-layout5:before {
  content: "\E723";
}
.mdf-layout6:before {
  content: "\E724";
}
.mdf-layout7:before {
  content: "\E725";
}
.mdf-layout8:before {
  content: "\E726";
}
.mdf-layout9:before {
  content: "\E727";
}
.mdf-library:before {
  content: "\E742";
}
.mdf-life-ring:before {
  content: "\E635";
}
.mdf-lightning:before {
  content: "\E776";
}
.mdf-link:before {
  content: "\E636";
}
.mdf-link2:before {
  content: "\E66F";
}
.mdf-link3:before {
  content: "\E670";
}
.mdf-list:before {
  content: "\E71B";
}
.mdf-list2:before {
  content: "\E71C";
}
.mdf-location:before {
  content: "\E6C4";
}
.mdf-lock:before {
  content: "\E637";
}
.mdf-locked:before {
  content: "\E6EE";
}
.mdf-locked2:before {
  content: "\E6F0";
}
.mdf-lockedheart:before {
  content: "\E7A9";
}
.mdf-loop:before {
  content: "\E75A";
}
.mdf-magnet:before {
  content: "\E7AA";
}
.mdf-magnifier:before {
  content: "\E6F2";
}
.mdf-male:before {
  content: "\E76D";
}
.mdf-map:before {
  content: "\E6D1";
}
.mdf-map-marker:before {
  content: "\E638";
}
.mdf-marvin:before {
  content: "\E6AB";
}
.mdf-medal:before {
  content: "\E6E9";
}
.mdf-medal2:before {
  content: "\E6EA";
}
.mdf-megaphone:before {
  content: "\E70A";
}
.mdf-megaphone2:before {
  content: "\E70B";
}
.mdf-microphone:before {
  content: "\E686";
}
.mdf-microphone2:before {
  content: "\E687";
}
.mdf-microphone3:before {
  content: "\E688";
}
.mdf-microphone4:before {
  content: "\E791";
}
.mdf-microwave:before {
  content: "\E6DE";
}
.mdf-minus:before {
  content: "\E639";
}
.mdf-minus2:before {
  content: "\E69B";
}
.mdf-minus3:before {
  content: "\E69C";
}
.mdf-minus4:before {
  content: "\E79C";
}
.mdf-moneybag:before {
  content: "\E718";
}
.mdf-monitor:before {
  content: "\E67D";
}
.mdf-moon:before {
  content: "\E778";
}
.mdf-moonandstar:before {
  content: "\E6FA";
}
.mdf-mouse:before {
  content: "\E6E2";
}
.mdf-mug:before {
  content: "\E68E";
}
.mdf-music:before {
  content: "\E76B";
}
.mdf-mute:before {
  content: "\E6E5";
}
.mdf-narrow:before {
  content: "\E73E";
}
.mdf-navigation:before {
  content: "\E7AB";
}
.mdf-notice:before {
  content: "\E69D";
}
.mdf-notice2:before {
  content: "\E69E";
}
.mdf-number:before {
  content: "\E657";
}
.mdf-number10:before {
  content: "\E660";
}
.mdf-number11:before {
  content: "\E661";
}
.mdf-number12:before {
  content: "\E662";
}
.mdf-number13:before {
  content: "\E663";
}
.mdf-number14:before {
  content: "\E664";
}
.mdf-number15:before {
  content: "\E665";
}
.mdf-number16:before {
  content: "\E666";
}
.mdf-number17:before {
  content: "\E667";
}
.mdf-number18:before {
  content: "\E668";
}
.mdf-number19:before {
  content: "\E669";
}
.mdf-number2:before {
  content: "\E658";
}
.mdf-number20:before {
  content: "\E66A";
}
.mdf-number3:before {
  content: "\E659";
}
.mdf-number4:before {
  content: "\E65A";
}
.mdf-number5:before {
  content: "\E65B";
}
.mdf-number6:before {
  content: "\E65C";
}
.mdf-number7:before {
  content: "\E65D";
}
.mdf-number8:before {
  content: "\E65E";
}
.mdf-number9:before {
  content: "\E65F";
}
.mdf-open:before {
  content: "\E6CE";
}
.mdf-oven:before {
  content: "\E6E0";
}
.mdf-pacman:before {
  content: "\E6AC";
}
.mdf-paint:before {
  content: "\E72F";
}
.mdf-paperplane:before {
  content: "\E781";
}
.mdf-paragraph-text:before {
  content: "\E63A";
}
.mdf-patch:before {
  content: "\E70C";
}
.mdf-pdf:before {
  content: "\E63B";
}
.mdf-pen:before {
  content: "\E732";
}
.mdf-pen2:before {
  content: "\E74B";
}
.mdf-pencil:before {
  content: "\E63C";
}
.mdf-pencil2:before {
  content: "\E74A";
}
.mdf-phone:before {
  content: "\E63F";
}
.mdf-phone-alt:before {
  content: "\E63D";
}
.mdf-phone-sound:before {
  content: "\E63E";
}
.mdf-phone2:before {
  content: "\E67A";
}
.mdf-phone3:before {
  content: "\E6CB";
}
.mdf-phone4:before {
  content: "\E6CC";
}
.mdf-piano:before {
  content: "\E773";
}
.mdf-picture:before {
  content: "\E6A7";
}
.mdf-pictures:before {
  content: "\E6A8";
}
.mdf-pictures2:before {
  content: "\E6A9";
}
.mdf-pictures3:before {
  content: "\E79E";
}
.mdf-pig:before {
  content: "\E762";
}
.mdf-pil:before {
  content: "\E70D";
}
.mdf-pin:before {
  content: "\E74C";
}
.mdf-pin2:before {
  content: "\E74D";
}
.mdf-plane:before {
  content: "\E780";
}
.mdf-plus:before {
  content: "\E640";
}
.mdf-plus2:before {
  content: "\E699";
}
.mdf-plus3:before {
  content: "\E69A";
}
.mdf-popin:before {
  content: "\E78A";
}
.mdf-popout:before {
  content: "\E789";
}
.mdf-position:before {
  content: "\E6B9";
}
.mdf-presentation:before {
  content: "\E76C";
}
.mdf-printer:before {
  content: "\E798";
}
.mdf-profile:before {
  content: "\E751";
}
.mdf-profile2:before {
  content: "\E752";
}
.mdf-profile3:before {
  content: "\E753";
}
.mdf-quote:before {
  content: "\E66B";
}
.mdf-quote2:before {
  content: "\E66C";
}
.mdf-radio:before {
  content: "\E6E7";
}
.mdf-radio2:before {
  content: "\E797";
}
.mdf-radioactive:before {
  content: "\E76A";
}
.mdf-rain:before {
  content: "\E774";
}
.mdf-refrigerator:before {
  content: "\E6DF";
}
.mdf-reply:before {
  content: "\E641";
}
.mdf-reply2:before {
  content: "\E756";
}
.mdf-resize:before {
  content: "\E73B";
}
.mdf-resize2:before {
  content: "\E73C";
}
.mdf-resize3:before {
  content: "\E73F";
}
.mdf-retweet:before {
  content: "\E758";
}
.mdf-rocket:before {
  content: "\E782";
}
.mdf-rotate:before {
  content: "\E754";
}
.mdf-rotate2:before {
  content: "\E755";
}
.mdf-ruler:before {
  content: "\E71D";
}
.mdf-ruler2:before {
  content: "\E71E";
}
.mdf-ruler3:before {
  content: "\E7B4";
}
.mdf-sad:before {
  content: "\E6E4";
}
.mdf-safe:before {
  content: "\E767";
}
.mdf-sale:before {
  content: "\E6CF";
}
.mdf-satellite:before {
  content: "\E6E8";
}
.mdf-scale:before {
  content: "\E642";
}
.mdf-scissors:before {
  content: "\E750";
}
.mdf-screwdriver:before {
  content: "\E72E";
}
.mdf-search:before {
  content: "\E643";
}
.mdf-share-alt:before {
  content: "\E644";
}
.mdf-shipping:before {
  content: "\E7A3";
}
.mdf-shuffle:before {
  content: "\E759";
}
.mdf-sign-in:before {
  content: "\E645";
}
.mdf-sign-out:before {
  content: "\E646";
}
.mdf-signal:before {
  content: "\E647";
}
.mdf-sitemap:before {
  content: "\E6BA";
}
.mdf-sitemap2:before {
  content: "\E6BB";
}
.mdf-skeletor:before {
  content: "\E6FE";
}
.mdf-smiley:before {
  content: "\E6E3";
}
.mdf-snow:before {
  content: "\E775";
}
.mdf-soccer:before {
  content: "\E6DC";
}
.mdf-spaceinvaders:before {
  content: "\E6FD";
}
.mdf-square:before {
  content: "\E75C";
}
.mdf-square2:before {
  content: "\E75D";
}
.mdf-ssn:before {
  content: "\E648";
}
.mdf-stack:before {
  content: "\E6F5";
}
.mdf-stack2:before {
  content: "\E6F6";
}
.mdf-stack3:before {
  content: "\E6F7";
}
.mdf-stats:before {
  content: "\E745";
}
.mdf-stats2:before {
  content: "\E746";
}
.mdf-stop:before {
  content: "\E794";
}
.mdf-streetlight:before {
  content: "\E702";
}
.mdf-stretch:before {
  content: "\E73D";
}
.mdf-suitcase:before {
  content: "\E6A4";
}
.mdf-suitcase2:before {
  content: "\E6A5";
}
.mdf-suitcase3:before {
  content: "\E6A6";
}
.mdf-sun:before {
  content: "\E777";
}
.mdf-switch:before {
  content: "\E6EB";
}
.mdf-switch2:before {
  content: "\E7B3";
}
.mdf-tablet:before {
  content: "\E67B";
}
.mdf-tag:before {
  content: "\E66D";
}
.mdf-tag2:before {
  content: "\E66E";
}
.mdf-tags:before {
  content: "\E7AC";
}
.mdf-target:before {
  content: "\E78B";
}
.mdf-text-header:before {
  content: "\E649";
}
.mdf-text-input:before {
  content: "\E64A";
}
.mdf-thermometer:before {
  content: "\E70F";
}
.mdf-ticket:before {
  content: "\E78E";
}
.mdf-ticket2:before {
  content: "\E78F";
}
.mdf-ticket3:before {
  content: "\E790";
}
.mdf-tie:before {
  content: "\E6D6";
}
.mdf-time:before {
  content: "\E64B";
}
.mdf-time2:before {
  content: "\E6B2";
}
.mdf-time3:before {
  content: "\E6B3";
}
.mdf-times:before {
  content: "\E64D";
}
.mdf-times-square:before {
  content: "\E64C";
}
.mdf-tools:before {
  content: "\E72D";
}
.mdf-transformers:before {
  content: "\E6FB";
}
.mdf-trash:before {
  content: "\E64E";
}
.mdf-trashcan:before {
  content: "\E6D2";
}
.mdf-trophy:before {
  content: "\E64F";
}
.mdf-truck:before {
  content: "\E77D";
}
.mdf-tv:before {
  content: "\E67F";
}
.mdf-umbrella:before {
  content: "\E701";
}
.mdf-unlocked:before {
  content: "\E6EF";
}
.mdf-unlocked2:before {
  content: "\E6F1";
}
.mdf-upload:before {
  content: "\E650";
}
.mdf-upload2:before {
  content: "\E693";
}
.mdf-upload3:before {
  content: "\E6BD";
}
.mdf-usb:before {
  content: "\E7AF";
}
.mdf-user:before {
  content: "\E654";
}
.mdf-user-community:before {
  content: "\E651";
}
.mdf-user-md:before {
  content: "\E652";
}
.mdf-user-thin:before {
  content: "\E653";
}
.mdf-users:before {
  content: "\E655";
}
.mdf-volume:before {
  content: "\E737";
}
.mdf-volume2:before {
  content: "\E738";
}
.mdf-volume3:before {
  content: "\E739";
}
.mdf-vote:before {
  content: "\E6D3";
}
.mdf-wallet:before {
  content: "\E6B5";
}
.mdf-warning:before {
  content: "\E6A2";
}
.mdf-washingmachine:before {
  content: "\E6E1";
}
.mdf-watch:before {
  content: "\E6AE";
}
.mdf-watch2:before {
  content: "\E6B0";
}
.mdf-window:before {
  content: "\E67C";
}
.mdf-world:before {
  content: "\E656";
}
.mdf-yingyang:before {
  content: "\E7A4";
}
.mdf-zip:before {
  content: "\E7A6";
}
.mdf-zip2:before {
  content: "\E7A7";
}
.mdf-zoomin:before {
  content: "\E6F3";
}
.mdf-zoomout:before {
  content: "\E6F4";
}
html {
  position: initial !important;
  background: none !important;
}
html,
body {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif !important;
  font-size: 16px;
  height: 100%;
}
a {
  color: #000;
}
a:hover,
a:focus {
  color: #1a1a1a;
  text-decoration: none;
  outline: none;
}
*:hover,
*:focus {
  outline: none;
}
.uib-datepicker .uib-daypicker {
  outline: none;
}
.uib-datepicker .btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.uib-datepicker .btn.btn-info span.text-info {
  color: #fff;
}
.uib-datepicker .uib-button-bar {
  padding: 10px 0 0;
}
.uib-datepicker-popup {
  padding: 5px;
  z-index: 10000;
}
.uib-typeahead-match a {
  padding: 5px 20px;
  background-color: #fff;
}
.uib-typeahead-match.active > a,
.uib-typeahead-match.active > a:focus,
.uib-typeahead-match.active > a:hover {
  background-color: #f2f2f2;
  color: #000;
}
.ui-select-container .btn-default-focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.ui-select-container .ui-select-match .ui-select-match-text {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.ui-select-container .ui-select-search {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.ui-select-container .ui-select-search:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
.ui-select-container .ui-select-search[disabled],
.ui-select-container .ui-select-search[readonly] {
  background-color: #f2f2f2;
}
.ui-select-container .ui-select-no-choice li {
  padding: 5px 20px;
}
.ui-select-container .ui-select-choices-row .ui-select-choices-row-inner {
  color: #000;
}
.ui-select-container .ui-select-choices-row.active .ui-select-choices-row-inner {
  background-color: transparent;
  color: #000;
}
.ui-select-container .ui-select-choices-row.disabled .ui-select-choices-row-inner {
  background-color: #f2f2f2;
}
.ui-select-container .ui-select-choices-row.disabled .ui-select-choices-row-inner .md-text {
  color: #666;
  text-decoration: line-through;
}
.ui-select-container .ui-select-choices-row .ui-select-choices-row-inner {
  padding: 5px 20px;
}
.ui-select-container .ui-select-choices-row .ui-select-choices-row-inner .ui-select-highlight {
  font-weight: 600;
  color: #000;
}
.toast-top-right {
  top: 12px;
  left: 50%;
  text-align: center;
  margin-left: -150px;
}
.toast-top-right .toast-message {
  margin-left: -35px;
}
.toast-top-center-no-icon {
  top: 5%;
  left: calc(50% - 241.5px);
}
.toast-top-center {
  top: 5%;
}
.toast-top-center .toast-message {
  margin-left: -35px;
}
.toast-message {
  text-align: center;
}
#toast-container {
  font-weight: 600;
}
#toast-container img {
  margin-right: 10px;
  margin-top: -2px;
  margin-left: -10px;
  width: 24px;
  height: 24px;
}
#toast-container .toast.toast-error {
  background-image: none !important;
}
#toast-container .toast.toast-info {
  background-image: none !important;
}
#toast-container .toast.toast-warning {
  background-image: none !important;
}
#toast-container .toast.toast-warning {
  background-image: none !important;
}
#toast-container.toast-top-center .toast {
  width: 483px;
  padding-top: 35px;
  padding-bottom: 35px;
  opacity: 0.97;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=97)";
  filter: alpha(opacity=97);
}
#toast-container.toast-top-center-no-icon .toast {
  width: 483px;
  padding-top: 35px;
  padding-bottom: 35px;
  opacity: 0.97;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=97)";
  filter: alpha(opacity=97);
}
#toast-container.toast-top-center-no-icon .toast .toast-message {
  margin-left: 0;
}
.referral-content body #toast-container .toast.toast-info,
.consult-content body #toast-container .toast.toast-info,
.message-content body #toast-container .toast.toast-info,
.referral-content body #toast-container .toast.toast-error,
.consult-content body #toast-container .toast.toast-error,
.message-content body #toast-container .toast.toast-error {
  background-image: none !important;
  text-align: center;
  padding-left: 15px;
}
.container.md-content {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
}
@media (min-width: 1440px) {
  .container.md-content {
    max-width: 3000px;
  }
}
.md-content-padding {
  padding: 15px 30px;
}
.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.md-page-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.md-page-content .md-sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
  margin-right: 15px;
}
.md-page-content .md-sidebar.settings-sidebar {
  margin-top: -10px;
}
.md-page-content .md-sidebar.settings-sidebar .md-pane-sidebar {
  overflow: auto;
}
.md-page-content .md-toolbar-content,
.md-page-content .md-main-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
.md-page-content .md-toolbar-content .md-toolbar {
  margin-left: 2px;
}
.md-page-blank .ui-select-placeholder,
.md-page-detail .ui-select-placeholder {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.md-section-header {
  padding: 0px 0px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
}
.md-section-header .title {
  clear: none;
  display: inline-block;
  color: #333;
  vertical-align: top;
  margin-bottom: 20px;
}
.md-section-header h2.title {
  font-weight: 300;
}
.md-section-header p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-section-header .back-link {
  clear: none;
  display: inline-block;
  cursor: pointer;
  color: #1da4f0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.md-section-header .back-link:hover,
.md-section-header .back-link:focus {
  color: #4ab6f3;
}
.md-section-header .back-link i {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
.md-section-header .back-link .text {
  clear: none;
  display: inline-block;
}
.md-section-header.no-border {
  border: none;
}
.md-section-header .md-form-group .form-control {
  height: 40px;
  line-height: 40px;
}
.md-section-header .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-section-header .md-toolbar.right .md-form-group,
.md-section-header .md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
  vertical-align: middle;
}
.md-section-header .md-tabpanel {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .md-section-header .title {
    display: block;
    margin-bottom: 10px;
  }
  .md-section-header .back-link {
    display: block;
    margin: 0px;
  }
}
.md-section-padding {
  padding: 0 20px;
}
.md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 100px;
}
.md-layout-stretch-wrap .mCustomScrollBox {
  width: 100%;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_container {
  margin-right: 0px;
  padding-bottom: 0px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_vertical {
  width: 6px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_horizontal {
  height: 6px;
}
.md-layout-stretch-wrap .md-layout-stretch-content {
  width: 100%;
  position: relative;
}
.md-layout-stretch-wrap .md-layout-stretch-content .md-pane-table {
  background-color: transparent;
}
.md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow-x: auto;
  overflow-y: auto;
  height: -webkit-fill-available;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-image: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(right, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(left, #efefef, rgba(234,240,246,0)), -webkit-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -moz-linear-gradient(left, #fff, rgba(255,255,255,0)), -moz-linear-gradient(right, #fff, rgba(255,255,255,0)), -moz-linear-gradient(left, #efefef, rgba(234,240,246,0)), -moz-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -o-linear-gradient(left, #fff, rgba(255,255,255,0)), -o-linear-gradient(right, #fff, rgba(255,255,255,0)), -o-linear-gradient(left, #efefef, rgba(234,240,246,0)), -o-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -ms-linear-gradient(left, #fff, rgba(255,255,255,0)), -ms-linear-gradient(right, #fff, rgba(255,255,255,0)), -ms-linear-gradient(left, #efefef, rgba(234,240,246,0)), -ms-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: linear-gradient(to right, #fff, rgba(255,255,255,0)), linear-gradient(to left, #fff, rgba(255,255,255,0)), linear-gradient(to right, #efefef, rgba(234,240,246,0)), linear-gradient(to left, #efefef, rgba(234,240,246,0));
  background-position: 0% 0, 100% 0, 0% 0, 100% 0;
  background-size: 4em 100%, 4em 100%, 1em 100%, 1em 100%;
}
.md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container i {
  color: #cecece;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-up {
  position: absolute;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
tbody tr:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.gray-background-page .md-layout-stretch-wrap {
  background-color: #fff;
}
.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-image: none;
}
.md-wide {
  width: 100%;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p30 {
  padding: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.m30 {
  margin: 30px;
}
.no-mac-os ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.no-mac-os ::-webkit-scrollbar-button {
  display: none;
}
.no-mac-os ::-webkit-scrollbar-thumb {
  background: #7c7c7c;
}
.no-mac-os ::-webkit-scrollbar-track-piece {
  background: #f8f8f8;
}
.md-page-default .md-view-content {
  display: block;
  background: #fff;
}
.md-page-blank {
  background: #fff;
}
.md-page-blank .md-view-content {
  display: block;
  background: #fff;
}
.md-page-detail {
  background: #f2f2f2;
}
.md-page-detail.white {
  background: #fff;
}
.md-page-detail .md-view-content {
  display: block;
  background: #f2f2f2;
}
.md-page-detail .adjusted-height-for-messages {
  height: 100%;
}
.md-page-detail .adjusted-height-for-messages .container {
  height: 100%;
}
.md-page-detail .adjusted-height-for-messages .container .md-content-padding {
  height: 100%;
}
.md-page-detail .adjusted-height-for-messages .container .md-content-padding .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 28px);
}
.md-page-detail .adjusted-height-for-messages .container .md-content-padding .md-page-content {
  height: calc(100% - 55px);
}
.md-page-detail .adjusted-height-for-messages .container .md-content-padding .md-page-content .md-sidebar {
  height: calc(100% - 10px);
  overflow: auto;
}
.md-page-detail .messages-with-alert-banner .container .md-content-padding {
  height: calc(100% - 77px);
}
.md-page-detail .messages-with-alert-banner .container .md-content-padding .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 28px - 77px);
}
.md-page-detail .md-pane {
  border: 1px solid #d0d0d0;
}
.md-page-detail .md-pane.md-pane-table {
  border: none;
}
.md-page-default md-header,
.md-page-detail md-header,
.md-page-default .md-custom-header,
.md-page-detail .md-custom-header {
  width: 100%;
  position: fixed;
  z-index: 1000;
}
.md-page-default .md-view-content,
.md-page-detail .md-view-content {
  padding-top: 50px;
}
.md-page-default.md-header-custom .md-view-content,
.md-page-detail.md-header-custom .md-view-content {
  padding-top: 0px;
}
.md-page-default.md-header-custom .md-view-content .md-custom-header + .container,
.md-page-detail.md-header-custom .md-view-content .md-custom-header + .container {
  padding-top: 50px;
}
.md-page-default.has-motion-header .md-view-content,
.md-page-detail.has-motion-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-motion-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-motion-header .md-view-content .md-custom-header + .container {
  padding-top: 211px;
}
.md-page-default.has-gateway-header .md-view-content,
.md-page-detail.has-gateway-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-gateway-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-gateway-header .md-view-content .md-custom-header + .container {
  padding-top: 106px;
}
.md-page-default.has-front-range-header .md-view-content,
.md-page-detail.has-front-range-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-front-range-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-front-range-header .md-view-content .md-custom-header + .container {
  padding-top: 120px;
}
.md-page-default.has-yosemite-header .md-view-content,
.md-page-detail.has-yosemite-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-yosemite-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-yosemite-header .md-view-content .md-custom-header + .container {
  padding-top: 200px;
}
.md-page-default.has-mpg-header .md-view-content,
.md-page-detail.has-mpg-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-mpg-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-mpg-header .md-view-content .md-custom-header + .container {
  padding-top: 100px;
}
.md-page-default.has-affiliated-derm-header .md-view-content,
.md-page-detail.has-affiliated-derm-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-affiliated-derm-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-affiliated-derm-header .md-view-content .md-custom-header + .container {
  padding-top: 107px;
}
.md-page-default.has-srm-header .md-view-content,
.md-page-detail.has-srm-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-srm-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-srm-header .md-view-content .md-custom-header + .container {
  padding-top: 105.42px;
}
.md-page-default.has-sc-house-header .md-view-content,
.md-page-detail.has-sc-house-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-sc-house-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-sc-house-header .md-view-content .md-custom-header + .container {
  padding-top: 96px;
}
.md-page-default.has-covenant-header .md-view-content,
.md-page-detail.has-covenant-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-covenant-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-covenant-header .md-view-content .md-custom-header + .container {
  padding-top: 83px;
}
.md-page-default.has-tristar-header .md-view-content,
.md-page-detail.has-tristar-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-tristar-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-tristar-header .md-view-content .md-custom-header + .container {
  padding-top: 100px;
}
.md-page-default.has-quince-header .md-view-content,
.md-page-detail.has-quince-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-quince-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-quince-header .md-view-content .md-custom-header + .container {
  padding-top: 140px;
}
.md-page-default.has-plano-header .md-view-content,
.md-page-detail.has-plano-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-plano-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-plano-header .md-view-content .md-custom-header + .container {
  padding-top: 189px;
}
.md-page-default.has-alaska-header .md-view-content,
.md-page-detail.has-alaska-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-alaska-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-alaska-header .md-view-content .md-custom-header + .container {
  padding-top: 178px;
}
.md-page-default.has-sylvan-header .md-view-content,
.md-page-detail.has-sylvan-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-sylvan-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-sylvan-header .md-view-content .md-custom-header + .container {
  padding-top: 75px;
}
.md-page-default.has-vital-header .md-view-content,
.md-page-detail.has-vital-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-vital-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-vital-header .md-view-content .md-custom-header + .container {
  padding-top: 136px;
}
.md-page-default.has-life-skills-header .md-view-content,
.md-page-detail.has-life-skills-header .md-view-content {
  padding-top: 0px;
}
.md-page-default.has-life-skills-header .md-view-content .md-custom-header + .container,
.md-page-detail.has-life-skills-header .md-view-content .md-custom-header + .container {
  padding-top: 60px;
}
.md-page-window-middle {
  background: url("/images/auth-bg-net-bl.png") bottom left no-repeat fixed;
  background-color: #1da4f0;
}
.md-page-window-middle:before {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  width: 375px;
  height: 376px;
  background: no-repeat url("/images/auth-bg-net-tr.png");
}
.md-page-window-middle .md-view-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: none;
}
.md-page-window-middle .md-view-content .md-page-window-header {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-bottom: 10px;
}
.md-page-window-middle .md-view-content .md-page-window-header md-homelink {
  display: block;
  margin-left: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .md-page-window-middle .md-view-content .md-page-window-header md-homelink {
    text-align: center;
  }
}
.md-page-window-middle .md-view-content .md-page-window-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  min-height: fit-content;
}
.md-page-window-middle .md-view-content .md-page-window-footer {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  width: 100%;
  margin-top: 30px;
}
.md-page-window-middle .md-view-content .md-page-window-footer md-copyright {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
.md-page-window-middle .md-page-window-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-page-window-middle .md-window {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 40px;
}
.md-page-window-middle .md-window.lg {
  max-width: 640px;
}
.md-page-window-middle .md-window .md-pane {
  padding: 25px 30px;
}
.md-page-window-middle .md-window .window-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.md-page-window-middle .md-window .window-text {
  margin-bottom: 30px;
}
.md-page-window-middle .md-window .window-text h1 {
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 5px;
}
.md-page-window-middle .md-window .window-text h2 {
  font-size: 14px;
  color: #999;
  line-height: 1.43;
}
.md-page-window-middle .md-window .window-body .control-label i.has-error {
  margin-left: 5px;
}
.md-page-window-middle .md-window .window-body .control-label span.error {
  margin-left: 5px;
}
.md-page-window-middle .md-window .window-body .form-group:last-child {
  margin-bottom: 10px;
}
.md-page-window-middle .md-window .window-body .footer-button .btn {
  padding-left: 60px;
  padding-right: 60px;
  max-width: 100%;
}
.md-page-window-middle .md-window .window-body .footer-info {
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}
.md-page-window-middle .md-window .window-body .footer-info a {
  cursor: pointer;
  color: #1da4f0;
}
.md-page-window-middle .md-window .window-body .footer-info a:hover,
.md-page-window-middle .md-window .window-body .footer-info a:focus {
  color: #4ab6f3;
}
.md-page-window-middle .md-window .window-footer {
  margin-top: 10px;
  text-align: center;
}
.md-page-window-middle .md-window .window-footer .back-link {
  font-weight: 400;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.md-page-window-middle .md-window .window-footer .back-link:hover,
.md-page-window-middle .md-window .window-footer .back-link:focus {
  color: #fff;
}
.md-page-window-middle .md-window .window-footer .back-link i {
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .md-page-window-middle .md-page-window-content .md-window {
    padding: 0px 20px;
  }
  .md-page-window-middle .md-page-window-content .md-window .footer-info,
  .md-page-window-middle .md-page-window-content .md-window .footer-button {
    text-align: center;
  }
  .md-page-window-middle .md-page-window-content .md-window .footer-button {
    margin-bottom: 20px;
  }
}
.md-page-window-middle .flex-container-component {
  display: contents;
}
@media print {
  body {
    margin: 0px;
  }
}
@page {
  margin: 25mm 25mm 25mm 25mm;
  width: A4 !important;
  height: portrait !important;
  max-width: A4 !important;
  max-height: portrait !important;
}
.md-link,
.md-link-white {
  cursor: pointer;
  color: #1da4f0;
}
.md-link:hover,
.md-link-white:hover,
.md-link:focus,
.md-link-white:focus {
  color: #4ab6f3;
}
.md-link-white {
  color: #fff;
}
.md-link-white:hover,
.md-link-white:focus {
  color: #1da4f0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
h1,
.h1 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
}
h2,
.h2 {
  font-size: 24px;
  line-height: 32px;
}
h3,
.h3 {
  font-size: 22px;
  line-height: 30px;
}
h4,
.h4 {
  font-size: 20px;
  line-height: 28px;
}
h5,
.h5 {
  font-size: 18px;
  line-height: 26px;
}
h6,
.h6 {
  font-size: 16px;
  line-height: 24px;
}
.text-default {
  color: #d0d0d0;
}
.text-success {
  color: #50b440;
}
.text-warning {
  color: #f09b37;
}
.text-info {
  color: #1da4f0;
}
.text-danger {
  color: #da3549;
}
.md-text,
.text1,
.text2,
.text3 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
}
.md-text.inline,
.text1.inline,
.text2.inline,
.text3.inline {
  clear: none;
  display: inline-block;
}
.md-text.xs,
.text1.xs,
.text2.xs,
.text3.xs {
  font-size: 12px;
}
.md-text.md,
.text1.md,
.text2.md,
.text3.md {
  font-size: 16px;
}
.md-text.lg,
.text1.lg,
.text2.lg,
.text3.lg {
  font-size: 18px;
}
.md-text.xl,
.text1.xl,
.text2.xl,
.text3.xl {
  font-size: 22px;
}
.md-text.strong,
.text1.strong,
.text2.strong,
.text3.strong {
  font-weight: 600;
}
.md-text.fs-24,
.text1.fs-24,
.text2.fs-24,
.text3.fs-24 {
  font-size: 24px;
}
.text1 {
  color: #000;
}
.text2 {
  color: #666;
}
.text2.bold {
  font-weight: 700;
}
.text3 {
  color: #999;
}
.md-text.text-success,
.text1.text-success,
.text2.text-success,
.text3.text-success {
  color: #50b440;
}
.md-text.text-danger,
.text1.text-danger,
.text2.text-danger,
.text3.text-danger {
  color: #da3549;
}
.md-ql-content {
  font-size: 14px;
}
.md-ql-content p {
  margin-bottom: 10px;
}
.md-ql-content a {
  cursor: pointer;
  color: #1da4f0;
}
.md-ql-content a:hover,
.md-ql-content a:focus {
  color: #4ab6f3;
}
.md-ql-content blockquote {
  margin-bottom: 10px;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.md-ql-content .ql-size-huge {
  font-size: 22px;
}
.md-ql-content .ql-size-large {
  font-size: 18px;
}
.md-ql-content .ql-size-small {
  font-size: 12px;
}
.md-ql-content .ql-align-left {
  text-align: left;
}
.md-ql-content .ql-align-center {
  text-align: center;
}
.md-ql-content .ql-align-right {
  text-align: right;
}
.md-ql-content .ql-align-justify {
  text-align: justify;
}
.md-ql-content .ql-indent-1 {
  margin-left: 20px;
}
.md-ql-content .ql-indent-2 {
  margin-left: 40px;
}
.md-ql-content .ql-indent-3 {
  margin-left: 60px;
}
.md-ql-content ul,
.md-ql-content ol {
  padding-left: 20px;
}
.md-ql-content strong {
  font-weight: 600;
}
.md-pane {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 20px;
}
.md-pane.md-pane-table {
  padding: 0px;
  height: 100%;
}
.md-pane.md-pane-sidebar {
  padding: 0px;
}
.md-pane .md-pane-group {
  font-size: 14px;
  margin-bottom: 20px;
}
.md-pane .md-pane-group:last-child {
  margin-bottom: 0px;
}
.md-pane .md-pane-group .md-pane-group-title {
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 35px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background-color: #f2f2f2;
  vertical-align: middle;
  color: #666;
  margin-bottom: 20px;
}
.md-pane .md-pane-group .md-pane-group-item {
  padding: 0px 10px;
}
.md-page-detail .md-pane.md-pane-sidebar {
  padding: 10px 0px;
}
.md-btn {
  color: #fff;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  outline: none !important;
  background: none;
}
.md-btn .fa {
  margin-right: 10px;
  font-size: 15px;
}
.md-btn:hover,
.md-btn:focus {
  color: #fff;
}
.md-btn.sm {
  height: 34px;
  line-height: 32px;
}
.md-btn.icon {
  padding: 0 14px;
  border: none;
  line-height: 40px;
}
.md-btn.icon.sm {
  line-height: 34px;
}
.md-btn.icon .fa {
  margin: 0;
}
.md-btn.primary {
  background-color: #1da4f0;
  background: -webkit-linear-gradient(top, #4ab6f3, #1da4f0);
  background: -moz-linear-gradient(top, #4ab6f3, #1da4f0);
  background: -o-linear-gradient(top, #4ab6f3, #1da4f0);
  background: -ms-linear-gradient(top, #4ab6f3, #1da4f0);
  background: linear-gradient(to bottom, #4ab6f3, #1da4f0);
  border: 0;
  line-height: 40px;
}
.md-btn.primary.sm {
  line-height: 34px;
}
.md-btn.primary:hover {
  background-color: #109ceb;
  background: -webkit-linear-gradient(top, #35aef2, #109ceb);
  background: -moz-linear-gradient(top, #35aef2, #109ceb);
  background: -o-linear-gradient(top, #35aef2, #109ceb);
  background: -ms-linear-gradient(top, #35aef2, #109ceb);
  background: linear-gradient(to bottom, #35aef2, #109ceb);
}
.md-btn.primary:focus {
  background-color: #35aef2;
  background: -webkit-linear-gradient(top, #109ceb, #35aef2);
  background: -moz-linear-gradient(top, #109ceb, #35aef2);
  background: -o-linear-gradient(top, #109ceb, #35aef2);
  background: -ms-linear-gradient(top, #109ceb, #35aef2);
  background: linear-gradient(to bottom, #109ceb, #35aef2);
}
.md-btn.primary.active {
  background-color: #4ab6f3;
  background: -webkit-linear-gradient(top, #1da4f0, #4ab6f3);
  background: -moz-linear-gradient(top, #1da4f0, #4ab6f3);
  background: -o-linear-gradient(top, #1da4f0, #4ab6f3);
  background: -ms-linear-gradient(top, #1da4f0, #4ab6f3);
  background: linear-gradient(to bottom, #1da4f0, #4ab6f3);
}
.md-btn.secondary {
  background-color: #6bb31c;
  background: -webkit-linear-gradient(top, #7ed321, #6bb31c);
  background: -moz-linear-gradient(top, #7ed321, #6bb31c);
  background: -o-linear-gradient(top, #7ed321, #6bb31c);
  background: -ms-linear-gradient(top, #7ed321, #6bb31c);
  background: linear-gradient(to bottom, #7ed321, #6bb31c);
}
.md-btn.secondary:hover {
  background-color: #66aa1b;
  background: -webkit-linear-gradient(top, #78c81f, #66aa1b);
  background: -moz-linear-gradient(top, #78c81f, #66aa1b);
  background: -o-linear-gradient(top, #78c81f, #66aa1b);
  background: -ms-linear-gradient(top, #78c81f, #66aa1b);
  background: linear-gradient(to bottom, #78c81f, #66aa1b);
}
.md-btn.secondary:focus {
  background-color: #78c81f;
  background: -webkit-linear-gradient(top, #66aa1b, #78c81f);
  background: -moz-linear-gradient(top, #66aa1b, #78c81f);
  background: -o-linear-gradient(top, #66aa1b, #78c81f);
  background: -ms-linear-gradient(top, #66aa1b, #78c81f);
  background: linear-gradient(to bottom, #66aa1b, #78c81f);
}
.md-btn.secondary.active {
  background-color: #7ed321;
  background: -webkit-linear-gradient(top, #6bb31c, #7ed321);
  background: -moz-linear-gradient(top, #6bb31c, #7ed321);
  background: -o-linear-gradient(top, #6bb31c, #7ed321);
  background: -ms-linear-gradient(top, #6bb31c, #7ed321);
  background: linear-gradient(to bottom, #6bb31c, #7ed321);
}
.md-btn.dark-grey {
  background-color: #8e8e8e;
  background: -webkit-linear-gradient(top, #b1b1b1, #8e8e8e);
  background: -moz-linear-gradient(top, #b1b1b1, #8e8e8e);
  background: -o-linear-gradient(top, #b1b1b1, #8e8e8e);
  background: -ms-linear-gradient(top, #b1b1b1, #8e8e8e);
  background: linear-gradient(to bottom, #b1b1b1, #8e8e8e);
}
.md-btn.dark-grey:hover {
  background-color: #878787;
  background: -webkit-linear-gradient(top, #a8a8a8, #878787);
  background: -moz-linear-gradient(top, #a8a8a8, #878787);
  background: -o-linear-gradient(top, #a8a8a8, #878787);
  background: -ms-linear-gradient(top, #a8a8a8, #878787);
  background: linear-gradient(to bottom, #a8a8a8, #878787);
}
.md-btn.dark-grey:focus {
  background-color: #a8a8a8;
  background: -webkit-linear-gradient(top, #878787, #a8a8a8);
  background: -moz-linear-gradient(top, #878787, #a8a8a8);
  background: -o-linear-gradient(top, #878787, #a8a8a8);
  background: -ms-linear-gradient(top, #878787, #a8a8a8);
  background: linear-gradient(to bottom, #878787, #a8a8a8);
}
.md-btn.dark-grey.active {
  background-color: #b1b1b1;
  background: -webkit-linear-gradient(top, #8e8e8e, #b1b1b1);
  background: -moz-linear-gradient(top, #8e8e8e, #b1b1b1);
  background: -o-linear-gradient(top, #8e8e8e, #b1b1b1);
  background: -ms-linear-gradient(top, #8e8e8e, #b1b1b1);
  background: linear-gradient(to bottom, #8e8e8e, #b1b1b1);
}
.md-btn.info-secondary {
  background-color: rgba(107,179,28,0.059);
  border: 1px solid #5b8e24;
  color: #5b8e24;
}
.md-btn.info-secondary:hover {
  background-color: rgba(46,77,12,0.059);
}
.md-btn.info-secondary:focus {
  background-color: rgba(46,77,12,0.059);
}
.md-btn.btn-toolbar-success {
  background-color: rgba(251,227,200,0.122);
  border: 1px solid #cf7a15;
  color: #cf7a15;
}
.md-btn.btn-toolbar-success:hover {
  background-color: rgba(243,173,95,0.122);
}
.md-btn.btn-toolbar-success:focus {
  background-color: rgba(243,173,95,0.122);
}
.md-btn.btn-toolbar-grey {
  background-color: rgba(251,227,200,0.122);
  border: 1px solid #8e8e8e;
  color: #727272;
}
.md-btn.btn-toolbar-grey:hover {
  background-color: #e8e8e8;
}
.md-btn.danger {
  background: #fff2f2;
  border: 1px solid #da3549;
  color: #da3549;
}
.md-btn.danger:hover {
  background-color: #ffe6e6;
  background: -webkit-linear-gradient(top, #fff4f4, #ffe6e6);
  background: -moz-linear-gradient(top, #fff4f4, #ffe6e6);
  background: -o-linear-gradient(top, #fff4f4, #ffe6e6);
  background: -ms-linear-gradient(top, #fff4f4, #ffe6e6);
  background: linear-gradient(to bottom, #fff4f4, #ffe6e6);
}
.md-btn.danger:focus {
  background-color: #fff4f4;
  background: -webkit-linear-gradient(top, #ffe6e6, #fff4f4);
  background: -moz-linear-gradient(top, #ffe6e6, #fff4f4);
  background: -o-linear-gradient(top, #ffe6e6, #fff4f4);
  background: -ms-linear-gradient(top, #ffe6e6, #fff4f4);
  background: linear-gradient(to bottom, #ffe6e6, #fff4f4);
}
.md-btn.danger.active {
  background-color: #fffefe;
  background: -webkit-linear-gradient(top, #fff0f0, #fffefe);
  background: -moz-linear-gradient(top, #fff0f0, #fffefe);
  background: -o-linear-gradient(top, #fff0f0, #fffefe);
  background: -ms-linear-gradient(top, #fff0f0, #fffefe);
  background: linear-gradient(to bottom, #fff0f0, #fffefe);
}
.md-btn.info {
  background-color: #e9f6fd;
  border: 1px solid #1da4f0;
  color: #1da4f0;
}
.md-btn.info:hover {
  background-color: #d3edfb;
}
.md-btn.info:focus {
  background-color: #d3edfb;
}
.md-btn.info.active {
  background-color: #fefeff;
  background: -webkit-linear-gradient(top, #e9f6fd, #fefeff);
  background: -moz-linear-gradient(top, #e9f6fd, #fefeff);
  background: -o-linear-gradient(top, #e9f6fd, #fefeff);
  background: -ms-linear-gradient(top, #e9f6fd, #fefeff);
  background: linear-gradient(to bottom, #e9f6fd, #fefeff);
}
.md-btn.clear {
  background: 0;
  color: #1da4f0;
  border: none;
  line-height: 40px;
}
.md-btn.clear.sm {
  line-height: 34px;
}
.md-btn.clear:hover,
.md-btn.clear:focus {
  background: 0;
  border: none;
  color: #0f97e3;
}
.md-btn.back {
  -webkit-box-shadow: 0 0 0 0.5pt rgba(57,175,242,0.51);
  box-shadow: 0 0 0 0.5pt rgba(57,175,242,0.51);
  background-color: rgba(233,247,255,0.761);
}
.md-toolbar {
  clear: none;
  display: inline-block;
  line-height: 34px;
}
.md-toolbar.md-section-toolbar {
  margin-left: 20px;
  line-height: 40px;
}
.md-toolbar.md-toolbar-lg {
  line-height: 40px;
}
.md-toolbar .md-drag-handle {
  clear: none;
  display: inline-block;
}
.md-toolbar .md-link {
  clear: none;
  display: inline-block;
}
.md-toolbar .md-link + .md-link {
  margin-left: 10px;
}
.md-toolbar .md-form-group,
.md-toolbar .form-group {
  clear: none;
  display: inline-block;
  margin: 0;
  margin-right: 20px;
}
.md-toolbar .md-form-group:last-child,
.md-toolbar .form-group:last-child {
  margin-right: inherit;
}
.md-toolbar .md-form-group .control-label,
.md-toolbar .form-group .control-label {
  font-size: 12px;
  line-height: 20px;
  clear: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0px;
  margin-right: 10px;
}
.md-toolbar .md-form-group .control-label .label-badge,
.md-toolbar .form-group .control-label .label-badge {
  margin-left: 5px;
  color: #999;
}
.md-toolbar .md-form-group .control-label .label-badge.active,
.md-toolbar .form-group .control-label .label-badge.active {
  color: #1da4f0;
}
.md-toolbar .md-form-group .dropdown .dropdown-toggle,
.md-toolbar .form-group .dropdown .dropdown-toggle {
  text-transform: uppercase;
  font-weight: 600;
}
.md-toolbar .md-form-group .md-form-control[type="search"],
.md-toolbar .form-group .md-form-control[type="search"] {
  height: 40px;
  line-height: 40px;
}
.md-toolbar .md-form-group.md-form-group-icon .icon,
.md-toolbar .form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-toolbar .nav-pills li {
  padding-left: 10px;
  padding-right: 10px;
}
.md-toolbar .nav-pills li a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: #919191;
  background-color: transparent;
  padding: 0px 0px;
}
.md-toolbar .nav-pills li a i {
  font-size: 14px;
  margin-right: 8px;
}
.md-toolbar .nav-pills li.active a,
.md-toolbar .nav-pills li:hover a {
  color: #1da4f0;
  background: 0;
  border: 0;
}
.md-toolbar .nav-pills li.active a::before {
  content: ' ';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -5px;
  height: 3px;
  overflow: hidden;
  background-color: #1da4f0;
}
.md-toolbar .bootstrap-switch {
  height: 20px;
}
.md-toolbar .bootstrap-switch .bootstrap-switch-label,
.md-toolbar .bootstrap-switch .bootstrap-switch-handle-off,
.md-toolbar .bootstrap-switch .bootstrap-switch-handle-on {
  padding: 0px;
  width: 22px !important;
  line-height: 18px;
  color: #1da4f0;
  font-size: 10px;
}
.md-toolbar .bootstrap-switch .switch-count {
  font-weight: 700;
}
.md-toolbar .bootstrap-switch .switch-plus-sign {
  font-size: 8px;
}
.md-toolbar.right {
  float: right;
}
.md-toolbar.right .md-form-group,
.md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
}
.md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 0px;
}
.md-toolbar .md-pagination-count .count {
  font-size: 14px;
  color: #000;
}
@media (max-width: 768px) {
  .md-toolbar {
    text-align: center;
  }
  .md-toolbar .md-form-group,
  .md-toolbar .form-group {
    margin-bottom: 10px;
  }
  .md-toolbar .md-form-group.active:after,
  .md-toolbar .form-group.active:after {
    bottom: 0px;
  }
  .md-toolbar.right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .md-toolbar {
    text-align: left;
  }
  .md-toolbar .md-form-group,
  .md-toolbar .form-group {
    margin-bottom: 10px;
  }
  .md-toolbar .md-form-group.active:after,
  .md-toolbar .form-group.active:after {
    bottom: 0px;
  }
  .md-toolbar.right {
    text-align: left;
  }
}
.md-toolbar .clear-toolbar-filters {
  color: #1da4f0;
}
.md-toolbar .form-group.switch.referring-provider-switch {
  margin-right: 8px;
}
.md-toolbar .clear-filter-container {
  margin-right: 20px;
}
.dropdown-toggle.icon {
  text-align: center;
}
.md-dropdown-menu {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
  min-width: 0px;
  padding: 10px 0px;
  color: #000;
  text-transform: none;
}
@media (max-width: 767px) {
  .md-dropdown-menu {
    padding: 0px 0px;
  }
}
.md-dropdown-menu > .active > a:hover {
  background-color: #f2f2f2;
}
.md-dropdown-menu > .active > a,
.md-dropdown-menu > .active > a:focus {
  background-color: #fff;
  color: #1da4f0;
}
.md-dropdown-menu.search {
  min-width: 150px;
  max-width: 250px;
  max-height: 400px;
  overflow-y: auto;
  background-image: -webkit-linear-gradient(bottom, #fff, #fff), -webkit-linear-gradient(bottom, #fff, #fff), -webkit-linear-gradient(bottom, rgba(0,0,0,0.25), rgba(255,255,255,0)), -webkit-linear-gradient(top, rgba(0,0,0,0.25), rgba(255,255,255,0));
  background-image: -moz-linear-gradient(bottom, #fff, #fff), -moz-linear-gradient(bottom, #fff, #fff), -moz-linear-gradient(bottom, rgba(0,0,0,0.25), rgba(255,255,255,0)), -moz-linear-gradient(top, rgba(0,0,0,0.25), rgba(255,255,255,0));
  background-image: -o-linear-gradient(bottom, #fff, #fff), -o-linear-gradient(bottom, #fff, #fff), -o-linear-gradient(bottom, rgba(0,0,0,0.25), rgba(255,255,255,0)), -o-linear-gradient(top, rgba(0,0,0,0.25), rgba(255,255,255,0));
  background-image: -ms-linear-gradient(bottom, #fff, #fff), -ms-linear-gradient(bottom, #fff, #fff), -ms-linear-gradient(bottom, rgba(0,0,0,0.25), rgba(255,255,255,0)), -ms-linear-gradient(top, rgba(0,0,0,0.25), rgba(255,255,255,0));
  background-image: linear-gradient(to top, #fff, #fff), linear-gradient(to top, #fff, #fff), linear-gradient(to top, rgba(0,0,0,0.25), rgba(255,255,255,0)), linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(255,255,255,0));
  background-position: bottom center, top center, bottom center, top center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  background-attachment: local, local, scroll, scroll;
}
.md-dropdown-menu.search .md-form-group {
  display: block;
  margin: 0px !important;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  .md-dropdown-menu.search {
    padding-top: 10px;
  }
}
.md-dropdown-menu .md-loader.loading .md-loader-indicator {
  padding: 10px 0px;
  font-size: 25px;
}
@media (max-width: 767px) {
  .md-dropdown-menu li {
    border-bottom: 1px solid #e0e0e0;
  }
  .md-dropdown-menu li:last-child {
    border-bottom: none;
  }
}
.md-dropdown-menu li a {
  display: block;
  color: #000;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  .md-dropdown-menu li a {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
}
.md-dropdown-menu li a.active,
.md-dropdown-menu li a:hover {
  background-color: #f2f2f2;
}
.md-dropdown-menu li i {
  font-size: 14px;
  line-height: 20px;
  margin-right: 5px;
  color: #666;
  vertical-align: middle;
}
.md-dropdown-menu li i + .md-text {
  line-height: 20px;
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
.md-dropdown-menu li .no-data {
  padding: 5px 20px;
}
.md-dropdown-menu li.divider {
  margin: 5px 0;
}
.md-dropdown-menu li.md-divider {
  border-bottom: 1px solid #e0e0e0;
}
.md-dropdown-menu li.md-dropdown-header {
  padding: 5px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.md-dropdown-menu li.md-dropdown-header:hover {
  background-color: transparent;
}
.md-dropdown-menu li.md-dropdown-header .header-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.md-dropdown-menu.dropdown-table {
  padding-top: 0px;
  padding-bottom: 0px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header,
.md-dropdown-menu.dropdown-table .dropdown-table-row {
  display: table-row;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header .dropdown-table-column:first-child {
  border-top-left-radius: 5px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header .dropdown-table-column:last-child {
  border-top-right-radius: 5px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header.bold .dropdown-table-column {
  font-weight: 600;
}
.md-dropdown-menu.dropdown-table .dropdown-table-row {
  padding: 0px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-row:last-child .dropdown-table-column:first-child {
  border-bottom-left-radius: 5px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-row:last-child .dropdown-table-column:last-child {
  border-bottom-right-radius: 5px;
}
.md-dropdown-menu.dropdown-table .dropdown-table-column {
  display: table-cell;
  padding: 10px 20px;
  border-bottom: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  max-width: 300px;
  height: 40px;
  vertical-align: middle;
}
.md-dropdown-menu.dropdown-table .dropdown-table-column:last-child {
  border-right: none;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header .dropdown-table-column {
  background-color: #f2f2f2;
}
.md-dropdown-menu.dropdown-table .dropdown-table-header .dropdown-table-column .md-text {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 18px;
  vertical-align: middle;
  color: #666;
}
.dropdown.open .md-dropdown-menu.dropdown-table {
  display: table;
}
.md-dropdown-group {
  clear: none;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .md-dropdown-group {
    font-size: 14px;
  }
}
.md-dropdown-group .control-label {
  font-weight: 600;
  margin-right: 10px;
  color: #000;
}
.md-dropdown-group .dropdown {
  clear: none;
  display: inline-block;
}
.md-dropdown-group .dropdown .dropdown-toggle {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #1da4f0;
}
.md-dropdown-group .dropdown .dropdown-toggle i {
  font-size: 14px;
  color: #1da4f0;
  margin-left: 5px;
}
.md-dropdown-group .dropdown .dropdown-menu {
  top: 25px;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .md-dropdown-group .dropdown .dropdown-menu {
    top: unset;
    left: unset;
    right: unset;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.md-dropdown-group-left .dropdown .dropdown-menu {
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
body.modal-open > .md-dropdown-menu {
  z-index: 1100;
}
.md-form {
  display: block;
}
.md-form-group {
  position: relative;
}
.md-form-group .form-control-feedback {
  position: absolute;
  top: 9px;
  right: 0px;
}
.md-form-group .form-control-feedback.fa {
  font-size: 16px;
}
.md-form-group .form-control-feedback.fa-asterisk {
  color: #da3549;
}
.md-form-group .fa-asterisk {
  color: #da3549;
}
.md-form-group.has-success .form-control-feedback {
  color: #50b440;
}
.md-form-group.has-warning .form-control-feedback {
  color: #f09b37;
}
.md-form-group.has-error .form-control-feedback {
  color: #da3549;
}
.md-form-group.has-error rmd-radio,
.md-form-group.has-error rmd-checkbox {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: inherit;
}
.md-form-group.has-error rmd-radio label,
.md-form-group.has-error rmd-checkbox label {
  color: #555;
}
.md-form-group.has-error rmd-radio label .fake,
.md-form-group.has-error rmd-checkbox label .fake {
  border-color: #da3549;
}
.md-form-group.has-feedback input.md-form-control[type="text"] {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-right: 25px;
}
.md-form-group.has-feedback rmd-radio,
.md-form-group.has-feedback rmd-checkbox {
  padding-right: initial;
}
.md-form-group.has-toolbar .form-control-toolbar-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn {
  height: 34px;
  line-height: 34px;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon {
  vertical-align: middle;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon.danger {
  color: #da3549;
}
.md-form-group .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.md-form-group {
  display: block;
  margin-bottom: 30px;
}
.md-form-group .control-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  vertical-align: middle;
  color: #000;
}
@media (max-width: 767px) {
  .md-form-group select .form-control {
    font-size: 16px;
  }
}
.md-form-group.has-error .control-label {
  color: #e36776;
}
.md-form-group.has-error input.md-form-control {
  border-color: #e36776;
}
.md-form-group.has-error input.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e36776;
}
.md-form-group.md-form-group-icon {
  position: relative;
}
.md-form-group.md-form-group-icon .icon {
  color: #b1b1b1;
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 34px;
  width: 40px;
  text-align: center;
}
.md-form-group.md-form-group-icon .icon .dropdown-toggle {
  display: block;
  width: 40px;
  line-height: 34px;
  text-align: center;
  color: #b1b1b1;
}
.md-form-group.md-form-group-icon .icon .dropdown-menu {
  margin-left: -50%;
}
.md-form-group.md-form-group-icon .icon.icon-right,
.md-form-group.md-form-group-icon .icon.right {
  left: auto;
  right: 0px;
}
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="email"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="email"] {
  padding-left: 35px;
}
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="email"] {
  padding-right: 35px;
}
.md-form-group .clear-button-holder {
  position: absolute;
  right: 40px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  cursor: pointer;
}
.md-form-group .bootstrap-switch {
  border-radius: 5px;
  border-color: #d0d0d0;
}
.md-form-group .bootstrap-switch + .control-label {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0px;
  text-transform: none;
}
.md-form-group .bootstrap-switch + .control-label .label-badge {
  font-size: 14px;
  line-height: 22px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  padding: 0px;
  width: 22px !important;
  line-height: 18px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  background: #1da4f0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background: #e0e0e0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  border-radius: 5px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  display: inline-block;
  vertical-align: baseline;
}
.md-form-group .tooltips {
  clear: none;
  display: inline-block;
  margin-left: 5px;
}
.md-form-group .tooltips .fa {
  margin-bottom: 3px;
}
.md-form-group .tooltips tip-tip {
  font-size: 14px;
  white-space: nowrap;
}
.md-form-group.inline {
  line-height: 34px;
}
.md-form-group.inline .control-label,
.md-form-group.inline .md-form-control,
.md-form-group.inline .bootstrap-switch {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
input.md-form-control[type="search"],
input.md-form-control[type="text"],
input.md-form-control[type="password"],
input.md-form-control[type="email"],
textarea.md-form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
input.md-form-control[type="search"]:focus,
input.md-form-control[type="text"]:focus,
input.md-form-control[type="password"]:focus,
input.md-form-control[type="email"]:focus,
textarea.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
input.md-form-control[type="search"][disabled],
input.md-form-control[type="text"][disabled],
input.md-form-control[type="password"][disabled],
input.md-form-control[type="email"][disabled],
textarea.md-form-control[disabled],
input.md-form-control[type="search"][readonly],
input.md-form-control[type="text"][readonly],
input.md-form-control[type="password"][readonly],
input.md-form-control[type="email"][readonly],
textarea.md-form-control[readonly] {
  background-color: #f2f2f2;
}
input.md-form-control[type="search"]::-webkit-input-placeholder,
input.md-form-control[type="text"]::-webkit-input-placeholder,
input.md-form-control[type="password"]::-webkit-input-placeholder,
input.md-form-control[type="email"]::-webkit-input-placeholder,
textarea.md-form-control::-webkit-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::-moz-placeholder,
input.md-form-control[type="text"]::-moz-placeholder,
input.md-form-control[type="password"]::-moz-placeholder,
input.md-form-control[type="email"]::-moz-placeholder,
textarea.md-form-control::-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-moz-placeholder,
input.md-form-control[type="text"]:-moz-placeholder,
input.md-form-control[type="password"]:-moz-placeholder,
input.md-form-control[type="email"]:-moz-placeholder,
textarea.md-form-control:-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-ms-input-placeholder,
input.md-form-control[type="text"]:-ms-input-placeholder,
input.md-form-control[type="password"]:-ms-input-placeholder,
input.md-form-control[type="email"]:-ms-input-placeholder,
textarea.md-form-control:-ms-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::placeholder,
input.md-form-control[type="text"]::placeholder,
input.md-form-control[type="password"]::placeholder,
input.md-form-control[type="email"]::placeholder,
textarea.md-form-control::placeholder {
  color: #b1b1b1;
}
@media (max-width: 767px) {
  input.md-form-control[type="search"],
  input.md-form-control[type="text"],
  input.md-form-control[type="password"],
  input.md-form-control[type="email"],
  textarea.md-form-control {
    font-size: 16px;
  }
}
input.md-form-control[type="search"].clear,
input.md-form-control[type="text"].clear,
input.md-form-control[type="password"].clear,
input.md-form-control[type="email"].clear,
textarea.md-form-control.clear {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
textarea.md-form-control {
  height: auto !important;
}
.error-text {
  font-size: 12px;
  padding-top: 5px;
  color: #da3549;
}
input.md-form-control[type="email"] {
  text-transform: lowercase;
}
::-webkit-input-placeholder {
  text-transform: none !important;
}
::-moz-placeholder {
  text-transform: none !important;
}
:-moz-placeholder {
  text-transform: none !important;
}
:-ms-input-placeholder {
  text-transform: none !important;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
.md-tabpanel .md-tabpanel-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 10px;
}
.md-tabpanel .md-tabpanel-tabs .md-toolbar {
  margin-top: -10px;
}
.md-tabpanel .md-tabpanel-tabs .md-toolbar.right {
  margin-left: auto;
}
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 10px;
  margin-right: 30px;
  color: #919191;
  position: relative;
}
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab .fa,
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab .name {
  line-height: 20px;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab .fa {
  margin-right: 5px;
}
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab.active {
  color: #000;
}
.md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab.active:after {
  content: '';
  left: 0px;
  right: 0px;
  bottom: -1px;
  height: 3px;
  overflow: hidden;
  position: absolute;
  background-color: #1da4f0;
}
.md-tabpanel .md-tabpanel-content rmd-list .md-loader {
  overflow: auto;
}
.modal-dialog .modal-content {
  background-color: #f6f6f6;
  padding: 0px 20px;
}
.modal-dialog .modal-header,
.modal-dialog .modal-body,
.modal-dialog .modal-footer {
  padding: 20px 0px;
}
@media (max-width: 767px) {
  .modal-dialog .modal-body {
    padding: 10px 0px;
  }
}
.modal-dialog .modal-header .modal-title {
  font-weight: 300;
}
.modal-dialog .modal-header .modal-title.has-success {
  color: #50b440;
}
.modal-dialog .modal-header .modal-title.has-warning {
  color: #f09b37;
}
.modal-dialog .modal-header .modal-title i {
  margin-right: 10px;
}
.modal-dialog .modal-header .close {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  font-size: 33px;
}
.modal-dialog .modal-header .md-toolbar .md-form-group {
  margin-right: 20px;
}
.modal-dialog .modal-body {
  color: #000;
}
.modal-dialog .modal-body.no-padding {
  padding: 0px;
}
.modal-dialog .modal-body .text-danger b {
  font-weight: 600;
}
.modal-dialog .modal-body .form-group {
  margin-bottom: 20px;
}
.modal-dialog .modal-body .form-group .control-label {
  font-weight: 600;
}
.modal-dialog .modal-body .form-group .control-label.has-secondary {
  width: 100%;
}
.modal-dialog .modal-body .form-group .control-label .secondary-label {
  font-size: 14px;
  font-weight: 400;
  color: #868db5;
  float: right;
}
.modal-dialog .modal-body .form-group .control-label .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
.modal-dialog .modal-body .form-group.has-error rmd-radio,
.modal-dialog .modal-body .form-group.has-error rmd-checkbox {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.modal-dialog .modal-body .content-section .section-header {
  padding: 15px 0px;
  border-bottom: 1px solid #e0e0e0;
}
.modal-dialog .modal-body .content-section .section-header h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  color: #1da4f0;
}
.modal-dialog .modal-body .content-section .section-content {
  padding: 10px 0px;
  border-bottom: 1px solid #e0e0e0;
}
.modal-dialog .modal-body .content-section .no-data {
  text-align: center;
}
.modal-dialog .modal-body .content-section .notice {
  padding: 10px 15px;
  background: #e8f6fd;
  border: 1px solid #77c8f6;
  color: #1da4f0;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}
.modal-dialog .modal-body .content-section .notice .strong {
  font-weight: 600;
}
.modal-dialog .modal-body .content-section .info {
  margin-bottom: 20px;
}
.modal-dialog .modal-body .content-section .info:last-child {
  margin-bottom: 0px;
}
.modal-dialog .modal-body .content-section md-locations-list {
  border-top: 1px solid #d0d0d0;
  padding-top: 20px;
}
.modal-dialog .modal-footer .md-modal-footer-toolbar {
  text-align: center;
}
.modal-dialog .modal-footer .md-modal-footer-toolbar .btn {
  min-width: 80px;
  padding: 0px 10px;
}
.modal-dialog .modal-footer .md-modal-footer-toolbar .btn + .btn {
  margin-left: 10px;
}
.md-modal-window-loading .modal-dialog .modal-content {
  background-color: #2f96b4;
  opacity: 0.97;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=97)";
  filter: alpha(opacity=97);
}
.md-modal-window-loading .modal-dialog .modal-body {
  color: #fff;
  font-weight: 600;
}
.md-modal-window-loading .modal-dialog .modal-body i {
  margin-right: 5px;
}
.md-modal-window-full-height .modal-dialog {
  margin-top: 10px;
  margin-bottom: 10px;
  height: calc(100vh - 20px);
}
@media print {
  .md-modal-window-full-height .modal-dialog {
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
  }
}
.md-modal-window-full-height .md-image-preview-container {
  max-height: 80vh;
  overflow: auto;
}
.wide-referral-merge-modal .modal-dialog {
  width: 70%;
}
.wide-referral-merge-modal .modal-dialog .md-modal .modal-body .content-section {
  max-height: calc(100vh - 40px - 81px - 81px - 50px);
  overflow: scroll;
  overflow-y: auto;
  overflow-x: hidden;
}
.wide-referral-merge-modal .modal-dialog .row-identifiers {
  background-color: #fff !important;
}
.wide-referral-merge-modal .modal-dialog .row-identifiers .title {
  font-weight: 600 !important;
}
.wide-referral-merge-modal .modal-dialog .row-resolution {
  background-color: #fff !important;
}
.wide-referral-merge-modal .modal-dialog .resolution-type {
  font-weight: 600 !important;
}
.wide-referral-merge-modal .content-provider {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.wide-referral-merge-modal md-provider-column {
  padding-left: 5px !important;
}
.md-modal-window-full-height-and-width .modal-dialog {
  margin-top: 10px;
  margin-bottom: 10px;
  height: calc(100vh - 20px);
  width: 100%;
}
@media print {
  .md-modal-window-full-height-and-width .modal-dialog {
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
  }
}
.md-modal-window-full-height-and-width .md-image-preview-container {
  max-height: 80vh;
  overflow: auto;
}
.md-modal-backdrop-hide-background {
  opacity: 1 !important;
  -ms-filter: none !important;
  filter: none !important;
  z-index: 1999;
}
.md-referral-appointment-schedule-modal .modal-dialog.modal-lg {
  width: 900px;
}
@media (min-width: 2100px) {
  .md-referral-appointment-schedule-modal .modal-dialog.modal-lg {
    width: 1000px;
  }
}
.md-modal-min-width .modal-dialog {
  max-width: 480px;
}
.md-modal-user-aside .modal-dialog {
  width: 685px;
}
.md-modal-fax-resolution .modal-dialog {
  width: 85%;
}
.md-modal-custom-item-aside .modal-dialog {
  width: 660px;
}
@media print {
  body.modal-open md-header,
  body.modal-open .md-view-content {
    visibility: hidden;
    display: none;
  }
}
.card {
  color: #000;
}
.card .md-text,
.card .text1,
.card .text2,
.card .text3 {
  line-height: 20px;
}
.card .md-link {
  font-size: 14px;
}
.card .md-toolbar {
  width: 100%;
}
.card .inline-edit .md-toolbar {
  margin-top: 5px;
}
.card .detail-main {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}
.card .detail-main md-avatar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card .detail-main md-avatar .md-avatar {
  margin-right: 10px;
}
.card .detail-main md-avatar .md-avatar.lg {
  margin-right: 15px;
}
.card .detail-main .info-section {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 0;
}
.card .detail-main .toolbar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-left: 5px;
}
.card .detail-main .toolbar .toolbar-action i {
  font-size: 16px;
  color: #999;
}
.card .detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  padding-top: 10px;
}
.card .detail-list.no-list-padding {
  padding-top: 0px;
}
.card .detail-list .info-section {
  display: block;
  font-size: 14px;
  position: relative;
  border-top: 1px dashed #d1d1d1;
  padding: 10px 0px;
}
.card .detail-list .info-section:last-child {
  padding-bottom: 0;
}
.card .detail-list .info-section.no-separator {
  border-top: none;
  padding-top: 0px;
}
.card .detail-list .info-section .action {
  position: absolute;
  top: 0px;
  right: 0px;
  line-height: 20px;
}
.card .detail-list .info-section .action i {
  color: #999;
}
.card .dropdown-toggle {
  line-height: 20px;
}
.card .dropdown-toggle > i {
  font-size: 10px;
  margin-left: 5px;
  vertical-align: baseline;
}
.card .md-dropdown-group .dropdown-menu {
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
.card .form-control-toolbar .md-btn {
  margin-left: 8px;
  padding-left: 5px;
  padding-right: 0px;
}
.card rmd-toolbar-dropdown {
  width: 100%;
}
.card rmd-toolbar-dropdown .md-dropdown-group,
.card rmd-toolbar-dropdown .dropdown {
  width: 100%;
}
.card rmd-toolbar-dropdown .md-dropdown-group .dropdown-toggle,
.card rmd-toolbar-dropdown .dropdown .dropdown-toggle {
  display: block;
  width: 100%;
}
.card md-toolbar-custom-item-picker,
.card md-toolbar-source-picker,
.card rmd-toolbar-dropdown {
  width: 100%;
}
.card md-phone-picker .number-input {
  padding: 10px;
}
.card md-phone-picker .type-picker {
  max-width: 90px !important;
}
.card .card-edit-form .md-form-group {
  margin-bottom: 20px;
}
.card .card-edit-form .md-form-group .control-label {
  margin-bottom: 5px;
}
.card .card-edit-form .md-form-group rmd-radio {
  height: 24px;
  line-height: 24px;
}
.card .card-edit-form .card-edit-footer {
  text-align: center;
}
.card .card-edit-form .card-edit-footer .btn {
  min-width: 80px;
  padding: 0px 10px;
}
.card .card-edit-form .card-edit-footer .btn + .btn {
  margin-left: 10px;
}
.card .rmd-editable {
  cursor: pointer;
  position: relative;
  width: 100%;
  min-height: 20px;
}
.card .rmd-editable.disabled {
  cursor: default;
}
.card .rmd-editable .edit-label + .edit-form {
  margin-top: 5px;
}
.card .rmd-editable .edit-form .md-form-group {
  margin-bottom: 10px;
}
.card .rmd-editable .edit-form .md-form-group:first-child:not(.md-form-group .md-form-group) {
  margin-top: 5px;
}
.card .rmd-editable .edit-form .md-form-group:last-child:not(.md-form-group .md-form-group) {
  margin-bottom: 0px;
}
.card .rmd-editable .edit-form .md-form-group .control-label {
  font-weight: 400;
  color: #666;
}
.card .rmd-editable .edit-icon {
  display: none;
  line-height: 20px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff;
  padding: 0px 7px;
}
.card .rmd-editable .edit-icon i {
  font-size: 16px;
  color: #999;
}
.card .rmd-editable .edit-icon + .edit-icon {
  right: 30px;
}
.card .rmd-editable .edit-icon + .edit-icon + .edit-icon {
  right: 60px;
}
.card .rmd-editable:hover .edit-icon {
  display: block;
}
.card .rmd-editable .form-horizontal .md-form-group {
  margin-left: 0px;
  margin-right: 0px;
}
.card .rmd-editable md-filter-chips .md-chips md-chip {
  max-width: 100%;
}
.md-autocomplete-suggestions-container {
  z-index: 1200 !important;
  width: 400px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion-add {
  margin: 0 -15px;
  padding: 0 15px;
  line-height: 64px;
  cursor: default;
}
.md-autocomplete-suggestions-container .md-contact-suggestion-add .text {
  margin-right: 5px;
  clear: none;
  display: inline-block;
}
.md-autocomplete-suggestions-container .md-contact-suggestion-add .link {
  clear: none;
  display: inline-block;
  cursor: pointer;
}
.md-autocomplete-suggestions-container .md-contact-suggestion {
  overflow: hidden;
}
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-avatar {
  width: 40px;
  height: 40px;
  float: left;
  margin-top: 11px;
  margin-right: 8px;
  background: no-repeat 50% 50%;
  background-size: cover;
  border-radius: 50%;
}
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-name {
  margin-left: 0px;
  margin-top: 8px;
  line-height: 40px;
  height: 40px;
  max-width: 300px;
  width: auto;
  display: block;
  font-weight: 600;
}
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-subtitle,
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-description {
  line-height: 24px;
  height: 24px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 14px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-description {
  margin-bottom: 10px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion .md-contact-description .mdf-location {
  color: $mdGrey;
  vertical-align: top;
  margin-left: -2px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion.md-2line .md-contact-name {
  line-height: 24px;
  height: 24px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion.md-2line .md-contact-description .mdf-location {
  margin-top: 6px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion.md-3line .md-contact-name,
.md-autocomplete-suggestions-container .md-contact-suggestion.md-3line .md-contact-subtitle,
.md-autocomplete-suggestions-container .md-contact-suggestion.md-3line .md-contact-description {
  line-height: 18px;
  height: 18px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion.md-3line .md-contact-name {
  margin-top: 4px;
}
.md-autocomplete-suggestions-container .md-contact-suggestion.md-3line .md-contact-description .mdf-location {
  margin-top: 1px;
}
.md-autocomplete-suggestions-container .md-autocomplete-suggestions li {
  font-size: 16px;
  height: 64px !important;
}
.nav,
.pagination,
.carousel,
.panel-title a {
  cursor: pointer;
}
ng-quill-editor {
  display: block;
}
@media (max-width: 767px) {
  ng-quill-editor {
    font-size: 16px;
  }
}
ng-quill-editor .ql-container > .ql-editor {
  min-height: 100px;
}
@media (max-width: 767px) {
  ng-quill-editor .ql-container > .ql-editor {
    font-size: 16px;
  }
}
ng-quill-editor .ql-editor.ql-blank::before {
  font-size: 14px;
  font-style: normal;
  color: #b1b1b1;
}
@media (max-width: 767px) {
  ng-quill-editor .ql-editor.ql-blank::before {
    font-size: 16px;
  }
}
.registration-page .window-text h1 {
  text-align: center;
}
.registration-page md-avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.registration-page md-avatar img.white.md-avatar {
  background-color: transparent;
  width: 219px !important;
  height: 109.5 !important;
  max-width: 219px !important;
  max-height: 109.5px !important;
}
.registration-page .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
.registration-page .has-error .form-control {
  border-color: #da3549 !important;
}
.registration-page .text-muted {
  color: #b1b1b1;
}
.registration-page .step-navigation-buttons {
  margin-top: 35px;
}
.registration-page .invitation-expired {
  font-size: 14px;
  font-weight: 600;
}
.registration-page .row.sign-up-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.registration-page md-npi-record-picker {
  gap: 10px;
}
.registration-page md-npi-record-picker .picker-container {
  gap: 10px;
}
.registration-page md-npi-record-picker .picker-container .input-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  max-width: 100%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
}
separated-date-picker #report-daterange-picker .icon.has-date-options .date-option-title {
  display: block;
  height: 8px;
  line-height: 8px;
  margin-top: 10px;
}
separated-date-picker #report-daterange-picker .icon.has-date-options i {
  display: block;
  height: 10px;
  margin-bottom: 5px;
}
separated-date-picker #report-daterange-picker .icon .date-option-title {
  font-weight: 600;
  font-size: 10px;
}
separated-date-picker .calendar-box {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 235px;
}
separated-date-picker .calendar-box .calendar-options {
  display: block;
  width: 100%;
}
separated-date-picker .calendar-box .calendar-options .md-form-group {
  margin-left: 0 !important;
}
separated-date-picker .calendar-box .calendar-options .radio-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: space-evenly;
  -moz-box-pack: space-evenly;
  -o-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  justify-content: space-evenly;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap:last-child {
  margin-right: 0px;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap:last-child rmd-radio {
  float: right;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap rmd-radio {
  display: block;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap rmd-radio .radio {
  margin-top: 0px;
}
separated-date-picker .calendar-box .calendar-options .radio-container .radio-wrap rmd-radio label {
  font-size: 13px;
}
separated-date-picker .calendar-box .ranges li {
  text-align: center;
}
separated-date-picker .calendar-box .ranges li.active {
  backgroung-color: #08c;
}
separated-date-picker .calendar-box .form-control.date-picker {
  height: 30px;
  line-height: 30px;
}
separated-date-picker .calendar-box .custom-range-container {
  text-align: center;
  margin-bottom: 10px;
}
separated-date-picker .calendar-box .custom-range-container #daterange-start,
separated-date-picker .calendar-box .custom-range-container #daterange-end {
  display: block;
  position: relative;
}
separated-date-picker .calendar-box .custom-range-container input {
  text-align: center;
}
separated-date-picker .calendar-box .custom-range-control-buttons {
  margin: auto;
}
separated-date-picker .calendar-box .custom-range-control-buttons .control-button-divider {
  margin: 0 10px;
}
separated-date-picker .daterangepicker td.today,
separated-date-picker .daterangepicker td.today:hover {
  background-color: #ffd78e;
  border-color: transparent;
  color: #fff;
}
separated-date-picker .daterangepicker td.today.active,
separated-date-picker .daterangepicker td.today.active:hover {
  background-color: #357ebd;
}
separated-date-picker .two-columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
separated-date-picker .ul-date {
  margin: 0;
  padding: 0;
}
separated-date-picker .daterange-container {
  margin-top: 5px;
  margin-bottom: 5px;
}
separated-date-picker .secondary-options {
  margin-top: -11px;
}
separated-date-picker .secondary-options label {
  font-size: 13px !important;
}
.provider-directory-page .top-bucket {
  margin-top: 16px;
}
.provider-directory-page small {
  color: #808080;
}
.provider-directory-page .toolbar-button {
  margin: 0;
}
.provider-directory-page .title a {
  color: #1a93d7;
  font-size: 20px;
}
.provider-directory-page .md-toolbar {
  margin-top: 10px;
}
.provider-directory-page .md-toolbar.md-section-toolbar {
  margin-left: 0;
}
.provider-directory-page .accepting-message-container {
  margin-top: -13px;
  margin-bottom: 16px;
}
.provider-directory-page .accepting-message-container .accepting-message {
  background-color: #f2f2f2;
  padding: 1px 5px;
  border: solid 1px #d0d0d0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.provider-directory-page .provider-avatar {
  padding-right: 20px;
}
.provider-directory-page .provider-contacts {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 30px;
}
.provider-directory-page .provider-contacts .provider-contact-header {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  padding-bottom: 5px;
  border-bottom: 1px solid #f2f2f2;
}
.provider-directory-page .provider-contacts .provider-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
  padding: 5px 0;
}
.provider-directory-page .provider-contacts .provider-contact .provider-contact-address {
  color: #999;
}
.provider-directory-page .provider-contacts .provider-contact .provider-contact-address .popover {
  max-width: none;
}
.provider-directory-page .provider-contacts .provider-contact .provider-contact-address .popover-content {
  padding: 3px 4px;
}
.provider-directory-page .provider-contacts .provider-contact .provider-contact-address .provider-map {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
}
.provider-directory-page .search-module {
  background-color: #f6f6f6;
  -webkit-box-shadow: 0 0 5px #d1cdcd;
  box-shadow: 0 0 5px #d1cdcd;
}
.provider-directory-page .search-module.md-pane {
  border: none;
}
.provider-directory-page .search-module .controls {
  margin-top: 15px;
  margin-bottom: 15px;
}
.provider-directory-page .search-module .search-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.provider-directory-page .search-module .search-container input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 40px;
}
.provider-directory-page .search-module .search-container .md-btn {
  padding: 0 40px;
  margin-left: 10px;
}
.provider-directory-page .provider-toolbar {
  margin-top: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.provider-directory-page .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
.provider-directory-page .load-more {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.provider-directory-page .search-state-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.provider-directory-page .search-state-filter input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.provider-directory-page rmd-checkbox {
  margin-right: 5px;
}
.provider-directory-page .md-form-group.filter-form-group {
  margin-bottom: 0;
}
.provider-directory-page .filter-count {
  font-size: 14px;
}
.provider-directory-page .control-label {
  font-weight: normal;
}
.provider-directory-page .check-control-holder {
  margin-bottom: 5px;
}
.provider-directory-page .chip-count-holder .filter-count {
  text-align: end;
  margin-top: 8px;
}
.provider-directory-page .multi-select-filter {
  margin-bottom: 3px;
}
.provider-directory-page .filter-title {
  text-transform: uppercase;
}
.provider-directory-page .temp-style-fixes h2 {
  margin-bottom: 0px;
}
.provider-directory-page .temp-style-fixes .md-toolbar {
  margin-top: 0px;
}
.provider-directory-page .filter-city-picker {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.provider-directory-page .affiliation-container {
  margin-left: -50px;
}
.provider-directory-page .custom-popup-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  background-color: #f9f9f9;
  width: calc(100% - 165px);
  -webkit-box-shadow: 0 0 3px #b9b9b9;
  box-shadow: 0 0 3px #b9b9b9;
}
.provider-directory-page .custom-popup-wrapper .inline-search-result-header {
  padding: 5px 15px;
  text-transform: uppercase;
  color: #a2a2a2;
  font-weight: 600;
  font-size: 13px;
  background-color: #fff;
}
.provider-directory-page .custom-popup-wrapper .dropdown-menu {
  position: static;
  float: none;
  display: block;
  min-width: 160px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.provider-directory-page .custom-popup-wrapper .dropdown-menu .active a {
  background-color: #a5a5a5;
  color: #fff;
}
.provider-directory-page .custom-popup-wrapper .inline-result-divider {
  border-top: 1px solid #dfdfdf;
}
.provider-directory-page .custom-popup-wrapper .autocomplete-search-item {
  cursor: pointer;
}
.provider-directory-page .clear-button-holder {
  position: absolute;
  right: 160px;
  top: 8px;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  cursor: pointer;
}
md-header {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
md-header img.white.md-avatar {
  width: unset !important;
  max-height: 30px !important;
}
md-header .md-header {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #143d4b;
  padding: 10px 0;
}
@media (max-width: 768px) {
  md-header .md-header .navbar-nav {
    padding-left: 15px;
  }
  md-header .md-header .navbar-toggle {
    padding-right: 15px !important;
  }
}
@media (max-width: 1124px) {
  md-header .md-header #md-header-collapse {
    max-width: 250px;
    margin-left: calc(100% - 250px);
    margin-top: 7px;
  }
  md-header .md-header .collapse.in {
    display: block !important;
  }
  md-header .md-header .container-fluid {
    padding-right: 0;
  }
  md-header .md-header .md-tooltip {
    display: none;
  }
  md-header .md-header .navbar-header {
    float: none;
  }
  md-header .md-header .navbar-left,
  md-header .md-header .navbar-right {
    float: none !important;
  }
  md-header .md-header .navbar-toggle {
    display: block;
  }
  md-header .md-header .navbar-collapse {
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    padding-left: 0px;
  }
  md-header .md-header .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  md-header .md-header .navbar-collapse.collapse {
    display: none !important;
  }
  md-header .md-header .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }
  md-header .md-header .navbar-nav.dropdown.dropdown-menu {
    margin-left: 5px;
  }
  md-header .md-header .navbar-nav>li {
    float: none;
  }
  md-header .md-header .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  md-header .md-header .collapse.in {
    display: block !important;
  }
}
@media (max-width: 767px) {
  md-header .md-header #md-header-collapse {
    width: 145px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 7px;
    position: fixed;
    right: 0;
  }
  md-header .md-header .navbar-nav {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
md-header .md-header .navbar {
  min-height: 0px;
  margin-bottom: 0px;
  border: none;
}
md-header .md-header .navbar-brand {
  padding: 0px;
  padding-left: 15px;
  height: auto;
  margin-right: 25px;
}
md-header .md-header .navbar-brand.logo {
  width: 130px;
  text-align: -webkit-center;
}
md-header .md-header .navbar-brand img {
  width: 100%;
  max-width: 130px;
  max-height: 30px;
}
md-header .md-header .navbar-toggle {
  color: #fff;
  padding: 0;
  margin-top: 3px;
}
md-header .md-header .navbar-collapse {
  background-color: #143d4b;
}
md-header .md-header .navbar-nav li {
  margin: 0 15px;
}
@media (max-width: 767px) {
  md-header .md-header .navbar-nav li {
    margin: 0 0;
    padding: 0 15px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
}
md-header .md-header .navbar-nav li a {
  color: #fff;
  padding: 0px 0px;
  line-height: 30px;
  max-height: 30px;
}
@media (max-width: 767px) {
  md-header .md-header .navbar-nav li a {
    line-height: 45px;
    max-height: 45px;
  }
}
md-header .md-header .navbar-nav li a:hover,
md-header .md-header .navbar-nav li a:focus {
  background: none;
}
md-header .md-header .navbar-nav li.open a,
md-header .md-header .navbar-nav li.active a,
md-header .md-header .navbar-nav li:hover a,
md-header .md-header .navbar-nav li:focus a {
  color: #1da4f0;
  background: none;
}
md-header .md-header .navbar-nav li .badge {
  border-radius: 50%;
  width: 17px;
  height: 15px;
}
md-header .md-header .navbar-nav li .md-nav-link .badge {
  position: relative;
  padding: 3px;
  font-size: 8px;
}
md-header .md-header .navbar-nav li .md-nav-link .badge.badge-size-1 {
  top: -4px;
  right: -1px;
}
md-header .md-header .navbar-nav li .md-nav-link .badge.badge-size-2 {
  top: -4px;
  right: -1px;
}
md-header .md-header .navbar-nav li .md-nav-link .badge.badge-size-3 {
  top: -4px;
  right: -1px;
}
md-header .md-header .navbar-nav li .md-nav-link .badge .badge-plus {
  font-size: 6px;
}
md-header .md-header .navbar-nav.navbar-right li .md-nav-link .badge {
  position: absolute;
  top: 0;
  right: -10px;
  padding: 3px;
}
md-header .md-header .navbar-nav.navbar-right li .md-nav-link .badge.badge-size-1 {
  top: 2px;
  right: -8px;
  padding: 3px 7px;
}
md-header .md-header .navbar-nav.navbar-right li .md-nav-link .badge.badge-size-2 {
  top: 2px;
  right: -8px;
}
md-header .md-header .navbar-nav.navbar-right li .md-nav-link .badge.badge-size-3 {
  top: 2px;
  right: -8px;
}
md-header .md-header .navbar-nav.navbar-right li .md-nav-link .badge .badge-plus {
  font-size: 6px;
}
md-header .md-header .navbar-nav .dropdown .dropdown-toggle i {
  font-size: 14px;
  margin-left: 5px;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu {
  background-color: #143d4b;
  border-color: #143d4b;
  border: 1px solid #143d4b;
  margin-top: 5px;
  padding: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  left: -20px;
  right: auto;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu:after,
md-header .md-header .navbar-nav .dropdown .dropdown-menu:before {
  content: " ";
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  bottom: 100%;
  left: 50%;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu:after {
  border-color: rgba(20,61,75,0);
  border-bottom-color: #143d4b;
  border-width: 8px;
  margin-left: -8px;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu:before {
  border-color: rgba(20,61,75,0);
  border-bottom-color: #143d4b;
  border-width: 9px;
  margin-left: -9px;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu li {
  font-size: 14px;
  margin: 0;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu li a {
  line-height: 18px;
  color: #fff;
  padding: 10px 20px;
  max-height: 50px;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu li.active a {
  background-color: #143d4b;
  color: #1da4f0;
}
md-header .md-header .navbar-nav .dropdown .dropdown-menu li:hover a {
  background-color: #040c0f;
}
md-header .md-header md-menu-nav-right .fullname {
  vertical-align: top;
}
@media (max-width: 1124px) {
  md-header .md-header .navbar-nav .dropdown .dropdown-menu {
    margin-left: 5px;
  }
  .fullname {
    max-width: 75%;
  }
  .username {
    max-width: 90%;
    display: inline-block;
  }
  .user-menu {
    verticle-align: text-center;
  }
  .md-tooltip {
    display: none;
  }
  .md-nav-link.icon {
    margin-top: 10px;
    width: 28px;
  }
  .md-nav-link.icon.help {
    margin-top: 3px;
  }
}
md-logo {
  display: block;
  font-size: 18px;
  font-weight: 300;
  white-space: nowrap;
}
md-logo a {
  clear: none;
  display: inline-block;
  line-height: 32px;
}
md-logo a img {
  width: 219px;
  max-width: 219px;
}
md-logo a .text {
  clear: none;
  display: inline-block;
}
md-logo a.logo-white {
  color: #fff;
}
md-logo a.logo-black {
  color: #000;
}
md-menu-nav {
  display: block;
  white-space: nowrap;
}
md-menu-nav-right {
  white-space: nowrap;
}
md-menu-nav-right md-avatar {
  clear: none;
  display: inline-block;
  margin-right: 8px;
}
md-menu-nav-right .user-dropdown {
  margin-right: 30px;
}
md-menu-nav-right .user-dropdown .fullname {
  clear: none;
  display: inline-block;
}
md-menu-nav-right .user-dropdown {
  line-height: 30px;
}
md-menu-nav-right .user-dropdown .dropdown-menu {
  left: 19px !important;
}
md-menu-nav-right .user-dropdown .dropdown-menu .divider {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}
md-menu-nav-right .navbar-nav li {
  margin-right: 0px !important;
}
md-menu-nav-right .navbar-nav li .md-nav-link {
  position: relative;
}
md-menu-nav-right .navbar-nav li .md-nav-link.icon {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
}
md-menu-nav-right .navbar-nav li .md-nav-link.icon.active {
  color: #1da4f0;
}
md-avatar {
  display: block;
}
md-avatar img {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  border-radius: 50%;
}
md-avatar .md-avatar {
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
  background-color: #fff;
  border: 1px solid #cdcdcd;
}
md-avatar .md-avatar.xs {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  border-radius: 50%;
}
md-avatar .md-avatar.sm {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  border-radius: 50%;
}
md-avatar .md-avatar.md {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50%;
}
md-avatar .md-avatar.lg {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  border-radius: 50%;
}
md-avatar .md-avatar.xl {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  border-radius: 50%;
}
md-avatar .md-avatar.wide {
  width: 120px !important;
  height: 60px !important;
  max-width: 120px !important;
  max-height: 60px !important;
}
md-avatar .md-avatar.white {
  width: 120px !important;
  height: 60px !important;
  max-width: 120px !important;
  max-height: 60px !important;
}
md-avatar .md-avatar.md-draft {
  background-color: #767171;
}
md-avatar .md-avatar.md-new {
  background-color: #00b0f0;
}
md-avatar .md-avatar.md-in-review {
  background-color: #ffc001;
}
md-avatar .md-avatar.md-declined {
  background-color: #ff2600;
}
md-avatar .md-avatar.md-accepted {
  background-color: #05b050;
}
md-avatar .md-avatar.md-scheduled {
  background-color: #7030a0;
}
md-avatar .md-avatar.md-attended {
  background-color: #538135;
}
md-avatar .md-avatar.md-completed {
  background-color: #0170c0;
}
md-avatar .md-avatar.md-no-show {
  background-color: #ab1300;
}
md-avatar .md-avatar.md-canceled {
  background-color: #000;
}
md-avatar .md-avatar.md-linked-referral,
md-avatar .md-avatar.md-not-referral {
  background-color: #f6f6f6;
}
md-avatar.squared img,
md-avatar.squared .md-avatar {
  border-radius: 0;
  object-fit: contain;
  background-color: #fff;
  border: none;
}
md-avatar .referral-instruction-normal {
  width: 80px;
}
md-avatar img.white.md-avatar {
  background-color: #143d4b;
}
md-master-menu-nav {
  display: block;
  white-space: nowrap;
}
md-master-menu-nav-right {
  white-space: nowrap;
}
md-master-menu-nav-right md-avatar {
  clear: none;
  display: inline-block;
  margin-right: 8px;
}
md-master-menu-nav-right .user-dropdown {
  margin-right: 30px;
}
md-master-menu-nav-right .user-dropdown .fullname {
  clear: none;
  display: inline-block;
}
md-master-menu-nav-right .user-dropdown {
  line-height: 30px;
}
md-master-menu-nav-right .user-dropdown .dropdown-menu {
  left: 19px !important;
}
md-master-menu-nav-right .user-dropdown .dropdown-menu .divider {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}
md-master-menu-nav-right .navbar-nav li {
  margin-right: 0px !important;
}
md-master-menu-nav-right .navbar-nav li .md-nav-link {
  position: relative;
}
md-master-menu-nav-right .navbar-nav li .md-nav-link.icon {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
}
md-master-menu-nav-right .navbar-nav li .md-nav-link.icon.active {
  color: #1da4f0;
}
md-communication-editor {
  display: block;
}
md-communication-editor .settings-group h-number {
  display: block;
  max-width: 110px;
}
md-communication-editor .settings-group h-number label.form-control {
  text-align: center;
}
md-communication-editor .settings-group h-number .input-group-addon {
  cursor: pointer;
}
md-communication-editor .frequency-row .frequency-column {
  padding-right: 0px;
}
md-communication-editor .frequency-row .frequency-column:last-child {
  padding-right: 15px;
}
md-communication-editor .frequency-row .reminder-message .md-link,
md-communication-editor .frequency-row .reminder-message .text2 {
  clear: none;
  display: inline-block;
  vertical-align: middle;
  height: 34px;
  line-height: 34px;
}
md-communication-editor .frequency-row .reminder-message .md-link {
  margin-left: 5px;
}
md-communication-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-communication-editor .md-modal .modal-body .frequency-container {
  display: block;
  position: relative;
}
md-communication-editor .md-modal .modal-body .frequency-container .form-group {
  margin-bottom: 10px;
}
md-communication-editor .md-modal .modal-body .frequency-container .checkbox-label {
  clear: none;
  display: inline-block;
}
md-communication-editor .md-modal .modal-body .frequency-container .switch-group {
  margin-bottom: 5px;
}
md-communication-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 240px + 55px + 45px + 21px + (81px)));
}
md-communication-editor md-locations-list.has-no-key .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 80px + 55px + 45px + 21px + (81px)));
}
md-communication-editor md-locations-list.has-frequency .md-layout-stretch-wrap {
  min-height: 94px !important;
  height: calc(100vh - ((81px) + 40px + 346px + 55px + 45px + 21px + (81px)));
}
md-locations-list {
  display: block;
  height: 100%;
}
md-locations-list .location-list {
  display: block;
  height: 100%;
}
md-locations-list .location-list .locations-list-container {
  display: block;
}
md-locations-list .location-list .locations-list-container .md-layout-stretch-wrap {
  min-height: 150px;
}
md-locations-list .location-list .locations-list-container .md-layout-stretch-wrap .md-layout-stretch-content {
  background: none;
  overflow-x: hidden;
}
md-locations-list .location-toolbar-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-locations-list .location-toolbar-row .search-group {
  width: 70%;
}
md-locations-list .location-toolbar-row .form-group {
  margin-bottom: 10px !important;
}
md-locations-list .location-header-row {
  display: block;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-locations-list .location-header-row .location-header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 34px;
}
md-locations-list .location-header-row .location-header-content .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 12px;
  color: #da3549;
}
md-locations-list .location-header-row .location-header-content rmd-checkbox {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-locations-list .location-header-row .location-header-content .title-text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
md-locations-list .location-header-row .location-header-content .total {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
md-locations-list .location-row {
  margin-bottom: 5px;
}
md-locations-list .location-row .location-city {
  margin-bottom: 20px;
}
md-locations-list .location-row .checkbox-item {
  position: relative;
}
md-locations-list .location-row rmd-checkbox .checkbox {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-locations-list .location-row rmd-checkbox label {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-location-editor {
  display: block;
}
md-location-editor .form-group.md-form-group.mb0 {
  margin-bottom: 0px;
}
md-location-editor .md-tabpanel-tabs-tab.has-error .name {
  color: #e36776;
}
md-location-editor input.form-control.has-error {
  border-color: #e36776;
}
md-location-editor .md-tabpanel-content.title-one-line {
  height: calc(100vh - 40px - 31px - 20px - 81px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-location-editor .md-tabpanel-content.title-two-lines {
  height: calc(100vh - 40px - 31px - 20px - 81px - 81px - 34px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-location-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-location-editor .md-tabpanel-tabs + .md-tabpanel-content {
  margin-top: 20px;
}
md-location-editor .toggle-column {
  clear: none;
  display: inline-block;
  padding-right: 15px;
}
md-location-editor .toggle-column:last-child {
  padding-right: 15px;
}
md-location-editor .user-list .user-select-column .md-form-group {
  margin-bottom: 0px;
}
md-location-editor .user-list .user-select-column rmd-checkbox label {
  padding-left: 30px;
}
md-location-editor .user-list .user-header-row {
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-location-editor .user-list .user-header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 34px;
}
md-location-editor .user-list .user-header-content .total {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
md-location-editor md-phone-picker .md-form-group {
  margin-bottom: 0px;
}
md-location-editor .departments-section .form-group.md-form-group {
  margin-bottom: 10px;
}
md-location-editor .departments-section .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-location-editor .departments-section .add-link i {
  margin-right: 5px;
}
md-location-editor .control-icon {
  padding-top: 7px;
  float: right;
}
md-location-editor .icon-with-data i.fa {
  color: #6bb31c;
}
md-location-editor .icon-without-data i.fa {
  color: #1da4f0;
}
md-location-editor .form-name {
  width: 96%;
  float: left;
  margin-bottom: 20px;
}
md-location-editor .location-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-location-editor .remove-department-icon {
  padding-left: 0px !important;
}
md-location-editor .department-sections {
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}
md-location-editor .md-specialty-tax-column {
  min-width: 40px !important;
}
md-location-editor .md-specialty-column {
  min-width: 300px !important;
}
md-location-editor .control-icon {
  padding-top: 7px;
  float: right;
}
md-location-editor .control-icon.icon-with-data i.fa {
  color: #6bb31c;
}
md-location-editor .control-icon.icon-without-data i.fa {
  color: #1da4f0;
}
md-location-editor .form-display-name {
  width: 94%;
  float: left;
}
md-location-editor .mapping-picker-department {
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}
md-location-editor .mapping-picker-department .md-btn.icon.danger {
  padding-right: 0px !important;
}
md-location-editor .group-mapping {
  margin-bottom: 0px !important;
}
md-location-editor .mappings-section {
  margin-top: 10px;
  margin-right: 68px;
  margin-bottom: 20px;
  margin-left: 20px;
}
md-location-editor .location-section {
  margin-left: 1px;
  width: calc(100%) !important;
  margin-top: 15px;
}
md-location-editor .location-section md-integration-mapping-picker .btn.danger {
  padding-right: 10px !important;
}
md-location-editor .custom-btn {
  height: 34px !important;
}
md-location-editor .tab-audit-log {
  overflow-x: scroll !important;
}
md-location-editor md-location-audit-log {
  display: inline-block;
}
md-location-editor rmd-list-loading-icon {
  width: 520px;
}
md-location-editor .audit-row {
  background-color: #fff;
}
md-location-editor .rmd-list-content {
  width: 1000px;
}
md-location-editor .btn-delete-column {
  padding-left: 7px !important;
  padding-right: 7px !important;
}
md-location-editor .title-column {
  padding-right: 0px !important;
}
md-location-editor .department-title {
  overflow: hidden;
  word-wrap: break-word;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
md-location-editor .group-row {
  background-color: #fff;
}
md-location-editor .group ul {
  list-style-type: none;
  padding: 0px;
  margin-bottom: 0px;
}
md-location-editor .no-groups-message {
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
  text-align: center;
}
md-location-editor .group-name .text1 {
  font-weight: bold;
}
.md-location-editor-modal-text {
  margin-top: 10px;
}
md-provider-details {
  display: block;
}
md-provider-details .popover {
  max-width: none;
}
md-provider-details .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
md-provider-details .provider-map {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
  display: grid;
}
md-provider-details md-provider-profile {
  margin-bottom: 10px;
}
md-provider-details md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details .score-rating i.fa {
  font-size: 20px;
}
md-provider-details md-provider-procedures rmd-list,
md-provider-details md-provider-procedures .rmd-list-manual {
  overflow: auto;
}
@media (max-width: 767px) {
  md-provider-details md-provider-profile .profile-content h1 {
    font-size: 16px;
  }
  md-provider-details md-provider-profile .profile-content .details {
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    padding: 15px 0;
    margin-left: -90px;
  }
  md-provider-details md-provider-profile .profile-content .detail-row {
    width: 100%;
  }
  md-provider-details md-provider-profile .profile-content .age-groups {
    overflow: auto;
    white-space: normal;
  }
  md-provider-details md-provider-info .provider-info .text-section {
    padding: 0;
    padding-top: 10px;
  }
  md-provider-details md-provider-info .provider-info .text-section:first-child {
    padding: 0;
  }
  md-provider-details md-provider-info .provider-info .text-section .text2 {
    white-space: normal;
  }
  md-provider-details md-provider-stats .provider-stats {
    margin-top: 0;
  }
  md-provider-details md-provider-stats .provider-stats ul.stat-list li.stat .name {
    text-transform: none;
  }
  md-provider-details md-provider-stats .provider-stats ul.stat-list li.stat .value {
    font-size: 20px;
  }
  md-provider-details md-avatar .md-avatar.xl {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    border-radius: 50%;
  }
}
md-provider-details md-provider-stats .provider-stats {
  margin-top: 0;
}
md-provider-details .affiliations {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #1da4f0;
}
@media (max-width: 767px) {
  md-provider-details .affiliations {
    padding-bottom: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 0;
  }
}
md-provider-details .contact-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  border-top: 1px solid #e0e0e0;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #1da4f0;
}
@media (max-width: 767px) {
  md-provider-details .contact-section {
    padding-bottom: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 0;
  }
}
md-provider-details .contact-section .address-display {
  width: 65%;
}
md-provider-details .contact-section .address-display .departments,
md-provider-details .contact-section .address-display .specialties {
  overflow: auto;
  overflow-wrap: break-word;
}
md-provider-details .contact-section .address-display .departments .text2,
md-provider-details .contact-section .address-display .specialties .text2 {
  white-space: pre-wrap;
}
md-provider-details .contact-section .phones-display {
  width: 35%;
}
md-provider-details .contact-section .phones-display .phone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-provider-details .contact-section .phones-display .phone .type {
  width: 50px;
  margin-right: 5px;
}
md-provider-details .detail-pane {
  margin-bottom: 10px;
}
md-provider-details .detail-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 10px;
}
.md-provider-details-modal .modal-dialog {
  max-width: 100%;
}
md-provider-profile {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-provider-profile .fa-paper-plane {
  font-size: 14px;
}
md-provider-profile .staff {
  margin-left: 25px !important;
}
@media (max-width: 767px) {
  md-provider-profile .staff {
    margin-left: 0px !important;
  }
}
md-provider-profile .spaced {
  margin-top: 15px;
}
md-provider-profile .provider-profile {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 20px;
}
md-provider-profile .provider-profile .avatar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-provider-profile .provider-profile .npi {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
md-provider-profile .profile-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  min-width: 0px;
}
md-provider-profile .profile-content .detail-row {
  margin: 2.5px 0;
  width: max-content;
}
md-provider-profile .profile-content .detail-row.mobile {
  display: none;
}
@media (max-width: 767px) {
  md-provider-profile .profile-content .detail-row {
    width: 100%;
    overflow: hidden;
  }
  md-provider-profile .profile-content .detail-row .text1,
  md-provider-profile .profile-content .detail-row .md-text {
    white-space: normal;
  }
}
md-provider-profile .profile-content i {
  line-height: 20px;
  width: 15px;
  vertical-align: bottom;
  color: #1da4f0;
  margin-right: 5px;
}
md-provider-profile .profile-content h1 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #000;
}
md-provider-profile .profile-content .details-row {
  line-height: 20px;
  position: absolute;
  bottom: 0;
  min-width: 200%;
}
md-provider-profile .profile-content .details-row .affiliation-level {
  margin-right: 20px;
}
md-provider-profile .profile-content .details-row .accepting-new {
  margin-right: 20px;
}
md-provider-profile .details-link {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  white-space: nowrap;
  margin-left: 5px;
}
md-provider-info {
  display: block;
}
md-provider-info .sm-header {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  min-width: 75px;
  max-width: 75px;
}
md-provider-info .pb0 {
  padding-bottom: 0px !important;
}
md-provider-info .provider-info .text-section {
  padding: 20px 0px;
  border-bottom: 1px solid #e0e0e0;
}
md-provider-info .provider-info .text-section:first-child {
  padding-top: 0px;
}
md-provider-info .provider-info .text-section:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}
md-provider-info .provider-info .text-section .header {
  clear: none;
  display: inline-block;
  min-width: 220px;
  vertical-align: top;
  margin-right: -75px;
}
@media (max-width: 767px) {
  md-provider-info .provider-info .text-section .header {
    display: block;
    margin-bottom: 5px;
    max-width: 100%;
  }
}
md-provider-info .provider-info .text-section .header h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 0px;
}
md-provider-info .provider-info .text-section .header-org {
  clear: none;
  display: inline-block;
  min-width: 105px;
  vertical-align: top;
}
@media (max-width: 767px) {
  md-provider-info .provider-info .text-section .header-org {
    display: block;
    margin-bottom: 5px;
    max-width: 100%;
  }
}
md-provider-info .provider-info .text-section .header-org h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 0px;
}
md-provider-info .provider-info .text-section .content {
  clear: none;
  display: inline-block;
  vertical-align: top;
  width: auto;
  overflow: hidden;
}
md-provider-info .provider-info .text-section .content .text2 {
  overflow: auto;
  white-space: normal;
}
md-provider-info .provider-info .text-section .content p {
  white-space: normal;
}
md-provider-info .provider-info .text-section .content ul.text-list {
  font-size: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
md-provider-info .provider-info .text-section .content ul.text-list li {
  font-weight: 400;
  position: relative;
  padding-left: 12px;
}
md-provider-info .provider-info .text-section .content ul.text-list li:before {
  content: '-';
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 14px;
  color: #666;
}
md-provider-info .provider-info .text-section .content ul.bullet-list {
  font-size: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
md-provider-info .provider-info .text-section .content ul.bullet-list li {
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  md-provider-info .provider-info .text-section .content ul.bullet-list li {
    padding-bottom: 5px;
  }
}
md-provider-info .provider-info .text-section .content ul.bullet-list li:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 5px;
  width: 10px !important;
  height: 10px !important;
  max-width: 10px !important;
  max-height: 10px !important;
  border-radius: 50%;
  background: #1da4f0;
}
md-provider-info .provider-info .text-section .content ul.bullet-list li:before {
  content: '';
  position: absolute;
  left: 5px;
  border-left: 1px solid #d0d0d0;
  height: 100%;
  width: 1px;
}
md-provider-info .provider-info .text-section .content ul.bullet-list li:first-child:before {
  top: 5px;
}
md-provider-info .provider-info .text-section .content ul.bullet-list li:last-child:before {
  height: 5px;
}
md-provider-info .provider-info.provider-info-modal .text-section .header {
  display: block;
  margin-bottom: 10px;
}
md-provider-network {
  display: block;
}
md-provider-network .mw0 {
  min-width: 0px !important;
}
md-provider-network .network-providers .more {
  text-align: center;
}
md-provider-network .network-providers .more a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
md-provider-network .network-providers .network-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
@media (max-width: 767px) {
  md-provider-network .network-providers .network-column {
    padding: 10px 0px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 15px;
  }
  md-provider-network .network-providers .network-column:last-child {
    border-bottom: none;
  }
}
md-provider-network .network-providers .network-card {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  width: 100%;
  max-height: 50px;
  height: 100%;
  margin-bottom: 10px;
  padding: 10px 20px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  md-provider-network .network-providers .network-card {
    margin-bottom: 10px;
    padding: 0px;
    border: none;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
md-provider-network .network-providers .network-card .detail-main {
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  md-provider-network .network-providers .network-card .detail-main {
    margin-bottom: 0px;
  }
}
md-provider-network .network-providers .network-card .provider-info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
@media (max-width: 767px) {
  md-provider-network .network-providers .network-card .provider-info {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
md-provider-network .network-providers .network-card .stats {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-provider-network .network-providers .network-card .stats .stat-line {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-width: 50px;
}
@media (max-width: 767px) {
  md-provider-network .network-providers .network-card .stats .stat-line {
    min-width: unset;
  }
}
md-provider-network .network-providers .network-card .stats .stat-line .stat {
  clear: none;
  display: inline-block;
  min-width: 100%;
  text-align: right;
  padding-right: 5px;
}
md-provider-network .network-providers .network-card .stats .stat-line .desc {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
md-provider-procedures {
  display: block;
}
md-provider-procedures .procedures {
  overflow-x: auto;
}
md-provider-procedures .footnote {
  margin-top: 20px;
}
@media (max-width: 767px) {
  md-provider-procedures .footnote .text1,
  md-provider-procedures .footnote .text2 {
    white-space: normal;
  }
}
md-provider-procedures .primary {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-provider-procedures .primary .text1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0;
  -ms-flex: 1 0;
  flex: 1 0;
  max-width: calc(100% - 80px);
}
md-provider-procedures .primary .text1.price {
  max-width: 80px;
  text-align: right;
}
md-provider-procedures .secondary {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  md-provider-procedures .rmd-list-infinite .md-more {
    margin-top: 0px;
    padding-bottom: 10px;
  }
  md-provider-procedures .rmd-list-manual tbody tr td.column {
    padding: 10px;
  }
  md-provider-procedures .no-data {
    margin-bottom: 10px;
  }
}
md-provider-score {
  display: block;
}
md-provider-score .provider-score-container .score-popup {
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  display: block;
  padding: 20px;
}
md-provider-score .provider-score {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  md-provider-score .provider-score {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
md-provider-score .provider-score .score-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  padding-right: 20px;
}
@media (max-width: 767px) {
  md-provider-score .provider-score .score-wrap {
    -webkit-align-self: center;
    align-self: center;
    -ms-flex-item-align: center;
    margin-bottom: 5px;
  }
}
md-provider-score .provider-score .score-wrap .lg {
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
md-provider-score .provider-score .score-wrap .lg:hover {
  background-color: #e8f6fd;
}
md-provider-score .provider-score .score-wrap-org {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  padding-right: 45px !important;
}
@media (max-width: 767px) {
  md-provider-score .provider-score .score-wrap-org {
    -webkit-align-self: center;
    align-self: center;
    -ms-flex-item-align: center;
  }
}
md-provider-score .provider-score .score-wrap-org .lg {
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
md-provider-score .provider-score .score-wrap-org .lg:hover {
  background-color: #e8f6fd;
}
md-provider-score .provider-score .score-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
@media (max-width: 767px) {
  md-provider-score .provider-score .score-content {
    width: 100%;
  }
}
md-provider-score .provider-score.sidebar .score-row {
  margin-bottom: 0px;
}
md-provider-score .provider-score.sidebar .score-row.score-row-ratings {
  margin-bottom: 20px;
}
md-provider-score .provider-score.sidebar .score-rating i.fa {
  font-size: 23px;
}
md-provider-score .provider-score.sidebar .score .reviews {
  line-height: 23px !important;
}
md-provider-score .provider-score.sidebar .rating-wrapper .review-section {
  margin-top: 8px !important;
}
md-provider-score i.fa.fa-star {
  color: #1da4f0;
}
md-provider-score i.fa.fa-star-o {
  color: #1da4f0;
}
md-provider-score .score-content .score-row {
  margin-bottom: 20px;
}
md-provider-score .score-content .score-row .score {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -o-box-pack: left;
  -ms-flex-pack: left;
  -webkit-justify-content: left;
  justify-content: left;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row .score {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
md-provider-score .score-content .score-row .score .score-header {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  min-width: 180px;
  max-width: 220px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row .score .score-header {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    max-width: unset;
    min-width: unset;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-right: 0;
    width: 100%;
  }
}
md-provider-score .score-content .score-row .score .score-header .title {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  color: #1da4f0;
}
md-provider-score .score-content .score-row .score .score-header .description {
  display: block;
  font-size: 14px;
  color: #000;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row .score .score-header .description {
    color: #666;
  }
}
md-provider-score .score-content .score-row .score .score-content-details {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
md-provider-score .score-content .score-row .score .score-content-details .score-titles {
  margin-bottom: 5px;
}
md-provider-score .score-content .score-row .score .score-content-details .score-titles .score-title {
  clear: none;
  display: inline-block;
  width: 33.333333333333336%;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}
md-provider-score .score-content .score-row .score .score-content-details .score-titles .score-title.low {
  color: #7eb077;
}
md-provider-score .score-content .score-row .score .score-content-details .score-titles .score-title.medium {
  color: #a0b02f;
}
md-provider-score .score-content .score-row .score .score-content-details .score-titles .score-title.high {
  color: #ea8489;
}
md-provider-score .score-content .score-row .score .score-content-details .score-bar {
  width: 100%;
  height: 20px;
}
md-provider-score .score-content .score-row .score .score-content-details .score-bar .segment {
  clear: none;
  display: inline-block;
  width: 33.333333333333336%;
  height: 20px;
}
md-provider-score .score-content .score-row .score .score-content-details .score-bar .segment.low {
  background-color: #9bc295;
}
md-provider-score .score-content .score-row .score .score-content-details .score-bar .segment.medium {
  background-color: #e2d0b1;
}
md-provider-score .score-content .score-row .score .score-content-details .score-bar .segment.high {
  background-color: #edd3d3;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-titles .score-title.low {
  color: #e5efe4;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-titles .score-title.medium {
  color: #eff3d2;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-titles .score-title.high {
  color: #fbe6e7;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-bar .segment.low {
  background-color: #ebf3ea;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-bar .segment.medium {
  background-color: #f9f6ef;
}
md-provider-score .score-content .score-row .score .score-content-details.no-data .score-bar .segment.high {
  background-color: #fbf6f6;
}
md-provider-score .score-content .score-row .score .score-content-details .score-value {
  margin-top: 5px;
  text-align: center;
  width: 33.333333333333336%;
}
md-provider-score .score-content .score-row .score .score-content-details .score-value.medium {
  margin-left: 33.333333333333336%;
}
md-provider-score .score-content .score-row .score .score-content-details .score-value.high {
  margin-left: 66.66666666666667%;
}
md-provider-score .score-content .score-row .score .score-content-details .score-value .value {
  font-size: 14px;
  text-align: center;
  color: #666;
}
md-provider-score .score-content .score-row .score .score-content-details .score-marker {
  position: absolute;
  top: 28px;
  width: 100%;
}
md-provider-score .score-content .score-row .score .score-content-details .score-marker .pusher {
  clear: none;
  display: inline-block;
}
md-provider-score .score-content .score-row .score .score-content-details .score-marker .diamond {
  clear: none;
  display: inline-block;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #000;
  position: relative;
  top: -9px;
}
md-provider-score .score-content .score-row .score .score-content-details .score-marker .diamond:after {
  content: '';
  position: absolute;
  left: -9px;
  top: 9px;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-top-color: #000;
}
md-provider-score .score-content .score-row .score .score-content-details .reviews a {
  white-space: nowrap;
}
md-provider-score .score-content .score-row.score-row-ratings {
  margin-top: 20px;
}
md-provider-score .score-content .score-row.score-row-ratings .score {
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -o-box-pack: left;
  -ms-flex-pack: left;
  -webkit-justify-content: left;
  justify-content: left;
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details .score-rating {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details .score-rating:not(.sidebar) i.fa {
  font-size: 30px;
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details.rating-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details.rating-wrapper .review-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details.rating-wrapper .review-section {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details.rating-wrapper .sidebar-review-links {
  display: block;
  margin-top: 10px;
}
md-provider-score .score-content .score-row.score-row-ratings .score .score-content-details.rating-wrapper .sidebar-review-links .reviews {
  font-size: 14px;
  line-height: 31px;
  margin-left: 0px;
}
md-provider-score .score-content .score-row.score-row-ratings .score .reviews {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 14px;
  margin-left: 10px;
  line-height: 31px;
}
@media (max-width: 767px) {
  md-provider-score .score-content .score-row.score-row-ratings .score .reviews {
    margin-left: 0;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    -ms-flex-item-align: start;
  }
}
md-provider-score .score-content .score-row.score-row-ratings .score .reviews.add-review {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
md-provider-score .review {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-provider-score .review .avatar-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 10px;
}
md-provider-score .review .review-content .review-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  min-height: 25px;
  margin-bottom: 5px;
}
md-provider-score .review .review-content .review-header .info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 10px;
}
md-provider-score .review .review-content .review-header .stars {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  min-width: fit-content;
  text-align: center;
}
md-provider-score .review .review-content .review-header .stars i.fa {
  font-size: 20px;
}
md-provider-score .review .review-content .review-header .review-toolbar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
}
md-provider-score .review .review-content .review-header .review-toolbar a {
  clear: none;
  display: inline-block;
  margin: 0 5px;
  line-height: 25px;
  width: 25px;
  text-align: center;
  color: #666;
  border-radius: 5px;
}
md-provider-score .review .review-content .review-comment {
  display: block;
  width: 100%;
}
md-provider-score .review .review-content .review-comment p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
md-provider-score .review:hover .review-header .review-toolbar {
  display: block;
}
md-provider-score .rating-input {
  margin-top: 10px;
}
md-provider-score .rating-input .rating-input-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  md-provider-score .rating-input .rating-input-header {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
md-provider-score .rating-input .rating-input-header .stars {
  vertical-align: middle;
}
md-provider-score .rating-input .rating-input-header .info {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-left: 20px;
}
@media (max-width: 767px) {
  md-provider-score .rating-input .rating-input-header .info {
    margin-left: 0;
  }
}
md-provider-score .rating-input .rating-input-comment {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-provider-score .rating-input .rating-input-comment .md-form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0px !important;
}
md-provider-score .rating-input .rating-input-comment button {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
@media (max-width: 767px) {
  md-provider-score .rating-input .rating-input-comment button {
    margin-left: 0px;
    margin-right: 10px;
    margin-top: 10px;
  }
}
md-provider-score-details .md-modal .modal-header {
  margin-top: -10px;
  border-bottom: none;
  margin-bottom: -20px;
}
md-provider-score-details .md-modal .modal-header .close {
  margin-top: -10px;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  font-size: 33px;
}
md-provider-score-details .md-modal .modal-header h2.modal-title {
  color: #000;
  font: bold 20px Arial !important;
  margin-bottom: 14px;
}
md-provider-score-details .md-modal p.text2 {
  font-weight: normal !important;
  font: normal 14px/20px Arial !important;
}
md-provider-score-details .md-modal .footnote p {
  margin-top: 10px;
  margin-bottom: 0px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-provider-score-details .md-modal .footnote p.foot-title {
  text-decoration: underline;
}
md-provider-score-details .md-modal .footnote li {
  color: #000;
}
md-provider-score-details .md-modal .footnote ul.firtLevel {
  padding-left: 18px;
}
md-referral-form-answers .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 7px;
  color: #da3549;
}
md-referral-form-answers .attachment {
  margin-top: 0px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-referral-form-answers .attachment:last-child {
  margin-bottom: 10px;
}
md-referral-form-answers .md-form-question {
  font-size: 14px;
  color: #000;
  margin-top: 20px;
}
md-referral-form-answers .md-form-question .question-title {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  font-weight: 700;
  line-height: 24px;
  color: #666;
  vertical-align: middle;
}
md-referral-form-answers .md-form-question .question-title span {
  vertical-align: middle;
}
md-referral-form-answers .md-form-question .question-title .required,
md-referral-form-answers .md-form-question .question-title .optional {
  color: #666;
  margin-left: 5px;
  font-style: italic;
}
md-referral-form-answers .md-form-question .question-answer {
  line-height: 22px;
  margin-top: 4px;
}
md-referral-form-answers .md-form-question .question-answer .answer {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  color: #000;
}
md-referral-form-answers .md-form-question .question-answer .answer .nested-answer {
  padding-left: 20px;
}
md-referral-form-answers .md-form-question .question-answer .answer .nested-answer .md-form-question {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
md-referral-form-answers .md-form-question .question-answer .answer .date + .time {
  margin-left: 5px;
}
md-referral-form-answers .md-form-question .question-answer .answer .file-row {
  margin-top: 0px;
}
md-referral-form-answers .md-form-question .question-answer .intake-table .rmd-list-manual .md-layout-stretch-wrap {
  background: #fff;
  height: fit-content;
}
md-provider-stats {
  display: block;
}
md-provider-stats .provider-stats {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
  md-provider-stats .provider-stats {
    margin-top: 0px;
  }
}
md-provider-stats .provider-stats ul.stat-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
@media (max-width: 767px) {
  md-provider-stats .provider-stats ul.stat-list {
    margin: 0 -15px;
  }
}
md-provider-stats .provider-stats ul.stat-list li.stat {
  clear: none;
  display: inline-block;
  width: 50%;
}
md-provider-stats .provider-stats ul.stat-list li.stat .value,
md-provider-stats .provider-stats ul.stat-list li.stat .name {
  text-align: center;
}
md-provider-stats .provider-stats ul.stat-list li.stat .value {
  font-size: 24px;
  line-height: 30px;
  color: #000;
}
@media (max-width: 767px) {
  md-provider-stats .provider-stats ul.stat-list li.stat .value {
    font-size: 20px;
  }
}
md-provider-stats .provider-stats ul.stat-list li.stat .name {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  color: #666;
}
@media (max-width: 767px) {
  md-provider-stats .provider-stats ul.stat-list li.stat .name {
    line-height: 12px;
    text-transform: none;
  }
}
md-user-editor {
  display: block;
}
md-user-editor .modal-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  width: 100%;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-user-editor .modal-header .user-title {
  font-weight: 300;
  color: #1da4f0;
  font-size: 24px;
  width: calc(100%);
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  padding: 0px !important;
}
md-user-editor .modal-header .md-toolbar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: inline-block;
}
md-user-editor md-affiliations-picker .md-form-group {
  margin-bottom: 0;
}
md-user-editor .md-tabpanel-content {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-user-editor .md-tabpanel-content.locations {
  overflow-y: hidden;
}
md-user-editor .md-tabpanel-content.title-one-line {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-user-editor .md-tabpanel-content.title-two-lines {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px - 36px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-user-editor .no-left-padding {
  padding-left: 0px !important;
}
md-user-editor rmd-member-chips .md-chips md-chip {
  max-width: 100% !important;
}
md-user-editor rmd-file-select {
  max-width: fit-content;
}
md-user-editor .md-tabpanel-tabs + .md-tabpanel-content {
  margin-top: 20px;
}
md-user-editor .md-tabpanel .md-tabpanel-tabs {
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
md-user-editor .md-tabpanel .md-tabpanel-tabs .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
}
md-user-editor .md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab {
  min-width: fit-content;
}
md-user-editor .tab-notifications .md-pane-group-title {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-user-editor .tab-locations .region-section {
  display: block;
}
md-user-editor .tab-locations .region-section md-toolbar-custom-item-picker {
  margin-bottom: 10px !important;
}
md-user-editor .tab-locations md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((75px) + 40px + 41px + 10px + 33px + 55px + 45px + 21px + (81px) + 10px));
}
md-user-editor .tab-profile .role-select-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-user-editor .tab-profile .toggle-column {
  padding-right: 0px;
}
md-user-editor .tab-profile .md-form-group .bootstrap-switch + .control-label {
  margin-left: 5px;
}
md-user-editor .tab-profile .profile-image-settings {
  margin-bottom: 20px;
}
md-user-editor .tab-profile .profile-image-settings .profile-image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-user-editor .tab-profile .profile-image-settings .profile-image-wrap .avatar-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 15px;
}
md-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info .title {
  font-size: 18px;
  margin-bottom: 5px;
}
md-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info .edit-photo {
  display: block;
  font-size: 14px;
}
md-user-editor .tab-insurance md-account-insurance .md-layout-stretch-wrap {
  height: calc(100vh - ((75px) + 40px + 41px + 10px + 60px + 60px + (81px) + 10px));
}
md-user-editor .tab-insurance md-account-insurance .md-layout-stretch-wrap.has-filters-insurance,
md-user-editor .tab-insurance md-account-insurance .md-layout-stretch-wrap.multiple-pages-insurance {
  height: calc(100vh - ((75px) + 40px + 41px + 10px + 60px + 60px + 55px + 35px + (81px) + 10px));
}
md-user-editor .tab-audit-log {
  overflow-x: scroll;
}
md-user-editor md-contact-audit-log {
  display: inline-block;
}
md-user-editor rmd-list-loading-icon {
  width: 620px;
}
md-user-editor .audit-row {
  background-color: #fff;
}
md-user-editor .rmd-list-content {
  width: 1000px;
}
md-user-editor .custom-tab {
  margin-right: 20px !important;
}
md-user-editor md-account-favorites {
  height: 100% !important;
  display: inline-block;
}
md-user-editor md-account-favorites .md-layout-stretch-wrap.no-pagination.list,
md-user-editor md-account-favorites .md-layout-stretch-wrap {
  height: 100% !important;
}
md-user-editor .favorites {
  overflow-x: scroll;
}
md-user-editor .control-icon.icon-with-data i.fa {
  color: #6bb31c;
}
md-user-editor .control-icon.icon-without-data i.fa {
  color: #1da4f0;
}
md-user-editor .custom-btn {
  height: 20px !important;
}
md-user-editor .custom-btn i {
  position: absolute;
  margin-top: 2px !important;
}
.md-user-editor-modal-text {
  margin-top: 10px;
}
rmd-file-select {
  display: block;
}
rmd-file-select .file-select-input {
  display: none;
}
md-user-form {
  display: block;
}
md-user-form md-affiliations-picker md-filter-chips .md-chips md-chip {
  width: fit-content;
  max-width: 100%;
}
md-user-form .ml0 {
  margin-left: 0px !important;
}
md-user-form .pull-signature-left {
  margin-left: -75px;
  margin-right: 75px;
}
md-user-form .add-width {
  width: calc(100% + 75px);
}
md-user-form .toolbar {
  position: absolute;
  top: 5px;
  right: 5px;
}
md-user-form .toolbar a i {
  font-size: 20px;
  --fa-primary-color: #fff;
  --fa-secondary-color: #e36776;
  --fa-secondary-opacity: 1;
}
md-user-form .signature {
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-top: 5px;
  padding: 2px;
  background: #fff;
}
md-user-form .signature img {
  max-height: 45px;
  max-width: 100%;
}
md-user-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-user-form .summary {
  overflow-y: auto !important;
}
md-user-form .dropdown-menu,
md-user-form .md-dropdown-menu,
md-user-form .dropdown {
  min-width: 75px !important;
  max-width: 100% !important;
}
md-user-form .year-dropdown {
  margin-left: 10px;
  width: 75px;
}
md-user-form .profile-form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-user-form .profile-form .form-group .control-label {
  font-weight: 600;
}
md-user-form .edit-link {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}
md-user-form .credential-group {
  margin-bottom: 20px;
}
md-user-form .credential-group .form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
}
md-user-form .credential-group .year-picker {
  max-width: 80px;
  margin-left: 10px;
}
md-user-form .credential-group .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-user-form .credential-group .add-link i {
  margin-right: 5px;
}
md-condition-picker {
  display: block;
}
md-condition-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-condition-picker .loading .fa {
  color: #1da4f0;
}
md-condition-picker .md-dropdown-menu {
  width: 100%;
}
.btn-default {
  color: #000;
  font-weight: 400;
  font-family: Roboto, "Helvetica Neue", sans-serif !important;
}
md-affiliations-picker {
  display: block;
}
md-affiliations-picker .pr0 .md-btn.clear {
  padding-right: 0;
}
md-affiliations-picker .dropdown {
  width: 100%;
}
md-affiliations-picker .col-sm-12 {
  margin-right: 0;
  margin-left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 10px;
}
md-affiliations-picker .col-sm-6 {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  margin-bottom: 10px;
}
md-affiliations-picker .md-form-group.has-toolbar .form-control-toolbar-group {
  display: contents;
}
md-affiliations-picker .md-form-group {
  margin-bottom: 10px;
}
md-affiliations-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-affiliations-picker .add-link i {
  margin-right: 5px;
}
md-affiliations-picker .text-muted {
  color: #b1b1b1;
}
md-master-user-editor {
  display: block;
}
md-master-user-editor .modal-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  width: 100%;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-master-user-editor .modal-header .user-title {
  font-weight: 300;
  color: #1da4f0;
  font-size: 24px;
  width: calc(100%);
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  padding: 0px !important;
}
md-master-user-editor .modal-header .md-toolbar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: inline-block;
}
md-master-user-editor md-affiliations-picker .md-form-group {
  margin-bottom: 0;
}
md-master-user-editor .md-tabpanel-content {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-master-user-editor .md-tabpanel-content.title-one-line {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-master-user-editor .md-tabpanel-content.title-two-lines {
  height: calc(100vh - 75px - 41px - 11px - 40px - 81px - 36px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-master-user-editor .md-tabpanel-content.locations {
  overflow-y: hidden;
}
md-master-user-editor .modal-title {
  padding-right: 0px !important;
}
md-master-user-editor .no-left-padding {
  padding-left: 0px !important;
}
md-master-user-editor rmd-member-chips .md-chips md-chip {
  max-width: 100% !important;
}
md-master-user-editor rmd-file-select {
  max-width: fit-content;
}
md-master-user-editor .md-tabpanel-tabs + .md-tabpanel-content {
  margin-top: 20px;
}
md-master-user-editor .md-tabpanel-tabs .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
}
md-master-user-editor .tab-notifications .md-pane-group-title {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-master-user-editor .tab-accounts .region-section {
  display: block;
}
md-master-user-editor .tab-accounts .region-section md-toolbar-custom-item-picker {
  margin-bottom: 10px !important;
}
md-master-user-editor .tab-accounts md-child-accounts-list .md-layout-stretch-wrap {
  height: calc(100vh - ((75px) + 40px + 41px + 10px + 55px + 45px + (81px)));
}
md-master-user-editor .tab-profile .role-select-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
md-master-user-editor .tab-profile .toggle-column {
  padding-right: 0px;
}
md-master-user-editor .tab-profile .md-form-group .bootstrap-switch + .control-label {
  margin-left: 5px;
}
md-master-user-editor .tab-profile .profile-image-settings {
  margin-bottom: 20px;
}
md-master-user-editor .tab-profile .profile-image-settings .profile-image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-master-user-editor .tab-profile .profile-image-settings .profile-image-wrap .avatar-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 15px;
}
md-master-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-master-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info .title {
  font-size: 18px;
  margin-bottom: 5px;
}
md-master-user-editor .tab-profile .profile-image-settings .profile-image-wrap .profile-info .edit-photo {
  display: block;
  font-size: 14px;
}
md-master-user-editor .tab-audit-log {
  overflow-x: scroll;
}
md-master-user-editor md-contact-audit-log {
  display: inline-block;
}
md-master-user-editor rmd-list-loading-icon {
  width: 620px;
}
md-master-user-editor .audit-row {
  background-color: #fff;
}
md-master-user-editor .rmd-list-content {
  width: 1000px;
}
md-master-user-editor .user-title.col-sm-6,
md-master-user-editor .user-title.col-sm-11 {
  padding-right: 0px !important;
}
md-master-user-editor .custom-tab {
  margin-right: 20px !important;
}
md-master-user-editor md-account-favorites {
  height: 100% !important;
  display: inline-block;
}
md-master-user-editor md-account-favorites .md-layout-stretch-wrap.no-pagination.list,
md-master-user-editor md-account-favorites .md-layout-stretch-wrap {
  height: 100% !important;
}
md-master-user-editor .favorites {
  overflow-x: scroll;
}
md-master-user-editor .control-icon.icon-with-data i.fa {
  color: #6bb31c;
}
md-master-user-editor .control-icon.icon-without-data i.fa {
  color: #1da4f0;
}
md-master-user-editor .custom-btn {
  height: 20px !important;
}
md-master-user-editor .custom-btn i {
  position: absolute;
  margin-top: 2px !important;
}
.md-user-editor-modal-text {
  margin-top: 10px;
}
md-child-accounts-list {
  display: block;
  height: 100%;
}
md-child-accounts-list .account-list {
  display: block;
  height: 100%;
}
md-child-accounts-list .account-list .accounts-list-container {
  display: block;
}
md-child-accounts-list .account-list .accounts-list-container .md-layout-stretch-wrap {
  min-height: 150px;
}
md-child-accounts-list .account-list .accounts-list-container .md-layout-stretch-wrap .md-layout-stretch-content {
  background: none;
  overflow-x: hidden;
}
md-child-accounts-list .account-toolbar-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-child-accounts-list .account-toolbar-row .search-group {
  width: 70%;
}
md-child-accounts-list .account-toolbar-row .form-group {
  margin-bottom: 10px !important;
}
md-child-accounts-list .account-header-row {
  display: block;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-child-accounts-list .account-header-row .account-header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 34px;
}
md-child-accounts-list .account-header-row .account-header-content .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 12px;
  color: #da3549;
}
md-child-accounts-list .account-header-row .account-header-content rmd-checkbox {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-child-accounts-list .account-header-row .account-header-content .title-text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
md-child-accounts-list .account-header-row .account-header-content .total {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
md-child-accounts-list .account-row {
  margin-bottom: 5px;
}
md-child-accounts-list .account-row .account-city {
  margin-bottom: 20px;
}
md-child-accounts-list .account-row .checkbox-item {
  position: relative;
}
md-child-accounts-list .account-row rmd-checkbox .checkbox {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-child-accounts-list .account-row rmd-checkbox label {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-child-accounts-list .account-row .checkbox-item label {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
md-child-accounts-list .account-row .form-group {
  margin-bottom: 0px !important;
}
md-master-user-form {
  display: block;
}
md-master-user-form md-affiliations-picker md-filter-chips .md-chips md-chip {
  width: fit-content;
  max-width: 100%;
}
md-master-user-form .ml0 {
  margin-left: 0px !important;
}
md-master-user-form .pull-signature-left {
  margin-left: -75px;
  margin-right: 75px;
}
md-master-user-form .add-width {
  width: calc(100% + 75px);
}
md-master-user-form .toolbar {
  position: absolute;
  top: 5px;
  right: 5px;
}
md-master-user-form .toolbar a i {
  font-size: 20px;
  --fa-primary-color: #fff;
  --fa-secondary-color: #e36776;
  --fa-secondary-opacity: 1;
}
md-master-user-form .signature {
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-top: 5px;
  padding: 2px;
  background: #fff;
}
md-master-user-form .signature img {
  max-height: 45px;
  max-width: 100%;
}
md-master-user-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-master-user-form .summary {
  overflow-y: auto !important;
}
md-master-user-form .dropdown-menu,
md-master-user-form .md-dropdown-menu,
md-master-user-form .dropdown {
  min-width: 75px !important;
  max-width: 100% !important;
}
md-master-user-form .year-dropdown {
  margin-left: 10px;
  width: 75px;
}
md-master-user-form .profile-form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-master-user-form .profile-form .form-group .control-label {
  font-weight: 600;
}
md-master-user-form .edit-link {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}
md-master-user-form .credential-group {
  margin-bottom: 20px;
}
md-master-user-form .credential-group .form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
}
md-master-user-form .credential-group .year-picker {
  max-width: 80px;
  margin-left: 10px;
}
md-master-user-form .credential-group .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-master-user-form .credential-group .add-link i {
  margin-right: 5px;
}
.md-merge .button-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-merge .modal-body {
  height: calc(100vh - 76px - 81px);
}
.md-merge .merge-container {
  max-width: 220px;
  width: unset;
}
.md-merge .md-pane {
  max-width: 47%;
}
.md-merge .panel-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-merge .panel-section .merge-item-panel {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.md-merge .panel-section .spacer {
  width: 35.75px;
}
.md-merge .panel-section .arrow-wrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.md-merge .panel-section .arrow-wrapper i {
  font-size: 18px;
}
.md-merge .md-text.larger {
  font-size: 16px;
}
.md-merge .md-dl-horizontal dt,
.md-merge .md-dl-horizontal dd {
  line-height: 24px;
}
.md-merge .md-dl-horizontal dt {
  min-width: 75px;
  text-align: left;
  clear: left;
  float: left;
}
.md-merge .md-dl-horizontal dd {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: left;
}
.md-merge .md-dl-horizontal.wide dt {
  min-width: 100px;
}
md-location-batch-operator {
  display: block;
}
md-location-batch-operator .instructions {
  padding-bottom: 10px;
}
md-location-batch-operator .instructions .text1 {
  white-space: normal;
}
md-location-batch-operator .region-section {
  display: block;
}
md-location-batch-operator .region-section md-toolbar-custom-item-picker {
  margin-bottom: 10px !important;
}
md-location-batch-operator md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((119px) + 40px + 41px + 10px + 33px + 55px + 45px + 21px + (81px)));
}
md-user-settings-batch-editor {
  display: block;
}
md-user-settings-batch-editor .md-modal .modal-body {
  padding-top: 15px;
  padding-bottom: 15px;
}
md-user-settings-batch-editor .md-modal .modal-body .md-loader {
  overflow: scroll;
}
md-user-settings-batch-editor .md-modal .modal-body .form-group {
  margin-bottom: 10px !important;
}
md-user-settings-batch-editor .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-user-settings-batch-editor th {
  background-color: #fff !important;
}
md-user-settings-batch-editor .rmd-list-item {
  background-color: #fff;
}
.md-user-settings-batch-editor-modal .modal-dialog {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 85%;
}
md-loading-modal {
  display: block;
}
md-loading-modal .message {
  margin-bottom: 0px;
}
md-loading-modal .title {
  margin-bottom: 15px;
}
md-loading-modal .footer {
  margin-top: 15px;
}
md-location-audit-log {
  padding-top: 10px;
}
md-location-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-location-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-location-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-location-audit-log .details .action.block {
  display: block;
}
md-location-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-location-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-location-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-location-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-location-audit-log .details .file a:hover,
md-location-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-location-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-integration-mapping-picker {
  display: block;
}
md-integration-mapping-picker .split1 {
  width: calc(50%) !important;
  margin-left: 0px !important;
  max-width: unset !important;
  margin-right: 10px;
}
md-integration-mapping-picker .split2 {
  width: calc(50% - 15px);
}
md-integration-mapping-picker .md-form-group {
  margin-bottom: 10px;
}
md-integration-mapping-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-integration-mapping-picker .add-link i {
  margin-right: 5px;
}
md-integration-mapping-picker .text-muted {
  color: #b1b1b1;
}
md-integration-mapping-picker .input-row {
  margin-bottom: 10px;
}
md-integration-mapping-picker .input-row .type-picker {
  min-width: 150px;
  max-width: 150px;
  margin-left: 10px;
}
md-integration-mapping-picker .no-data {
  padding-bottom: 15px;
}
md-integration-mapping-picker .ui-select-match-text {
  padding-right: 0px !important;
}
md-integration-mapping-picker .ui-select-match-text .ui-select-placeholder {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-integration-mapping-picker .mapping-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 100%;
}
md-integration-mapping-picker .mapping-container .col1 {
  max-width: calc(38%) !important;
  margin-right: 10px;
  min-width: calc(38% - 10px) !important;
}
md-integration-mapping-picker .mapping-container .col2 {
  max-width: calc(23%) !important;
  margin-right: 10px;
  min-width: calc(23% - 10px) !important;
}
md-integration-mapping-picker .mapping-container .col3 {
  max-width: calc(39%) !important;
  min-width: calc(39% - 40px) !important;
}
md-integration-mapping-picker .sidebar-integration-system {
  width: 90%;
  float: left;
  margin-bottom: 10px;
}
md-integration-mapping-picker .sidebar-delete {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-integration-mapping-picker .sidebar-delete .danger {
  color: #da3549 !important;
}
md-integration-mapping-picker .sidebar-data-mapping {
  margin-bottom: 10px;
}
md-communication-method-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-communication-method-picker .ui-select-toggle {
  color: #000;
}
md-communication-method-picker .text-muted {
  color: #b1b1b1;
}
md-communication-method-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-communication-method-picker .input-row {
  margin-bottom: 10px;
}
md-communication-method-picker .input-row .type-picker {
  margin-left: 10px;
}
md-communication-method-picker .md-form-group {
  margin-bottom: 10px;
}
md-communication-method-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-communication-method-picker .add-link i {
  margin-right: 5px;
}
md-communication-method-picker .ui-select-spin {
  display: none;
}
md-communication-method-picker .btn-link {
  display: none;
}
md-communication-trigger-picker {
  display: block;
}
md-communication-trigger-picker .picker-wrap {
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 12px;
}
md-communication-trigger-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
  color: #1da4f0;
}
md-communication-trigger-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
}
md-communication-trigger-picker ul.dropdown-menu {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 500px;
  overflow-y: auto;
}
md-communication-trigger-picker ul.dropdown-menu li {
  line-height: 15px;
  padding-bottom: 5px;
}
md-communication-trigger-picker ul.dropdown-menu li a {
  display: block;
  color: #000;
  padding: 5px 10px;
}
md-communication-trigger-picker ul.dropdown-menu li a .nested-status {
  color: #666;
  padding-left: 10px;
}
md-communication-trigger-picker ul.dropdown-menu li a .nested-status .md-text {
  font-size: 13px;
  width: 100%;
}
md-communication-trigger-picker ul.dropdown-menu li a .nested-status .nested-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 5px;
  color: #999;
}
md-communication-frequency-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-communication-frequency-picker .ui-select-toggle {
  color: #000;
}
md-communication-frequency-picker .text-muted {
  color: #b1b1b1;
}
md-communication-frequency-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-communication-frequency-picker .input-row {
  margin-bottom: 10px;
}
md-communication-frequency-picker .input-row .type-picker {
  margin-left: 10px;
}
md-communication-frequency-picker .md-form-group {
  margin-bottom: 10px;
}
md-communication-frequency-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-communication-frequency-picker .add-link i {
  margin-right: 5px;
}
md-communication-frequency-picker .ui-select-spin {
  display: none;
}
md-communication-frequency-picker .btn-link {
  display: none;
}
md-template-picker {
  display: block;
}
md-header-public {
  display: block;
}
md-header-public .acacia-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2px 0;
}
md-header-public .acacia-mobile a img {
  max-height: 60px;
}
md-header-public .naples {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 10px 0;
}
md-header-public .default-logo-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 10px 0;
}
md-header-public .tristar-mobile-header {
  height: 64px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 10px 0;
}
md-header-public .tristar-mobile-header a img {
  max-height: 40px;
}
md-header-public .placeholder {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 25px 0;
}
md-header-public .placeholder .h1 {
  font-weight: 600;
}
md-header-public .motion-mobile-header {
  padding: 5px 0px;
  height: 64px;
}
md-header-public .motion-mobile-header a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-header-public .motion-mobile-header a img {
  max-width: 150px;
  max-height: 50px;
}
md-header-public .srm-mobile-header {
  padding: 5px 0px;
  height: 64px;
}
md-header-public .srm-mobile-header a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-header-public .srm-mobile-header a img {
  max-width: 150px;
  max-height: 50px;
}
@font-face {
  font-family: "Museo Sans";
  src: url("/fonts/MuseoSans-500.otf") format("truetype");
}
.motion-pt-custom-header header.page_header {
  font-family: "Museo Sans" !important;
  overflow-wrap: break-word;
  line-height: 1.75;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 100;
  height: 211px;
}
.motion-pt-custom-header header.page_header strong {
  font-weight: normal;
}
.motion-pt-custom-header header.page_header strong.big {
  font-weight: bold;
}
.motion-pt-custom-header header.page_header i.fa {
  font-family: 'Font Awesome 5 Pro' !important;
}
.motion-pt-custom-header header.page_header div#simple-banner {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  text-align: center;
  z-index: 99999;
  display: block;
  position: static;
  background: #ffcb05;
}
.motion-pt-custom-header header.page_header div#simple-banner .simple-banner-text {
  font-family: "Museo Sans" !important;
  overflow-wrap: break-word;
  line-height: 1.75;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  font-weight: 100;
  padding: 10px 20px;
  font-size: 13px;
  color: #000;
}
.motion-pt-custom-header header.page_header .header_1 {
  position: relative;
  background-color: #2e2a2a;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 2px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row {
  width: 1280px;
  position: relative;
  margin: 0 auto;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr {
  display: table;
  width: 100%;
  position: relative;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_left.header_1_left {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_left.header_1_left .cz_elm {
  float: left;
  margin-top: 20px;
  margin-right: 20px;
  font-size: 16px;
  margin-bottom: 20px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_left.header_1_left .cz_elm a.elm_icon_text {
  padding: 0;
  margin: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 0;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_left.header_1_left .cz_elm a.elm_icon_text i.fa {
  font-size: 20px;
  margin-top: 3px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  left: -30px !important;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right strong {
  color: #fff;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm {
  text-align: right;
  padding: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  position: relative;
  display: inline-block;
  float: none;
  font-size: 16px;
  margin-top: 7px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm .elm_icon_text strong:hover {
  color: #dc4c46;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm a.elm_icon_text {
  text-align: right;
  font-size: 16px;
  padding: 0;
  margin: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 0;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm a.elm_icon_text img.phone {
  width: 16px;
  height: 16px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm a.elm_icon_text:hover .it_text {
  color: #dc4c46;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm a.elm_icon_text .it_text {
  text-align: right;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: 800 !important;
  font-size: 16px;
  color: #fff;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 {
  text-align: right;
  padding: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  position: relative;
  display: inline-block;
  float: none;
  margin-top: 9px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 .cz_social {
  text-align: right;
  font-size: 16px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 220ms ease-in-out, color 1ms;
  -moz-transition: all 220ms ease-in-out, color 1ms;
  -o-transition: all 220ms ease-in-out, color 1ms;
  -ms-transition: all 220ms ease-in-out, color 1ms;
  transition: all 220ms ease-in-out, color 1ms;
  position: relative;
  z-index: 99999;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 .cz_social:after {
  position: absolute;
  font-family: "Museo Sans", Arial;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  z-index: 9;
  color: #fff;
  background: #111;
  padding: 8px 12px;
  border-radius: 80px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  visibility: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%) scale(0.8);
  -moz-transform: translate(-50%, 100%) scale(0.8);
  -o-transform: translate(-50%, 100%) scale(0.8);
  -ms-transform: translate(-50%, 100%) scale(0.8);
  transform: translate(-50%, 100%) scale(0.8);
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 .cz_social a {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  width: 1em;
  height: 1em;
  line-height: 1em;
  position: relative;
  font-size: 16px;
  color: #fff;
  margin-right: 4px;
  margin-left: 4px;
  border-radius: 80px;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 .cz_social a span {
  display: none;
}
.motion-pt-custom-header header.page_header .header_1 .row.elms_row .clr .elms_right.header_1_right .cz_elm.social_header_1_right_4 .cz_social a:hover span {
  display: block;
  position: absolute;
  font-family: "Museo Sans", Arial;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  z-index: 9;
  color: #fff;
  background: #111;
  padding: 8px 12px;
  border-radius: 80px;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%) scale(0.8);
  -moz-transform: translate(-50%, 100%) scale(0.8);
  -o-transform: translate(-50%, 100%) scale(0.8);
  -ms-transform: translate(-50%, 100%) scale(0.8);
  transform: translate(-50%, 100%) scale(0.8);
  color: #fff;
  background-color: #dc4c46;
}
.motion-pt-custom-header header.page_header .header_2 {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  -webkit-transition: all 220ms ease-in-out, color 1ms;
  -moz-transition: all 220ms ease-in-out, color 1ms;
  -o-transition: all 220ms ease-in-out, color 1ms;
  -ms-transition: all 220ms ease-in-out, color 1ms;
  transition: all 220ms ease-in-out, color 1ms;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-color: #dc4c46;
  background-color: transparent !important;
  background-image: -webkit-linear-gradient(270deg, #fff, rgba(255,255,255,0.4)) !important;
  background-image: -moz-linear-gradient(270deg, #fff, rgba(255,255,255,0.4)) !important;
  background-image: -o-linear-gradient(270deg, #fff, rgba(255,255,255,0.4)) !important;
  background-image: -ms-linear-gradient(270deg, #fff, rgba(255,255,255,0.4)) !important;
  background-image: linear-gradient(180deg, #fff, rgba(255,255,255,0.4)) !important;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row {
  padding: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  width: 1280px;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  -webkit-transition: all 220ms ease-in-out, color 1ms;
  -moz-transition: all 220ms ease-in-out, color 1ms;
  -o-transition: all 220ms ease-in-out, color 1ms;
  -ms-transition: all 220ms ease-in-out, color 1ms;
  transition: all 220ms ease-in-out, color 1ms;
  background-color: rgba(255,255,255,0.02);
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  display: table;
  width: 100%;
  position: relative;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_left {
  overflow-wrap: break-word;
  line-height: 1.75;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_left .cz_elm {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 5px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_left .cz_elm .logo_is_img.logo a img {
  color: #000;
  font-size: 10px;
  aspect-ratio: auto 200/200;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  display: block;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 260px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right {
  padding: 0;
  margin: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm {
  padding: 0;
  margin: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  position: relative;
  float: right;
  margin-top: 44px;
  margin-bottom: 38px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon i {
  padding: 0;
  margin: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-family: FontAwesome;
  cursor: pointer;
  width: 2em;
  height: 2em;
  font-size: 22px;
  line-height: 2em;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon i.fa-times {
  --page-title-display: block;
  overflow-wrap: break-word;
  letter-spacing: 0.5px;
  padding: 0;
  outline: 0px;
  top: 60px;
  right: 60px;
  margin: 0;
  color: #fff;
  mix-blend-mode: difference;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-family: FontAwesome;
  cursor: pointer;
  width: 2em;
  height: 2em;
  font-size: 22px;
  line-height: 2em;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  display: none;
  position: fixed !important;
  z-index: 99999999999;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon i.fa-times.display {
  display: block;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon i:before {
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search {
  font-size: 16px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  display: none;
  cursor: default;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 999999999;
  background-color: rgba(42,42,42,0.9);
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search.display {
  display: block;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search .search {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search .search form {
  -webkit-animation: CubicIn 0.8s cubic-bezier(0.18, 0.89, 0.33, 1.27) forwards;
  -moz-animation: CubicIn 0.8s cubic-bezier(0.18, 0.89, 0.33, 1.27) forwards;
  -o-animation: CubicIn 0.8s cubic-bezier(0.18, 0.89, 0.33, 1.27) forwards;
  -ms-animation: CubicIn 0.8s cubic-bezier(0.18, 0.89, 0.33, 1.27) forwards;
  animation: CubicIn 0.8s cubic-bezier(0.18, 0.89, 0.33, 1.27) forwards;
  position: relative;
  display: block;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search .search form span {
  position: absolute;
  top: -78%;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search .search form input.ajax_search_input {
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin: 0;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border: 1px solid rgba(167,167,167,0.4);
  color: #282828;
  border-style: solid;
  padding: 20px;
  font-size: 24px;
  border-radius: 90px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm .search_with_icon .outer_search .search form button {
  --e-global-typography-accent-font-weight: 500;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  z-index: 1;
  font-family: inherit;
  width: auto;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border-radius: 5px;
  position: absolute !important;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0 !important;
  cursor: pointer !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  overflow: visible !important;
  color: initial !important;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 {
  font-size: 16px;
  padding: 0;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  list-style-type: none;
  touch-action: pan-y;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  margin-right: 30px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2.sf-menu > .cz > a:before {
  width: 100%;
  height: 1px;
  background-color: #fecd08;
  display: block;
  position: absolute;
  z-index: 100000;
  bottom: 0;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -moz-transition: -moz-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -ms-transition: -ms-transform 0.3s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  content: '';
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li a {
  list-style-type: none;
  text-align: center;
  outline: 0px;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: block;
  z-index: 1;
  padding: 6px 0;
  margin: 0 30px 0 0;
  background: none;
  font-style: normal;
  letter-spacing: 0;
  border: 0;
  font-size: 16px;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 15px;
  margin-left: 15px;
  color: #000;
}
@media (max-width: 1200px) {
  .motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li a {
    font-size: 1.2vw;
  }
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li.locationbtn {
  margin-right: -10px !important;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li.locationbtn span i.fa {
  vertical-align: baseline;
  margin-right: 8px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li:hover:not(.courtesy-screening) a:before {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -moz-transition: -moz-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(1, 0, 0, 1);
  -ms-transition: -ms-transform 0.3s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li.courtesy-screening {
  background-color: #f8cb0e;
  border-radius: 10px;
  color: #fdfefe;
  padding: 0px;
  text-align: center;
  font-size: 22px;
}
.motion-pt-custom-header header.page_header .header_2 .row.elms_row .clr .elms_right .cz_elm ul#menu_header_2 li.courtesy-screening.leftbtn {
  margin-right: 15px !important;
}
.sc-house-custom-header {
  background: #fff;
}
.sc-house-custom-header header#top {
  height: 96px;
}
.sc-house-custom-header header#top .header-container {
  padding: 0 90px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  max-width: 1500px;
  margin: auto;
}
.sc-house-custom-header header#top .logo-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 96px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.sc-house-custom-header header#top .logo-container a img {
  height: 24px;
}
.sc-house-custom-header header#top .menu-container {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -o-box-flex: 3;
  box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.sc-house-custom-header header#top ul.sf-menu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  font: inherit;
  list-style: none;
  padding: 0;
  z-index: 10;
  margin: 0;
  overflow: visible;
  min-height: 1px;
  height: 96px;
  line-height: 1px;
  float: none;
  vertical-align: middle;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.sc-house-custom-header header#top ul.sf-menu li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  z-index: 10;
  line-height: 0;
  font-size: 12px;
  position: relative;
  list-style: none;
  float: left;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.sc-house-custom-header header#top ul.sf-menu li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  list-style: none outside none;
  margin: 0;
  z-index: 10;
  position: relative;
  text-decoration: none;
  padding: 0 10px 0 10px;
  display: block;
  font-family: Open Sans;
  text-transform: capitalize;
  letter-spacing: 0px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #000 !important;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.sc-house-custom-header header#top ul.sf-menu li a.button {
  background-color: #3452ff !important;
  color: #fff !important;
  opacity: 1 !important;
  -ms-filter: none !important;
  filter: none !important;
  padding: 10px 20px;
  -webkit-border-radius: 4px !important;
}
.sc-house-custom-header header#top ul.sf-menu li a i.fa {
  width: 36px;
  font-size: 18px;
  text-align: center;
}
.sc-house-custom-header header#top ul.sf-menu li.button_social_group {
  margin-left: 30px;
}
.sc-house-custom-header header#top ul.sf-menu li.button_social_group a {
  margin: 0px;
}
.tristar-custom-header {
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
}
.tristar-custom-header header.site-header {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 0 17px 0 #e3e3e3;
  box-shadow: 0 0 17px 0 #e3e3e3;
  z-index: 4;
  height: 100px;
}
.tristar-custom-header header.site-header .centered {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  height: 92px;
  max-width: 100%;
  padding: 0 30px 0 25px;
  position: relative;
}
.tristar-custom-header header.site-header .centered #ph_site_logo {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 0 17px 0 0;
  width: 25%;
  margin: 5px 0;
  height: 90px;
}
.tristar-custom-header header.site-header .centered #ph_site_logo a {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
}
.tristar-custom-header header.site-header .centered #ph_site_logo a img {
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  line-height: 1.25;
  color: #ec842c;
  font-size: 0;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  float: left;
  max-height: 90px;
  max-width: 100%;
}
.tristar-custom-header header.site-header .centered .info-headline-container {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  display: block;
  float: right;
  padding: 14px 0 0;
  top: 0;
  width: 70%;
  right: 200px;
}
.tristar-custom-header header.site-header .centered .info-headline-container #ph_site_contact_info {
  color: #000;
  float: right;
  display: inline-block;
  font-family: LatoRegular, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  margin: 0 0 0 40px;
  text-shadow: 0 0 3px #fff;
}
.tristar-custom-header header.site-header .centered .info-headline-container #ph_site_contact_info .header {
  color: #000;
  font-family: LatoRegular, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  text-shadow: 0 0 3px #fff;
}
.tristar-custom-header header.site-header .centered .info-headline-container #ph_site_contact_info .body {
  color: #000;
  font-family: LatoRegular, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  text-shadow: 0 0 3px #fff;
}
.tristar-custom-header header.site-header .centered .info-headline-container #ph_site_contact_info .footer {
  color: #000;
  font-family: LatoRegular, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  text-shadow: 0 0 3px #fff;
}
.tristar-custom-header header.site-header .centered .info-headline-container #ph_site_headline {
  color: #000;
  display: inline-block;
  float: right;
  font-family: LatoSemiBold, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 3px #fff;
}
.tristar-custom-header header.site-header .centered .menu-container {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  display: block;
  float: right;
  width: 75%;
  padding: 0 0 0;
  padding-top: 8px;
}
.tristar-custom-header header.site-header .centered .menu-container .ph_site_phone.ph_site_phone_multi {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: right;
  margin: 0 0 0 25px;
  padding: 0 0 1px 30px;
  z-index: 101;
  height: 25px;
  margin-bottom: 4px;
  padding-left: 21px;
  background: url("/images/account-headers/tristar/header_phone_home.png") left center no-repeat transparent;
  background-size: contain;
}
.tristar-custom-header header.site-header .centered .menu-container .ph_site_phone.ph_site_phone_multi a {
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 100%;
  text-shadow: 0 1px 1px #222;
  color: #f2584e;
  font-family: LatoBold, sans-serif;
  white-space: nowrap;
  line-height: 25px;
  font-size: 16px;
}
.tristar-custom-header header.site-header .centered .menu-container nav {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  display: block;
  float: right;
  width: 100%;
  margin: 6px 0 0;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  width: 100%;
  position: relative;
  z-index: 100;
  background: #e8e8e8;
  background-color: transparent;
  height: 24px;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  float: left;
  width: 100%;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  list-style: none;
  padding: 0;
  margin: 0;
  float: right;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  list-style: none;
  float: left;
  display: inline-block;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.25);
  border-top: none;
  margin-left: 8px;
  padding-right: 8px;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li:last-child {
  padding-right: 0px;
  border-right: none;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li a {
  list-style: none;
  font: normal 16px Arial, 'Helvetica Neue', Helvetica, sans-serif;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: LatoSemiBold, sans-serif;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  color: #000;
  display: table-cell;
  height: 24px;
  line-height: 1.25;
  margin: 0 0 0 25px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 12.7px;
  text-shadow: none;
  white-space: nowrap;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li a:hover,
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li a.active {
  color: #ec842c;
}
.tristar-custom-header header.site-header .centered .menu-container nav #ph_site_main_menu_rwd.smm .body ul li ul {
  color: #555;
  font-family: LatoRegular, Arial, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  left: 0;
  min-width: 150px;
  width: auto;
  border-bottom: none;
  border-radius: 4px;
  max-width: /*250px*/ none;
  top: 24px;
  padding-top: 6px;
}
.covenant-family-custom-header header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  height: 83px;
  position: inherit;
}
.covenant-family-custom-header header .elementor-container {
  width: 100%;
}
.covenant-family-custom-header header .elementor-column.nav-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin-top: 12px;
}
.covenant-family-custom-header header .elementor-element.elementor-element-3edca646.elementor-nav-menu__align-right.elementor-nav-menu--indicator-none.elementor-nav-menu--stretch.elementor-nav-menu__text-align-center.elementor-nav-menu--dropdown-tablet.elementor-nav-menu--toggle.elementor-nav-menu--burger.elementor-widget.elementor-widget-global.elementor-global-91.elementor-widget-nav-menu {
  width: 100%;
}
.covenant-family-custom-header header .elementor-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-20: #005a87;
  --page-title-display: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  --e-global-color-primary: #265175;
  --e-global-color-secondary: #a2d0ce;
  --e-global-color-text: #636466;
  --e-global-color-accent: #fff;
  --e-global-color-21a3afe: #fff;
  --e-global-color-34076584: #204463;
  --e-global-color-3db71cc1: RGBA(162, 208, 206, 0.901960784313726);
  --e-global-color-5aa3e9d1: #93c9c6;
  --e-global-typography-primary-font-family: "Montserrat";
  --e-global-typography-primary-font-weight: 400;
  --e-global-typography-secondary-font-family: "Montserrat";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Montserrat";
  --e-global-typography-text-font-weight: 300;
  --e-global-typography-accent-font-family: "Montserrat";
  --e-global-typography-accent-font-weight: 400;
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.covenant-family-custom-header header .elementor-column-wrap {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-20: #005a87;
  --page-title-display: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  --e-global-color-primary: #265175;
  --e-global-color-secondary: #a2d0ce;
  --e-global-color-text: #636466;
  --e-global-color-accent: #fff;
  --e-global-color-21a3afe: #fff;
  --e-global-color-34076584: #204463;
  --e-global-color-3db71cc1: RGBA(162, 208, 206, 0.901960784313726);
  --e-global-color-5aa3e9d1: #93c9c6;
  --e-global-typography-primary-font-family: "Montserrat";
  --e-global-typography-primary-font-weight: 400;
  --e-global-typography-secondary-font-family: "Montserrat";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Montserrat";
  --e-global-typography-text-font-weight: 300;
  --e-global-typography-accent-font-family: "Montserrat";
  --e-global-typography-accent-font-weight: 400;
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
  margin: 0px 0px 0px 0px;
}
.covenant-family-custom-header header .elementor-column-wrap .elementor-widget-container {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-20: #005a87;
  --page-title-display: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  --e-global-color-primary: #265175;
  --e-global-color-secondary: #a2d0ce;
  --e-global-color-text: #636466;
  --e-global-color-accent: #fff;
  --e-global-color-21a3afe: #fff;
  --e-global-color-34076584: #204463;
  --e-global-color-3db71cc1: RGBA(162, 208, 206, 0.901960784313726);
  --e-global-color-5aa3e9d1: #93c9c6;
  --e-global-typography-primary-font-family: "Montserrat";
  --e-global-typography-primary-font-weight: 400;
  --e-global-typography-secondary-font-family: "Montserrat";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Montserrat";
  --e-global-typography-text-font-weight: 300;
  --e-global-typography-accent-font-family: "Montserrat";
  --e-global-typography-accent-font-weight: 400;
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
  -moz-transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
  -ms-transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.covenant-family-custom-header header .elementor-column-wrap .elementor-widget-wrap {
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.covenant-family-custom-header header .elementor-column-wrap .elementor-button {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-20: #005a87;
  --page-title-display: none;
  --e-global-color-primary: #265175;
  --e-global-color-secondary: #a2d0ce;
  --e-global-color-text: #636466;
  --e-global-color-accent: #fff;
  --e-global-color-21a3afe: #fff;
  --e-global-color-34076584: #204463;
  --e-global-color-3db71cc1: RGBA(162, 208, 206, 0.901960784313726);
  --e-global-color-5aa3e9d1: #93c9c6;
  --e-global-typography-primary-font-family: "Montserrat";
  --e-global-typography-primary-font-weight: 400;
  --e-global-typography-secondary-font-family: "Montserrat";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Montserrat";
  --e-global-typography-text-font-weight: 300;
  --e-global-typography-accent-font-family: "Montserrat";
  --e-global-typography-accent-font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  fill: #fff;
  color: #fff;
  background-color: #a2d0ce;
  border-radius: 0px 0px 0px 0px;
  padding: 15px 20px 15px 20px;
  margin-right: 24px;
  width: 227px;
}
.covenant-family-custom-header header .elementor-column-wrap .elementor-button:hover {
  background-color: #93c9c6;
}
.covenant-family-custom-header header .elementor-column-wrap span.elementor-button-content-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-left: 24px;
}
.covenant-family-custom-header header .elementor-column-wrap .elementor-align-icon-right {
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  line-height: 1;
  text-align: center;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  fill: #fff;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  -ms-box-flex: 0;
  box-flex: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  text-decoration: inherit;
  -webkit-box-ordinal-group: 16;
  -webkit-box-ordinal-group: 15;
  -moz-box-ordinal-group: 15;
  -o-box-ordinal-group: 15;
  -ms-flex-order: 15;
  -webkit-order: 15;
  order: 15;
  margin-left: 10px;
}
.covenant-family-custom-header header a {
  margin-left: 5px;
}
.covenant-family-custom-header header a img {
  max-height: 63px;
  width: auto;
}
.covenant-family-custom-header header ul {
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-direction: normal;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  -webkit-box-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.covenant-family-custom-header header ul li {
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-direction: normal;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  position: relative;
  border-width: 0;
  margin-bottom: 10px;
  margin-right: 40px;
}
.covenant-family-custom-header header ul li a {
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  -webkit-box-direction: normal;
  list-style: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  background-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 20px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  padding: 13px 20px;
  white-space: nowrap;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  color: #265175;
  padding-left: 0px;
  padding-right: 0px;
  border-bottom: 3px solid #fff;
  margin-top: 3px;
}
.covenant-family-custom-header header ul li a:hover {
  border-bottom: 3px solid #265175;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__logo {
    width: 120px !important;
  }
}
.coastal-fertility .app-header {
  position: unset !important;
  margin-bottom: 0 !important;
}
.coastal-fertility body {
  margin: 0;
  margin: 0;
  padding: 0;
  background: #f1f1f1;
  font-family: Georgia, Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.coastal-fertility body.home .app-content {
  background: 0 0;
  color: #222;
}
.coastal-fertility header,
.coastal-fertility nav {
  display: block;
}
.coastal-fertility a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  line-height: inherit;
  color: #5a8d19;
  text-decoration: none;
  cursor: pointer;
}
.coastal-fertility a img {
  border: 0;
}
.coastal-fertility a:active,
.coastal-fertility a:hover {
  outline-width: 0;
}
.coastal-fertility sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  bottom: -0.25em;
}
.coastal-fertility video {
  display: inline-block;
}
.coastal-fertility img {
  border-style: none;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
.coastal-fertility button,
.coastal-fertility input {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  font-family: inherit;
}
.coastal-fertility button {
  overflow: visible;
  text-transform: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: 0 0;
  line-height: 1;
  cursor: auto;
}
.coastal-fertility [type=reset],
.coastal-fertility [type=submit],
.coastal-fertility button,
.coastal-fertility html [type=button] {
  -webkit-appearance: button;
}
.coastal-fertility [type=button]::-moz-focus-inner,
.coastal-fertility [type=reset]::-moz-focus-inner,
.coastal-fertility [type=submit]::-moz-focus-inner,
.coastal-fertility button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.coastal-fertility [type=button]:-moz-focusring,
.coastal-fertility [type=reset]:-moz-focusring,
.coastal-fertility [type=submit]:-moz-focusring,
.coastal-fertility button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.coastal-fertility input {
  overflow: visible;
}
.coastal-fertility input::-webkit-input-placeholder {
  color: #cacaca;
}
.coastal-fertility input:-ms-input-placeholder {
  color: #cacaca;
}
.coastal-fertility input::placeholder {
  color: #cacaca;
}
.coastal-fertility [type=checkbox],
.coastal-fertility [type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
.coastal-fertility [type=number]::-webkit-inner-spin-button,
.coastal-fertility [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.coastal-fertility [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.coastal-fertility [type=search]::-webkit-search-cancel-button,
.coastal-fertility [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.coastal-fertility ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.coastal-fertility menu {
  display: block;
}
.coastal-fertility [hidden] {
  display: none;
}
.coastal-fertility html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
.coastal-fertility *,
.coastal-fertility ::after,
.coastal-fertility ::before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.coastal-fertility [data-whatinput=mouse] button {
  outline: 0;
}
.coastal-fertility [data-whatinput=mouse] .button {
  outline: 0;
}
.coastal-fertility [data-whatinput=mouse] .menu li {
  outline: 0;
}
.coastal-fertility .row {
  max-width: 112.5rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.coastal-fertility .row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.coastal-fertility .row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.coastal-fertility .row.collapse > .column {
  padding-right: 0;
  padding-left: 0;
}
.coastal-fertility .row.collapse > .column > .row {
  margin-right: 0;
  margin-left: 0;
}
.coastal-fertility .row .column.row.row {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (min-width: 40em) {
  .coastal-fertility .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .coastal-fertility .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 90em) {
  .coastal-fertility .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.coastal-fertility .column {
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
.coastal-fertility .column.row.row {
  float: none;
  display: block;
}
@media print, screen and (min-width: 40em) {
  .coastal-fertility .column {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .large-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .coastal-fertility .large-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .coastal-fertility .large-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .coastal-fertility .large-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .coastal-fertility .large-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .coastal-fertility .large-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .coastal-fertility .large-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .coastal-fertility .large-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .coastal-fertility .large-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .coastal-fertility .large-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .coastal-fertility .large-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .coastal-fertility .large-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .coastal-fertility .large-up-1 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-1 > .column {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .coastal-fertility .large-up-2 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-2 > .column {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .coastal-fertility .large-up-3 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-3 > .column {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .coastal-fertility .large-up-4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-4 > .column {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .coastal-fertility .large-up-5 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-5 > .column {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .coastal-fertility .large-up-6 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-6 > .column {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .coastal-fertility .large-up-7 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-7 > .column {
    -webkit-flex: 0 0 14.28571%;
    -ms-flex: 0 0 14.28571%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 14.28571%;
    -ms-flex: 0 0 14.28571%;
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .coastal-fertility .large-up-8 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .coastal-fertility .large-up-8 > .column {
    -webkit-flex: 0 0 12.5%;
    -ms-flex: 0 0 12.5%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 12.5%;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .large-collapse > .column {
    padding-right: 0;
    padding-left: 0;
  }
}
.coastal-fertility div,
.coastal-fertility form,
.coastal-fertility li,
.coastal-fertility ul {
  margin: 0;
  padding: 0;
}
.coastal-fertility a:focus,
.coastal-fertility a:hover {
  color: #999;
  text-decoration: underline;
}
.coastal-fertility ul {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
  margin-left: 1.25rem;
  list-style-type: disc;
}
.coastal-fertility ul ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
.coastal-fertility li {
  font-size: inherit;
}
.coastal-fertility .text-right {
  text-align: right;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .large-text-right {
    text-align: right;
  }
}
@media print {
  .coastal-fertility * {
    background: 0 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  .coastal-fertility a[href]:after {
    content: " (" attr(href) ")";
  }
  .coastal-fertility img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
  .coastal-fertility .button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    font-family: inherit;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -moz-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -ms-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #fefefe;
    background-color: #839c5c;
    background-image: -webkit-linear-gradient(#adc98e 0, #95b074 100%);
    background-image: -moz-linear-gradient(#adc98e 0, #95b074 100%);
    background-image: -o-linear-gradient(#adc98e 0, #95b074 100%);
    background-image: -ms-linear-gradient(#adc98e 0, #95b074 100%);
    background-image: linear-gradient(#adc98e 0, #95b074 100%);
    border-radius: 7px;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 1px 2px 1px rgba(0,0,0,0.25);
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.25);
    font-size: 1rem;
    font-style: italic;
    padding: 0.5em 1em;
    position: relative;
    white-space: nowrap;
  }
}
.coastal-fertility .button:focus,
.coastal-fertility .button:hover {
  background-color: #14679e;
  color: #fefefe;
}
.coastal-fertility .button.large {
  font-size: 1.25rem;
}
.coastal-fertility .button.secondary {
  background-color: #767676;
  color: #fefefe;
}
.coastal-fertility .button.success {
  background-color: #3adb76;
  color: #555;
}
.coastal-fertility .button.app-gray {
  background-color: #999;
  color: #fefefe;
}
.coastal-fertility .button:hover {
  background-color: #839c5c;
  background-image: none;
}
.coastal-fertility .button.secondary:focus,
.coastal-fertility .button.secondary:hover {
  background-color: #5e5e5e;
  color: #fefefe;
}
.coastal-fertility .button.success:focus,
.coastal-fertility .button.success:hover {
  background-color: #22bb5b;
  color: #555;
}
.coastal-fertility .button.app-gray:focus,
.coastal-fertility .button.app-gray:hover {
  background-color: #7a7a7a;
  color: #fefefe;
}
.coastal-fertility .button[disabled] {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  cursor: not-allowed;
}
.coastal-fertility .button[disabled],
.coastal-fertility .button[disabled]:focus,
.coastal-fertility .button[disabled]:hover {
  background-color: #1779ba;
  color: #fefefe;
}
.coastal-fertility .button[disabled].secondary {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  cursor: not-allowed;
}
.coastal-fertility .button[disabled].secondary,
.coastal-fertility .button[disabled].secondary:focus,
.coastal-fertility .button[disabled].secondary:hover {
  background-color: #767676;
  color: #fefefe;
}
.coastal-fertility .button[disabled].success {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  cursor: not-allowed;
}
.coastal-fertility .button[disabled].success,
.coastal-fertility .button[disabled].success:focus,
.coastal-fertility .button[disabled].success:hover {
  background-color: #3adb76;
  color: #555;
}
.coastal-fertility .button[disabled].app-gray {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  cursor: not-allowed;
}
.coastal-fertility .button[disabled].app-gray,
.coastal-fertility .button[disabled].app-gray:focus,
.coastal-fertility .button[disabled].app-gray:hover {
  background-color: #999;
  color: #fefefe;
}
.coastal-fertility a.button:focus,
.coastal-fertility a.button:hover {
  text-decoration: none;
}
.coastal-fertility [type=color],
.coastal-fertility [type=date],
.coastal-fertility [type=datetime-local],
.coastal-fertility [type=datetime],
.coastal-fertility [type=email],
.coastal-fertility [type=month],
.coastal-fertility [type=number],
.coastal-fertility [type=password],
.coastal-fertility [type=search],
.coastal-fertility [type=tel],
.coastal-fertility [type=text],
.coastal-fertility [type=time],
.coastal-fertility [type=url],
.coastal-fertility [type=week] {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  -webkit-box-shadow: inset 0 1px 2px rgba(85,85,85,0.1);
  box-shadow: inset 0 1px 2px rgba(85,85,85,0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
  -webkit-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -moz-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -ms-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.coastal-fertility [type=color]:focus,
.coastal-fertility [type=date]:focus,
.coastal-fertility [type=datetime-local]:focus,
.coastal-fertility [type=datetime]:focus,
.coastal-fertility [type=email]:focus,
.coastal-fertility [type=month]:focus,
.coastal-fertility [type=number]:focus,
.coastal-fertility [type=password]:focus,
.coastal-fertility [type=search]:focus,
.coastal-fertility [type=tel]:focus,
.coastal-fertility [type=text]:focus,
.coastal-fertility [type=time]:focus,
.coastal-fertility [type=url]:focus,
.coastal-fertility [type=week]:focus {
  outline: 0;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -moz-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -ms-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.coastal-fertility input:disabled,
.coastal-fertility input[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
.coastal-fertility [type=button],
.coastal-fertility [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.coastal-fertility input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.coastal-fertility [type=checkbox],
.coastal-fertility [type=file],
.coastal-fertility [type=radio] {
  margin: 0 0 1rem;
}
.coastal-fertility [type=checkbox]+label,
.coastal-fertility [type=radio]+label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
.coastal-fertility [type=checkbox]+label[for],
.coastal-fertility [type=radio]+label[for] {
  cursor: pointer;
}
.coastal-fertility label>[type=checkbox],
.coastal-fertility label>[type=radio] {
  margin-right: 0.5rem;
}
.coastal-fertility [type=file] {
  width: 100%;
}
.coastal-fertility label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}
.coastal-fertility .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.coastal-fertility .menu input {
  display: inline-block;
}
.coastal-fertility .menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
.coastal-fertility .menu .button,
.coastal-fertility .menu a {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.coastal-fertility .menu a,
.coastal-fertility .menu button,
.coastal-fertility .menu input {
  margin-bottom: 0;
}
.coastal-fertility .label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}
.coastal-fertility .label.secondary {
  background: #767676;
  color: #fefefe;
}
.coastal-fertility .label.success {
  background: #3adb76;
  color: #555;
}
.coastal-fertility .label.app-gray {
  background: #999;
  color: #fefefe;
}
.coastal-fertility .hide {
  display: none !important;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .hide-for-large {
    display: none !important;
  }
}
.coastal-fertility .app-header {
  margin-bottom: 200px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.coastal-fertility .app-header__inner {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  line-height: 1;
  padding: 0.5em;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__inner {
    background-color: transparent;
    padding: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.coastal-fertility .app-header__logo {
  position: absolute;
  left: 0;
  -webkit-order: 1;
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -o-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  top: 0;
  width: 120px;
  z-index: 2;
}
.coastal-fertility .app-header__logo a {
  display: block;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__logo {
    width: auto;
  }
}
.coastal-fertility .app-header__phone {
  font-family: 'Times New Roman', serif;
  font-size: 1.4em;
  margin-right: 0.75em;
  -webkit-order: 2;
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -o-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -ms-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__phone {
    color: #fff;
    font-size: 1.7em;
    font-weight: 700;
    -webkit-order: 6;
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 6;
    -moz-box-ordinal-group: 6;
    -o-box-ordinal-group: 6;
    -ms-flex-order: 6;
    -webkit-order: 6;
    order: 6;
    padding: 0.5em 1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  }
  .coastal-fertility .app-header__phone:hover {
    color: #fff;
  }
}
.coastal-fertility .app-header__menu-trigger {
  -webkit-flex: 0;
  -ms-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -webkit-order: 3;
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -o-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  padding: 0.5em;
}
.coastal-fertility .app-header__menu-trigger a {
  background-color: #fff;
  border: 1px solid #013d76;
  border-radius: 7px;
  color: #013d76;
  font-size: 1.8em;
  width: 40px;
  padding: 0.15em 0.25em;
}
.coastal-fertility .app-header__menu-trigger a:hover {
  color: #013d76;
}
.coastal-fertility .app-header__search-form-wrapper {
  display: none;
  -webkit-order: 4;
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 4;
  -moz-box-ordinal-group: 4;
  -o-box-ordinal-group: 4;
  -ms-flex-order: 4;
  -webkit-order: 4;
  order: 4;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -ms-transition: background-color 0.25s;
  transition: background-color 0.25s;
  width: 100%;
}
.coastal-fertility .app-header__search-form-wrapper form {
  float: right;
}
.coastal-fertility .app-header__search-form-wrapper .button {
  background-color: #95b762 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0;
  font-style: normal;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__search-form-wrapper {
    display: block;
  }
}
.coastal-fertility .app-header__nav {
  background-color: #013d76;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 100%;
  -webkit-order: 5;
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 5;
  -moz-box-ordinal-group: 5;
  -o-box-ordinal-group: 5;
  -ms-flex-order: 5;
  -webkit-order: 5;
  order: 5;
  overflow-y: auto;
  -webkit-transition: left 0.25s ease-out;
  -moz-transition: left 0.25s ease-out;
  -o-transition: left 0.25s ease-out;
  -ms-transition: left 0.25s ease-out;
  transition: left 0.25s ease-out;
  z-index: 3;
}
.coastal-fertility .app-header__nav form.search {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding: 0 1em;
}
.coastal-fertility .app-header__nav form.search :first-child {
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.coastal-fertility .app-header__nav form.search input[type=text] {
  border: 0;
  margin-bottom: 0;
  width: 100%;
}
.coastal-fertility .app-header__nav form.search input[type=submit] {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
}
.coastal-fertility .app-header__nav form.search .app-header__menu-trigger {
  padding: 0 0 0 1em;
}
.coastal-fertility .app-header__nav form.search .app-header__menu-trigger a {
  background-color: transparent;
  color: rgba(255,255,255,0.5);
  display: block;
}
.coastal-fertility .app-header__nav form.search .app-header__menu-trigger a:hover {
  color: #fff;
}
.coastal-fertility .app-header__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li {
  position: relative;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li a {
  border-bottom: 1px solid #012343;
  color: #fff;
  display: block;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li.menu-item-has-children > a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  border-radius: 5px;
  content: '\F107';
  display: block;
  font-family: FontAwesome;
  font-size: 1rem;
  padding: 0 0.75rem;
  position: absolute;
  right: 0.5em;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li ul {
  display: none;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li {
  line-height: 1.1;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li a {
  background-color: rgba(0,130,254,0.4);
  border-bottom: none;
  color: #fff;
  font-size: 1.2em;
  padding-left: 2em;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li ul li a {
  background-color: rgba(0,130,254,0.6);
  padding-left: 3em;
  font-size: 1.1em;
}
.coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li.menu-item-has-children > a:before {
  content: '\F107';
  font-family: FontAwesome;
  padding: 0.25rem 0.75rem;
  position: absolute;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-header__nav {
    background-color: rgba(255,255,255,0.7);
    display: block;
    bottom: auto;
    left: auto;
    min-width: 100%;
    overflow: visible;
    padding-right: 2rem;
    position: relative;
    right: auto;
    top: auto;
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    -ms-transition: background-color 0.25s;
    transition: background-color 0.25s;
    z-index: 1;
  }
  .coastal-fertility .app-header__nav form.search {
    display: none;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    float: right;
    margin: 0;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li a {
    background-color: transparent;
    border-bottom: none;
    color: #013d76;
    padding: 0.75rem 0.7rem;
    font-size: 1rem;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li a:hover {
    background-color: #013d76;
    color: #fff;
    text-decoration: none;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li.menu-item-has-children a:before {
    display: none;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul {
    position: absolute;
    left: 0;
    min-width: 220px;
    top: 100%;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li a {
    background-color: #95b762;
    border-bottom: 1px solid #839c5c;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li a:hover {
    background-color: #839c5c;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li ul li a {
    background-color: #95b762;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li.menu-item-has-children > a {
    padding-right: 2em;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li.menu-item-has-children > a:before {
    background-color: transparent;
    content: '\F105';
    right: 0.75em;
    display: block;
    padding: 0;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li.menu-item-has-children:hover > ul {
    display: block;
  }
  .coastal-fertility .app-header__nav ul.app-header__nav-menu li ul li.menu-item-has-children a:before {
    display: block;
  }
}
.coastal-fertility .app-content {
  background: -webkit-linear-gradient(top, rgba(255,255,255,0.67) 0, rgba(255,255,255,0.67) 1%, #fff 130px);
  background: -moz-linear-gradient(top, rgba(255,255,255,0.67) 0, rgba(255,255,255,0.67) 1%, #fff 130px);
  background: -o-linear-gradient(top, rgba(255,255,255,0.67) 0, rgba(255,255,255,0.67) 1%, #fff 130px);
  background: -ms-linear-gradient(top, rgba(255,255,255,0.67) 0, rgba(255,255,255,0.67) 1%, #fff 130px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.67) 0, rgba(255,255,255,0.67) 1%, #fff 130px);
  margin: 0 auto;
  padding: 1em;
  max-width: 950px;
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility .app-content {
    margin-top: -130px;
    padding: 2.75em;
  }
}
@media screen and (min-width: 75em) {
  .coastal-fertility .app-content {
    margin-top: -460px;
    padding: 2.75em;
  }
}
@media print, screen and (min-width: 64em) {
  .coastal-fertility body.home .app-content {
    margin-top: 0;
  }
}
@media screen and (min-width: 75em) {
  .coastal-fertility body.home .app-content {
    background-image: url("/wp-content/themes/coastal-fertility-2017/img/paper-texture.png");
    padding: 1rem;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
}
.coastal-fertility form.search {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding: 0.5em 2.5rem 0.5em 0;
}
.coastal-fertility form.search input[type=text] {
  border: 1px solid #b8cf96;
  margin-bottom: 0;
  width: 260px;
}
.coastal-fertility form.search .button {
  background-color: #b8cf96;
  border: 1px solid #b8cf96;
  font-weight: 700;
  margin-bottom: 0;
  padding: 0 1.5em;
}
.acacia-custom-header {
  cursor: default;
}
.acacia-custom-header header#masthead {
  height: 216px;
  padding-top: 20px;
}
.acacia-custom-header header#masthead.site-header {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  position: relative;
  border-bottom: 1px solid #e4e4e4;
}
.acacia-custom-header header#masthead .header-top {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  color: #fff;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0;
}
.acacia-custom-header header#masthead .header-top .container {
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  width: unset;
}
.acacia-custom-header header#masthead .header-top .container .site-branding.logo-text {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: left;
  margin: 4px 0 0;
  max-width: 300px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.acacia-custom-header header#masthead .header-top .container .site-branding.logo-text .site-logo {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  width: 200px;
}
.acacia-custom-header header#masthead .header-top .container .site-branding.logo-text .site-logo .custom-logo-link {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  line-height: 0;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  text-decoration: none;
  outline: none;
  color: #2a99e8;
}
.acacia-custom-header header#masthead .header-top .container .site-branding.logo-text .site-logo .custom-logo-link img {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  line-height: 0;
  color: #2a99e8;
  width: 768px;
  aspect-ratio: auto 768/436;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  border: 0;
  height: auto;
  max-width: 100%;
}
.acacia-custom-header header#masthead .header-top .container .right-panel {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: right;
}
.acacia-custom-header header#masthead .header-top .container .right-panel nav#top-navigation {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  float: left;
  margin-top: 18px;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  border-left: 1px solid #f2f2f2;
  padding-left: 19px;
  padding-top: 16px;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks li {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  color: #fff;
  list-style: none;
  font-size: 13px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: left;
  margin-right: 7px;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks li a {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  font-size: 13px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  text-decoration: none;
  outline: none;
  background: #d0d0d0;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  display: block;
  line-height: 24px;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks li a:hover {
  background: #000;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks li a svg {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  color: #fff;
  text-align: center;
  line-height: 24px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: inline-block;
  font-size: inherit;
  height: 1em;
  vertical-align: -0.125em;
  width: 1em;
  overflow: visible;
}
.acacia-custom-header header#masthead .header-top .container .right-panel ul.social-networks li a svg path {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-size: inherit;
  fill: currentcolor;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.acacia-custom-header header#masthead .header-bottom {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  background: #2a99e8;
  background-color: #2a99e8;
}
.acacia-custom-header header#masthead .header-bottom .container {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  width: unset;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  float: left;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #777;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  margin: 12px 33px 0 0;
  padding-left: 0;
  font-weight: 700;
  display: block;
  margin-top: 0;
  font-size: 15px;
  line-height: 18px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li .btn-donate {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  outline: none;
  display: block;
  text-decoration: none;
  float: right;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 1px;
  background: #2a99e8;
  border-radius: 5px;
  margin: 0;
  border: 0;
  padding: 14px 15px 15px;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li .btn-donate:hover {
  background: rgba(0,0,0,0);
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #777;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: left;
  position: relative;
  margin-left: 0;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item:hover {
  background: rgba(0,0,0,0.2);
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item a {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  outline: none;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 14px 15px 15px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #777;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  padding-left: 0;
  font-weight: 700;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  background: #fff;
  width: 230px;
  margin: 0;
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 18px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: '';
  position: absolute;
  top: -10px;
  left: 15px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #777;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  position: relative;
  margin: 0;
  display: block;
  float: none;
  margin-left: 0;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item:hover {
  background: inherit;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item:hover a {
  color: #2a99e8;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item:hover ul.sub-menu li a {
  color: #666;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item:hover ul.sub-menu li:hover a {
  color: #2a99e8;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item ul.sub-menu li.menu-item a {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-family: Open Sans;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  outline: none;
  text-decoration: none;
  color: #666;
  display: block;
  border-bottom: 1px solid #e3e3e3;
  padding: 14px 15px 15px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item:hover ul.sub-menu {
  display: block;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item:hover ul.sub-menu ul.sub-menu {
  display: none;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item:hover ul.sub-menu li:hover ul.sub-menu {
  display: block;
  margin-left: 230px;
  margin-top: -48px;
}
.acacia-custom-header header#masthead .header-bottom .container nav#site-navigation .menu-main-menu-container ul#primary-menu li.menu-item:hover ul.sub-menu li:hover ul.sub-menu:before {
  width: 0;
  height: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
.acacia-custom-header header#masthead .header-bottom .container .search {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  position: relative;
  margin: 8px 10px 0 0;
  float: right;
}
.acacia-custom-header header#masthead .header-bottom .container .search button.search-toggle-btn {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  font: inherit;
  margin: 0;
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  line-height: 22px;
  font-weight: 700;
  font-family: Open Sans;
  width: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}
.acacia-custom-header header#masthead .header-bottom .container .search button.search-toggle-btn:active .form-holder {
  display: block;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  position: absolute;
  right: 0;
  width: 350px;
  background: #fff;
  padding: 5px;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  top: 37px;
  display: block;
  z-index: 10000;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder form.search-form {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  background: #f4f4f4;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  margin: 0;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder form.search-form i.fa {
  font-size: 18px;
  line-height: 22px;
  color: #d0d0d0;
  margin: 10px 0 0 25px;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder form.search-form label {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: left;
  width: 85%;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder form.search-form label .screen-reader-text {
  font: 18px/28px 'Open Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #777;
  font-weight: 500;
  font-style: normal;
  font-family: Open Sans;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.acacia-custom-header header#masthead .header-bottom .container .search .form-holder form.search-form label input[type="search"] {
  -webkit-text-size-adjust: 100%;
  font: inherit;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-family: Open Sans;
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  color: #666;
  border-radius: 0;
  padding: 10px;
  background: none;
  border: 0;
  width: 100%;
}
.srm-custom-header header.et-l.et-l--header {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  display: block;
}
.srm-custom-header header.et-l.et-l--header div#backtotop {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: relative;
  padding: 4% 0;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #f1f1f1 !important;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  margin: auto;
  position: relative;
  padding: 2% 0;
  max-width: 1920px;
  width: 90%;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  -ms-animation-duration: 0.2s;
  animation-duration: 0.2s;
  position: relative;
  -webkit-transition: -webkit-transform 300ms ease 0ms, color 300ms ease 0ms, background-color 300ms ease 0ms, letter-spacing 300ms ease 0ms;
  -moz-transition: -moz-transform 300ms ease 0ms, color 300ms ease 0ms, background-color 300ms ease 0ms, letter-spacing 300ms ease 0ms;
  -o-transition: -o-transform 300ms ease 0ms, color 300ms ease 0ms, background-color 300ms ease 0ms, letter-spacing 300ms ease 0ms;
  -ms-transition: -ms-transform 300ms ease 0ms, color 300ms ease 0ms, background-color 300ms ease 0ms, letter-spacing 300ms ease 0ms;
  transition: transform 300ms ease 0ms, color 300ms ease 0ms, background-color 300ms ease 0ms, letter-spacing 300ms ease 0ms;
  width: 11.11%;
  vertical-align: middle;
  display: inline-block;
  font-size: 0;
  margin-bottom: 0;
  text-align: center;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper.left {
  text-align: left;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper.right {
  text-align: right;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper i.fa {
  margin-right: 3px;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.7em !important;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid;
  -webkit-transition-property: all !important;
  -moz-transition-property: all !important;
  -o-transition-property: all !important;
  -ms-transition-property: all !important;
  transition-property: all !important;
  position: relative;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  display: inline-block;
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  color: #4d2f47 !important;
  border-width: 0px !important;
  border-radius: 0px;
  letter-spacing: 0px;
  font-size: 13px;
  background-color: RGBA(0, 0, 0, 0);
  white-space: nowrap;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper a.et_pb_button {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.7em !important;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid;
  -webkit-transition-property: all !important;
  -moz-transition-property: all !important;
  -o-transition-property: all !important;
  -ms-transition-property: all !important;
  transition-property: all !important;
  position: relative;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  display: inline-block;
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  color: #4d2f47 !important;
  border-width: 0px !important;
  border-radius: 0px;
  letter-spacing: 0px;
  font-size: 13px;
  background-color: RGBA(0, 0, 0, 0);
  white-space: normal;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_button_module_wrapper a.et_pb_button:hover {
  color: #fff !important;
  letter-spacing: 0px !important;
  background-image: initial;
  background-color: #7ea7ac;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_module {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 23px;
  margin-bottom: 0 !important;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  -ms-animation-duration: 0.2s;
  animation-duration: 0.2s;
  width: 11.11%;
  vertical-align: middle;
  display: inline-block;
  font-size: 0;
}
.srm-custom-header header.et-l.et-l--header div#backtotop .et_pb_row .et_pb_module.et_pb_divider_hidden {
  width: unset;
  max-width: 11.11%;
  min-width: 8.5%;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  padding: 4% 0;
  padding-bottom: 0 !important;
  z-index: 87;
  position: relative;
  padding-top: 0px;
  background-color: rgba(0,0,0,0) !important;
  -webkit-transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
  -moz-transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
  -o-transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
  -ms-transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
  transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  width: 80%;
  margin: auto;
  padding: 2% 0;
  position: relative;
  max-width: 1920px;
  background-color: rgba(0,0,0,0);
  overflow-x: visible;
  overflow-y: visible;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-bottom: 0 !important;
  z-index: 3;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_1_5.et_pb_column_1_tb_header.logo-column.et_pb_css_mix_blend_mode_passthrough.et_pb_row_sticky {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  float: left;
  position: relative;
  z-index: 2;
  min-height: 1px;
  mix-blend-mode: unset !important;
  width: 13% !important;
  margin-right: 0;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_1_5.et_pb_column_1_tb_header.logo-column.et_pb_css_mix_blend_mode_passthrough.et_pb_row_sticky .et_pb_module {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  line-height: 0;
  margin-bottom: 0 !important;
  display: inherit;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  -ms-animation-duration: 0.2s;
  animation-duration: 0.2s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  -webkit-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -moz-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -o-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -ms-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  width: 100%;
  margin-left: 0px !important;
  margin-right: auto !important;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_1_5.et_pb_column_1_tb_header.logo-column.et_pb_css_mix_blend_mode_passthrough.et_pb_row_sticky .et_pb_module a {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
  color: #7ea7ac;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_1_5.et_pb_column_1_tb_header.logo-column.et_pb_css_mix_blend_mode_passthrough.et_pb_row_sticky .et_pb_module a .et_pb_image_wrap {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 0;
  text-align: left;
  color: #7ea7ac;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  display: inline-block;
  position: relative;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_1_5.et_pb_column_1_tb_header.logo-column.et_pb_css_mix_blend_mode_passthrough.et_pb_row_sticky .et_pb_module a .et_pb_image_wrap img {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 0;
  text-align: left;
  color: #7ea7ac;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  max-width: 100%;
  height: auto;
  border: 0;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  position: relative;
  max-height: 60%;
  -webkit-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -moz-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -o-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  -ms-transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  transition: max-height 300ms ease 0ms, margin 300ms ease 0ms, padding 300ms ease 0ms, width 300ms ease 0ms;
  max-width: 100%;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  float: left;
  position: relative;
  min-height: 1px;
  z-index: 3;
  mix-blend-mode: unset !important;
  width: 62% !important;
  margin-right: 0;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  text-align: right;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  -ms-animation-duration: 0.2s;
  animation-duration: 0.2s;
  margin-right: 5% !important;
  z-index: 4;
  position: relative;
  -webkit-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -moz-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -o-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -ms-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  background-color: rgba(0,0,0,0);
  border-radius: 0 0 0 0;
  margin-bottom: 0;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix.hide {
  display: none;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  -webkit-box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-box-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-pack: start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  float: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  list-style: none;
  list-style-type: disc;
  margin-left: -11px;
  margin-right: -11px;
  float: none;
  line-height: 1.7em;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 !important;
  -webkit-box-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002939;
  list-style: none;
  list-style-type: disc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  line-height: 1em;
  font-size: 14px;
  padding-left: 11px;
  padding-right: 11px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin: 0;
  margin-top: 8px;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li a {
  -webkit-font-smoothing: antialiased;
  list-style: none;
  list-style-type: disc;
  line-height: 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
  display: block;
  position: relative;
  word-wrap: break-word;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 89.5%;
  letter-spacing: 1px;
  -webkit-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -moz-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -o-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -ms-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  padding-bottom: 8px;
  color: #002939 !important;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li a i.fa.fa-chevron-down {
  font-size: 10px;
  margin-left: 5px;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li:hover a {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li:hover a ul.sub-menu li a {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li ul.sub-menu {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002939;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  list-style: none;
  list-style-type: disc;
  line-height: 26px;
  position: absolute;
  z-index: 9999;
  background: #fff;
  display: none;
  border-top: 3px solid #2ea3f2;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  -webkit-transform: translateZ(0);
  width: 310px;
  padding: 20px 0;
  text-align: left;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  top: calc(100% - 1px);
  left: 0;
  background-color: #fff !important;
  border-color: #b3c851;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li ul.sub-menu li {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002939;
  list-style: none;
  list-style-type: disc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  margin: 0;
  position: relative;
  line-height: 2em;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li ul.sub-menu li:hover a {
  background-color: rgba(0,0,0,0.03);
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li ul.sub-menu li a {
  -webkit-font-smoothing: antialiased;
  list-style: none;
  list-style-type: disc;
  line-height: 2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
  display: block;
  position: relative;
  word-wrap: break-word;
  padding: 6px 20px;
  width: 280px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 89.5%;
  color: #002939 !important;
  letter-spacing: 1px;
  -webkit-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -moz-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -o-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  -ms-transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  transition: color 300ms ease 0ms, margin 300ms ease 0ms;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap .et_pb_menu__menu nav.et-menu-nav ul.et-menu li:hover ul.sub-menu {
  display: block;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu_inner_container.clearfix .et_pb_menu__wrap button.search-button {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 89.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: normal;
  text-transform: none;
  -webkit-appearance: button;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  margin: 0 11px;
  font-family: ETmodules;
  font-size: 17px;
  background: 0 0;
  border: 0;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #002939;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  position: absolute;
  -webkit-box-pack: stretch;
  -moz-box-pack: stretch;
  -o-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  -webkit-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -moz-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -o-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -ms-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  display: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  padding-top: 0px;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container.display {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -moz-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -o-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  -ms-animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: fadeOutTop 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container .et_pb_menu__search {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container .et_pb_menu__search form {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2em;
  color: #002939;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GandhiSans-Regular", Source sans pro, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 89.5%;
  -webkit-text-size-adjust: 89.9%;
  vertical-align: baseline;
  background: 0 0;
  -webkit-box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container .et_pb_menu__search form input {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 89.9%;
  font-family: inherit;
  margin: 0;
  line-height: normal;
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0;
  width: 100%;
  color: #333;
  background: 0 0;
  font-size: 14px;
}
.srm-custom-header header.et-l.et-l--header div#custom-nav-menu .et_pb_row .et_pb_column.et_pb_column_3_5.et_pb_column_2_tb_header.menu-column.et_pb_css_mix_blend_mode_passthrough.et_pb_column--with-menu .et_pb_module.et_pb_menu.et_pb_menu_0_tb_header.et_pb_bg_layout_light.et_pb_text_align_right.et_dropdown_animation_fade.et_pb_menu--without-logo.et_pb_menu--style-left_aligned .et_pb_menu__search-container .et_pb_menu__search button {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 89.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: normal;
  text-transform: none;
  -webkit-appearance: button;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  margin: 0 11px;
  font-size: 22px;
  background: 0 0;
  border: 0;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #002939;
  height: 30px;
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
}
.gateway-custom-header {
  position: relative;
  z-index: 0;
}
.gateway-custom-header #rowTop.full.sticky-top-nav {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.48;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  top: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 0;
  background: #fff !important;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  height: 106px;
  position: relative;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.48;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 0 !important;
  width: 80%;
  position: relative;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid .logo {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.48;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: fit-content;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid .logo a {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.48;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: 0 0;
  text-decoration: none;
  color: #00bbf2;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid .logo a img {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.48;
  color: #00bbf2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  border: none;
  outline: 0;
  display: block;
  height: auto;
  max-width: 300px;
  position: relative;
  max-height: 75px;
  margin: 0 0 20px;
  margin-top: 10px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.48;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 70%;
  float: left;
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px 0;
  margin-left: 30%;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 3px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.clickable {
  cursor: pointer;
  position: relative;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.clickable:hover a .fad.fa-hexagon:after {
  text-shadow: -1px 0 #06c8ff, 0 1px #06c8ff, 1px 0 #06c8ff, 0 -1px #06c8ff;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.clickable:hover a .fa-stack-2x:before {
  color: #06c8ff;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.social {
  margin-left: 5px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: 0 0;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: #00bbf2;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a.no-click {
  pointer-events: none;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack {
  margin-top: 10px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fa-stack-1x {
  font-size: 65%;
  margin-top: -6px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fa-stack-1x.fa-phone {
  font-size: 55%;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fa-stack-1x.fa-envelope {
  font-size: 75%;
  margin-left: 0.5px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fa-stack-2x {
  font-size: 40px;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fa-stack-2x:before {
  color: #006581;
  font-size: 48px;
  margin-top: -4px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li a .fa-stack .fad.fa-hexagon:after {
  color: #fff;
  text-shadow: -1px 0 #006581, 0 1px #006581, 1px 0 #006581, 0 -1px #006581;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.portal-section {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #00bbf2;
  padding: 10px 10px;
  margin-left: 20px !important;
  text-align: center;
  top: 10px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  margin: 0 3px;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.portal-section:hover {
  background: #06c8ff;
}
.gateway-custom-header #rowTop.full.sticky-top-nav .container-fluid #toplinks.full ul li.portal-section .text {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
  margin: 0 !important;
  color: #fff !important;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-size: 20px;
}
.front-range-custom-header {
  height: 120px;
}
.front-range-custom-header .fusion-header {
  -webkit-text-size-adjust: 100%;
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  position: fixed;
  z-index: 210;
  max-width: 100%;
  width: 100%;
  -webkit-box-shadow: rgba(0,0,0,0.118) 0 1px 3px;
  box-shadow: rgba(0,0,0,0.118) 0 1px 3px;
  border: none;
  background-image: none;
  background-color: #fff;
  top: 0px;
  overflow: visible;
}
.front-range-custom-header .fusion-header .fusion-row {
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  zoom: 1;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 1200px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-logo {
  -webkit-text-size-adjust: 100%;
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  max-width: 100%;
  zoom: 1;
  margin: 31px 0px 31px 0px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-logo a.fusion-logo-link {
  -webkit-text-size-adjust: 100%;
t
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  color: #3d5278;
  display: block;
  max-width: 100%;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-logo a.fusion-logo-link img {
  -webkit-text-size-adjust: 100%;
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #3d5278;
  aspect-ratio: auto 276/58;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-style: none;
  vertical-align: top;
  max-width: 100%;
  width: auto;
  max-height: 58px;
  height: auto;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu {
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: right;
  position: relative;
  z-index: 200;
  overflow: visible;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search {
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  visibility: visible;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 625.047px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form {
  font: 13px/20px PTSansRegular, Arial, Helvetica, sans-serif;
  font-family: Montserrat;
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-style: none;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  -ms-box-flex: 2;
  box-flex: 2;
  -webkit-flex-grow: 2;
  flex-grow: 2;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form .fusion-search-form-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form .fusion-search-form-content .fusion-search-field {
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form .fusion-search-form-content .fusion-search-field input {
  visibility: visible;
  vertical-align: middle;
  float: none;
  -webkit-appearance: none;
  display: block;
  border: 1px solid #d2d2d2;
  padding: 8px 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
  font-size: 16px;
  color: #9ea0a4;
  border-width: 1px 1px 1px 1px;
  border-color: #e2e2e2;
  border-radius: 6px;
  padding-left: 50px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form .fusion-search-form-content .fusion-search-button {
  font: 13px/20px PTSansRegular, Arial, Helvetica, sans-serif;
  font-family: Montserrat;
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search form .fusion-search-form-content .fusion-search-button .fusion-search-submit {
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  outline: 0;
  background: #000;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  text-indent: 0;
  cursor: pointer;
  font-family: icomoon;
  font-weight: 400;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  width: 50px;
  line-height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #9ea0a4;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu .fusion-overlay-search .fusion-search-spacer {
  width: calc((50px) * 0.4);
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav {
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav.display-search {
  -webkit-transform: translate(-50%, -150%);
  -moz-transform: translate(-50%, -150%);
  -o-transform: translate(-50%, -150%);
  -ms-transform: translate(-50%, -150%);
  transform: translate(-50%, -150%);
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item {
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4e57;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding-right: 35px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item:hover {
  overflow: visible;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item a {
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  border-color: transparent;
  font-weight: 200;
  letter-spacing: 0px;
  font-style: normal;
  color: #333;
  height: 120px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 15px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item a:hover {
  color: #f58034;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item a .fusion-caret {
  margin-left: 9px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item ul.sub-menu {
  font-size: 16px;
  color: #4a4e57;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 200px;
  background-color: #efefef;
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  line-height: 1.8;
  -webkit-box-shadow: 1px 1px 30px rgba(0,0,0,0.06);
  box-shadow: 1px 1px 30px rgba(0,0,0,0.06);
  visibility: visible;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item ul.sub-menu li {
  font-size: 16px;
  color: #4a4e57;
  list-style: none;
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  line-height: 1.8;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  float: none;
  margin: 0;
  padding: 0;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item ul.sub-menu li a {
  list-style: none;
  visibility: visible;
  text-decoration: none;
  display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0;
  padding: 7px 20px;
  text-indent: 0;
  height: auto;
  letter-spacing: 0px;
  font-style: normal;
  line-height: 1.8;
  font-weight: 400;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #212934;
  font-size: 14px;
  border-bottom: none;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.menu-item ul.sub-menu li a:hover {
  background-color: #ddd;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.fusion-custom-menu-item a.fusion-main-menu-icon {
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: 400;
  letter-spacing: 0px;
  font-style: normal;
  cursor: pointer;
  color: #333;
  height: 120px;
  border-color: transparent;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
}
.front-range-custom-header .fusion-header .fusion-row .fusion-main-menu ul#menu-main-nav li.fusion-custom-menu-item a.fusion-main-menu-icon:hover {
  color: #f58034;
}
.yosemite-custom-header {
  height: 200px;
}
.yosemite-custom-header header.fusion-header-wrapper {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1040;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #789e90;
  font-size: 12px;
  color: #fff;
  border-bottom-color: #e5e5e5;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  zoom: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1100px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: left;
  margin-right: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  border-bottom-color: #e5e5e5;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 10px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header .fusion-social-networks {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: 3px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header .fusion-social-networks .fusion-social-networks-wrapper {
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 -10px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header .fusion-social-networks .fusion-social-networks-wrapper a.fusion-social-network-icon {
  letter-spacing: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-property: color, background-color, border-color;
  -moz-transition-property: color, background-color, border-color;
  -o-transition-property: color, background-color, border-color;
  -ms-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  transition-timing-function: linear;
  cursor: pointer;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin: 0 11px 10px;
  text-decoration: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 16px;
  color: #fffcfc;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header .fusion-social-networks .fusion-social-networks-wrapper a.fusion-social-network-icon i.fab {
  font-size: 16px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignleft .fusion-social-links-header .fusion-social-networks .fusion-social-networks-wrapper a.fusion-social-network-icon i.fab .fa-instagram {
  height: 16px;
  width: 16px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignright {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: right;
  margin-left: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignright .fusion-contact-info {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  letter-spacing: 0px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 44px;
  font-size: 15px;
  font-weight: bold;
  float: right;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignright .fusion-contact-info .fusion-header-separator {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  letter-spacing: 0px;
  color: #fff;
  line-height: 44px;
  font-size: 15px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 6px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-secondary-header .fusion-row .fusion-alignright .fusion-contact-info a {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  letter-spacing: 0px;
  line-height: 44px;
  font-size: 15px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-transition-property: color, background-color, border-color;
  -moz-transition-property: color, background-color, border-color;
  -o-transition-property: color, background-color, border-color;
  -ms-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  transition-timing-function: linear;
  color: #fff;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  background-color: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  border-bottom: 1px solid transparent;
  border-bottom-color: #e5e5e5;
  overflow: visible;
  top: 0px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  zoom: 1;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1100px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row .fusion-logo {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  max-width: 100%;
  zoom: 1;
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row .fusion-logo a.fusion-logo-link {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-transition-property: color, background-color, border-color;
  -moz-transition-property: color, background-color, border-color;
  -o-transition-property: color, background-color, border-color;
  -ms-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  transition-timing-function: linear;
  color: #629383;
  display: block;
  max-width: 100%;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu {
  -webkit-text-size-adjust: 100%;
  font: 13px/20px PTSansRegular, Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 15px;
  color: #2b2b2b;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  position: relative;
  z-index: 200;
  display: block;
  padding-inline-start: 0px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item {
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 15px;
  color: #2b2b2b;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  padding-right: 35px;
  overflow: hidden;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item:hover {
  overflow: visible;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item a.fusion-bar-highlight {
  -webkit-text-size-adjust: 100%;
  list-style: none;
  text-decoration: none;
  -webkit-transition-property: color, background-color, border-color;
  -moz-transition-property: color, background-color, border-color;
  -o-transition-property: color, background-color, border-color;
  -ms-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  transition-timing-function: linear;
  display: block;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0px;
  border-top: 3px solid transparent;
  height: 49px;
  line-height: 46px;
  color: #333;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item a.fusion-bar-highlight.selected,
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item a.fusion-bar-highlight:hover {
  color: #789e90;
  border-color: #789e90;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item ul.sub-menu {
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
  color: #2b2b2b;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  visibility: visible;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  letter-spacing: 0px;
  line-height: 1.5;
  background-color: #f2efef;
  width: 200px;
  border-top: 3px solid #789e90;
  font-family: "Open Sans";
  font-weight: 400;
  -webkit-box-shadow: 1px 1px 30px rgba(0,0,0,0.06);
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item ul.sub-menu li.menu-item {
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
  color: #2b2b2b;
  list-style: none;
  letter-spacing: 0px;
  line-height: 1.5;
  font-family: "Open Sans";
  font-weight: 400;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  float: none;
  margin: 0;
  padding: 0;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item ul.sub-menu li.menu-item a.fusion-bar-highlight {
  -webkit-text-size-adjust: 100%;
  list-style: none;
  visibility: visible;
  text-decoration: none;
  display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0;
  padding: 7px 20px;
  text-indent: 0;
  height: auto;
  -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
  -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
  -o-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
  -ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
  letter-spacing: 0px;
  line-height: 1.5;
  border-bottom: 1px solid #dcdadb;
  padding-top: 7px;
  padding-bottom: 7px;
  color: #333;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13px;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item ul.sub-menu li.menu-item a.fusion-bar-highlight:hover {
  background-color: #f8f8f8;
}
.yosemite-custom-header header.fusion-header-wrapper .fusion-header-v3 .fusion-header .fusion-row ul.fusion-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu {
  -webkit-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font: 13px/20px PTSansRegular, Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #2b2b2b;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  visibility: visible;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  letter-spacing: 0px;
  line-height: 1.5;
  background-color: #f2efef;
  width: 200px;
  border-top: 3px solid #789e90;
  font-family: "Open Sans";
  font-weight: 400;
  -webkit-box-shadow: 1px 1px 30px rgba(0,0,0,0.06);
  top: -3px;
  left: 200px;
}
.mpg-custom-header {
  height: 100px;
  background: #16486d;
}
.mpg-custom-header header#header {
  height: 100%;
}
.mpg-custom-header header#header .header-container {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.mpg-custom-header header#header .header-container .logo {
  margin-left: 40px;
}
.mpg-custom-header header#header .header-container .logo a img {
  height: 76px;
  width: 184px;
}
.mpg-custom-header header#header .header-container .sub-header {
  margin-right: 40px;
}
.mpg-custom-header header#header .header-container .sub-header h4 {
  color: #fff;
}
.quince-custom-header {
  height: 140px;
}
.quince-custom-header .desktop-navigation {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: calc(100vw - var(--scroll-width));
  padding-top: 3px;
  z-index: 1002;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: 0.3s background-color ease, 0.3s backgroud, 0.3s border-bottom-color, 0.3s border-bottom-width;
  -moz-transition: 0.3s background-color ease, 0.3s backgroud, 0.3s border-bottom-color, 0.3s border-bottom-width;
  -o-transition: 0.3s background-color ease, 0.3s backgroud, 0.3s border-bottom-color, 0.3s border-bottom-width;
  -ms-transition: 0.3s background-color ease, 0.3s backgroud, 0.3s border-bottom-color, 0.3s border-bottom-width;
  transition: 0.3s background-color ease, 0.3s backgroud, 0.3s border-bottom-color, 0.3s border-bottom-width;
  border-bottom: 3px solid transparent;
  background-color: #fff;
  border-color: #48200d;
  position: fixed;
  top: 0;
}
.quince-custom-header .desktop-navigation nav {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.quince-custom-header .desktop-navigation nav .row {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.quince-custom-header .desktop-navigation nav .row .nav-left {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  width: 38%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.quince-custom-header .desktop-navigation nav .row .nav-right {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  width: 38%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  clear: both;
  width: auto;
  text-align: center;
  margin: 0;
  height: 100%;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  list-style-type: none;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 15px;
  height: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li a,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li a {
  list-style-type: none;
  text-align: left;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  display: block;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #48200d;
  text-shadow: 2px 1px rgba(0,0,0,0);
  white-space: nowrap;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li a:hover,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li a:hover {
  color: #eece6c;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  list-style-type: none;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 15px;
  height: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  position: relative;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children:hover ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children:hover ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper:hover ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper:hover ul.sub-menu {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
  pointer-events: all;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children a.sub-menu-title::after,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children a.sub-menu-title::after,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper a.sub-menu-title::after,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper a.sub-menu-title::after {
  padding-left: 8px;
  content: "\F0D7";
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  text-rendering: auto;
  line-height: 1;
  font-variant: normal;
  color: inherit;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  text-align: left;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  height: auto;
  width: 240px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  padding: 0;
  display: none;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children ul.sub-menu li,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children ul.sub-menu li,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  list-style-type: none;
  pointer-events: none;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  height: auto;
  width: 100%;
  padding: 0;
  margin: 0;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children ul.sub-menu li a,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children ul.sub-menu li a,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li a,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li a {
  list-style-type: none;
  pointer-events: all;
  margin: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  font-family: sans-serif;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  text-shadow: 2px 1px rgba(0,0,0,0);
  color: #49200d;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 10px !important;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  line-height: 1.5;
  font-weight: 400;
  font-size: 15px;
}
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.menu-item-has-children ul.sub-menu li a:hover,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.menu-item-has-children ul.sub-menu li a:hover,
.quince-custom-header .desktop-navigation nav .row .nav-right ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li a:hover,
.quince-custom-header .desktop-navigation nav .row .nav-left ul#menu-main-menu li.mega-menu-wrapper ul.sub-menu li a:hover {
  color: #eece6c;
  background-color: #f7f7f7;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  list-style-type: none;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 15px;
  height: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  text-align: left;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  padding: 0;
  height: auto;
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 35px;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0 auto !important;
  display: none;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  background-color: #fff !important;
  max-width: 100%;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu li.has-children,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu li.has-children {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
  list-style-type: none;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 10px !important;
  display: block;
  padding: 0;
  margin: 0;
  pointer-events: all !important;
  margin-left: 0 !important;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu li:first-child,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu li:first-child {
  margin-left: 0 !important;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu li:last-child,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu li:last-child {
  margin-right: 0 !important;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu li a.sub-menu-title,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu li a.sub-menu-title {
  list-style-type: none;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Montserrat;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  text-shadow: 2px 1px rgba(0,0,0,0);
  pointer-events: all !important;
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 19.2px;
  text-align: left;
  margin-bottom: 15px;
  padding-bottom: 10px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #49200d !important;
  border-bottom: 2px solid #e0e0df;
  background-color: transparent;
}
.quince-custom-header .desktop-navigation nav .row .nav-right .mega-menu-wrapper ul.sub-menu li ul.sub-menu,
.quince-custom-header .desktop-navigation nav .row .nav-left .mega-menu-wrapper ul.sub-menu li ul.sub-menu {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  height: 100%;
  margin: 0;
  padding: 0;
  pointer-events: all !important;
  display: block;
  position: static;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  margin-bottom: 40px;
  background-color: transparent;
  max-width: 350px;
}
.quince-custom-header .desktop-navigation nav .row .logo {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 80%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 24%;
}
.quince-custom-header .desktop-navigation nav .row .logo aside {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.quince-custom-header .desktop-navigation nav .row .logo aside .textwidget {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.quince-custom-header .desktop-navigation nav .row .logo aside .textwidget div#logo {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #49200d;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.quince-custom-header .desktop-navigation nav .row .logo aside .textwidget div#logo a {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: #000;
}
.quince-custom-header .desktop-navigation nav .row .logo aside .textwidget div#logo a img {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: none;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
  color: #000;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  border: none;
  height: auto;
  display: block;
  width: auto;
  object-fit: contain;
  max-height: 140px;
  max-width: 320px;
}
.plano-custom-header {
  height: 188px;
}
.plano-custom-header header {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  line-height: 23px;
  font-weight: 500;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.plano-custom-header header .container {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  width: 80%;
  max-width: 1080px;
  margin: auto;
  position: relative;
  z-index: 99;
  text-align: center;
  height: inherit;
}
.plano-custom-header header .container .logo_container {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 0;
  height: 144px;
}
.plano-custom-header header .container .logo_container .logo_helper {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  background: transparent;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.plano-custom-header header .container .logo_container a {
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #2ea3f2;
  text-decoration: none;
}
.plano-custom-header header .container .logo_container a img {
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
  color: #2ea3f2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  background: transparent;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  float: none;
  max-height: 93%;
}
.plano-custom-header header #et-top-navigation {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  line-height: 23px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 600;
  float: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  bottom: 0;
  position: relative;
  width: 100%;
}
.plano-custom-header header #et-top-navigation nav {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  text-align: center;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 0;
  float: none;
  display: inline-block;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  text-align: center;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  line-height: 0;
  float: none;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  position: relative;
  line-height: 1em;
  word-wrap: break-word;
  display: inline-block;
  font-size: 14px;
  padding-right: 22px;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li a {
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  line-height: 1em;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #023261;
  padding-bottom: 26px;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li a:hover {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-20: #005a87;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  line-height: 1em;
  visibility: inherit;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  display: block;
  position: relative;
  color: #023261;
  padding-bottom: 26px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li a span.i.fas.fa-angle-down {
  margin-left: 5px;
  margin-top: 2px;
  font-size: 90%;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li ul.sub-menu {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1em;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  list-style: none;
  display: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: absolute;
  padding: 20px 0;
  z-index: 9999;
  width: 240px;
  background: #fff;
  border-top: 3px solid #2ea3f2;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  -webkit-transform: translateZ(0);
  text-align: left;
  border-color: #1f76b9;
  background-color: #fff;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li ul.sub-menu li {
  color: #666;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  position: relative;
  line-height: 2em;
  word-wrap: break-word;
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  margin: 0;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li ul.sub-menu li a {
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  visibility: visible;
  line-height: 2em;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  font-size: 14px;
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #023261;
  padding: 6px 20px;
  width: 200px;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li ul.sub-menu li a:hover {
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', Georgia, "Times New Roman", serif;
  font-weight: 600;
  list-style: none;
  line-height: 2em;
  visibility: inherit;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  font-size: 14px;
  background-color: rgba(0,0,0,0.03);
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #023261;
  padding: 6px 20px;
  width: 200px;
}
.plano-custom-header header #et-top-navigation nav ul#top-menu li:hover ul.sub-menu {
  display: block;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.alaska-custom-header header.site-header {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  min-height: 120px;
  border-top: 10px solid #fff;
  background: #e3ecf5;
}
.alaska-custom-header header.site-header .wrap {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}
@media (max-width: 1219px) {
  .alaska-custom-header header.site-header .wrap {
    max-width: 984px;
  }
}
.alaska-custom-header header.site-header .wrap .title-area {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: left;
  padding: 10px 0 0;
  width: 191px;
}
.alaska-custom-header header.site-header .wrap .title-area h1.site-title {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0 0 10px;
  color: #272727;
  font-family: 'equipbold', Lato, sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  display: block;
  text-indent: -9999px;
}
.alaska-custom-header header.site-header .wrap .title-area h1.site-title a {
  -webkit-text-size-adjust: 100%;
  font-family: 'equipbold', Lato, sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-indent: -9999px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  border: none;
  color: #333;
  background: url("/images/account-headers/alaska/logo.png") no-repeat left;
  float: left;
  width: 100%;
  height: 90px;
  background-size: 191px 90px;
}
.alaska-custom-header header.site-header .wrap .widget-area {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  float: right;
  width: auto;
  text-align: right;
  max-width: 800px;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  word-wrap: break-word;
  clear: both;
  color: #364f81;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  text-align: right;
  word-wrap: break-word;
  color: #364f81;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  text-align: right;
  word-wrap: break-word;
  color: #364f81;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  text-align: right;
  word-wrap: break-word;
  color: #364f81;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  clear: both;
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  background: #fff;
  float: right;
  padding: 12px;
  border-radius: 0 0 3px 3px;
  width: auto;
  margin: 0 0 18px;
  font-weight: 400;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu li {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  word-wrap: break-word;
  color: #364f81;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  list-style-type: none;
  display: inline-block;
  text-align: left;
  line-height: 0.8;
  border: none;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu li.menu-item-type-post_type {
  border-left: 1px solid #222;
  line-height: 0.8;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu li a {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 400;
  list-style-type: none;
  text-align: left;
  line-height: 0.8;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  background: 0 0;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  border: none;
  display: block;
  padding: 0 12px;
  text-transform: none;
  color: #364f81;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu li a span {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 400;
  list-style-type: none;
  text-align: left;
  line-height: 0.8;
  text-transform: none;
  color: #364f81;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.alaska-custom-header header.site-header .wrap .widget-area .widget .widget-wrap nav ul#menu-header-menu li a:hover span {
  color: #ac1f26;
}
.alaska-custom-header nav.nav-primary {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  background-color: #fff;
  clear: both;
}
.alaska-custom-header nav.nav-primary .wrap {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  line-height: 1.625;
  font-family: Lato, sans-serif;
  font-size: 18px;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 1219px) {
  .alaska-custom-header nav.nav-primary .wrap {
    max-width: 984px;
  }
}
.alaska-custom-header nav.nav-primary .wrap ul.menu {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  font-family: Lato, sans-serif;
  color: #222;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  clear: both;
  line-height: 1;
  width: 100%;
  font-size: 18px;
  text-transform: uppercase;
}
.alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item {
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  font-family: Lato, sans-serif;
  color: #222;
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  list-style-type: none;
  text-align: left;
  display: block;
  float: left;
}
.alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item a {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  list-style-type: none;
  text-align: left;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  background: 0 0;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  border: none;
  display: block;
  color: #364f81;
  padding: 20px 32px;
  font-weight: 400;
}
@media (max-width: 1219px) {
  .alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item a {
    padding: 20px 18px;
  }
}
.alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item a span {
  -webkit-text-size-adjust: 100%;
  font-family: Lato, sans-serif;
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  list-style-type: none;
  text-align: left;
  color: #364f81;
  font-weight: 400;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item:hover a {
  color: #fff;
  background: #364f81;
  text-decoration: none;
}
.alaska-custom-header nav.nav-primary .wrap ul.menu li.menu-item:hover a span {
  color: #fff;
}
.sylvan-custom-header header {
  font-family: sans-serif;
  height: 75px;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.sylvan-custom-header header .header-container-left {
  height: 100%;
  width: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.sylvan-custom-header header .header-container-left .logo-container {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 34px;
  margin-left: 106px;
  font-weight: 300;
}
.sylvan-custom-header header .header-container-left .logo-container .sub-title {
  color: #035c47;
}
.sylvan-custom-header header .header-container-left .logo-container img {
  margin-right: 15px;
  width: 39px;
  height: 39px;
}
.sylvan-custom-header header .header-container-left .menu-container {
  width: -webkit-fill-available;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu {
  list-style: none;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: -webkit-fill-available;
  -webkit-box-pack: space-evenly;
  -moz-box-pack: space-evenly;
  -o-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  justify-content: space-evenly;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item {
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item {
    padding: 0 10px;
  }
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item ul.sub-menu {
  display: none;
  text-align: center;
  list-style: none;
  position: absolute;
  z-index: 9999;
  background: #fff;
  padding-left: 0px;
  margin-left: -10px;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item ul.sub-menu li {
  height: 31px;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item ul.sub-menu li:first-child {
  margin-top: 30px;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item ul.sub-menu li a {
  padding: 0 10px;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item ul.sub-menu li:hover a {
  color: #035c47;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item:hover:not(.has-children) a {
  color: #035c47;
}
.sylvan-custom-header header .header-container-left .menu-container ul.top-menu li.menu-item.has-children:hover ul.sub-menu {
  display: block;
}
.sylvan-custom-header header .header-container-right {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-right: 15px;
}
.sylvan-custom-header header .header-container-right .menu-container {
  width: -webkit-fill-available;
}
.sylvan-custom-header header .header-container-right .menu-container ul {
  list-style: none;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: -webkit-fill-available;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.sylvan-custom-header header .header-container-right .menu-container ul li.menu-item {
  padding: 0 20px;
}
.sylvan-custom-header header .header-container-right .menu-container ul li.menu-item:hover:not(.refer-button) a {
  color: #035c47;
}
.sylvan-custom-header header .header-container-right .menu-container ul li.menu-item.refer-button {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  background-color: #035c47;
}
.sylvan-custom-header header .header-container-right .menu-container ul li.menu-item.refer-button a {
  color: #fff;
}
.vital-custom-header header {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #787878;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  z-index: 0;
  height: 136px;
}
.vital-custom-header header .header_top {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  color: #fff;
  background-color: #4575bd;
  overflow: inherit;
  height: 36px;
}
.vital-custom-header header .header_top .header_top_outer {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  display: block !important;
  height: 100%;
  position: relative;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgba(255,255,255,0.1);
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  height: 100%;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  float: right;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-align: left;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  outline: none;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap .social_wrap_inner {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: end;
  align-items: end;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap .social_wrap_inner ul {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  outline: none;
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap .social_wrap_inner ul li {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  outline: none;
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0;
  position: relative;
  vertical-align: middle;
  padding-top: 0;
  margin-left: 0;
  margin-right: 5px;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap .social_wrap_inner ul li a {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  background: transparent;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 50%;
  font-size: 14px;
  line-height: 14px;
  width: 24px;
  height: 24px;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_right .social_wrap .social_wrap_inner ul li a:hover {
  color: #999;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  padding: 0 20px 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left .meta_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left .meta_wrap span {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0 12px 0 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left .meta_wrap span i.fal {
  margin-right: 5px;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left .meta_wrap span a {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  background: transparent;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  line-height: 20px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 12px;
}
.vital-custom-header header .header_top .header_top_outer .header_top_inner .header_top_left .meta_wrap span a:hover {
  color: rgba(255,255,255,0.5);
}
.vital-custom-header header .header_mid {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  display: block;
  clear: both;
  color: #3065b5;
  background-color: #fff;
  -webkit-transition: background-color 0.1s ease-in-out;
  -moz-transition: background-color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out;
  -ms-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
  height: 100px;
}
.vital-custom-header header .header_mid .header_mid_outer {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  position: relative;
  -webkit-transition: box-shadow 0.3s ease-in-out;
  -moz-transition: box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out;
  -ms-transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  height: 100%;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .logo_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  position: relative;
  float: left;
  width: 119px;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .logo_wrap a {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  background: transparent;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  color: #3065b5;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .logo_wrap a img {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  aspect-ratio: auto 275/275;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  border: 0;
  image-rendering: auto;
  max-width: 275px;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto !important;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  display: inline-block;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
  position: relative;
  float: right;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 100%;
  position: relative;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  text-align: left;
  height: 100%;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  outline: none;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  z-index: 202;
  zoom: 1;
  position: relative;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 203;
  float: left;
  height: 100%;
  border-color: #fff;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item a {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin: 0;
  vertical-align: baseline;
  outline: none;
  background: transparent;
  text-decoration: none;
  display: block;
  z-index: 204;
  height: 100%;
  position: relative;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
  padding: 0 5px;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #222;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item a:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item a span.nav_item_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #222;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  outline: none;
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0);
  background-color: rgba(255,255,255,0);
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: none;
  list-style: none;
  width: 220px;
  padding: 10px 0 20px;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 203;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  border-color: rgba(255,255,255,0);
  -webkit-transition: opacity 0.3s ease-in-out 0.1s, margin-top 0.3s ease-in-out 0.1s;
  -moz-transition: opacity 0.3s ease-in-out 0.1s, margin-top 0.3s ease-in-out 0.1s;
  -o-transition: opacity 0.3s ease-in-out 0.1s, margin-top 0.3s ease-in-out 0.1s;
  -ms-transition: opacity 0.3s ease-in-out 0.1s, margin-top 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.1s, margin-top 0.3s ease-in-out 0.1s;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0,0,0,0.1);
  box-shadow: 0 1px 1px 1px rgba(0,0,0,0.1);
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1 {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #3065b5;
  list-style: none;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 203;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #fff;
  width: 100%;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1 a {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  vertical-align: baseline;
  outline: none;
  background: transparent;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 204;
  color: #222;
  padding: 6px 14px;
  margin: 0 10px;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1 a span.nav_item_wrap {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  visibility: visible;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  border-color: rgba(255,255,255,0);
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1 a span.nav_item_wrap span.nav_title {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  visibility: visible;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1:hover a:not(.nested) {
  background-color: rgba(62,184,215,0.1);
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu li.menu-item-depth-1:hover a:not(.nested) span.nav_item_wrap span.nav_title {
  color: #3065b5;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu.nested {
  margin-left: 220px;
  top: -10px;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu.nested li {
  width: 100%;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu.nested li:hover a {
  background-color: rgba(62,184,215,0.1);
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item ul.sub-menu.nested li:hover a span.nav_item_wrap span.nav_title {
  color: #3065b5;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item:hover {
  border-color: #3065b5;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item:hover a {
  border-bottom: solid 1px #3065b5;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item:hover span.nav_title {
  color: #3065b5;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item:hover ul.sub-menu:not(.nested) {
  display: block;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.vital-custom-header header .header_mid .header_mid_outer .header_mid_inner .mid_nav_wrap nav .menu-homemenu-container ul.mid_nav li.menu-item.menu-item-has-children.menu-item-depth-1:hover ul.sub-menu.nested {
  display: block;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.life-skills-custom-header {
  height: 59px;
}
.life-skills-custom-header header {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  z-index: 100;
}
.life-skills-custom-header .fl-builder-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.life-skills-custom-header .fl-builder-content .fl-row {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}
.life-skills-custom-header .fl-builder-content .fl-row.bg-color {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  background-color: #8fcd9b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  height: 1px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d {
  max-width: 74%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 1 2 auto;
  -ms-flex: 1 2 auto;
  flex: 1 2 auto;
  float: left;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d header {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: unset;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
  -webkit-transition: all 0.4s ease-in-out, background-position 1ms;
  -moz-transition: all 0.4s ease-in-out, background-position 1ms;
  -o-transition: all 0.4s ease-in-out, background-position 1ms;
  -ms-transition: all 0.4s ease-in-out, background-position 1ms;
  transition: all 0.4s ease-in-out, background-position 1ms;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu {
  text-align: right;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  text-align: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-box-pack: right;
  -moz-box-pack: right;
  -o-box-pack: right;
  -ms-flex-pack: right;
  -webkit-justify-content: right;
  justify-content: right;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  border: none;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li.button {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  border: 0px solid #8fcd9b;
  border-radius: 30px;
  padding: 0px 0px;
  margin-left: 9px;
  margin-right: 9px;
  background-color: #8fcd9b;
}
@media (max-width: 1130px) {
  .life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li.button {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li.button > :hover {
  background-color: #246f89;
  border: 0px solid #246f89;
  border-radius: 30px;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li.button a {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  list-style: none;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding-top: 9px;
  padding-right: 9px;
  padding-bottom: 9px;
  padding-left: 9px;
  color: #fff;
}
@media (max-width: 1130px) {
  .life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li.button a {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li a {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  list-style: none;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding-top: 9px;
  padding-right: 9px;
  padding-bottom: 9px;
  padding-left: 9px;
  color: #256e8a;
}
@media (max-width: 1130px) {
  .life-skills-custom-header .fl-builder-content .fl-row .fl-node-5b2abdb13d09d .fl-module-content .fl-menu ul#menu-primary-menu li a {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 0;
  background-color: #fff;
  border-style: solid;
  border-width: 0;
  -webkit-background-clip: border;
  -moz-background-clip: border;
  background-clip: border-box;
  border-color: #efefef;
  border-top-width: 1px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -webkit-transition: all 0.4s ease-in-out, background-position 1ms;
  -moz-transition: all 0.4s ease-in-out, background-position 1ms;
  -o-transition: all 0.4s ease-in-out, background-position 1ms;
  -ms-transition: all 0.4s ease-in-out, background-position 1ms;
  transition: all 0.4s ease-in-out, background-position 1ms;
  margin-bottom: 0;
  margin-top: 0;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap.color {
  background-color: #8fcd9b;
  border-top-width: 1px;
  border-right-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  padding: 0;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  width: 100%;
  position: relative;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-node-13ibs5tljr7n {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  min-width: 1px;
  max-width: 100%;
  width: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out, background-position 1ms;
  -moz-transition: all 0.4s ease-in-out, background-position 1ms;
  -o-transition: all 0.4s ease-in-out, background-position 1ms;
  -ms-transition: all 0.4s ease-in-out, background-position 1ms;
  transition: all 0.4s ease-in-out, background-position 1ms;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 5px;
  margin-top: 5px;
  -webkit-transition: all 0.4s ease-in-out, background-position 1ms;
  -moz-transition: all 0.4s ease-in-out, background-position 1ms;
  -o-transition: all 0.4s ease-in-out, background-position 1ms;
  -ms-transition: all 0.4s ease-in-out, background-position 1ms;
  transition: all 0.4s ease-in-out, background-position 1ms;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content > .no-left-margin {
  margin-left: 0px;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content .fl-photo {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 0;
  position: relative;
  text-align: center;
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content .fl-photo .fl-photo-content {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  line-height: 0;
  position: relative;
  max-width: 100%;
  width: 310px;
}
@media (max-width: 1130px) {
  .life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content .fl-photo .fl-photo-content {
    width: 260px;
  }
}
.life-skills-custom-header .fl-builder-content .fl-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col-content .fl-module .fl-module-content .fl-photo .fl-photo-content img {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  text-align: center;
  line-height: 0;
  color: #428bca;
  aspect-ratio: auto 10009/1542;
  border: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  display: inline;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-transition: all 0.4s ease-in-out, background-position 1ms;
  -moz-transition: all 0.4s ease-in-out, background-position 1ms;
  -o-transition: all 0.4s ease-in-out, background-position 1ms;
  -ms-transition: all 0.4s ease-in-out, background-position 1ms;
  transition: all 0.4s ease-in-out, background-position 1ms;
  max-height: 50px;
}
.affiliated-derm-custom-header {
  height: 107px;
  -webkit-text-size-adjust: 100%;
  --coblocks-spacing--0: 0;
  --coblocks-spacing--1: 0.5em;
  --coblocks-spacing--2: 1em;
  --coblocks-spacing--3: 1.5em;
  --coblocks-spacing--4: 2em;
  --coblocks-spacing--5: 2.5em;
  --coblocks-spacing--6: 3em;
  --coblocks-spacing--7: 3.5em;
  --coblocks-spacing--8: 4em;
  --coblocks-spacing--9: 4.5em;
  --coblocks-spacing--10: 7em;
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 1.5px;
  --th-color-primary-dark: #262727;
  --th-color-primary-base: #5a5b5c;
  --th-color-secondary-base: #929394;
  --th-color-secondary-light: #b2b3b4;
  --th-color-secondary-lighter: #ebecee;
  --th-color-secondary-lightest: #fafafa;
  --th-color-accent-dark: #23527c;
  --th-color-accent-base: #0da4d3;
  --th-color-accent-light: #cbeefa;
  --th-color-white: #fff;
  --th-color-red: #f00;
  --th-site-font-headings: 'Open Sans';
  --th-site-font-body: 'Open Sans';
  --font-headings: unset;
  --font-base: unset;
  --font-headings-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-base-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  --jp-carousel-primary-color: #fff;
  --jp-carousel-primary-subtle-color: #999;
  --jp-carousel-bg-color: #000;
  --jp-carousel-bg-faded-color: #222;
  --jp-carousel-border-color: #3a3a3a;
  --wp--preset--color--black: #000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #fff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, #7adcb4 0%, #00d082 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, #fcb900 0%, #ff6900 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, #eee 0%, #a9b8c3 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, #4aeadc 0%, #9778d1 20%, #cf2aba 40%, #ee2c82 60%, #fb6962 80%, #fef84c 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, #ffceec 0%, #9896f0 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, #fecda5 0%, #fe2d2d 50%, #6b003e 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, #ffcb70 0%, #c751c0 50%, #4158d0 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, #fff5cb 0%, #b6e3d4 50%, #33a7b5 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, #caf880 0%, #71ce7e 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, #020381 0%, #2874fc 100%);
  --wp--preset--duotone--dark-grayscale: url("#wp-duotone-dark-grayscale");
  --wp--preset--duotone--grayscale: url("#wp-duotone-grayscale");
  --wp--preset--duotone--purple-yellow: url("#wp-duotone-purple-yellow");
  --wp--preset--duotone--blue-red: url("#wp-duotone-blue-red");
  --wp--preset--duotone--midnight: url("#wp-duotone-midnight");
  --wp--preset--duotone--magenta-yellow: url("#wp-duotone-magenta-yellow");
  --wp--preset--duotone--purple-green: url("#wp-duotone-purple-green");
  --wp--preset--duotone--blue-orange: url("#wp-duotone-blue-orange");
  --wp--preset--font-size--small: 0.79rem;
  --wp--preset--font-size--medium: 1.125rem;
  --wp--preset--font-size--large: 1.602rem;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--font-size--normal: 0.889rem;
  --wp--preset--font-size--huge: 2.027rem;
  --wp--preset--font-size--enormous: 2.281rem;
  --wp--preset--font-size--gigantic: 3.247rem;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
}
.affiliated-derm-custom-header header #header-inner {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  line-height: 1.65;
  font-size: 14px;
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  border-bottom: 1px solid var(--th-color-secondary-lighter);
  background: rgba(255,255,255,0.98);
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.03);
  box-shadow: 0 2px 2px rgba(0,0,0,0.03);
}
.affiliated-derm-custom-header header #header-inner .site-header-inner {
  font-family: var(--th-site-font-body);
  line-height: 1.65;
  font-size: 14px;
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 1170px;
  -ms-flex: 0 1 1170px;
  flex: 0 1 1170px;
  -webkit-transition: padding-top 100ms ease-in, padding-bottom 100ms ease-in;
  -moz-transition: padding-top 100ms ease-in, padding-bottom 100ms ease-in;
  -o-transition: padding-top 100ms ease-in, padding-bottom 100ms ease-in;
  -ms-transition: padding-top 100ms ease-in, padding-bottom 100ms ease-in;
  transition: padding-top 100ms ease-in, padding-bottom 100ms ease-in;
  padding-top: 5px;
  padding-bottom: 10px;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .site-branding {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  line-height: 1.65;
  font-size: 14px;
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  width: 100%;
  text-align: left;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
@media (max-width: 1125px) {
  .affiliated-derm-custom-header header #header-inner .site-header-inner .site-branding {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .site-branding a.custom-logo-link {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  line-height: 1.65;
  font-size: 14px;
  word-wrap: break-word;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  text-decoration: none;
  color: inherit;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .site-branding a.custom-logo-link img.custom-logo {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  line-height: 1.65;
  font-size: 14px;
  word-wrap: break-word;
  text-align: left;
  color: inherit;
  aspect-ratio: auto 1005/407;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-color: currentColor;
  border-style: solid;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
  display: inline-block;
  max-height: 91px;
  width: auto;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0;
  line-height: 1.4;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}
@media (max-width: 1125px) {
  .affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  display: block;
  margin-right: 32px;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  display: inline-block;
  position: relative;
  margin-left: 3px;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item a {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
  border-radius: 2px;
  border: 1px solid transparent;
  color: var(--th-color-primary-base);
  padding: 6px 11px;
  padding-right: 1.4rem;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item:not(.menu-item-has-children) a {
  padding-right: 11px;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item:hover:not(.menu-item-has-children) a {
  border: 1px solid;
  color: #00adef;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item .arrow-icon {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  bottom: calc(50% - 0.377rem);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  pointer-events: none;
  position: absolute;
  right: 0.45rem;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item .arrow-icon .svg-icon {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  font-size: 0.702rem;
  text-transform: uppercase;
  line-height: 1.4;
  list-style: none;
  pointer-events: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  display: block;
  vertical-align: middle;
  fill: transparent;
  height: 0.75rem;
  margin: 0;
  stroke-width: 3px;
  width: 0.75rem;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item ul.sub-menu {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  left: -9999px;
  position: absolute;
  top: 100%;
  z-index: 99999;
  border-radius: 2px;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  float: left;
  font-size: 0.702rem;
  padding: 0;
  background: #0075a8;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item ul.sub-menu li.menu-item {
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  color: var(--th-color-primary-base);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  list-style: none;
  font-size: 0.702rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  position: relative;
  display: block;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item ul.sub-menu li.menu-item a {
  font-family: var(--th-site-font-body);
  word-wrap: break-word;
  list-style: none;
  font-size: 0.702rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-color: rgba(59,130,246,0.5);
  --tw-ring-inset: var(--tw-empty, /**/ /**/);
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-offset-width: 0px;
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  text-decoration: none;
  display: block;
  border-radius: 2px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: normal;
  line-height: 1.4;
  padding: 7px 11px;
  text-transform: none;
  width: 180px;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item ul.sub-menu li.menu-item a:hover {
  background-color: rgba(0,0,0,0.1);
  border: 1px solid transparent;
  color: #fff;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item-has-children:hover a {
  background: #0075a8;
  color: #fff;
  border: 1px solid transparent;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item-has-children:hover .svg-icon {
  color: #fff;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item-has-children:hover ul {
  left: 0;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item-has-children:hover ul li ul.sub-menu {
  display: none;
}
.affiliated-derm-custom-header header #header-inner .site-header-inner .main-header-links nav.main-navigation ul.nav-bar li.menu-item-has-children:hover ul li:hover ul.sub-menu {
  display: block;
  top: 0;
  left: 100%;
}
.affiliated-derm-custom-header header #header-inner #site-navigation ul ul li + li::before {
  border-top: 1px solid rgba(255,255,255,0.1);
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
}
.demo-custom-header {
  height: 153px;
}
.demo-custom-header header#header {
  -webkit-text-size-adjust: 100%;
  color: #000;
  font: 20px/1.38 "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  display: block;
  z-index: 10;
  text-align: right;
  border-bottom: 10px solid #e7f9f2;
  padding: 0 0 11px;
  background-color: #fff;
  padding-top: 12px;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 153px;
}
.demo-custom-header header#header .header-container {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
}
.demo-custom-header header#header .header-container .logo {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  float: left;
  width: 282px;
  margin: 0 20px 0 0;
}
.demo-custom-header header#header .header-container .logo a {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  background-color: transparent;
  color: #17486d;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}
.demo-custom-header header#header .header-container .logo a img {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  color: #17486d;
  aspect-ratio: auto 282/117;
  width: 282px;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
  min-height: 1px;
}
.demo-custom-header header#header .header-container .header-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.demo-custom-header header#header .header-container .header-flex .header-row {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  height: 59px;
  margin: 0;
  list-style: none;
  vertical-align: middle;
  font-size: 1.1vw;
  line-height: 1.2;
  padding: 3px 0 0;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav {
    display: inline-block;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  font-size: 1.1vw;
  line-height: 1.2;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-right: 1px solid #a2a2af;
  text-align: center;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item {
    margin: 0 23px 0 0;
    padding: 0 28px 0 0;
    border-right: none;
    text-align: unset;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item:first-child {
  margin-left: 50px;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item:first-child {
    margin-left: 0px;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.no-border {
  border-right: none;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item:before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    border-radius: 0;
    right: 0;
    left: auto;
    width: 1px;
    height: auto;
    background: #a2a2af;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -o-box-flex: 0;
    box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item:last-child:before {
  background: none;
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item a {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  font-size: 1.1vw;
  line-height: 1.2;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  color: #000;
  white-space: nowrap;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item a {
    font-size: 16px;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item a:hover {
  color: #00b4a2;
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item a i.fal {
  margin-right: 9px;
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  list-style: none;
  text-align: center;
  padding: 14px 14px 15px !important;
  background: #00d6c1;
  line-height: 24px !important;
  font-weight: 500;
  text-transform: uppercase;
  color: #17486d;
  overflow: hidden;
  position: relative !important;
  z-index: 1;
  min-width: 230px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 23px 0 0;
  margin-right: 0;
}
@media (max-width: 1352px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn {
    min-width: fit-content;
    padding: 10px 10px 10px !important;
  }
}
@media (max-width: 1100px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn {
    padding: 5px 5px 5px !important;
  }
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn a {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  text-align: center;
  line-height: 24px !important;
  text-transform: uppercase;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  padding: 4px !important;
  font-size: 1.1vw !important;
  color: #17486d;
  min-width: 175px;
  font-weight: bold;
  white-space: nowrap;
}
.demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn a:hover {
  color: #17486d;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex .header-row ul.add-nav li.menu-item.btn a {
    font-size: 16px !important;
  }
}
.demo-custom-header header#header .header-container .header-flex .menu {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  display: block;
}
.demo-custom-header header#header .header-container .header-flex nav#nav {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  display: block;
  float: right;
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
  padding: 26px 0 0;
  width: 100%;
}
.demo-custom-header header#header .header-container .header-flex nav#nav ul {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.demo-custom-header header#header .header-container .header-flex nav#nav ul li.menu-item {
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
  list-style: none;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  padding: 0;
  position: static;
  display: inline-block;
  vertical-align: top;
}
.demo-custom-header header#header .header-container .header-flex nav#nav ul li.menu-item:first-child {
  margin-left: 2vw;
}
.demo-custom-header header#header .header-container .header-flex nav#nav ul li.menu-item a {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 1.3vw;
  line-height: 28px;
  font-weight: 500;
  list-style: none;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 1000000px;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  display: block;
  text-transform: uppercase;
  color: #17486d;
  padding: 0 0 6px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
@media (min-width: 1520px) {
  .demo-custom-header header#header .header-container .header-flex nav#nav ul li.menu-item a {
    font-size: 19px;
  }
}
.demo-custom-header header#header .header-container .header-flex nav#nav ul li.menu-item a:hover {
  color: #00b4a2;
  border-color: #00d6c1;
}
.md-page-login .tos-group {
  margin-top: 30px;
}
.md-page-login .footnote {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px !important;
}
.md-page-login .forgot-password {
  font-size: 14px;
  text-align: right;
}
.md-page-login .forgot-password-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  width: 100%;
  margin-top: 5px;
}
.md-page-login .footer-button {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-page-login .md-window.accept-tos {
  max-width: calc(100% - 100px);
}
.md-page-login .md-window .window-body .footer-info {
  line-height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-page-login .md-window .window-body.tos p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  margin-bottom: 20px;
}
.md-page-login .md-window .window-body.tos .btn {
  min-width: 80px;
}
.md-page-login .md-window .window-body.tos .btn + .btn {
  margin-left: 10px;
}
.md-page-login .md-window .tos-container {
  border: 1px solid #d0d0d0;
  padding: 10px;
  margin-bottom: 20px;
  height: calc(100vh - 110px - 50px - 70px - 60px - 20px - 50px - 90px);
  overflow-y: scroll;
}
.md-page-login .md-window .tos-container article p {
  font-size: 14px;
}
.md-page-login .md-window .tos-container article p:last-child {
  margin-bottom: 0px;
}
.md-page-login .md-window .tos-container article strong {
  font-weight: 400;
}
@media (max-width: 767px) {
  .md-page-login .md-window .window-header {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .md-page-login .md-window .window-body .footer-info {
    line-height: 35px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
md-homelink {
  font-size: 14px;
}
md-homelink a {
  cursor: pointer;
  color: #fff;
}
md-homelink a:hover,
md-homelink a:focus {
  color: #fff;
}
md-homelink a i.fa {
  clear: none;
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  vertical-align: top;
  line-height: 18px;
}
md-homelink a .link {
  clear: none;
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
}
md-copyright {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.md-page-login .tos-group {
  margin-top: 30px;
}
.md-page-login .footnote {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px !important;
}
.md-page-login .forgot-password {
  font-size: 14px;
  text-align: right;
}
.md-page-login .back-link {
  color: #1da4f0 !important;
}
.md-page-registration .tos-group rmd-checkbox {
  margin-right: 5px;
  vertical-align: middle;
}
.md-page-registration .form-group select.form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: rgba(0,0,0,0.6);
}
.md-page-registration .form-group select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
.md-page-registration .form-group select.form-control[disabled],
.md-page-registration .form-group select.form-control[readonly] {
  background-color: #f2f2f2;
}
.md-page-registration .form-group select.form-control option {
  color: rgba(0,0,0,0.6);
  white-space: nowrap;
}
.md-page-registration .password-check.alert {
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
.md-page-registration .password-check.alert::before {
  display: none;
}
.md-page-registration .password-check.alert::after {
  display: none;
}
.md-page-registration ul {
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
.md-page-registration .md-form-group {
  margin-bottom: 12px;
}
.md-page-registration .window-header {
  text-align: center;
}
.md-page-registration .md-form-control-check {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .md-page-registration .footer-button {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .md-page-registration .footer-button {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5%;
  }
  .md-page-registration .footer-button .btn {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.md-page-registration .md-enterprise-link {
  font-size: 14px;
  clear: none;
  display: inline-block;
  color: #1a93d7;
  margin-bottom: 15px;
}
.md-page-registration .typeahead-demo .custom-popup-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  background-color: #f9f9f9;
}
.md-page-registration .typeahead-demo .custom-popup-wrapper .message {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  color: #868686;
}
.md-page-registration .typeahead-demo .custom-popup-wrapper .dropdown-menu {
  position: static;
  float: none;
  display: block;
  min-width: 160px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
rmd-checkbox.selected-other .checkbox .fake {
  background-color: #f09b37;
  border-color: #f6c488;
}
rmd-checkbox.inline {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
rmd-checkbox.inline + rmd-checkbox.inline {
  margin-left: 10px;
}
.control-label + rmd-checkbox.inline {
  margin-left: 20px;
}
rmd-checkbox.form-control,
rmd-checkbox.form-control[disabled],
rmd-checkbox.form-control[readonly] {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  background-color: transparent;
  padding: 0px;
  width: auto;
  line-height: 34px;
}
rmd-checkbox.form-control:focus,
rmd-checkbox.form-control[disabled]:focus,
rmd-checkbox.form-control[readonly]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
rmd-checkbox.form-control .checkbox,
rmd-checkbox.form-control[disabled] .checkbox,
rmd-checkbox.form-control[readonly] .checkbox {
  margin-top: 7px;
  margin-bottom: 7px;
}
rmd-checkbox.form-control .checkbox label,
rmd-checkbox.form-control[disabled] .checkbox label,
rmd-checkbox.form-control[readonly] .checkbox label {
  font-size: 14px;
  padding-left: 25px;
}
rmd-checkbox .checkbox {
  line-height: 20px;
  margin-top: auto;
  margin-bottom: auto;
}
rmd-checkbox .checkbox.disabled-checkbox .fake {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
rmd-checkbox .checkbox label {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
rmd-checkbox .checkbox label .fake {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 4px;
  position: absolute;
  left: 0px;
  border: 1px solid #d0d0d0;
  background: #fff;
}
rmd-checkbox .checkbox label .fake .fa-check,
rmd-checkbox .checkbox label .fake .fa-minus {
  display: none;
  width: 18px;
  text-align: center;
  line-height: 18px;
  color: #fff;
  font-size: 12px;
}
rmd-checkbox .checkbox label input {
  display: none;
}
rmd-checkbox .checkbox label input:checked + .fake {
  background-color: #1da4f0;
  border-color: #1da4f0;
}
rmd-checkbox .checkbox label input:checked + .fake .fa-check {
  display: block;
}
rmd-checkbox .checkbox label input.indeterminate:checked + .fake .fa-check {
  display: none;
}
rmd-checkbox .checkbox label input.indeterminate:checked + .fake .fa-minus {
  display: block;
}
.md-page-invitation .tos-group rmd-checkbox {
  margin-right: 5px;
  vertical-align: middle;
}
.md-page-invitation .form-group select.form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: rgba(0,0,0,0.6);
}
.md-page-invitation .form-group select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
.md-page-invitation .form-group select.form-control[disabled],
.md-page-invitation .form-group select.form-control[readonly] {
  background-color: #f2f2f2;
}
.md-page-invitation .form-group select.form-control option {
  color: rgba(0,0,0,0.6);
  white-space: nowrap;
}
.md-page-invitation .password-check.alert {
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
.md-page-invitation .password-check.alert::before {
  display: none;
}
.md-page-invitation .password-check.alert::after {
  display: none;
}
.md-page-invitation ul {
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
.md-page-invitation .md-form-group {
  margin-bottom: 12px;
}
.md-page-invitation .md-window {
  margin-bottom: 70px;
}
.md-page-invitation .window-header {
  text-align: center;
}
.md-page-invitation .md-form-control-check {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .md-page-invitation .footer-button {
    text-align: center;
  }
}
.md-page-invitation .md-enterprise-link {
  font-size: 14px;
  clear: none;
  display: inline-block;
  color: #1a93d7;
  margin-bottom: 15px;
}
.md-page-invitation .typeahead-demo .custom-popup-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  background-color: #f9f9f9;
}
.md-page-invitation .typeahead-demo .custom-popup-wrapper .message {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  color: #868686;
}
.md-page-invitation .typeahead-demo .custom-popup-wrapper .dropdown-menu {
  position: static;
  float: none;
  display: block;
  min-width: 160px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.md-page-forgot-password .customer-support {
  font-size: 14px;
  text-align: right;
}
.md-page-forgot-password .customer-support a {
  cursor: pointer;
  color: #1da4f0;
}
.md-page-forgot-password .customer-support a:hover,
.md-page-forgot-password .customer-support a:focus {
  color: #4ab6f3;
}
.md-page-forgot-password .md-window .window-text h1 {
  margin-bottom: 30px;
}
.md-page-reset-password {
  display: block;
}
.md-page-account-suspended {
  display: block;
}
.browser-update {
  height: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.browser-update .col-sm-12 .centered {
  text-align: center;
  padding: 10px;
}
.browser-update .md-window {
  max-width: 630px;
}
.browser-update .btn {
  text-align: center;
  margin-bottom: 20px;
}
.browser-update h1 {
  color: #333;
  font-size: 40px;
  font-weight: 100;
  margin: 0 0 40px 0;
  text-align: center;
}
.browser-update h4 {
  color: #868db5;
  font-size: 19px;
  font-weight: 100;
  margin: 0 0 30px 0;
  text-align: center;
}
.browser-update h6 {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}
.browser-update .browser-container {
  margin: 20px 0 10px;
  text-align: center;
}
.browser-update .browser-container a {
  display: inline-block;
  margin: 10px;
  vertical-align: text-top;
  width: 70px;
}
.browser-update .browser-container a .md-name {
  margin-top: 8px;
  text-align: center;
}
.browser-update .browser-container a .browser-img {
  background-image: url("/images/browser.png");
  -webkit-background-size: 270px;
  -moz-background-size: 270px;
  background-size: 270px;
  height: 56px;
  margin: 0 auto;
  width: 53px;
}
.browser-update .browser-container a .browser-img.chrome {
  background-position: 0 0;
}
.browser-update .browser-container a .browser-img.firefox {
  background-position: 216px 0;
}
.browser-update .browser-container a .browser-img.opera {
  background-position: 163px 0;
}
.browser-update .browser-container a .browser-img.safari {
  background-position: 107px 0;
}
.browser-update .browser-container a .browser-img.ie {
  background-position: 56px 0;
}
.browser-update .action-row {
  text-align: center;
  margin-top: 20px;
}
.browser-update .footer {
  color: #333;
  font-size: 12px;
  font-weight: 200;
  text-align: center;
  margin-top: 30px;
}
.unsubscribe {
  height: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.unsubscribe .col-sm-12 .centered {
  text-align: center;
  padding: 10px;
}
.unsubscribe .md-window {
  max-width: 630px;
}
.unsubscribe .md-window .window-text {
  margin-bottom: 20px;
}
.unsubscribe .btn {
  text-align: center;
  margin-bottom: 20px;
}
.unsubscribe h1 {
  color: #333;
  font-size: 40px;
  font-weight: 100;
  margin: 0 0 40px 0;
  text-align: center;
}
.unsubscribe h4 {
  color: #868db5;
  font-size: 19px;
  font-weight: 100;
  margin: 0 0 30px 0;
  text-align: center;
}
.unsubscribe h6 {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}
.unsubscribe .action-row {
  text-align: center;
  margin-top: 20px;
}
.unsubscribe .footer {
  text-align: center;
  margin-top: 20px;
}
.unsubscribe .footer .footnote {
  font-weight: 400;
  font-size: 14px;
}
.unsubscribe {
  height: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.unsubscribe .col-sm-12 .centered {
  text-align: center;
  padding: 10px;
}
.unsubscribe .md-window {
  max-width: 630px;
}
.unsubscribe .md-window .window-text {
  margin-bottom: 20px;
}
.unsubscribe .btn {
  text-align: center;
  margin-bottom: 20px;
}
.unsubscribe h1 {
  color: #333;
  font-size: 40px;
  font-weight: 100;
  margin: 0 0 40px 0;
  text-align: center;
}
.unsubscribe h4 {
  color: #868db5;
  font-size: 19px;
  font-weight: 100;
  margin: 0 0 30px 0;
  text-align: center;
}
.unsubscribe h6 {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}
.unsubscribe .action-row {
  text-align: center;
  margin-top: 20px;
}
.unsubscribe .footer {
  text-align: center;
  margin-top: 20px;
}
.unsubscribe .footer .footnote {
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767px) {
  body {
    --is-mobile: true;
  }
}
.md-controller-provider-directory {
  background: #fff;
}
.md-controller-provider-directory .spinner-holder {
  font-size: 50px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
}
.md-controller-provider-directory .md-btn {
  font-weight: bold;
  font-size: 14px;
}
.md-controller-provider-directory .dropdown-menu .md-text {
  font-size: 16px;
}
.md-controller-provider-directory input {
  font-size: 16px !important;
  line-height: 16px !important;
}
.md-controller-provider-directory .ui-select-container .form-control {
  font-size: 16px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .md-toolbar {
    text-align: center;
  }
  .md-controller-provider-directory md-avatar .md-avatar.xl {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    border-radius: 50%;
  }
}
.md-controller-provider-directory .date-label,
.md-controller-provider-directory .day-label {
  color: #333;
}
.md-controller-provider-directory .text2,
.md-controller-provider-directory .text1 {
  font-size: 16px;
  color: #333;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .text2,
  .md-controller-provider-directory .text1 {
    font-size: 14px;
  }
}
.md-controller-provider-directory md-scheduler-step-terms .disclaimer.text2 {
  color: #000;
}
.md-controller-provider-directory md-availability-picker .picker .timeslot .slot .time-label {
  font-size: 14px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .md-form-group {
    margin-bottom: 15px;
  }
  .md-controller-provider-directory .md-content-padding {
    padding: 5px 15px;
  }
  .md-controller-provider-directory md-availability-picker {
    overflow: auto;
  }
}
.md-controller-provider-directory .has-error .form-control {
  border-color: #da3549 !important;
}
.md-controller-provider-directory .placeholder-mobile-header {
  height: 64px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-controller-provider-directory .placeholder-mobile-header .h1 {
  font-weight: 600;
  font-size: 13px;
}
.md-controller-provider-directory .coastal-mobile-header {
  height: 64px;
  padding-top: 3px;
}
.md-controller-provider-directory .coastal-mobile-header a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-controller-provider-directory .coastal-mobile-header a img {
  height: auto;
  max-height: 64px;
  width: auto;
}
.md-controller-provider-directory .logo-container {
  background: #fff;
}
.md-controller-provider-directory .overflow-hidden {
  overflow: hidden;
  margin-bottom: 30px;
}
.md-controller-provider-directory .form-group.md-form-group.md-form-group-icon.icon-left {
  padding-left: 0px;
}
.md-controller-provider-directory .appointment-info-row {
  margin-bottom: 20px;
}
.md-controller-provider-directory .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 10px;
}
.md-controller-provider-directory .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="text"] {
  padding-left: 10px;
}
.md-controller-provider-directory textarea.md-form-control {
  font-size: 16px;
}
.md-controller-provider-directory .nav-icon .fa {
  padding-right: 10px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .nav-icon .fa.nav-icon-mobile {
    padding-right: 0px;
    margin-right: -60%;
  }
  .md-controller-provider-directory .nav-icon .fa.nav-icon-mobile-left {
    padding-right: 0px;
    margin-right: -50%;
  }
}
.md-controller-provider-directory label.control-label {
  font-size: 16px;
}
.md-controller-provider-directory .request-appointment {
  margin-top: 20px;
}
.md-controller-provider-directory .content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.md-controller-provider-directory md-public-provider-profile {
  margin-bottom: 15px;
}
.md-controller-provider-directory .row.schedule-form-row.row-no-gutters {
  margin-top: -15px;
}
.md-controller-provider-directory .title-row {
  padding-bottom: 25px;
  border-bottom: 1px solid #d0d0d0;
}
.md-controller-provider-directory .appointment-info md-public-provider-profile {
  margin-left: 0px;
}
.md-controller-provider-directory .appointment-info .title {
  display: inline;
}
.md-controller-provider-directory .h1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .h1 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .md-controller-provider-directory md-provider-organization-profile .profile-content h1 {
    font-size: 18px;
  }
}
.md-controller-provider-directory .search-icon {
  margin-top: -4px;
}
.md-controller-provider-directory .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-color: #fff;
  background-image: none;
}
.md-controller-provider-directory .providers {
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.md-controller-provider-directory .providers:last-child {
  border-bottom: none;
}
.md-controller-provider-directory .providers md-public-provider-profile {
  margin-right: 0px;
  padding-right: 10px;
  margin-top: 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0;
  -ms-flex: 1 0;
  flex: 1 0;
  min-width: 450px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .providers md-public-provider-profile {
    min-width: 100%;
    max-width: 100%;
    -webkit-box-flex: unset;
    -moz-box-flex: unset;
    -o-box-flex: unset;
    box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
@media (max-width: 1440px) {
  .md-controller-provider-directory .providers md-public-provider-profile {
    min-width: 350px;
  }
}
@media (max-width: 1199px) {
  .md-controller-provider-directory .providers md-public-provider-profile {
    min-width: 225px;
  }
}
@media (max-width: 991px) {
  .md-controller-provider-directory .providers md-public-provider-profile {
    min-width: 200px;
  }
}
.md-controller-provider-directory .providers .dates {
  margin-top: -4px;
}
.md-controller-provider-directory .select-provider {
  margin: 25px 0px;
}
.md-controller-provider-directory .results {
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.md-controller-provider-directory .schedule-form-row .text2 {
  margin-top: 8px;
}
.md-controller-provider-directory .search-btn .fa.fa-search {
  margin-right: -50px;
  margin-top: 16px;
}
.md-controller-provider-directory .search-btn input {
  background: #64cc9d;
  padding: 0 40px;
  margin-right: 5px;
  width: 140px;
  padding-right: 22px;
}
.md-controller-provider-directory .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.md-controller-provider-directory .md-btn.secondary {
  background: #64cc9d;
}
.md-controller-provider-directory .find,
.md-controller-provider-directory .appointment,
.md-controller-provider-directory .patient,
.md-controller-provider-directory .confirm {
  padding: 0px 15px;
}
.md-controller-provider-directory .nav-progress-bar {
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  font-size: 12px;
  clear: both;
  line-height: 1em;
  margin: 0 -1px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  height: 45px;
  width: 100%;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .nav-progress-bar {
    margin-left: -11px;
  }
}
.md-controller-provider-directory .nav-progress-bar .step {
  float: left;
  padding: 15px 30px 15px 40px;
  background: #ddd;
  cursor: default;
  color: #666;
  position: relative;
  width: calc(25% - 2px);
  margin: 0 1px;
}
.md-controller-provider-directory .nav-progress-bar .step:before {
  content: '';
  border-left: 23px solid #fff;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.md-controller-provider-directory .nav-progress-bar .step:after {
  content: '';
  border-left: 23px solid #ddd;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 20;
}
.md-controller-provider-directory .nav-progress-bar .step.first-step:before {
  border-left: 23px solid #64cc9d;
  left: 10px;
}
.md-controller-provider-directory .nav-progress-bar .step.last-step:after {
  background: #ddd;
  border-left: 3px solid #ddd;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .nav-progress-bar .step.last-step:after {
    border-left: 11px solid #ddd;
    height: 100%;
  }
}
.md-controller-provider-directory .nav-progress-bar .step.last-step.current:after {
  background: #64cc9d;
}
.md-controller-provider-directory .nav-progress-bar .step.current {
  background: #64cc9d;
}
.md-controller-provider-directory .nav-progress-bar .step.current:after {
  border-left-color: #64cc9d;
}
.md-controller-provider-directory .nav-progress-bar .current {
  background: #64cc9d;
  color: #fff;
  cursor: pointer;
}
.current .md-controller-provider-directory .nav-progress-bar:before {
  background: #fff;
  color: #64cc9d;
}
.md-controller-provider-directory .md-section-header {
  margin-right: -15px;
}
.md-controller-provider-directory .side1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1em;
  background: #ecf8fe;
  padding-bottom: 30px;
  overflow-y: scroll;
}
.md-controller-provider-directory .side1.default-header {
  height: calc(100vh - (76px + 45px + 60px));
}
.md-controller-provider-directory .side1.logo-header {
  height: calc(100vh - (80px + 45px + 60px));
}
.md-controller-provider-directory .side1.acacia-header {
  height: calc(100vh - (216px + 45px + 60px));
}
.md-controller-provider-directory .side1.srm-header {
  height: calc(100vh - (105.42px + 45px + 60px));
}
.md-controller-provider-directory .side1.motion-header {
  height: calc(100vh - (211px + 45px + 60px));
}
.md-controller-provider-directory .side1.coastal-header {
  height: calc(100vh - (104px + 45px + 60px));
}
.md-controller-provider-directory .side1.neuro-header {
  height: calc(100vh - (200px + 45px + 60px));
}
.md-controller-provider-directory .side1.naples-header {
  height: calc(100vh - (82px + 45px + 60px));
}
.md-controller-provider-directory .side1.sc-house-header {
  height: calc(100vh - (96px + 45px + 60px));
}
.md-controller-provider-directory .side1.covenant-header {
  height: calc(100vh - (83px + 45px + 60px));
}
.md-controller-provider-directory .side1.tristar-header {
  height: calc(100vh - (100px + 45px + 60px));
}
.md-controller-provider-directory .side1.gateway-header {
  height: calc(100vh - (106px + 45px + 60px));
}
.md-controller-provider-directory .side1.front-range-header {
  height: calc(100vh - (120px + 45px + 60px));
}
.md-controller-provider-directory .side1.yosemite-header {
  height: calc(100vh - (200px + 45px + 60px));
}
.md-controller-provider-directory .side1.mpg-header {
  height: calc(100vh - (100px + 45px + 60px));
}
.md-controller-provider-directory .side1.demo-header {
  height: calc(100vh - (153px + 45px + 60px));
}
.md-controller-provider-directory .side1.quince-header {
  height: calc(100vh - (140px + 45px + 60px));
}
.md-controller-provider-directory .side1.plano-header {
  height: calc(100vh - (189px + 45px + 60px));
}
.md-controller-provider-directory .side1.alaska-header {
  height: calc(100vh - (178px + 45px + 60px));
}
.md-controller-provider-directory .side1.sylvan-header {
  height: calc(100vh - (75px + 45px + 60px));
}
.md-controller-provider-directory .side1.affiliated-derm-header {
  height: calc(100vh - (107px + 45px + 60px));
}
.md-controller-provider-directory .side1.vital-header {
  height: calc(100vh - (136px + 45px + 60px));
}
.md-controller-provider-directory .side2 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1em;
  background: #fff;
  padding-bottom: 30px;
  overflow-y: scroll;
}
.md-controller-provider-directory .side2.default-header {
  height: calc(100vh - (76px + 45px + 60px));
}
.md-controller-provider-directory .side2.logo-header {
  height: calc(100vh - (80px + 45px + 60px));
}
.md-controller-provider-directory .side2.acacia-header {
  height: calc(100vh - (216px + 45px + 60px));
}
.md-controller-provider-directory .side2.motion-header {
  height: calc(100vh - (211px + 45px + 60px));
}
.md-controller-provider-directory .side2.coastal-header {
  height: calc(100vh - (104px + 45px + 60px));
}
.md-controller-provider-directory .side2.neuro-header {
  height: calc(100vh - (200px + 45px + 60px));
}
.md-controller-provider-directory .side2.naples-header {
  height: calc(100vh - (82px + 45px + 60px));
}
.md-controller-provider-directory .side2.sc-house-header {
  height: calc(100vh - (96px + 45px + 60px));
}
.md-controller-provider-directory .side2.covenant-header {
  height: calc(100vh - (83px + 45px + 60px));
}
.md-controller-provider-directory .side2.tristar-header {
  height: calc(100vh - (100px + 45px + 60px));
}
.md-controller-provider-directory .side2.gateway-header {
  height: calc(100vh - (106px + 45px + 60px));
}
.md-controller-provider-directory .side2.front-range-header {
  height: calc(100vh - (120px + 45px + 60px));
}
.md-controller-provider-directory .side2.yosemite-header {
  height: calc(100vh - (200px + 45px + 60px));
}
.md-controller-provider-directory .side2.mpg-header {
  height: calc(100vh - (100px + 45px + 60px));
}
.md-controller-provider-directory .side2.demo-header {
  height: calc(100vh - (153px + 45px + 60px));
}
.md-controller-provider-directory .side2.quince-header {
  height: calc(100vh - (140px + 45px + 60px));
}
.md-controller-provider-directory .side2.plano-header {
  height: calc(100vh - (189px + 45px + 60px));
}
.md-controller-provider-directory .side2.alaska-header {
  height: calc(100vh - (178px + 45px + 60px));
}
.md-controller-provider-directory .side2.sylvan-header {
  height: calc(100vh - (75px + 45px + 60px));
}
.md-controller-provider-directory .side2.affiliated-derm-header {
  height: calc(100vh - (107px + 45px + 60px));
}
.md-controller-provider-directory .side2.vital-header {
  height: calc(100vh - (136px + 45px + 60px));
}
.md-controller-provider-directory rmd-list-pagination {
  z-index: 10;
  position: fixed;
  padding-top: 5px;
  padding-right: 5px;
  right: 380px;
  left: 0;
  bottom: 10px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory rmd-list-pagination {
    right: 0px;
  }
}
.md-controller-provider-directory .footer {
  position: fixed;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 1px 25px 0 rgba(0,0,0,0.08);
  box-shadow: 0 1px 25px 0 rgba(0,0,0,0.08);
  height: 60px;
  z-index: 3;
}
.md-controller-provider-directory .footer a.logo .logo-frame {
  width: 100px;
}
@media (max-width: 350px) {
  .md-controller-provider-directory .footer a.logo .logo-frame {
    width: 75px;
  }
}
.md-controller-provider-directory .footer .help-button {
  margin-left: 10px;
}
.md-controller-provider-directory .footer .right {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -o-box-flex: 3;
  box-flex: 3;
  -webkit-flex: 3 1;
  -ms-flex: 3 1;
  flex: 3 1;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .footer .right {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
  .md-controller-provider-directory .footer .right.with-disclaimer {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.md-controller-provider-directory .footer .right .disclaimer {
  font-size: 12px;
  float: right;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .footer .right .disclaimer {
    font-size: 8px;
  }
}
.md-controller-provider-directory .footer .right .current-footer-step {
  color: #64cc9d;
}
.md-controller-provider-directory .footer .right .disabled {
  color: #d3d3d3;
}
.md-controller-provider-directory .footer .right .footer-steps {
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.md-controller-provider-directory .footer .right .footer-steps .next-btn {
  margin-left: 15px;
}
.md-controller-provider-directory .footer .right .footer-steps .save-btn {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .footer .right .footer-steps .next-btn. .save-btn {
    margin-left: 0;
  }
  .md-controller-provider-directory .footer .right .footer-steps .md-btn {
    height: 30px;
    margin-left: 10px;
  }
}
.md-controller-provider-directory .footer .right .footer-steps .find,
.md-controller-provider-directory .footer .right .footer-steps .appointment,
.md-controller-provider-directory .footer .right .footer-steps .patient,
.md-controller-provider-directory .footer .right .footer-steps .confirm {
  padding: 0px 15px;
}
@media (max-width: 767px) {
  .md-controller-provider-directory .footer {
    height: 50px;
  }
  .md-controller-provider-directory .providers {
    margin-bottom: 0px;
    padding-top: 10px;
  }
}
md-public-provider-profile {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-public-provider-profile .fa-paper-plane {
  font-size: 14px;
}
md-public-provider-profile .hospitalist {
  margin-left: 15px;
}
md-public-provider-profile .text1,
md-public-provider-profile .text2 {
  white-space: normal;
  overflow: auto;
}
md-public-provider-profile .staff {
  margin-left: 25px !important;
}
md-public-provider-profile .public-provider-profile {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 20px;
}
md-public-provider-profile .public-provider-profile .avatar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-public-provider-profile .public-provider-profile .npi {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
md-public-provider-profile .profile-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-public-provider-profile .profile-content h1 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #1da4f0;
}
@media (max-width: 767px) {
  md-public-provider-profile .profile-content h1 {
    max-width: 65vw;
    font-size: 16px;
  }
}
md-public-provider-profile .profile-content .provider-details {
  margin-bottom: 5px;
}
md-public-provider-profile .profile-content .detail-row {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  margin: 2px 0;
}
md-public-provider-profile .profile-content .detail-row i {
  line-height: 20px;
  vertical-align: bottom;
  color: #1da4f0;
  margin-right: 5px;
}
md-public-provider-profile .profile-content .detail-row .affiliation-level {
  margin-right: 20px;
}
md-public-provider-profile .profile-content .detail-row .accepting-new {
  margin-right: 20px;
}
.rmd-date-time-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.rmd-date-time-picker .form-control[readonly] {
  background-color: unset;
}
.rmd-date-time-picker .disabled {
  cursor: default;
}
.rmd-date-time-picker .uib-datepicker .btn[disabled] {
  background: #d3d3d3;
}
.rmd-date-time-picker .date {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 10px;
}
.rmd-date-time-picker .time-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.rmd-date-time-picker .time {
  width: 100%;
}
.rmd-date-time-picker .md-dropdown-menu {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}
.rmd-date-time-picker .md-dropdown-menu li {
  height: 30px;
}
.rmd-date-time-picker .add-on .input-group-btn > .btn {
  border-left-width: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.rmd-date-time-picker .add-on .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
}
md-date {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
  white-space: nowrap;
}
md-date .fa {
  margin-right: 5px;
}
md-date .date {
  clear: none;
  display: inline-block;
}
md-responsive-map {
  position: relative;
}
md-responsive-map #map {
  height: 100%;
  width: 100%;
}
md-scheduler-step-appointment-info {
  display: block;
}
md-scheduler-step-appointment-info md-provider-organization-profile {
  margin: 25px 0;
}
md-scheduler-step-appointment-info md-provider-organization-profile .profile-content {
  margin-top: 12px;
}
md-scheduler-step-appointment-info .details {
  padding: 15px;
  background: #fff;
  border-left: solid 3px #64cc9d;
}
md-scheduler-step-appointment-info .details label {
  margin-bottom: 0px;
}
md-scheduler-step-appointment-info .details .date-section,
md-scheduler-step-appointment-info .details .reason {
  margin: 10px 0;
}
md-scheduler-step-appointment-info .details .loc-header {
  margin-top: 15px;
}
md-scheduler-step-appointment-info .details .loc-header .loc-name {
  font-weight: 700;
}
md-scheduler-step-appointment-info .details .loc-details .link-button {
  font-size: 16px;
  color: #1da4f0;
  font-weight: 600;
}
md-scheduler-step-appointment-info .details .loc-details .phone-list-item {
  font-size: 16px;
}
md-scheduler-step-appointment-info .title {
  margin-bottom: 10px;
}
md-scheduler-step-appointment-info .provider-map {
  display: grid;
  width: 200px;
  height: 300px;
}
md-scheduler-step-appointment-form {
  display: block;
}
md-scheduler-step-appointment-form md-referral-form .md-pane {
  padding: 5px 0;
}
md-scheduler-step-appointment-form .md-loader-indicator {
  text-align: center;
  font-size: 35px;
  color: #1da4f0;
}
md-scheduler-step-appointment-form md-string-picker .ui-select-bootstrap .ui-select-choices {
  min-width: fit-content;
  max-height: 300px;
}
md-scheduler-step-appointment-form rmd-radio.form-control .radio label {
  font-weight: 600;
  font-size: 16px;
}
md-scheduler-step-appointment-form .eligibility-header {
  margin-bottom: -10px;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  md-scheduler-step-appointment-form .eligibility-header {
    font-size: 16px;
    margin-bottom: -5px;
  }
}
md-scheduler-step-appointment-form .eligibility-header.appt-for {
  margin-bottom: 10px;
}
md-scheduler-step-appointment-form .self-attest-documents .md-link {
  display: block;
  width: fit-content;
}
md-scheduler-step-appointment-form i.fa.fa-file-text-o {
  margin-top: 3px;
}
md-scheduler-step-appointment-form .helper-text {
  font-size: 16px;
  padding: 5px 0;
  color: #da3549;
  margin-bottom: 10px;
}
md-scheduler-step-appointment-form rmd-radio.form-control .radio label {
  font-size: 16px;
}
md-scheduler-step-appointment-form .form-group.md-form-group.final-question {
  margin-bottom: 40px;
}
md-scheduler-step-appointment-form .form-group.md-form-group.self-attest-documents {
  margin-bottom: 10px;
}
md-scheduler-step-appointment-form .attachments {
  margin-bottom: 40px;
}
md-scheduler-step-appointment-form .md-dropzone-link {
  font-size: 16px;
}
@media (max-width: 767px) {
  md-scheduler-step-appointment-form .md-dropzone-link {
    text-align: center;
  }
}
md-scheduler-step-appointment-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-scheduler-step-appointment-form .referring-provider {
  margin-bottom: 15px;
}
md-scheduler-step-appointment-form .fa-times {
  display: none;
}
md-scheduler-step-appointment-form md-dropzone .fa-times {
  display: block;
}
md-scheduler-step-appointment-form md-string-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
md-string-picker {
  display: block;
}
md-string-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-string-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 9px 10px;
}
md-patient-login .tos-group {
  margin-top: 30px;
}
md-patient-login .password-check.alert {
  padding-left: 15px;
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
md-patient-login .password-check.alert::before {
  display: none;
}
md-patient-login .password-check.alert::after {
  display: none;
}
md-patient-login .customer-support {
  font-size: 14px;
  text-align: right;
}
md-patient-login .customer-support a {
  cursor: pointer;
  color: #1da4f0;
}
md-patient-login .customer-support a:hover,
md-patient-login .customer-support a:focus {
  color: #4ab6f3;
}
md-patient-login .back-link {
  font-weight: 400;
  cursor: pointer;
  color: #1da4f0;
  font-size: 14px;
  line-height: 20px;
}
md-patient-login .back-link:hover,
md-patient-login .back-link:focus {
  color: #4ab6f3;
}
md-patient-login .back-link i {
  margin-right: 5px;
  vertical-align: middle;
}
md-patient-login .footnote {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px !important;
}
md-patient-login .forgot-password {
  font-size: 14px;
  text-align: right;
}
.md-patient-login-modal .modal-dialog {
  max-width: 500px;
  width: 95%;
}
md-scheduler-step-patient-form {
  display: block;
}
md-scheduler-step-patient-form .helper-text {
  font-size: 16px;
  margin-top: 10px;
  color: #da3549;
}
md-scheduler-step-patient-form .md-form-group.header-group {
  margin-bottom: 15px;
}
md-scheduler-step-patient-form rmd-radio.form-control .radio label {
  font-weight: 600;
  font-size: 16px;
}
md-scheduler-step-patient-form .login-btn {
  margin-right: -26px;
}
@media (max-width: 991px) {
  md-scheduler-step-patient-form .login-btn {
    margin-right: -15px;
    margin-bottom: 5px;
  }
}
md-scheduler-step-patient-form .patient-profile-header {
  margin-bottom: -10px;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  md-scheduler-step-patient-form .patient-profile-header {
    font-size: 16px;
    margin-bottom: -5px;
  }
}
md-scheduler-step-patient-form .patient-profile-header.appt-for {
  margin-bottom: 10px;
}
md-scheduler-step-patient-form .md-patient-login .modal-dialog {
  width: 500px;
}
md-scheduler-step-patient-form .spacer {
  margin-bottom: 50px;
}
md-scheduler-step-patient-form md-string-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
md-scheduler-step-patient-form md-string-picker .fa-times {
  display: none;
}
md-scheduler-step-patient-form md-patient-form md-insurance-picker .insurance-item + .insurance-item {
  margin-top: 20px;
  padding-top: 20px;
}
md-scheduler-step-patient-form md-patient-form md-insurance-picker md-insurance-picker-item .search-group {
  margin-bottom: 0px;
}
md-scheduler-step-patient-form md-patient-form md-insurance-picker md-insurance-picker-item .md-form-group.has-feedback {
  margin-bottom: 10px !important;
}
md-scheduler-step-patient-form md-patient-form md-insurance-picker md-filter-chips .md-chips {
  padding-bottom: 0px;
  margin-bottom: 10px;
}
md-scheduler-step-patient-form md-patient-form md-insurance-picker md-filter-chips .md-chips md-chip {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-scheduler-step-patient-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-scheduler-step-patient-appointments {
  display: block;
}
md-scheduler-step-patient-appointments md-provider-organization-profile {
  margin: 25px 0;
}
md-scheduler-step-patient-appointments md-provider-organization-profile .profile-content {
  margin-top: 12px;
}
md-scheduler-step-patient-appointments .patient-profile-header {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  md-scheduler-step-patient-appointments .patient-profile-header {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  md-scheduler-step-patient-appointments md-public-provider-profile .profile-content h1 {
    max-width: 50vw;
  }
}
md-scheduler-step-patient-appointments .details {
  padding: 15px;
  background: #fff;
  border-left: solid 3px #64cc9d;
  margin-bottom: 30px;
}
md-scheduler-step-patient-appointments .details label {
  margin-bottom: 0px;
}
md-scheduler-step-patient-appointments .details .date-section,
md-scheduler-step-patient-appointments .details .reason {
  margin: 10px 0;
}
md-scheduler-step-patient-appointments .details .loc-header {
  margin-top: 15px;
}
md-scheduler-step-patient-appointments .details .loc-header .loc-name {
  font-weight: 700;
}
md-scheduler-step-patient-appointments .details .loc-details .link-button {
  font-size: 16px;
  color: #1da4f0;
  font-weight: 600;
}
md-scheduler-step-patient-appointments .details .loc-details .phone-list-item {
  font-size: 16px;
}
md-scheduler-step-patient-appointments .title {
  margin-bottom: 10px;
}
md-scheduler-step-patient-appointments .provider-map {
  display: grid;
  width: 200px;
  height: 300px;
}
md-patient-reset-password .password-check.alert {
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
md-patient-reset-password .password-check.alert::before {
  display: none;
}
md-patient-reset-password .password-check.alert::after {
  display: none;
}
.md-patient-reset-password-modal .modal-dialog {
  max-width: 500px;
  width: 95%;
}
md-scheduler-step-patient-profile {
  display: block;
}
md-scheduler-step-patient-profile .helper-text {
  font-size: 16px;
  font-weight: normal;
  color: #da3549;
}
md-scheduler-step-patient-profile .helper-text.patient-helper {
  margin-top: -30px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  md-scheduler-step-patient-profile .helper-text.patient-helper {
    margin-top: -10px;
  }
}
md-scheduler-step-patient-profile .md-form-group.header-group {
  margin-bottom: 15px;
}
md-scheduler-step-patient-profile md-scheduler-step-patient-appointments .details {
  padding-right: 0px;
  margin-bottom: 15px;
}
md-scheduler-step-patient-profile .patient-controls {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
md-scheduler-step-patient-profile .mobile-patient-controls {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
md-scheduler-step-patient-profile .section-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: end;
  align-items: end;
}
md-scheduler-step-patient-profile .section-header .btn-group .btn {
  background: none;
  padding: 0;
  line-height: unset;
  height: fit-content;
}
md-scheduler-step-patient-profile .section-header .dropdown-menu {
  left: unset;
  right: 0;
  top: 20px;
  text-align: right;
}
md-scheduler-step-patient-profile .patient-profile-header {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  md-scheduler-step-patient-profile .patient-profile-header {
    font-size: 16px;
  }
}
md-scheduler-step-patient-profile md-scheduler-step-patient-appointments .details {
  padding: 0px;
  padding-bottom: 15px;
  border-left: none;
  border-bottom: 1px solid #d0d0d0;
}
md-scheduler-step-patient-profile .patient-form-section {
  margin-bottom: 25px;
  border-bottom: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
  md-scheduler-step-patient-profile .patient-form-section {
    margin-top: 0px;
  }
}
md-scheduler-step-patient-profile .communication-preferences-border {
  border-top: 1px solid #d0d0d0;
  padding-top: 25px;
}
md-scheduler-step-patient-profile .patient-details-label {
  margin-bottom: 20px;
  font-weight: 600;
}
md-scheduler-step-patient-profile .md-patient-login .modal-dialog {
  width: 500px;
}
md-scheduler-step-patient-profile .spacer {
  margin-bottom: 50px;
}
md-scheduler-step-patient-profile md-string-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
md-scheduler-step-patient-profile md-string-picker .fa-times {
  display: none;
}
md-scheduler-step-patient-profile md-patient-form md-insurance-picker .insurance-item + .insurance-item {
  margin-top: 20px;
  padding-top: 20px;
}
md-scheduler-step-patient-profile md-patient-form md-insurance-picker md-insurance-picker-item .search-group {
  margin-bottom: 0px;
}
md-scheduler-step-patient-profile md-patient-form md-insurance-picker md-insurance-picker-item .md-form-group.has-feedback {
  margin-bottom: 10px !important;
}
md-scheduler-step-patient-profile md-patient-form md-insurance-picker md-filter-chips .md-chips {
  padding-bottom: 0px;
  margin-bottom: 10px;
}
md-scheduler-step-patient-profile md-patient-form md-insurance-picker md-filter-chips .md-chips md-chip {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-scheduler-step-patient-profile .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-scheduler-step-confirm-phone {
  display: block;
}
md-scheduler-step-confirm-phone .fa-question-circle-o {
  margin-left: 5px;
}
md-scheduler-step-confirm-phone .text2 {
  margin: 20px 0;
  white-space: normal;
}
md-scheduler-step-confirm-phone .confirmation-form-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-scheduler-step-confirm-phone .confirmation-form-row .error-text {
  min-width: max-content;
}
md-scheduler-step-confirm-phone .confirmation-form-row .number-input {
  max-width: 155px;
  margin-right: 10px;
}
md-scheduler-step-confirm-phone .confirmation-form-row .confirm-btn {
  background: #fbaa30;
}
md-scheduler-step-confirm-phone .title {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .custom-mobile-tooltip-phone-number {
    white-space: normal !important;
    line-height: 20px !important;
    width: calc(100vw - 15px);
    height: unset !important;
    padding: 10px 0;
    text-align: center;
  }
}
md-scheduler-step-verify-phone {
  display: block;
}
md-scheduler-step-verify-phone .message {
  margin: 20px 0;
}
md-scheduler-step-verify-phone .text2 {
  margin-bottom: 10px;
  white-space: normal;
}
md-scheduler-step-verify-phone .title {
  margin-bottom: 10px;
}
md-scheduler-step-verify-phone .verify-form-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-scheduler-step-verify-phone .verify-form-row .code-group {
  max-width: 155px;
  margin-right: 10px;
}
md-scheduler-step-verify-phone .verify-form-row .verify-btn {
  background: #64cc9d;
}
md-scheduler-step-terms {
  display: block;
}
@media (max-width: 767px) {
  md-scheduler-step-terms md-public-provider-profile .profile-content h1 {
    max-width: 50vw;
  }
}
md-scheduler-step-terms .disclaimer {
  padding: 20px;
  background-color: #64cc9d;
  margin-bottom: 10px;
  text-align: center;
}
md-scheduler-step-terms .disclaimer .text2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 767px) {
  md-scheduler-step-terms .disclaimer .text2 {
    font-size: 18px;
  }
}
md-scheduler-step-terms .spacer {
  margin-bottom: 50px;
}
md-scheduler-step-terms .text2 {
  margin-bottom: 10px;
  white-space: normal;
}
md-scheduler-step-terms .title {
  margin-bottom: 20px;
}
md-scheduler-step-terms .alert {
  margin-bottom: 10px;
}
md-scheduler-step-terms .tos-group {
  display: inline;
  margin: 10px 0;
}
md-scheduler-step-terms .tos-group .create-account {
  margin-bottom: 20px;
  margin-top: 30px;
}
md-scheduler-step-terms .tos-group .create-account rmd-checkbox {
  margin-right: 5px;
  vertical-align: middle;
}
md-scheduler-step-terms .md-form-control-check {
  display: inline-grid;
  margin-bottom: 7.5px;
}
md-scheduler-step-terms .subtitle {
  margin-bottom: 15px;
}
md-scheduler-step-terms .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-scheduler-step-terms .password-check.alert {
  background-color: #efefef;
  font-size: 16px;
  border-radius: 3px;
}
md-scheduler-step-terms .password-check.alert::before {
  display: none;
}
md-scheduler-step-terms .password-check.alert::after {
  display: none;
}
@media (max-width: 767px) {
  md-scheduler-step-terms .password-check.alert {
    font-size: 12px;
  }
}
md-scheduler-step-terms md-scheduler-step-appointment-info {
  margin-top: 10px;
}
md-scheduler-step-terms md-scheduler-step-appointment-info .details {
  background: #ecf8fe;
}
md-scheduler-step-terms md-scheduler-step-appointment-info .details .text2 {
  margin-bottom: 0px;
}
md-scheduler-step-search {
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 0px;
/*
        @media (max-width: $screen-md-max)
            // - header: (Placeholder: 76px) (Motion: 211px) (Coastal: 104px) (Neuro: 200px) (SC House Calls: 96px) (Covenant: 83px)
            // - arrow progress bar: 45px
            // - search toolbars: 104px
            // - availability header: 50px
            // - footer: 60px
            &.default-header
                height: calc(100vh - (76px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (76px + 45px + 104px + 60px))

            &.logo-header
                height: calc(100vh - (80px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (80px + 45px + 104px + 60px))

            &.acacia-header
                height: calc(100vh - (80px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (80px + 45px + 104px + 60px))

            &.motion-header
                height: calc(100vh - (211px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (211px + 45px + 104px + 60px))

            &.coastal-header
                height: calc(100vh - (104px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (104px + 45px + 104px + 60px))

            &.sc-house-header
                height: calc(100vh - (96px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (96px + 45px + 104px + 60px))

            &.neuro-header
                height: calc(100vh - (200px + 45px + 104px + 50px + 60px))
                &.hide-filters
                    height: calc(100vh - (200px + 45px + 70px + 50px + 60px))
                    &.no-availability-header
                        height: calc(100vh - (200px + 45px + 104px + 60px))

            &.covenant-header
                height: calc(100vh - (83px + 45px + 104px + 50px + 60px))
                &.no-availability-header
                    height: calc(100vh - (83px + 45px + 104px + 60px))

        */
}
@media (max-width: 767px) {
  md-scheduler-step-search {
    padding: 0 15px;
  }
}
md-scheduler-step-search .ui-select-container .form-control {
  font-size: 16px !important;
  line-height: 18px;
}
md-scheduler-step-search .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
md-scheduler-step-search .custom-popup-wrapper {
  position: absolute;
  width: fit-content;
  left: 0;
  top: 100%;
  z-index: 1000;
  display: none;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 0 3px #b9b9b9;
  box-shadow: 0 0 3px #b9b9b9;
}
md-scheduler-step-search .custom-popup-wrapper .inline-search-result-header {
  text-transform: uppercase;
  padding: 5px 15px;
  color: #a2a2a2;
  font-weight: 600;
  font-size: 13px;
  background-color: #fff;
}
md-scheduler-step-search .custom-popup-wrapper .dropdown-menu {
  position: static;
  float: none;
  display: block;
  min-width: fit-content;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
md-scheduler-step-search .custom-popup-wrapper .dropdown-menu .active a {
  background-color: #a5a5a5;
  color: #fff;
}
md-scheduler-step-search .custom-popup-wrapper .inline-result-divider {
  border-top: 1px solid #dfdfdf;
}
md-scheduler-step-search .custom-popup-wrapper .autocomplete-search-item {
  cursor: pointer;
}
md-scheduler-step-search .additional-filters {
  margin-top: 5px;
}
md-scheduler-step-search .md-layout-stretch-wrap.default-header {
  height: calc(100vh - (76px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.default-header.no-availability-header {
  height: calc(100vh - (76px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.logo-header {
  height: calc(100vh - (80px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.logo-header.no-availability-header {
  height: calc(100vh - (80px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.acacia-header {
  height: calc(100vh - (216px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.acacia-header.no-availability-header {
  height: calc(100vh - (216px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.srm-header {
  height: calc(100vh - (105.42px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.srm-header.no-availability-header {
  height: calc(100vh - (105.42px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.motion-header {
  height: calc(100vh - (211px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.motion-header.no-availability-header {
  height: calc(100vh - (211px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.coastal-header {
  height: calc(100vh - (104px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.coastal-header.no-availability-header {
  height: calc(100vh - (104px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.neuro-header {
  height: calc(100vh - (200px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.neuro-header.no-availability-header {
  height: calc(100vh - (200px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.naples-header {
  height: calc(100vh - (82px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.naples-header.no-availability-header {
  height: calc(100vh - (82px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.sc-house-header {
  height: calc(100vh - (96px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.sc-house-header.no-availability-header {
  height: calc(100vh - (96px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.covenant-header {
  height: calc(100vh - (83px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.covenant-header.no-availability-header {
  height: calc(100vh - (83px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.tristar-header {
  height: calc(100vh - (100px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.tristar-header.no-availability-header {
  height: calc(100vh - (100px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.gateway-header {
  height: calc(100vh - (106px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.gateway-header.no-availability-header {
  height: calc(100vh - (106px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.front-range-header {
  height: calc(100vh - (120px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.front-range-header.no-availability-header {
  height: calc(100vh - (120px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.yosemite-header {
  height: calc(100vh - (200px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.yosemite-header.no-availability-header {
  height: calc(100vh - (200px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.mpg-header {
  height: calc(100vh - (100px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.mpg-header.no-availability-header {
  height: calc(100vh - (100px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.affiliated-derm-header {
  height: calc(100vh - (107px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.affiliated-derm-header.no-availability-header {
  height: calc(100vh - (107px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.demo-header {
  height: calc(100vh - (153px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.demo-header.no-availability-header {
  height: calc(100vh - (153px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.quince-header {
  height: calc(100vh - (140px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.quince-header.no-availability-header {
  height: calc(100vh - (140px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.plano-header {
  height: calc(100vh - (189px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.plano-header.no-availability-header {
  height: calc(100vh - (189px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.alaska-header {
  height: calc(100vh - (178px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.alaska-header.no-availability-header {
  height: calc(100vh - (178px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.sylvan-header {
  height: calc(100vh - (75px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.sylvan-header.no-availability-header {
  height: calc(100vh - (75px + 45px + 70px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.vital-header {
  height: calc(100vh - (136px + 45px + 70px + 50px + 60px));
}
md-scheduler-step-search .md-layout-stretch-wrap.vital-header.no-availability-header {
  height: calc(100vh - (136px + 45px + 70px + 60px));
}
@media (max-width: 991px) {
  md-scheduler-step-search .md-layout-stretch-wrap {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.default-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.default-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.logo-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.logo-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.acacia-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.acacia-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.srm-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.srm-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.motion-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.motion-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.coastal-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.coastal-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.neuro-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.neuro-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.sc-house-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.sc-house-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.covenant-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.covenant-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.tristar-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.tristar-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.gateway-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.gateway-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.front-range-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.front-range-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.yosemite-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.yosemite-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.mpg-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.mpg-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.vital-header,
  md-scheduler-step-search .md-layout-stretch-wrap.sylvan-header,
  md-scheduler-step-search .md-layout-stretch-wrap.alaska-header,
  md-scheduler-step-search .md-layout-stretch-wrap.plano-header,
  md-scheduler-step-search .md-layout-stretch-wrap.quince-header,
  md-scheduler-step-search .md-layout-stretch-wrap.demo-header,
  md-scheduler-step-search .md-layout-stretch-wrap.affiliated-derm-header {
    height: calc(100vh - (64px + 45px + 38px + 52px + 60px));
  }
  md-scheduler-step-search .md-layout-stretch-wrap.vital-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.sylvan-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.alaska-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.plano-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.quince-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.demo-header.no-availability-header,
  md-scheduler-step-search .md-layout-stretch-wrap.affiliated-derm-header.no-availability-header {
    height: calc(100vh - (64px + 45px + 38px + 60px));
  }
}
md-scheduler-step-search .search-bar {
  padding: 10px 0px;
  margin-bottom: 10px;
}
md-scheduler-step-search .search-bar.centered-flex {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  md-scheduler-step-search .search-bar {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}
md-scheduler-step-search .search-bar .error-text {
  position: absolute;
  padding-top: 0px;
  margin-top: -5px;
}
@media (max-width: 767px) {
  md-scheduler-step-search .search-bar .error-text {
    position: inherit;
    text-align: left;
  }
}
md-scheduler-step-search .search-bar .md-form-group {
  margin-right: 10px;
}
md-scheduler-step-search .search-bar .clear-button-holder {
  z-index: 1;
}
md-scheduler-step-search .search-bar .main-search-input {
  width: 250px;
}
@media (max-width: 991px) {
  md-scheduler-step-search .search-bar .main-search-input {
    width: 200px;
  }
}
md-scheduler-step-search .search-bar .main-search-input .ui-select-container .form-control {
  line-height: 25px;
  width: 100%;
}
md-scheduler-step-search .search-bar md-city-select-picker .ui-select-container {
  min-width: 250px;
  max-width: 250px;
}
@media (max-width: 991px) {
  md-scheduler-step-search .search-bar md-city-select-picker .ui-select-container {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  md-scheduler-step-search .search-bar md-city-select-picker .ui-select-container {
    max-width: 100%;
  }
}
md-scheduler-step-search .search-bar md-city-select-picker .ui-select-container .form-control {
  line-height: 25px;
  width: 100%;
}
md-scheduler-step-search .search-bar .ui-select-container {
  min-width: initial;
}
md-scheduler-step-search .search-bar .ui-select-bootstrap .ui-select-choices {
  min-width: fit-content;
  max-height: 60vh;
}
md-scheduler-step-search .search-bar .dropdown-header {
  font-size: 18px;
}
md-scheduler-step-search .search-bar input.md-form-control[type="search"] {
  height: 100%;
}
md-scheduler-step-search .search-bar md-toolbar-insurance-picker .form-control {
  width: 250px;
  min-width: 15.5vw;
  padding-top: 9px;
}
@media (max-width: 991px) {
  md-scheduler-step-search .search-bar md-toolbar-insurance-picker .form-control {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  md-scheduler-step-search .search-bar md-toolbar-insurance-picker .form-control {
    width: 100%;
    min-width: 100%;
  }
}
md-scheduler-step-search .search-bar md-toolbar-insurance-picker .ui-select-bootstrap,
md-scheduler-step-search .search-bar md-toolbar-insurance-picker .ui-select-choices {
  min-width: fit-content;
}
md-scheduler-step-search .search-bar .caret {
  display: none;
}
md-scheduler-step-search .search-bar .ui-select-container .form-control {
  height: 40px;
}
md-scheduler-step-search .search-bar .reason md-custom-item-picker .form-control {
  width: 250px;
  min-width: 250px;
  padding-top: 9px;
}
@media (max-width: 991px) {
  md-scheduler-step-search .search-bar .reason md-custom-item-picker .form-control {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  md-scheduler-step-search .search-bar .reason md-custom-item-picker .form-control {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
md-scheduler-step-search .search-bar .reason md-custom-item-picker .ui-select-choices {
  min-width: fit-content;
}
md-scheduler-step-search .search-bar .md-dropdown-group {
  font-size: 16px;
}
md-scheduler-step-search .search-bar .md-dropdown-group .btn {
  padding: 9px 10px;
}
md-scheduler-step-search .additional-filters {
  display: block;
}
md-scheduler-step-search .additional-filters .btn {
  padding: 9px 10px;
}
md-scheduler-step-search .additional-filters .caret {
  display: none;
}
md-scheduler-step-search .additional-filters .additional-form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
md-scheduler-step-search .additional-filters .additional-form-group md-toolbar-gender-picker {
  width: 100%;
}
md-scheduler-step-search .additional-filters .additional-form-group .md-form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 250px;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  margin-bottom: 10px;
}
md-scheduler-step-search .additional-filters .additional-form-group .md-form-group + .md-form-group {
  margin-right: 10px;
  margin-left: 0;
}
@media (max-width: 991px) {
  md-scheduler-step-search .additional-filters .additional-form-group .md-form-group {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 1 200px;
    -ms-flex: 0 1 200px;
    flex: 0 1 200px;
  }
}
@media (max-width: 767px) {
  md-scheduler-step-search .additional-filters .additional-form-group {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  md-scheduler-step-search .additional-filters .additional-form-group .md-form-group.accepting-patients {
    margin-right: 0px;
  }
  md-scheduler-step-search .additional-filters .additional-form-group .md-form-group {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 1 20%;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
  }
  md-scheduler-step-search .additional-filters .additional-form-group .md-form-group + .md-form-group {
    margin-right: 0px;
  }
}
md-scheduler-step-search .more-filters {
  color: #1da4f0;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  md-scheduler-step-search .more-filters {
    margin-left: 0px;
    margin-right: 20px;
  }
}
md-scheduler-step-search md-city-picker input.md-form-control[type="text"] {
  height: 40px;
  min-width: 250px;
}
@media (max-width: 991px) {
  md-scheduler-step-search md-city-picker input.md-form-control[type="text"] {
    min-width: 200px;
  }
}
md-scheduler-step-search md-city-picker .dropdown-menu {
  max-height: 200px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  md-scheduler-step-search .reason md-string-picker .form-control {
    width: 100%;
  }
  md-scheduler-step-search .md-toolbar {
    width: 100%;
  }
  md-scheduler-step-search .md-toolbar .form-group {
    display: block;
    width: 100%;
  }
  md-scheduler-step-search .md-toolbar .form-group .btn,
  md-scheduler-step-search .md-toolbar .form-group md-toolbar-insurance-picker {
    width: 100%;
  }
  md-scheduler-step-search .md-toolbar .clear-toolbar-filters {
    margin-right: 0px;
  }
}
md-scheduler-step-search md-city-picker input.md-form-control[type="text"],
md-scheduler-step-search md-toolbar-gender-picker input.md-form-control[type="text"] {
  height: 40px;
  min-width: 250px;
}
@media (max-width: 991px) {
  md-scheduler-step-search md-city-picker input.md-form-control[type="text"],
  md-scheduler-step-search md-toolbar-gender-picker input.md-form-control[type="text"] {
    min-width: 200px;
  }
}
.search-btn-group .md-btn,
.login-group .md-btn,
.logout-group .md-btn {
  padding: 0 15px;
}
.search-btn-group .md-btn i,
.login-group .md-btn i,
.logout-group .md-btn i {
  margin-right: 0px;
  color: #fff;
}
.md-toolbar.search.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.providers {
  border-bottom: 1px solid #d0d0d0;
}
.providers .provider-locations {
  width: 100%;
}
.providers .provider-locations .locations {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.providers .provider-locations .locations .location-details {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 33%;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
  min-width: 150px;
}
@media (max-width: 991px) {
  .providers .provider-locations .locations .location-details {
    min-width: unset;
  }
}
.providers .provider-locations .locations .location-details .location-name {
  font-weight: 600;
}
.providers .provider-locations .locations .location-details .h1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #1da4f0;
  white-space: normal;
  overflow: auto;
}
.providers .provider-locations .locations .location-details .text1,
.providers .provider-locations .locations .location-details .text2 {
  white-space: normal;
  overflow: auto;
}
.providers .provider-locations .locations .schedule-section {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 75%;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.providers .provider-locations .locations:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .providers .provider-locations .locations {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .providers .provider-locations .locations .location-details {
    margin-bottom: 10px;
  }
}
.providers .provider-content-mobile.request-no-dates {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.providers .provider-content-mobile.request-no-dates .provider-locations-mobile .locations {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-bottom: 10px;
}
.providers .provider-content-mobile.request-no-dates .provider-locations-mobile .locations .location-details {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 25%;
  -ms-flex: 1 25%;
  flex: 1 25%;
}
.providers .provider-content-mobile.request-no-dates .provider-details-mobile {
  width: 100%;
}
.providers .provider-content-mobile.request-no-dates .provider-details-mobile.location {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
.providers .provider-content-mobile.request-no-dates .provider-details-mobile.location .location-details-mobile {
  max-width: 100%;
}
.providers .provider-content-mobile.request-no-dates .provider-details-mobile.location .location-details-mobile .h1 {
  white-space: normal;
}
.location-details-mobile .text1,
.location-details .text1,
.location-details-mobile .text2,
.location-details .text2 {
  white-space: normal;
  overflow: auto;
}
.availability-header-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.availability-header-row .availability-header-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 75%;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  margin-bottom: 10px;
  margin-right: 4px;
}
.availability-header-row .availability-header-container.location {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 735px;
  -ms-flex: 0 1 735px;
  flex: 0 1 735px;
}
@media (max-width: 767px) {
  .availability-header-row .availability-header-container.sm {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
  }
}
.mobile-search-header {
  padding: 5px 0px;
}
.mobile-search-header .header-column,
.mobile-search-header .toolbar-column {
  line-height: 28px;
}
.mobile-search-header .header-column {
  text-align: left;
}
.mobile-search-header .header-column h4 {
  font-size: 18px;
  font-weight: 600;
}
.mobile-search-header .toolbar-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 14px;
}
.mobile-search-header .toolbar-column .map-toggle {
  margin-left: 10px;
}
.provider-content-mobile {
  display: block;
}
.provider-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.provider-content md-public-provider-profile .public-provider-profile {
  padding-right: 10px;
  margin-right: 0px;
}
.provider-content .inline-container {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 767px) {
  .provider-content {
    display: block;
  }
}
.provider-content .provider-details {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.provider-content .provider-details.location {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1;
  -ms-flex: 1 1;
  flex: 1 1;
  min-width: 250px;
}
@media (min-width: 1440px) {
  .provider-content .provider-details.location {
    min-width: 350px;
  }
}
@media (max-width: 1199px) {
  .provider-content .provider-details.location {
    min-width: 150px;
  }
}
.provider-content .provider-details.location .h1 {
  white-space: normal;
}
.provider-content .provider-details.location.request-no-dates {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1;
  -ms-flex: 1 1;
  flex: 1 1;
}
.provider-content .provider-details.provider md-public-provider-profile .profile-content h1 {
  white-space: normal;
}
@media (max-width: 767px) {
  .provider-content .provider-details {
    text-align: center;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -o-box-flex: 0;
    box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-bottom: 20px;
  }
}
.location-details {
  margin-top: 10px;
}
.location-details .location-details-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -o-box-flex: 3;
  box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 10px 0px;
}
.location-details .location-details-container.hide-scheduling-dates {
  margin: -20px 0px;
}
.location-details .location-details-container .location-details,
.location-details .location-details-container .location-address,
.location-details .location-details-container .location-phones {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 20px;
}
.location-details .location-details-container .location-phones {
  margin-left: 40px;
}
.schedule-section {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 75%;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  text-align: right;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.schedule-section.location-schedule {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin: 0;
  padding: 0;
}
.schedule-section.location-schedule .requested-appointment .sm {
  margin-top: -30px;
}
.schedule-section.location {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 691px;
  -ms-flex: 0 1 691px;
  flex: 0 1 691px;
}
.schedule-section.no-date {
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  text-align: center;
}
@media (max-width: 767px) {
  .schedule-section.no-date {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1;
    -ms-flex: 1 1;
    flex: 1 1;
  }
}
.schedule-section .requested-appointment {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .schedule-section .requested-appointment {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .schedule-section .requested-appointment {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.schedule-section .select-dates {
  margin-left: 44px;
  min-width: max-content;
}
.schedule-section .select-dates .request-title {
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}
.schedule-section .scheduler-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  vertical-align: middle;
  line-height: 34px;
  margin-bottom: 5px;
}
.schedule-section .scheduler-group rmd-date-time-picker {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
@media (max-width: 767px) {
  .schedule-section {
    text-align: center;
  }
  .schedule-section .select-dates {
    margin-left: 0;
    margin-bottom: 15px;
    min-width: 0px;
  }
  .schedule-section .select-dates .request-title {
    margin: 15px 0;
    text-align: left;
    font-weight: 600;
  }
}
.instructions-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.instructions-row .no-results {
  margin: 35px 0;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 767px) {
  .instructions-row .no-results {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.instructions-row .no-results .fa-warning {
  margin-right: 5px;
  color: #f09b37;
}
.instructions-row .no-results .no-results-title {
  font-weight: 700;
  white-space: normal;
}
.instructions-row .instructions {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .instructions-row .instructions {
    max-width: unset;
  }
}
.instructions-row .instructions .instruction-title {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .instructions-row .instructions .instruction-title {
    margin-top: 10px;
  }
}
.instructions-row .instructions .city-instructions,
.instructions-row .instructions .search-instructions,
.instructions-row .instructions .reason-instructions,
.instructions-row .instructions .login-instructions {
  margin-bottom: 15px;
}
.instructions-row .instructions .city-instructions .fa-map-marker,
.instructions-row .instructions .search-instructions .fa-map-marker,
.instructions-row .instructions .reason-instructions .fa-map-marker,
.instructions-row .instructions .login-instructions .fa-map-marker {
  width: 16px;
  padding-left: 1px;
}
.instructions-row .instructions .city-instructions .fa-search,
.instructions-row .instructions .search-instructions .fa-search,
.instructions-row .instructions .reason-instructions .fa-search,
.instructions-row .instructions .login-instructions .fa-search {
  padding: 0 5px;
}
.instructions-row .instructions .text2 {
  font-size: 16px;
  color: #333;
  white-space: normal;
  margin-left: -7px;
}
.instructions-row .instructions .text2.continued {
  margin-left: 0px;
}
.main-content-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .main-content-row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main-content-row .provider-results-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.main-content-row .map-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.main-content-row .map-column.location {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.main-content-row .map-column .map-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-content-row .map-column .map-container .map-stretcher {
  width: 100%;
  height: 100%;
}
.main-content-row .map-column .map-container .map-stretcher md-responsive-map {
  display: block;
  width: 100%;
  height: 100%;
}
.main-content-row .map-column .map-container.map-only {
  position: absolute;
  height: calc(100vh - 208px);
  width: 100%;
}
md-contact-editor {
  display: block;
}
md-contact-editor md-contact-search .contacts-result-table .md-layout-stretch-wrap {
  height: calc(100vh - 76px - 40px - 60px - 64px - 50px);
}
md-contact-editor .add-contact {
  text-align: center;
  margin-top: 10px;
}
md-contact-editor .add-contact .text2 {
  margin-bottom: 10px;
}
md-contact-editor md-contact-form {
  height: calc(100vh - 76px - 40px - 81px);
  overflow: scroll;
}
md-contact-batch-editor {
  display: block;
}
md-contact-batch-editor .md-modal .modal-body .md-form-group {
  display: block;
  margin-bottom: 0px;
}
md-contact-batch-editor .md-modal .modal-body .md-form-group .control-label {
  display: block;
}
md-contact-batch-editor .md-modal .modal-body rmd-toolbar-dropdown .md-dropdown-menu.search {
  max-width: 500px;
}
md-contact-batch-editor .md-modal .modal-body rmd-toolbar-dropdown .dropdown-toggle .dropdown-title {
  max-width: 500px;
}
md-contact-batch-editor .md-modal .modal-body .outbound-method-group {
  width: max-content;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
md-contact-batch-editor .md-modal .modal-body .outbound-method-group rmd-radio {
  height: auto;
}
md-contact-delete {
  display: block;
}
md-contact-delete .md-text {
  font-size: 16px;
}
md-contact-delete md-contact-search td.column {
  text-align: left;
}
md-contact-delete md-contact-search .contacts-result-table .md-layout-stretch-wrap {
  height: calc(100vh - 40px - 84px - 30px - 30px - 60px - 81px - 70px);
}
md-contact-delete md-contact-search .contacts-result-table .md-layout-stretch-wrap.has-selected {
  height: calc(100vh - 40px - 84px - 30px - 30px - 60px - 81px - 70px - 74px - 40px);
}
md-contact-delete .add-contact {
  text-align: center;
}
md-contact-delete .add-contact .text2 {
  margin-bottom: 10px;
}
md-contact-assign-organization {
  display: block;
}
md-contact-assign-organization md-contact-search .contacts-result-table .md-layout-stretch-wrap {
  height: calc(100vh - 76px - 40px - 60px - 64px - 81px - 10px);
}
md-contact-assign-organization md-contact-search .contacts-result-table .md-layout-stretch-wrap.has-selected {
  height: calc(100vh - 76px - 40px - 60px - 64px - 81px - 10px - 74px - 40px);
}
md-contact-assign-organization .search-input {
  width: 100%;
}
md-contact-assign-organization .result-list .result-list-item {
  margin-top: 10px;
}
md-contact-assign-organization .referral-list-content {
  background: #fff;
}
md-contact-assign-organization md-contact-form {
  height: calc(100vh - 76px - 40px - 81px);
  overflow: scroll;
}
md-contact-assign-organization .total-title {
  margin-left: 20px;
}
md-contact-assign-organization .add-contact {
  margin-top: 10px;
  text-align: center;
}
md-contact-assign-organization .add-contact .text2 {
  margin-bottom: 10px;
}
md-contact-form {
  display: block;
}
md-contact-form .pt10 {
  padding-top: 11px !important;
}
md-contact-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-contact-form .role-picker .control-label {
  margin-bottom: 0px !important;
}
md-contact-form .role-picker .control-label.inline {
  line-height: 34px;
  vertical-align: middle;
}
md-state-picker {
  display: block;
}
md-state-picker .text-muted {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  padding-left: 3px;
}
md-city-picker {
  display: block;
}
md-city-picker .hide-dropdown .dropdown-menu {
  display: none;
}
md-city-picker .md-form-group.md-form-group-icon .icon {
  position: absolute;
  left: auto;
  right: 0px;
  color: #1da4f0;
}
md-city-picker .md-form-group.md-form-group-icon .icon.icon-right {
  left: auto;
  right: 0px;
}
md-city-picker .md-form-group.md-form-group-icon.icon-right input.md-form-control[type="text"] {
  padding-right: 35px;
}
md-phone-picker {
  display: block;
}
md-phone-picker .animate-switch .ng-leave.ng-leave-active,
md-phone-picker .animate-switch .ng-enter,
md-phone-picker .animate-switch .ng-leave,
md-phone-picker .animate-switch .ng-enter.ng-enter-active {
  display: none !important;
  -webkit-transition: 0s none;
  -moz-transition: 0s none;
  -o-transition: 0s none;
  -ms-transition: 0s none;
  transition: 0s none;
  -webkit-transition: 0s none;
  -webkit-animation: 0s none;
  -moz-animation: 0s none;
  -o-animation: 0s none;
  -ms-animation: 0s none;
  animation: 0s none;
  -webkit-animation: 0s none;
}
md-phone-picker .fax-error {
  margin-top: -10px;
  margin-bottom: 10px;
}
md-phone-picker .split1 {
  width: calc(50% - 15px);
  margin-right: 30px;
}
md-phone-picker .split2 {
  width: calc(50% - 40px) !important;
  margin-left: 0px !important;
  max-width: unset !important;
}
md-phone-picker .md-form-group {
  margin-bottom: 10px;
}
md-phone-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-phone-picker .add-link i {
  margin-right: 5px;
}
md-phone-picker .text-muted {
  color: #b1b1b1;
}
md-phone-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-phone-picker .dropdown-menu,
md-phone-picker .md-dropdown-menu,
md-phone-picker .dropdown {
  min-width: 100px;
  max-width: 100px;
}
md-phone-picker .input-row {
  margin-bottom: 10px;
}
md-phone-picker .input-row input.number-input {
  padding: 9px 14px;
}
md-phone-picker .input-row .type-picker {
  min-width: 100px;
  max-width: none;
  margin-left: 10px;
}
md-phone-picker .input-row .type-picker .dropdown-menu {
  min-width: 100px !important;
  max-width: none;
}
md-gender-picker {
  display: block;
}
md-gender-picker .dropdown-menu {
  left: auto !important;
  right: auto !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
md-gender-picker .gender-other {
  margin-left: 100px;
  clear: none;
  display: inline-block;
}
md-gender-picker .gender-picker-select select {
  clear: none;
  display: inline-block;
  max-width: 160px;
}
md-gender-picker .gender-picker-select .gender-other {
  clear: none;
  display: inline-block;
  max-width: 200px;
  margin-left: 10px;
}
rmd-radio.inline {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
rmd-radio.inline + rmd-radio.inline {
  margin-left: 10px;
}
.control-label + rmd-radio.inline {
  margin-left: 20px;
}
rmd-radio.form-control,
rmd-radio.form-control[disabled],
rmd-radio.form-control[readonly] {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  background-color: transparent;
  padding: 0px;
  width: auto;
  line-height: 34px;
}
rmd-radio.form-control:focus,
rmd-radio.form-control[disabled]:focus,
rmd-radio.form-control[readonly]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
rmd-radio.form-control .radio,
rmd-radio.form-control[disabled] .radio,
rmd-radio.form-control[readonly] .radio {
  margin-top: 7px;
  margin-bottom: 7px;
}
rmd-radio.form-control .radio label,
rmd-radio.form-control[disabled] .radio label,
rmd-radio.form-control[readonly] .radio label {
  font-size: 14px;
  padding-left: 25px;
}
rmd-radio.form-control.form-control[disabled] .fake,
rmd-radio.form-control[disabled].form-control[disabled] .fake,
rmd-radio.form-control[readonly].form-control[disabled] .fake,
rmd-radio.form-control.form-control[readonly] .fake,
rmd-radio.form-control[disabled].form-control[readonly] .fake,
rmd-radio.form-control[readonly].form-control[readonly] .fake,
rmd-radio.form-control.form-control[disabled] label,
rmd-radio.form-control[disabled].form-control[disabled] label,
rmd-radio.form-control[readonly].form-control[disabled] label,
rmd-radio.form-control.form-control[readonly] label,
rmd-radio.form-control[disabled].form-control[readonly] label,
rmd-radio.form-control[readonly].form-control[readonly] label {
  cursor: not-allowed;
}
rmd-radio .radio {
  line-height: 20px;
}
rmd-radio .radio label {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
rmd-radio .radio label .fake {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border-radius: 50%;
  line-height: 20px;
  position: absolute;
  left: 0px;
  border: 1px solid #d0d0d0;
  background: #fff;
}
rmd-radio .radio label .fake .fa-check {
  display: none;
  width: 18px;
  text-align: center;
  line-height: 18px;
  color: #fff;
  font-size: 12px;
}
rmd-radio .radio label input {
  display: none;
}
rmd-radio .radio label input:checked + .fake {
  background-color: #1da4f0;
  border-color: #1da4f0;
}
rmd-radio .radio label input:checked + .fake .fa-check {
  display: block;
}
rmd-toolbar-dropdown {
  clear: none;
  display: inline-block;
}
rmd-toolbar-dropdown .no-data {
  text-align: center;
}
rmd-toolbar-dropdown .clear-filter-option:hover {
  text-decoration: underline;
}
rmd-toolbar-dropdown .separator-line {
  height: 1px;
  background-color: #dcdcdc;
  margin: 5px 0;
}
rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle {
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle.disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  cursor: not-allowed;
}
rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle i {
  padding-top: 3px;
}
rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 250px;
}
rmd-toolbar-dropdown .md-dropdown-group .dropdown .pulse {
  -webkit-animation: pulse 2s ease infinite;
  -moz-animation: pulse 2s ease infinite;
  -o-animation: pulse 2s ease infinite;
  -ms-animation: pulse 2s ease infinite;
  animation: pulse 2s ease infinite;
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
md-pnt-picker {
  display: block;
}
md-specialty-picker {
  display: block;
}
md-specialty-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-specialty-picker .md-dropdown-menu {
  width: 100%;
}
md-organization-picker {
  display: block;
}
md-procedure-picker {
  display: block;
}
md-procedure-picker .md-dropdown-menu {
  width: 100%;
}
md-procedure-picker .loading .fa {
  color: #1da4f0;
}
md-procedure-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
@media (max-width: 767px) {
  .ng-aside.horizontal.right .modal-dialog {
    width: 100%;
    height: 100%;
  }
}
md-contact-assign-contacts {
  display: block;
}
md-contact-assign-contacts .modal-body {
  height: calc(100vh - 76px - 81px);
  overflow: scroll;
}
@media (max-width: 767px) {
  md-contact-assign-contacts .modal-title {
    font-size: 19px;
    font-weight: 300;
  }
}
md-contact-assign-contacts md-contact-search .contacts-result-table .md-layout-stretch-wrap {
  height: calc(100vh - 76px - 40px - 60px - 64px - 81px - 10px);
}
md-contact-assign-contacts md-contact-search .contacts-result-table .md-layout-stretch-wrap.has-selected {
  height: calc(100vh - 76px - 40px - 60px - 64px - 81px - 10px - 74px - 40px);
}
md-contact-assign-contacts .add-contact {
  margin-top: 10px;
  text-align: center;
}
md-contact-assign-contacts .add-contact .text2 {
  margin-bottom: 10px;
}
md-contact-assign-contacts .referral-list-content {
  background: #fff;
}
md-contact-assign-contacts .total-title {
  margin-left: 20px;
}
md-contact-search {
  display: block;
}
md-contact-search .contact-search-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: fit-content;
}
md-contact-search .contact-search-toolbar .form-group:last-child {
  margin-right: 0px;
}
md-contact-search .contact-search-toolbar .form-group.search-group {
  min-width: 220px;
}
@media (max-width: 767px) {
  md-contact-search .contact-search-toolbar .form-group.search-group {
    width: 100%;
  }
}
md-contact-search .contacts-result-table .md-layout-stretch-wrap {
  height: calc(100vh - 400px);
}
md-contact-search .contacts-result-table .rmd-list-manual {
  overflow: scroll;
}
md-contact-search .contacts-result-table .rmd-list-item {
  cursor: pointer;
}
md-contact-search .contacts-result-table .rmd-list-item.selected {
  cursor: default;
  background-color: #f6f6f6;
}
md-contact-search .contacts-result-table .rmd-list-item.selected .column {
  background-color: #f6f6f6;
}
md-contact-search .contacts-result-table .rmd-list-item .name-column .name-column-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  md-contact-search .contacts-result-table .rmd-list-item .name-column .name-column-wrap {
    max-width: 75vw;
  }
}
md-contact-search .contacts-result-table .rmd-list-item .name-column .name-column-wrap md-avatar {
  clear: none;
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
}
md-contact-search .contacts-result-table .rmd-list-item .name-column .name-column-wrap .content {
  vertical-align: middle;
  min-width: 0px;
}
md-contact-search .selected-list {
  margin-top: 20px;
}
md-contact-search .selected-list .contact-chips {
  margin-top: 10px;
}
md-contact-search .selected-list .contact-chips md-chips-wrap {
  text-align: center;
}
md-contact-search .selected-list .contact-chips md-chips-wrap md-chip {
  clear: none;
  display: inline-block;
  float: none;
  width: auto;
  max-width: fit-content;
}
md-affiliation-level-batch-editor {
  display: block;
}
md-affiliation-level-batch-editor .md-modal .modal-body .md-form-group {
  display: block;
  margin-bottom: 0px;
}
md-affiliation-level-batch-editor .md-modal .modal-body .md-form-group .control-label {
  display: block;
}
md-affiliation-level-batch-editor .md-modal .modal-body rmd-toolbar-dropdown .md-dropdown-menu.search {
  max-width: 500px;
}
md-affiliation-level-batch-editor .md-modal .modal-body rmd-toolbar-dropdown .dropdown-toggle .dropdown-title {
  max-width: 500px;
}
md-affiliation-level-batch-editor .md-modal .modal-body .outbound-method-group {
  width: max-content;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
md-affiliation-level-batch-editor .md-modal .modal-body .outbound-method-group rmd-radio {
  height: auto;
}
md-availability-picker {
  display: block;
}
md-availability-picker .header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-availability-picker .header .date-picker {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 30px;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  border-radius: 50%;
  line-height: 30px;
}
md-availability-picker .header .date-picker:hover {
  background-color: #ccc;
}
md-availability-picker .header .date {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 75px;
  -ms-flex: 0 0 75px;
  flex: 0 0 75px;
  text-align: center;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 1440px) {
  md-availability-picker .header .date {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 95px;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
  }
}
@media (min-width: 1900px) {
  md-availability-picker .header .date {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 108px;
    -ms-flex: 0 0 108px;
    flex: 0 0 108px;
  }
}
@media (min-width: 2100px) {
  md-availability-picker .header .date {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 128px;
    -ms-flex: 0 0 128px;
    flex: 0 0 128px;
  }
}
md-availability-picker .header .date .day-label,
md-availability-picker .header .date .date-label {
  line-height: 20px;
}
md-availability-picker .header .date .date-label {
  font-weight: 600;
}
md-availability-picker .picker {
  padding: 0px 30px;
}
md-availability-picker .picker .timeslot-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-availability-picker .picker .timeslot {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 75px;
  -ms-flex: 0 0 75px;
  flex: 0 0 75px;
}
@media (min-width: 1440px) {
  md-availability-picker .picker .timeslot {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 95px;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
  }
}
@media (min-width: 1900px) {
  md-availability-picker .picker .timeslot {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 108px;
    -ms-flex: 0 0 108px;
    flex: 0 0 108px;
  }
}
@media (min-width: 2100px) {
  md-availability-picker .picker .timeslot {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 0 128px;
    -ms-flex: 0 0 128px;
    flex: 0 0 128px;
  }
}
md-availability-picker .picker .timeslot .timeslot-items {
  display: block;
  padding: 4px;
}
md-availability-picker .picker .timeslot .none,
md-availability-picker .picker .timeslot .slot {
  text-align: center;
  height: 32px;
  width: 67px;
  line-height: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 1440px) {
  md-availability-picker .picker .timeslot .none,
  md-availability-picker .picker .timeslot .slot {
    width: 87px;
  }
}
@media (min-width: 1900px) {
  md-availability-picker .picker .timeslot .none,
  md-availability-picker .picker .timeslot .slot {
    width: 100px;
  }
}
@media (min-width: 2100px) {
  md-availability-picker .picker .timeslot .none,
  md-availability-picker .picker .timeslot .slot {
    width: 120px;
  }
}
md-availability-picker .picker .timeslot .slot {
  background: #e1f4fe;
  cursor: pointer;
}
md-availability-picker .picker .timeslot .slot:hover {
  background-color: #4ab6f3;
}
md-availability-picker .picker .timeslot .slot .time-label {
  font-size: 14px;
  font-weight: 600;
}
md-availability-picker .picker .more {
  display: block;
  width: 100%;
  margin-top: 5px;
  text-align: center;
}
md-availability-picker .picker .more i.fas {
  font-size: 32px;
  line-height: 32px;
  color: #e1f4fe;
}
md-availability-picker .picker .more i.fas:hover {
  color: #4ab6f3;
}
md-availability-picker .availability.xs .header .date {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-availability-picker .availability.xs .picker {
  padding: 0px;
  margin-bottom: 10px;
  margin-left: -4px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: calc(100vw - 30px);
}
md-availability-picker .availability.xs .picker .timeslot {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
  overflow: auto;
}
md-city-select-picker {
  display: block;
}
md-accepting-new-picker {
  display: block;
}
md-accepting-new-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-accepting-new-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 9px 10px;
}
md-custom-item-picker {
  display: block;
  position: relative;
}
md-custom-item-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-custom-item-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.registration-success {
  height: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.registration-success .md-window {
  max-width: 630px;
}
.registration-success h1 {
  color: #2db2fa;
  font-size: 40px;
  font-weight: 100;
  margin: 0 0 40px 0;
  text-align: center;
}
.registration-success h6 {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}
.registration-success h6 span {
  white-space: nowrap;
  display: inline-block;
}
.registration-success a {
  color: #2db2fa;
}
.registration-success .footer {
  color: #333;
  font-size: 12px;
  font-weight: 200;
  text-align: center;
  margin-top: 30px;
}
.md-controller-account .md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  background-color: #fff !important;
}
.md-controller-account .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-color: #fff;
}
.md-controller-account .md-layout-stretch-wrap {
  height: calc(100vh - 224px - 54px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 187px) !important;
}
.md-controller-account .md-layout-stretch-wrap.multiple-pages {
  height: calc(100vh - 238px) !important;
}
.md-controller-account .md-layout-stretch-wrap.pagination {
  height: calc(100vh - 224px - 75px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-alert {
  height: calc(100vh - 177px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-options {
  height: calc(100vh - 177px) !important;
}
.md-controller-account .md-layout-stretch-wrap.pagination-alert {
  height: calc(100vh - 235px - 54px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-items {
  height: calc(100vh - 177px) !important;
}
.md-controller-account .md-layout-stretch-wrap.pagination-items {
  height: calc(100vh - 235px - 54px) !important;
}
.md-controller-account .md-layout-stretch-wrap.pagination-rule {
  height: calc(100vh - 235px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-rule {
  height: calc(100vh - 180px) !important;
}
.md-controller-account .md-layout-stretch-wrap.pagination-template {
  height: calc(100vh - 360px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-template {
  height: calc(100vh - 305px) !important;
}
.md-controller-account .md-layout-stretch-wrap.no-pagination-insurance {
  height: calc(100vh - (50px + 40px + 50px + 40px)) !important;
}
.md-controller-account .md-layout-stretch-wrap.has-filters-insurance {
  height: calc(100vh - (50px + 40px + 50px + 40px + 34px)) !important;
}
.md-controller-account .md-layout-stretch-wrap.multiple-pages-insurance {
  height: calc(100vh - (50px + 40px + 50px + 40px + 34px + 55px)) !important;
}
.md-controller-account .rmd-list-manual {
  height: calc(100vh - 177px) !important;
  background-color: #fff;
}
.md-controller-account .rmd-list-manual .rmd-list-not-found {
  margin-bottom: -82.5px;
}
.md-controller-account .md-content-padding {
  padding: 20px 30px;
}
.md-controller-account .md-section-header .title {
  margin-bottom: 0px;
  margin-left: -2px;
}
.md-controller-account .md-sidebar-filter-list ul.nested-filter-list li {
  padding: 6px 0px;
  line-height: 25px;
}
.md-controller-account .md-sidebar-filter-list .header {
  margin: -2px 0;
}
.md-controller-account .md-pane-sidebar {
  position: fixed;
  width: 300px;
  height: calc(100% - 82px);
}
.md-controller-account .md-pane-sidebar .title {
  font-size: 18px;
}
md-account-summary {
  display: block;
}
md-account-summary .md-pane {
  height: calc(100vh - 50px - 40px - 51px);
  overflow: scroll;
}
md-account-summary .md-section-header .md-form-control-wrap {
  height: 40px;
  padding: 0px 10px;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 5px;
}
md-account-summary .md-section-header .md-form-control-wrap.wide {
  min-width: 192px;
}
md-account-summary .md-section-header .md-form-control-wrap .control-label {
  font-weight: 600;
}
md-account-summary rmd-file-select {
  max-width: fit-content;
}
md-account-summary rmd-member-chips .md-chips md-chip {
  max-width: 100% !important;
}
md-account-summary .profile-form .profile-image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}
md-account-summary .profile-form .profile-image-wrap .avatar-wrap {
  clear: none;
  display: inline-block;
  margin-right: 20px;
}
md-account-summary .profile-form .profile-image-wrap .title {
  clear: none;
  display: inline-block;
  font-size: 18px;
}
md-account-summary .profile-form .edit-link {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}
md-account-summary md-user-form .md-form-group {
  margin-bottom: 20px;
}
md-account-summary md-user-form md-affiliations-picker .md-form-group {
  margin-bottom: 0px;
}
md-account-summary .generateSalesUrlButton {
  margin-right: 5px;
}
md-account-profile {
  display: block;
}
md-account-profile .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-account-profile .password-check.alert {
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
md-account-profile .password-check.alert::before {
  display: none;
}
md-account-profile .password-check.alert::after {
  display: none;
}
md-account-profile .profile-form {
  max-width: 550px;
}
md-account-profile .profile-form .form-group .control-label {
  font-weight: 600;
}
md-account-profile .credential-group {
  margin-bottom: 20px;
}
md-account-profile .credential-group .form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
}
md-account-profile .credential-group .year-picker {
  max-width: 70px;
  margin-left: 10px;
}
md-account-profile .credential-group .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-account-profile .credential-group .add-link i {
  margin-right: 5px;
}
md-provider-custom-selector {
  display: block;
}
md-provider-custom-selector .md-toolbar {
  width: 100%;
}
md-provider-custom-selector .md-toolbar rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 100px;
}
md-provider-custom-selector .md-toolbar md-toolbar-condition-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
md-provider-custom-selector .md-toolbar md-toolbar-procedure-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
md-provider-custom-selector .md-toolbar form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
md-provider-custom-selector .md-toolbar form .form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-provider-custom-selector .md-toolbar form .form-group.switch {
  white-space: nowrap;
}
md-provider-custom-selector .md-toolbar form md-toolbar-city-picker .md-dropdown-menu {
  min-width: 250px;
  max-width: 445em;
}
md-provider-custom-selector .md-toolbar form md-toolbar-specialty-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: fit-content;
}
md-custom-item-editor {
  display: block;
  height: 100%;
}
md-custom-item-editor .checkbox-label {
  display: inline-block;
}
md-custom-item-editor .abandoned-field-label {
  font-weight: 600;
  margin-top: 3px;
}
md-custom-item-editor .md-form-group.isSelected .bootstrap-switch .bootstrap-switch-handle-off {
  background: #f09b37;
}
md-custom-item-editor .logo-section .profile-image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}
md-custom-item-editor .logo-section .profile-image-wrap .avatar-wrap {
  clear: none;
  display: inline-block;
  margin-right: 20px;
}
md-custom-item-editor .logo-section .profile-image-wrap .title {
  clear: none;
  display: inline-block;
  font-size: 18px;
}
md-custom-item-editor .logo-section .edit-link {
  display: block;
  max-width: 68px;
  font-size: 14px;
  margin-bottom: 20px;
}
md-custom-item-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 206px + 55px + 45px + 21px + (81px)));
}
md-custom-item-editor md-locations-list.fax-category .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 40px + 50px + 206px + 126px + 55px + 45px + 21px + (81px)));
}
md-custom-item-editor md-locations-list.fax-category .locations-list-container .md-layout-stretch-wrap {
  min-height: 80px;
}
md-custom-item-editor md-locations-list.referral-source .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 247px + 55px + 45px + 21px + (81px)));
}
md-custom-item-editor .form-display-name {
  width: 94%;
  float: left;
  margin-bottom: 20px;
}
md-custom-item-editor .control-icon {
  padding-top: 7px;
  float: right;
}
md-custom-item-editor .control-icon.icon-with-data i.fa {
  color: #6bb31c;
}
md-custom-item-editor .control-icon.icon-without-data i.fa {
  color: #1da4f0;
}
md-custom-item-editor .icon-display {
  padding-right: 3px !important;
}
md-custom-item-editor .tab-audit-log {
  overflow-x: scroll !important;
  height: calc(100vh - (81px + 40px + 40px + 40px + 40px + 5px));
}
md-custom-item-editor md-custom-item-audit-log {
  display: inline-block;
}
md-custom-item-editor rmd-list-loading-icon {
  width: 550px;
}
md-custom-item-editor .audit-row {
  background-color: #fff;
}
md-custom-item-editor .rmd-list-content {
  width: 1000px;
}
md-file-thumbnail {
  display: block;
  height: 100%;
}
md-file-thumbnail .preview-image {
  display: block;
  background: no-repeat 50% 50%;
  background-size: 100%;
  margin-left: auto;
  margin-right: auto;
}
md-file-thumbnail .preview-image.sm {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}
md-file-thumbnail .preview-image.md {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
}
md-file-thumbnail .preview-image.icon {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
}
md-file-thumbnail .preview-image.img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  background-size: 200%;
}
md-file-thumbnail .preview-image.lg {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
}
md-file-thumbnail .preview-image.xl {
  width: 360px !important;
  height: 360px !important;
  max-width: 360px !important;
  max-height: 360px !important;
}
md-file-thumbnail .preview-image.fit {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  background-size: contain;
}
md-file-thumbnail .preview-image.normal {
  width: 250px !important;
  height: 250px !important;
  max-width: 250px !important;
  max-height: 250px !important;
}
md-file-thumbnail .preview-image.normal-tag img {
  max-width: 250px;
}
md-file-thumbnail.rounded .preview-image {
  border-radius: 50%;
}
md-logo-upload {
  display: block;
}
md-logo-upload p {
  font-size: 14px;
}
md-logo-upload .modal-body .content {
  padding: 5px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-logo-upload .modal-body .content .image {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 60px;
  -ms-flex: 0 60px;
  flex: 0 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-logo-upload .modal-body .content .image:not(.wide-rectangle) {
  margin: 0 30px;
}
md-logo-upload .modal-body .content .image.wide-rectangle {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 120px;
  -ms-flex: 0 120px;
  flex: 0 120px;
}
md-logo-upload .modal-body .content .image.wide-rectangle .avatar-wrap {
  width: 120px;
  height: 60px;
}
md-logo-upload .modal-body .content .image.wide-rectangle .avatar-wrap img {
  width: 120px;
}
md-logo-upload .modal-body .content .image .edit-link {
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  font-size: 14px;
}
md-logo-upload .modal-body .content img.wide.md-avatar {
  padding-left: 3px;
  padding-right: 0.5px;
}
md-logo-upload .modal-body .content .profile-image-wrap {
  position: relative;
}
md-logo-upload .modal-body .content .profile-image-wrap .toolbar {
  position: absolute;
  top: 2px;
  right: 3px;
}
md-logo-upload .modal-body .content .profile-image-wrap .toolbar a i {
  font-size: 16px;
  --fa-primary-color: #fff;
  --fa-secondary-color: #e36776;
  --fa-secondary-opacity: 1;
}
md-logo-upload .modal-body .content .message {
  padding-left: 25px;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin-top: -5px;
}
md-logo-upload .modal-body .content .message .optional {
  font-size: 12px;
  padding-left: 2.5px;
}
md-logo-upload .modal-body .preview {
  margin-bottom: 20px;
  margin-left: -12px;
}
md-custom-item-audit-log {
  padding-top: 10px;
}
md-custom-item-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-custom-item-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-custom-item-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-custom-item-audit-log .details .action.block {
  display: block;
}
md-custom-item-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-custom-item-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-custom-item-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-custom-item-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-custom-item-audit-log .details .file a:hover,
md-custom-item-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-custom-item-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-patient-fields-editor {
  display: block;
}
md-patient-fields-editor .checkbox-label {
  display: inline-block;
}
md-patient-fields-editor .content-section .abandoned-field-label {
  font-weight: 600;
  margin-top: 3px;
}
md-patient-fields-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 172.5px + 55px + 45px + 21px + (81px)));
}
md-affiliation-editor {
  display: block;
}
md-affiliation-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 160px + 55px + 54px + (81px)));
}
md-referral-priority-editor {
  display: block;
}
md-referral-priority-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 240px + 55px + 45px + 21px + (81px)));
}
md-referral-priority-editor .color-picker {
  text-transform: uppercase;
}
md-referral-priority-editor .priority-color .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 34px;
  color: #b1b1b1;
}
md-referral-priority-editor .switch {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  padding-top: 32px;
}
.md-form {
  display: block;
}
.md-form-group {
  position: relative;
}
.md-form-group .form-control-feedback {
  position: absolute;
  top: 9px;
  right: 0px;
}
.md-form-group .form-control-feedback.fa {
  font-size: 16px;
}
.md-form-group .form-control-feedback.fa-asterisk {
  color: #da3549;
}
.md-form-group .fa-asterisk {
  color: #da3549;
}
.md-form-group.has-success .form-control-feedback {
  color: #50b440;
}
.md-form-group.has-warning .form-control-feedback {
  color: #f09b37;
}
.md-form-group.has-error .form-control-feedback {
  color: #da3549;
}
.md-form-group.has-error rmd-radio,
.md-form-group.has-error rmd-checkbox {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: inherit;
}
.md-form-group.has-error rmd-radio label,
.md-form-group.has-error rmd-checkbox label {
  color: #555;
}
.md-form-group.has-error rmd-radio label .fake,
.md-form-group.has-error rmd-checkbox label .fake {
  border-color: #da3549;
}
.md-form-group.has-feedback input.md-form-control[type="text"] {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-right: 25px;
}
.md-form-group.has-feedback rmd-radio,
.md-form-group.has-feedback rmd-checkbox {
  padding-right: initial;
}
.md-form-group.has-toolbar .form-control-toolbar-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn {
  height: 34px;
  line-height: 34px;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon {
  vertical-align: middle;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon.danger {
  color: #da3549;
}
.md-form-group .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.md-form-group {
  display: block;
  margin-bottom: 30px;
}
.md-form-group .control-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  vertical-align: middle;
  color: #000;
}
@media (max-width: 767px) {
  .md-form-group select .form-control {
    font-size: 16px;
  }
}
.md-form-group.has-error .control-label {
  color: #e36776;
}
.md-form-group.has-error input.md-form-control {
  border-color: #e36776;
}
.md-form-group.has-error input.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e36776;
}
.md-form-group.md-form-group-icon {
  position: relative;
}
.md-form-group.md-form-group-icon .icon {
  color: #b1b1b1;
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 34px;
  width: 40px;
  text-align: center;
}
.md-form-group.md-form-group-icon .icon .dropdown-toggle {
  display: block;
  width: 40px;
  line-height: 34px;
  text-align: center;
  color: #b1b1b1;
}
.md-form-group.md-form-group-icon .icon .dropdown-menu {
  margin-left: -50%;
}
.md-form-group.md-form-group-icon .icon.icon-right,
.md-form-group.md-form-group-icon .icon.right {
  left: auto;
  right: 0px;
}
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="email"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="email"] {
  padding-left: 35px;
}
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="email"] {
  padding-right: 35px;
}
.md-form-group .clear-button-holder {
  position: absolute;
  right: 40px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  cursor: pointer;
}
.md-form-group .bootstrap-switch {
  border-radius: 5px;
  border-color: #d0d0d0;
}
.md-form-group .bootstrap-switch + .control-label {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0px;
  text-transform: none;
}
.md-form-group .bootstrap-switch + .control-label .label-badge {
  font-size: 14px;
  line-height: 22px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  padding: 0px;
  width: 22px !important;
  line-height: 18px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  background: #1da4f0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background: #e0e0e0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  border-radius: 5px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  display: inline-block;
  vertical-align: baseline;
}
.md-form-group .tooltips {
  clear: none;
  display: inline-block;
  margin-left: 5px;
}
.md-form-group .tooltips .fa {
  margin-bottom: 3px;
}
.md-form-group .tooltips tip-tip {
  font-size: 14px;
  white-space: nowrap;
}
.md-form-group.inline {
  line-height: 34px;
}
.md-form-group.inline .control-label,
.md-form-group.inline .md-form-control,
.md-form-group.inline .bootstrap-switch {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
input.md-form-control[type="search"],
input.md-form-control[type="text"],
input.md-form-control[type="password"],
input.md-form-control[type="email"],
textarea.md-form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
input.md-form-control[type="search"]:focus,
input.md-form-control[type="text"]:focus,
input.md-form-control[type="password"]:focus,
input.md-form-control[type="email"]:focus,
textarea.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
input.md-form-control[type="search"][disabled],
input.md-form-control[type="text"][disabled],
input.md-form-control[type="password"][disabled],
input.md-form-control[type="email"][disabled],
textarea.md-form-control[disabled],
input.md-form-control[type="search"][readonly],
input.md-form-control[type="text"][readonly],
input.md-form-control[type="password"][readonly],
input.md-form-control[type="email"][readonly],
textarea.md-form-control[readonly] {
  background-color: #f2f2f2;
}
input.md-form-control[type="search"]::-webkit-input-placeholder,
input.md-form-control[type="text"]::-webkit-input-placeholder,
input.md-form-control[type="password"]::-webkit-input-placeholder,
input.md-form-control[type="email"]::-webkit-input-placeholder,
textarea.md-form-control::-webkit-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::-moz-placeholder,
input.md-form-control[type="text"]::-moz-placeholder,
input.md-form-control[type="password"]::-moz-placeholder,
input.md-form-control[type="email"]::-moz-placeholder,
textarea.md-form-control::-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-moz-placeholder,
input.md-form-control[type="text"]:-moz-placeholder,
input.md-form-control[type="password"]:-moz-placeholder,
input.md-form-control[type="email"]:-moz-placeholder,
textarea.md-form-control:-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-ms-input-placeholder,
input.md-form-control[type="text"]:-ms-input-placeholder,
input.md-form-control[type="password"]:-ms-input-placeholder,
input.md-form-control[type="email"]:-ms-input-placeholder,
textarea.md-form-control:-ms-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::placeholder,
input.md-form-control[type="text"]::placeholder,
input.md-form-control[type="password"]::placeholder,
input.md-form-control[type="email"]::placeholder,
textarea.md-form-control::placeholder {
  color: #b1b1b1;
}
@media (max-width: 767px) {
  input.md-form-control[type="search"],
  input.md-form-control[type="text"],
  input.md-form-control[type="password"],
  input.md-form-control[type="email"],
  textarea.md-form-control {
    font-size: 16px;
  }
}
input.md-form-control[type="search"].clear,
input.md-form-control[type="text"].clear,
input.md-form-control[type="password"].clear,
input.md-form-control[type="email"].clear,
textarea.md-form-control.clear {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
textarea.md-form-control {
  height: auto !important;
}
.error-text {
  font-size: 12px;
  padding-top: 5px;
  color: #da3549;
}
input.md-form-control[type="email"] {
  text-transform: lowercase;
}
::-webkit-input-placeholder {
  text-transform: none !important;
}
::-moz-placeholder {
  text-transform: none !important;
}
:-moz-placeholder {
  text-transform: none !important;
}
:-ms-input-placeholder {
  text-transform: none !important;
}
md-scheduling-rule-editor {
  display: block;
}
md-scheduling-rule-editor .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-scheduling-rule-editor .modal-body md-time-unit-picker .input-row {
  width: 100%;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-scheduling-rule-editor .modal-body md-time-unit-picker .input-row .input-column {
  width: calc(50% - 5px);
}
md-scheduling-rule-editor .modal-body md-time-unit-picker .input-row .input-column input,
md-scheduling-rule-editor .modal-body md-time-unit-picker .input-row .input-column .ui-select-bootstrap,
md-scheduling-rule-editor .modal-body md-time-unit-picker .input-row .input-column .ui-select-container {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
md-scheduling-rule-editor .modal-body .md-form-group.no-margin {
  margin-bottom: 0px;
}
md-scheduling-rule-editor .modal-body .time-slot-column .time-form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
md-scheduling-rule-editor .modal-body .time-slot-column .time-form .range-separator {
  clear: none;
  display: inline-block;
  text-align: center;
}
md-scheduling-rule-editor .modal-body .time-slot-column .time-rule-picker .ui-select-toggle {
  min-width: 180px;
}
md-scheduling-rule-editor .modal-body .time-slot-column .md-form-group,
md-scheduling-rule-editor .modal-body .time-slot-column .toolbar-icon {
  margin-bottom: 10px;
}
md-scheduling-rule-editor .modal-body .time-slot-column rmd-time-picker,
md-scheduling-rule-editor .modal-body .time-slot-column .toolbar-icon {
  line-height: 32px;
  margin-left: 10px;
  vertical-align: middle;
}
md-scheduling-rule-editor .modal-body .time-slot-column rmd-time-picker {
  min-width: 80px;
}
md-scheduling-rule-editor .modal-body .time-slot-column .toolbar-icon {
  clear: none;
  display: inline-block;
}
md-scheduling-rule-editor .modal-body .time-slot-column .md-form-group {
  width: calc(50% - 16.5px);
}
md-scheduling-rule-editor .modal-body .time-slot-column .md-form-group.timeframe {
  padding-right: 0px;
  padding-left: 30px;
}
md-scheduling-rule-editor .modal-body .user-picker {
  width: 100%;
}
md-scheduling-rule-editor .modal-body .user-picker input.md-form-control[type="search"] {
  min-width: 100%;
}
md-time-unit-picker {
  display: block;
}
md-time-unit-picker .input-row .input-column + .input-column {
  padding-left: 0px;
}
md-time-unit-picker .dropdown-menu {
  min-width: unset;
}
md-alert-rule-editor {
  display: block;
}
md-alert-rule-editor .status-picker-wrap {
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 12px;
}
md-alert-rule-editor .trigger-event-group .ui-select-bootstrap > .ui-select-choices {
  min-height: 252px;
}
md-alert-rule-editor .trigger-event-group.consult .ui-select-bootstrap > .ui-select-choices {
  min-height: 192px;
}
md-alert-rule-editor .trigger-type-group.form-group.status {
  margin-bottom: 6px;
}
md-alert-rule-editor md-locations-list .location-list .locations-list-container .md-layout-stretch-wrap {
  min-height: 80px;
}
md-alert-rule-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - (81px + 40px + 326px + 119px + 81px));
}
md-alert-rule-editor md-locations-list.form-type-status .md-layout-stretch-wrap {
  height: calc(100vh - (81px + 40px + 446px + 119px + 81px));
}
md-alert-rule-editor md-locations-list.form-type-event .md-layout-stretch-wrap {
  height: calc(100vh - (81px + 40px + 406px + 119px + 81px));
}
md-referral-import-column-editor {
  display: block;
}
md-referral-import-column-editor .modal-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-referral-import-column-editor .modal-header .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  justify-self: flex-start;
}
md-referral-import-column-editor .modal-header .form-group.md-form-group {
  margin: 0;
}
md-referral-import-column-editor .modal-header .close {
  margin-top: -10px;
}
md-referral-import-column-editor .description {
  margin-bottom: 15px;
}
md-referral-import-column-editor .alias-container .alias {
  margin-bottom: 10px;
}
md-referral-import-column-editor .alias-container .alias .form-group.md-form-group {
  margin-bottom: 10px;
}
md-referral-import-column-editor .alias-container .add-link i {
  margin-right: 5px;
}
md-referral-import-column-editor .alias-container .alias-label {
  font-weight: 600;
  margin-bottom: 5px;
}
md-referral-import-column-editor .alias-container .md-form-group {
  margin-bottom: 10px;
}
md-question-option-editor {
  display: block;
  height: 100%;
}
md-question-option-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 160px + 55px + 45px + 21px + (81px)));
}
md-sort-order-settings {
  display: block;
}
md-sort-order-settings .items-settings-row {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #e9eef2;
  padding: 7px 0;
  margin-bottom: 10px;
  margin-left: inherit;
  margin-right: inherit;
}
md-sort-order-settings .items-settings-row:last-child {
  margin-bottom: 0px;
}
md-sort-order-settings .items-settings-row .item-title {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
md-sort-order-settings .items-settings-row .items-settings-row-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-sort-order-settings .items-settings-row .items-settings-row-container .item-handle-container {
  color: #8f8f8f;
  line-height: 26px;
}
md-sort-order-settings .items-settings-row .as-sortable-dragging {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #e9eef2;
}
md-sort-order-settings .items-settings-row .as-sortable-dragging .items-settings-row-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-sort-order-settings .items-settings-row .as-sortable-dragging .items-settings-row {
  margin: 7px 0 0 0;
}
md-sort-order-settings .as-sortable-placeholder {
  border: 1px dashed #d3d3d3;
  border-radius: 5px;
  margin-bottom: 10px;
}
md-task-type-editor {
  display: block;
}
md-task-type-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 160px + 55px + 54px + (81px)));
}
md-referral-instructions {
  display: block;
  position: relative;
  width: 100%;
}
md-referral-instructions #referral-instructions {
  min-height: 100%;
  min-width: 750px;
  color: #000;
}
md-referral-instructions #referral-instructions .toolbar-section {
  margin-top: 10px;
  margin-bottom: 10px;
}
md-referral-instructions #referral-instructions .referral-instruction-wrapper {
  position: relative;
  margin: 0 20px 20px 20px;
}
md-referral-instructions #referral-instructions .referral-instruction-content-wrapper {
  position: relative;
}
md-referral-instructions #referral-instructions .referral-instruction-section {
  position: relative;
  max-width: 1000px;
  padding: 50px;
  padding-bottom: 85px;
  margin: 0 auto;
  background: #fff;
  font-family: arial;
  font-size: 16px;
  line-height: 26px;
}
md-referral-instructions #referral-instructions .patient-name {
  text-transform: uppercase;
}
md-referral-instructions #referral-instructions h1,
md-referral-instructions #referral-instructions h2,
md-referral-instructions #referral-instructions h3 {
  font-weight: 700;
  margin-bottom: 5px;
}
md-referral-instructions #referral-instructions h1 {
  font-size: 22px;
  line-height: 28px;
}
md-referral-instructions #referral-instructions h2 {
  font-size: 18px;
  line-height: 24px;
}
md-referral-instructions #referral-instructions h3 {
  font-size: 16px;
  line-height: 22px;
}
md-referral-instructions #referral-instructions hr {
  border-top: 1px solid #e0e0e0;
  margin: 0px;
  padding: 0px;
}
md-referral-instructions #referral-instructions .content-section {
  display: block;
  margin-bottom: 40px;
}
md-referral-instructions #referral-instructions .content-section .text1,
md-referral-instructions #referral-instructions .content-section .text2 {
  white-space: normal;
}
md-referral-instructions #referral-instructions .content-section.content-section-top {
  margin-bottom: 40px;
}
md-referral-instructions #referral-instructions .content-section.content-section-top .header-section-one {
  margin-bottom: 25px;
}
md-referral-instructions #referral-instructions .content-section.content-section-top .header-section-two {
  margin-bottom: 20px;
}
md-referral-instructions #referral-instructions .content-section .schedule-body {
  padding-right: 10px;
}
md-referral-instructions #referral-instructions .content-section .map-wrapper {
  min-width: 260px;
}
md-referral-instructions #referral-instructions .content-section .map-wrapper rmd-location-map {
  max-height: 180px;
}
md-referral-instructions #referral-instructions .content-section .text-section {
  font-size: 14px;
}
md-referral-instructions #referral-instructions .content-section .text-section.lg {
  font-size: 18px;
  line-height: 24px;
}
md-referral-instructions #referral-instructions .content-section .info-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-instructions #referral-instructions .content-section .info-icon-holder {
  width: 35px;
  font-size: 26px;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
md-referral-instructions #referral-instructions .content-section .info-icon-holder .no-transparency {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
md-referral-instructions #referral-instructions .content-section .info-icon-holder.adjustable-height {
  margin: auto 0;
}
md-referral-instructions #referral-instructions .content-section .info-icon-holder.reason-icon-container {
  font-size: 21px;
}
md-referral-instructions #referral-instructions .content-section .info-content-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-referral-instructions #referral-instructions .content-section .date {
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
}
md-referral-instructions #referral-instructions .content-section .avatar-wrap {
  padding-right: 0px;
  padding-bottom: 10px;
}
md-referral-instructions #referral-instructions .content-section .avatar-wrap md-avatar {
  display: block;
  margin-right: 10px;
}
md-referral-instructions #referral-instructions .content-section .avatar-wrap md-avatar img {
  width: initial !important;
  max-width: initial !important;
  height: 70px !important;
  max-height: 70px !important;
}
md-referral-instructions #referral-instructions .content-section .following-pages-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-referral-instructions #referral-instructions .content-section.logo {
  position: static;
  left: 50px;
  right: 50px;
  bottom: 0px;
  margin-bottom: 50px;
}
md-referral-instructions #referral-instructions .content-section.logo .instructions-page-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-referral-instructions #referral-instructions .content-section.logo .instructions-page-footer a {
  color: #4ab6f3;
}
md-referral-instructions #referral-instructions .content-section.logo .logo-frame {
  display: block;
  font-size: 16px;
  line-height: 16px;
  max-width: 195px;
  margin: 0px;
  font-family: Arial;
  text-decoration: none;
  padding-top: 7px;
}
md-referral-instructions #referral-instructions .content-section.logo .logo-frame span {
  color: #777;
  float: left;
  display: block;
  line-height: 18px;
}
md-referral-instructions #referral-instructions .content-section.logo .logo-frame img {
  display: block;
  float: right;
  margin-top: -3px;
  margin-left: 2px;
  height: 22px;
  vertical-align: top;
  background-repeat: no-repeat;
}
md-referral-instructions #referral-instructions .content-section .info-map-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-instructions #referral-instructions .content-section .info-map-section .info-section {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-referral-instructions #referral-instructions .content-section .info-map-section .map-section {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
md-referral-instructions #referral-instructions .content-section .info-map-section .map-section rmd-location-map img {
  width: 100%;
}
md-referral-instructions #referral-instructions .referral-instruction-section-page-1 .pdf-content .pdf-content-central-wrapper {
  height: 1000px;
}
md-referral-instructions #referral-instructions .pdf-content .pdf-content-central-wrapper {
  height: 1150px;
  overflow: hidden;
}
md-referral-instructions #referral-instructions .pdf-content .pdf-content-central {
  position: relative;
}
md-referral-instructions #referral-instructions .pdf-content .logo {
  margin-top: 20px;
}
md-referral-instructions #referral-instructions .md-profile-img {
  width: 100px !important;
  height: 100px !important;
}
md-referral-instructions #referral-instructions .instruction-section {
  background-color: #f2f2f2;
  margin: 10px 0;
  padding: 27px;
}
md-referral-instructions #referral-instructions .instruction-section .instruction-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-instructions #referral-instructions .question-block-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-instructions #referral-instructions .question-block-content .question-block-column-one {
  margin-right: 100px;
}
md-referral-instructions #referral-instructions .marker-label {
  padding: 5px;
  position: absolute;
  color: #b83a2d;
  top: 53%;
  left: 50%;
  width: 300px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 11px;
}
@media print {
  #referral-instructions {
    position: relative;
    height: 100%;
    width: 100%;
  }
  #referral-instructions .toolbar-section {
    display: none;
  }
  #referral-instructions .referral-instruction-wrapper {
    height: 100%;
    width: 100%;
    margin: 0px;
  }
  #referral-instructions .referral-instruction-section {
    border: none;
    padding: 0;
    padding-bottom: 0;
    width: 100%;
  }
  #referral-instructions .content-section {
    page-break-inside: avoid;
  }
  #referral-instructions .content-section.instruction-content-section {
    page-break-inside: auto;
    border: 1px solid #e0e0e0;
  }
  #referral-instructions .content-section.logo {
    position: relative;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
  }
  #referral-instructions .info-map-section {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
  #referral-instructions #referral-instruction-section.referral-instruction-section {
    padding-bottom: 0;
    padding-right: 100px;
  }
  #referral-instructions a[href]:after {
    display: none;
  }
}
.md-referral-instructions-modal .modal-dialog {
  width: 1040px;
}
.md-referral-instructions-modal .modal-content {
  padding: 0px;
}
@media print {
  body.modal-open {
    width: 900px;
    overflow: visible;
    height: auto;
  }
  body.modal-open .md-referral-instructions-modal {
    position: relative;
    width: 100%;
    height: 100%;
  }
  body.modal-open .md-referral-instructions-modal .modal-dialog {
    height: auto !important;
    width: 100% !important;
    overflow: visible;
    margin: 0px !important;
  }
  body.modal-open .md-referral-instructions-modal .modal-content {
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    outline: none;
  }
}
rmd-location-map {
  display: block;
}
rmd-location-map iframe {
  width: 100%;
  max-height: 300px;
  border: none;
}
rmd-location-map img {
  display: block;
  max-width: 100%;
  height: auto;
}
md-referral-notifications {
  display: block;
}
md-referral-notifications .notification-row {
  margin-bottom: 10px;
}
md-referral-notifications .notification-row:last-child {
  margin-bottom: 0px;
}
md-referral-notifications .notification-row .date {
  margin-right: 10px;
}
md-referral-notifications .notification-row .alertDescription {
  white-space: normal;
}
md-referral-notifications .notification-row .text1 {
  display: block;
}
md-rejection-reason-modal {
  display: block;
}
md-rejection-reason-modal .reason-dropdown .md-dropdown-group {
  width: 100%;
}
md-rejection-reason-modal .reason-dropdown .dropdown {
  width: 100%;
}
md-rejection-reason-modal .reason-dropdown .dropdown .dropdown-toggle {
  font-weight: 600;
}
md-rejection-reason-modal .reason-dropdown .dropdown .dropdown-toggle .dropdown-title {
  text-transform: uppercase;
}
md-rejection-reason-modal .reason-dropdown .dropdown .dropdown-menu {
  width: 100%;
  max-width: 800px;
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
md-rejection-reason-modal .reason p {
  font-size: 14px;
  color: #666;
}
md-rejection-reason-modal .reason-text {
  margin-left: 70px;
  margin-right: 70px;
  margin-bottom: 30px;
  font-size: 14px !important;
  color: #686868;
  font-weight: 600;
}
md-rejection-reason-modal .group-reason {
  margin-bottom: 8px !important;
}
md-referral-schedule {
  display: block;
}
md-referral-schedule .modal-body .form-group.has-error md-date,
md-referral-schedule .modal-body .form-group.has-error md-time {
  color: #e36776;
}
rmd-time-picker {
  clear: none;
  display: inline-block;
}
rmd-time-picker .disabled {
  cursor: default;
}
rmd-time-picker .time {
  font-size: 12px !important;
  font-weight: 600;
}
@media (max-width: 767px) {
  rmd-time-picker .time {
    font-size: 14px !important;
  }
}
rmd-time-picker .md-dropdown-menu {
  max-height: 250px;
  overflow-y: auto;
}
rmd-time-picker .md-dropdown-menu li {
  height: 30px;
}
rmd-date-picker + rmd-time-picker {
  margin-left: 10px;
}
md-time {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
  white-space: nowrap;
}
md-time i {
  font-size: 14px;
  margin-right: 5px;
}
md-time .time {
  clear: none;
  display: inline-block;
}
rmd-date-picker {
  clear: none;
  display: inline-block;
  position: relative;
}
rmd-date-picker .date {
  font-size: 12px !important;
  font-weight: 600;
}
@media (max-width: 767px) {
  rmd-date-picker .date {
    font-size: 14px !important;
  }
}
rmd-date-picker .fa {
  font-size: 11px;
  position: relative;
  top: -1px;
}
@media (max-width: 767px) {
  rmd-date-picker .fa {
    font-size: 13px;
  }
}
rmd-date-picker input {
  display: block;
  border: 0;
  background: 0;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
  z-index: 2;
  text-indent: -1000px;
}
md-referral-report-date {
  display: block;
}
md-referral-report-date .modal-body .form-group.appointment-section {
  margin-bottom: 30px;
}
md-referral-report-date .modal-body .form-group.has-error md-date,
md-referral-report-date .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-report-date .modal-body .status-picker-wrap .status {
  margin-left: auto;
  margin-right: auto;
}
md-referral-report-date .modal-body .status-picker-wrap .md-referral-status-picker-menu.dropdown-menu {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
md-referral-report-date .file-loaders {
  font-weight: 600;
}
md-referral-report-date .file-loaders .action-link {
  cursor: pointer;
  line-height: 20px;
  color: #1da4f0;
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
md-referral-report-date .file-loaders i {
  margin-right: 5px;
}
md-referral-report-date .file-loaders .md-dropzone {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 12px;
  text-transform: uppercase;
}
md-referral-report-date .file-loaders .dz-preview {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-report-date .file-loaders .dz-preview .dz-details {
  margin: auto;
}
md-referral-report-date .file-loaders .md-dropzone-file-preview .dz-icon {
  margin-right: 0;
}
.vertical-scroll-report-date-modal .modal-dialog {
  height: 85%;
}
.vertical-scroll-report-date-modal .modal-dialog .md-modal .modal-body {
  height: calc(100vh - 40px - 81px - 81px - 80px);
  overflow: scroll;
  overflow-x: hidden;
}
md-referral-selector {
  display: block;
}
md-referral-selector .md-modal .modal-body {
  padding-top: 10px;
  padding-bottom: 10px;
}
md-referral-selector .md-modal .modal-body .md-loader {
  overflow: scroll;
}
md-referral-selector .md-modal .modal-body .no-click rmd-list .rmd-list-item .column.column-group {
  cursor: default;
}
md-referral-selector .md-modal .modal-body .form-group.appointment-section {
  margin-bottom: 30px;
}
md-referral-selector .md-modal .modal-body .form-group.has-error md-date,
md-referral-selector .md-modal .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-form-view {
  display: block;
}
md-referral-form-editor {
  display: block;
}
md-referral-form-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-referral-form-editor .control-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-form-editor .control-row .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-referral-form-editor .control-row .view-files {
  margin-right: 15px;
}
md-referral-form-editor .control-row .form-dropdown {
  margin-right: 15px;
}
md-referral-form-editor .control-row .form-dropdown .dropdown {
  font-size: 16px;
}
md-referral-form-editor .control-row .dropdown-menu.dropdown-menu-right.md-dropdown-menu.search {
  left: 15%;
  overflow: scroll;
  max-height: 300px;
}
md-referral-form-editor .control-row .close-button {
  -webkit-align-self: baseline;
  align-self: baseline;
  -ms-flex-item-align: baseline;
}
md-referral-form-editor .md-dropzone-file-preview {
  display: none;
}
md-referral-form-editor .attachment-frame {
  padding: 1px;
}
md-referral-form-editor .attachments-pane {
  margin-top: 20px;
}
md-referral-form-editor .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-referral-form-editor .attachments {
  margin-bottom: 10px;
}
md-referral-form .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 7px;
}
md-referral-form .question-pane.has-question-error {
  border-color: #da3549;
}
md-referral-form .question-group {
  margin-bottom: 0px !important;
}
md-referral-form .question-group.question-section-header,
md-referral-form .question-group.question-section-text {
  margin-bottom: 0px;
}
md-referral-form .question-group.question-datetime .md-form-group {
  margin-bottom: 0px;
}
md-referral-form .question-group.question-datetime .md-form-group + .md-form-group {
  margin-left: 10px;
}
md-referral-form .question-group.question-datetime .md-form-group rmd-date-picker,
md-referral-form .question-group.question-datetime .md-form-group rmd-time-picker {
  width: 150px;
}
md-referral-form .question-group .question-content {
  position: relative;
}
md-referral-form .question-group .question-content.header {
  padding-top: 0px;
  padding-left: 0px;
}
md-referral-form .question-group .question-content h4,
md-referral-form .question-group .question-content .control-label,
md-referral-form .question-group .question-content .title,
md-referral-form .question-group .question-content .required,
md-referral-form .question-group .question-content .help-text,
md-referral-form .question-group .question-content .section-text {
  color: #000;
}
md-referral-form .question-group .question-content .control-label,
md-referral-form .question-group .question-content .help-text {
  line-height: 24px;
}
md-referral-form .question-group .question-content .control-label {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  width: 100%;
}
md-referral-form .question-group .question-content .control-label .required {
  clear: none;
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
  text-transform: none;
  font-style: italic;
}
md-referral-form .question-group .question-content .control-label .help-text {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #999;
}
md-referral-form .question-group .question-content .form-control {
  height: unset;
}
md-referral-form .question-group .question-content .form-control.input-small {
  max-width: 200px;
  display: inline-block;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 24px;
  line-height: 24px;
}
md-referral-form .question-group .question-content .scale-option {
  clear: none;
  display: inline-block;
}
md-referral-form .question-group .question-content .scale-option .scale-wrap {
  text-align: center;
  margin-right: 10px;
}
md-referral-form .question-group .question-content .scale-option .scale-label {
  font-size: 14px;
}
md-referral-form .question-group .question-content .scale-option .radio-wrap {
  width: 100%;
}
md-referral-form .question-group .question-content .scale-option .radio-wrap rmd-radio {
  margin-left: auto;
  margin-right: auto;
}
md-referral-form .question-group .nested-question {
  padding-left: 20px;
  padding-bottom: 30px;
}
md-referral-form .question-group .nested-question.padding-right {
  padding-right: 10px;
}
md-referral-form .question-group .nested-question .question-group {
  margin-top: 10px;
}
md-referral-form .teeth-chart-container .nav-tabs li a {
  color: #555;
}
md-referral-form .teeth-chart-container .nav-tabs li.active a {
  color: initial;
}
md-referral-form .teeth-chart-container .tab-content {
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  border-top: none;
}
md-referral-form .attachments-pane .attachment {
  width: fit-content;
}
md-referral-form md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-referral-form md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-referral-form .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-referral-form .action-link i {
  margin-right: 5px;
}
md-referral-form .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-form .file-loaders md-dropzone {
  margin-left: 15px;
}
md-referral-form .file-loader-icon {
  font-weight: bold;
  font-size: 16px;
}
md-custom-option-picker .md-custom-option-picker {
  position: relative;
}
md-custom-option-picker .md-custom-option-picker .small-line {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0px;
}
md-custom-option-picker .md-custom-option-picker .small-line.item .md-form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}
md-custom-option-picker .md-custom-option-picker .small-line.item:first-child .md-form-group {
  margin-top: 0px;
}
md-custom-option-picker .md-custom-option-picker .small-line.link a {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-custom-option-picker .md-custom-option-picker .small-line.link a i {
  margin-right: 5px;
}
md-custom-option-picker .md-custom-option-picker .custom-item-input {
  clear: none;
  display: inline-block;
  width: 100%;
}
md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar .btn {
  padding-right: 0px;
}
md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker {
  width: 100%;
}
md-hovermap {
  display: block;
  width: 100%;
  height: 100%;
}
md-hovermap .values-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 25px;
}
md-hovermap.teeth-chart .teeth-chart-label-container {
  padding-right: 0;
}
md-hovermap.teeth-chart .teeth-chart-label-container .teeth-chart-comment-label {
  width: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-align: left;
  padding-left: 22px;
}
md-hovermap.teeth-chart .teeth-chart-input-container {
  padding-left: 0;
}
md-hovermap .normal-width {
  width: 500px !important;
}
md-icd .md-icd {
  position: relative;
}
md-icd .md-icd .small-line {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0px;
}
md-icd .md-icd .small-line.item .md-form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}
md-icd .md-icd .small-line.item:first-child .md-form-group {
  margin-top: 0px;
}
md-icd .md-icd .small-line.link a {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-icd .md-icd .small-line.link a i {
  margin-right: 5px;
}
md-icd .md-icd .code-input {
  clear: none;
  display: inline-block;
  width: 100%;
}
md-icd .md-icd .code-input .form-control-toolbar .btn {
  padding-right: 0px;
}
md-referral-provider-editor {
  display: block;
}
md-referral-provider-editor .has-error .form-control {
  border-color: #e36776 !important;
}
md-referral-provider-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-provider-editor .md-phone-picker .md-btn.icon {
  padding-right: 0;
}
md-specialty-input {
  display: block;
}
md-referral-provider-viewer {
  display: block;
}
md-referral-provider-viewer .has-error .form-control {
  border-color: #e36776 !important;
}
md-referral-provider-viewer .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-provider-viewer .md-phone-picker .md-btn.icon {
  padding-right: 0;
}
md-referral-appointment-schedule {
  display: block;
}
md-referral-appointment-schedule md-availability-picker .header {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-appointment-schedule md-availability-picker .picker .timeslot-container {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-appointment-schedule .provider-row {
  margin-bottom: 20px;
}
md-referral-appointment-schedule .provider-row .provider-details {
  text-align: center;
}
md-referral-appointment-schedule .step {
  width: 100%;
}
md-referral-appointment-schedule .step.step-confirm {
  text-align: center;
}
md-referral-appointment-schedule .step.step-confirm .info-row {
  margin-bottom: 10px;
}
md-referral-appointment-schedule .step.step-select {
  text-align: center;
}
md-referral-appointment-schedule .step.step-select .info-row {
  margin-bottom: 10px;
}
md-referral-appointment-schedule .step.step-select .info-row .info-title {
  font-weight: 600;
}
md-referral-appointment-schedule .form-row.locations-row .md-form-group.location {
  margin-bottom: 10px;
}
md-referral-appointment-schedule .form-row.referral-reason-row {
  margin-bottom: 10px;
}
md-referral-appointment-schedule .form-row.scheduler-row {
  margin-top: 10px;
}
md-referral-appointment-schedule .form-picker {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
md-referral-appointment-schedule .has-error .form-control {
  border-color: #e36776;
}
md-referral-appointment-schedule .md-loader-indicator {
  text-align: center;
  font-size: 35px;
  color: #1da4f0;
  margin-top: 20px;
}
md-referral-appointment-schedule .no-results {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}
md-referral-appointment-schedule .no-results .fa-warning {
  color: #f09b37;
}
md-referral-appointment-schedule .no-results .message {
  margin-left: 10px;
}
md-location-picker {
  display: block;
}
md-location-picker .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
md-location-picker .location {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-location-picker .location .address {
  color: #666;
}
md-referral-receiving-provider-warning-modal {
  display: block;
}
md-referral-portal-download-instruction-modal {
  display: block;
}
md-referral-portal-download-instruction-modal .checkbox-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 20px;
}
md-referral-portal-download-instruction-modal .form-group.md-form-group .md-form-control-wrap .fix-width-general {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-portal-download-instruction-modal .form-group.md-form-group .md-form-control-wrap .fix-width-general .md-form-control {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
md-referral-portal-download-instruction-modal .form-group.md-form-group .md-form-control-wrap .fix-width-general .text-info {
  margin-bottom: -6px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
}
md-import-data {
  display: block;
}
md-import-data .modal-body .file-list {
  margin-bottom: 10px;
}
md-import-data .modal-body .file-list .md-link {
  line-height: 20px;
  vertical-align: middle;
}
md-import-data .modal-body .file-list .md-link i {
  margin-right: 5px;
  color: #e36776;
}
md-import-data .modal-body .rmd-list-manual {
  background-color: #fff;
}
md-provider-override-reason {
  display: block;
}
md-provider-override-reason .reason-dropdown .md-dropdown-group {
  width: 100%;
}
md-provider-override-reason .reason-dropdown .dropdown {
  width: 100%;
}
md-provider-override-reason .reason-dropdown .dropdown .dropdown-toggle {
  font-weight: 600;
}
md-provider-override-reason .reason-dropdown .dropdown .dropdown-toggle .dropdown-title {
  text-transform: uppercase;
  font-weight: 600;
}
md-provider-override-reason .reason-dropdown .dropdown .dropdown-menu {
  width: 100%;
  max-width: 800px;
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
md-provider-override-reason .reason p {
  font-size: 14px;
  color: #666;
}
md-fax-confirm-number {
  display: block;
}
md-fax-confirm-number .number-input {
  margin-top: 5px;
  max-width: 128px;
  display: inline-block;
}
md-priority-override-reason {
  display: block;
}
md-priority-override-reason .reason-dropdown .md-dropdown-group {
  width: 100%;
}
md-priority-override-reason .reason-dropdown .dropdown {
  width: 100%;
}
md-priority-override-reason .reason-dropdown .dropdown .dropdown-toggle {
  font-weight: 600;
}
md-priority-override-reason .reason-dropdown .dropdown .dropdown-toggle .dropdown-title {
  text-transform: uppercase;
  font-weight: 600;
}
md-priority-override-reason .reason-dropdown .dropdown .dropdown-menu {
  width: 100%;
  max-width: 800px;
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
md-priority-override-reason .reason p {
  font-size: 14px;
  color: #666;
}
.priority-reason-modal-width .modal-dialog .modal-content {
  width: 680px;
}
md-cancel-reason-modal {
  display: block;
}
md-cancel-reason-modal .reason-dropdown .md-dropdown-group {
  width: 100%;
}
md-cancel-reason-modal .reason-dropdown .dropdown {
  width: 100%;
}
md-cancel-reason-modal .reason-dropdown .dropdown .dropdown-toggle {
  font-weight: 600;
}
md-cancel-reason-modal .reason-dropdown .dropdown .dropdown-toggle .dropdown-title {
  text-transform: uppercase;
  font-weight: 600;
}
md-cancel-reason-modal .reason-dropdown .dropdown .dropdown-menu {
  width: 100%;
  max-width: 800px;
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
md-cancel-reason-modal .reason p {
  font-size: 14px;
  color: #666;
}
md-cancel-reason-modal .reason-text {
  margin-left: 70px;
  margin-right: 70px;
  margin-bottom: 30px;
  font-size: 14px !important;
  color: #686868;
  font-weight: 600;
}
md-cancel-reason-modal .group-reason {
  margin-bottom: 8px !important;
}
md-table-settings {
  display: block;
}
md-table-settings .columns-settings-row {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #e9eef2;
  padding: 7px 0;
  margin-bottom: 10px;
  margin-left: inherit;
  margin-right: inherit;
}
md-table-settings .columns-settings-row:last-child {
  margin-bottom: 0px;
}
md-table-settings .columns-settings-row .column-title {
  margin-right: 10px;
}
md-table-settings .columns-settings-row .columns-settings-row-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-table-settings .columns-settings-row .columns-settings-row-container .column-handle-container {
  color: #8f8f8f;
  line-height: 26px;
}
md-table-settings .columns-settings-row .columns-settings-row-container .align-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-table-settings .columns-settings-row .as-sortable-dragging {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #e9eef2;
}
md-table-settings .columns-settings-row .as-sortable-dragging .columns-settings-row-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-table-settings .columns-settings-row .as-sortable-dragging .columns-settings-row {
  margin: 7px 0 0 0;
}
md-table-settings .as-sortable-placeholder {
  border: 1px dashed #d3d3d3;
  border-radius: 5px;
  margin-bottom: 10px;
}
md-batch-operator {
  display: block;
}
md-batch-operator .batch-operator-content .update-status {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-batch-operator .batch-operator-content .update-status .update-status-picker {
  margin-top: 3px;
  margin-left: 20px;
}
md-file-picker-aside {
  display: block;
}
md-file-picker-aside rmd-list {
  background-color: #fff;
}
md-file-picker-aside rmd-list .md-layout-stretch-wrap {
  height: calc(100vh - 60px - 75px - 20px - 43px - 10px - 81px);
}
md-file-picker-aside rmd-list .md-layout-stretch-wrap.has-pagination {
  height: calc(100vh - 60px - 75px - 20px - 43px - 70px - 10px - 81px);
}
md-file-picker-aside rmd-list-pagination {
  margin-bottom: 20px;
}
.wide-picker-modal .modal-dialog {
  width: 85%;
}
.wide-picker-height-modal .modal-dialog {
  width: 85%;
}
.wide-picker-height-modal .modal-dialog .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-referral-step-provider-custom {
  display: block;
}
md-referral-step-provider-custom .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-referral-step-provider-custom .md-layout-stretch-wrap .md-layout-stretch-content.scrollable.bordered.padded {
  padding: 20px;
}
md-referral-step-provider-custom rmd-list .add-contact {
  margin-top: 10px;
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider-custom rmd-list .add-contact .npi-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider-custom rmd-list .add-contact .npi-group .md-btn.secondary {
  height: 34px;
  line-height: 34px;
  margin-left: 10px;
  margin-top: 25px;
}
md-referral-step-provider-custom rmd-list .add-contact .form-group {
  margin-bottom: 15px;
}
md-referral-step-provider-custom rmd-list .add-contact .form-group .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-step-provider-custom rmd-list .add-contact .text2 {
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  md-referral-step-provider-custom rmd-list .rmd-list-content .column-name {
    max-width: 450px;
    width: 450px;
  }
}
md-referral-step-provider-custom .provider-row {
  cursor: pointer;
}
md-referral-step-provider-custom .provider-row .provider-name {
  cursor: pointer;
  color: #1da4f0;
}
md-referral-step-provider-custom .provider-row .provider-name:hover,
md-referral-step-provider-custom .provider-row .provider-name:focus {
  color: #4ab6f3;
}
md-referral-step-provider-custom .provider-row .picker-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-referral-step-provider-custom .provider-row .picker-wrap md-department-picker {
  width: 100%;
  max-width: 300px;
}
md-referral-step-provider-custom .provider-row .column .group {
  max-width: 90%;
}
md-score {
  display: block;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50%;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  border: 2px solid #1da4f0;
  color: #000;
}
md-score.xs {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  border-radius: 50%;
  line-height: 22px;
}
md-score.sm {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  border-radius: 50%;
  line-height: 28px;
}
md-score.lg {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  border-radius: 50%;
  font-size: 18px;
  line-height: 58px;
}
md-department-picker .md-more {
  padding-bottom: 10px;
  text-align: center;
}
md-department-picker .md-more a {
  clear: none;
  display: inline-block;
}
md-department-picker .md-loader.loading .md-loader-indicator {
  padding: 10px 0px;
  font-size: 25px;
}
md-department-picker .department-picker {
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-department-picker .department-picker.not-initialized {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
md-department-picker .content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 40px;
  text-align: left;
  padding: 5px 15px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
  color: #888;
  position: relative;
}
md-department-picker .content.disabled {
  cursor: not-allowed;
  background-color: #f2f2f2;
}
md-department-picker .content .fa {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 42px;
  text-align: center;
  font-size: 17px;
  line-height: 17px;
  color: #888;
}
md-department-picker .content .fa.fa-sort-asc {
  top: 14px;
}
md-department-picker .content .fa.fa-sort-desc {
  top: 7px;
}
md-department-picker .content .fa.fa-caret-right {
  top: 12px;
}
md-department-picker .content .content-text {
  width: 100%;
  display: block;
  margin-right: 30px;
}
md-department-picker .content .content-text .title,
md-department-picker .content .content-text .subtitle,
md-department-picker .content .content-text .none {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #000;
}
md-department-picker .content .content-text .title {
  font-weight: 600;
  display: block;
  line-height: 16px;
}
md-department-picker .content .content-text .subtitle {
  font-weight: 400;
  display: block;
  color: #666;
  line-height: 14px;
}
md-department-picker .content .content-text .none {
  font-weight: 600;
  display: block;
  line-height: 30px;
}
md-department-picker .content .content-text .fa-asterisk {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  position: unset;
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
  color: #da3549;
}
md-department-picker .content.selected {
  background-color: #f7f7f7;
}
md-department-picker .content:hover {
  background-color: #f2f2f2;
}
md-department-picker .dropdown-menu {
  border-radius: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border-top: 0px;
  padding: 0px;
  max-height: 250px;
}
md-department-picker .dropdown-menu .content {
  border: none;
}
md-department-picker .dropdown-menu .search-input {
  padding: 10px 15px;
}
md-department-picker .pane-frame {
  overflow: hidden;
}
md-department-picker .pane {
  overflow: hidden;
  width: 200%;
}
md-department-picker .pane .slide {
  width: 50%;
  float: left;
}
md-department-picker .pane .slide .header {
  font-size: 13px;
  line-height: 24px;
  padding: 5px 15px;
  border-bottom: 1px dashed #d1d1d1;
}
md-department-picker .pane .slide .header .header-title {
  color: #000;
  font-weight: 600;
}
md-department-picker .pane .slide .header .header-back {
  float: right;
  color: #1da4f0;
}
md-department-picker .pane .slide ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
md-department-picker .pane .slide ul li {
  cursor: pointer;
}
md-department-picker .pane .slide ul .content {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
md-department-picker .pane .slide ul .content .content-text {
  margin-right: 0px;
}
md-department-picker .pane .slide ul .content .fa {
  display: none;
}
md-department-picker .pane .slide ul .content:last-child {
  border-bottom: 0;
}
md-department-picker .pane .slide ul .content:hover .content-text {
  margin-right: 30px;
}
md-department-picker .pane .slide ul .content:hover .fa {
  display: block;
}
md-department-picker .pane.at-zero {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: -o-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: -ms-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
md-department-picker .pane.at-left {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: -o-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: -ms-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
md-department-picker .favorite-icon {
  padding-top: 12px;
}
md-department-picker .favorite-red.favorite-icon {
  display: block !important;
}
md-department-picker .favorite-location,
md-department-picker .favorite-department {
  padding-right: 25px;
}
md-department-picker .favorite-icon {
  margin-right: 3px;
  font-size: 14px !important;
}
md-department-picker .favorite-title {
  margin-right: 30px;
}
md-department-picker .favorite-location {
  font-size: 10px !important;
}
md-department-picker .pull-order-icon {
  display: block !important;
  padding-top: 12px;
  left: -13px;
  font-size: 8px !important;
}
md-department-picker .pull-order-icon-green {
  color: #70c060 !important;
}
md-account-favorites {
  display: block;
}
md-account-favorites .md-section-header .md-form-control-wrap {
  height: 40px;
  padding: 0px 10px;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 5px;
}
md-account-favorites .md-section-header .md-form-control-wrap.wide {
  min-width: 192px;
}
md-account-favorites .btn-delete-favorites.clear {
  color: #da3549;
}
md-account-favorites .btn-delete-favorites.clear:hover {
  color: #da3549;
}
md-account-favorites .file-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-account-favorites .file-toolbar-icons .first-row,
md-account-favorites .file-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-account-favorites .md-section-header {
  margin-bottom: 0px !important;
}
md-account-favorites .md-layout-stretch-wrap.no-pagination.list {
  height: calc(100vh - 187px) !important;
}
md-account-favorites .md-toolbar .form-group .control-label {
  margin-right: 0px;
}
md-account-favorites .md-toolbar .md-dropdown-group {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-account-favorites .md-toolbar .linked-account-picker .dropdown-menu {
  min-width: unset;
  max-width: unset;
}
md-account-favorites .md-toolbar md-search-picker {
  width: auto;
}
md-account-favorites .md-toolbar md-search-picker .md-dropdown-menu,
md-account-favorites .md-toolbar md-toolbar-user-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
md-account-favorites .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
md-account-favorites .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: fit-content;
}
md-account-favorites .favorite-link {
  margin-bottom: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-account-favorites .favorite-link i {
  margin-right: 5px;
}
md-account-favorites .delete-column-aside {
  min-width: 10px !important;
}
md-account-favorites .min-delete-column-aside {
  min-width: 10px !important;
}
md-account-favorites .favorite-nowrap {
  white-space: nowrap;
}
md-account-favorites .favorite-nowrap .text1,
md-account-favorites .favorite-nowrap .text2 {
  padding-right: 20px !important;
}
.md-account-favorites-delete-favorite {
  font-weight: 600;
}
md-account-mfa {
  display: block;
}
md-account-mfa .md-form-group:last-child {
  margin-bottom: 0px;
}
md-account-organization {
  display: block;
}
md-account-organization .md-pane {
  height: calc(100vh - 50px - 40px - 51px);
  overflow: scroll;
}
md-account-organization md-affiliations-picker md-filter-chips .md-chips md-chip {
  width: fit-content;
  max-width: 100%;
}
md-account-organization rmd-file-select {
  max-width: fit-content;
}
md-account-organization .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-account-organization .link-referrals,
md-account-organization .restrict-edits,
md-account-organization .affiliated {
  min-width: 0 !important;
}
md-account-organization .md-section-header .md-form-control-wrap {
  height: 40px;
  min-width: 192px;
  padding: 0px 10px;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 5px;
}
md-account-organization .md-section-header .md-form-control-wrap.mfa {
  min-width: 162px;
}
md-account-organization .fa-external-link {
  margin-left: 5px;
}
md-account-organization .form-row .organization-form .summary {
  overflow-y: auto !important;
}
md-account-organization .form-row .organization-form .md-form-group {
  margin-bottom: 20px;
}
md-account-organization .form-row .organization-form md-npi-record-picker .md-form-group {
  margin-bottom: 5px;
}
md-account-organization .form-row .organization-form md-tax-id-picker .md-form-group {
  margin-bottom: 10px;
}
md-account-organization .form-row .organization-form md-affiliations-picker .md-form-group {
  margin-bottom: 0px;
}
md-account-organization .form-row .organization-form .profile-image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}
md-account-organization .form-row .organization-form .profile-image-wrap .avatar-wrap {
  clear: none;
  display: inline-block;
  margin-right: 20px;
}
md-account-organization .form-row .organization-form .profile-image-wrap .title {
  clear: none;
  display: inline-block;
  font-size: 18px;
}
md-account-organization .form-row .organization-form .edit-link {
  display: block;
  max-width: 68px;
  font-size: 14px;
  margin-bottom: 20px;
}
md-account-organization .office-photos-row {
  margin-top: 20px;
}
md-account-organization .office-photos-row .logo-group {
  margin-bottom: 0px;
}
md-account-organization .office-photos-row .organization-photos .md-form-group {
  margin-bottom: 0px;
}
md-account-organization .office-photos-row .organization-photos .gallery-image {
  cursor: pointer;
  position: relative;
  width: 250px;
  height: 250px;
  margin: 5px 20px;
  border-radius: 3px;
  display: inline-block;
}
md-account-organization .office-photos-row .organization-photos .gallery-image .preview-image {
  background-size: cover;
}
md-account-organization .office-photos-row .organization-photos .gallery-image .toolbar {
  position: absolute;
  top: 15px;
  right: 15px;
}
md-account-organization .office-photos-row .organization-photos .gallery-image .toolbar a i {
  font-size: 20px;
  --fa-primary-color: #fff;
  --fa-secondary-color: #e36776;
  --fa-secondary-opacity: 1;
}
md-account-organization .dropzone-row {
  margin-top: 10px;
}
md-account-organization .account-name-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-organization .custom-btn {
  height: 34px !important;
}
md-account-organization .control-icon {
  padding-top: 7px;
  float: right;
}
md-account-organization .icon-with-data i.fa {
  color: #6bb31c;
}
md-account-organization .icon-without-data i.fa {
  color: #1da4f0;
}
md-account-organization .form-display-name {
  max-width: calc(100% - 30px);
  float: left;
}
md-account-organization .account-section {
  margin-left: 1px;
  width: calc(100%) !important;
  margin-top: 15px;
}
md-account-organization .account-section md-integration-mapping-picker .btn.danger {
  padding-right: 10px !important;
}
md-account-organization .md-form-control-wrap {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: box !important;
  display: flex !important;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-organization .col-sm-4.align-right {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 32px;
}
md-npi-record-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  display: block;
}
md-npi-record-picker .picker-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-column-gap: 29px;
  -moz-column-gap: 29px;
  column-gap: 29px;
}
md-npi-record-picker .picker-container .input-row {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 calc(50% - 19px);
  -ms-flex: 1 0 calc(50% - 19px);
  flex: 1 0 calc(50% - 19px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: calc(50% - 15px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
md-npi-record-picker .picker-container .input-row .md-form-group {
  margin-bottom: 10px;
}
md-npi-record-picker .picker-container .input-row .input-group {
  width: 100%;
}
md-npi-record-picker .picker-container .input-row .npi-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 185px;
  -ms-flex: 0 0 185px;
  flex: 0 0 185px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 10px;
}
md-npi-record-picker .picker-container .input-row .organization-display {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 10px;
}
md-npi-record-picker .picker-container .input-row .md-btn.clear {
  padding-right: 0;
}
md-npi-record-picker .picker-container .input-row .md-form-group {
  margin-bottom: 10px;
}
md-npi-record-picker .picker-container .input-row .text-muted {
  color: #b1b1b1;
}
md-npi-record-picker .picker-container .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-npi-record-picker .picker-container .add-link i {
  margin-right: 5px;
}
md-organization-logo-upload {
  display: block;
}
md-organization-logo-upload p {
  font-size: 14px;
}
md-organization-logo-upload .modal-body .content {
  padding: 5px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-organization-logo-upload .modal-body .content .image {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 60px;
  -ms-flex: 0 60px;
  flex: 0 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-organization-logo-upload .modal-body .content .image:not(.wide-rectangle) {
  margin: 0 30px;
}
md-organization-logo-upload .modal-body .content .image.wide-rectangle {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 120px;
  -ms-flex: 0 120px;
  flex: 0 120px;
}
md-organization-logo-upload .modal-body .content .image.wide-rectangle .avatar-wrap {
  width: 120px;
  height: 60px;
}
md-organization-logo-upload .modal-body .content .image.wide-rectangle .avatar-wrap img {
  width: 120px;
}
md-organization-logo-upload .modal-body .content .image .edit-link {
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  font-size: 14px;
}
md-organization-logo-upload .modal-body .content img.wide.md-avatar {
  padding-left: 3px;
  padding-right: 0.5px;
}
md-organization-logo-upload .modal-body .content img.white.md-avatar {
  padding: 0 1px;
}
md-organization-logo-upload .modal-body .content .profile-image-wrap {
  position: relative;
}
md-organization-logo-upload .modal-body .content .profile-image-wrap .toolbar {
  position: absolute;
  top: 2px;
  right: 3px;
}
md-organization-logo-upload .modal-body .content .profile-image-wrap .toolbar a i {
  font-size: 16px;
  --fa-primary-color: #fff;
  --fa-secondary-color: #e36776;
  --fa-secondary-opacity: 1;
}
md-organization-logo-upload .modal-body .content .message {
  padding-left: 25px;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin-top: -5px;
}
md-organization-logo-upload .modal-body .content .message .optional {
  font-size: 12px;
  padding-left: 2.5px;
}
md-organization-logo-upload .modal-body .preview {
  margin-bottom: 20px;
  margin-left: -12px;
}
.md-free-invitation-modal {
  display: block;
}
.md-free-invitation-modal .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
.md-free-invitation-modal .intro-row {
  font-size: 16px;
  margin-bottom: 30px;
}
.md-free-invitation-modal .md-link {
  font-size: 14px;
}
.md-free-invitation-modal .md-name {
  font-size: 16px;
}
.md-free-invitation-modal .invitation-sent-to {
  padding-top: 15px;
}
.ratio_invitation_type .radio label {
  font-weight: 600;
  color: #000;
}
.free-receiver {
  padding-left: 0px !important;
}
.rmd-help-link .fa.fa-question-circle.help-icon {
  padding-left: 5px;
  vertical-align: top;
  padding-top: 5px;
}
.team-title {
  text-decoration: underline;
}
md-account-objectives {
  display: block;
}
md-account-objectives .md-pane {
  height: calc(100vh - 50px - 40px - 51px);
  overflow: scroll;
}
md-account-objectives .md-tabpanel {
  margin-top: 10px;
}
md-account-objectives md-objective-audit-log {
  background-color: #fff;
}
md-account-objectives-list {
  display: block;
}
md-account-objectives-list .md-layout-stretch-wrap.objectives-list {
  height: calc(100vh - 193px) !important;
}
md-account-objectives-report-settings {
  display: block;
}
md-account-objectives-report-settings .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-account-objectives-report-settings .recurring .text2 {
  white-space: normal;
  margin-top: 5px;
}
md-account-objectives-report-settings .md-pane {
  height: calc(100vh - 50px - 40px - 51px - 51px);
}
md-account-objectives-report-settings md-user-picker {
  width: 100%;
}
md-account-objectives-report-settings .rmd-user-picker .ui-select-bootstrap > .ui-select-choices,
md-account-objectives-report-settings .rmd-user-picker .ui-select-bootstrap > .ui-select-no-choice {
  max-height: 250px;
}
md-account-objectives-report-settings .next-run {
  margin-left: 5px;
  font-size: 14px;
  font-weight: normal !important;
}
md-account-objectives-report-settings .text2.description {
  white-space: normal;
}
md-user-picker {
  display: block;
}
md-user-picker .loading .fa {
  color: #1da4f0;
}
md-user-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-user-picker .user-picker {
  margin-top: 5px;
}
md-plan-type-picker {
  display: block;
}
md-plan-type-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-account-objectives-results-history {
  display: block;
}
md-account-objectives-results-history .md-pane {
  height: calc(100vh - 50px - 40px - 51px - 51px - 50px);
}
md-account-objectives-results-history .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-objectives-results-history th {
  background-color: #fff !important;
}
md-account-objectives-results-history .rmd-list-item {
  background-color: #fff;
}
md-account-objectives-results-history .file-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-account-objectives-results-history .file-toolbar-icons .first-row,
md-account-objectives-results-history .file-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-objective-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-objective-editor .md-modal .modal-body .source_description {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 15px;
}
md-objective-editor .md-modal .modal-body .objective-description {
  font-weight: 600;
}
md-objective-editor .ui-select-bootstrap > .ui-select-choices,
md-objective-editor .ui-select-bootstrap > .ui-select-no-choice {
  max-height: 400px;
}
md-objective-editor .range-dates {
  margin-left: 5px;
  font-size: 14px;
  font-weight: normal !important;
}
display: block;
md-objective-run-report-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-objective-run-report-editor .md-modal .modal-body .recipient_description {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 10px;
}
md-objective-run-report-editor .md-modal .modal-body .checkbox-item {
  position: relative;
  margin-bottom: -5px;
}
display: block;
md-objective-audit-log {
  padding-top: 10px;
}
md-objective-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-objective-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-objective-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-objective-audit-log .details .action.block {
  display: block;
}
md-objective-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-objective-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-objective-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-objective-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-objective-audit-log .details .file a:hover,
md-objective-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-objective-audit-log .rmd-list-item {
  background-color: #fff;
}
md-objective-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-account-staff {
  display: block;
}
md-account-staff .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-staff th {
  background-color: #fff !important;
}
md-account-staff .rmd-list-item {
  background-color: #fff;
}
md-account-staff .md-toolbar .create-button .dropdown-menu {
  min-width: 105px;
  width: 105px;
  cursor: pointer;
  background-color: #1da4f0;
}
md-account-staff .md-toolbar .create-button .dropdown-menu a {
  color: #fff;
}
md-account-staff .md-toolbar .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
md-account-staff .admin-tag {
  clear: none;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  margin-left: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #1da4f0;
  color: #fff;
}
.control-label {
  font-weight: 600 !important;
}
.md-invitation-modal {
  display: block;
}
.md-invitation-modal .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
.md-invitation-modal .intro-row {
  font-size: 16px;
  margin-bottom: 30px;
}
.md-invitation-modal .md-link {
  font-size: 14px;
}
.container.md-content {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
}
@media (min-width: 1440px) {
  .container.md-content {
    max-width: 3000px;
  }
}
.md-content-padding {
  padding: 15px 30px;
}
.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.md-page-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.md-page-content .md-sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
  margin-right: 15px;
}
.md-page-content .md-sidebar.settings-sidebar {
  margin-top: -10px;
}
.md-page-content .md-sidebar.settings-sidebar .md-pane-sidebar {
  overflow: auto;
}
.md-page-content .md-toolbar-content,
.md-page-content .md-main-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
.md-page-content .md-toolbar-content .md-toolbar {
  margin-left: 2px;
}
.md-page-blank .ui-select-placeholder,
.md-page-detail .ui-select-placeholder {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.md-section-header {
  padding: 0px 0px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
}
.md-section-header .title {
  clear: none;
  display: inline-block;
  color: #333;
  vertical-align: top;
  margin-bottom: 20px;
}
.md-section-header h2.title {
  font-weight: 300;
}
.md-section-header p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-section-header .back-link {
  clear: none;
  display: inline-block;
  cursor: pointer;
  color: #1da4f0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.md-section-header .back-link:hover,
.md-section-header .back-link:focus {
  color: #4ab6f3;
}
.md-section-header .back-link i {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
.md-section-header .back-link .text {
  clear: none;
  display: inline-block;
}
.md-section-header.no-border {
  border: none;
}
.md-section-header .md-form-group .form-control {
  height: 40px;
  line-height: 40px;
}
.md-section-header .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-section-header .md-toolbar.right .md-form-group,
.md-section-header .md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
  vertical-align: middle;
}
.md-section-header .md-tabpanel {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .md-section-header .title {
    display: block;
    margin-bottom: 10px;
  }
  .md-section-header .back-link {
    display: block;
    margin: 0px;
  }
}
.md-section-padding {
  padding: 0 20px;
}
.md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 100px;
}
.md-layout-stretch-wrap .mCustomScrollBox {
  width: 100%;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_container {
  margin-right: 0px;
  padding-bottom: 0px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_vertical {
  width: 6px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_horizontal {
  height: 6px;
}
.md-layout-stretch-wrap .md-layout-stretch-content {
  width: 100%;
  position: relative;
}
.md-layout-stretch-wrap .md-layout-stretch-content .md-pane-table {
  background-color: transparent;
}
.md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow-x: auto;
  overflow-y: auto;
  height: -webkit-fill-available;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-image: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(right, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(left, #efefef, rgba(234,240,246,0)), -webkit-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -moz-linear-gradient(left, #fff, rgba(255,255,255,0)), -moz-linear-gradient(right, #fff, rgba(255,255,255,0)), -moz-linear-gradient(left, #efefef, rgba(234,240,246,0)), -moz-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -o-linear-gradient(left, #fff, rgba(255,255,255,0)), -o-linear-gradient(right, #fff, rgba(255,255,255,0)), -o-linear-gradient(left, #efefef, rgba(234,240,246,0)), -o-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -ms-linear-gradient(left, #fff, rgba(255,255,255,0)), -ms-linear-gradient(right, #fff, rgba(255,255,255,0)), -ms-linear-gradient(left, #efefef, rgba(234,240,246,0)), -ms-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: linear-gradient(to right, #fff, rgba(255,255,255,0)), linear-gradient(to left, #fff, rgba(255,255,255,0)), linear-gradient(to right, #efefef, rgba(234,240,246,0)), linear-gradient(to left, #efefef, rgba(234,240,246,0));
  background-position: 0% 0, 100% 0, 0% 0, 100% 0;
  background-size: 4em 100%, 4em 100%, 1em 100%, 1em 100%;
}
.md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container i {
  color: #cecece;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-up {
  position: absolute;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
tbody tr:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.gray-background-page .md-layout-stretch-wrap {
  background-color: #fff;
}
.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-image: none;
}
.md-wide {
  width: 100%;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p30 {
  padding: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.m30 {
  margin: 30px;
}
md-account-locations {
  display: block;
}
md-account-locations .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-locations th {
  background-color: #fff !important;
}
md-account-locations .rmd-list-item {
  background: #fff;
}
.container.md-content {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
}
@media (min-width: 1440px) {
  .container.md-content {
    max-width: 3000px;
  }
}
.md-content-padding {
  padding: 15px 30px;
}
.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.md-page-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.md-page-content .md-sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
  margin-right: 15px;
}
.md-page-content .md-sidebar.settings-sidebar {
  margin-top: -10px;
}
.md-page-content .md-sidebar.settings-sidebar .md-pane-sidebar {
  overflow: auto;
}
.md-page-content .md-toolbar-content,
.md-page-content .md-main-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
.md-page-content .md-toolbar-content .md-toolbar {
  margin-left: 2px;
}
.md-page-blank .ui-select-placeholder,
.md-page-detail .ui-select-placeholder {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.md-section-header {
  padding: 0px 0px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
}
.md-section-header .title {
  clear: none;
  display: inline-block;
  color: #333;
  vertical-align: top;
  margin-bottom: 20px;
}
.md-section-header h2.title {
  font-weight: 300;
}
.md-section-header p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-section-header .back-link {
  clear: none;
  display: inline-block;
  cursor: pointer;
  color: #1da4f0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.md-section-header .back-link:hover,
.md-section-header .back-link:focus {
  color: #4ab6f3;
}
.md-section-header .back-link i {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
.md-section-header .back-link .text {
  clear: none;
  display: inline-block;
}
.md-section-header.no-border {
  border: none;
}
.md-section-header .md-form-group .form-control {
  height: 40px;
  line-height: 40px;
}
.md-section-header .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-section-header .md-toolbar.right .md-form-group,
.md-section-header .md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
  vertical-align: middle;
}
.md-section-header .md-tabpanel {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .md-section-header .title {
    display: block;
    margin-bottom: 10px;
  }
  .md-section-header .back-link {
    display: block;
    margin: 0px;
  }
}
.md-section-padding {
  padding: 0 20px;
}
.md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 100px;
}
.md-layout-stretch-wrap .mCustomScrollBox {
  width: 100%;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_container {
  margin-right: 0px;
  padding-bottom: 0px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_vertical {
  width: 6px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_horizontal {
  height: 6px;
}
.md-layout-stretch-wrap .md-layout-stretch-content {
  width: 100%;
  position: relative;
}
.md-layout-stretch-wrap .md-layout-stretch-content .md-pane-table {
  background-color: transparent;
}
.md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow-x: auto;
  overflow-y: auto;
  height: -webkit-fill-available;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-image: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(right, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(left, #efefef, rgba(234,240,246,0)), -webkit-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -moz-linear-gradient(left, #fff, rgba(255,255,255,0)), -moz-linear-gradient(right, #fff, rgba(255,255,255,0)), -moz-linear-gradient(left, #efefef, rgba(234,240,246,0)), -moz-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -o-linear-gradient(left, #fff, rgba(255,255,255,0)), -o-linear-gradient(right, #fff, rgba(255,255,255,0)), -o-linear-gradient(left, #efefef, rgba(234,240,246,0)), -o-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -ms-linear-gradient(left, #fff, rgba(255,255,255,0)), -ms-linear-gradient(right, #fff, rgba(255,255,255,0)), -ms-linear-gradient(left, #efefef, rgba(234,240,246,0)), -ms-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: linear-gradient(to right, #fff, rgba(255,255,255,0)), linear-gradient(to left, #fff, rgba(255,255,255,0)), linear-gradient(to right, #efefef, rgba(234,240,246,0)), linear-gradient(to left, #efefef, rgba(234,240,246,0));
  background-position: 0% 0, 100% 0, 0% 0, 100% 0;
  background-size: 4em 100%, 4em 100%, 1em 100%, 1em 100%;
}
.md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container i {
  color: #cecece;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-up {
  position: absolute;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
tbody tr:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.gray-background-page .md-layout-stretch-wrap {
  background-color: #fff;
}
.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-image: none;
}
.md-wide {
  width: 100%;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p30 {
  padding: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.m30 {
  margin: 30px;
}
md-account-fax-numbers {
  display: block;
}
md-account-fax-numbers .md-section-header {
  margin-bottom: 0px !important;
}
md-account-fax-numbers .md-layout-stretch-wrap.no-pagination.list {
  height: calc(100vh - 187px) !important;
}
md-account-fax-numbers .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-fax-numbers th {
  background-color: #fff !important;
}
md-account-fax-numbers .rmd-list-item {
  background: #fff;
}
.rmd-list,
.rmd-list-item,
.column.column-group {
  height: 48px;
}
md-fax-number-editor {
  display: block;
}
md-fax-number-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-fax-number-editor .notice {
  vertical-align: middle;
  padding: 10px 15px 0px 15px !important;
}
md-fax-number-editor .fax-number-header {
  margin-bottom: 10px;
}
md-fax-number-editor .fax-number-header h4 {
  font-size: 14px;
  font-weight: 600;
}
md-fax-number-editor .fax-number-header .status {
  padding-left: 3px;
}
md-fax-number-editor .md-red {
  color: #da3549;
}
md-fax-resolution {
  font-size: 14px;
}
md-fax-resolution .modal-body {
  height: calc(100vh - 76px - 81px - 63px);
  padding: 10px 0px !important;
}
md-fax-resolution .flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 10px 20px;
  background-color: #fff;
}
md-fax-resolution .flex-container .info-container {
  max-width: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-fax-resolution .flex-container .info-container .disclaimer {
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d1d1d1;
}
md-fax-resolution .flex-container .info-container .disclaimer .fa-info-circle {
  color: #1da4f0;
  margin-right: 5px;
}
md-fax-resolution .flex-container .info-container .parsed-data-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding-top: 5px;
  min-height: fit-content;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  overflow-x: hidden;
  overflow-y: scroll;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .details {
  min-width: 200px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .details .smallcaps {
  text-transform: uppercase;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .details md-provider-column .text2 {
  white-space: break-spaces;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .status {
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  color: #1da4f0;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .status .matched {
  color: #77c81f;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .status .missing {
  color: #e36776;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data md-avatar {
  margin-right: 5px;
}
md-fax-resolution .flex-container .info-container .parsed-data-section .parsed-data .section-title {
  color: #1da4f0;
  min-width: 100px;
  text-transform: uppercase;
  font-weight: 600;
}
md-fax-resolution .flex-container .info-container .rationale {
  padding-top: 10px;
  border-top: 1px dashed #d1d1d1;
  overflow-x: hidden;
  overflow-y: scroll;
}
md-fax-resolution .flex-container .info-container .rationale .title {
  font-weight: 600;
  color: #1da4f0;
  text-transform: uppercase;
  margin-right: 5px;
}
md-fax-resolution .flex-container .info-container .rationale .title .fa-info-circle {
  margin-right: 5px;
}
md-fax-resolution .flex-container .document-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: inherit;
}
md-fax-resolution .flex-container .document-container md-fax-attachments-tab {
  height: inherit;
  display: block;
}
md-fax-resolution .flex-container .document-container md-fax-attachments-tab .md-tabpanel {
  height: inherit;
}
md-fax-resolution .flex-container .document-container md-fax-attachments-tab .md-tabpanel .md-tabpanel-content {
  height: inherit;
}
md-fax-resolution .flex-container .document-container md-fax-attachments-tab .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab {
  height: inherit;
}
md-fax-resolution .flex-container .document-container md-fax-attachments-tab .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab md-pdf-preview .md-pdf-preview-content {
  height: inherit;
}
md-account-notifications {
  display: block;
}
md-account-notifications .transport-form {
  margin-bottom: 20px;
}
md-account-notifications .transport-form .control-label {
  margin-right: 10px;
  margin-bottom: 0px;
}
md-account-notifications .transport-form .md-form-control {
  min-width: 300px;
}
md-account-notifications .md-section-header .md-form-group .form-control {
  height: 34px !important;
  line-height: 20px !important;
}
md-user-notifications {
  display: block;
}
md-user-notifications .error-text {
  padding-left: 57px;
}
md-user-notifications .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-user-notifications .transport-form {
  margin-bottom: 20px;
}
md-user-notifications .transport-form .control-label {
  margin-right: 10px;
  margin-bottom: 0px;
}
md-user-notifications .transport-form .md-form-control {
  min-width: 300px;
}
md-user-notifications .inactive-days-group label {
  overflow: inherit;
}
md-user-notifications .inactive-days-group .inactive-days-input {
  display: inline-block;
  max-width: 85px;
  margin-left: 10px;
  height: 34px;
  text-align: center;
}
md-user-notifications .inactive-days-group .inactive-days-input::-webkit-inner-spin-button,
md-user-notifications .inactive-days-group .inactive-days-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
md-user-notifications .inactive-days-group .trailing-label {
  clear: none;
  display: inline-block;
  font-weight: 600;
  margin-left: 10px;
  vertical-align: middle;
  color: #474747;
}
md-user-notifications .frecuency-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-user-notifications .frecuency-group label {
  overflow: inherit;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; /* Centra verticalmente los elementos hijos */
}
md-user-notifications .frecuency-group .frecuency {
  display: inline-block;
  min-width: 150px;
  margin-left: 10px;
  text-align: center;
}
md-user-notifications .frecuency-group .fail-notification {
  left: 24.5px;
}
md-account-widget {
  display: block;
}
md-account-widget .location-row {
  margin-top: 40px;
}
md-account-widget .location-row.first {
  margin-top: 0px;
}
md-account-widget .location-row .url-input {
  cursor: pointer;
}
md-account-widget .location-row h2 {
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: 34px;
  margin: 0px;
}
md-account-widget .location-row .department-section {
  padding-left: 20px;
}
md-account-widget .location-row .department-section .department-row {
  margin-top: 10px;
}
md-account-widget .location-row .department-section .department-url-column {
  padding-left: 0px;
}
md-account-widget .location-row .department-section h4 {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 34px;
  margin: 0px;
}
md-account-website-portals {
  display: block;
}
md-account-website-portals .md-tabpanel {
  margin-top: 10px;
}
md-account-portal-scheduling {
  display: block;
}
md-account-portal-scheduling .title.location {
  margin-top: 50px;
}
md-account-portal-scheduling .title.location h2 {
  font-weight: 400;
  font-size: 18px;
}
md-account-portal-scheduling .location-row {
  margin-top: 20px;
}
md-account-portal-scheduling .url-input {
  cursor: pointer;
}
md-account-portal-scheduling h2 {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 34px;
  margin: 0px;
}
md-account-portal-scheduling .info-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-portal-scheduling .info-row .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 280px;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}
md-account-portal-scheduling .info-row .title h2 {
  font-weight: 400;
  font-size: 18px;
}
md-account-portal-scheduling .info-row .url {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-account-portal-scheduling .col-sm-8.location {
  margin-top: 50px;
}
md-account-portal-scheduling .location-name {
  padding-left: 40px;
}
.md-form {
  display: block;
}
.md-form-group {
  position: relative;
}
.md-form-group .form-control-feedback {
  position: absolute;
  top: 9px;
  right: 0px;
}
.md-form-group .form-control-feedback.fa {
  font-size: 16px;
}
.md-form-group .form-control-feedback.fa-asterisk {
  color: #da3549;
}
.md-form-group .fa-asterisk {
  color: #da3549;
}
.md-form-group.has-success .form-control-feedback {
  color: #50b440;
}
.md-form-group.has-warning .form-control-feedback {
  color: #f09b37;
}
.md-form-group.has-error .form-control-feedback {
  color: #da3549;
}
.md-form-group.has-error rmd-radio,
.md-form-group.has-error rmd-checkbox {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: inherit;
}
.md-form-group.has-error rmd-radio label,
.md-form-group.has-error rmd-checkbox label {
  color: #555;
}
.md-form-group.has-error rmd-radio label .fake,
.md-form-group.has-error rmd-checkbox label .fake {
  border-color: #da3549;
}
.md-form-group.has-feedback input.md-form-control[type="text"] {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-right: 25px;
}
.md-form-group.has-feedback rmd-radio,
.md-form-group.has-feedback rmd-checkbox {
  padding-right: initial;
}
.md-form-group.has-toolbar .form-control-toolbar-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar {
  clear: none;
  display: inline-block;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn {
  height: 34px;
  line-height: 34px;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon {
  vertical-align: middle;
}
.md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar .btn.icon.danger {
  color: #da3549;
}
.md-form-group .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.md-form-group {
  display: block;
  margin-bottom: 30px;
}
.md-form-group .control-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  vertical-align: middle;
  color: #000;
}
@media (max-width: 767px) {
  .md-form-group select .form-control {
    font-size: 16px;
  }
}
.md-form-group.has-error .control-label {
  color: #e36776;
}
.md-form-group.has-error input.md-form-control {
  border-color: #e36776;
}
.md-form-group.has-error input.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e36776;
}
.md-form-group.md-form-group-icon {
  position: relative;
}
.md-form-group.md-form-group-icon .icon {
  color: #b1b1b1;
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 34px;
  width: 40px;
  text-align: center;
}
.md-form-group.md-form-group-icon .icon .dropdown-toggle {
  display: block;
  width: 40px;
  line-height: 34px;
  text-align: center;
  color: #b1b1b1;
}
.md-form-group.md-form-group-icon .icon .dropdown-menu {
  margin-left: -50%;
}
.md-form-group.md-form-group-icon .icon.icon-right,
.md-form-group.md-form-group-icon .icon.right {
  left: auto;
  right: 0px;
}
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-left input.md-form-control[type="email"],
.md-form-group.md-form-group-icon.left input.md-form-control[type="email"] {
  padding-left: 35px;
}
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="search"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="text"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="password"],
.md-form-group.md-form-group-icon.icon-right input.md-form-control[type="email"] {
  padding-right: 35px;
}
.md-form-group .clear-button-holder {
  position: absolute;
  right: 40px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  cursor: pointer;
}
.md-form-group .bootstrap-switch {
  border-radius: 5px;
  border-color: #d0d0d0;
}
.md-form-group .bootstrap-switch + .control-label {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0px;
  text-transform: none;
}
.md-form-group .bootstrap-switch + .control-label .label-badge {
  font-size: 14px;
  line-height: 22px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  padding: 0px;
  width: 22px !important;
  line-height: 18px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  background: #1da4f0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background: #e0e0e0;
}
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  border-radius: 5px;
}
.md-form-group .bootstrap-switch .bootstrap-switch-handle-on,
.md-form-group .bootstrap-switch .bootstrap-switch-handle-off,
.md-form-group .bootstrap-switch .bootstrap-switch-label {
  display: inline-block;
  vertical-align: baseline;
}
.md-form-group .tooltips {
  clear: none;
  display: inline-block;
  margin-left: 5px;
}
.md-form-group .tooltips .fa {
  margin-bottom: 3px;
}
.md-form-group .tooltips tip-tip {
  font-size: 14px;
  white-space: nowrap;
}
.md-form-group.inline {
  line-height: 34px;
}
.md-form-group.inline .control-label,
.md-form-group.inline .md-form-control,
.md-form-group.inline .bootstrap-switch {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
input.md-form-control[type="search"],
input.md-form-control[type="text"],
input.md-form-control[type="password"],
input.md-form-control[type="email"],
textarea.md-form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
input.md-form-control[type="search"]:focus,
input.md-form-control[type="text"]:focus,
input.md-form-control[type="password"]:focus,
input.md-form-control[type="email"]:focus,
textarea.md-form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
input.md-form-control[type="search"][disabled],
input.md-form-control[type="text"][disabled],
input.md-form-control[type="password"][disabled],
input.md-form-control[type="email"][disabled],
textarea.md-form-control[disabled],
input.md-form-control[type="search"][readonly],
input.md-form-control[type="text"][readonly],
input.md-form-control[type="password"][readonly],
input.md-form-control[type="email"][readonly],
textarea.md-form-control[readonly] {
  background-color: #f2f2f2;
}
input.md-form-control[type="search"]::-webkit-input-placeholder,
input.md-form-control[type="text"]::-webkit-input-placeholder,
input.md-form-control[type="password"]::-webkit-input-placeholder,
input.md-form-control[type="email"]::-webkit-input-placeholder,
textarea.md-form-control::-webkit-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::-moz-placeholder,
input.md-form-control[type="text"]::-moz-placeholder,
input.md-form-control[type="password"]::-moz-placeholder,
input.md-form-control[type="email"]::-moz-placeholder,
textarea.md-form-control::-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-moz-placeholder,
input.md-form-control[type="text"]:-moz-placeholder,
input.md-form-control[type="password"]:-moz-placeholder,
input.md-form-control[type="email"]:-moz-placeholder,
textarea.md-form-control:-moz-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]:-ms-input-placeholder,
input.md-form-control[type="text"]:-ms-input-placeholder,
input.md-form-control[type="password"]:-ms-input-placeholder,
input.md-form-control[type="email"]:-ms-input-placeholder,
textarea.md-form-control:-ms-input-placeholder {
  color: #b1b1b1;
}
input.md-form-control[type="search"]::placeholder,
input.md-form-control[type="text"]::placeholder,
input.md-form-control[type="password"]::placeholder,
input.md-form-control[type="email"]::placeholder,
textarea.md-form-control::placeholder {
  color: #b1b1b1;
}
@media (max-width: 767px) {
  input.md-form-control[type="search"],
  input.md-form-control[type="text"],
  input.md-form-control[type="password"],
  input.md-form-control[type="email"],
  textarea.md-form-control {
    font-size: 16px;
  }
}
input.md-form-control[type="search"].clear,
input.md-form-control[type="text"].clear,
input.md-form-control[type="password"].clear,
input.md-form-control[type="email"].clear,
textarea.md-form-control.clear {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
textarea.md-form-control {
  height: auto !important;
}
.error-text {
  font-size: 12px;
  padding-top: 5px;
  color: #da3549;
}
input.md-form-control[type="email"] {
  text-transform: lowercase;
}
::-webkit-input-placeholder {
  text-transform: none !important;
}
::-moz-placeholder {
  text-transform: none !important;
}
:-moz-placeholder {
  text-transform: none !important;
}
:-ms-input-placeholder {
  text-transform: none !important;
}
md-account-settings {
  display: block;
}
md-account-settings .md-pane {
  height: calc(100vh - 50px - 40px - 51px);
  overflow: scroll;
}
md-account-settings .md-toolbar .md-form-group,
md-account-settings .md-toolbar .form-group {
  display: block;
  margin: 10px !important;
}
md-account-settings .md-toolbar .control-label.right {
  font-weight: 600 !important;
}
md-account-settings .md-toolbar .time-slot-column .md-form-group,
md-account-settings .md-toolbar .time-slot-row .md-form-group,
md-account-settings .md-toolbar .time-slot-column .form-group,
md-account-settings .md-toolbar .time-slot-row .form-group {
  display: block;
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
md-account-settings .md-toolbar .time-slot-column .toolbar-icon,
md-account-settings .md-toolbar .time-slot-row .toolbar-icon {
  margin-bottom: 0px !important;
}
md-account-settings .license_type {
  min-width: 230px;
}
md-account-settings .time-zone .control-label {
  text-transform: none !important;
  font-size: 14px !important;
}
md-account-settings .date_range_limit {
  max-width: 100px;
}
md-account-settings .license_user_count {
  margin-right: 10px;
}
md-account-settings .license_user_count .control-label {
  text-transform: none !important;
  font-size: 14px !important;
}
md-account-settings .license_type_control .control-label {
  text-transform: none !important;
  font-size: 14px !important;
}
md-account-settings .control-label.right.description {
  text-transform: none;
  font-size: 14px;
  color: #666;
  font-weight: 500 !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 34px;
}
md-account-settings .md-toolbar {
  display: inline;
  margin-right: 10px;
}
md-account-settings .md-toolbar .md-form-group.remove-top-bottom-margin,
md-account-settings .md-toolbar .form-group.remove-top-bottom-margin {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
md-account-settings .fix-width-general {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
md-account-settings .fix-width-referrals {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
md-account-settings input.form-control.md-form-control.currency {
  width: 84px;
  margin-right: 10px;
}
md-account-settings .fix-width-appointments {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
md-account-settings .fix-width-communications {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
md-account-settings .md-form-control-wrap {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: box !important;
  display: flex !important;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-settings .md-toolbar {
  margin-right: 0px !important;
}
md-account-settings .md-toolbar .form-group.btn-save {
  margin: 0px !important;
}
md-account-settings .department-picker {
  width: 330px;
}
md-account-settings .department-description {
  margin-left: 10px;
}
md-account-settings md-direction-picker.direction-picker .md-direction-picker {
  max-width: 330px;
}
md-account-settings md-direction-picker.direction-picker .ui-select-bootstrap,
md-account-settings md-direction-picker.direction-picker .ui-select-toggle > .caret {
  border-radius: 3px;
  color: #808080;
}
md-account-settings md-direction-picker.direction-picker .caret {
  border-top: 5px solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  margin-right: 5px;
}
md-account-settings .outbound-method-picker .ui-select-container .ui-select-toggle {
  width: 330px;
}
md-account-settings .outbound-method-picker .ui-select-container .ui-select-search {
  min-width: 330px;
}
md-account-settings .outbound-method-picker .ui-select-container .ui-select-choices {
  width: 330px;
}
md-account-settings .outbound-method-picker .ui-select-toggle {
  border-radius: 0 !important;
}
md-account-settings .outbound-method-picker .btn-default {
  font-weight: 500 !important;
}
md-account-settings .outbound-method-picker .ui-select-bootstrap,
md-account-settings .outbound-method-picker .ui-select-toggle > .caret {
  border-radius: 3px;
  color: #808080;
}
md-account-settings .outbound-method-picker .caret {
  border-top: 5px solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  margin-right: 5px;
}
md-account-settings .md-direction-picker {
  width: 330px;
  padding-left: 15px;
  padding-right: 15px;
}
md-account-settings .md-direction-picker .ui-select-toggle {
  border-radius: 0 !important;
}
md-account-settings .md-direction-picker .btn-default {
  font-weight: 500 !important;
}
md-account-settings .time-slot-column .time-form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
md-account-settings .time-slot-column .time-form .range-separator {
  clear: none;
  display: inline-block;
  text-align: center;
}
md-account-settings .time-slot-column .time-form .ui-select-toggle {
  min-width: 230px;
}
md-account-settings .time-slot-column .time-form.holiday-form {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-account-settings .time-slot-column .md-form-group,
md-account-settings .time-slot-column .toolbar-icon {
  margin-bottom: 10px;
}
md-account-settings .time-slot-column rmd-time-picker,
md-account-settings .time-slot-column .toolbar-icon {
  line-height: 32px;
  margin-left: 10px;
  vertical-align: middle;
}
md-account-settings .time-slot-column rmd-time-picker {
  min-width: 80px;
}
md-account-settings .time-slot-column .toolbar-icon {
  clear: none;
  display: inline-block;
}
md-account-settings .time-slot-column .md-form-group.timeframe {
  padding-right: 0px;
  padding-left: 30px;
}
md-account-settings .time-slot-column .time-zone-picker {
  min-width: 220px;
  margin-left: 0px !important;
  margin-right: 0px !important;
}
md-account-settings .time-rule-picker .ui-select-search {
  min-width: 220px;
}
md-account-settings .inactive {
  color: #ccc;
  pointer-events: none;
  cursor: default;
}
md-account-settings .license-group {
  padding-bottom: 10px !important;
}
md-account-settings .business-hours-content {
  -webkit-align-self: self-start;
  align-self: self-start;
  -ms-flex-item-align: self-start;
}
md-account-settings .holiday-panel {
  margin-top: 10px;
}
md-account-settings .holiday-panel .md-pane {
  height: 100% !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  border-width: 0 !important;
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
md-account-settings md-panel.holiday-panel {
  padding-top: 5px;
}
md-account-settings md-panel.holiday-panel.hide-border .panel-heading .header-wrap {
  border-bottom: 0px !important;
}
md-account-settings md-panel.holiday-panel .panel-group {
  margin-bottom: 0px;
}
md-account-settings md-panel.holiday-panel .md-pane {
  padding: 0px;
}
md-account-settings md-panel.holiday-panel .header-wrap {
  padding: 0px;
}
md-direction-picker {
  display: block;
}
md-direction-picker .dropdown-menu {
  left: auto !important;
  right: auto !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
md-direction-picker .direction-picker-select select {
  clear: none;
  display: inline-block;
  max-width: 160px;
}
md-account-integrations {
  display: block;
}
md-account-integrations .md-pane {
  height: calc(100vh - 50px - 40px - 51px);
  overflow: scroll;
}
md-account-integrations .md-tabpanel {
  margin-top: 10px;
}
.md-integration-editor {
  display: block;
}
.md-integration-editor .form-group.md-form-group {
  margin-bottom: 10px;
}
.md-integration-editor .form-group.md-form-group .group.profile-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-integration-editor .form-group.md-form-group .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-integration-editor .form-group.md-form-group .group.profile-group .name-group {
  padding-left: 10px;
}
.md-integration-editor .form-group.md-form-group .field-value {
  margin-left: 5px;
  font-size: 14px;
  font-weight: normal !important;
}
.md-integration-log-list {
  display: block;
}
.md-integration-log-list .override-button-holder {
  position: absolute;
  right: 55px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  pointer: cursor;
}
.md-integration-log-list .override-button-holder .icon {
  width: 16px;
}
.md-integration-log-list .override-button-holder .icon i.fa.fa-ban.active {
  color: #da3549;
}
.md-integration-log-list .text2 {
  font-size: 13px;
}
.md-integration-log-list .mr-0 {
  margin-right: 0px !important;
}
.md-integration-log-list .md-filters-state {
  margin-top: 0px;
}
.md-integration-log-list .md-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-integration-log-list .md-filters-state .item .text {
  overflow: hidden;
}
.md-integration-log-list .md-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-integration-log-list .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
}
.md-integration-log-list .md-toolbar.md-section-toolbar .offset .md-dropdown-menu {
  margin-top: 7px;
  left: 210px;
  width: 480px;
  top: auto;
  position: absolute;
}
.md-integration-log-list .md-toolbar .md-dropdown-menu {
  max-width: 400px;
}
.md-integration-log-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-integration-log-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-integration-log-list .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-integration-log-list .md-toolbar .md-input-expand:focus {
  min-width: 475px;
}
.md-integration-log-list .md-toolbar.right .group {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 15px;
}
.md-integration-log-list .md-toolbar.right .md-form-group .bootstrap-switch {
  margin-bottom: 3px;
}
.md-integration-log-list .md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 10px;
  margin-bottom: 3px;
}
.md-integration-log-list .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-integration-log-list .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
}
.md-integration-log-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon {
  margin-right: 20px;
}
.md-integration-log-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-integration-log-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-integration-log-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-integration-log-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-integration-log-list .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-integration-log-list .md-toolbar .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
.md-integration-log-list .md-toolbar .create-button .dropdown-menu {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  background-color: #1da4f0;
}
.md-integration-log-list .md-toolbar .create-button .dropdown-menu a {
  color: #fff;
  padding: 3px 10px;
}
.md-integration-log-list .md-toolbar .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-integration-log-list .md-toolbar-content .md-toolbar md-search-picker {
  width: unset;
}
.md-integration-log-list .md-toolbar-content .md-toolbar .form-group {
  margin-right: 20px;
}
.md-integration-log-list .md-toolbar-content .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-integration-log-list .integration-row {
  cursor: pointer;
}
.md-integration-log-list .integration-row .count {
  min-width: fit-content;
  border-radius: 50%;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 2px;
  position: absolute;
  padding: 0 4px;
}
.md-integration-log-list .rmd-list-item .group.profile-group {
  max-width: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-integration-log-list .rmd-list-item .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-integration-log-list .integration-date-picker input.md-form-control[type="text"][readonly] {
  background-color: #fff;
  min-width: 205px;
  cursor: pointer;
}
.md-integration-log-list .rmd-list-content .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-integration-log-list .rmd-list-content .column .transaction-action {
  margin-left: 20px;
}
.md-integration-log-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-integration-log-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-integration-log-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-integration-log-list .rmd-list-content .batch-operator-container .batch-status-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-integration-log-list .rmd-list-content .batch-operator-container .batch-status-picker .dropdown-toggle {
  display: none;
}
.md-integration-log-list .rmd-list-content .batch-operator-container .batch-status-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-integration-log-list .integration-title {
  margin-bottom: 0px;
}
.md-integration-log-list .integration-title .md-dropdown-group {
  font-size: 30px;
  line-height: 40px;
}
.md-integration-log-list .integration-title .md-dropdown-group li {
  line-height: 20px;
}
.md-integration-log-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle {
  text-transform: none;
  font-weight: 300;
  color: #333;
}
.md-integration-log-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 400px;
}
.md-integration-log-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle i {
  padding-top: 15px;
  font-size: 20px !important;
}
.md-integration-log-list .integration-title .md-dropdown-group .dropdown .dropdown-menu {
  top: 40px;
}
.md-integration-inventory-list {
  display: block;
}
.md-integration-inventory-list .override-button-holder {
  position: absolute;
  right: 55px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  pointer: cursor;
}
.md-integration-inventory-list .override-button-holder .icon {
  width: 16px;
}
.md-integration-inventory-list .override-button-holder .icon i.fa.fa-ban.active {
  color: #da3549;
}
.md-integration-inventory-list .text2 {
  font-size: 13px;
}
.md-integration-inventory-list .mr-0 {
  margin-right: 0px !important;
}
.md-integration-inventory-list .md-filters-state {
  margin-top: 0px;
}
.md-integration-inventory-list .md-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-integration-inventory-list .md-filters-state .item .text {
  overflow: hidden;
}
.md-integration-inventory-list .md-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-integration-inventory-list .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
}
.md-integration-inventory-list .md-toolbar.md-section-toolbar .offset .md-dropdown-menu {
  margin-top: 7px;
  left: 210px;
  width: 480px;
  top: auto;
  position: absolute;
}
.md-integration-inventory-list .md-toolbar .md-dropdown-menu {
  max-width: 400px;
}
.md-integration-inventory-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-integration-inventory-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-integration-inventory-list .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-integration-inventory-list .md-toolbar .md-input-expand:focus {
  min-width: 475px;
}
.md-integration-inventory-list .md-toolbar.right .group {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 15px;
}
.md-integration-inventory-list .md-toolbar.right .md-form-group .bootstrap-switch {
  margin-bottom: 3px;
}
.md-integration-inventory-list .md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 10px;
  margin-bottom: 3px;
}
.md-integration-inventory-list .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-integration-inventory-list .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
}
.md-integration-inventory-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon {
  margin-right: 20px;
}
.md-integration-inventory-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-integration-inventory-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-integration-inventory-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-integration-inventory-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-integration-inventory-list .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-integration-inventory-list .md-toolbar .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
.md-integration-inventory-list .md-toolbar .create-button .dropdown-menu {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  background-color: #1da4f0;
}
.md-integration-inventory-list .md-toolbar .create-button .dropdown-menu a {
  color: #fff;
  padding: 3px 10px;
}
.md-integration-inventory-list .md-toolbar .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-integration-inventory-list .md-toolbar-content .md-toolbar md-search-picker {
  width: unset;
}
.md-integration-inventory-list .md-toolbar-content .md-toolbar .form-group {
  margin-right: 20px;
}
.md-integration-inventory-list .md-toolbar-content .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-integration-inventory-list .integration-row {
  cursor: pointer;
}
.md-integration-inventory-list .integration-row .count {
  min-width: fit-content;
  border-radius: 50%;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 2px;
  position: absolute;
  padding: 0 4px;
}
.md-integration-inventory-list .rmd-list-item .group.profile-group {
  max-width: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-integration-inventory-list .rmd-list-item .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-integration-inventory-list .integration-title {
  margin-bottom: 0px;
}
.md-integration-inventory-list .integration-title .md-dropdown-group {
  font-size: 30px;
  line-height: 40px;
}
.md-integration-inventory-list .integration-title .md-dropdown-group li {
  line-height: 20px;
}
.md-integration-inventory-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle {
  text-transform: none;
  font-weight: 300;
  color: #333;
}
.md-integration-inventory-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 400px;
}
.md-integration-inventory-list .integration-title .md-dropdown-group .dropdown .dropdown-toggle i {
  padding-top: 15px;
  font-size: 20px !important;
}
.md-integration-inventory-list .integration-title .md-dropdown-group .dropdown .dropdown-menu {
  top: 40px;
}
md-account-rules {
  display: block;
}
md-account-rules .page-picker {
  min-width: 186px;
  max-width: 186px;
}
md-account-rules .ui-select-bootstrap .ui-select-choices {
  margin-top: 15px;
  max-height: none;
}
md-account-rules .ui-select-bootstrap .ui-select-match .btn {
  height: 40px;
}
md-account-rules .ui-select-container .ui-select-search {
  height: 40px;
}
md-account-rules .ui-select-container .ui-select-match .ui-select-match-text {
  margin-top: 3px;
}
md-account-rules .toolbar-row {
  margin-bottom: 10px;
}
md-account-rules .rmd-list-item {
  height: 47px;
  display: table-row;
}
md-account-rules .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-rules th {
  background-color: #fff !important;
}
md-account-rules .rmd-list-item {
  background: #fff;
}
md-account-options-alerts {
  display: block;
}
md-account-options-alerts .rmd-list-content .column-value,
md-account-options-alerts .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-alerts .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-alerts .rmd-list-content .wide-column-570 {
  width: 570px;
}
md-account-options-communications {
  display: block;
}
md-account-options-communications .rmd-list-content .column-value,
md-account-options-communications .rmd-list-content .column-department {
  padding-left: 10px;
  min-width: 105px;
}
md-account-options-communications .rmd-list-content .column-department {
  min-width: 100px;
}
md-account-options-communications .rmd-list-content .wide-column {
  min-width: 250px;
}
md-account-options-communications .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-scheduling-rules {
  display: block;
}
md-account-options-scheduling-rules .rmd-list-content .column-value,
md-account-options-scheduling-rules .rmd-list-content .column-department {
  padding-left: 10px;
  min-width: 105px;
}
md-account-options-scheduling-rules .rmd-list-content .column-department {
  min-width: 100px;
}
md-account-options-scheduling-rules .rmd-list-content .wide-column {
  min-width: 250px;
}
md-account-options-scheduling-rules .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options {
  display: block;
}
md-account-options .page-picker {
  min-width: 235px;
  max-width: 235px;
}
md-account-options .ui-select-bootstrap .ui-select-choices {
  margin-top: 15px;
  max-height: calc(95vh - 50px - 20px - 41px);
  overflow: scroll;
}
md-account-options .ui-select-bootstrap .ui-select-match .btn {
  height: 40px;
}
md-account-options .ui-select-container .ui-select-search {
  height: 40px;
}
md-account-options .ui-select-container .ui-select-match .ui-select-match-text {
  margin-top: 3px;
}
md-account-options .toolbar-row {
  margin-bottom: 10px;
}
md-account-options .rmd-list-item {
  height: 47px;
  display: table-row;
}
md-account-options .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-options th {
  background-color: #fff !important;
}
md-account-options .rmd-list-item {
  background: #fff;
}
md-account-options .container-right {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-options .md-section-header .row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
md-account-options .md-section-header .row .header-left {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 10px;
}
md-account-options .md-section-header .row .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
md-account-options .md-section-header .row .md-toolbar .specialties {
  min-width: 150px;
}
md-account-options-alerts {
  display: block;
}
md-account-options-alerts .rmd-list-content .column-value,
md-account-options-alerts .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-alerts .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-alerts .rmd-list-content .wide-column-570 {
  width: 570px;
}
md-account-options-status {
  display: block;
}
md-account-options-status .status-row .status-name-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-options-status .status-row .status-name-group .avatar-wrap {
  display: block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  position: relative;
}
md-account-options-status .status-row .status-name-group .status-name {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
md-account-options-status .status-row .status-name-group .md-dots {
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  position: relative;
  margin-right: 10px;
}
md-account-options-status .status-row .status-name-group .md-dots .dots-wrap {
  position: absolute;
  left: 15px;
}
md-account-options-status .status-row .status-name-group .md-dots .d {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0px;
  background: #868db5;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d1 {
  top: 0px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d2 {
  top: 5px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d3 {
  top: 10px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d4 {
  top: 15px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d5 {
  top: 20px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d6 {
  top: 25px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d7 {
  top: 30px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d8 {
  top: 15px;
  left: 5px;
}
md-account-options-status .status-row .status-name-group .md-dots .d.d9 {
  top: 15px;
  left: 10px;
}
md-account-options-status .status-row .status-name-group .md-dots.last-dot .d5,
md-account-options-status .status-row .status-name-group .md-dots.last-dot .d6,
md-account-options-status .status-row .status-name-group .md-dots.last-dot .d7 {
  display: none;
}
md-account-options-consult-status {
  display: block;
}
md-account-options-consult-status .status-row .status-name-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-options-consult-status .status-row .status-name-group .avatar-wrap {
  display: block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  position: relative;
}
md-account-options-consult-status .status-row .status-name-group .status-name {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
md-account-options-consult-status .status-row .status-name-group .md-dots {
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  position: relative;
  margin-right: 10px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .dots-wrap {
  position: absolute;
  left: 15px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0px;
  background: #868db5;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d1 {
  top: 0px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d2 {
  top: 5px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d3 {
  top: 10px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d4 {
  top: 15px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d5 {
  top: 20px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d6 {
  top: 25px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d7 {
  top: 30px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d8 {
  top: 15px;
  left: 5px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots .d.d9 {
  top: 15px;
  left: 10px;
}
md-account-options-consult-status .status-row .status-name-group .md-dots.last-dot .d5,
md-account-options-consult-status .status-row .status-name-group .md-dots.last-dot .d6,
md-account-options-consult-status .status-row .status-name-group .md-dots.last-dot .d7 {
  display: none;
}
md-account-options-appointment-status {
  display: block;
}
md-account-options-appointment-status .status-row .status-name-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-options-appointment-status .status-row .status-name-group .avatar-wrap {
  display: block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  position: relative;
}
md-account-options-appointment-status .status-row .status-name-group .status-name {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots {
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  position: relative;
  margin-right: 10px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .dots-wrap {
  position: absolute;
  left: 15px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0px;
  background: #868db5;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d1 {
  top: 0px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d2 {
  top: 5px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d3 {
  top: 10px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d4 {
  top: 15px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d5 {
  top: 20px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d6 {
  top: 25px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d7 {
  top: 30px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d8 {
  top: 15px;
  left: 5px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots .d.d9 {
  top: 15px;
  left: 10px;
}
md-account-options-appointment-status .status-row .status-name-group .md-dots.last-dot .d5,
md-account-options-appointment-status .status-row .status-name-group .md-dots.last-dot .d6,
md-account-options-appointment-status .status-row .status-name-group .md-dots.last-dot .d7 {
  display: none;
}
md-account-options-reasons {
  display: block;
}
md-account-options-sources {
  display: block;
}
md-account-options-items {
  display: block;
}
md-account-options-items .rmd-list-not-found {
  margin-bottom: 0px !important;
}
md-account-options-affiliations {
  display: block;
}
md-account-options-affiliations .rmd-list-content .column-value,
md-account-options-affiliations .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-affiliations .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-affiliations .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-priorities {
  display: block;
}
md-account-options-priorities .column {
  width: 24.33333%;
  min-width: none;
  max-width: none;
}
md-account-options-priorities .column.wide {
  width: 28%;
}
md-account-options-consult-priorities {
  display: block;
}
md-account-options-consult-priorities .column {
  width: 24.33333%;
  min-width: none;
  max-width: none;
}
md-account-options-consult-priorities .column.wide {
  width: 28%;
}
md-account-options-override-reasons {
  display: block;
}
md-account-options-override-reasons .rmd-list-content .column-value,
md-account-options-override-reasons .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-override-reasons .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-override-reasons .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-priority-override-reasons {
  display: block;
}
md-account-options-priority-override-reasons .rmd-list-content .column-value,
md-account-options-priority-override-reasons .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-priority-override-reasons .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-priority-override-reasons .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-cancel-reasons {
  display: block;
}
md-account-options-cancel-reasons .rmd-list-content .column-value,
md-account-options-cancel-reasons .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-cancel-reasons .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-cancel-reasons .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-patient-fields {
  display: block;
}
md-account-options-patient-fields .rmd-list-content .column-value,
md-account-options-patient-fields .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-patient-fields .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-patient-fields .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-account-options-import-columns {
  display: block;
}
md-account-options-import-columns .rmd-list-item {
  background: none;
}
md-account-options-import-columns .rmd-list-not-found {
  margin-bottom: 0px !important;
}
md-account-options-import-columns .rmd-list-manual tbody tr td.column {
  max-width: none;
}
md-account-options-import-columns .md-layout-stretch-wrap.no-pagination-items .md-layout-stretch-content {
  overflow: auto;
}
md-account-options-import-columns .md-layout-stretch-wrap.no-pagination-items .md-layout-stretch-content.scrollable {
  height: inherit;
}
md-account-options-question-categories {
  display: block;
}
md-account-options-question-categories .rmd-list-not-found {
  margin-bottom: 0px !important;
}
md-account-options-question-options {
  display: block;
}
md-account-options-question-options .rmd-list-not-found {
  margin-bottom: 0px !important;
}
md-account-options-specialties {
  display: block;
}
md-account-options-specialties .rmd-list-content .column-value,
md-account-options-specialties .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-specialties .rmd-list-content .column-specialty {
  padding-left: 10px;
  max-width: 320px !important;
  min-width: 320px !important;
}
md-account-options-specialties .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-specialties .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
md-specialty-editor {
  display: block;
}
md-specialty-editor .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-specialty-editor .switch {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-specialty-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 120px + 55px + 45px + 21px + (81px)));
}
md-specialty-editor md-locations-list.has-nested .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 200px + 55px + 45px + 21px + (81px)));
}
md-specialty-editor .control-icon {
  padding-top: 7px;
  float: right;
}
md-specialty-editor .control-icon.icon-with-data i.fa {
  color: #6bb31c;
}
md-specialty-editor .control-icon.icon-without-data i.fa {
  color: #1da4f0;
}
md-specialty-editor .form-display-name {
  width: 94%;
  float: left;
}
md-specialty-editor .md-form-row-specialty {
  padding-bottom: 14px;
}
md-specialty-editor .md-system-left {
  width: 50%;
  float: left;
  padding-right: 4px;
}
md-specialty-editor .md-system-right {
  width: 50%;
  float: right;
  padding-left: 4px;
  padding-right: 23px;
}
md-specialty-editor .md-specialty-taxcode-picker {
  width: calc(100% - 35px) !important;
  margin-left: 15px;
}
md-specialty-editor .disclaimer {
  padding-top: 5px;
}
md-specialty-editor textarea.text-area-specialty {
  overflow-y: scroll !important;
  height: 100px;
  resize: none !important;
  overflow: none !important;
}
md-specialty-editor .md-form-row-mapping {
  padding-bottom: 15px;
}
md-specialty-editor .icon-display {
  padding-right: 3px !important;
}
.md-specialty-editor-modal-text {
  margin-top: 10px;
}
md-specialty-taxcode-picker {
  display: block;
}
md-specialty-taxcode-picker .split1 {
  width: calc(50%) !important;
  margin-left: 0px !important;
  max-width: unset !important;
  margin-right: 10px;
}
md-specialty-taxcode-picker .split2 {
  width: calc(50% - 15px);
}
md-specialty-taxcode-picker .md-form-group {
  margin-bottom: 10px;
}
md-specialty-taxcode-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-specialty-taxcode-picker .add-link i {
  margin-right: 5px;
}
md-specialty-taxcode-picker .text-muted {
  color: #b1b1b1;
}
md-specialty-taxcode-picker .dropdown-menu,
md-specialty-taxcode-picker .md-dropdown-menu,
md-specialty-taxcode-picker .dropdown {
  min-width: 150px;
}
md-specialty-taxcode-picker .input-row {
  margin-bottom: 10px;
}
md-specialty-taxcode-picker .input-row .type-picker {
  min-width: 150px;
  max-width: 150px;
  margin-left: 10px;
}
md-specialty-taxcode-picker .input-row .type-picker .dropdown-menu {
  min-width: 150px !important;
}
md-specialty-taxcode-picker .no-data {
  padding-bottom: 15px;
}
md-account-options-task-types {
  display: block;
}
md-account-options-task-types .rmd-list-content .column-value,
md-account-options-task-types .rmd-list-content .column-department {
  padding-left: 10px;
  max-width: 105px;
  min-width: 105px;
}
md-account-options-task-types .rmd-list-content .wide-column-500 {
  width: 500px;
}
md-account-options-task-types .rmd-list-content .has-more-icon-container {
  margin-left: 5px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.container.md-content {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
}
@media (min-width: 1440px) {
  .container.md-content {
    max-width: 3000px;
  }
}
.md-content-padding {
  padding: 15px 30px;
}
.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.md-page-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.md-page-content .md-sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
  margin-right: 15px;
}
.md-page-content .md-sidebar.settings-sidebar {
  margin-top: -10px;
}
.md-page-content .md-sidebar.settings-sidebar .md-pane-sidebar {
  overflow: auto;
}
.md-page-content .md-toolbar-content,
.md-page-content .md-main-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
.md-page-content .md-toolbar-content .md-toolbar {
  margin-left: 2px;
}
.md-page-blank .ui-select-placeholder,
.md-page-detail .ui-select-placeholder {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.md-section-header {
  padding: 0px 0px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
}
.md-section-header .title {
  clear: none;
  display: inline-block;
  color: #333;
  vertical-align: top;
  margin-bottom: 20px;
}
.md-section-header h2.title {
  font-weight: 300;
}
.md-section-header p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-section-header .back-link {
  clear: none;
  display: inline-block;
  cursor: pointer;
  color: #1da4f0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.md-section-header .back-link:hover,
.md-section-header .back-link:focus {
  color: #4ab6f3;
}
.md-section-header .back-link i {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
.md-section-header .back-link .text {
  clear: none;
  display: inline-block;
}
.md-section-header.no-border {
  border: none;
}
.md-section-header .md-form-group .form-control {
  height: 40px;
  line-height: 40px;
}
.md-section-header .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-section-header .md-toolbar.right .md-form-group,
.md-section-header .md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
  vertical-align: middle;
}
.md-section-header .md-tabpanel {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .md-section-header .title {
    display: block;
    margin-bottom: 10px;
  }
  .md-section-header .back-link {
    display: block;
    margin: 0px;
  }
}
.md-section-padding {
  padding: 0 20px;
}
.md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 100px;
}
.md-layout-stretch-wrap .mCustomScrollBox {
  width: 100%;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_container {
  margin-right: 0px;
  padding-bottom: 0px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_vertical {
  width: 6px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_horizontal {
  height: 6px;
}
.md-layout-stretch-wrap .md-layout-stretch-content {
  width: 100%;
  position: relative;
}
.md-layout-stretch-wrap .md-layout-stretch-content .md-pane-table {
  background-color: transparent;
}
.md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow-x: auto;
  overflow-y: auto;
  height: -webkit-fill-available;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-image: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(right, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(left, #efefef, rgba(234,240,246,0)), -webkit-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -moz-linear-gradient(left, #fff, rgba(255,255,255,0)), -moz-linear-gradient(right, #fff, rgba(255,255,255,0)), -moz-linear-gradient(left, #efefef, rgba(234,240,246,0)), -moz-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -o-linear-gradient(left, #fff, rgba(255,255,255,0)), -o-linear-gradient(right, #fff, rgba(255,255,255,0)), -o-linear-gradient(left, #efefef, rgba(234,240,246,0)), -o-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -ms-linear-gradient(left, #fff, rgba(255,255,255,0)), -ms-linear-gradient(right, #fff, rgba(255,255,255,0)), -ms-linear-gradient(left, #efefef, rgba(234,240,246,0)), -ms-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: linear-gradient(to right, #fff, rgba(255,255,255,0)), linear-gradient(to left, #fff, rgba(255,255,255,0)), linear-gradient(to right, #efefef, rgba(234,240,246,0)), linear-gradient(to left, #efefef, rgba(234,240,246,0));
  background-position: 0% 0, 100% 0, 0% 0, 100% 0;
  background-size: 4em 100%, 4em 100%, 1em 100%, 1em 100%;
}
.md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container i {
  color: #cecece;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-up {
  position: absolute;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
tbody tr:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.gray-background-page .md-layout-stretch-wrap {
  background-color: #fff;
}
.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-image: none;
}
.md-wide {
  width: 100%;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p30 {
  padding: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.m30 {
  margin: 30px;
}
md-account-templates {
  display: block;
}
md-account-templates .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-templates th {
  background-color: #fff !important;
}
md-account-templates .md-dropdown-menu.search {
  max-height: 350px;
}
md-account-templates md-toolbar-template-type-picker .md-dropdown-menu.search {
  max-height: fit-content;
}
md-account-templates .rmd-list-item {
  background: #fff;
}
md-account-templates .md-section-header h1.edit {
  padding-bottom: 20px;
}
md-account-templates .md-section-header .back-to-list {
  margin-left: 0;
  margin-top: 0;
}
md-account-templates .md-section-header .md-toolbar-edit {
  margin-top: -39px;
}
md-account-templates .md-section-header .md-toolbar-list {
  margin-right: 15px;
}
md-account-templates .md-tabpanel .md-tabpanel-tabs {
  margin-bottom: 20px;
}
md-account-templates .form-list .rmd-list-item {
  height: 48px;
}
md-account-templates .form-list .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-account-templates .form-list .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-account-templates .form-list .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-account-templates .form-list .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-account-templates .form-list .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-account-templates .dropdown-menu.template-types {
  min-width: fit-content;
  width: 100%;
  background-color: #1da4f0;
  left: -47%;
}
md-account-templates .dropdown-menu.template-types a {
  color: #fff;
  padding: 3px 10px;
}
md-account-templates .dropdown-menu.template-types a:hover {
  background-color: #4ab6f3;
}
md-account-template-editor {
  display: block;
}
md-account-template-editor .editor-wrapper .md-tabpanel {
  height: 100%;
}
md-account-template-editor .editor-wrapper.editor-consent-form,
md-account-template-editor .editor-wrapper.editor-referral-coversheet,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet {
  height: calc(100vh - 50px - 42px - 120px - 20px - 20px);
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-tabs,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-tabs,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-tabs,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-tabs {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: calc(100% - 31px - 20px);
  max-height: calc(100% - 31px - 20px);
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab,
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .patient-instructions,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .patient-instructions,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .patient-instructions,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .patient-instructions,
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .template-form,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .template-form,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .template-form,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .template-form,
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content md-quill-editor,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content md-quill-editor,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content md-quill-editor,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content md-quill-editor,
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content ng-quill-editor,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor {
  height: 100%;
  max-height: 100%;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .instructions-editor .flex-control-row,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .flex-control-row,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .flex-control-row,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .flex-control-row {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content .instructions-editor .quill-editor-wrapper,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .quill-editor-wrapper,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .quill-editor-wrapper,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content .instructions-editor .quill-editor-wrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: calc(100% - 90px);
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content ng-quill-editor > div,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div {
  height: 100%;
  max-height: 100%;
}
md-account-template-editor .editor-wrapper.editor-consent-form .md-tabpanel .md-tabpanel-content ng-quill-editor > div .ql-container,
md-account-template-editor .editor-wrapper.editor-referral-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div .ql-container,
md-account-template-editor .editor-wrapper.editor-patient-document-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div .ql-container,
md-account-template-editor .editor-wrapper.editor-fax-sent-manual-coversheet .md-tabpanel .md-tabpanel-content ng-quill-editor > div .ql-container {
  height: calc(100% - 42px - 19px);
  max-height: calc(100% - 42px - 19px);
  overflow-y: scroll;
}
md-account-template-editor .instructions-editor.transport-sms ng-quill-editor .ql-toolbar .ql-formats {
  display: none;
}
md-account-template-editor .instructions-editor.transport-sms ng-quill-editor .ql-toolbar .ql-formats.variables {
  clear: none;
  display: inline-block;
}
md-account-template-editor .template-form.ng-invalid-maxlength #quill-word-count {
  color: #da3549;
}
md-account-template-editor .location-deparment-select .location-header-row .default-checkbox,
md-account-template-editor .location-deparment-select .location-header-row .specialties-representative-container {
  margin-right: 10px;
}
md-account-template-editor .location-deparment-select .location-header-row .default-checkbox .title-text,
md-account-template-editor .location-deparment-select .location-header-row .specialties-representative-container .title-text,
md-account-template-editor .location-deparment-select .location-header-row .default-checkbox rmd-checkbox,
md-account-template-editor .location-deparment-select .location-header-row .specialties-representative-container rmd-checkbox {
  clear: none;
  display: inline-block;
}
md-account-template-editor .location-deparment-select .location-header-row .default-checkbox .title-text,
md-account-template-editor .location-deparment-select .location-header-row .specialties-representative-container .title-text {
  font-weight: 600;
  margin-left: 5px;
}
md-account-template-editor .location-deparment-select .location-header-row {
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
}
md-account-template-editor .location-deparment-select .location-header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-account-template-editor .location-deparment-select .location-header-content rmd-checkbox {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-account-template-editor .location-deparment-select .location-header-content .title-text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
md-account-template-editor .location-deparment-select .location-list .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 40px - 110px - 40px - 51px - 65px - 55px) !important;
}
md-account-template-editor .location-deparment-select .location-list .location-row {
  margin-top: 5px;
  margin-bottom: -5px;
}
md-account-template-editor .location-deparment-select .location-list .location-row:first-child {
  margin-top: 0px;
}
md-account-template-editor .location-deparment-select .location-list .location-row .checkbox-item {
  position: relative;
  margin-bottom: -5px;
}
md-account-template-editor .location-deparment-select .location-list .location-row rmd-checkbox .checkbox {
  margin-top: 0px;
}
md-account-template-editor .location-deparment-select .specialty-header-content {
  padding-left: 15px;
}
md-account-template-editor .location-deparment-select .search-input-wrap .clear-button-holder {
  position: absolute;
  right: 15px;
  top: 5px;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  cursor: pointer;
}
md-account-template-editor .location-deparment-select .section-title {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 20px;
  font-weight: 600;
  vertical-align: middle;
  color: #000;
}
md-account-template-editor .loc-spacing {
  margin-bottom: 22px;
}
md-account-template-editor .loc-name {
  margin-top: -9px;
}
md-account-template-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-account-template-editor .loc-name {
  margin-top: -5px !important;
}
md-account-template-editor .form-builder .options-sidebar {
  margin-top: -7px;
}
md-account-template-editor .form-builder .options-sidebar .option-section {
  margin-bottom: 20px;
}
md-account-template-editor .form-builder .options-sidebar .option-section:last-child {
  margin-bottom: 0px;
}
md-account-template-editor .form-builder .options-sidebar .option-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
md-account-template-editor .form-builder .options-sidebar .option-section h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item {
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
  cursor: move;
}
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item i,
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item .md-text,
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item .md-drag-handle {
  vertical-align: middle;
}
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item i.fa {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item .md-text {
  clear: none;
  display: inline-block;
}
md-account-template-editor .form-builder .options-sidebar .option-section .option-list .option-item .md-drag-handle {
  clear: none;
  display: inline-block;
  float: right;
}
md-account-template-editor .form-builder .question-pane {
  margin-bottom: 10px;
  padding-right: 25px;
  position: relative;
}
md-account-template-editor .form-builder .question-pane:last-child {
  margin-bottom: 0px;
}
md-account-template-editor .form-builder .question-pane.as-sortable-placeholder {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px dashed #d0d0d0;
}
md-account-template-editor .form-builder .question-pane .md-drag-handle {
  position: absolute;
  right: 6px;
  top: 50%;
  bottom: auto;
}
md-account-template-editor .form-builder #question-drop-zone {
  margin-top: 20px;
}
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-transmission {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-title,
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-transmission {
  margin-right: 10px;
  min-width: 230px;
}
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-title:last-child,
md-account-template-editor .patient-instructions .instructions-editor .flex-control-row .template-transmission:last-child {
  margin-right: 0px;
}
md-account-template-editor .as-sortable-dragging {
  margin-top: 0px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  position: relative;
}
md-account-template-editor .as-sortable-dragging .dragging-container {
  margin-bottom: -5px;
  position: absolute;
  padding: 2px 5px 0 10px;
  width: 100%;
}
md-account-template-editor .as-sortable-dragging .dragging-container i,
md-account-template-editor .as-sortable-dragging .dragging-container .md-text,
md-account-template-editor .as-sortable-dragging .dragging-container .md-drag-handle {
  vertical-align: middle;
}
md-account-template-editor .as-sortable-dragging .dragging-container i.fa {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
md-account-template-editor .as-sortable-dragging .dragging-container .md-text {
  clear: none;
  display: inline-block;
}
md-account-template-editor .as-sortable-dragging .dragging-container .md-drag-handle {
  clear: none;
  display: inline-block;
  float: right;
}
md-account-template-editor #form-content {
  position: relative;
}
md-account-template-editor #form-content .as-sortable-placeholder {
  background-color: rgba(175,175,175,0.11);
  padding: 30px 30px;
  color: #1da4f0;
  border: 2px dashed #ececec;
  border-radius: 5px;
  width: 100% !important;
}
md-account-template-editor #form-content .as-sortable-dragging {
  border: none;
  position: absolute;
}
md-quill-editor {
  display: block;
}
md-quill-editor ng-quill-editor li.ql-align-center {
  text-align: left !important;
  margin-left: 37% !important;
}
md-quill-editor ng-quill-editor li.ql-align-right {
  text-align: left !important;
  margin-left: 70% !important;
}
md-quill-editor ng-quill-editor .ql-toolbar {
  display: block;
}
md-quill-editor ng-quill-editor .ql-variables,
md-quill-editor ng-quill-editor .ql-templates {
  width: 100px;
}
md-quill-editor ng-quill-editor.hide-format .ql-toolbar .ql-formats {
  display: none;
}
md-quill-editor ng-quill-editor.hide-format .ql-toolbar .ql-formats.variables,
md-quill-editor ng-quill-editor.hide-format .ql-toolbar .ql-formats.templates {
  clear: none;
  display: inline-block;
}
md-quill-editor ng-quill-editor.has-word-count #quill-word-count {
  display: block;
}
md-quill-editor ng-quill-editor #quill-word-count {
  display: none;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  padding-top: 5px;
}
@media (max-width: 767px) {
  md-quill-editor #md-quill-toolbar span {
    margin-right: 1px;
  }
}
md-quill-editor #md-quill-toolbar .dropdown {
  color: #444;
  font-size: 14px;
  font-weight: 500;
  width: 98px;
  height: 24px;
  line-height: 24px;
  border: 1px solid transparent;
}
md-quill-editor #md-quill-toolbar .dropdown.open {
  border-color: #ccc;
}
md-quill-editor #md-quill-toolbar .dropdown.open .dropdown-toggle {
  color: #ccc;
}
md-quill-editor #md-quill-toolbar .dropdown.open .ql-stroke {
  stroke: #ccc;
}
md-quill-editor #md-quill-toolbar .dropdown .dropdown-toggle {
  color: #444;
  padding-left: 8px;
}
md-quill-editor #md-quill-toolbar .dropdown .dropdown-menu {
  min-width: 100px;
  border-radius: 0px;
  margin-top: 0px;
}
md-quill-editor #md-quill-toolbar .dropdown .dropdown-menu li a {
  padding: 4px 8px;
}
md-quill-editor #md-quill-toolbar .dropdown .dropdown-menu li a .text {
  color: #444;
  font-size: 14px;
  font-weight: 500;
}
md-quill-editor #md-quill-toolbar .dropdown svg {
  position: absolute;
  right: 1px;
  top: 3px;
  width: 18px;
}
md-quill-editor #md-quill-toolbar .dropdown svg .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
md-quill-editor #md-quill-toolbar .dropdown i {
  vertical-align: middle;
  line-height: 20px;
  margin-left: 5px;
}
md-quill-editor #md-quill-toolbar .attachment-trigger i {
  vertical-align: super;
  color: #1a93d7;
}
md-quill-editor #md-quill-toolbar .attachment-trigger i:hover,
md-quill-editor #md-quill-toolbar .attachment-trigger i:focus {
  color: #1a93d7;
}
md-template-question-editor {
  display: block;
}
md-template-question-editor .question-header {
  margin-bottom: 10px;
  position: relative;
}
md-template-question-editor .question-header h5 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-right: 65px;
}
md-template-question-editor .question-header .optional {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #666;
  margin-left: 5px;
}
md-template-question-editor .question-header .description {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
md-template-question-editor .question-header .md-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 26px;
}
md-template-question-editor .question-preview .md-form-group {
  margin-bottom: 0px;
}
md-template-question-editor .question-preview .md-form-control {
  height: unset;
}
md-template-question-editor .question-preview .md-form-control.input-small {
  max-width: 200px;
  display: inline-block;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 24px;
  line-height: 24px;
}
md-template-question-editor .question-preview .scale-option {
  clear: none;
  display: inline-block;
}
md-template-question-editor .question-preview .scale-option .scale-wrap {
  text-align: center;
  margin-right: 10px;
}
md-template-question-editor .question-preview .scale-option .scale-label {
  font-size: 14px;
}
md-template-question-editor .question-preview .scale-option .radio-wrap {
  width: 100%;
}
md-template-question-editor .question-preview .scale-option .radio-wrap rmd-radio {
  margin-left: auto;
  margin-right: auto;
}
md-template-question-editor .question-editor {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #d0d0d0;
}
md-template-question-editor .question-editor .form {
  display: block;
  height: 100%;
}
md-template-question-editor .question-editor .md-form-group {
  margin-bottom: 20px;
}
md-template-question-editor .question-editor .footer-group {
  margin-bottom: 0px;
}
md-template-question-editor .question-editor .footer-group .md-form-group {
  margin-bottom: 0px;
}
md-template-question-editor .question-editor .footer-group .done-column {
  text-align: right;
}
md-template-question-editor .question-editor .question-config.scale select {
  width: 45px;
  text-align: center;
}
md-template-question-editor .question-editor .question-config.scale .scale-separator {
  margin: 0px 10px;
}
md-template-question-editor .question-editor .option-config .option-inputs {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-template-question-editor .question-editor .option-config .option-inputs .md-form-group {
  margin-bottom: 0;
}
md-template-question-editor .question-editor .option-config .option-inputs .title-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-template-question-editor .question-editor .option-config .option-inputs .other-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 130px;
  -ms-flex: 0 1 130px;
  flex: 0 1 130px;
  margin-left: 10px;
}
md-template-question-editor .question-editor .option-config .option-inputs .toolbar-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 55px;
  -ms-flex: 0 1 55px;
  flex: 0 1 55px;
  margin-left: 10px;
}
md-template-question-editor .question-editor .option-config .option-inputs .toolbar-group .toolbar-action {
  clear: none;
  display: inline-block;
  width: 15px;
  margin-right: 5px;
}
md-template-question-editor .question-editor .option-config .option-inputs .toolbar-group .toolbar-action:last-child {
  margin-right: 0px;
}
md-template-question-editor .question-editor .option-config .option-inputs .toolbar-group .toolbar-action .dropdown-toggle i {
  color: #1da4f0;
}
md-template-question-editor .question-editor .option-config .option-inputs .toolbar-group .md-drag-handle {
  position: relative;
}
md-template-question-editor .question-editor .nested-question-block {
  padding-left: 30px;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 20px;
  position: relative;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item .nested-input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item .nested-toolbar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 35px;
  -ms-flex: 0 1 35px;
  flex: 0 1 35px;
  margin-left: 10px;
  margin-top: 24px;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item .nested-toolbar .toolbar-action {
  clear: none;
  display: inline-block;
  width: 15px;
  margin-right: 5px;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item .nested-toolbar .toolbar-action:last-child {
  margin-right: 0px;
}
md-template-question-editor .question-editor .nested-question-block .nested-question-item .nested-toolbar .md-drag-handle {
  position: relative;
}
md-template-question-editor .question-editor .hover-map-question .tab-content {
  margin: 10px 0;
}
md-template-question-editor .as-sortable-dragging {
  margin-top: 20px;
  background-color: #fff;
  border: none;
  position: absolute;
}
md-template-question-editor .option-item.as-sortable-item {
  margin-bottom: 10px;
}
md-template-question-editor .attachments-pane {
  margin-top: 20px;
}
md-template-question-editor .attachments-pane .attachments .attachment {
  width: fit-content;
}
md-template-question-editor .attachments {
  margin-bottom: 10px;
}
md-template-question-editor md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-template-question-editor md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-template-question-editor .md-dropzone-file-preview {
  display: none;
}
md-template-question-editor .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-template-question-editor .file-loaders md-dropzone {
  margin-left: 15px;
}
md-template-question-editor .file-loader-icon {
  font-weight: bold;
  font-size: 16px;
}
md-template-question-editor .disabled-link {
  cursor: not-allowed;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  text-decoration: none;
}
md-mapping-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-mapping-picker .ui-select-toggle {
  color: #000;
}
md-mapping-picker .text-muted {
  color: #b1b1b1;
}
md-mapping-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-mapping-picker .input-row {
  margin-bottom: 10px;
}
md-mapping-picker .input-row .type-picker {
  margin-left: 10px;
}
md-mapping-picker .md-form-group {
  margin-bottom: 10px;
}
md-mapping-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-mapping-picker .add-link i {
  margin-right: 5px;
}
md-mapping-picker .ui-select-spin {
  display: none;
}
md-mapping-picker .btn-link {
  display: none;
}
md-mapping-picker .readonly-mapping-title {
  line-height: 35px;
}
md-mapping-picker .mapping-chips-container {
  margin-left: -22px;
}
md-toolbar-template-type-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-template-picker {
  clear: none;
  display: inline-block;
}
md-account-subscription {
  display: block;
}
md-account-subscription .md-tabpanel {
  margin-top: 10px;
}
md-account-subscription a.btn.disabled.save {
  pointer-events: unset;
}
md-account-subscription-overview {
  display: block;
}
md-account-subscription-overview .md-pane-group.mb40 {
  margin-bottom: 40px;
}
md-account-subscription-overview .md-pane-group-item h4 {
  font-size: 18px;
}
md-account-subscription-overview .md-pane-group-item + .md-pane-group-item {
  margin-top: 30px;
}
md-account-subscription-overview .section-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
md-account-subscription-overview .section-row .heading-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
md-account-subscription-overview .section-row .heading-column .md-pane-group-item {
  padding-left: 0px;
}
md-account-subscription-overview .section-row .graph-column {
  padding-right: 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
}
md-account-subscription-overview .header-row {
  margin-top: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-subscription-overview .header-row .header-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 110px;
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
}
md-account-subscription-overview .header-row .data-column {
  min-width: 60px;
  margin-right: 10px;
}
md-account-subscription-overview .header-row .header-detail.left {
  margin-left: 125px;
  width: 125px;
}
md-account-subscription-overview .content-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-subscription-overview .content-row .label-column {
  padding-right: 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 125px;
  -ms-flex: 0 0 125px;
  flex: 0 0 125px;
}
md-account-subscription-overview .content-row .content-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 125px;
  -ms-flex: 0 0 125px;
  flex: 0 0 125px;
  padding-right: 0px;
  text-align: left;
}
md-account-subscription-overview .content-row .content-column.input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 160px;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
}
md-account-subscription-overview .content-row .content-label {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 125px;
  -ms-flex: 0 0 125px;
  flex: 0 0 125px;
  line-height: 20px;
  margin-top: 5px;
}
md-account-subscription-overview .content-row .content-label.sm {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 110px;
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
}
md-account-subscription-overview .content-row .content-detail {
  line-height: 20px;
  margin-top: 5px;
}
md-account-subscription-overview .content-row .content-label.form-input-label {
  line-height: 34px;
}
md-account-subscription-plan {
  display: block;
}
md-account-subscription-plan md-alert-banner {
  margin-top: 10px;
}
md-account-subscription-plan md-alert-banner md-alert-banner-content {
  text-align: center;
}
md-account-subscription-plan .header-row {
  margin-top: 5px;
}
md-account-subscription-plan .header-row .header-column {
  padding-right: 0px;
  max-width: 120px;
}
md-account-subscription-plan .header-row .data-column {
  max-width: 90px;
  padding-right: 10px;
  text-align: left;
}
md-account-subscription-plan .header-row .limit-column {
  padding-left: 0px;
  text-align: left;
}
md-account-subscription-plan .header-row .payment-column {
  text-align: left;
}
md-account-subscription-plan .header-row .content-label,
md-account-subscription-plan .header-row .content-detail {
  line-height: 20px;
}
@media (min-width: 1440px) {
  md-account-subscription-plan .header-row .header-column {
    max-width: 150px;
  }
  md-account-subscription-plan .header-row .data-column {
    max-width: 160px;
  }
}
md-account-subscription-plan .plan-list {
  margin-top: 10px;
}
md-account-subscription-plan .plan-list .column .plan-button {
  width: 120px;
}
md-account-subscription-billing {
  display: block;
}
md-account-subscription-billing .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-account-subscription-billing .billing-notice {
  margin: 20px 0px;
}
md-account-subscription-billing .cards-accepted {
  height: 34px;
}
md-account-subscription-billing .cards-accepted img {
  max-height: 30px;
  padding-top: 2px;
}
md-account-subscription-billing .recharge-group {
  margin-bottom: 0px;
}
md-account-subscription-billing #recharge-form {
  margin-top: 20px;
}
md-account-subscription-billing #recharge-form .md-form-group + .md-form-group {
  margin-left: 20px;
}
md-account-subscription-billing #recharge-form .control-label {
  margin-right: 5px;
}
md-account-subscription-payments {
  display: block;
}
md-payment-invoice {
  display: block;
}
md-payment-invoice .text1.description {
  white-space: normal;
}
md-fax-recharge-balance {
  display: block;
}
md-fax-recharge-balance .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-fax-recharge-balance .large-text {
  font-size: 18px;
  font-weight: 600;
}
md-fax-recharge-balance .header-row {
  margin-bottom: 20px;
}
md-fax-recharge-balance .header-row h4 {
  font-size: 16px;
  font-weight: 600;
}
md-fax-recharge-balance .info-row {
  margin-top: 20px;
}
md-fax-recharge-balance .info-row:first-child {
  margin-top: 0px;
}
md-fax-recharge-balance .info-row h3 {
  font-size: 16px;
  font-weight: 600;
}
md-fax-recharge-balance .info-row h4 {
  font-size: 14px;
  font-weight: 600;
}
md-fax-recharge-balance .info-row p {
  line-height: 20px;
}
md-fax-recharge-balance .action-link {
  margin-left: 20px;
}
md-fax-recharge-balance .payment-summary .action-section {
  text-align: center;
  margin-top: 20px;
}
.container.md-content {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
}
@media (min-width: 1440px) {
  .container.md-content {
    max-width: 3000px;
  }
}
.md-content-padding {
  padding: 15px 30px;
}
.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.md-page-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.md-page-content .md-sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
  margin-right: 15px;
}
.md-page-content .md-sidebar.settings-sidebar {
  margin-top: -10px;
}
.md-page-content .md-sidebar.settings-sidebar .md-pane-sidebar {
  overflow: auto;
}
.md-page-content .md-toolbar-content,
.md-page-content .md-main-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
.md-page-content .md-toolbar-content .md-toolbar {
  margin-left: 2px;
}
.md-page-blank .ui-select-placeholder,
.md-page-detail .ui-select-placeholder {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.md-section-header {
  padding: 0px 0px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
}
.md-section-header .title {
  clear: none;
  display: inline-block;
  color: #333;
  vertical-align: top;
  margin-bottom: 20px;
}
.md-section-header h2.title {
  font-weight: 300;
}
.md-section-header p {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-section-header .back-link {
  clear: none;
  display: inline-block;
  cursor: pointer;
  color: #1da4f0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.md-section-header .back-link:hover,
.md-section-header .back-link:focus {
  color: #4ab6f3;
}
.md-section-header .back-link i {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
.md-section-header .back-link .text {
  clear: none;
  display: inline-block;
}
.md-section-header.no-border {
  border: none;
}
.md-section-header .md-form-group .form-control {
  height: 40px;
  line-height: 40px;
}
.md-section-header .md-form-group.md-form-group-icon .icon {
  line-height: 40px;
}
.md-section-header .md-toolbar.right .md-form-group,
.md-section-header .md-toolbar.right .form-group {
  margin-right: 0px;
  margin-left: 20px;
  vertical-align: middle;
}
.md-section-header .md-tabpanel {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .md-section-header .title {
    display: block;
    margin-bottom: 10px;
  }
  .md-section-header .back-link {
    display: block;
    margin: 0px;
  }
}
.md-section-padding {
  padding: 0 20px;
}
.md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: 100px;
}
.md-layout-stretch-wrap .mCustomScrollBox {
  width: 100%;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_container {
  margin-right: 0px;
  padding-bottom: 0px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_vertical {
  width: 6px;
}
.md-layout-stretch-wrap .mCustomScrollBox .mCSB_scrollTools_horizontal {
  height: 6px;
}
.md-layout-stretch-wrap .md-layout-stretch-content {
  width: 100%;
  position: relative;
}
.md-layout-stretch-wrap .md-layout-stretch-content .md-pane-table {
  background-color: transparent;
}
.md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow-x: auto;
  overflow-y: auto;
  height: -webkit-fill-available;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-image: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(right, #fff, rgba(255,255,255,0)), -webkit-linear-gradient(left, #efefef, rgba(234,240,246,0)), -webkit-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -moz-linear-gradient(left, #fff, rgba(255,255,255,0)), -moz-linear-gradient(right, #fff, rgba(255,255,255,0)), -moz-linear-gradient(left, #efefef, rgba(234,240,246,0)), -moz-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -o-linear-gradient(left, #fff, rgba(255,255,255,0)), -o-linear-gradient(right, #fff, rgba(255,255,255,0)), -o-linear-gradient(left, #efefef, rgba(234,240,246,0)), -o-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: -ms-linear-gradient(left, #fff, rgba(255,255,255,0)), -ms-linear-gradient(right, #fff, rgba(255,255,255,0)), -ms-linear-gradient(left, #efefef, rgba(234,240,246,0)), -ms-linear-gradient(right, #efefef, rgba(234,240,246,0));
  background-image: linear-gradient(to right, #fff, rgba(255,255,255,0)), linear-gradient(to left, #fff, rgba(255,255,255,0)), linear-gradient(to right, #efefef, rgba(234,240,246,0)), linear-gradient(to left, #efefef, rgba(234,240,246,0));
  background-position: 0% 0, 100% 0, 0% 0, 100% 0;
  background-size: 4em 100%, 4em 100%, 1em 100%, 1em 100%;
}
.md-layout-stretch-wrap .md-layout-stretch-content.bordered {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container i {
  color: #cecece;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-up {
  position: absolute;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
.md-layout-stretch-wrap .md-layout-stretch-content .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
tbody tr:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.gray-background-page .md-layout-stretch-wrap {
  background-color: #fff;
}
.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-image: none;
}
.md-wide {
  width: 100%;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p30 {
  padding: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.m30 {
  margin: 30px;
}
md-account-insurance {
  display: block;
}
md-account-insurance .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
md-account-insurance th {
  background-color: #fff !important;
}
md-account-insurance .rmd-list-item {
  background-color: #fff;
}
md-account-insurance .md-toolbar .form-group {
  margin-right: 15px;
}
md-account-insurance .md-filter-row-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
md-account-insurance .md-filter-row-container .filter-row {
  -webkit-flex-basis: 90%;
  flex-basis: 90%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
md-account-insurance .md-filter-row-container .filter-row .control-label {
  margin-right: 0px;
}
md-account-insurance .md-filter-row-container .selected-row {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: unset;
}
md-account-insurance .md-filter-row-container .search-bar {
  width: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
md-account-insurance .md-filter-row-container.has-filters .filter-row {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
md-account-insurance .md-filter-row-container.has-filters .selected-row {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-account-insurance .md-filter-row-container .md-insurance-filters-state {
  width: 100%;
}
md-account-insurance .md-filter-row-container .md-insurance-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
md-account-insurance .md-filter-row-container .md-insurance-filters-state .item .text {
  overflow: hidden;
}
md-account-insurance .md-filter-row-container .md-insurance-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
md-insurance-custom-editor {
  display: block;
}
md-insurance-custom-editor .md-tabpanel-content {
  height: calc(100vh - 40px - 31px - 20px - 81px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-insurance-custom-editor .rmd-list-manual .md-layout-stretch-wrap {
  height: calc(100vh - 75px - 100px - 40px - 81px);
}
@media (max-width: 767px) {
  md-insurance-custom-editor .rmd-list-manual .md-layout-stretch-wrap {
    height: 50vh;
  }
}
md-insurance-custom-editor .rmd-list-manual tbody tr td.column {
  max-width: none;
}
md-insurance-custom-editor .mobile-insurance {
  max-width: 70vw;
}
md-insurance-custom-editor .header-row {
  margin-bottom: 10px;
}
md-insurance-custom-editor .header-row h4 {
  font-size: 18px;
  color: #000;
}
md-insurance-custom-editor .header-row .switch-group {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
md-insurance-custom-editor .toolbar-row .md-toolbar .form-group {
  margin-bottom: 10px;
  line-height: 40px;
}
md-insurance-custom-editor .toolbar-row .md-toolbar .form-group input {
  width: 220px;
}
@media (max-width: 767px) {
  md-insurance-custom-editor .toolbar-row .md-toolbar .form-group input {
    width: calc(100vw - 40px);
  }
}
md-insurance-custom-editor .toolbar-row .md-toolbar.filters {
  margin-left: 20px;
}
@media (max-width: 767px) {
  md-insurance-custom-editor .toolbar-row .md-toolbar.filters {
    margin-left: 0px;
  }
}
md-insurance-custom-editor .plan-table .rmd-list-item .column {
  border-top: none;
  padding: 2px 20px;
}
@media (max-width: 767px) {
  md-insurance-custom-editor .plan-table .rmd-list-item .column {
    padding: 2px;
  }
}
md-insurance-custom-editor .plan-table .rmd-list-item:first-child .column {
  border-top: 1px solid #d0d0d0;
}
md-insurance-custom-editor .insurance-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-insurance-custom-editor .control-icon {
  padding-top: 7px;
  float: right;
}
md-insurance-custom-editor .icon-with-data i.fa {
  color: #6bb31c;
}
md-insurance-custom-editor .icon-without-data i.fa {
  color: #1da4f0;
}
md-insurance-custom-editor .form-display-name {
  width: 94%;
  float: left;
}
md-insurance-custom-editor .custom-btn {
  height: 34px !important;
}
md-insurance-custom-editor .group-mapping {
  margin-bottom: 0px !important;
}
md-insurance-custom-editor .mappings-section {
  margin-top: 10px;
  margin-right: 68px;
  margin-bottom: 20px;
  margin-left: 20px;
}
md-insurance-custom-editor .insurance-section {
  margin-left: 1px;
  width: calc(100%) !important;
  margin-top: 15px;
}
md-insurance-custom-editor .insurance-section md-integration-mapping-picker .btn.danger {
  padding-right: 10px !important;
}
md-insurance-custom-editor .toggle-column {
  clear: none;
  display: inline-block;
  padding-right: 15px;
}
md-insurance-custom-editor .toggle-column:last-child {
  padding-right: 15px;
}
md-insurance-custom-editor .plan-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-insurance-custom-editor .plan-sections {
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}
md-insurance-custom-editor .mapping-picker-plan {
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}
md-insurance-custom-editor .mapping-picker-plan .md-btn.icon.danger {
  padding-right: 0px !important;
}
md-insurance-custom-editor .insurance-indent {
  margin-left: 20px;
}
md-insurance-custom-editor .md-form-row-insurance {
  margin-bottom: 10px !important;
}
md-insurance-custom-editor .tab-audit-log {
  overflow-x: scroll !important;
}
md-insurance-custom-editor md-insurance-audit-log {
  display: inline-block;
}
md-insurance-custom-editor rmd-list-loading-icon {
  width: 520px;
}
md-insurance-custom-editor .audit-row {
  background-color: #fff;
}
md-insurance-custom-editor .rmd-list-content {
  width: 1000px;
}
.modal-long {
  width: 700px;
}
.md-insutance-editor-modal-text {
  margin-top: 10px;
}
md-toolbar-state-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-state-picker .dropdown-menu.search {
  width: fit-content;
  min-width: 200px;
}
md-insurance-audit-log {
  padding-top: 10px;
}
md-insurance-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-insurance-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-insurance-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-insurance-audit-log .details .action.block {
  display: block;
}
md-insurance-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-insurance-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-insurance-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-insurance-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-insurance-audit-log .details .file a:hover,
md-insurance-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-insurance-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-insurance-editor {
  display: block;
}
md-insurance-editor .rmd-list-manual .md-layout-stretch-wrap {
  height: calc(100vh - 75px - 100px - 40px - 81px);
}
@media (max-width: 767px) {
  md-insurance-editor .rmd-list-manual .md-layout-stretch-wrap {
    height: 50vh;
  }
}
md-insurance-editor .rmd-list-manual tbody tr td.column {
  max-width: none;
}
md-insurance-editor .mobile-insurance {
  max-width: 70vw;
}
md-insurance-editor .header-row {
  margin-bottom: 10px;
}
md-insurance-editor .header-row h4 {
  font-size: 18px;
  color: #000;
}
md-insurance-editor .header-row .switch-group {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
md-insurance-editor .toolbar-row .md-toolbar .form-group {
  margin-bottom: 10px;
  line-height: 40px;
}
md-insurance-editor .toolbar-row .md-toolbar .form-group input {
  width: 220px;
}
@media (max-width: 767px) {
  md-insurance-editor .toolbar-row .md-toolbar .form-group input {
    width: calc(100vw - 40px);
  }
}
md-insurance-editor .toolbar-row .md-toolbar.filters {
  margin-left: 20px;
}
@media (max-width: 767px) {
  md-insurance-editor .toolbar-row .md-toolbar.filters {
    margin-left: 0px;
  }
}
md-insurance-editor .plan-table .rmd-list-item .column {
  border-top: none;
  padding: 2px 20px;
}
@media (max-width: 767px) {
  md-insurance-editor .plan-table .rmd-list-item .column {
    padding: 2px;
  }
}
md-insurance-editor .plan-table .rmd-list-item:first-child .column {
  border-top: 1px solid #d0d0d0;
}
.modal-long {
  width: 700px;
}
md-insurance-request-plan {
  display: block;
}
md-insurance-request-plan .header-row {
  margin-bottom: 10px;
}
md-insurance-request-plan .header-row h4 {
  font-size: 18px;
  color: #000;
}
.plan-group {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 10px;
}
.plan-request-instructions {
  font-size: 14px !important;
}
.plan-modal-long {
  width: 800px !important;
}
md-plan-adder {
  display: block;
}
md-plan-adder .has-error .form-control {
  border-color: #da3549 !important;
}
md-plan-adder .payer,
md-plan-adder .plan {
  margin-right: 10px;
  min-width: 200px !important;
}
md-plan-adder .dropdown-menu,
md-plan-adder .md-dropdown-menu,
md-plan-adder .dropdown {
  min-width: 200px !important;
}
md-plan-adder .input-row {
  margin-bottom: 10px;
}
md-plan-adder .input-row .type-picker {
  max-width: 95px;
  margin-left: 10px;
}
md-plan-adder .md-form-group {
  margin-bottom: 10px;
}
md-plan-adder .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-plan-adder .add-link i {
  margin-right: 5px;
}
md-merge-plans-modal {
  display: block;
}
md-merge-plans-modal .payers-list {
  margin-bottom: 10px;
}
md-account-verification .md-dropzone {
  padding: 0px;
  text-align: center;
}
md-account-verification .md-dropzone-content {
  margin-bottom: 0px !important;
}
md-account-verification .file-box {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}
md-account-verification .md-ellipsis {
  font-size: 14px;
  padding-top: 10px;
}
md-account-verification a.pull-right {
  padding-top: 3px;
}
md-account-verification .md-top-header {
  padding-bottom: 10px;
}
md-account-verification .helper {
  padding-top: 15px;
}
md-account-verification .fa {
  margin: 10px;
  color: #555;
  font-size: 14px;
}
md-account-verification .fa .link {
  cursor: pointer;
}
md-account-verification .md-pane {
  margin-bottom: 20px;
  min-height: 95%;
}
md-account-verification .md-pane:before {
  content: '';
  left: 15px;
  top: 0px;
  right: 15px;
  bottom: 0px;
  position: absolute;
  background: $mdWhite;
}
md-account-verification .md-pane .md-pane-body {
  position: relative;
  padding: 20px 20px 10px;
  font-size: 12px;
  text-align: center;
}
md-account-verification .md-pane .md-pane-body .md-email,
md-account-verification .md-pane .md-pane-body .md-fax {
  font-size: 14px;
  font-weight: 600;
  padding: 5px;
  padding-bottom: 15px;
}
md-account-verification .md-pane .md-pane-body .md-file {
  font-size: 14px;
  padding: 20px 5px 25px;
}
md-account-verification .md-pane .md-pane-body .md-file .md-btn {
  max-width: 175px;
  width: 90%;
  padding: 0px;
}
md-account-verification .md-pane .md-pane-body .md-verify {
  font-size: 14px;
  padding: 5px;
  padding-bottom: 15px;
}
md-account-verification .md-pane .md-pane-body .md-verify .md-btn {
  max-width: 175px;
  width: 90%;
  padding: 0px;
}
md-account-verification .md-pane .md-pane-body .md-verify .fa {
  margin-right: 10px;
}
md-account-verification .md-pane .md-pane-body .md-note {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
md-account-verification .md-pane .md-pane-body .md-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
md-account-verification .md-pane .md-pane-body .md-btn {
  max-width: 175px;
  width: 90%;
  padding: 0px;
}
md-account-verification .md-validate-files {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  padding-bottom: 15px;
}
md-account-verification .md-validate-files span {
  cursor: pointer;
}
md-account-verification .md-validate-files .md-validate-files-list .md-validate-files-file a {
  color: #4ab6f3;
}
md-account-verification .md-validate-files .md-validate-files-list .md-validate-files-file a .fa {
  font-size: 15px;
}
md-account-verification .md-validate-files .md-validate-files-list .md-validate-files-file .ellipsis {
  margin-right: 20px;
}
md-account-verification .md-validate-files .md-validate-files-upload .fa {
  margin-right: 10px;
  color: #555;
  font-size: 14px;
}
md-account-verification .alert-danger,
md-account-verification .alert-success {
  padding: 15px;
}
md-account-verification .alert-danger .success,
md-account-verification .alert-success .success {
  color: $mdWhite;
}
md-dropzone {
  display: block;
}
md-dropzone .dz-message {
  font-size: 14px;
  cursor: pointer;
  color: #1da4f0;
}
md-dropzone .md-dropzone-content {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 10px;
}
md-dropzone .md-dropzone-content i {
  margin-right: 5px;
}
md-dropzone .dz-preview {
  margin-top: 10px;
}
md-dropzone .dz-preview i {
  font-size: 14px;
  color: #1da4f0;
  margin-right: 5px;
}
md-dropzone .dz-preview .dz-image,
md-dropzone .dz-preview .dz-details,
md-dropzone .dz-preview .dz-progress,
md-dropzone .dz-preview .dz-success-mark,
md-dropzone .dz-preview .dz-error-mark {
  clear: none;
  display: inline-block;
}
md-dropzone .dz-preview .dz-details {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 20px;
}
md-dropzone .dz-preview .dz-details .dz-icon {
  margin-right: 5px;
}
md-dropzone .dz-preview .dz-details .dz-filename {
  font-size: 14px;
  line-height: 20px;
  max-width: 400px;
  margin-right: 10px;
}
md-dropzone .dz-preview .dz-details .dz-filename span {
  clear: none;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
md-dropzone .dz-preview .dz-details .dz-size {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
md-dropzone .dz-preview .dz-details .dz-remove {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-left: 5px;
}
md-dropzone .dz-preview .dz-details .dz-remove .md-dropzone-file-remove {
  display: block;
  cursor: pointer;
  height: 100%;
}
md-dropzone .dz-preview .dz-details .dz-remove .md-dropzone-file-remove i {
  color: #da3549;
  line-height: 20px;
}
md-dropzone .dz-preview .dz-success-mark {
  display: none;
}
md-account-onboarding {
  display: block;
  width: 100%;
}
md-import-management {
  display: block;
}
md-import-management .md-dropdown-group {
  margin-left: 10px;
}
md-age-group-picker {
  display: block;
}
md-age-group-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
.md-controller-message .md-section-header .dropdown {
  margin-left: 0px;
  margin-bottom: 10px;
}
.md-controller-message .md-section-header .dropdown h1 {
  margin-bottom: 0px;
}
.md-controller-message .md-section-header .dropdown .dropdown-toggle i {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  margin-left: 5px;
  vertical-align: middle;
}
.md-controller-message .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 100px);
}
.md-controller-message .md-page-content {
  height: 100%;
}
.md-controller-message .md-sidebar {
  height: 100%;
}
.md-controller-message .md-sidebar .sidebar-pane {
  width: 100%;
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
  margin-left: 0px;
  width: 100%;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.md-section-toolbar md-toolbar-user-picker .dropdown-menu,
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.md-section-toolbar md-toolbar-department-picker .dropdown-menu {
  max-width: unset;
  width: 260px;
  top: 23px;
  left: 0;
  right: 260px;
  -webkit-transform: unset;
  -moz-transform: unset;
  -o-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.md-section-toolbar md-toolbar-user-picker.right .dropdown-menu,
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.md-section-toolbar md-toolbar-department-picker.right .dropdown-menu {
  right: 0;
  left: -113px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
  margin-bottom: 5px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar.toolbar-control .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-controller-message .md-sidebar .sidebar-pane .md-toolbar .clear-toolbar-filters {
  line-height: 22.5px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-messages-filters-state {
  margin: 0px 20px;
}
.md-controller-message .md-sidebar .sidebar-pane .md-messages-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
  max-width: 100%;
}
.md-controller-message .md-sidebar .sidebar-pane .md-messages-filters-state .item .text {
  overflow: hidden;
}
.md-controller-message .md-sidebar .sidebar-pane .md-messages-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-message .md-sidebar .sidebar-pane .no-results {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
  font-weight: 600;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-controller-message .md-sidebar .sidebar-pane .md-loader-indicator {
  color: #1da4f0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  font-size: 35px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-controller-message .md-sidebar .sidebar-pane md-conversation-search {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.md-controller-message .md-sidebar .sidebar-pane .list-wrap {
  height: 100%;
  max-height: calc(100% - 74px);
  overflow: hidden;
}
.md-controller-message .md-main-content {
  height: 100%;
}
.md-controller-message .md-main-content .main-pane {
  width: 100%;
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.md-controller-message .md-main-content .main-pane .conversation-wrap {
  height: 100%;
  overflow: hidden;
}
md-conversation-search {
  display: block;
}
md-conversation-search .md-form-group {
  margin-bottom: 0px;
}
md-conversation-list {
  display: block;
  position: relative;
  height: 100%;
}
md-conversation-list .md-highlight-match {
  font-weight: 600;
  background-color: #e8c64e;
}
md-conversation-list .scrollable-content {
  max-height: 100%;
  overflow-y: auto;
}
md-conversation-list .item-list {
  width: 100%;
}
md-conversation-list .item-list .item {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
md-conversation-list .item-list .item:focus {
  outline: none;
}
md-conversation-list .item-list .item:last-child {
  border-bottom: none;
}
md-conversation-list .item-list .item:hover {
  background: #f2f2f2;
  border-radius: 0px;
}
md-conversation-list .item-list .item.active {
  background: #f2f2f2;
  border-radius: 0px;
  border-right: 2px solid #1da4f0;
}
md-conversation-list .item-list .item.active .title {
  cursor: pointer;
  color: #1da4f0;
}
md-conversation-list .item-list .item.active .title:hover,
md-conversation-list .item-list .item.active .title:focus {
  color: #4ab6f3;
}
md-conversation-list .item-list .item .item-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}
md-conversation-list .item-list .item .item-content md-conversation-avatar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 10px;
}
md-conversation-list .item-list .item .item-content .info {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  overflow: hidden;
  color: #000;
}
md-conversation-list .item-list .item .item-content .info .title {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-conversation-list .item-list .item .item-content .info .description {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-conversation-list .item-list .item .item-content .info .meta {
  text-align: right;
}
md-conversation-avatar {
  display: block;
}
md-conversation-avatar .md-icon {
  width: 60px;
  height: 60px;
  position: relative;
}
md-conversation-avatar .md-icon md-avatar .md-avatar {
  width: 60px !important;
  height: 60px !important;
}
md-conversation-avatar .md-icon md-avatar.md-icon-0,
md-conversation-avatar .md-icon md-avatar.md-icon-1,
md-conversation-avatar .md-icon md-avatar.md-icon-2,
md-conversation-avatar .md-icon md-avatar.md-icon-3,
md-conversation-avatar .md-icon md-avatar.md-icon-4,
md-conversation-avatar .md-icon md-avatar.md-icon-more {
  position: absolute;
}
md-conversation-avatar .md-icon.md-icon-frame-1 md-avatar.md-icon-0 {
  left: 5px;
  top: 5px;
}
md-conversation-avatar .md-icon.md-icon-frame-1 md-avatar .md-avatar {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
}
md-conversation-avatar .md-icon.md-icon-frame-2 md-avatar .md-avatar {
  width: 34px !important;
  height: 34px !important;
}
md-conversation-avatar .md-icon.md-icon-frame-2 md-avatar.md-icon-0 {
  left: 0px;
  top: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-2 md-avatar.md-icon-1 {
  right: 0px;
  bottom: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-3 md-avatar .md-avatar,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar .md-avatar,
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar .md-avatar {
  width: 28px !important;
  height: 28px !important;
}
md-conversation-avatar .md-icon.md-icon-frame-3 md-avatar.md-icon-0,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-0,
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-0 {
  left: 13px;
  top: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-3 md-avatar.md-icon-1,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-1,
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-1 {
  left: 0px;
  bottom: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-3 md-avatar.md-icon-2,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-2,
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-2 {
  right: 0px;
  bottom: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar .md-avatar,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar .md-avatar {
  width: 28px !important;
  height: 28px !important;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-0,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-0 {
  left: 0px;
  top: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-1,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-1 {
  left: auto;
  bottom: auto;
  top: 0px;
  right: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-2,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-2 {
  right: auto;
  left: 0px;
  bottom: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-3,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-3,
md-conversation-avatar .md-icon.md-icon-frame-multiple md-avatar.md-icon-more,
md-conversation-avatar .md-icon.md-icon-frame-4 md-avatar.md-icon-more {
  right: 0px;
  bottom: 0px;
}
md-conversation-avatar .md-icon.md-icon-frame-multiple .md-icon-more,
md-conversation-avatar .md-icon.md-icon-frame-4 .md-icon-more {
  background: #f1f1f1;
  line-height: 28px;
  text-align: center;
  font-size: 11px;
  color: $mdBlack;
}
@media (min-width: 768px) and (max-width: 991px) {
  md-conversation-avatar .md-icon {
    display: none;
  }
}
md-conversation-details {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
md-conversation-details .middle {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 0px;
  border-top: 1px solid #ddd;
  height: 100%;
  max-height: calc(100% - 55px - 55px);
}
md-conversation-details .middle .text-center {
  font-size: 14px;
  font-weight: 900;
}
md-conversation-details .has-banner {
  max-height: calc(100% - 55px - 55px - 42px);
}
md-conversation-details .has-banner-footer {
  padding-top: 42px;
}
md-conversation-details .bottom {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0;
  -ms-flex: 0 0;
  flex: 0 0;
  display: block;
  height: 55px;
  padding-left: 20px;
  padding-right: 20px;
}
md-conversation-details .bottom md-message-send {
  padding-top: 10px;
  z-index: 10;
}
md-conversation-details .top {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0;
  -ms-flex: 0 0;
  flex: 0 0;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  height: 55px;
  text-align: right;
}
md-conversation-details .top .header-info {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 600px;
  float: left;
  text-align: left;
}
md-conversation-details .top .header-info .second-row .md-link {
  font-size: 12px;
  clear: none;
  display: inline-block;
  color: #1da4f0;
  margin-right: 10px;
}
md-conversation-details .top .md-toolbar {
  margin-right: 10px;
}
md-conversation-details .top .md-toolbar .form-group {
  margin-right: 5px;
}
md-conversation-details .top .md-toolbar .form-group .btn {
  padding: 0px 5px;
}
md-conversation-details .top .md-toolbar .form-group i {
  font-size: 20px;
  color: #1da4f0;
}
md-conversation-details .top md-message-search {
  clear: none;
  display: inline-block;
  max-width: 210px;
}
md-message-search {
  display: block;
}
md-message-search .md-form-group {
  margin-bottom: 0px;
}
.md-link,
.md-link-white {
  cursor: pointer;
  color: #1da4f0;
}
.md-link:hover,
.md-link-white:hover,
.md-link:focus,
.md-link-white:focus {
  color: #4ab6f3;
}
.md-link-white {
  color: #fff;
}
.md-link-white:hover,
.md-link-white:focus {
  color: #1da4f0;
}
md-message-list {
  display: block;
  height: 100%;
}
md-message-list .filename,
md-message-list .filesize {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  font-size: 14px;
  line-height: 20px;
}
md-message-list .pdfobject {
  width: 398px !important;
  height: 200px !important;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 5px;
}
md-message-list .spaced {
  margin-right: 10px;
}
md-message-list .media-body {
  width: 0px;
}
md-message-list .centered {
  vertical-align: middle;
}
md-message-list .file-box {
  margin-top: 10px !important;
  margin-left: 1px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 10px;
  width: 598px;
  height: 68px;
}
md-message-list .pdf-box {
  margin-left: 1px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 10px;
  padding-left: 16px;
  width: 428px !important;
  height: 280px !important;
}
md-message-list .file-header {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-message-list .file-header .media-body {
  width: unset;
}
md-message-list .md-highlight-match {
  font-weight: 600;
  background-color: #e8c64e;
}
md-message-list .message-list-content {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
md-message-list .message-list-content .scrollable-content {
  max-height: 100%;
  overflow-y: auto;
}
md-message-list .message-list-content .date-group {
  padding-left: 1px;
}
md-message-list .message-list-content .date-group .date-group-separator {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}
md-message-list .message-list-content .date-group .date-group-separator .date-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  overflow: hidden;
  text-align: center;
}
md-message-list .message-list-content .date-group .date-group-separator .date-group-title:before,
md-message-list .message-list-content .date-group .date-group-separator .date-group-title:after {
  content: ' ';
  display: inline-block;
  width: 50%;
  margin: 0 10px 0 -55%;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}
md-message-list .message-list-content .date-group .date-group-separator .date-group-title:after {
  margin: 0 -55% 0 10px;
}
md-message-list .message-list-content .date-group .date-group-item {
  position: relative;
  padding: 0px;
  background-color: #fff;
}
md-message-list .message-list-content .message-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 5px 0px;
}
md-message-list .message-list-content .message-item.last {
  padding-bottom: 10px;
}
md-message-list .message-list-content .message-item:hover,
md-message-list .message-list-content .message-item:hover .attachment-frame {
  background: #f0f0f0;
}
md-message-list .message-list-content .message-item:hover .message-item-header .time-stamp,
md-message-list .message-list-content .message-item:hover .attachment-frame .message-item-header .time-stamp {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
md-message-list .message-list-content .message-item:hover .message-item-content .edit-toolbar,
md-message-list .message-list-content .message-item:hover .attachment-frame .message-item-content .edit-toolbar {
  display: block;
}
md-message-list .message-list-content .message-item .message-item-header,
md-message-list .message-list-content .message-item .attachment-frame {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 60px;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  padding-left: 20px;
  padding-right: 5px;
}
md-message-list .message-list-content .message-item .message-item-header .avatar-wrap,
md-message-list .message-list-content .message-item .attachment-frame .avatar-wrap,
md-message-list .message-list-content .message-item .message-item-header .time-stamp,
md-message-list .message-list-content .message-item .attachment-frame .time-stamp {
  width: 50px;
  min-width: 50px;
  max-width: 60px;
}
md-message-list .message-list-content .message-item .message-item-header .avatar-wrap,
md-message-list .message-list-content .message-item .attachment-frame .avatar-wrap {
  position: relative;
}
md-message-list .message-list-content .message-item .message-item-header .avatar-wrap md-avatar,
md-message-list .message-list-content .message-item .attachment-frame .avatar-wrap md-avatar {
  margin-top: 5px;
}
md-message-list .message-list-content .message-item .message-item-header .time-stamp,
md-message-list .message-list-content .message-item .attachment-frame .time-stamp {
  font-size: 12px;
  line-height: 22px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  color: #666;
  white-space: nowrap;
}
md-message-list .message-list-content .message-item .file-icon-container .attachment-frame {
  margin-left: -18px;
  width: 50px;
  margin-right: 8px;
}
md-message-list .message-list-content .message-item .file-icon-container .attachment-frame .media {
  width: 40px;
  height: 40px;
}
md-message-list .message-list-content .message-item .pdf-box {
  width: 428px;
  height: 280px;
  margin-top: 10px;
}
md-message-list .message-list-content .message-item .pdf-box .pdf-icon-container {
  width: 40px;
  height: 40px;
  background-size: cover;
  margin-left: -5px;
}
md-message-list .message-list-content .message-item .attachment-frame {
  margin-left: -20px;
  padding-top: 0;
  padding-bottom: 0;
}
md-message-list .message-list-content .message-item .attachment-frame .media-left {
  padding-right: 5px;
}
md-message-list .message-list-content .message-item .attachment-frame .attachment-date {
  font-size: 12px;
  margin-left: 10px;
  color: #919191;
}
md-message-list .message-list-content .message-item .message-item-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-right: 20px;
}
md-message-list .message-list-content .message-item .message-item-content .firstrow {
  display: block;
}
md-message-list .message-list-content .message-item .message-item-content .firstrow .title {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline;
  color: #000;
}
md-message-list .message-list-content .message-item .message-item-content .firstrow .title.md-link {
  color: #1da4f0;
}
md-message-list .message-list-content .message-item .message-item-content .firstrow .date {
  font-size: 12px;
  display: inline;
  margin-left: 10px;
  color: #919191;
}
md-message-list .message-list-content .message-item .message-item-content .description {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
md-message-list .message-list-content .message-item .message-item-content .attachments .attachment {
  margin-top: 10px;
}
md-message-list .message-list-content .message-item .message-item-content .attachments .attachment md-file-thumbnail .preview-image.normal-tag img {
  max-height: 220px;
}
md-message-list .message-list-content .message-item .message-item-content .attachments .attachment .media-left {
  width: 420px !important;
  height: 220px !important;
}
md-message-list .message-list-content .message-item .message-item-content .attachments .attachment md-message-attachment-preview {
  width: max-content;
  min-width: 250px;
}
md-message-list .message-list-content .message-item .message-item-content .attachments .attachment md-pdf-preview-content {
  width: 420px !important;
  height: 220px !important;
}
md-message-list .message-list-content .message-item .message-item-content .edit-toolbar {
  display: none;
  position: absolute;
  right: 10px;
  top: 1px;
  background: #fff;
  border: 1px solid #1da4f0;
  border-radius: 5px;
  padding: 5px 5;
}
md-message-list .message-list-content .message-item .message-item-content .edit-toolbar:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
md-message-list .message-list-content .message-item .message-item-content .edit-toolbar a {
  clear: none;
  display: inline-block;
  margin: 0 5px;
  line-height: 25px;
  width: 25px;
  text-align: center;
  color: #1da4f0;
  border-radius: 5px;
}
md-conversation-editor {
  display: block;
}
md-conversation-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-conversation-editor .members-notice {
  margin-top: 10px;
}
md-conversation-editor .patient-search,
md-conversation-editor .members-search {
  margin-bottom: 10px;
}
md-conversation-editor .patient-chips,
md-conversation-editor .members-chips {
  margin-bottom: 10px;
}
md-conversation-editor .date-wrap,
md-conversation-editor .time-wrap {
  clear: none;
  display: inline-block;
}
md-conversation-editor .time-wrap {
  margin-left: 20px;
}
md-conversation-editor .reference-group {
  margin-bottom: 0px !important;
}
md-conversation-editor .reference-group .control-label {
  line-height: 34px;
  margin-bottom: 0px;
  margin-right: 20px;
  vertical-align: middle;
}
md-conversation-editor .reference-group .md-toolbar .md-dropdown-group {
  vertical-align: middle;
  margin-bottom: 0px;
}
md-conversation-editor .reference-group .md-toolbar .md-dropdown-menu {
  min-width: 250px;
  max-width: 350px;
}
md-conversation-editor .md-dropdown-group .dropdown-toggle .icon-add {
  font-size: 12px;
  line-height: 17px;
  vertical-align: middle;
  margin-right: 5px;
}
md-conversation-editor .disabled-link {
  cursor: not-allowed;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  text-decoration: none;
}
md-member-search {
  display: block;
  width: 100%;
}
md-member-search .md-dropdown-menu {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}
md-member-search .md-dropdown-menu .no-data {
  padding: 5px 20px;
}
md-member-search .md-dropdown-menu.dropdown-table {
  table-layout: fixed;
}
md-member-search .search-input-group {
  margin-bottom: 0px;
}
md-member-search .search-results .loading {
  text-align: center;
}
rmd-member-chips {
  display: block;
  width: 100%;
}
rmd-member-chips .chips-wrap {
  padding-bottom: 5px;
}
rmd-member-chips .md-chips {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
rmd-member-chips .md-chips md-chip {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  line-height: 24px;
  height: 24px;
  margin-top: 5px;
  max-width: 200px;
  color: #fff;
  background: #1da4f0;
  border-radius: 5px;
}
rmd-member-chips .md-chips md-chip .md-chip-remove-container {
  height: 24px;
}
rmd-member-chips .md-chips md-chip .md-chip-remove-container .btn {
  line-height: 24px;
  height: 24px;
  padding: 0px 5px;
  color: #fff;
  vertical-align: top;
}
md-conversation-attachments {
  display: block;
}
md-conversation-attachments .attachments .attachment {
  margin-top: 10px;
}
md-message-attachment-preview {
  display: block;
}
md-message-attachment-preview .attachment-frame {
  background: #fff;
  position: relative;
  border-radius: 5px;
  width: 100%;
  padding: 10px 10px;
}
md-message-attachment-preview .attachment-frame.full {
  width: 100%;
}
md-message-attachment-preview .attachment-frame md-file-thumbnail {
  margin-right: 5px;
}
md-message-attachment-preview .attachment-frame .file-info .filename,
md-message-attachment-preview .attachment-frame .file-info .filesize {
  font-size: 14px;
}
md-message-attachment-preview .attachment-frame .toolbar {
  display: none;
  position: static;
  background: #fff;
  padding: 0 0 0 5px;
}
md-message-attachment-preview .attachment-frame .toolbar .icons {
  padding: 0;
  padding-left: 0.1px;
  padding-right: 0.1px;
  margin-bottom: -5px;
  margin-left: 20px;
  margin-right: -35px;
}
md-message-attachment-preview .attachment-frame .toolbar .trash-only {
  margin-bottom: -4px;
}
md-message-attachment-preview .attachment-frame .toolbar .trash {
  padding-left: 1px;
}
md-message-attachment-preview .attachment-frame .toolbar .open-link {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}
md-message-attachment-preview .attachment-frame .toolbar .toolbar-control-icon {
  margin-right: 10px;
}
md-message-attachment-preview .attachment-frame:hover .toolbar {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  vertical-align: bottom;
  line-height: 19px;
}
md-message-attachment-preview .attachment-frame .selective-file-avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-message-attachment-preview .attachment-frame .selective-file-avatar .file-checkbox {
  margin-top: 8px;
  margin-right: 16px;
}
md-message-attachment-preview .attachment-frame .title-toolbar-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-message-attachment-preview .attachment-frame .title-toolbar-container .filename {
  display: inline-block;
  vertical-align: middle;
}
md-pdf-splitter {
  display: block;
}
md-pdf-splitter .modal-body {
  height: calc(100vh - 76px - 81px);
}
md-pdf-splitter .flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  height: inherit;
  gap: 20px;
}
md-pdf-splitter .flex-container .md-sidebar {
  width: 300px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: inherit;
}
md-pdf-splitter .flex-container .md-sidebar md-panel {
  height: inherit;
  width: inherit;
}
md-pdf-splitter .flex-container .md-sidebar md-panel .panel-heading .header-wrap {
  display: none;
}
md-pdf-splitter .flex-container .md-sidebar md-panel uib-accordion {
  display: block;
  height: inherit;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card {
  height: inherit;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list {
  height: calc(100vh - 76px - 81px - 50px - 80px);
  overflow-y: scroll;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list .pages {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list .group-toolbar .fa {
  float: right;
  margin: 2px 0 0 10px;
  cursor: pointer;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list .group-toolbar .fa.fa-times {
  color: #e36776;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list .group-toolbar .fa.fa-pencil {
  color: #1da4f0;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .detail-list .fa-info-circle {
  margin-right: 5px;
  color: #1da4f0;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .card .modal-controls {
  margin-top: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-pdf-splitter .flex-container .md-sidebar md-panel-content .rationale .text1,
md-pdf-splitter .flex-container .md-sidebar md-panel-content .rationale .text2 {
  white-space: break-spaces;
  font-size: 12px;
}
md-pdf-splitter .flex-container .document-section {
  height: inherit;
}
md-pdf-splitter .flex-container .document-section .pages-wrapper {
  height: inherit;
  overflow-y: scroll;
}
md-pdf-splitter .button-group {
  margin-bottom: 20px;
}
md-pdf-splitter .grouped {
  background: #808080;
}
md-pdf-splitter .selected {
  background: #70c05c;
}
md-pdf-splitter .modal-footer {
  margin-top: 10px;
}
md-pdf-splitter .modal-header {
  border-bottom: none;
}
md-pdf-splitter .split-button {
  margin-right: 10px;
}
md-pdf-splitter img {
  background-color: #fff;
  max-width: 258px;
}
md-pdf-splitter .info-section:last-child {
  margin-bottom: 10px;
}
md-pdf-splitter .info-section.blur {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
md-pdf-splitter .info-section.focused {
  border: 1px dashed #70c05c !important;
  border-radius: 10px;
  background: rgba(112,192,92,0.071);
  padding: 10px 10px !important;
}
md-pdf-splitter .pdf-container {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #d3d3d3;
  float: none;
  height: inherit;
}
md-pdf-splitter .pdf-container:last-child {
  margin-bottom: 0px;
}
md-pdf-splitter .pdf-container .column-title {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
md-pdf-splitter .pdf-container .page-container {
  display: inline-block;
  padding: 5px 5px;
}
md-pdf-splitter .pdf-container .page-container .selected {
  background: light-blue;
}
md-pdf-splitter .pdf-container .page-container .grouped {
  background: #808080;
}
md-file-preview {
  display: block;
}
md-file-preview .bg-white {
  background-color: #fff;
}
md-file-preview .md-toolbar .download-button {
  margin-top: 4px;
  position: absolute;
  right: 40px;
}
md-file-preview .md-toolbar .download-button i {
  font-size: 22px;
  color: #1da4f0;
}
md-file-preview .file-preview-modal .modal-title {
  text-align: center;
}
md-pdf-preview .md-pdf-preview-content {
  display: block;
  width: 100%;
  height: 100%;
}
md-pdf-preview .md-pdf-preview-content .pdfobject {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
}
.md-modal-window-full-height md-pdf-preview .md-pdf-preview-content {
  max-height: 80vh;
  height: calc(100vh - 20px);
}
md-xml-preview {
  display: block;
}
md-xml-preview .xml-frame {
  display: block;
  width: 100%;
  min-height: 400px;
  border: none;
}
md-xml-preview .xml-frame .pdfobject {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
}
.md-modal-window-full-height md-xml-preview {
  height: calc(100vh - 150px);
  overflow: hidden;
}
.md-modal-window-full-height md-xml-preview .xml-frame {
  height: 100%;
}
general-file-downloader {
  display: block;
}
general-file-downloader .xml-frame {
  display: block;
  width: 100%;
  min-height: 400px;
  border: none;
}
general-file-downloader .xml-frame .pdfobject {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
}
general-file-downloader .general-file-downloader-message {
  text-align: center;
}
md-file-details {
  display: block;
  height: inherit;
}
md-file-details button.close {
  margin-left: 10px;
}
md-file-details .md-tabpanel-content-tab {
  height: calc(100vh - 20px - 65px - 10px - 41px - 81px);
  overflow-y: scroll;
  overflow-x: hidden;
}
md-file-details .md-tabpanel-content-tab.no-footer {
  height: calc(100vh - 20px - 65px - 10px - 41px);
}
md-file-details .md-tabpanel-content-tab .md-tabpanel-content-tab {
  height: 100%;
}
md-file-details md-file-audit-log .md-loader.has-pagination {
  height: calc(100% - 71px);
}
md-file-details .file-details-btn {
  clear: none;
  display: inline-block;
}
md-file-details .file-details-btn + .file-details-btn {
  margin-left: 10px;
}
md-file-details .bg-white {
  background-color: #fff;
}
md-file-details md-file-preview {
  height: inherit;
}
md-file-details md-file-preview div {
  height: inherit;
}
md-file-details md-file-preview div md-xml-preview,
md-file-details md-file-preview div md-pdf-preview {
  height: inherit;
  overflow: hidden;
}
md-file-details md-file-preview div md-xml-preview .xml-frame,
md-file-details md-file-preview div md-pdf-preview .xml-frame,
md-file-details md-file-preview div md-xml-preview #md-pdf-preview-content,
md-file-details md-file-preview div md-pdf-preview #md-pdf-preview-content {
  height: inherit;
}
md-file-details rmd-list .md-loader {
  height: inherit;
}
md-file-details .md-toolbar .download-button {
  margin-top: 4px;
  position: absolute;
  right: 40px;
}
md-file-details .md-toolbar .download-button i {
  font-size: 22px;
  color: #1da4f0;
}
.file-details-modal {
  height: inherit;
  overflow: hidden;
}
.file-details-modal .modal-dialog {
  margin-top: 10px;
  margin-bottom: 10px;
  height: calc(100vh - 20px);
  width: 55%;
}
.file-details-modal .modal-header {
  border-bottom: none;
  padding-bottom: 10px;
}
@media print {
  .file-details-modal .modal-dialog {
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
  }
}
.file-details-modal .modal-content {
  height: calc(100vh - 20px);
}
.file-details-modal .modal-body {
  padding-top: 10px;
  padding-bottom: 0px;
}
md-file-audit-log {
  padding-top: 10px;
}
md-file-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-file-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-file-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-file-audit-log .details .action.block {
  display: block;
}
md-file-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-file-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-file-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-file-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-file-audit-log .details .file a:hover,
md-file-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-file-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-file-editor {
  display: block;
}
md-pdf-placeholder {
  display: block;
}
md-pdf-placeholder .bg-white {
  background-color: #fff;
}
md-pdf-placeholder .md-toolbar .download-button {
  margin-top: 4px;
  position: absolute;
  right: 40px;
}
md-pdf-placeholder .md-toolbar .download-button i {
  font-size: 22px;
  color: #1da4f0;
}
md-pdf-placeholder .modal-title {
  text-align: center;
}
md-pdf-placeholder .options-sidebar {
  margin-top: -7px;
}
md-pdf-placeholder .options-sidebar .option-section {
  margin-bottom: 20px;
}
md-pdf-placeholder .options-sidebar .option-section:last-child {
  margin-bottom: 0px;
}
md-pdf-placeholder .options-sidebar .option-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
md-pdf-placeholder .options-sidebar .option-section h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
md-pdf-placeholder #page-container {
  position: relative;
}
md-pdf-placeholder #page-container .dropzone {
  background-color: #ccc;
  border: dashed 4px transparent;
  border-radius: 4px;
  margin: 10px auto 30px;
  padding: 10px;
  width: 100%;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
md-pdf-placeholder .drop-active {
  border: none !important;
}
md-pdf-placeholder .nopadding {
  padding: 0 !important;
  margin: 0 !important;
}
md-pdf-placeholder .subtitle {
  margin-top: 10px;
}
md-pdf-placeholder .drag-drop {
  position: relative;
  z-index: 999;
}
md-pdf-placeholder .drag-drop-canvas {
  position: absolute;
  z-index: 999;
  border-style: dotted !important;
  border-width: medium !important;
  color: $mdColor !important;
}
md-pdf-placeholder .dragging {
  border: none !important;
}
md-pdf-placeholder .dragging .md-drag-handle {
  visibility: hidden;
}
md-pdf-placeholder .option-list .option-item {
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
  cursor: move;
}
md-pdf-placeholder .option-list .option-item i,
md-pdf-placeholder .option-list .option-item .md-text,
md-pdf-placeholder .option-list .option-item .md-drag-handle {
  vertical-align: middle;
}
md-pdf-placeholder .option-list .option-item i.fa {
  clear: none;
  display: inline-block;
  margin-right: 5px;
}
md-pdf-placeholder .option-list .option-item .md-text {
  clear: none;
  display: inline-block;
}
md-pdf-placeholder .option-list .option-item .md-drag-handle {
  clear: none;
  display: inline-block;
  float: right;
}
md-pdf-placeholder #pdf-viewer {
  background: #eee;
  padding: 16px 0 16px 0;
  max-height: calc(100vh - 40px - 75px - 81px);
  overflow: scroll;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
md-pdf-placeholder .page-wrapper {
  margin-bottom: 16px;
  position: relative;
}
md-pdf-placeholder canvas {
  margin: 0 auto;
  display: block;
}
md-pdf-placeholder .open-link {
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  margin-left: 5px;
}
md-conversation-members {
  display: block;
}
md-conversation-members .modal-body .md-layout-stretch-wrap {
  height: calc(100vh - 75px - 40px - 44px - 82px - 81px);
}
md-conversation-members .modal-body .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background: none;
}
md-conversation-members .modal-body .form-group {
  margin-bottom: 10px !important;
}
md-member-list {
  display: block;
  position: relative;
  width: 100%;
}
md-member-list .item {
  position: relative;
  padding: 10px;
  padding-left: 0px;
}
md-member-list .item.expandable {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
md-member-list .item .item-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  position: relative;
}
md-member-list .item .item-content:hover .toolbar {
  display: block;
}
md-member-list .item .item-content .media-left,
md-member-list .item .item-content .media-right,
md-member-list .item .item-content .media-body {
  vertical-align: middle;
}
md-member-list .item .item-content .media-left.expanded {
  vertical-align: top;
  padding-top: 5px;
}
md-member-list .item .item-content .avatar-wrap {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
}
md-member-list .item .item-content .item-title {
  font-size: 14px;
  color: #000;
}
md-member-list .item .item-content .item-title .expander {
  clear: none;
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
}
md-member-list .item .item-content .item-title .expander i {
  color: #1da4f0;
  vertical-align: middle;
}
md-member-list .item .item-content .item-title .utility-link {
  display: none;
  color: #1da4f0;
  margin-left: 20px;
}
md-member-list .item .item-content .item-title:hover .utility-link {
  display: inline;
}
md-member-list .item .item-content .item-info {
  font-size: 14px;
  color: #666;
}
md-member-list .item .item-content .location-info {
  font-size: 14px;
  color: #666;
}
md-member-list .item .item-content .location-info i {
  margin-right: 5px;
  color: #666;
}
md-member-list .item .item-content .toolbar {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
}
md-member-list .item .item-content .toolbar .btn {
  cursor: pointer;
  color: #1da4f0;
  padding: 0px;
  vertical-align: middle;
}
md-member-list .item .item-content .department-users {
  margin-top: 10px;
}
md-member-list .item .item-content .department-users .department-user {
  padding: 5px 0px;
}
md-member-online {
  display: block;
  position: absolute;
  left: -10px;
  top: calc(50% - 3px);
}
md-member-online .md-online {
  display: block;
  width: 6px !important;
  height: 6px !important;
  max-width: 6px !important;
  max-height: 6px !important;
  border-radius: 50%;
  background: #77c81f;
}
md-message-editor {
  display: block;
}
md-message-editor .preview {
  margin-bottom: 20px;
}
.md-link,
.md-link-white {
  cursor: pointer;
  color: #1da4f0;
}
.md-link:hover,
.md-link-white:hover,
.md-link:focus,
.md-link-white:focus {
  color: #4ab6f3;
}
.md-link-white {
  color: #fff;
}
.md-link-white:hover,
.md-link-white:focus {
  color: #1da4f0;
}
md-message-send {
  display: block;
  width: 100%;
}
md-message-send #md-attachment-input {
  display: none;
}
md-message-send .message-input {
  display: inline-table;
  vertical-align: middle;
  position: relative;
  width: 100%;
  padding: 0px;
  border: 0;
  background: 0;
  line-height: 20px;
  height: auto;
}
md-message-send .message-input .attachment-button,
md-message-send .message-input .text-input {
  display: table-cell;
  border: 1px solid #e0e0e0;
}
md-message-send .message-input .attachment-button {
  cursor: pointer;
  width: 50px;
  border-radius: 5px 0 0 5px;
  border-right: none;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
}
md-message-send .message-input .attachment-button.has-attach {
  border-radius: 0;
}
md-message-send .message-input .attachment-button:hover {
  background-color: #f2f2f2;
}
md-message-send .message-input .attachment-button a {
  display: block;
  height: 100%;
  vertical-align: middle;
}
md-message-send .message-input .attachment-button a i {
  color: #1da4f0;
}
md-message-send .message-input .text-input {
  border-radius: 0 5px 5px 0;
  position: relative;
}
md-message-send .message-input .text-input textarea {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  width: 100%;
  border: none;
  display: block;
  padding: 10px 15px;
  resize: none !important;
  min-height: 40px;
  max-height: 120px;
}
md-message-file-upload {
  display: block;
}
md-message-file-upload .modal-body .preview {
  margin-bottom: 20px;
  margin-left: -12px;
}
.md-controller-tasks {
  display: block;
}
.md-controller-tasks .mobile-toolbar .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 15px;
}
.md-controller-tasks .mobile-toolbar a.md-link i.fa {
  font-size: 24px;
}
.md-controller-tasks .mobile-toolbar .form-group {
  margin-bottom: -15px;
}
@media (max-width: 767px) {
  .md-controller-tasks .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-tasks .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding-top: 0px;
  }
  .md-controller-tasks .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-tasks .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters i.fa,
  .md-controller-tasks .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters .name {
    color: #1da4f0;
  }
  .md-controller-tasks .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 15px - 50px);
  }
  .md-controller-tasks .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 35px - 15px - 50px);
  }
  .md-controller-tasks rmd-list-pagination {
    margin-top: 5px;
  }
}
md-task-editor {
  display: block;
}
md-task-editor .modal-body {
  height: calc(100vh - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
  padding-top: 10px !important;
}
md-task-editor .modal-body .md-form-group.toggle-group {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  md-task-editor label.control-label.text1 {
    white-space: normal;
  }
}
md-task-editor md-filter-chips .md-chips md-chip {
  width: fit-content;
  max-width: 100%;
}
md-task-editor .reference-group {
  margin-bottom: 0px !important;
}
md-task-editor .reference-group .control-label {
  line-height: 34px;
  margin-bottom: 0px;
  margin-right: 20px;
  vertical-align: middle;
}
md-task-editor .reference-group .md-toolbar .md-dropdown-group {
  vertical-align: middle;
  margin-bottom: 0px;
}
md-task-editor .reference-group .md-toolbar .md-dropdown-menu {
  min-width: 250px;
  max-width: 350px;
}
md-task-editor textarea.form-control {
  resize: both;
}
md-filter-chips {
  display: block;
  width: 100%;
}
md-filter-chips .chips-wrap.has-count {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-filter-chips .chips-wrap.has-count md-chips {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-filter-chips .chips-wrap.has-count md-chips md-chip {
  float: none;
}
md-filter-chips .chips-wrap.has-count .chip-count-holder {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-filter-chips .md-chips {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-bottom: 5px;
}
md-filter-chips .md-chips md-chip {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  line-height: 24px;
  height: 24px;
  margin-top: 5px;
  max-width: 200px;
  color: #fff;
  background: #1da4f0;
  border-radius: 5px;
}
md-filter-chips .md-chips md-chip .md-chip-remove-container {
  height: 24px;
}
md-filter-chips .md-chips md-chip .md-chip-remove-container .btn {
  line-height: 24px;
  height: 24px;
  padding: 0px 5px;
  color: #fff;
  vertical-align: top;
}
md-alert-editor {
  display: block;
}
md-alert-editor .modal-body {
  height: calc(100vh - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
  padding-top: 10px !important;
}
md-alert-editor .modal-body .md-form-group.toggle-group {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  md-alert-editor label.control-label.text1 {
    white-space: normal;
  }
}
md-alert-editor md-filter-chips .md-chips md-chip {
  width: fit-content;
  max-width: 100%;
}
md-alert-editor .reference-group {
  margin-bottom: 0px !important;
}
md-alert-editor .reference-group .control-label {
  line-height: 34px;
  margin-bottom: 0px;
  margin-right: 20px;
  vertical-align: middle;
}
md-alert-editor .reference-group .md-toolbar .md-dropdown-group {
  vertical-align: middle;
  margin-bottom: 0px;
}
md-alert-editor .reference-group .md-toolbar .md-dropdown-menu {
  min-width: 250px;
  max-width: 350px;
}
md-toolbar-department-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-department-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
md-toolbar-department-picker rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle.disabled {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
md-toolbar-user-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-custom-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-custom-picker .custom-item-other {
  margin-top: 5px;
}
md-toolbar-task-type-picker {
  clear: none;
  display: inline-block;
}
md-task-list {
  display: block;
}
md-task-list .mobile-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-task-list .mobile-list-item .task-details {
  max-width: calc(100vw - 40px - 42px - 30px - 5px);
}
md-task-list .mobile-list-item .task-details .details-tertiary {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-task-list .mobile-list-item .task-details .details-tertiary .date {
  background: #f2f2f2;
  margin-right: 5px;
}
md-task-list .mobile-list-item .task-details .details-tertiary .type {
  background: #e8f6fd;
}
md-task-list .rmd-list-columns .select-all-header-check .checkbox {
  margin-left: 5px;
}
md-task-list .rmd-list-columns .task-action {
  cursor: pointer;
  margin-left: 20px;
}
md-task-list .rmd-list-columns rmd-checkbox .checkbox {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-task-list .rmd-list-columns rmd-checkbox .checkbox label {
  vertical-align: middle;
}
md-task-list .rmd-list-columns rmd-checkbox .checkbox label .fake {
  border: 1px solid #d0d0d0;
}
md-task-list .rmd-list-columns .column .referral-action {
  margin-left: 20px;
}
md-task-list .rmd-list-columns .batch-operator-container {
  display: inline-block;
}
md-task-list .rmd-list-columns .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
md-task-list .rmd-list-columns .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
md-task-list .rmd-list-columns .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
  margin-top: -20px;
}
md-task-list .task-row {
  cursor: pointer;
}
md-task-list .task-row.overdue .due-date .text1,
md-task-list .task-row.overdue .due-date .text2 {
  color: #da3549;
}
md-task-list .task-row.overdue .due-date .text2 {
  color: rgba(218,53,73,0.4);
}
md-task-list .task-row.completed .task-title {
  text-decoration: line-through;
}
md-task-list .task-row rmd-checkbox .checkbox label .fake {
  border: 1px solid #d0d0d0;
}
md-task-list .status-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  line-height: 32px;
}
md-task-status-indicator .task-status-indicator {
  cursor: pointer;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  border-radius: 50%;
  line-height: 32px;
  background-color: #e8f6fd;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
md-task-status-indicator .task-status-indicator.reversed {
  background-color: #1da4f0;
}
md-task-status-indicator .task-status-indicator.completed {
  background-color: #1da4f0;
}
md-task-status-indicator .task-status-indicator.completed.reversed {
  background-color: #e8f6fd;
}
md-task-status-indicator .task-status-indicator .aligner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
md-task-status-indicator .task-status-indicator .aligner i {
  color: #fff;
}
.md-controller-referral-manager-list .requested-dates {
  color: #f00;
}
.md-controller-referral-manager-list .override-button-holder {
  position: absolute;
  right: 55px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  pointer: cursor;
}
.md-controller-referral-manager-list .override-button-holder .icon {
  width: 16px;
}
.md-controller-referral-manager-list .override-button-holder .icon i.fa.fa-ban.active {
  color: #da3549;
}
.md-controller-referral-manager-list .text2 {
  font-size: 13px;
}
.md-controller-referral-manager-list .mr-0 {
  margin-right: 0px !important;
}
.md-controller-referral-manager-list .md-referral-filters-state {
  margin-top: 0px;
}
.md-controller-referral-manager-list .md-referral-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-controller-referral-manager-list .md-referral-filters-state .item .text {
  overflow: hidden;
}
.md-controller-referral-manager-list .md-referral-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-referral-manager-list input.md-form-control[type="text"][readonly] {
  background: unset;
  min-width: 205px;
  cursor: pointer;
}
.md-controller-referral-manager-list .md-layout-stretch-wrap.filters-visible {
  height: calc(100vh - 200px - 55px - 41px);
}
.md-controller-referral-manager-list .md-layout-stretch-wrap.filters-visible-with-selection {
  height: calc(100vh - 200px - 55px - 41px - 29px);
}
.md-controller-referral-manager-list .md-layout-stretch-wrap .md-layout-stretch-content {
  overflow: auto;
}
.md-controller-referral-manager-list .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  height: inherit;
}
.md-controller-referral-manager-list .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
}
.md-controller-referral-manager-list .md-toolbar .md-dropdown-menu {
  max-width: 400px;
}
.md-controller-referral-manager-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-controller-referral-manager-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-controller-referral-manager-list .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-controller-referral-manager-list .md-toolbar .md-input-expand:focus {
  min-width: 475px;
}
.md-controller-referral-manager-list .md-toolbar.right .group {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 15px;
}
.md-controller-referral-manager-list .md-toolbar.right .md-form-group .bootstrap-switch {
  margin-bottom: 3px;
}
.md-controller-referral-manager-list .md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 10px;
  margin-bottom: 3px;
  font-weight: 600;
}
.md-controller-referral-manager-list .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon {
  margin-right: 20px;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-controller-referral-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-controller-referral-manager-list .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-controller-referral-manager-list .md-toolbar .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
.md-controller-referral-manager-list .md-toolbar .create-button .dropdown-menu {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  background-color: #1da4f0;
}
.md-controller-referral-manager-list .md-toolbar .create-button .dropdown-menu a {
  color: #fff;
  padding: 3px 10px;
}
.md-controller-referral-manager-list .md-toolbar .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-controller-referral-manager-list .md-toolbar-content .md-toolbar md-search-picker {
  width: unset;
}
.md-controller-referral-manager-list .md-toolbar-content .md-toolbar .form-group {
  margin-right: 20px;
}
.md-controller-referral-manager-list .md-toolbar-content .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-referral-manager-list .referral-row {
  cursor: pointer;
}
.md-controller-referral-manager-list .referral-row.urgent .column {
  background-color: #fff2f2;
}
.md-controller-referral-manager-list .referral-row.open-referral .column {
  background-color: #fff2f2;
}
.md-controller-referral-manager-list .referral-row .count {
  min-width: fit-content;
  border-radius: 50%;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 2px;
  position: absolute;
  padding: 0 4px;
}
.md-controller-referral-manager-list .referral-row .column-notification {
  max-width: 30px;
  min-width: 30px;
  width: 30px;
  padding-left: 5px;
}
.md-controller-referral-manager-list .referral-row .column-notification .notification-icon {
  display: block;
  position: relative;
  width: 20px;
}
.md-controller-referral-manager-list .referral-row .column-notification .notification-icon .fa {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  font-size: 20px;
  color: #b1b1b1;
}
.md-controller-referral-manager-list .referral-row .column-notification .notification-icon .count {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 14px;
  height: 13px;
  width: 16px;
  border-radius: 8px;
}
.md-controller-referral-manager-list .referral-row .appointment-status {
  clear: none;
  display: inline-block;
}
.md-controller-referral-manager-list .referral-row .appointment-status i {
  margin-left: 5px;
  color: #70c060;
}
.md-controller-referral-manager-list .rmd-list-content .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-controller-referral-manager-list .rmd-list-content .last-activity,
.md-controller-referral-manager-list .rmd-list-content .payer {
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-controller-referral-manager-list .rmd-list-content .column .reason-column {
  max-width: 350px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: max-content;
}
.md-controller-referral-manager-list .rmd-list-content .column .referral-action {
  margin-left: 20px;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container md-referral-status-picker {
  margin-top: -7px;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container md-referral-status-picker .dropdown {
  margin-left: 15px;
}
.md-controller-referral-manager-list .rmd-list-content .batch-operator-container md-referral-status-picker .status-wrap {
  display: none;
}
.md-controller-referral-manager-list .md-section-toolbar .page-setting-icon {
  font-size: 15px;
  margin-left: 4px;
}
.md-controller-referral-manager-list md-toolbar-specialty-picker .md-dropdown-menu.search {
  left: -20px !important;
}
.md-controller-referral-manager-list .rmd-list-item.md-referral-open md-referral-status-picker md-avatar img {
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
}
md-toolbar-location-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-diagnosis-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-diagnosis-picker .md-dropdown-group .md-dropdown-menu {
  min-width: 500px;
}
md-toolbar-diagnosis-picker .loading .text1 {
  font-size: 14px;
}
md-toolbar-diagnosis-picker .loading .fas {
  font-size: 14px;
  color: #1da4f0;
}
md-toolbar-diagnosis-picker .text-search {
  margin-top: 5px;
}
md-toolbar-reason-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-reason-picker .input-group {
  width: 100%;
}
md-toolbar-reason-picker .search-container {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-toolbar-reason-picker .input-group-btn {
  height: 40px;
  line-height: 40px;
}
md-toolbar-reason-picker .input-group-btn button {
  height: 40px;
}
md-toolbar-reason-picker input:focus + .input-group-btn button {
  border: 1px solid #1da4f0;
  border-left: none;
}
md-toolbar-reason-picker .md-dropdown-group .md-dropdown-menu.search {
  min-width: 300px;
}
rmd-list,
.rmd-list-manual {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #d0d0d0 !important;
  border-radius: 5px;
  overflow: hidden;
}
rmd-list .table,
.rmd-list-manual .table {
  margin-bottom: 0px;
}
rmd-list.no-border,
.rmd-list-manual.no-border {
  border: none !important;
}
rmd-list.sticky th,
.rmd-list-manual.sticky th {
  position: sticky !important;
  top: 0 !important; /* Don't forget this, required for the stickiness */
  z-index: 300 !important;
}
rmd-list .column,
.rmd-list-manual .column,
rmd-list thead tr th.column:first-child,
.rmd-list-manual thead tr th.column:first-child,
rmd-list tbody tr td.column:first-child,
.rmd-list-manual tbody tr td.column:first-child {
  padding-left: 20px;
}
rmd-list thead tr th.column,
.rmd-list-manual thead tr th.column,
rmd-list tbody tr td.column,
.rmd-list-manual tbody tr td.column {
  background-color: transparent;
  padding: 8px 10px;
  min-width: 100px;
  max-width: 400px;
  vertical-align: middle !important;
  border-top: 1px solid #d0d0d0;
}
rmd-list thead tr th.column.column-wide,
.rmd-list-manual thead tr th.column.column-wide,
rmd-list tbody tr td.column.column-wide,
.rmd-list-manual tbody tr td.column.column-wide {
  min-width: 200px;
  max-width: 500px;
}
rmd-list thead tr th.column.column-icon,
.rmd-list-manual thead tr th.column.column-icon,
rmd-list tbody tr td.column.column-icon,
.rmd-list-manual tbody tr td.column.column-icon {
  min-width: 40px;
  max-width: 40px;
  width: 40px;
  padding: 5px 5px;
}
rmd-list thead tr th.column:focus,
.rmd-list-manual thead tr th.column:focus,
rmd-list tbody tr td.column:focus,
.rmd-list-manual tbody tr td.column:focus {
  outline: none;
}
rmd-list thead tr th.column .valign,
.rmd-list-manual thead tr th.column .valign,
rmd-list tbody tr td.column .valign,
.rmd-list-manual tbody tr td.column .valign {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
}
rmd-list .rmd-list-columns,
.rmd-list-manual .rmd-list-columns {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 35px;
}
rmd-list .rmd-list-columns .header-action,
.rmd-list-manual .rmd-list-columns .header-action {
  cursor: pointer;
  margin-left: 20px;
}
rmd-list .rmd-list-columns .column,
.rmd-list-manual .rmd-list-columns .column {
  background-color: #f2f2f2;
  border-top: none !important;
  border-bottom: none !important;
  white-space: nowrap;
}
rmd-list .rmd-list-columns .column.column-icon .valign,
.rmd-list-manual .rmd-list-columns .column.column-icon .valign {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
rmd-list .rmd-list-columns .column .column-title,
.rmd-list-manual .rmd-list-columns .column .column-title {
  clear: none;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 12px;
  line-height: 35px;
  vertical-align: middle;
  color: #919191;
}
rmd-list .rmd-list-columns .column .column-title.has-subtitle,
.rmd-list-manual .rmd-list-columns .column .column-title.has-subtitle {
  line-height: 20px;
}
rmd-list .rmd-list-columns .column .column-title .column-subtitle,
.rmd-list-manual .rmd-list-columns .column .column-title .column-subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
rmd-list .rmd-list-columns .column .action-column,
.rmd-list-manual .rmd-list-columns .column .action-column {
  clear: none;
  display: inline-block;
  width: 100%;
}
rmd-list .rmd-list-columns .column .action-column .column-title,
.rmd-list-manual .rmd-list-columns .column .action-column .column-title {
  line-height: 35px;
}
rmd-list .rmd-list-columns .column .action-column i,
.rmd-list-manual .rmd-list-columns .column .action-column i {
  vertical-align: middle;
  margin-left: 8px;
  color: #cecece;
}
rmd-list .rmd-list-columns.rounded,
.rmd-list-manual .rmd-list-columns.rounded {
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  border-radius: 5px;
}
rmd-list .rmd-list-columns.rounded thead,
.rmd-list-manual .rmd-list-columns.rounded thead {
  border-radius: 5px;
}
rmd-list .rmd-list-columns.rounded .column:first-child,
.rmd-list-manual .rmd-list-columns.rounded .column:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
rmd-list .rmd-list-columns.rounded .column:last-child,
.rmd-list-manual .rmd-list-columns.rounded .column:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
rmd-list .rmd-list-not-found,
.rmd-list-manual .rmd-list-not-found {
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
  text-align: center;
}
rmd-list .rmd-list-content,
.rmd-list-manual .rmd-list-content {
  font-size: 14px;
}
rmd-list .rmd-list-item:hover,
.rmd-list-manual .rmd-list-item:hover,
rmd-list .rmd-list-item.selected,
.rmd-list-manual .rmd-list-item.selected {
  background-color: #f6f6f6;
}
rmd-list .rmd-list-item:hover .column,
.rmd-list-manual .rmd-list-item:hover .column,
rmd-list .rmd-list-item.selected .column,
.rmd-list-manual .rmd-list-item.selected .column {
  background-color: #f6f6f6;
}
rmd-list .rmd-list-item .column.column-group,
.rmd-list-manual .rmd-list-item .column.column-group {
  line-height: 20px;
}
rmd-list .rmd-list-item .column.column-icon .valign,
.rmd-list-manual .rmd-list-item .column.column-icon .valign {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
rmd-list .rmd-list-item .column.column-icon .toolbar,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar {
  display: none;
  width: 100%;
  text-align: right;
}
rmd-list .rmd-list-item .column.column-icon .toolbar .md-link,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar .md-link,
rmd-list .rmd-list-item .column.column-icon .toolbar .md-drag-handle,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar .md-drag-handle {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
rmd-list .rmd-list-item .column.column-icon .toolbar .md-link + .md-link,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar .md-link + .md-link,
rmd-list .rmd-list-item .column.column-icon .toolbar .md-link + .md-drag-handle,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar .md-link + .md-drag-handle {
  margin-left: 10px;
}
rmd-list .rmd-list-item .column.column-icon .toolbar i,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar i {
  font-size: 18px;
}
rmd-list .rmd-list-item .column.column-icon .toolbar.vertical,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar.vertical {
  text-align: center;
}
rmd-list .rmd-list-item .column.column-icon .toolbar.vertical .md-link,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar.vertical .md-link {
  display: block;
}
rmd-list .rmd-list-item .column.column-icon .toolbar.vertical .md-link + .md-link,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar.vertical .md-link + .md-link,
rmd-list .rmd-list-item .column.column-icon .toolbar.vertical .md-link + .md-drag-handle,
.rmd-list-manual .rmd-list-item .column.column-icon .toolbar.vertical .md-link + .md-drag-handle {
  margin-left: 0px;
  margin-top: 5px;
}
rmd-list .rmd-list-item .column md-avatar,
.rmd-list-manual .rmd-list-item .column md-avatar {
  clear: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
}
rmd-list .rmd-list-item .column md-avatar + .text1,
.rmd-list-manual .rmd-list-item .column md-avatar + .text1 {
  clear: none;
  display: inline-block;
  vertical-align: middle;
}
rmd-list .rmd-list-item .column .group,
.rmd-list-manual .rmd-list-item .column .group {
  clear: none;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
rmd-list .rmd-list-item .column .labeled-group .group-title,
.rmd-list-manual .rmd-list-item .column .labeled-group .group-title,
rmd-list .rmd-list-item .column .labeled-group .group-desc,
.rmd-list-manual .rmd-list-item .column .labeled-group .group-desc {
  clear: none;
  display: inline-block;
}
rmd-list .rmd-list-item .column .labeled-group .group-title,
.rmd-list-manual .rmd-list-item .column .labeled-group .group-title {
  min-width: 120px;
}
rmd-list .rmd-list-item:hover .column.column-icon .toolbar,
.rmd-list-manual .rmd-list-item:hover .column.column-icon .toolbar {
  display: block;
}
rmd-list .rmd-list-item:last-child .column,
.rmd-list-manual .rmd-list-item:last-child .column {
  border-bottom: none !important;
}
rmd-list rmd-list-loading-icon,
.rmd-list-manual rmd-list-loading-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
rmd-list rmd-list-pagination,
.rmd-list-manual rmd-list-pagination {
  display: block;
  text-align: center;
  margin-top: 20px;
}
rmd-list rmd-list-pagination .pagination,
.rmd-list-manual rmd-list-pagination .pagination {
  margin: 0px;
}
rmd-list rmd-list-pagination .pagination > .active > a,
.rmd-list-manual rmd-list-pagination .pagination > .active > a,
rmd-list rmd-list-pagination .pagination > .active > a:hover,
.rmd-list-manual rmd-list-pagination .pagination > .active > a:hover {
  background-color: #1da4f0;
  border-color: #1da4f0;
}
rmd-list rmd-list-pagination .pagination > li > a,
.rmd-list-manual rmd-list-pagination .pagination > li > a {
  color: #1da4f0;
}
.md-sidebar-nav,
.md-sidebar-filter-list {
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
}
.md-sidebar-nav li,
.md-sidebar-filter-list li {
  line-height: 35px;
}
.md-sidebar-nav li .quantity,
.md-sidebar-filter-list li .quantity {
  color: #666;
  float: right;
}
.md-sidebar-nav li .filter-section-title,
.md-sidebar-filter-list li .filter-section-title {
  display: block;
  font-size: 16px;
  color: #000;
  padding: 12px 20px 0 20px;
  font-weight: 600;
}
.md-sidebar-nav li a,
.md-sidebar-filter-list li a {
  display: block;
  color: #000;
  border-radius: 5px;
  padding: 0 20px;
}
.md-sidebar-nav li a.active,
.md-sidebar-filter-list li a.active,
.md-sidebar-nav li a:hover,
.md-sidebar-filter-list li a:hover {
  color: #1da4f0;
}
.md-sidebar-nav li a.active .quantity,
.md-sidebar-filter-list li a.active .quantity,
.md-sidebar-nav li a:hover .quantity,
.md-sidebar-filter-list li a:hover .quantity {
  color: #1da4f0;
}
.md-sidebar-nav li a.active,
.md-sidebar-filter-list li a.active {
  background: #f2f2f2;
  border-top-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 5px;
  border-right: 2px solid #1da4f0;
}
.md-sidebar-nav li.header,
.md-sidebar-filter-list li.header {
  font-size: 14px;
  padding: 0 20px;
}
.md-sidebar-nav li.header .title,
.md-sidebar-filter-list li.header .title {
  text-transform: uppercase;
  font-weight: 600;
  color: #999;
}
.md-sidebar-nav li.header i,
.md-sidebar-filter-list li.header i {
  margin-right: 5px;
  color: #999;
}
.md-sidebar-nav ul,
.md-sidebar-filter-list ul {
  padding-left: 10px;
  list-style: none;
}
.md-sidebar-nav ul li a,
.md-sidebar-filter-list ul li a {
  color: #666;
}
.md-sidebar-nav ul.nested-filter-list,
.md-sidebar-filter-list ul.nested-filter-list {
  padding-left: 10px;
  list-style: none;
}
.md-sidebar-nav ul.nested-filter-list li,
.md-sidebar-filter-list ul.nested-filter-list li {
  line-height: 20px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-right: 0px;
}
.md-sidebar-nav ul.nested-filter-list li a,
.md-sidebar-filter-list ul.nested-filter-list li a {
  color: #666;
}
.md-sidebar-nav ul.nested-filter-list li a.active,
.md-sidebar-filter-list ul.nested-filter-list li a.active,
.md-sidebar-nav ul.nested-filter-list li a:hover,
.md-sidebar-filter-list ul.nested-filter-list li a:hover {
  color: #1da4f0;
}
.md-sidebar-nav ul.nested-filter-list li a.active .nested-icon,
.md-sidebar-filter-list ul.nested-filter-list li a.active .nested-icon,
.md-sidebar-nav ul.nested-filter-list li a:hover .nested-icon,
.md-sidebar-filter-list ul.nested-filter-list li a:hover .nested-icon {
  color: #1da4f0;
}
.md-sidebar-nav ul.nested-filter-list li a .md-text,
.md-sidebar-filter-list ul.nested-filter-list li a .md-text {
  font-size: 13px;
}
.md-sidebar-nav ul.nested-filter-list li a .nested-icon,
.md-sidebar-filter-list ul.nested-filter-list li a .nested-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 5px;
  color: #999;
}
.md-sidebar-nav li.collapsable {
  padding-top: 5px;
  padding-bottom: 5px;
}
.md-sidebar-nav li.collapsable a {
  line-height: 20px;
  margin-top: 5px;
}
.md-sidebar-nav li.collapsable i {
  float: right;
  color: #999;
  vertical-align: middle;
}
.md-sidebar-nav li.collapsed {
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  -o-transition: max-height 0.5s ease;
  -ms-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  max-height: 30px;
  overflow: hidden;
}
.md-sidebar-nav ul.nested-filter-list li {
  padding-top: 5px;
  padding-bottom: 5px;
}
md-collapse-sidebar .col-sm-0 {
  float: left;
  padding-left: 15px;
}
md-collapse-sidebar .col-left,
md-collapse-sidebar .col-filters {
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
md-collapse-sidebar .col-left {
  padding-right: 0px;
}
md-collapse-sidebar .col-left.sidebar-collapsed {
  width: 0px !important;
}
md-collapse-sidebar .col-left.col-trigger {
  position: absolute;
  float: left;
}
md-collapse-sidebar .col-filters {
  float: right;
}
md-collapse-sidebar .col-filters.has-trigger {
  padding-left: 70px;
}
md-collapse-sidebar .md-sidebar-filters {
  padding-left: 20px;
  padding-right: 20px;
}
md-collapse-sidebar .md-sidebar-filters .col-left {
  min-width: 55px;
}
md-collapse-sidebar .md-sidebar-filters .sidebar-trigger {
  clear: none;
  display: inline-block;
  -webkit-transition: padding 0.2s ease;
  -moz-transition: padding 0.2s ease;
  -o-transition: padding 0.2s ease;
  -ms-transition: padding 0.2s ease;
  transition: padding 0.2s ease;
}
md-collapse-sidebar .md-sidebar-filters .sidebar-trigger .btn {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  padding: 0px;
  text-align: center;
}
md-collapse-sidebar .md-sidebar-filters .sidebar-trigger .btn i {
  margin: 0;
}
md-confirm-referral-export {
  display: block;
}
md-confirm-referral-export .md-modal .modal-body rmd-radio {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-confirm-referral-export .md-modal .modal-body .md-form-group {
  display: block;
  margin-bottom: 0px;
}
md-confirm-referral-export .md-modal .modal-body .md-form-group .control-label {
  display: block;
}
md-confirm-referral-export .md-modal .modal-body .attachment-question-group {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-referral-status-list {
  display: block;
}
md-referral-status-list .md-sidebar-filter-list ul.nested-filter-list li {
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.md-sidebar-filter-list .truncate {
  display: inherit !important;
  padding-right: 5px;
  max-width: 225px;
}
.md-sidebar-filter-list li a.active .quantity {
  margin-right: -2px;
}
.md-sidebar-filter-list li .md-text.section-header {
  text-transform: uppercase;
}
.md-sidebar-filter-list.appointments {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dfdfdf;
}
md-referral-status-editor {
  display: block;
}
md-referral-status-editor .switch {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-referral-status-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 120px + 55px + 45px + 21px + (81px)));
}
md-referral-status-editor md-locations-list.has-nested .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 200px + 55px + 45px + 21px + (81px)));
}
md-referral-status-editor .toggle-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-status-editor .toggle-wrapper .md-form-group {
  margin-bottom: 10px !important;
}
md-referral-status-editor .toggle-wrapper .switch {
  margin-right: 10px;
}
md-referral-status-editor .toggle-wrapper .switch:last-child {
  margin-right: 0px;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-left: 1px solid #e0e0e0;
  padding-left: 10px;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .control-label {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 0px;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-search,
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-match,
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-dropdown {
  min-width: 160px;
  width: 160px;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-toggle {
  padding: 6px 6px;
}
md-referral-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-choices-row-inner {
  padding: 5px 10px;
}
md-referral-appointment-status-editor {
  display: block;
}
md-referral-appointment-status-editor .switch {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-referral-appointment-status-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 120px + 55px + 45px + 21px + (81px)));
}
md-referral-appointment-status-editor md-locations-list.has-nested .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 200px + 55px + 45px + 21px + (81px)));
}
.md-referral-status-picker-menu.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.md-referral-status-picker-menu.dropdown-menu.bottom-dropdown {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
.md-referral-status-picker-menu.dropdown-menu li a {
  display: block;
  padding: 5px 20px;
}
.md-referral-status-picker-menu.dropdown-menu ul.nested {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}
.md-referral-status-picker-menu.dropdown-menu ul.nested li {
  line-height: 15px;
  padding-bottom: 5px;
}
.md-referral-status-picker-menu.dropdown-menu ul.nested li a {
  color: #666;
  padding-right: 10px;
}
.md-referral-status-picker-menu.dropdown-menu ul.nested li a .md-text {
  font-size: 13px;
  width: 100%;
}
.md-referral-status-picker-menu.dropdown-menu ul.nested li a .nested-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 5px;
  color: #999;
}
md-referral-status-picker,
.md-referral-status-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  line-height: 20px;
}
md-referral-status-picker .bold,
.md-referral-status-picker .bold {
  font-weight: 600;
}
md-referral-status-picker .dropdown md-avatar,
.md-referral-status-picker .dropdown md-avatar {
  vertical-align: middle;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
md-referral-status-picker .dropdown .status-wrap,
.md-referral-status-picker .dropdown .status-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
md-referral-status-picker .dropdown .status-wrap .text2,
.md-referral-status-picker .dropdown .status-wrap .text2 {
  line-height: 18px;
}
md-referral-status-picker .dropdown .status-wrap .status,
.md-referral-status-picker .dropdown .status-wrap .status {
  display: block;
  white-space: nowrap;
  margin-bottom: 3px;
  width: min-content;
}
md-referral-status-picker .dropdown .status-wrap.archived .text1,
.md-referral-status-picker .dropdown .status-wrap.archived .text1 {
  color: #e36776;
  max-width: fit-content;
}
md-referral-status-picker .dropdown .dropdown-toggle,
.md-referral-status-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
  color: #1da4f0;
}
md-referral-status-picker .dropdown .dropdown-toggle.disabled,
.md-referral-status-picker .dropdown .dropdown-toggle.disabled {
  cursor: not-allowed;
}
md-referral-status-picker .dropdown .dropdown-toggle i,
.md-referral-status-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
}
md-referral-status-picker .dropdown .dropdown-toggle.archived,
.md-referral-status-picker .dropdown .dropdown-toggle.archived {
  color: #e36776;
}
md-referral-status-picker .dropdown .dropdown-toggle.archived i,
.md-referral-status-picker .dropdown .dropdown-toggle.archived i {
  color: #e36776;
}
.md-status-picker-tooltip {
  height: 44px !important;
}
.md-status-picker-tooltip br {
  margin: 0;
  height: 0px;
  line-height: 0px;
}
md-patient-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-provider-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-provider-column md-avatar {
  clear: none;
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
}
md-provider-column .content {
  max-width: 340px;
}
md-provider-column .content .single-line {
  margin-top: 4px;
}
.md-controller-referral-details .no-padding-left {
  padding-left: 0px;
}
.md-controller-referral-details .no-padding-right {
  padding-right: 0px;
}
.md-controller-referral-details #referral-progress-bar {
  margin-bottom: 20px;
}
.md-controller-referral-details .export-button .dropdown-menu {
  background-color: #e9f6fd;
}
.md-controller-referral-details .export-button .dropdown-menu a {
  text-align: right;
  color: #1da4f0;
  padding: 3px 10px;
}
.md-controller-referral-details .export-button .dropdown-menu a:hover {
  background-color: #d3edfb;
}
.md-controller-referral-details .md-tabpanel-content-tab.tab-messages {
  margin-left: -20px;
  margin-right: -20px;
}
.md-controller-referral-details .md-tabpanel-content-tab.fax-tab {
  height: calc(-255px + 100vh);
}
.md-controller-referral-details .md-tabpanel-content-tab.fax-tab md-fax-attachments-tab {
  display: block;
}
.md-controller-referral-details .md-tabpanel-content-tab.fax-tab md-fax-attachments-tab .md-tabpanel {
  height: inherit;
}
.md-controller-referral-details .md-tabpanel-content-tab.fax-tab md-fax-attachments-tab .md-tabpanel .md-tabpanel-content {
  height: inherit;
}
.md-controller-referral-details .md-tabpanel-content-tab.fax-tab md-fax-attachments-tab .md-tabpanel .md-tabpanel-content .md-tabpanel-content-tab {
  height: calc(100% - 30px);
}
.md-controller-referral-details .md-tabpanel-tabs .badge {
  border-radius: 50%;
  width: 17px;
  height: 15px;
  position: relative;
  padding: 3px;
  font-size: 8px;
}
.md-controller-referral-details .md-tabpanel-tabs .badge.badge-size-1 {
  top: -4px;
  right: -3px;
}
.md-controller-referral-details .md-tabpanel-tabs .badge.badge-size-2 {
  top: -4px;
  right: -3px;
}
.md-controller-referral-details .md-tabpanel-tabs .badge.badge-size-3 {
  top: -4px;
  right: -3px;
}
.md-controller-referral-details .md-tabpanel-tabs .badge .badge-plus {
  font-size: 6px;
}
.md-controller-referral-details .md-tabpanel-tabs .files-tab .files-tab-button {
  clear: none;
  display: inline-block;
}
.md-controller-referral-details .md-tabpanel-tabs .files-tab .files-tab-button + .files-tab-button {
  margin-left: 10px;
}
.md-controller-referral-details .md-section-header .md-toolbar.right .form-group {
  margin-left: 15px;
}
md-activity-editor {
  display: block;
}
@media (max-width: 767px) {
  md-activity-editor .md-toolbar {
    text-align: left;
  }
}
md-activity-editor .has-error {
  color: #e36776 !important;
}
md-activity-editor .middle {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 0px;
  border-top: 1px solid #ddd;
  height: 100%;
  margin-bottom: 10px;
  max-height: calc(100% - $headerHeight - $footerHeight);
}
md-activity-editor .middle .text-center {
  font-size: 14px;
  font-weight: 900;
}
md-activity-editor md-date .fa {
  font-size: 11px;
  position: relative;
  top: -1px;
}
@media (max-width: 767px) {
  md-activity-editor .toolbar-top .md-dropdown-group {
    width: 100%;
  }
}
md-activity-editor .toolbar-top .dropdown .dropdown-toggle {
  font-weight: 600;
  text-transform: uppercase;
}
md-activity-editor .toolbar-top.toolbar-reference {
  border-top: 1px solid #d0d0d0;
  padding-top: 5px;
}
md-activity-editor .toolbar-top.toolbar-reference .md-toolbar {
  line-height: 20px;
}
md-activity-editor .toolbar-top.toolbar-reference .label-group label {
  font-size: 14px;
  text-transform: none;
  overflow: unset;
}
@media (max-width: 767px) {
  md-activity-editor .toolbar-top.toolbar-reference .label-group {
    width: 100%;
  }
}
md-activity-editor .toolbar-top.toolbar-reference .md-dropdown-menu {
  min-width: 250px;
  max-width: 350px;
}
md-activity-editor .selected {
  margin-bottom: 10px;
}
md-activity-editor .attachment-list .attachment-preview {
  clear: none;
  display: inline-block;
  font-size: 12px;
  background: #1da4f0;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 10px;
  margin-right: 5px;
}
md-activity-editor .attachment-list .attachment-preview .btn {
  float: right;
  color: #fff;
  padding-right: 0px;
}
md-activity-editor .attachment-list .attachment-preview .attachment-details {
  clear: none;
  display: inline-block;
}
md-activity-editor .attachment-list .attachment-preview .attachment-details .text1 {
  color: #fff;
}
md-activity-editor .attachment-list .attachment-preview .attachment-details .text2 {
  color: rgba(255,255,255,0.8);
}
md-activity-editor .toolbar-bottom {
  margin-top: 20px;
}
md-search-picker {
  display: block;
  width: 100%;
}
md-search-picker .clear-filter-option:hover {
  text-decoration: underline;
}
md-search-picker .separator-line {
  height: 1px;
  background-color: #dcdcdc;
  margin: 5px 0;
}
md-search-picker .md-dropdown-group .dropdown-toggle .icon-add {
  font-size: 12px;
  line-height: 17px;
  vertical-align: middle;
  margin-right: 5px;
}
md-search-picker .md-dropdown-menu {
  width: 100%;
}
md-search-picker .md-dropdown-menu .no-data {
  padding: 5px 20px;
}
md-search-picker .md-dropdown-menu .list-item {
  padding: 0px 20px;
}
md-search-picker .md-dropdown-menu .list-item .search-item {
  padding: 5px 0px;
}
@media (max-width: 767px) {
  md-search-picker .md-dropdown-menu .list-item .search-item {
    padding: 7.5px 0px;
  }
}
md-search-picker .md-dropdown-menu .list-item.associated .search-item {
  border-bottom: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
  md-search-picker .md-dropdown-menu .list-item.associated .search-item {
    border-color: $mdColorGreyDark;
  }
}
md-search-picker .search-input {
  margin-bottom: 0px;
}
md-search-picker .no-data {
  text-align: center;
}
md-activity-log .activity-log {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
md-activity-log .activity-log .vertical-line {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 50px;
  margin-right: 10px;
}
md-activity-log .activity-log .vertical-line .vertical-line-top {
  height: 10px;
  border-left: 1px solid #d0d0d0;
  margin: 0 auto;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  -ms-box-flex: 0;
  box-flex: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
md-activity-log .activity-log .vertical-line .vertical-line-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-activity-log .activity-log .vertical-line .vertical-line-content .activity-icon {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50%;
  line-height: 40px;
  padding: 10px;
  background: #1da4f0;
  text-align: center;
  color: #fff;
}
md-activity-log .activity-log .vertical-line .vertical-line-content .activity-icon i {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  font-size: 17px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-activity-log .activity-log .vertical-line .vertical-line-content .activity-icon i.fa-mobile {
  margin-top: -2px;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  font-size: 24px;
}
md-activity-log .activity-log .vertical-line .vertical-line-content .activity-icon i.fa-envelope {
  margin-top: 1px;
}
md-activity-log .activity-log .vertical-line .vertical-line-bottom {
  border-left: 1px solid #d0d0d0;
  margin: 0 auto;
  -webkit-box-flex: 4;
  -moz-box-flex: 4;
  -o-box-flex: 4;
  -ms-box-flex: 4;
  box-flex: 4;
  -webkit-flex-grow: 4;
  flex-grow: 4;
}
md-activity-log .activity-log .detail {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}
md-activity-log .activity-log .detail .month-title {
  font-size: 18px;
  color: #000;
  margin-top: 20px;
}
md-activity-log .activity-log .detail .header {
  border-bottom: 1px solid #d0d0d0;
}
md-activity-log .activity-log .detail .header .header-title {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 100%;
}
md-activity-log .activity-log .detail .header .header-title .header-content {
  font-size: 14px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-shrink: 100000;
  flex-shrink: 100000;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -o-box-pack: left;
  -ms-flex-pack: left;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-activity-log .activity-log .detail .header .header-title .header-content .avatar-wrap {
  padding-right: 10px;
  padding-bottom: 0px;
}
md-activity-log .activity-log .detail .header .header-title .header-content .user {
  font-weight: 600;
  margin-right: 0.3em;
}
md-activity-log .activity-log .detail .header .header-title .header-content .targets {
  font-weight: 600;
}
md-activity-log .activity-log .detail .header .header-title .md-toolbar {
  font-size: 14px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: right;
  -moz-box-pack: right;
  -o-box-pack: right;
  -ms-flex-pack: right;
  -webkit-justify-content: right;
  justify-content: right;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-activity-log .activity-log .detail .header .header-title .md-toolbar .activity-action {
  cursor: pointer;
  margin-left: 20px;
}
md-activity-log .activity-log .detail .header .date {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  padding: 5px 0px;
}
md-activity-log .activity-log .detail .md-pin-status {
  width: 25px;
  height: 25px;
  background-color: #1da4f0;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 18px;
  margin-top: -10px;
  cursor: pointer;
}
md-activity-log .activity-log .detail .md-pin-status i.pin-icon {
  margin-left: 7px;
  margin-top: 4px;
}
md-activity-log .activity-log .content {
  display: block;
}
md-activity-log .activity-log .content .outcome {
  font-size: 14px;
  padding-top: 10px;
}
md-activity-log .activity-log .content .description {
  font-size: 14px;
  padding-top: 10px;
}
md-activity-log .activity-log .content .attachment-list {
  border-top: 1px solid #d0d0d0;
}
md-activity-log .activity-log .content .attachment-list .file-info {
  margin-top: 10px;
}
md-activity-log .activity-log .content .attachment-list .file-info .filename {
  font-size: 14px;
}
md-activity-log .activity-log .content .mobile-activity-actions {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 767px) {
  md-activity-log .activity-log .content .mobile-activity-actions {
    display: none;
  }
}
md-activity-log .activity-log .editor {
  display: block;
}
md-activity-log .more {
  font-size: 12px;
  margin-left: 60px;
}
md-activity-log .more a {
  text-transform: uppercase;
  font-weight: 600;
}
md-activity-log .more a:hover {
  color: #0f97e3;
}
md-activity-log .more a i {
  font-size: 12px;
  margin-right: 5px;
}
md-intake-form-list {
  display: block;
}
md-intake-form-list .rmd-list-item .toolbar-column {
  width: auto !important;
  max-width: 150px !important;
}
md-intake-form-list .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-intake-form-list .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-intake-form-list .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-intake-form-list .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-intake-form-list .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-intake-form-list .rmd-list-columns .column.column-small {
  width: 140px;
}
md-intake-form-list .rmd-list-columns .column.column-time {
  width: 200px;
}
md-intake-form-list .appointment-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-intake-form-list .appointment-toolbar-icons .first-row,
md-intake-form-list .appointment-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-intake-form-list rmd-list tbody tr td.column.column-icon {
  min-width: 93px;
  padding-right: 20px;
}
md-intake-form-list rmd-list thead .checkbox {
  margin-left: 15px;
}
md-intake-form-details {
  display: block;
}
md-intake-form-details .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-task-alert-list {
  display: block;
}
md-task-alert-list .mobile-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-task-alert-list .mobile-list-item .task-details {
  max-width: calc(100vw - 40px - 42px - 30px - 5px);
}
md-task-alert-list .mobile-list-item .task-details .details-tertiary {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-task-alert-list .mobile-list-item .task-details .details-tertiary .date {
  background: #f2f2f2;
  margin-right: 5px;
}
md-task-alert-list .mobile-list-item .task-details .details-tertiary .type {
  background: #e8f6fd;
}
md-task-alert-list .rmd-list-columns .select-all-header-check .checkbox {
  margin-left: 5px;
}
md-task-alert-list .rmd-list-columns .task-action {
  cursor: pointer;
  margin-left: 20px;
}
md-task-alert-list .rmd-list-columns rmd-checkbox .checkbox {
  margin-top: 0px;
  margin-bottom: 0px;
}
md-task-alert-list .rmd-list-columns rmd-checkbox .checkbox label {
  vertical-align: middle;
}
md-task-alert-list .rmd-list-columns rmd-checkbox .checkbox label .fake {
  border: 1px solid #d0d0d0;
}
md-task-alert-list .rmd-list-columns .column .referral-action {
  margin-left: 20px;
}
md-task-alert-list .rmd-list-columns .batch-operator-container {
  display: inline-block;
}
md-task-alert-list .rmd-list-columns .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
md-task-alert-list .rmd-list-columns .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
md-task-alert-list .rmd-list-columns .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
  margin-top: -20px;
}
md-task-alert-list .task-row {
  cursor: pointer;
}
md-task-alert-list .task-row .text1,
md-task-alert-list .task-row .text2 {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-task-alert-list .task-row rmd-checkbox .checkbox label .fake {
  border: 1px solid #d0d0d0;
}
md-task-alert-list .status-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  line-height: 32px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-referral-sidebar {
  display: block;
}
md-referral-sidebar .header-preview .detail-list {
  padding-top: 0px;
}
md-referral-sidebar .has-error md-date,
md-referral-sidebar .has-error md-time,
md-referral-sidebar .has-error .text2 {
  color: #da3549;
}
md-referral-sidebar .requested-dates {
  color: #f00;
}
md-referral-sidebar .appointment-status {
  clear: none;
  display: inline-block;
}
md-referral-sidebar .appointment-status i {
  margin-left: 5px;
  color: #70c060;
}
md-referral-sidebar .detail-list .intake-form,
md-referral-sidebar .detail-list .view-form {
  font-weight: 600;
}
md-referral-sidebar .detail-list md-referral-priority-picker .md-text {
  font-weight: 600;
  text-transform: uppercase;
}
md-referral-sidebar .detail-list md-referral-priority-picker .md-text.md-link {
  font-size: 12px;
}
md-referral-sidebar .rmd-editable .edit-form .md-form-group {
  margin-bottom: 0px;
}
md-referral-sidebar .override-reason-picker {
  width: 100%;
}
md-referral-sidebar .override-reason-picker .md-dropdown-menu.search {
  max-width: 270px;
}
md-referral-sidebar rmd-member-chips.md-specialty-chip .md-chips {
  display: block !important;
}
md-referral-sidebar rmd-member-chips.md-specialty-chip .md-chips md-chip {
  max-width: 100% !important;
}
md-referral-sidebar rmd-member-chips.md-specialty-chip md-chips {
  display: block !important;
}
rmd-system-id {
  display: block;
}
md-sticky-footer {
  display: block;
}
md-sticky-footer .md-sticky-footer-content {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 1px 25px 0 rgba(0,0,0,0.08);
  box-shadow: 0 1px 25px 0 rgba(0,0,0,0.08);
  z-index: 1030;
}
md-sticky-footer .md-sticky-footer-content .content {
  padding: 15px 30px;
}
md-sticky-footer .md-sticky-footer-content .md-toolbar .btn {
  min-width: 90px;
}
@media (max-width: 767px) {
  md-sticky-footer .md-sticky-footer-content .md-toolbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  md-sticky-footer .md-sticky-footer-content .md-toolbar .form-group {
    margin-bottom: 0px;
    margin-right: 15px;
  }
}
md-sticky-footer .md-sticky-footer-content .sticky-footer-text {
  clear: none;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
}
md-sticky-footer .listeners {
  display: block;
}
md-sticky-footer .listeners.editing {
  margin-bottom: 340px;
}
md-sticky-footer .listeners rmd-search .md-dropdown-menu,
md-sticky-footer .listeners md-department-picker .md-dropdown-menu {
  margin-bottom: 100px;
  max-height: 300px;
}
md-sticky-footer .listeners.modal-listeners {
  height: calc(100vh - 75px - 81px);
  overflow-y: scroll;
  overflow-x: auto;
}
md-birthdate-picker {
  display: block;
}
md-mrn-picker {
  display: block;
}
md-mrn-picker .split1 {
  width: calc(50% - 15px);
  margin-right: 30px;
}
md-mrn-picker .split2 {
  width: calc(50% - 40px) !important;
  margin-left: 0px !important;
  max-width: unset !important;
}
md-mrn-picker .md-form-group {
  margin-bottom: 10px;
}
md-mrn-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-mrn-picker .add-link i {
  margin-right: 5px;
}
md-mrn-picker .text-muted {
  color: #b1b1b1;
}
md-mrn-picker .dropdown-menu,
md-mrn-picker .md-dropdown-menu,
md-mrn-picker .dropdown {
  min-width: 136px;
}
md-mrn-picker .input-row {
  margin-bottom: 10px;
}
md-mrn-picker .input-row .type-picker {
  min-width: 136px;
  max-width: 136px;
  margin-left: 10px;
}
md-mrn-picker .input-row .type-picker .dropdown-menu {
  min-width: fit-content;
}
md-language-picker {
  display: block;
}
md-language-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-insurance-picker {
  display: block;
}
md-insurance-picker md-filter-chips .md-chips {
  padding-bottom: 10px;
}
md-insurance-picker md-filter-chips .md-chips md-chip {
  margin-top: 0px;
}
md-insurance-picker .no-data {
  margin-left: 3px;
}
md-insurance-picker .short-menu {
  min-width: 0px !important;
}
md-insurance-picker .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-insurance-picker .add-link i {
  margin-right: 5px;
}
md-insurance-picker .insurance-item + .insurance-item {
  border-top: 1px solid #d0d0d0;
  padding-top: 5px;
  margin-top: 10px;
}
md-insurance-picker md-insurance-picker-item {
  display: block;
}
md-insurance-picker md-insurance-picker-item .remove-saved.form-control-toolbar {
  margin-top: -8px !important;
}
md-insurance-picker md-insurance-picker-item .search-group {
  margin-bottom: 10px;
}
md-insurance-picker md-insurance-picker-item .search-group .name-display {
  clear: none;
  display: inline-block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
  margin-bottom: 5px;
}
md-insurance-picker md-insurance-picker-item .search-group .name-display + .form-control-toolbar .btn {
  height: auto !important;
  line-height: normal !important;
}
md-insurance-picker md-insurance-picker-item .search-group .name-display .text1 .plan {
  margin: 2.5px 0;
}
md-insurance-picker md-insurance-picker-item .search-group .name-display .text1 .payer {
  margin-bottom: 2.5px;
}
md-insurance-picker md-insurance-picker-item .search-group .search-state-group {
  margin-left: 5px;
  width: 160px;
  min-width: 160px;
}
md-insurance-picker md-insurance-picker-item .payer-display-group,
md-insurance-picker md-insurance-picker-item .plan-display-group {
  margin-bottom: 0px !important;
}
md-insurance-picker md-insurance-picker-item .insurance-form md-filter-chips .md-chips md-chip {
  max-width: 100%;
}
md-insurance-picker md-insurance-picker-item .insurance-form.sidebar .dropdown-menu {
  min-width: 450px;
}
md-insurance-picker md-insurance-picker-item .insurance-form.sidebar md-state-picker .dropdown-menu {
  min-width: 150px;
  max-width: 150px;
}
md-insurance-picker md-insurance-picker-item .insurance-form.sidebar .search-group .search-state-group {
  width: 70px;
  min-width: 70px;
}
.md-insurance-picker-dropdown-menu {
  margin-top: 0px;
  margin-bottom: 10px;
  min-width: 100%;
}
.md-insurance-picker-dropdown-menu .dropdown-header {
  font-size: 14px;
  font-weight: 600;
  color: #999;
}
.md-insurance-picker-dropdown-menu .dropdown-header.border-top {
  border-top: 1px solid #d0d0d0;
  padding-top: 5px;
  margin-top: 5px;
}
rmd-time-zone-picker {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
rmd-time-zone-picker .timezone {
  margin-left: 10px;
}
rmd-time-zone-picker .timezone .dropdown-toggle {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}
md-referral-appointments-schedule {
  display: block;
}
md-referral-appointments-schedule md-availability-picker .header {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-appointments-schedule md-availability-picker .picker .timeslot-container {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-appointments-schedule .provider-row {
  margin-bottom: 20px;
}
md-referral-appointments-schedule .provider-row .provider-details {
  text-align: center;
}
md-referral-appointments-schedule .step {
  width: 100%;
}
md-referral-appointments-schedule .step.step-confirm {
  text-align: center;
}
md-referral-appointments-schedule .step.step-confirm .info-row {
  margin-bottom: 10px;
}
md-referral-appointments-schedule .step.step-select {
  text-align: center;
}
md-referral-appointments-schedule .step.step-select .info-row {
  margin-bottom: 10px;
}
md-referral-appointments-schedule .step.step-select .info-row .info-title {
  font-weight: 600;
}
md-referral-appointments-schedule .form-row.locations-row .md-form-group.location {
  margin-bottom: 10px;
}
md-referral-appointments-schedule .form-row.referral-reason-row {
  margin-bottom: 10px;
}
md-referral-appointments-schedule .form-row.scheduler-row {
  margin-top: 10px;
}
md-referral-appointments-schedule .form-picker,
md-referral-appointments-schedule .md-form-group.location {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
md-referral-appointments-schedule .has-error .form-control {
  border-color: #e36776;
}
md-referral-appointments-schedule .md-loader-indicator {
  text-align: center;
  font-size: 35px;
  color: #1da4f0;
  margin-top: 20px;
}
md-referral-appointments-schedule .no-results {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}
md-referral-appointments-schedule .no-results .fa-warning {
  color: #f09b37;
}
md-referral-appointments-schedule .no-results .message {
  margin-left: 10px;
}
md-referral-schedule-multi {
  display: block;
}
md-referral-schedule-multi .modal-body .form-group.has-error md-date,
md-referral-schedule-multi .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-waitlist {
  display: block;
}
md-referral-waitlist .modal-body .form-group.has-error md-date,
md-referral-waitlist .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-waitlist .modal-body .form-group .internal-note-title {
  margin-top: 25px;
}
md-referral-waitlist .modal-body .form-group .internal-note {
  margin-top: 6px;
}
md-referral-report-date-multi {
  display: block;
}
md-referral-report-date-multi .modal-body .form-group.appointment-section {
  margin-bottom: 30px;
}
md-referral-report-date-multi .modal-body .form-group.has-error md-date,
md-referral-report-date-multi .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-report-date-multi .modal-body .status-picker-wrap .status {
  margin-left: auto;
  margin-right: auto;
}
md-referral-report-date-multi .modal-body .status-picker-wrap .md-referral-status-picker-menu.dropdown-menu {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
md-referral-report-date-multi .file-loaders {
  font-weight: 600;
}
md-referral-report-date-multi .file-loaders .action-link {
  cursor: pointer;
  line-height: 20px;
  color: #1da4f0;
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
md-referral-report-date-multi .file-loaders i {
  margin-right: 5px;
}
md-referral-report-date-multi .file-loaders .md-dropzone {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 12px;
  text-transform: uppercase;
}
md-referral-report-date-multi .file-loaders .dz-preview {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-report-date-multi .file-loaders .dz-preview .dz-details {
  margin: auto;
}
md-referral-report-date-multi .file-loaders .md-dropzone-file-preview .dz-icon {
  margin-right: 0;
}
.vertical-scroll-report-date-modal .modal-dialog {
  height: 85%;
}
.vertical-scroll-report-date-modal .modal-dialog .md-modal .modal-body {
  height: calc(100vh - 40px - 81px - 81px - 80px);
  overflow: scroll;
  overflow-x: hidden;
}
md-referral-alerts {
  display: block;
}
md-referral-alerts md-alert-banner .alert button.close {
  margin-top: 7px;
}
md-referral-files {
  display: block;
}
md-referral-files .no-groups-message {
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
  text-align: center;
}
md-referral-files td.column.column-icon.toolbar-column {
  min-width: 150px;
  padding-right: 30px;
}
md-referral-files td.column.column-icon.toolbar-column .fa.fa-close {
  font-size: 22px;
  line-height: 18px;
}
md-referral-files .rmd-list-item .toolbar-column {
  width: auto !important;
  max-width: 150px !important;
}
md-referral-files .rmd-list-item .column .line-clamp-2 {
  white-space: wrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
md-referral-files .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-referral-files .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-referral-files .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-referral-files .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-referral-files .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-referral-files .batch-operator-container {
  display: inline-block;
}
md-referral-files .file-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-referral-files .file-toolbar-icons .first-row,
md-referral-files .file-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-files .select-all-header-check .checkbox {
  margin-left: 5px;
}
md-referral-files .file-filter-row {
  margin-bottom: 10px;
  background: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-files .file-filter-row .filter-container {
  height: 33px;
  margin-left: 20px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 210px;
  -ms-flex: 0 1 210px;
  flex: 0 1 210px;
}
md-referral-files .file-filter-row .filter-container.search {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
}
md-referral-files .file-filter-row .filter-container ul.ui-select-choices {
  width: fit-content;
  min-width: 100%;
}
md-referral-files .file-filter-row .filter-container:first-child {
  margin-left: 0px;
}
md-referral-files .file-filter-row separated-date-picker input .date-picker {
  backgroud-color: #fff;
}
md-referral-files .file-filter-row #report-daterange-picker .form-control {
  background: #fff;
}
md-file-type-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-file-type-picker .ui-select-toggle {
  color: #000;
}
md-file-type-picker .text-muted {
  color: #b1b1b1;
}
md-file-type-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-file-type-picker .input-row {
  margin-bottom: 10px;
}
md-file-type-picker .input-row .type-picker {
  margin-left: 10px;
}
md-file-type-picker .md-form-group {
  margin-bottom: 10px;
}
md-file-type-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-file-type-picker .add-link i {
  margin-right: 5px;
}
md-file-type-picker .ui-select-spin {
  display: none;
}
md-file-type-picker .btn-link {
  display: none;
}
md-referral-appointments {
  display: block;
}
md-referral-appointments .rmd-list-item .toolbar-column {
  width: auto !important;
  max-width: 150px !important;
}
md-referral-appointments .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-referral-appointments .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-referral-appointments .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-referral-appointments .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-referral-appointments .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-referral-appointments .rmd-list-columns .column.column-small {
  width: 140px;
}
md-referral-appointments .rmd-list-columns .column.column-time {
  width: 200px;
}
md-referral-appointments .appointment-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-referral-appointments .appointment-toolbar-icons .first-row,
md-referral-appointments .appointment-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-referral-appointments rmd-list tbody tr td.column.column-icon {
  min-width: 93px;
  padding-right: 20px;
}
md-referral-appointments rmd-list thead .checkbox {
  margin-left: 15px;
}
md-referral-schedule-multi-appointment {
  display: block;
}
md-referral-schedule-multi-appointment .modal-body .form-group .status-picker {
  display: inline-block;
}
md-referral-schedule-multi-appointment .modal-body .form-group .status-picker .status {
  margin-left: auto;
  margin-right: auto;
}
md-referral-schedule-multi-appointment .modal-body .form-group .requested-dates {
  color: #f00;
}
md-referral-schedule-multi-appointment .modal-body .form-group.reason,
md-referral-schedule-multi-appointment .modal-body .form-group.provider,
md-referral-schedule-multi-appointment .modal-body .form-group.department {
  max-width: 350px;
  margin: auto;
  margin-bottom: 20px;
}
md-referral-schedule-multi-appointment .modal-body .form-group.has-error md-date,
md-referral-schedule-multi-appointment .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-referral-schedule-multi-appointment .modal-body .md-appointment-status-picker-menu.dropdown-menu {
  left: 50% !important;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
md-referral-schedule-multi-appointment .integration-warning {
  color: #da3549 !important;
}
.md-appointment-status-picker-menu.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.md-appointment-status-picker-menu.dropdown-menu.bottom-dropdown {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
.md-appointment-status-picker-menu.dropdown-menu li a {
  display: block;
  padding: 5px 20px;
}
.md-appointment-status-picker-menu.dropdown-menu ul.nested {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}
.md-appointment-status-picker-menu.dropdown-menu ul.nested li {
  line-height: 15px;
  padding-bottom: 5px;
}
.md-appointment-status-picker-menu.dropdown-menu ul.nested li a {
  color: #666;
  padding-right: 10px;
}
.md-appointment-status-picker-menu.dropdown-menu ul.nested li a .md-text {
  font-size: 13px;
  width: 100%;
}
.md-appointment-status-picker-menu.dropdown-menu ul.nested li a .nested-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 5px;
  color: #999;
}
md-appointment-status-picker,
.md-appointment-status-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  line-height: 20px;
}
md-appointment-status-picker .bold,
.md-appointment-status-picker .bold {
  font-weight: 600;
}
md-appointment-status-picker .dropdown .status-wrap,
.md-appointment-status-picker .dropdown .status-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
md-appointment-status-picker .dropdown .status-wrap .text2,
.md-appointment-status-picker .dropdown .status-wrap .text2 {
  line-height: 18px;
}
md-appointment-status-picker .dropdown .status-wrap .status,
.md-appointment-status-picker .dropdown .status-wrap .status {
  display: block;
  white-space: nowrap;
  margin-bottom: 3px;
  width: min-content;
}
md-appointment-status-picker .dropdown .status-wrap.archived .text1,
.md-appointment-status-picker .dropdown .status-wrap.archived .text1 {
  color: #e36776;
  max-width: fit-content;
}
md-appointment-status-picker .dropdown .dropdown-toggle,
.md-appointment-status-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
  color: #1da4f0;
}
md-appointment-status-picker .dropdown .dropdown-toggle.disabled,
.md-appointment-status-picker .dropdown .dropdown-toggle.disabled {
  cursor: not-allowed;
}
md-appointment-status-picker .dropdown .dropdown-toggle i,
.md-appointment-status-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
}
md-appointment-status-picker .dropdown .dropdown-toggle.archived,
.md-appointment-status-picker .dropdown .dropdown-toggle.archived {
  color: #e36776;
}
md-appointment-status-picker .dropdown .dropdown-toggle.archived i,
.md-appointment-status-picker .dropdown .dropdown-toggle.archived i {
  color: #e36776;
}
.md-status-picker-tooltip {
  height: 44px !important;
}
.md-status-picker-tooltip br {
  margin: 0;
  height: 0px;
  line-height: 0px;
}
md-referral-priority-picker {
  display: block;
  width: 100%;
}
md-referral-priority-picker .dropdown .dropdown-toggle {
  overflow: visible !important;
}
md-referral-priority-picker .dropdown .urgency {
  width: unset !important;
  max-width: unset !important;
}
md-referral-priority-picker .dropdown .pulse {
  -webkit-animation: pulse 2s ease infinite;
  -moz-animation: pulse 2s ease infinite;
  -o-animation: pulse 2s ease infinite;
  -ms-animation: pulse 2s ease infinite;
  animation: pulse 2s ease infinite;
}
md-referral-priority-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
}
md-referral-priority-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
  vertical-align: middle;
}
md-referral-priority-picker .dropdown .dropdown-toggle.has-error i,
md-referral-priority-picker .dropdown .dropdown-toggle.has-error .md-link {
  color: #e36776;
}
md-referral-priority-picker .dropdown .dropdown-menu li.urgent {
  color: #da3549;
}
md-referral-priority-picker .dropdown .dropdown-menu.has-error {
  border-color: #e36776;
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
md-referral-progress-bar {
  display: block;
}
md-referral-progress-bar .referral-progress-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 48px;
  padding-right: 48px;
}
md-referral-progress-bar ul.markers {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  font-size: 12px;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 3em;
  padding-right: 2em;
  height: 5em;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 0px;
}
md-referral-progress-bar ul.markers li {
  background: #70c060;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 4px;
  line-height: 1em;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  text-align: right;
}
md-referral-progress-bar ul.markers li .circle {
  width: 2em !important;
  height: 2em !important;
  max-width: 2em !important;
  max-height: 2em !important;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: -0.8em;
  left: -2em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  color: #fff;
  border: 2px solid #e0e0e0;
}
md-referral-progress-bar ul.markers li .circle i {
  display: none;
  line-height: 1.9em;
}
md-referral-progress-bar ul.markers li .circle .action,
md-referral-progress-bar ul.markers li .circle .name {
  font-weight: 600;
  display: block;
  color: #000;
  width: 16.4em;
  text-align: center;
}
md-referral-progress-bar ul.markers li .circle .name {
  position: absolute;
  top: -29px;
  left: -7.4em;
}
md-referral-progress-bar ul.markers li .circle .action {
  position: absolute;
  top: 2em;
  left: -7.4em;
}
md-referral-progress-bar ul.markers li.active,
md-referral-progress-bar ul.markers li.active~li,
md-referral-progress-bar ul.markers li.active~li::before {
  background-color: #e0e0e0;
}
md-referral-progress-bar ul.markers li:last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  -ms-box-flex: 0;
  box-flex: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0;
  flex-basis: 0;
}
md-referral-progress-bar ul.markers li.completed .circle,
md-referral-progress-bar ul.markers li.active .circle {
  border-color: #70c060;
}
md-referral-progress-bar ul.markers li.completed .circle {
  background: #70c060;
}
md-referral-progress-bar ul.markers li.completed .circle i {
  display: block;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-referral-provider-sidebar {
  display: block;
}
md-referral-provider-sidebar md-chips-wrap {
  width: 100%;
}
md-referral-provider-sidebar md-gender-picker {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
md-referral-provider-sidebar md-gender-picker .other {
  margin-top: 10px;
}
md-referral-provider-sidebar .popover {
  max-width: none;
}
md-referral-provider-sidebar .popover-content {
  padding: 3px 4px;
}
md-referral-provider-sidebar .provider-map {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
}
md-referral-provider-sidebar .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
md-referral-provider-sidebar .md-phone-picker .dropdown-menu {
  min-width: fit-content;
  margin-left: -webkit-fill-available;
}
md-referral-provider-sidebar .select-provider {
  text-transform: uppercase;
  font-weight: 600;
}
md-referral-provider-sidebar .select-provider.md-link {
  font-size: 12px;
}
md-referral-provider-sidebar .select-provider .fa-search {
  margin-right: 6px;
}
md-referral-provider-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-provider-sidebar .collapsed-detail {
  font-size: 13px !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 18px !important;
}
md-referral-provider-sidebar md-panel .md-pane.panel.panel-open .secondary-section.hide-detail {
  display: none;
}
md-referral-provider-sidebar md-panel .info-section.selectable.org-details {
  border-top: none;
  padding: 0;
}
md-referral-provider-sidebar .selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  padding-left: 1px;
}
md-referral-provider-sidebar .truncate {
  max-width: 278px;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: -5px;
}
md-referral-provider-sidebar .has-error {
  color: #e36776 !important;
}
md-referral-provider-sidebar .has-error .control-label {
  color: #e36776 !important;
}
md-referral-provider-sidebar .has-error .form-control {
  border-color: #e36776 !important;
}
md-referral-provider-sidebar .dropdown-menu,
md-referral-provider-sidebar .md-dropdown-menu,
md-referral-provider-sidebar .dropdown {
  min-width: 75px;
  max-width: 100% !important;
}
md-referral-provider-sidebar .year-dropdown {
  margin-left: 10px;
  width: 75px !important;
}
md-referral-provider-sidebar .specialty-picker,
md-referral-provider-sidebar .city-picker {
  margin-bottom: 5px;
}
md-referral-provider-sidebar md-zip-picker .form-group,
md-referral-provider-sidebar md-city-picker .form-group {
  margin-bottom: 0px !important;
}
md-referral-provider-sidebar .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-referral-provider-sidebar .add-link i {
  margin-right: 5px;
}
md-referral-provider-sidebar .provider-select {
  display: block !important;
}
md-referral-provider-sidebar .provider-select .department-picker {
  margin-top: 10px;
}
md-referral-provider-sidebar .contact-organizations-section {
  margin-top: 10px;
}
md-referral-provider-sidebar .contact-organizations-section .section-title {
  margin-bottom: 10px;
}
md-referral-provider-sidebar .phone-list-item:first-child {
  margin-top: 5px;
}
md-referral-provider-sidebar .phone-list-item .phone-number,
md-referral-provider-sidebar .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
md-referral-provider-sidebar .phone-list-item .phone-type {
  margin-left: 10px;
}
md-referral-provider-sidebar rmd-search .dropdown {
  position: absolute;
}
md-referral-provider-sidebar rmd-search .dropdown .dropdown-menu {
  position: relative;
}
md-referral-provider-sidebar .search-providers rmd-search {
  position: relative;
  z-index: 10;
}
md-referral-provider-sidebar md-specialty-table-picker .dropdown-menu {
  min-width: fit-content !important;
  max-width: 600px;
}
md-referral-provider-sidebar md-specialty-table-picker .md-specialty-column {
  min-width: 400px !important;
}
md-referral-provider-sidebar md-specialty-table-picker .md-specialty-tax-column {
  min-width: 40px !important;
}
rmd-search {
  display: block;
  width: 100%;
}
rmd-search .md-dropdown-menu,
rmd-search .dropdown-table {
  background-color: #fff;
}
rmd-search .md-dropdown-menu .add,
rmd-search .dropdown-table .add {
  display: inline-block !important;
  min-width: 100% !important;
}
rmd-search .md-dropdown-menu .location-count,
rmd-search .dropdown-table .location-count {
  margin-left: 5px;
  clear: none;
  display: inline-block;
  font-weight: 700;
}
rmd-search .loading {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: box !important;
  display: flex !important;
  padding: 10px;
}
rmd-search .loading-icon {
  padding-right: 5px;
}
rmd-search .loading-message {
  display: inline-block !important;
  min-width: 100% !important;
}
rmd-search .search-input {
  margin-bottom: 0px !important;
}
rmd-search .dropdown.open .dropdown-table {
  display: block !important;
  min-width: fit-content;
}
rmd-search .dropdown.open .dropdown-table .dropdown-table-header {
  position: sticky;
  top: 0;
}
rmd-search .md-dropdown-menu {
  width: 100%;
}
rmd-search .md-dropdown-menu .no-data {
  padding: 5px 20px;
}
rmd-search .expanded-search-box {
  width: 400px;
}
md-country-picker {
  display: block;
  width: 100%;
}
md-country-picker .text-muted {
  color: #b1b1b1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  padding-left: 3px;
}
md-provider-selector {
  display: block;
}
md-provider-selector .md-toolbar {
  width: 100%;
}
md-provider-selector .md-toolbar rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 100px;
}
md-provider-selector .md-toolbar md-toolbar-condition-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
md-provider-selector .md-toolbar md-toolbar-procedure-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
md-provider-selector .md-toolbar form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
md-provider-selector .md-toolbar form .form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
md-provider-selector .md-toolbar form .form-group.switch {
  white-space: nowrap;
}
md-provider-selector .md-toolbar form md-toolbar-city-picker .md-dropdown-menu {
  min-width: 250px;
  max-width: 445em;
}
md-provider-selector .md-toolbar form md-toolbar-specialty-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: fit-content;
}
md-referral-audit-log {
  padding-top: 10px;
}
md-referral-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-referral-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-referral-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-referral-audit-log .details .action.block {
  display: block;
}
md-referral-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-referral-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-referral-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-referral-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-referral-audit-log .details .file a:hover,
md-referral-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-referral-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-patient-sidebar {
  display: block;
}
md-patient-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-patient-sidebar .mt4 {
  margin-top: 4px;
}
md-patient-sidebar md-panel.proxy-panel.hidden-preview .panel-heading .header-wrap {
  border-bottom: none;
  padding-bottom: 0;
}
md-patient-sidebar md-panel.proxy-panel.hidden-preview .header-preview {
  display: none;
}
md-patient-sidebar .proxy-name-display {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-patient-sidebar .proxy-name-display .proxy-name {
  margin-left: 10px;
  margin-top: 4px;
}
md-patient-sidebar md-string-picker.relationship .ui-select-container .form-control,
md-patient-sidebar md-string-picker.maritalStatus .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
md-patient-sidebar md-string-picker.relationship .fa-times,
md-patient-sidebar md-string-picker.maritalStatus .fa-times {
  display: none;
}
md-patient-sidebar .other {
  margin-top: 10px;
}
md-patient-sidebar .mrns-list-section span {
  font-size: 16px;
  font-weight: 1000;
  color: #1da4f0;
}
md-patient-sidebar .selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  padding-left: 1px;
}
md-patient-sidebar .collapsed-detail {
  font-size: 13px !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 18px !important;
}
md-patient-sidebar .truncate {
  max-width: 278px;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: -5px;
}
md-patient-sidebar div[class^='has-error'] .text2,
md-patient-sidebar div[class*=' has-error'] .text2,
md-patient-sidebar div[class^='has-error'] .dropdown-title,
md-patient-sidebar div[class*=' has-error'] .dropdown-title,
md-patient-sidebar div[class^='has-error'] .md-text.md-link,
md-patient-sidebar div[class*=' has-error'] .md-text.md-link,
md-patient-sidebar div[class^='has-error'] .action-link,
md-patient-sidebar div[class*=' has-error'] .action-link {
  color: #e36776 !important;
}
md-patient-sidebar div[class^='has-error'] input,
md-patient-sidebar div[class*=' has-error'] input {
  border-color: #e36776 !important;
}
md-patient-sidebar .edit-label.has-error {
  color: #e36776;
}
md-patient-sidebar .edit-form .has-error .md-dropdown-group .dropdown .dropdown-toggle {
  color: #e36776;
}
md-patient-sidebar .has-error {
  color: #e36776;
}
md-patient-sidebar .has-error .form-control {
  border-color: #e36776;
}
md-patient-sidebar .md-form-group.has-error .control-label {
  color: #e36776 !important;
}
md-patient-sidebar .no-error {
  border-color: #d1d1d1 !important;
}
md-patient-sidebar .no-error .form-control {
  border-color: #d1d1d1 !important;
}
md-patient-sidebar .address-list-item {
  margin-bottom: 10px;
}
md-patient-sidebar .address-list-item:last-child {
  margin-bottom: 0px;
}
md-patient-sidebar .insurance-list-item + .insurance-list-item {
  border-top: 1px solid #d0d0d0;
  padding-top: 10px;
  margin-top: 10px;
}
md-patient-sidebar .insurance-list-item .text1,
md-patient-sidebar .insurance-list-item .text2 {
  padding: 2px 0;
}
md-patient-sidebar .phone-list-item:last-child {
  margin-bottom: -5px;
}
md-patient-sidebar .phone-list-item .phone-number,
md-patient-sidebar .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
md-patient-sidebar .phone-list-item .phone-type {
  margin-left: 10px;
}
md-patient-sidebar .patient-select {
  display: block !important;
}
md-patient-sidebar md-zip-picker .form-group,
md-patient-sidebar md-city-picker .form-group {
  margin-bottom: 0px !important;
}
md-patient-sidebar md-panel.read-only .rmd-editable {
  cursor: default;
}
md-patient-sidebar md-panel.read-only .edit-icon .fa-pencil {
  display: none !important;
}
md-patient-sidebar .rmd-editable.read-only .rmd-editable {
  cursor: default;
}
md-patient-sidebar .rmd-editable.read-only .edit-icon .fa-pencil {
  display: none !important;
}
md-patient-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
.group-policy {
  margin-top: -10px;
}
.plan-search {
  margin-top: -10px;
}
md-insurance-picker md-insurance-picker-item .md-form-group.has-feedback {
  margin-bottom: 10px !important;
}
display: block;
md-patient-form {
  display: block;
  width: 100%;
}
md-patient-form .patient-form-wrap {
  overflow-x: hidden;
}
md-patient-form .has-error .form-control {
  border-color: #da3549 !important;
}
md-patient-form .md-race-picker .ui-select-bootstrap .ui-select-choices {
  max-height: 220px;
}
md-patient-form .widget-gender-label {
  margin-left: -15px;
}
md-patient-form md-chip .fa-times {
  margin-right: 10px !important;
}
md-patient-form .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-patient-form .inline {
  display: inline;
}
md-patient-form .md-btn.icon {
  padding-right: 0px !important;
}
md-patient-form .md-insurance-picker-dropdown-menu {
  max-width: 500px !important;
}
md-patient-form .not-equal .ui-select-container .ui-select-search,
md-patient-form .not-equal .ui-select-container .ui-select-match {
  min-width: 160px !important;
}
md-patient-form .not-equal .gender-select {
  max-width: 160px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-patient-form .not-equal .other {
  max-width: 390px;
  margin-left: 10px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-patient-form .dropup .dropdown-menu {
  margin-bottom: 60px;
}
md-patient-form md-gender-picker .gender-picker-select .gender-other {
  margin-left: 0px;
}
md-patient-form .type-picker {
  min-width: 100%;
  max-width: 100%;
}
md-patient-form .text-muted {
  color: #b1b1b1;
}
md-patient-form .md-phone-picker .dropdown-menu {
  min-width: fit-content;
  margin-left: -webkit-fill-available;
}
md-patient-form .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
}
md-patient-form .add-link i {
  margin-right: 5px;
}
md-patient-form md-string-picker.maritalStatus .ui-select-container .form-control,
md-patient-form md-string-picker.relationship .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
md-patient-form md-string-picker.maritalStatus .fa-times,
md-patient-form md-string-picker.relationship .fa-times {
  display: none;
}
md-zip-picker {
  display: block;
}
md-zip-picker .hide-dropdown .dropdown-menu {
  display: none;
}
md-zip-picker .md-form-group.md-form-group-icon .icon {
  position: absolute;
  left: auto;
  right: 0px;
  color: #1da4f0;
}
md-zip-picker .md-form-group.md-form-group-icon .icon.icon-right {
  left: auto;
  right: 0px;
}
md-zip-picker .md-form-group.md-form-group-icon.icon-right input.md-form-control[type="text"] {
  padding-right: 35px;
}
md-special-insurance-picker {
  display: block;
}
md-special-insurance-picker md-gender-picker .specify {
  margin-top: 10px;
}
md-special-insurance-picker .form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
}
md-special-insurance-picker .md-form-group {
  margin-bottom: 10px;
}
md-special-insurance-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-special-insurance-picker .add-link i {
  margin-right: 5px;
}
md-special-insurance-picker .text-muted {
  color: #b1b1b1 x;
}
md-special-insurance-picker .ui-select-container {
  width: 100%;
}
md-special-insurance-picker .ui-select-container i.glyphicon.glyphicon-remove {
  margin-top: 3px;
  color: #b1b1b1;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
md-special-insurance-picker .ui-select-bootstrap > .ui-select-choices,
md-special-insurance-picker .ui-select-bootstrap > .ui-select-no-choice {
  max-height: 400px;
}
md-special-insurance-picker .ui-select-choices.payer,
md-special-insurance-picker .ui-select-choices.plan {
  max-width: 200%;
  width: unset;
  min-width: 100%;
}
md-special-insurance-picker .input-row + .input-row {
  border-top: 1px solid #d0d0d0;
  padding-top: 10px;
  margin-top: 10px;
}
md-special-insurance-picker .helper-text {
  font-size: 12px;
  padding: 5px 0;
  color: #1da4f0;
  margin-bottom: 10px;
}
md-special-insurance-picker .number-input-subscriber {
  min-width: 140px !important;
  max-width: 100% !important;
  margin-right: 5px;
}
md-special-insurance-picker .relationship {
  width: 100%;
  padding: 0px !important;
}
md-special-insurance-picker md-zip-picker .form-group,
md-special-insurance-picker md-city-picker .form-group {
  margin-bottom: 0px !important;
}
md-special-insurance-picker .insurance-error {
  margin-bottom: 10px !important;
}
md-special-insurance-picker .comments {
  margin-bottom: 5px !important;
}
md-special-insurance-picker .group-number {
  margin-bottom: 5px !important;
}
md-special-insurance-picker .has-custom-error md-birthdate-picker input.md-form-control[type="text"],
md-special-insurance-picker .has-custom-error md-city-picker input.md-form-control[type="text"] {
  border-color: #da3549 !important;
}
md-special-insurance-picker .form-control-toolbar-group.has-error,
md-special-insurance-picker .form-control.has-error,
md-special-insurance-picker .div.has-error,
md-special-insurance-picker md-birthdate-picker {
  border-color: #da3549 !important;
}
md-address-picker {
  display: block;
}
md-address-picker .type-picker {
  min-width: 90% !important;
  max-width: 100% !important;
}
md-address-picker .type {
  min-width: 233px;
}
md-address-picker .address-row {
  margin-bottom: 20px;
}
md-address-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-address-picker .add-link i {
  margin-right: 5px;
}
md-race-picker {
  display: block;
}
md-race-picker .specify {
  margin-top: 5px;
}
md-race-picker .race-other {
  margin-top: 5px;
}
md-file-upload {
  display: block;
  height: inherit;
}
md-file-upload .embed-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: inherit;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-file-upload .modal-body .preview {
  margin-bottom: 20px;
  display: inline-block;
  margin-left: -12px;
}
md-referral-add-appointments {
  display: block;
}
md-referral-add-appointments .form-group.md-form-group.reason,
md-referral-add-appointments .form-group.md-form-group.provider,
md-referral-add-appointments .form-group.md-form-group.department {
  max-width: 350px;
  margin: auto;
  margin-bottom: 20px;
}
md-fax-attachments-tab {
  height: 100%;
}
md-fax-attachments-tab .md-tabpanel .md-tabpanel-tabs .md-tabpanel-tabs-tab.active:after {
  background-color: transparent;
}
md-fax-attachments-tab .md-tabpanel .md-tabpanel-content-tab md-pdf-preview {
  height: 100%;
}
md-fax-attachments-tab .md-tabpanel .md-tabpanel-content-tab.has-dropdown md-pdf-preview {
  height: calc(100% - 30px);
}
md-fax-attachments-tab .md-tabpanel rmd-toolbar-dropdown .md-dropdown-group .dropdown-toggle .dropdown-title {
  max-width: 340px;
}
md-fax-attachments-tab .md-tabpanel-tabs {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
}
md-fax-attachments-tab .md-tabpanel-tabs.received {
  display: none;
}
md-fax-attachments-tab .md-tabpanel-tabs.has-dropdown {
  overflow: visible;
  border-bottom: none;
}
md-fax-attachments-tab .md-tabpanel-tabs.has-dropdown .md-tabpanel-tabs-tab {
  padding-bottom: 0px;
}
md-fax-attachments-tab .md-tabpanel-tabs.has-dropdown .dropdown-toggle i {
  padding-top: 0px;
}
md-fax-attachments-tab .attachment-details,
md-fax-attachments-tab .attachment-preview {
  height: 100%;
}
md-fax-attachments-tab .attachment-preview .img-responsive {
  max-height: 100%;
}
md-fax-attachments-tab .rmd-failed-message {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0px;
}
.md-controller-referral-create #referral-progress-bar {
  margin-bottom: 20px;
}
.md-controller-referral-create .md-layout-stretch-wrap.no-pagination {
/*
            header: 50px (15 + 15px)
            main content padding: 30px (15 + 15px)
            section header: 70px: (60 height + 10 margin bottom
            progress bar: 122px (102 height + 20 margin bottom)
            section toolbar: 51px (41 + 10 margin bottom)
            pagination: 55px (35 height + 20 margin top)
        */
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-create .md-section-header .toolbar-create {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-controller-referral-create .md-section-header .toolbar-create .referral-reason-box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.md-controller-referral-create .md-section-header .toolbar-create .md-form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
.md-controller-referral-create .md-section-header .send-button-normal.loading {
  cursor: wait;
}
.md-controller-referral-create .md-section-header .send-button .dropdown-menu {
  min-width: 100%;
  background-color: #1da4f0;
}
.md-controller-referral-create .md-section-header .send-button .dropdown-menu a {
  color: #fff;
  text-align: right;
  padding: 3px 10px;
}
.md-controller-referral-create .md-section-header .send-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
.md-controller-referral-create .md-section-header .referral-reason-box {
  clear: none;
  display: inline-block;
  overflow: auto;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin-right: 20px;
  padding: 0px 10px;
  height: 74px;
}
.md-controller-referral-create .md-section-header .referral-reason-box p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #000;
}
.md-controller-referral-create .md-toolbar {
  width: 100%;
}
.md-controller-referral-create .md-toolbar form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-controller-referral-create .md-toolbar form .left-toolbar {
  margin-right: auto;
  padding-left: 316px;
}
.md-controller-referral-create .md-toolbar form .left-toolbar .drop-down-toolbar {
  font-size: 14px;
}
.md-controller-referral-create .md-toolbar form .left-toolbar .drop-down-toolbar .dropdown .dropdown-toggle {
  font-weight: 400;
}
.md-controller-referral-create .md-toolbar form .form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 10px;
}
.md-controller-referral-create .md-toolbar form .form-group.button {
  margin-right: 0px;
}
.md-controller-referral-create .md-toolbar form .form-group.switch {
  white-space: nowrap;
  margin-right: 0px;
}
.md-controller-referral-create .md-toolbar form .md-form-group .bootstrap-switch + .control-label {
  font-weight: 600;
  margin-left: 5px;
}
.md-controller-referral-create .md-toolbar form md-toolbar-specialty-picker {
  min-width: unset !important;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
.md-controller-referral-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle {
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.md-controller-referral-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle .dropdown-title {
  max-width: 125px;
}
.md-controller-referral-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle i {
  padding-top: 3px;
}
.md-controller-referral-create .md-toolbar form rmd-search-expand.low-res {
  display: none;
}
@media (max-width: 1440px) {
  .md-controller-referral-create .md-toolbar form rmd-search-expand.low-res {
    display: block;
  }
  .md-controller-referral-create .md-toolbar form rmd-search-expand.high-res {
    display: none;
  }
}
.md-controller-referral-create .md-toolbar form rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 125px;
}
.md-controller-referral-create .md-toolbar form md-toolbar-condition-picker .md-dropdown-menu.search {
  max-width: 500px;
}
.md-controller-referral-create .md-toolbar form md-toolbar-procedure-picker .md-dropdown-menu.search {
  max-width: 500px;
}
.md-controller-referral-create .md-toolbar form md-toolbar-city-picker .md-dropdown-menu {
  min-width: 250px;
  max-width: 445em;
}
.md-controller-referral-create .md-toolbar form md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  max-width: fit-content;
}
.md-controller-referral-create .priority-picker-wrap .control-label {
  display: inline;
}
.md-controller-referral-create .priority-picker-wrap md-referral-priority-picker {
  display: inline;
}
.md-controller-referral-create .sidebar-panel:last-child:not(:has(.keep-panel-margin)) .panel-group {
  margin-bottom: 0px;
}
md-panel {
  display: block;
}
md-panel .md-pane {
  padding: 12px 20px;
}
md-panel .md-pane.collapsed .card .detail-main {
  border-bottom: none;
}
md-panel .panel-title .accordion-toggle:focus {
  outline: none;
}
md-panel .detail-panel-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-panel .detail-panel-header .md-text,
md-panel .detail-panel-header .text1,
md-panel .detail-panel-header .text2,
md-panel .detail-panel-header .text3 {
  clear: none;
  display: inline-block;
  font-size: 12px;
}
md-panel .detail-panel-header .md-text.right,
md-panel .detail-panel-header .text1.right,
md-panel .detail-panel-header .text2.right,
md-panel .detail-panel-header .text3.right {
  font-weight: 400;
  position: absolute;
  right: 0;
}
md-panel .detail-panel-header rmd-system-id {
  position: absolute;
  right: 0;
}
md-panel .panel-group {
  margin-bottom: 10px;
}
md-panel .panel-heading {
  border: none;
  padding: 0;
}
md-panel .panel-heading .header-wrap {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px dashed #d1d1d1;
}
md-panel .panel-heading .header-wrap:focus {
  outline: none;
}
md-panel .panel-heading .header-wrap .header-title {
  clear: none;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  color: #000;
  line-height: 20px;
  padding-left: 20px;
  width: 100%;
}
md-panel .panel-heading .header-wrap .header-icon {
  display: block;
  position: absolute;
  top: 0px;
  float: left;
}
md-panel .panel-heading .header-wrap .header-icon i {
  font-size: 12px;
  color: #1da4f0;
  margin-right: 5px;
}
md-panel .panel-heading .header-wrap .header-icon .fa-beat {
  -webkit-animation: fa-beat 2s ease infinite;
  -moz-animation: fa-beat 2s ease infinite;
  -o-animation: fa-beat 2s ease infinite;
  -ms-animation: fa-beat 2s ease infinite;
  animation: fa-beat 2s ease infinite;
}
@-moz-keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
md-panel .panel-heading .header-preview {
  padding-top: 8px;
}
md-panel .panel-body {
  padding: 0px;
}
md-panel .pointer-action {
  cursor: pointer;
}
rmd-search-expand {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  position: relative;
  min-width: 200px;
  max-width: 500px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
rmd-search-expand #search-input {
  width: 100%;
  padding-left: 35px;
}
rmd-search-expand .icon {
  color: #b1b1b1;
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 40px;
  width: 40px;
  text-align: center;
}
rmd-search-expand .pulse-search {
  -webkit-animation: 2s pulse-search infinite;
  -webkit-animation: 2s pulse-search infinite;
  -moz-animation: 2s pulse-search infinite;
  -o-animation: 2s pulse-search infinite;
  -ms-animation: 2s pulse-search infinite;
  animation: 2s pulse-search infinite;
}
@-webkit-keyframes pulse-search {
  50% {
    border-color: #1da4f0;
    border-width: 3px;
  }
}
@-moz-keyframes pulse-search {
  50% {
    border-color: #1da4f0;
    border-width: 3px;
  }
}
@-webkit-keyframes pulse-search {
  50% {
    border-color: #1da4f0;
    border-width: 3px;
  }
}
@-o-keyframes pulse-search {
  50% {
    border-color: #1da4f0;
    border-width: 3px;
  }
}
@keyframes pulse-search {
  50% {
    border-color: #1da4f0;
    border-width: 3px;
  }
}
md-toolbar-procedure-picker {
  clear: none;
  display: inline-block;
}
md-referral-step-patient {
  display: block;
}
md-referral-step-patient .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-referral-step-patient .selected-column {
  text-align: right;
}
body.has-sticky-footer md-referral-step-patient .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px - 75px);
}
body rmd-list rmd-list-loading-icon.center {
  position: fixed;
  bottom: calc((100vh - 50px - 30px - 70px - 122px - 51px - 55px) / 2);
  right: calc((100vw - 300px) / 2);
  z-index: 10;
}
md-referral-step-provider {
  display: block;
}
md-referral-step-provider tr.rmd-list-item.provider-row#auto-scroll-navigation-target {
  scroll-margin-top: 51.5px;
}
md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-referral-step-provider .md-layout-stretch-wrap .md-layout-stretch-content.scrollable.bordered.padded {
  padding: 20px;
}
md-referral-step-provider rmd-list .empty-message {
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
}
md-referral-step-provider rmd-list .md-form-group .control-label {
  font-weight: 400;
}
md-referral-step-provider rmd-list .search-help .user-help {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-referral-step-provider rmd-list .search-help .user-help .instruction-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  width: 100%;
}
md-referral-step-provider rmd-list .search-help .user-help .instructions .text1 {
  font-size: 16px;
}
md-referral-step-provider rmd-list .search-help .widget-help {
  margin-top: 10px;
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider rmd-list .search-help .widget-help .npi-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider rmd-list .search-help .widget-help .npi-group .md-btn.secondary {
  height: 34px;
  line-height: 34px;
  margin-left: 10px;
  margin-top: 25px;
}
md-referral-step-provider rmd-list .search-help .widget-help .form-group {
  margin-bottom: 15px;
}
md-referral-step-provider rmd-list .search-help .widget-help .form-group .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-step-provider rmd-list .search-help .widget-help .text2 {
  margin-bottom: 10px;
}
md-referral-step-provider rmd-list .search-help .widget-help .role-picker {
  text-align: center;
}
md-referral-step-provider rmd-list .search-help .widget-help .role-picker label {
  font-size: 16px;
  margin-bottom: 0px;
}
@media (max-width: 1440px) {
  md-referral-step-provider rmd-list .rmd-list-content.provider-referring .column-name {
    max-width: 450px;
    width: 450px;
  }
}
md-referral-step-provider .provider-row {
  cursor: pointer;
}
md-referral-step-provider .provider-row .provider-group-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-step-provider .provider-row .name-container {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  max-width: 100%;
}
md-referral-step-provider .provider-row .group-name {
  max-width: calc(100% - 50px - 20px);
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  -ms-box-flex: 2;
  box-flex: 2;
  -webkit-flex-grow: 2;
  flex-grow: 2;
}
md-referral-step-provider .provider-row .group-name .text1,
md-referral-step-provider .provider-row .group-name .text2 {
  max-width: fit-content;
}
md-referral-step-provider .provider-row .provider-name {
  cursor: pointer;
  color: #1da4f0;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-referral-step-provider .provider-row .provider-name:hover,
md-referral-step-provider .provider-row .provider-name:focus {
  color: #4ab6f3;
}
md-referral-step-provider .provider-row .picker-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-referral-step-provider .provider-row .picker-wrap md-department-picker {
  width: 100%;
  max-width: 300px;
}
md-referral-step-provider .provider-row .favorite-icon {
  margin-left: 7px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-step-provider .favorite-grey {
  color: #d0d0d0 !important;
}
md-referral-step-provider .favorite-red {
  color: #e36776 !important;
}
md-referral-step-provider .rmd-list-item .favorite-grey.favorite-icon {
  visibility: hidden;
}
md-referral-step-provider .rmd-list-item:hover .favorite-grey.favorite-icon {
  visibility: visible;
}
.custom-tooltip {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
body.has-sticky-footer md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px - 75px);
}
md-referral-step-provider-location {
  display: block;
}
md-referral-step-provider-location tr.rmd-list-item.provider-row#auto-scroll-navigation-target {
  scroll-margin-top: 51.5px;
}
md-referral-step-provider-location .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-referral-step-provider-location .md-layout-stretch-wrap .md-layout-stretch-content.scrollable.bordered.padded {
  padding: 20px;
}
md-referral-step-provider-location rmd-list .empty-message {
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
}
md-referral-step-provider-location rmd-list .md-form-group .control-label {
  font-weight: 400;
}
md-referral-step-provider-location rmd-list .search-help .user-help {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-referral-step-provider-location rmd-list .search-help .user-help .instruction-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  width: 100%;
}
md-referral-step-provider-location rmd-list .search-help .user-help .instructions .text1 {
  font-size: 16px;
}
md-referral-step-provider-location rmd-list .search-help .widget-help {
  margin-top: 10px;
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .npi-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .npi-group .md-btn.secondary {
  height: 34px;
  line-height: 34px;
  margin-left: 10px;
  margin-top: 25px;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .form-group {
  margin-bottom: 15px;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .form-group .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .text2 {
  margin-bottom: 10px;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .role-picker {
  text-align: center;
}
md-referral-step-provider-location rmd-list .search-help .widget-help .role-picker label {
  font-size: 16px;
  margin-bottom: 0px;
}
@media (max-width: 1440px) {
  md-referral-step-provider-location rmd-list .rmd-list-content.provider-referring .column-name {
    max-width: 450px;
    width: 450px;
  }
}
md-referral-step-provider-location rmd-list rmd-list-loading-icon {
  position: fixed;
  bottom: calc((100vh - 50px - 30px - 70px - 122px - 51px - 55px) / 2);
  right: calc((100vw - 300px) / 2);
  z-index: 10;
}
md-referral-step-provider-location .provider-row {
  cursor: pointer;
}
md-referral-step-provider-location .provider-row .provider-group-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-step-provider-location .provider-row .name-container {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  max-width: 100%;
}
md-referral-step-provider-location .provider-row .group-name {
  max-width: calc(100% - 50px - 20px);
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  -ms-box-flex: 2;
  box-flex: 2;
  -webkit-flex-grow: 2;
  flex-grow: 2;
}
md-referral-step-provider-location .provider-row .group-name .text1,
md-referral-step-provider-location .provider-row .group-name .text2 {
  max-width: fit-content;
}
md-referral-step-provider-location .provider-row .provider-name {
  cursor: pointer;
  color: #1da4f0;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-referral-step-provider-location .provider-row .provider-name:hover,
md-referral-step-provider-location .provider-row .provider-name:focus {
  color: #4ab6f3;
}
md-referral-step-provider-location .provider-row .picker-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-referral-step-provider-location .provider-row .picker-wrap md-department-picker {
  width: 100%;
  max-width: 300px;
}
md-referral-step-provider-location .provider-row .favorite-icon {
  margin-left: 7px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-step-provider-location .favorite-grey {
  color: #d0d0d0 !important;
}
md-referral-step-provider-location .favorite-red {
  color: #e36776 !important;
}
md-referral-step-provider-location .rmd-list-item .favorite-grey.favorite-icon {
  visibility: hidden;
}
md-referral-step-provider-location .rmd-list-item:hover .favorite-grey.favorite-icon {
  visibility: visible;
}
.custom-tooltip {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
body.has-sticky-footer md-referral-step-provider-location .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px - 75px);
}
md-referral-step-details .question-group {
  margin-bottom: 0px;
}
md-referral-step-details .question-group .question-content.header {
  padding-top: 0px;
  padding-left: 0px;
}
md-referral-step-details .question-group .question-content .section-text {
  color: #000;
}
md-referral-step-details .question-group .selector-row .checkbox-wrapper rmd-checkbox {
  clear: none;
  display: inline-block;
}
md-referral-step-details .question-group .selector-row .checkbox-wrapper.select-all {
  margin-left: 7px;
}
md-referral-step-details md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-referral-step-details md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-referral-step-details .md-dropzone-file-preview {
  display: none;
}
md-referral-step-details .media-body {
  vertical-align: middle;
}
md-referral-step-details .attachment-frame {
  padding: 1px;
}
md-referral-step-details .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-referral-step-details .attachments {
  margin-bottom: 10px;
}
md-referral-step-details .section-text {
  font-weight: 400;
  font-size: 18px;
  color: $mdBlack;
}
md-referral-step-details .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-referral-step-details .action-link i {
  margin-right: 5px;
}
md-referral-step-details .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-referral-step-details .file-loaders md-dropzone {
  margin-left: 15px;
}
md-referral-step-details .file-loader-icon {
  font-weight: bold;
  font-size: 16px;
}
md-referral-step-review {
  display: block;
}
md-referral-step-review .title {
  font-size: 20px;
  color: #000;
}
md-referral-step-review md-message-attachment-preview .attachment-frame {
  padding: 1px;
}
md-referral-step-review md-message-attachment-preview .attachment-frame .toolbar {
  bottom: 16px;
}
md-referral-step-review .attachments-pane {
  margin-top: 20px;
}
md-referral-step-review .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-referral-step-review .media-body {
  vertical-align: middle;
}
md-referral-step-review .captcha-box-wrap {
  display: block;
  position: relative;
}
md-referral-step-review .captcha-box-wrap .captcha-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}
md-referral-step-review .form-answers-content.has-captcha md-referral-form-answers .md-form-question:first-child .question-title {
  max-width: 50%;
}
md-referral-step-review .title-switch-container {
  width: 500px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-referral-step-review .title-switch-container .switch-container {
  margin-right: -10px;
  margin-top: -5px;
}
.md-controller-referral-widget.has-tristar-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-tristar-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-tristar-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-motion-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 211px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-motion-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 211px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-motion-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 211px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-gateway-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 106px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-gateway-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 106px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-gateway-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 106px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-front-range-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 120px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-front-range-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 120px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-front-range-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 120px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-yosemite-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 200px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-yosemite-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-yosemite-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-mpg-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-mpg-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-mpg-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 100px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-affiliated-derm-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 107px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-affiliated-derm-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 107px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-affiliated-derm-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 107px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-demo-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 153px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-demo-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 153px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-demo-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 153px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-srm-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 105.42px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-srm-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 105.42px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-srm-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 105.42px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-sc-house-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 96px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-sc-house-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 96px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-sc-house-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 96px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-covenant-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 83px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-covenant-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 83px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-covenant-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 83px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-quince-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 140px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-quince-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 140px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-quince-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 140px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-plano-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 189px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-plano-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 189px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-plano-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 189px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-alaska-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 178px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-alaska-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 178px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-alaska-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 178px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-sylvan-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 75px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-sylvan-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 75px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-sylvan-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 75px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-vital-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 136px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-vital-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 136px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-vital-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 136px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget.has-life-skills-header .md-layout-stretch-wrap.no-pagination {
  height: calc(100vh - 60px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-life-skills-header md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 60px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget.has-life-skills-header md-referral-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 60px - 30px - 70px - 122px - 51px - 55px);
}
.md-controller-referral-widget .pr0 {
  padding-right: 0px;
  padding-left: 15px;
}
.md-controller-referral-widget .helper-text {
  font-size: 16px;
  font-weight: normal;
  color: #da3549;
  margin-right: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 40px;
}
.md-controller-referral-widget md-phone-picker .md-dropdown-menu,
.md-controller-referral-widget md-phone-picker .dropdown {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.md-controller-referral-widget md-insurance-picker .dropdown-menu {
  min-width: 575px;
}
.md-controller-referral-widget #referral-progress-bar {
  margin-bottom: 20px;
}
.md-controller-referral-widget .md-layout-stretch-wrap.no-pagination {
/*
            default header: 50px (15 + 15px)
            motion-header: 211px
            main content padding: 30px (15 + 15px)
            section header: 70px: (60 height + 10 margin bottom
            progress bar: 122px (102 height + 20 margin bottom)
            section toolbar: 51px (41 + 10 margin bottom)
            pagination: 55px (35 height + 20 margin top)
        */
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px);
}
.md-controller-referral-widget .md-toolbar {
  width: 100%;
}
.md-controller-referral-widget .md-toolbar form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-controller-referral-widget .md-toolbar form .form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
.md-controller-referral-widget .md-toolbar form .form-group.switch {
  white-space: nowrap;
}
.md-controller-referral-widget .md-toolbar form md-toolbar-city-picker .md-dropdown-menu {
  min-width: 250px;
  max-width: 445em;
}
.md-controller-referral-widget .md-toolbar form md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  max-width: fit-content;
}
.md-controller-referral-widget .md-toolbar form rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 150px;
}
.md-controller-referral-widget .md-toolbar form md-toolbar-condition-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
.md-controller-referral-widget .md-toolbar form md-toolbar-procedure-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
.md-controller-referral-widget .priority-picker-wrap .control-label {
  display: inline;
}
.md-controller-referral-widget .priority-picker-wrap md-referral-priority-picker {
  display: inline;
}
.md-controller-referral-widget .sidebar-panel:last-child .panel-group {
  margin-bottom: 0px;
}
.md-controller-referral-widget md-referral-step-details .file-loaders md-dropzone {
  margin-left: 0px;
}
.md-controller-referral-widget md-referral-step-review .main-pane {
  min-height: 120px;
}
.md-controller-referral-widget .ng-submitted md-referral-step-review .captcha-box-wrap.has-error .captcha-box iframe {
  border: 1px solid #da3549;
  border-radius: 3px;
}
md-referral-step-patient-widget {
  display: block;
}
md-referral-step-patient-widget .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px);
}
md-referral-step-patient-widget .md-layout-stretch-wrap .md-layout-stretch-content {
  padding: 15px 20px;
}
md-referral-step-patient-widget md-patient-form md-gender-picker .ui-select-bootstrap .ui-select-choices {
  width: calc(100% - 15px);
}
md-referral-step-patient-widget md-patient-form md-gender-picker .specify {
  padding-right: 0px !important;
}
md-referral-step-patient-widget md-patient-form .dropup .dropdown-menu {
  margin-bottom: 40px;
}
md-referral-step-patient-widget md-patient-form md-insurance-picker md-filter-chips .md-chips md-chip {
  margin-bottom: 0px;
  margin-top: 0px;
}
md-referral-step-patient-widget md-patient-form .md-form-group {
  margin-bottom: 20px;
}
md-referral-step-patient-widget md-patient-form .group-phones md-phone-picker .dropdown-menu,
md-referral-step-patient-widget md-patient-form .group-mrns md-phone-picker .dropdown-menu {
  margin-left: 15px !important;
  width: calc(50% - 30px) !important;
}
md-referral-step-patient-widget md-patient-form .group-phones md-phone-picker .type-picker,
md-referral-step-patient-widget md-patient-form .group-mrns md-phone-picker .type-picker {
  width: calc(50% - 15px) !important;
}
md-referral-step-patient-widget.gray-background-sidebar .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background-color: #fff;
}
md-referral-widget-header {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
md-referral-widget-header .md-header nav.navbar.standard-header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #1da4f0;
  padding: 10px 0;
}
md-referral-widget-header .md-header.has-motion-header {
  padding: 0;
  background-color: #f2f2f2;
  height: 211px;
}
md-referral-widget-header .md-header.has-srm-header {
  padding: 0;
  background-color: #fff;
  height: 105.42px;
}
md-referral-widget-header .md-header.has-tristar-header {
  padding: 0;
  background-color: #fff;
  height: 100px;
}
md-referral-widget-header .md-header.has-sc-house-header {
  padding: 0;
  background-color: #fff;
  height: 96px;
}
md-referral-widget-header .md-header.has-covenant-header {
  padding: 0;
  background-color: #fff;
  height: 83px;
}
md-referral-widget-header .md-header.has-gateway-header {
  padding: 0;
  background-color: #fff;
  height: 106px;
}
md-referral-widget-header .md-header.has-front-range-header {
  padding: 0;
  background-color: #fff;
  height: 120px;
}
md-referral-widget-header .md-header.has-yosemite-header {
  padding: 0;
  background-color: #fff;
  height: 200px;
}
md-referral-widget-header .md-header.has-mpg-header {
  padding: 0;
  background-color: #fff;
  height: 100px;
}
md-referral-widget-header .md-header.has-affiliated-derm-header {
  padding: 0;
  background-color: #fff;
  height: 107px;
}
md-referral-widget-header .md-header.has-demo-header {
  padding: 0;
  background-color: #fff;
  height: 153px;
}
md-referral-widget-header .md-header.has-quince-header {
  padding: 0;
  background-color: #fff;
  height: 140px;
}
md-referral-widget-header .md-header.has-plano-header {
  padding: 0;
  background-color: #fff;
  height: 189px;
}
md-referral-widget-header .md-header.has-alaska-header {
  padding: 0;
  background-color: #fff;
  height: 178px;
}
md-referral-widget-header .md-header.has-sylvan-header {
  padding: 0;
  background-color: #fff;
  height: 75px;
}
md-referral-widget-header .md-header.has-vital-header {
  padding: 0;
  background-color: #fff;
  height: 136px;
}
md-referral-widget-header .md-header.has-life-skills-header {
  padding: 0;
  background-color: #fff;
  height: 60px;
}
md-referral-widget-header .md-header .navbar {
  min-height: 0px;
  margin-bottom: 0px;
  border: none;
}
md-referral-widget-header .md-header .navbar-brand {
  padding: 0px;
  padding-left: 15px;
  height: auto;
  margin-right: 15px;
}
md-referral-widget-header .md-header .navbar-brand img {
  width: 100%;
  max-width: 130px;
  max-height: 30px;
}
md-referral-widget-header .md-header .brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 30px;
}
@media (max-width: 767px) {
  md-referral-widget-header .md-header {
    height: 80px;
    background-color: #1da4f0;
    padding-top: 15px;
  }
  md-referral-widget-header .md-header .brand-name {
    font-size: 20px;
    line-height: 30px;
  }
  md-referral-widget-header .md-header .navbar-brand {
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    padding-left: 0px !important;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
  }
}
.md-controller-referral-widget-landing {
  display: block;
}
.md-controller-referral-widget-landing .window-header.has-whitelabel {
  height: 48px;
}
.md-controller-referral-widget-landing .window-header.has-whitelabel md-logo {
  display: none;
}
.md-controller-referral-widget-landing .window-text-no-margin {
  margin-top: -5xpx;
}
.md-controller-referral-widget-landing .send-button {
  margin-bottom: 30px !important;
}
.md-controller-referral-widget-landing .no-padding {
  padding-right: 0px;
}
.md-controller-referral-widget-landing .content-section {
  margin-bottom: 10px;
}
.md-controller-referral-widget-landing .content-section:last-child {
  margin-bottom: 0px;
}
.md-controller-referral-widget-landing .content-title h1,
.md-controller-referral-widget-landing .content-title h2 {
  text-align: center;
}
.md-controller-referral-widget-landing .content-title h2 {
  color: #666 !important;
}
.md-controller-referral-widget-landing .organization-name {
  text-align: center;
}
.md-controller-referral-widget-landing .organization-name h4 {
  font-weight: 600;
  color: #000;
}
.md-controller-referral-widget-landing .organization-logo {
  margin-top: 20px;
  margin-bottom: 30px;
}
.md-controller-referral-widget-landing .organization-logo .img-responsive {
  max-height: 160px;
  max-width: 75%;
}
.md-controller-referral-widget-landing .footnote {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px !important;
}
.md-controller-consult-manager-list .requested-dates {
  color: #f00;
}
.md-controller-consult-manager-list .override-button-holder {
  position: absolute;
  right: 55px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  pointer: cursor;
}
.md-controller-consult-manager-list .override-button-holder .icon {
  width: 16px;
}
.md-controller-consult-manager-list .override-button-holder .icon i.fa.fa-ban.active {
  color: #da3549;
}
.md-controller-consult-manager-list .text2 {
  font-size: 13px;
}
.md-controller-consult-manager-list .mr-0 {
  margin-right: 0px !important;
}
.md-controller-consult-manager-list .md-consult-filters-state {
  margin-top: 0px;
}
.md-controller-consult-manager-list .md-consult-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-controller-consult-manager-list .md-consult-filters-state .item .text {
  overflow: hidden;
}
.md-controller-consult-manager-list .md-consult-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-consult-manager-list input.md-form-control[type="text"][readonly] {
  background: unset;
  min-width: 205px;
  cursor: pointer;
}
.md-controller-consult-manager-list .md-layout-stretch-wrap .md-layout-stretch-content {
  overflow: auto;
}
.md-controller-consult-manager-list .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  height: inherit;
}
.md-controller-consult-manager-list .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
}
.md-controller-consult-manager-list .md-toolbar .md-dropdown-menu {
  max-width: 400px;
}
.md-controller-consult-manager-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-controller-consult-manager-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-controller-consult-manager-list .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-controller-consult-manager-list .md-toolbar .md-input-expand:focus {
  min-width: 475px;
}
.md-controller-consult-manager-list .md-toolbar.right .group {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 15px;
}
.md-controller-consult-manager-list .md-toolbar.right .md-form-group .bootstrap-switch {
  margin-bottom: 3px;
}
.md-controller-consult-manager-list .md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 10px;
  margin-bottom: 3px;
  font-weight: 600;
}
.md-controller-consult-manager-list .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon {
  margin-right: 20px;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-controller-consult-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-controller-consult-manager-list .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-controller-consult-manager-list .md-toolbar .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
.md-controller-consult-manager-list .md-toolbar .create-button .dropdown-menu {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  background-color: #1da4f0;
}
.md-controller-consult-manager-list .md-toolbar .create-button .dropdown-menu a {
  color: #fff;
  padding: 3px 10px;
}
.md-controller-consult-manager-list .md-toolbar .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-controller-consult-manager-list .md-toolbar-content .md-toolbar md-search-picker {
  width: unset;
}
.md-controller-consult-manager-list .md-toolbar-content .md-toolbar .form-group {
  margin-right: 20px;
}
.md-controller-consult-manager-list .md-toolbar-content .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-consult-manager-list .consult-row {
  cursor: pointer;
}
.md-controller-consult-manager-list .consult-row.urgent .column {
  background-color: #fff2f2;
}
.md-controller-consult-manager-list .consult-row.open-consult .column {
  background-color: #fff2f2;
}
.md-controller-consult-manager-list .consult-row .count {
  min-width: fit-content;
  border-radius: 50%;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 2px;
  position: absolute;
  padding: 0 4px;
}
.md-controller-consult-manager-list .consult-row .column-notification {
  max-width: 50px;
  min-width: 50px;
  width: 50px;
  padding-left: 15px;
}
.md-controller-consult-manager-list .consult-row .column-notification .notification-icon {
  display: block;
  position: relative;
  width: 20px;
}
.md-controller-consult-manager-list .consult-row .column-notification .notification-icon .fa {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  font-size: 20px;
  color: #b1b1b1;
}
.md-controller-consult-manager-list .consult-row .column-notification .notification-icon .count {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 14px;
  height: 13px;
  width: 16px;
  border-radius: 8px;
}
.md-controller-consult-manager-list .consult-row .appointment-status {
  clear: none;
  display: inline-block;
}
.md-controller-consult-manager-list .consult-row .appointment-status i {
  margin-left: 5px;
  color: #70c060;
}
.md-controller-consult-manager-list .rmd-list-content .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-controller-consult-manager-list .rmd-list-content .last-activity,
.md-controller-consult-manager-list .rmd-list-content .payer {
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-controller-consult-manager-list .rmd-list-content .column .reason-column {
  max-width: 350px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: max-content;
}
.md-controller-consult-manager-list .rmd-list-content .column .consult-action {
  margin-left: 20px;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container md-consult-status-picker {
  margin-top: -7px;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container md-consult-status-picker .dropdown {
  margin-left: 15px;
}
.md-controller-consult-manager-list .rmd-list-content .batch-operator-container md-consult-status-picker .status-wrap {
  display: none;
}
.md-controller-consult-manager-list .md-section-toolbar .page-setting-icon {
  font-size: 15px;
  margin-left: 4px;
}
.md-controller-consult-manager-list md-toolbar-specialty-picker .md-dropdown-menu.search {
  left: -20px !important;
}
.md-controller-consult-manager-list .rmd-list-item.md-consult-open md-consult-status-picker md-avatar img {
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
}
md-consult-status-list {
  display: block;
}
md-consult-status-list .md-sidebar-filter-list ul.nested-filter-list li {
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.md-sidebar-filter-list .truncate {
  display: inherit !important;
  padding-right: 5px;
  max-width: 225px;
}
.md-sidebar-filter-list li a.active .quantity {
  margin-right: -2px;
}
.md-sidebar-filter-list li .md-text.section-header {
  text-transform: uppercase;
}
.md-sidebar-filter-list.appointments {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dfdfdf;
}
md-consult-report-date {
  display: block;
}
md-consult-report-date .modal-body .form-group.appointment-section {
  margin-bottom: 30px;
}
md-consult-report-date .modal-body .form-group.has-error md-date,
md-consult-report-date .modal-body .form-group.has-error md-time {
  color: #e36776;
}
md-consult-report-date .modal-body .status-picker-wrap .status {
  margin-left: auto;
  margin-right: auto;
}
md-consult-report-date .modal-body .status-picker-wrap .md-consult-status-picker-menu.dropdown-menu {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
md-consult-report-date .file-loaders {
  font-weight: 600;
}
md-consult-report-date .file-loaders .action-link {
  cursor: pointer;
  line-height: 20px;
  color: #1da4f0;
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
md-consult-report-date .file-loaders i {
  margin-right: 5px;
}
md-consult-report-date .file-loaders .md-dropzone {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 12px;
  text-transform: uppercase;
}
md-consult-report-date .file-loaders .dz-preview {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-consult-report-date .file-loaders .dz-preview .dz-details {
  margin: auto;
}
md-consult-report-date .file-loaders .md-dropzone-file-preview .dz-icon {
  margin-right: 0;
}
.vertical-scroll-report-date-modal .modal-dialog {
  height: 85%;
}
.vertical-scroll-report-date-modal .modal-dialog .md-modal .modal-body {
  height: calc(100vh - 40px - 81px - 81px - 80px);
  overflow: scroll;
  overflow-x: hidden;
}
md-consult-form-editor {
  display: block;
}
md-consult-form-editor .md-modal .modal-body .content-section {
  height: calc(100vh - 40px - 81px - 81px);
  overflow: scroll;
  overflow-x: hidden;
}
md-consult-form-editor .control-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-consult-form-editor .control-row .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-consult-form-editor .control-row .view-files {
  margin-right: 15px;
}
md-consult-form-editor .control-row .form-dropdown {
  margin-right: 15px;
}
md-consult-form-editor .control-row .form-dropdown .dropdown {
  font-size: 16px;
}
md-consult-form-editor .control-row .dropdown-menu.dropdown-menu-right.md-dropdown-menu.search {
  left: 15%;
  overflow: scroll;
  max-height: 300px;
}
md-consult-form-editor .control-row .close-button {
  -webkit-align-self: baseline;
  align-self: baseline;
  -ms-flex-item-align: baseline;
}
md-consult-form-editor .md-dropzone-file-preview {
  display: none;
}
md-consult-form-editor .attachment-frame {
  padding: 1px;
}
md-consult-form-editor .attachments-pane {
  margin-top: 20px;
}
md-consult-form-editor .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-consult-form-editor .attachments {
  margin-bottom: 10px;
}
md-consult-form .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 7px;
}
md-consult-form .question-pane.has-question-error {
  border-color: #da3549;
}
md-consult-form .question-group {
  margin-bottom: 0px !important;
}
md-consult-form .question-group.question-section-header,
md-consult-form .question-group.question-section-text {
  margin-bottom: 0px;
}
md-consult-form .question-group.question-datetime .md-form-group {
  margin-bottom: 0px;
}
md-consult-form .question-group.question-datetime .md-form-group + .md-form-group {
  margin-left: 10px;
}
md-consult-form .question-group.question-datetime .md-form-group rmd-date-picker,
md-consult-form .question-group.question-datetime .md-form-group rmd-time-picker {
  width: 150px;
}
md-consult-form .question-group .question-content {
  position: relative;
}
md-consult-form .question-group .question-content.header {
  padding-top: 0px;
  padding-left: 0px;
}
md-consult-form .question-group .question-content h4,
md-consult-form .question-group .question-content .control-label,
md-consult-form .question-group .question-content .title,
md-consult-form .question-group .question-content .required,
md-consult-form .question-group .question-content .help-text,
md-consult-form .question-group .question-content .section-text {
  color: #000;
}
md-consult-form .question-group .question-content .control-label,
md-consult-form .question-group .question-content .help-text {
  line-height: 24px;
}
md-consult-form .question-group .question-content .control-label {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  width: 100%;
}
md-consult-form .question-group .question-content .control-label .required {
  clear: none;
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
  text-transform: none;
  font-style: italic;
}
md-consult-form .question-group .question-content .control-label .help-text {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #999;
}
md-consult-form .question-group .question-content .form-control {
  height: unset;
}
md-consult-form .question-group .question-content .form-control.input-small {
  max-width: 200px;
  display: inline-block;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 24px;
  line-height: 24px;
}
md-consult-form .question-group .question-content .scale-option {
  clear: none;
  display: inline-block;
}
md-consult-form .question-group .question-content .scale-option .scale-wrap {
  text-align: center;
  margin-right: 10px;
}
md-consult-form .question-group .question-content .scale-option .scale-label {
  font-size: 14px;
}
md-consult-form .question-group .question-content .scale-option .radio-wrap {
  width: 100%;
}
md-consult-form .question-group .question-content .scale-option .radio-wrap rmd-radio {
  margin-left: auto;
  margin-right: auto;
}
md-consult-form .question-group .nested-question {
  padding-left: 20px;
  padding-bottom: 30px;
}
md-consult-form .question-group .nested-question.padding-right {
  padding-right: 10px;
}
md-consult-form .question-group .nested-question .question-group {
  margin-top: 10px;
}
md-consult-form .teeth-chart-container .nav-tabs li a {
  color: #555;
}
md-consult-form .teeth-chart-container .nav-tabs li.active a {
  color: initial;
}
md-consult-form .teeth-chart-container .tab-content {
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  border-top: none;
}
md-consult-form .attachments-pane .attachment {
  width: fit-content;
}
md-consult-form md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-consult-form md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-consult-form .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-consult-form .action-link i {
  margin-right: 5px;
}
md-consult-form .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-consult-form .file-loaders md-dropzone {
  margin-left: 15px;
}
md-consult-form .file-loader-icon {
  font-weight: bold;
  font-size: 16px;
}
md-consult-status-editor {
  display: block;
}
md-consult-status-editor .switch {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
md-consult-status-editor md-locations-list .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 120px + 55px + 45px + 21px + (81px)));
}
md-consult-status-editor md-locations-list.has-nested .md-layout-stretch-wrap {
  height: calc(100vh - ((81px) + 40px + 200px + 55px + 45px + 21px + (81px)));
}
md-consult-status-editor .toggle-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-consult-status-editor .toggle-wrapper .md-form-group {
  margin-bottom: 10px !important;
}
md-consult-status-editor .toggle-wrapper .switch {
  margin-right: 10px;
}
md-consult-status-editor .toggle-wrapper .switch:last-child {
  margin-right: 0px;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-left: 1px solid #e0e0e0;
  padding-left: 10px;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .control-label {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 0px;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-search,
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-match,
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-dropdown {
  min-width: 160px;
  width: 160px;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-toggle {
  padding: 6px 6px;
}
md-consult-status-editor .toggle-wrapper .switch.time-dropdown .ui-select-container .ui-select-choices-row-inner {
  padding: 5px 10px;
}
.md-consult-status-picker-menu.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.md-consult-status-picker-menu.dropdown-menu li a {
  display: block;
  padding: 5px 20px;
}
.md-consult-status-picker-menu.dropdown-menu ul.nested {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}
.md-consult-status-picker-menu.dropdown-menu ul.nested li {
  line-height: 15px;
  padding-bottom: 5px;
}
.md-consult-status-picker-menu.dropdown-menu ul.nested li a {
  color: #666;
  padding-right: 10px;
}
.md-consult-status-picker-menu.dropdown-menu ul.nested li a .md-text {
  font-size: 13px;
  width: 100%;
}
.md-consult-status-picker-menu.dropdown-menu ul.nested li a .nested-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 5px;
  color: #999;
}
md-consult-status-picker,
.md-consult-status-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  line-height: 20px;
}
md-consult-status-picker .bold,
.md-consult-status-picker .bold {
  font-weight: 600;
}
md-consult-status-picker .dropdown md-avatar,
.md-consult-status-picker .dropdown md-avatar {
  vertical-align: middle;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
md-consult-status-picker .dropdown .status-wrap,
.md-consult-status-picker .dropdown .status-wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0px;
}
md-consult-status-picker .dropdown .status-wrap .text2,
.md-consult-status-picker .dropdown .status-wrap .text2 {
  line-height: 18px;
}
md-consult-status-picker .dropdown .status-wrap .status,
.md-consult-status-picker .dropdown .status-wrap .status {
  display: block;
  white-space: nowrap;
  margin-bottom: 3px;
  width: min-content;
}
md-consult-status-picker .dropdown .status-wrap.archived .text1,
.md-consult-status-picker .dropdown .status-wrap.archived .text1 {
  color: #e36776;
  max-width: fit-content;
}
md-consult-status-picker .dropdown .dropdown-toggle,
.md-consult-status-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
  color: #1da4f0;
}
md-consult-status-picker .dropdown .dropdown-toggle.disabled,
.md-consult-status-picker .dropdown .dropdown-toggle.disabled {
  cursor: not-allowed;
}
md-consult-status-picker .dropdown .dropdown-toggle i,
.md-consult-status-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
}
md-consult-status-picker .dropdown .dropdown-toggle.archived,
.md-consult-status-picker .dropdown .dropdown-toggle.archived {
  color: #e36776;
}
md-consult-status-picker .dropdown .dropdown-toggle.archived i,
.md-consult-status-picker .dropdown .dropdown-toggle.archived i {
  color: #e36776;
}
.md-status-picker-tooltip {
  height: 44px !important;
}
.md-status-picker-tooltip br {
  margin: 0;
  height: 0px;
  line-height: 0px;
}
md-consult-patient-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-consult-provider-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
md-consult-provider-column md-avatar {
  clear: none;
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
}
md-consult-provider-column .content {
  max-width: 340px;
}
md-consult-provider-column .content .single-line {
  margin-top: 4px;
}
.md-controller-consult-details .no-padding-left {
  padding-left: 0px;
}
.md-controller-consult-details .no-padding-right {
  padding-right: 0px;
}
.md-controller-consult-details #consult-progress-bar {
  margin-bottom: 20px;
}
.md-controller-consult-details .export-button .dropdown-menu {
  background-color: #e9f6fd;
}
.md-controller-consult-details .export-button .dropdown-menu a {
  text-align: right;
  color: #1da4f0;
  padding: 3px 10px;
}
.md-controller-consult-details .export-button .dropdown-menu a:hover {
  background-color: #d3edfb;
}
.md-controller-consult-details .md-tabpanel-content-tab.tab-messages {
  margin-left: -20px;
  margin-right: -20px;
}
.md-controller-consult-details .md-tabpanel-tabs .badge {
  border-radius: 50%;
  width: 17px;
  height: 15px;
  position: relative;
  padding: 3px;
  font-size: 8px;
}
.md-controller-consult-details .md-tabpanel-tabs .badge.badge-size-1 {
  top: -4px;
  right: -3px;
}
.md-controller-consult-details .md-tabpanel-tabs .badge.badge-size-2 {
  top: -4px;
  right: -3px;
}
.md-controller-consult-details .md-tabpanel-tabs .badge.badge-size-3 {
  top: -4px;
  right: -3px;
}
.md-controller-consult-details .md-tabpanel-tabs .badge .badge-plus {
  font-size: 6px;
}
.md-controller-consult-details .md-tabpanel-tabs .files-tab .files-tab-button {
  clear: none;
  display: inline-block;
}
.md-controller-consult-details .md-tabpanel-tabs .files-tab .files-tab-button + .files-tab-button {
  margin-left: 10px;
}
.md-controller-consult-details .md-section-header .md-toolbar.right .form-group {
  margin-left: 15px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-consult-sidebar {
  display: block;
}
md-consult-sidebar .header-preview .detail-list {
  padding-top: 0px;
}
md-consult-sidebar .has-error md-date,
md-consult-sidebar .has-error md-time,
md-consult-sidebar .has-error .text2 {
  color: #da3549;
}
md-consult-sidebar .requested-dates {
  color: #f00;
}
md-consult-sidebar .appointment-status {
  clear: none;
  display: inline-block;
}
md-consult-sidebar .appointment-status i {
  margin-left: 5px;
  color: #70c060;
}
md-consult-sidebar .detail-list .view-form {
  font-weight: 600;
}
md-consult-sidebar .detail-list md-consult-priority-picker .md-text {
  font-weight: 600;
  text-transform: uppercase;
}
md-consult-sidebar .detail-list md-consult-priority-picker .md-text.md-link {
  font-size: 12px;
}
md-consult-sidebar .rmd-editable .edit-form .md-form-group {
  margin-bottom: 0px;
}
md-consult-sidebar .override-reason-picker {
  width: 100%;
}
md-consult-sidebar .override-reason-picker .md-dropdown-menu.search {
  max-width: 270px;
}
md-consult-sidebar rmd-member-chips.md-specialty-chip .md-chips {
  display: block !important;
}
md-consult-sidebar rmd-member-chips.md-specialty-chip .md-chips md-chip {
  max-width: 100% !important;
}
md-consult-sidebar rmd-member-chips.md-specialty-chip md-chips {
  display: block !important;
}
md-consult-alerts {
  display: block;
}
md-consult-alerts md-alert-banner .alert button.close {
  margin-top: 7px;
}
md-consult-files {
  display: block;
}
md-consult-files td.column.column-icon.toolbar-column {
  min-width: 150px;
  padding-right: 30px;
}
md-consult-files td.column.column-icon.toolbar-column .fa.fa-close {
  font-size: 22px;
  line-height: 18px;
}
md-consult-files .rmd-list-item .toolbar-column {
  width: auto !important;
  max-width: 150px !important;
}
md-consult-files .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-consult-files .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-consult-files .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-consult-files .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-consult-files .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-consult-files .file-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-consult-files .file-toolbar-icons .first-row,
md-consult-files .file-toolbar-icons .second-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
md-consult-files .file-toolbar-icons thead .checkbox {
  margin-left: 15px;
}
md-consult-files .file-filter-row {
  margin-bottom: 10px;
  background: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-consult-files .file-filter-row .filter-container {
  height: 33px;
  margin-left: 20px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 1 210px;
  -ms-flex: 0 1 210px;
  flex: 0 1 210px;
}
md-consult-files .file-filter-row .filter-container.search {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
}
md-consult-files .file-filter-row .filter-container ul.ui-select-choices {
  width: fit-content;
  min-width: 100%;
}
md-consult-files .file-filter-row .filter-container:first-child {
  margin-left: 0px;
}
md-consult-files .file-filter-row separated-date-picker input .date-picker {
  backgroud-color: #fff;
}
md-consult-files .file-filter-row #report-daterange-picker .form-control {
  background: #fff;
}
md-consult-priority-picker {
  display: block;
  width: 100%;
}
md-consult-priority-picker .dropdown .dropdown-toggle {
  overflow: visible !important;
}
md-consult-priority-picker .dropdown .urgency {
  width: unset !important;
  max-width: unset !important;
}
md-consult-priority-picker .dropdown .pulse {
  -webkit-animation: pulse 2s ease infinite;
  -moz-animation: pulse 2s ease infinite;
  -o-animation: pulse 2s ease infinite;
  -ms-animation: pulse 2s ease infinite;
  animation: pulse 2s ease infinite;
}
md-consult-priority-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
}
md-consult-priority-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
  vertical-align: middle;
}
md-consult-priority-picker .dropdown .dropdown-toggle.has-error i,
md-consult-priority-picker .dropdown .dropdown-toggle.has-error .md-link {
  color: #e36776;
}
md-consult-priority-picker .dropdown .dropdown-menu li.urgent {
  color: #da3549;
}
md-consult-priority-picker .dropdown .dropdown-menu.has-error {
  border-color: #e36776;
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
md-consult-progress-bar {
  display: block;
}
md-consult-progress-bar .consult-progress-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 48px;
  padding-right: 48px;
}
md-consult-progress-bar ul.markers {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  font-size: 12px;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 3em;
  padding-right: 2em;
  height: 5em;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 0px;
}
md-consult-progress-bar ul.markers li {
  background: #70c060;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 4px;
  line-height: 1em;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  text-align: right;
}
md-consult-progress-bar ul.markers li .circle {
  width: 2em !important;
  height: 2em !important;
  max-width: 2em !important;
  max-height: 2em !important;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: -0.8em;
  left: -2em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  color: #fff;
  border: 2px solid #e0e0e0;
}
md-consult-progress-bar ul.markers li .circle i {
  display: none;
  line-height: 1.9em;
}
md-consult-progress-bar ul.markers li .circle .action,
md-consult-progress-bar ul.markers li .circle .name {
  font-weight: 600;
  display: block;
  color: #000;
  width: 16.4em;
  text-align: center;
}
md-consult-progress-bar ul.markers li .circle .name {
  position: absolute;
  top: -29px;
  left: -7.4em;
}
md-consult-progress-bar ul.markers li .circle .action {
  position: absolute;
  top: 2em;
  left: -7.4em;
}
md-consult-progress-bar ul.markers li.active,
md-consult-progress-bar ul.markers li.active~li,
md-consult-progress-bar ul.markers li.active~li::before {
  background-color: #e0e0e0;
}
md-consult-progress-bar ul.markers li:last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -o-box-flex: 0;
  -ms-box-flex: 0;
  box-flex: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0;
  flex-basis: 0;
}
md-consult-progress-bar ul.markers li.completed .circle,
md-consult-progress-bar ul.markers li.active .circle {
  border-color: #70c060;
}
md-consult-progress-bar ul.markers li.completed .circle {
  background: #70c060;
}
md-consult-progress-bar ul.markers li.completed .circle i {
  display: block;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-consult-provider-sidebar {
  display: block;
}
md-consult-provider-sidebar md-chips-wrap {
  width: 100%;
}
md-consult-provider-sidebar md-gender-picker .other {
  margin-top: 10px;
}
md-consult-provider-sidebar .popover {
  max-width: none;
}
md-consult-provider-sidebar .popover-content {
  padding: 3px 4px;
}
md-consult-provider-sidebar .provider-map {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
}
md-consult-provider-sidebar .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
md-consult-provider-sidebar .md-phone-picker .dropdown-menu {
  min-width: fit-content;
  margin-left: -webkit-fill-available;
}
md-consult-provider-sidebar .select-provider {
  text-transform: uppercase;
  font-weight: 600;
}
md-consult-provider-sidebar .select-provider.md-link {
  font-size: 12px;
}
md-consult-provider-sidebar .select-provider .fa-search {
  margin-right: 6px;
}
md-consult-provider-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-consult-provider-sidebar .collapsed-detail {
  font-size: 13px !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 18px !important;
}
md-consult-provider-sidebar md-panel .md-pane.panel.panel-open .secondary-section.hide-detail {
  display: none;
}
md-consult-provider-sidebar md-panel .info-section.selectable.org-details {
  border-top: none;
  padding: 0;
}
md-consult-provider-sidebar .selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  padding-left: 1px;
}
md-consult-provider-sidebar .truncate {
  max-width: 278px;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: -5px;
}
md-consult-provider-sidebar .has-error {
  color: #e36776 !important;
}
md-consult-provider-sidebar .has-error .control-label {
  color: #e36776 !important;
}
md-consult-provider-sidebar .has-error .form-control {
  border-color: #e36776 !important;
}
md-consult-provider-sidebar .dropdown-menu,
md-consult-provider-sidebar .md-dropdown-menu,
md-consult-provider-sidebar .dropdown {
  min-width: 75px;
  max-width: 100% !important;
}
md-consult-provider-sidebar .year-dropdown {
  margin-left: 10px;
  width: 75px !important;
}
md-consult-provider-sidebar .specialty-picker,
md-consult-provider-sidebar .city-picker {
  margin-bottom: 5px;
}
md-consult-provider-sidebar md-zip-picker .form-group,
md-consult-provider-sidebar md-city-picker .form-group {
  margin-bottom: 0px !important;
}
md-consult-provider-sidebar .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-consult-provider-sidebar .add-link i {
  margin-right: 5px;
}
md-consult-provider-sidebar .provider-select {
  display: block !important;
}
md-consult-provider-sidebar .provider-select .department-picker {
  margin-top: 10px;
}
md-consult-provider-sidebar .contact-organizations-section {
  margin-top: 10px;
}
md-consult-provider-sidebar .contact-organizations-section .section-title {
  margin-bottom: 10px;
}
md-consult-provider-sidebar .phone-list-item:first-child {
  margin-top: 5px;
}
md-consult-provider-sidebar .phone-list-item .phone-number,
md-consult-provider-sidebar .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
md-consult-provider-sidebar .phone-list-item .phone-type {
  margin-left: 10px;
}
md-consult-provider-sidebar rmd-search .dropdown {
  position: absolute;
}
md-consult-provider-sidebar rmd-search .dropdown .dropdown-menu {
  position: relative;
}
md-consult-provider-sidebar .search-providers rmd-search {
  position: relative;
  z-index: 10;
}
md-consult-provider-sidebar md-specialty-table-picker .dropdown-menu {
  min-width: fit-content !important;
  max-width: 600px;
}
md-consult-provider-sidebar md-specialty-table-picker .md-specialty-column {
  min-width: 400px !important;
}
md-consult-provider-sidebar md-specialty-table-picker .md-specialty-tax-column {
  min-width: 40px !important;
}
md-consult-audit-log {
  padding-top: 10px;
}
md-consult-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-consult-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-consult-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-consult-audit-log .details .action.block {
  display: block;
}
md-consult-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-consult-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-consult-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-consult-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-consult-audit-log .details .file a:hover,
md-consult-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-consult-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
.md-controller-consult-create #consult-progress-bar {
  margin-bottom: 20px;
}
.md-controller-consult-create .md-layout-stretch-wrap.no-pagination {
/*
            header: 50px (15 + 15px)
            main content padding: 30px (15 + 15px)
            section header: 70px: (60 height + 10 margin bottom
            progress bar: 122px (102 height + 20 margin bottom)
            section toolbar: 51px (41 + 10 margin bottom)
            pagination: 55px (35 height + 20 margin top)
        */
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px);
}
.md-controller-consult-create .md-section-header .toolbar-create {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-controller-consult-create .md-section-header .toolbar-create .consult-reason-box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.md-controller-consult-create .md-section-header .toolbar-create .md-form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
.md-controller-consult-create .md-section-header .send-button .dropdown-menu {
  min-width: 100%;
  background-color: #1da4f0;
}
.md-controller-consult-create .md-section-header .send-button .dropdown-menu a {
  color: #fff;
  text-align: right;
  padding: 3px 10px;
}
.md-controller-consult-create .md-section-header .send-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
.md-controller-consult-create .md-section-header .consult-reason-box {
  clear: none;
  display: inline-block;
  overflow: auto;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin-right: 20px;
  padding: 0px 10px;
  height: 74px;
}
.md-controller-consult-create .md-section-header .consult-reason-box p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #000;
}
.md-controller-consult-create .md-toolbar {
  width: 100%;
}
.md-controller-consult-create .md-toolbar form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-controller-consult-create .md-toolbar form .left-toolbar {
  margin-right: auto;
  padding-left: 316px;
}
.md-controller-consult-create .md-toolbar form .left-toolbar .drop-down-toolbar {
  font-size: 14px;
}
.md-controller-consult-create .md-toolbar form .left-toolbar .drop-down-toolbar .dropdown .dropdown-toggle {
  font-weight: 400;
}
.md-controller-consult-create .md-toolbar form .form-group {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 10px;
}
.md-controller-consult-create .md-toolbar form .form-group.button {
  margin-right: 0px;
}
.md-controller-consult-create .md-toolbar form .form-group.switch {
  white-space: nowrap;
  margin-right: 0px;
}
.md-controller-consult-create .md-toolbar form .md-form-group .bootstrap-switch + .control-label {
  font-weight: 600;
  margin-left: 5px;
}
.md-controller-consult-create .md-toolbar form md-toolbar-specialty-picker {
  min-width: unset !important;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
.md-controller-consult-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle {
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
.md-controller-consult-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle .dropdown-title {
  max-width: 125px;
}
.md-controller-consult-create .md-toolbar form rmd-toolbar-dropdown-table .dropdown .dropdown-toggle i {
  padding-top: 3px;
}
.md-controller-consult-create .md-toolbar form rmd-search-expand.low-res {
  display: none;
}
@media (max-width: 1440px) {
  .md-controller-consult-create .md-toolbar form rmd-search-expand.low-res {
    display: block;
  }
  .md-controller-consult-create .md-toolbar form rmd-search-expand.high-res {
    display: none;
  }
}
.md-controller-consult-create .md-toolbar form rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 125px;
}
.md-controller-consult-create .md-toolbar form md-toolbar-condition-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
.md-controller-consult-create .md-toolbar form md-toolbar-procedure-picker .md-dropdown-menu.search {
  max-width: fit-content;
}
.md-controller-consult-create .md-toolbar form md-toolbar-city-picker .md-dropdown-menu {
  min-width: 250px;
  max-width: 445em;
}
.md-controller-consult-create .md-toolbar form md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  max-width: fit-content;
}
.md-controller-consult-create .priority-picker-wrap .control-label {
  display: inline;
}
.md-controller-consult-create .priority-picker-wrap md-consult-priority-picker {
  display: inline;
}
.md-controller-consult-create .sidebar-panel:last-child .panel-group {
  margin-bottom: 0px;
}
md-consult-step-patient {
  display: block;
}
md-consult-step-patient .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-consult-step-patient .selected-column {
  text-align: right;
}
md-consult-step-provider {
  display: block;
}
md-consult-step-provider tr.rmd-list-item.provider-row#auto-scroll-navigation-target {
  scroll-margin-top: 51.5px;
}
md-consult-step-provider .md-layout-stretch-wrap {
  height: calc(100vh - 50px - 30px - 70px - 122px - 51px - 55px);
}
md-consult-step-provider .md-layout-stretch-wrap .md-layout-stretch-content.scrollable.bordered.padded {
  padding: 20px;
}
md-consult-step-provider rmd-list .empty-message {
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
}
md-consult-step-provider rmd-list .md-form-group .control-label {
  font-weight: 400;
}
md-consult-step-provider rmd-list .search-help .user-help {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
md-consult-step-provider rmd-list .search-help .user-help .instruction-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  width: 100%;
}
md-consult-step-provider rmd-list .search-help .user-help .instructions .text1 {
  font-size: 16px;
}
md-consult-step-provider rmd-list .search-help .widget-help {
  margin-top: 10px;
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-consult-step-provider rmd-list .search-help .widget-help .npi-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-consult-step-provider rmd-list .search-help .widget-help .npi-group .md-btn.secondary {
  height: 34px;
  line-height: 34px;
  margin-left: 10px;
  margin-top: 25px;
}
md-consult-step-provider rmd-list .search-help .widget-help .form-group {
  margin-bottom: 15px;
}
md-consult-step-provider rmd-list .search-help .widget-help .form-group .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-consult-step-provider rmd-list .search-help .widget-help .text2 {
  margin-bottom: 10px;
}
md-consult-step-provider rmd-list .search-help .widget-help .role-picker {
  text-align: center;
}
md-consult-step-provider rmd-list .search-help .widget-help .role-picker label {
  font-size: 16px;
  margin-bottom: 0px;
}
@media (max-width: 1440px) {
  md-consult-step-provider rmd-list .rmd-list-content.provider-referring .column-name {
    max-width: 450px;
    width: 450px;
  }
}
md-consult-step-provider .provider-row {
  cursor: pointer;
}
md-consult-step-provider .provider-row .provider-name {
  cursor: pointer;
  color: #1da4f0;
}
md-consult-step-provider .provider-row .provider-name:hover,
md-consult-step-provider .provider-row .provider-name:focus {
  color: #4ab6f3;
}
md-consult-step-provider .provider-row .picker-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
md-consult-step-provider .provider-row .picker-wrap md-department-picker {
  width: 100%;
  max-width: 300px;
}
md-consult-step-provider .provider-row .column .group {
  max-width: 90%;
}
md-consult-step-provider .provider-row .favorite-icon {
  margin-left: 7px;
}
md-consult-step-provider .favorite-grey {
  color: #d0d0d0 !important;
}
md-consult-step-provider .favorite-red {
  color: #e36776 !important;
}
md-consult-step-provider .rmd-list-item .favorite-grey.favorite-icon {
  visibility: hidden;
}
md-consult-step-provider .rmd-list-item:hover .favorite-grey.favorite-icon {
  visibility: visible;
}
md-consult-step-details .question-group {
  margin-bottom: 0px;
}
md-consult-step-details .question-group .question-content.header {
  padding-top: 0px;
  padding-left: 0px;
}
md-consult-step-details .question-group .question-content .section-text {
  color: #000;
}
md-consult-step-details .question-group .selector-row .checkbox-wrapper rmd-checkbox {
  clear: none;
  display: inline-block;
}
md-consult-step-details .question-group .selector-row .checkbox-wrapper.select-all {
  margin-left: 7px;
}
md-consult-step-details md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-consult-step-details md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-consult-step-details .md-dropzone-file-preview {
  display: none;
}
md-consult-step-details .media-body {
  vertical-align: middle;
}
md-consult-step-details .attachment-frame {
  padding: 1px;
}
md-consult-step-details .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-consult-step-details .attachments {
  margin-bottom: 10px;
}
md-consult-step-details .section-text {
  font-weight: 400;
  font-size: 18px;
  color: $mdBlack;
}
md-consult-step-details .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-consult-step-details .action-link i {
  margin-right: 5px;
}
md-consult-step-details .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-consult-step-details .file-loaders md-dropzone {
  margin-left: 15px;
}
md-consult-step-details .file-loader-icon {
  font-weight: bold;
  font-size: 16px;
}
md-consult-step-review {
  display: block;
}
md-consult-step-review .title {
  font-size: 20px;
  color: #000;
}
md-consult-step-review md-message-attachment-preview .attachment-frame {
  padding: 1px;
}
md-consult-step-review md-message-attachment-preview .attachment-frame .toolbar {
  bottom: 16px;
}
md-consult-step-review .attachments-pane {
  margin-top: 20px;
}
md-consult-step-review .attachments-pane .attachment {
  margin-top: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-consult-step-review .media-body {
  vertical-align: middle;
}
md-consult-step-review .title-switch-container {
  width: 500px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-consult-step-review .title-switch-container .switch-container {
  margin-right: -10px;
  margin-top: -5px;
}
md-consult-form-answers .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 7px;
  color: #da3549;
}
md-consult-form-answers .attachment {
  margin-top: 0px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-consult-form-answers .attachment:last-child {
  margin-bottom: 10px;
}
md-consult-form-answers .md-form-question {
  font-size: 14px;
  color: #000;
  margin-top: 20px;
}
md-consult-form-answers .md-form-question .question-title {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  font-weight: 700;
  line-height: 24px;
  color: #666;
  vertical-align: middle;
}
md-consult-form-answers .md-form-question .question-title span {
  vertical-align: middle;
}
md-consult-form-answers .md-form-question .question-title .required,
md-consult-form-answers .md-form-question .question-title .optional {
  color: #666;
  margin-left: 5px;
  font-style: italic;
}
md-consult-form-answers .md-form-question .question-answer {
  line-height: 22px;
  margin-top: 4px;
}
md-consult-form-answers .md-form-question .question-answer .answer {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  color: #000;
}
md-consult-form-answers .md-form-question .question-answer .answer .nested-answer {
  padding-left: 20px;
}
md-consult-form-answers .md-form-question .question-answer .answer .nested-answer .md-form-question {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
md-consult-form-answers .md-form-question .question-answer .answer .date + .time {
  margin-left: 5px;
}
md-consult-form-answers .md-form-question .question-answer .answer .file-row {
  margin-top: 0px;
}
.md-controller-patient-list {
  display: block;
}
.md-controller-patient-list .text2 {
  font-size: 13px;
}
.md-controller-patient-list .payer {
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-controller-patient-list .md-toolbar.md-section-toolbar {
  margin-left: 2px;
}
.md-controller-patient-list .md-toolbar.md-section-toolbar md-toolbar-city-picker .md-dropdown-menu,
.md-controller-patient-list .md-toolbar.md-section-toolbar md-toolbar-language-picker .md-dropdown-menu,
.md-controller-patient-list .md-toolbar.md-section-toolbar md-toolbar-opt-out-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
}
.md-controller-patient-list .md-toolbar.md-section-toolbar .offset .md-dropdown-menu {
  margin-top: 7px;
  min-width: fit-content;
  position: fixed;
  top: auto;
  left: 155px;
}
.md-controller-patient-list .md-layout-stretch-wrap {
  height: calc(100vh - 160px - 55px - 40px);
}
md-toolbar-gender-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-gender-picker .gender-picker-wrapper {
  display: block;
  position: relative;
}
md-toolbar-gender-picker .gender-picker-wrapper .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
md-toolbar-gender-picker .gender-picker-wrapper .clear-button-holder {
  z-index: 1;
}
md-toolbar-city-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-city-picker .clear-filter-option:hover {
  text-decoration: underline;
}
md-toolbar-city-picker .separator-line {
  height: 1px;
  background-color: #dcdcdc;
  margin: 5px 0;
}
md-toolbar-city-picker .dropdown-menu.search {
  width: fit-content;
  min-width: 200px;
}
md-toolbar-city-picker i.fas.fa-spin.fa-spinner {
  color: #1da4f0;
}
md-toolbar-city-picker .search-postal-code.text1 {
  color: #1da4f0;
}
md-toolbar-opt-out-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-other-patient-picker {
  clear: none;
  display: inline-block;
}
.md-controller-patient-details {
  display: block;
}
.md-controller-patient-details md-insurance-picker md-insurance-picker-item .insurance-form.sidebar .dropdown-menu {
  min-width: 450px;
  margin-bottom: 35px;
}
md-referral-selector {
  display: block;
}
md-referral-list .batch-operator-container {
  display: inline-block;
}
md-referral-list .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-referral-list .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-referral-list .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-referral-list .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-referral-list .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-referral-list .rmd-list-columns th.column-icon {
  height: 51px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-referral-list .select-all-header-check .checkbox {
  margin-left: 5px;
}
md-consult-selector {
  display: block;
}
md-consult-list .batch-operator-container {
  display: inline-block;
}
md-consult-list .rmd-list-columns .column .sort-arrows-container {
  position: relative;
  top: 6px;
  padding-right: 10px;
}
md-consult-list .rmd-list-columns .column .sort-arrows-container i {
  color: #cecece;
}
md-consult-list .rmd-list-columns .column .sort-arrows-container .sort-up {
  position: absolute;
}
md-consult-list .rmd-list-columns .column .sort-arrows-container .sort-down {
  position: absolute;
  top: 1px;
}
md-consult-list .rmd-list-columns .column .sort-arrows-container .sort-arrow-active {
  color: #0083d9;
}
md-consult-list .rmd-list-columns th.column-icon {
  height: 51px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-consult-list .select-all-header-check .checkbox {
  margin-left: 5px;
}
md-patient-audit-log {
  padding-top: 10px;
}
md-patient-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-patient-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-patient-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-patient-audit-log .details .action.block {
  display: block;
}
md-patient-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-patient-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-patient-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-patient-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-patient-audit-log .details .file a:hover,
md-patient-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-patient-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
.md-controller-fax-list {
  display: block;
}
.md-controller-fax-list .md-toolbar .md-dropdown-group.page-setting-icon {
  margin-left: 20px;
}
.md-controller-fax-list .md-toolbar .md-dropdown-group.page-setting-icon i.fa {
  color: #1da4f0;
}
.md-controller-fax-list .md-toolbar md-toolbar-insurance-picker .md-dropdown-menu,
.md-controller-fax-list .md-toolbar md-search-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
}
.md-controller-fax-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-controller-fax-list .md-toolbar separated-date-picker input.md-form-control[type="text"][readonly] {
  background: unset;
  min-width: 205px;
  cursor: pointer;
}
.md-controller-fax-list .text2 {
  font-size: 13px;
}
.md-controller-fax-list .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-controller-fax-list .rmd-list-manual tbody tr td.column.column-icon {
  min-width: 40px;
  max-width: 40px;
  width: 40px;
  padding: 5px 5px;
}
.md-controller-fax-list .batch-operator-container {
  display: inline-block;
}
.md-controller-fax-list .fax-action {
  margin-left: 20px;
}
.md-controller-fax-list .rmd-list-item.md-fax-locked .column.status-column md-fax-status-picker md-avatar img {
  filter: sepia() saturate(300%) hue-rotate(300deg);
}
.md-fax-status-picker-menu.dropdown-menu {
  max-width: 250px;
}
.md-fax-status-picker-menu.dropdown-menu li {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-fax-status-picker-menu.dropdown-menu li:hover {
  background-color: #fff;
}
.md-fax-status-picker-menu.dropdown-menu li a {
  padding: 5px 20px;
}
.md-fax-status-picker-menu.dropdown-menu.bottom-dropdown {
  top: auto !important;
  bottom: 100% !important;
  margin-bottom: 2px !important;
}
md-fax-status-picker,
.md-fax-status-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  line-height: 20px;
}
md-fax-status-picker .dropdown md-avatar,
.md-fax-status-picker .dropdown md-avatar {
  clear: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
}
md-fax-status-picker .dropdown .dropdown-toggle,
.md-fax-status-picker .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
  color: #1da4f0;
}
md-fax-status-picker .dropdown .dropdown-toggle.disabled,
.md-fax-status-picker .dropdown .dropdown-toggle.disabled {
  cursor: not-allowed;
}
md-fax-status-picker .dropdown .dropdown-toggle i,
.md-fax-status-picker .dropdown .dropdown-toggle i {
  font-size: 16px;
  line-height: 18px;
  color: #1da4f0;
  margin-left: 5px;
}
md-fax-status-picker .dropdown .dropdown-toggle .status-wrap .md-text,
.md-fax-status-picker .dropdown .dropdown-toggle .status-wrap .md-text {
  line-height: 18px;
}
md-fax-status-picker .dropdown .dropdown-toggle .status-wrap .status,
.md-fax-status-picker .dropdown .dropdown-toggle .status-wrap .status {
  display: block;
  margin-bottom: 3px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
.md-controller-fax-details {
  display: block;
}
.md-controller-fax-details #top-of-site-pixel-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  top: 135px;
  left: 0;
}
.md-controller-fax-details .fixed-fax-pane {
  position: fixed;
  width: calc(100% - 375px);
  top: 135px;
  bottom: 20px;
}
.md-controller-fax-details .fixed-fax-pane.has-dropdown {
  padding-top: 10px;
}
.md-controller-fax-details md-pdf-preview {
  height: 100%;
}
.md-controller-fax-details md-pdf-preview #md-pdf-preview-content {
  height: 100%;
}
.md-controller-fax-details .alert-buffer {
  top: 181px;
}
.md-controller-fax-details .md-tabpanel-tabs {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.md-controller-fax-details .md-tabpanel,
.md-controller-fax-details .md-tabpanel-content,
.md-controller-fax-details .md-tabpanel-content-tab {
  height: 100%;
}
.md-controller-fax-details .md-tabpanel md-pdf-preview,
.md-controller-fax-details .md-tabpanel-content md-pdf-preview,
.md-controller-fax-details .md-tabpanel-content-tab md-pdf-preview {
  height: calc(100% - 41px);
}
.md-controller-fax-details .md-tabpanel md-pdf-preview #md-pdf-preview-content,
.md-controller-fax-details .md-tabpanel-content md-pdf-preview #md-pdf-preview-content,
.md-controller-fax-details .md-tabpanel-content-tab md-pdf-preview #md-pdf-preview-content {
  height: 100%;
}
.md-controller-fax-details .modal-dialog {
  width: 100% !important;
}
.md-controller-fax-details .rmd-failed-message {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0px;
}
body.scrolled-past-toolbar .fixed-fax-pane {
  top: 70px;
}
body.has-sticky-footer .fixed-fax-pane {
  bottom: 75px;
}
md-alert-banner {
  display: block;
}
md-alert-banner .md-dropdown-menu li a {
  padding: 5px;
}
md-alert-banner .md-text {
  font-size: 14px !important;
  font-weight: 600 !important;
}
md-alert-banner .strong {
  font-size: 14px !important;
  font-weight: 700 !important;
}
md-alert-banner .alert {
  color: #fff;
  padding: 5px 40px;
  margin-bottom: 0px;
}
md-alert-banner .alert .md-btn {
  font-weight: 600 !important;
  color: #fff;
  border-radius: 5px;
}
md-alert-banner .alert .md-btn.primary {
  background: #1da4f0;
  border: 1px solid #fff;
}
md-alert-banner .alert .md-btn.primary,
md-alert-banner .alert .md-btn.info {
  font-size: 14px !important;
  font-weight: 600 !important;
}
md-alert-banner .alert.alert-success {
  background-color: #70c060;
  border-color: #70c060;
}
md-alert-banner .alert.alert-info {
  background-color: #1da4f0;
  border-color: #1da4f0;
}
md-alert-banner .alert.alert-warning-sm {
  padding: 10px 15px;
  background-color: #f0a248;
  border-color: #f0a248;
}
md-alert-banner .alert.alert-warning {
  background-color: #f0a248;
  border-color: #f0a248;
}
md-alert-banner .alert.alert-warning .md-btn {
  padding: 0px 10px;
  height: 27px;
}
md-alert-banner .alert.alert-warning .md-btn.primary {
  background: #fff;
  border: none;
  color: #f0a248;
  line-height: 25px;
}
md-alert-banner .alert.alert-warning .md-btn.info {
  background: transparent;
  border: 1px solid #fff;
  line-height: 24px;
}
md-alert-banner .alert.alert-danger {
  background-color: #e36776;
  border-color: #e36776;
}
md-alert-banner .alert button.close {
  top: 0px;
  right: 0px;
  font-size: 18px;
  color: #fff;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  margin-top: 7px;
}
md-alert-banner.md-alert-banner-header .alert {
  border-radius: 0px;
}
md-alert-banner md-alert-banner-content {
  display: block;
}
md-alert-banner .content {
  font-size: 14px;
  text-align: left;
}
md-alert-banner .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
md-alert-banner .content p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}
md-alert-banner .content .md-toolbar {
  margin-left: 10px;
}
md-alert-banner .content .md-toolbar .md-form-group .md-btn + .md-btn {
  margin-left: 10px;
}
md-alert-banner .content .md-toolbar .md-dropdown-group {
  margin: 0px;
  padding: 5px;
  border-radius: 5px;
  height: 34px;
  border: 1px solid #fff;
  background: #fff;
  color: #f0a248;
  width: 138px;
}
md-alert-banner .content .md-toolbar .md-dropdown-group .dropdown-toggle {
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  color: #f0a248;
}
md-alert-banner .content .md-toolbar .md-dropdown-group .dropdown-toggle i {
  color: #f0a248;
  font-size: 16px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-fax-sidebar {
  display: block;
}
md-fax-sidebar .search-patients {
  width: 100%;
}
md-fax-sidebar .rmd-editable.patient-section .edit-display .edit-toolbar-icons {
  display: none;
  background: #fff;
}
md-fax-sidebar .rmd-editable.patient-section .edit-display .edit-toolbar-icons i.fa {
  color: #999;
  font-size: 16px;
  margin: 0px 5px;
  line-height: 20px;
}
md-fax-sidebar .rmd-editable.patient-section:hover .edit-display .edit-toolbar-icons {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  position: absolute;
  right: 0;
  top: 50%;
}
md-fax-sidebar .file-edit-container {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  margin-bottom: 5px;
  width: 100%;
}
md-fax-sidebar .file-edit-container .edit-form {
  width: 100%;
}
md-fax-sidebar .file-edit-container .edit-form .md-form-group.has-toolbar .form-control-toolbar-group .form-control-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-fax-sidebar .file-edit-container .edit-display {
  max-width: 100%;
}
md-fax-sidebar .file-edit-container .edit-toolbar-icons {
  display: none;
  background: #fff;
}
md-fax-sidebar .file-edit-container .edit-toolbar-icons i.fa {
  color: #999;
  font-size: 16px;
  margin: 0px 5px;
  line-height: 20px;
}
md-fax-sidebar .file-edit-container:hover .edit-toolbar-icons {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  position: absolute;
  right: 0;
}
md-fax-sidebar .receiver-details {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 5px;
}
md-fax-sidebar .detail-main.receiver-select {
  display: block;
}
md-fax-sidebar .detail-main.receiver-select input#searchInput,
md-fax-sidebar .detail-main.receiver-select .md-form-group-icon,
md-fax-sidebar .detail-main.receiver-select .fax-number-input,
md-fax-sidebar .detail-main.receiver-select .fax-reciever-container,
md-fax-sidebar .detail-main.receiver-select .receiver-picker {
  width: 100%;
}
md-fax-sidebar .detail-main.receiver-select .dropdown-table-column {
  max-width: fit-content;
}
md-fax-sidebar .detail-main.receiver-select .dropdown-menu {
  display: block;
  max-width: fit-content;
  min-width: 100%;
  width: unset;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: visible;
}
md-fax-sidebar .detail-main.receiver-select .dropdown-menu a {
  white-space: break-spaces;
}
md-fax-sidebar .file-loaders {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-fax-sidebar .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-fax-sidebar .action-link i {
  margin-right: 5px;
}
md-fax-sidebar .action-link.attach {
  margin-right: 15px;
}
md-fax-sidebar .file-loader-icon {
  font-weight: bold;
  font-size: 14px;
}
md-fax-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-fax-sidebar md-referral-priority-picker .md-text {
  font-weight: 600;
  text-transform: uppercase;
}
md-fax-sidebar md-referral-priority-picker .md-text.md-link {
  font-size: 12px;
}
md-fax-sidebar .tooltip-inner {
  width: 120px;
  white-space: normal;
}
md-fax-sidebar .view-form {
  font-weight: 600;
}
md-fax-sidebar div[class^='has-error'] .text2,
md-fax-sidebar div[class*=' has-error'] .text2,
md-fax-sidebar div[class^='has-error'] i.fa.fa-angle-down,
md-fax-sidebar div[class*=' has-error'] i.fa.fa-angle-down,
md-fax-sidebar div[class^='has-error'] .dropdown-title,
md-fax-sidebar div[class*=' has-error'] .dropdown-title,
md-fax-sidebar div[class^='has-error'] .md-text.md-link,
md-fax-sidebar div[class*=' has-error'] .md-text.md-link,
md-fax-sidebar div[class^='has-error'] .action-link,
md-fax-sidebar div[class*=' has-error'] .action-link {
  color: #e36776 !important;
}
md-fax-sidebar div[class^='has-error'] input,
md-fax-sidebar div[class*=' has-error'] input {
  border-color: #e36776 !important;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-fax-referral-sidebar {
  display: block;
}
md-fax-referral-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-fax-referral-sidebar .md-dropdown-group .dropdown .dropdown-toggle {
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-fax-referral-sidebar .md-dropdown-group .dropdown .dropdown-toggle i {
  padding-top: 3px;
}
md-fax-referral-sidebar .md-dropdown-group .dropdown .dropdown-toggle .dropdown-title {
  max-width: 250px;
}
md-fax-referral-sidebar .priority-container md-referral-priority-picker .md-text {
  font-weight: 600;
  text-transform: uppercase;
}
md-fax-referral-sidebar .priority-container md-referral-priority-picker .md-text.md-link {
  font-size: 12px;
}
md-fax-referral-sidebar .priority-container.has-error .text2,
md-fax-referral-sidebar .priority-container.has-error i.fa.fa-angle-down,
md-fax-referral-sidebar .priority-container.has-error .md-text.md-link {
  color: #e36776;
}
md-fax-referral-sidebar md-referral-form-answers .md-form-question {
  margin-top: 0px;
}
md-fax-referral-sidebar .card.readOnly {
  cursor: default !important;
}
md-fax-referral-sidebar .info-section.has-icon .display-icon {
  display: block;
  line-height: 20px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff;
  font-size: 16px;
  color: #999;
}
md-fax-referral-sidebar md-referral-form-answers .md-dropzone-file-preview {
  display: none;
}
md-fax-referral-sidebar md-referral-form-answers md-message-attachment-preview .file-avatar {
  display: none;
}
md-fax-referral-sidebar md-referral-form-answers md-message-attachment-preview .attachment-frame {
  padding: 0;
}
md-fax-referral-sidebar md-referral-form-answers md-message-attachment-preview .attachment-frame .toolbar {
  position: absolute;
  right: 0;
  top: 20px;
}
md-fax-referral-sidebar md-referral-form-answers md-message-attachment-preview .media-left {
  padding-right: 0;
}
md-fax-referral-sidebar md-referral-form-answers .attachment {
  width: inherit;
  margin: 10px 0;
}
md-fax-referral-sidebar md-referral-form-answers .attachment:first-child {
  margin-top: 0px;
}
md-fax-referral-sidebar md-referral-form .md-pane.question-pane.required.has-question-error .control-label .title {
  color: #e36776;
}
md-fax-referral-sidebar md-referral-form .md-pane.question-pane.required.has-question-error input.form-control.md-form-control {
  border-color: #e36776;
}
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker {
  width: calc(100% - 23px);
}
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .ui-select-placeholder,
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .ui-select-match-text,
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .text-muted,
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .md-form-group.has-toolbar,
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .form-control-toolbar-group,
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .form-control {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-fax-referral-sidebar md-referral-form md-custom-option-picker .md-custom-option-picker .custom-item-input .form-control-toolbar-group md-custom-item-picker .ui-select-bootstrap .ui-select-match-text {
  padding-right: 0px;
}
md-fax-referral-sidebar md-referral-form md-icd .typeahead-search {
  position: relative;
}
md-fax-referral-sidebar md-referral-form md-icd .dropdown-menu {
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}
md-fax-referral-sidebar md-referral-form md-icd .dropdown-menu a {
  white-space: break-spaces;
}
md-fax-referral-sidebar md-referral-form .ui-select-bootstrap > .ui-select-choices .md-text,
md-fax-referral-sidebar md-referral-form .ui-select-bootstrap > .ui-select-no-choice .md-text {
  white-space: break-spaces;
}
md-fax-referral-sidebar md-referral-form .nav > li > a {
  padding: 10px 6px;
}
md-fax-referral-sidebar md-referral-form md-hovermap .normal-width {
  width: 100% !important;
}
md-fax-referral-sidebar md-referral-form .md-dropzone-file-preview {
  display: none;
}
md-fax-referral-sidebar md-referral-form md-message-attachment-preview .file-avatar {
  display: none;
}
md-fax-referral-sidebar md-referral-form md-message-attachment-preview .attachment-frame {
  padding: 0;
}
md-fax-referral-sidebar md-referral-form md-message-attachment-preview .attachment-frame .toolbar {
  position: absolute;
  right: 0;
  top: 20px;
}
md-fax-referral-sidebar md-referral-form md-message-attachment-preview .media-left {
  padding-right: 0;
}
md-fax-referral-sidebar md-referral-form .md-pane.question-pane {
  border: none;
  border-top: 1px dashed #d1d1d1;
  padding: 10px 0;
}
md-fax-referral-sidebar md-referral-form .md-pane.question-pane:first-child {
  padding: 0px;
  padding-bottom: 10px;
  border-top: none;
}
md-fax-referral-sidebar md-referral-form .fa-asterisk {
  margin-left: 2px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 7px;
}
md-fax-referral-sidebar md-referral-form .question-pane.has-question-error {
  border-color: #da3549;
}
md-fax-referral-sidebar md-referral-form .question-group {
  margin-bottom: 0px !important;
}
md-fax-referral-sidebar md-referral-form .question-group.question-section-header,
md-fax-referral-sidebar md-referral-form .question-group.question-section-text {
  margin-bottom: 0px;
}
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .form-inline {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  width: 100%;
}
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group {
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group + .md-form-group {
  margin-left: 10px;
}
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group rmd-date-picker,
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group rmd-time-picker {
  width: 100%;
}
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group rmd-date-picker .has-feedback,
md-fax-referral-sidebar md-referral-form .question-group.question-datetime .md-form-group rmd-time-picker .has-feedback {
  padding-right: 12px !important;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content {
  position: relative;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content.header {
  padding-top: 0px;
  padding-left: 0px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content h4,
md-fax-referral-sidebar md-referral-form .question-group .question-content .control-label,
md-fax-referral-sidebar md-referral-form .question-group .question-content .title,
md-fax-referral-sidebar md-referral-form .question-group .question-content .required,
md-fax-referral-sidebar md-referral-form .question-group .question-content .help-text,
md-fax-referral-sidebar md-referral-form .question-group .question-content .section-text {
  color: #666;
  font-size: 14px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .control-label,
md-fax-referral-sidebar md-referral-form .question-group .question-content .help-text {
  line-height: 20px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .control-label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .control-label .required {
  clear: none;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
  text-transform: none;
  font-style: italic;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .control-label .help-text {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #999;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .form-control {
  height: unset;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .form-control.input-small {
  max-width: 200px;
  display: inline-block;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: unset;
  line-height: 24px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .scale-option {
  clear: none;
  display: inline-block;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .scale-option .scale-wrap {
  text-align: center;
  margin-right: 10px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .scale-option .scale-label {
  font-size: 14px;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .scale-option .radio-wrap {
  width: 100%;
}
md-fax-referral-sidebar md-referral-form .question-group .question-content .scale-option .radio-wrap rmd-radio {
  margin-left: auto;
  margin-right: auto;
}
md-fax-referral-sidebar md-referral-form .question-group .nested-question {
  padding-left: 20px;
  padding-bottom: 15px;
}
md-fax-referral-sidebar md-referral-form .question-group .nested-question.padding-right {
  padding-right: 0;
}
md-fax-referral-sidebar md-referral-form .question-group .nested-question .question-group {
  margin-top: 10px;
}
md-fax-referral-sidebar md-referral-form .teeth-chart-container .nav-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  text-align: center;
}
md-fax-referral-sidebar md-referral-form .teeth-chart-container .nav-tabs li a {
  color: #555;
}
md-fax-referral-sidebar md-referral-form .teeth-chart-container .nav-tabs li.active a {
  color: initial;
}
md-fax-referral-sidebar md-referral-form .teeth-chart-container .tab-content {
  border: none;
  border-radius: 0 0 5px 5px;
  border-top: none;
}
md-fax-referral-sidebar md-referral-form .attachments-pane .attachment {
  width: inherit;
  margin: 10px 0;
}
md-fax-referral-sidebar md-referral-form .attachments-pane .attachment:first-child {
  margin-top: 0px;
}
md-fax-referral-sidebar md-referral-form md-dropzone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
md-fax-referral-sidebar md-referral-form md-dropzone .dz-preview {
  margin-bottom: 10px;
}
md-fax-referral-sidebar md-referral-form .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-fax-referral-sidebar md-referral-form .action-link i {
  margin-right: 5px;
}
md-fax-referral-sidebar md-referral-form .file-loaders md-dropzone {
  margin-left: 15px;
}
md-fax-referral-sidebar md-referral-form .file-loader-icon {
  font-weight: bold;
  font-size: 14px;
}
md-fax-referral-sidebar .view-form {
  font-weight: 600;
}
md-loading-bar p.md-text {
  white-space: wrap;
  line-height: 1.75;
  margin-top: -10px;
}
.md-controller-reports {
  display: block;
  min-height: calc(100vh - 50px);
}
.md-controller-reports .has-filters {
  height: calc(100vh - 215px) !important;
}
.md-controller-reports .full-height {
  height: 100%;
}
.md-controller-reports .md-section-header {
  border-bottom: none;
}
.md-controller-reports .md-section-header .title {
  margin-bottom: 5px;
  margin-left: -1px;
}
.md-controller-reports .md-section-header .date-picker-group + .date-picker-group {
  margin-left: 0px;
}
.md-controller-reports .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.md-controller-reports .rmd-list-columns {
  border-bottom: 3px solid #d3d3d3 !important;
}
.md-controller-reports .md-toolbar .form-group .control-label {
  margin-right: 0px;
  font-weight: 600;
}
.md-controller-reports .md-toolbar .md-dropdown-group {
  margin-top: 0px;
  margin-bottom: 0px;
}
.md-controller-reports .md-toolbar .activity-type-picker .dropdown-menu {
  min-width: 100px;
  max-width: 150px;
}
.md-controller-reports .md-toolbar .linked-account-picker .dropdown-menu {
  min-width: unset;
  max-width: unset;
}
.md-controller-reports .md-toolbar md-search-picker {
  width: auto;
}
.md-controller-reports .md-toolbar md-search-picker .md-dropdown-menu,
.md-controller-reports .md-toolbar md-toolbar-user-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-controller-reports .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  min-width: fit-content;
  width: fit-content;
}
.md-controller-reports .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-controller-reports .md-toolbar #report-daterange-picker .date-picker.form-control {
  cursor: pointer;
  min-width: 200px;
  padding-right: 20px;
  background: #fff;
}
.md-controller-reports .md-toolbar #report-daterange-picker .icon {
  width: 30px;
}
.md-controller-reports .md-toolbar #report-daterange-picker .icon i {
  color: #666;
}
.md-controller-reports .md-report-filters-state {
  margin-top: 10px;
}
.md-controller-reports .md-report-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-controller-reports .md-report-filters-state .item .text {
  overflow: hidden;
}
.md-controller-reports .md-report-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-reports .direction-filter-row {
  margin-bottom: 20px;
}
.md-controller-reports .row.no-data-row .no-data {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
.md-controller-reports .bottom-content-row {
  margin-top: 10px;
}
.md-controller-reports #report-container {
  margin-top: 5px;
}
.md-controller-reports svg.nvd3-svg {
  overflow: hidden;
}
.md-controller-reports svg.nvd3-svg .nv-bar text {
  font-size: 14px;
}
.md-controller-reports svg.nvd3-svg .nv-area {
  stroke: #1da4f0 !important;
  stroke-width: 2;
  stroke-opacity: 1;
  fill: #1da4f0 !important;
  fill-opacity: 0.6;
}
.md-controller-reports svg.nvd3-svg .nv-axis.nv-x line {
  opacity: 0 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
  filter: alpha(opacity=0) !important;
}
.md-controller-reports svg.nvd3-svg .nv-axis.nv-x text {
  fill: #666;
  font: normal 14px OpenSans;
  font-family: inherit;
}
.md-controller-reports svg.nvd3-svg .nv-axis.nv-y line {
  stroke: #000 !important;
  opacity: 0.05 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)" !important;
  filter: alpha(opacity=5) !important;
}
.md-controller-reports svg.nvd3-svg .nv-axis .domain {
  stroke: #ccc;
  stroke-width: 1;
}
.md-controller-reports svg.nvd3-svg .nv-point {
  fill: #666;
  stroke: #666;
  fill-opacity: 1 !important;
  stroke-opacity: 1 !important;
}
.md-controller-reports svg.nvd3-svg text {
  fill: #666 !important;
  font: normal 14px OpenSans;
  font-family: inherit;
}
.md-controller-reports .report-bottom-description .delay {
  -webkit-animation: cssAnimation 0s 1s forwards;
  -moz-animation: cssAnimation 0s 1s forwards;
  -o-animation: cssAnimation 0s 1s forwards;
  -ms-animation: cssAnimation 0s 1s forwards;
  animation: cssAnimation 0s 1s forwards;
  visibility: hidden;
}
.md-controller-reports .report-bottom-description .padding-dashboard {
  margin-top: -20px;
}
.md-controller-reports .report-bottom-description .footnote {
  margin-top: 0px;
}
.md-controller-reports .report-bottom-description .footnote p {
  margin-top: 10px;
  margin-bottom: 0px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-controller-reports .report-bottom-description .footnote p.foot-title {
  text-decoration: underline;
}
.md-controller-reports .report-bottom-description .footnote p.text2.foot-title {
  margin: 0px;
}
.md-controller-reports .report-bottom-description .footnote ul.circle {
  list-style-type: circle;
}
.md-controller-reports .report-bottom-description .footnote ul.square {
  list-style-type: square;
}
.md-controller-reports .report-bottom-description .footnote ul.title {
  padding-left: 18px;
}
.md-controller-reports .report-bottom-description .footnote ul.firtLevel {
  padding-left: 18px;
}
@-moz-keyframes cssAnimation {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes cssAnimation {
  to {
    visibility: visible;
  }
}
@-o-keyframes cssAnimation {
  to {
    visibility: visible;
  }
}
@keyframes cssAnimation {
  to {
    visibility: visible;
  }
}
.md-controller-reports .report-wrapper .report-content.volume .md-layout-stretch-wrap,
.md-controller-reports .report-wrapper .report-content.status .md-layout-stretch-wrap {
  height: calc(100vh - 175px);
}
.md-controller-reports .report-wrapper .report-content.fax-activity .md-layout-stretch-wrap {
  height: calc(100vh - 175px);
}
.md-controller-reports .report-wrapper .report-content.service-level .md-layout-stretch-wrap {
  height: calc(100vh - 175px);
}
.md-controller-reports .report-wrapper .report-content.service-level .footnote {
  margin-top: 20px;
}
.md-controller-reports .report-wrapper .report-content.service-level .footnote p {
  margin-top: 10px;
  margin-bottom: 0px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-controller-reports .report-wrapper .report-content.communications .footnote {
  margin-top: 20px;
}
.md-controller-reports .report-wrapper .report-content.communications .footnote p {
  margin-top: 10px;
  margin-bottom: 0px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
.md-controller-reports .report-wrapper .report-content .rmd-list-manual {
  overflow: auto;
  background: #fff;
}
.md-controller-reports .report-wrapper .report-content .rmd-list-manual .rmd-list-columns .column {
  background: #fff;
}
.md-controller-reports .report-bottom-wrapper {
  padding: 20px 0px;
}
.md-controller-reports .report-bottom-wrapper .col-right {
  padding-left: 5px;
}
.md-controller-reports .report-bottom-wrapper .col-left {
  padding-right: 5px;
}
.md-controller-reports .report-bottom-wrapper .report-box {
  clear: none;
  display: inline-block;
  width: 100%;
  padding: 0px;
}
.md-controller-reports .report-bottom-wrapper .report-box.w20 {
  width: 20%;
}
.md-controller-reports .report-bottom-wrapper .report-box .header .title {
  line-height: 30px;
  font-size: 20px;
  color: #000;
}
.md-controller-reports .report-bottom-wrapper .report-box .header .value {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1a93d7;
  text-align: center;
}
.md-controller-reports .report-bottom-wrapper .report-box .content .item {
  padding: 5px 0px;
}
.md-controller-reports .report-bottom-wrapper .report-box .content .title {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  text-align: center;
}
.md-controller-reports .report-bottom-wrapper .report-box .content .name {
  font-size: 14px;
  line-height: 22px;
  color: #666;
  text-align: center;
}
.md-controller-reports .report-bottom-wrapper .top-providers .title {
  margin-bottom: 20px;
}
.md-controller-reports .report-bottom-wrapper .top-providers .content {
  height: 324px;
  overflow-y: auto;
}
.md-controller-reports .report-bottom-wrapper .top-providers .content .rmd-list-item .column {
  padding: 7px 0px !important;
}
.md-controller-reports .report-bottom-wrapper .top-providers .content .rmd-list-item .col-name {
  padding-left: 0px !important;
}
.md-controller-reports .report-bottom-wrapper .top-providers .content .rmd-list-item .col-value {
  padding-right: 20px !important;
}
.md-controller-reports .report-bottom-wrapper .top-providers .content .rmd-list-item .column.col-value.col-index {
  padding-right: 0px !important;
  min-width: 25px !important;
  max-width: 25px !important;
}
.md-controller-reports .title-network-text {
  font-weight: normal !important;
  border-bottom: none !important;
  font-size: 20px;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif !important;
  margin-bottom: 40px !important;
}
.md-controller-reports .table-network tbody::before {
  content: '';
  display: block;
  height: 15px;
}
.md-controller-reports .top-providers .rmd-list-manual {
  max-height: 100%;
  overflow-y: auto;
}
.md-controller-reports .top-providers .rmd-list-manual .rmd-list-item .column {
  padding: 15px 0px !important;
}
.md-controller-reports .top-providers .rmd-list-manual .rmd-list-item .column.col-name {
  max-width: 300px !important;
}
.md-controller-reports .leakage-switch {
  padding-left: 10px !important;
  float: right;
  line-height: 27px;
}
.md-controller-reports .col-affiliation,
.md-controller-reports .col-referrals {
  padding-right: 40px !important;
}
.md-controller-reports .referral-model .radio {
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.md-controller-reports .referral-model .form-control {
  color: #000 !important;
}
.md-controller-reports .dashboard-toolbar .date-picker-group .md-form-group-icon {
  margin-left: 0px !important;
}
.nvtooltip {
  font-size: 14px;
  color: $mdBlack;
  background: $mdBgWhite;
  padding: 10px 20px;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.2);
  border: 1px solid #ccc;
  border-radius: 0;
}
.nvtooltip h4 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 5px;
  margin-top: 0px;
  background-color: $mdBgWhite;
  border-bottom: 1px solid #d0d0d0;
}
.nvtooltip .big {
  font-size: 18px;
  font-weight: 600;
}
.title-network-text-left {
  padding-left: 0px !important;
  padding-bottom: 0px !important;
}
md-toolbar-organization-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-provider-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-specialty-picker {
  clear: none;
  display: inline-block;
  min-width: fit-content !important;
}
rmd-toolbar-dropdown-table {
  display: block;
}
rmd-toolbar-dropdown-table .clear-filter-option:hover {
  text-decoration: underline;
}
rmd-toolbar-dropdown-table .separator-line {
  height: 1px;
  background-color: #dcdcdc;
  margin: 5px 0;
}
rmd-toolbar-dropdown-table .md-dropdown-menu,
rmd-toolbar-dropdown-table .dropdown-table,
rmd-toolbar-dropdown-table .dropdown-table-column {
  background-color: #fff;
  width: 100% !important;
}
rmd-toolbar-dropdown-table .md-dropdown-menu .add,
rmd-toolbar-dropdown-table .dropdown-table .add,
rmd-toolbar-dropdown-table .dropdown-table-column .add {
  display: inline-block !important;
  min-width: 100% !important;
}
rmd-toolbar-dropdown-table .md-dropdown-menu .location-count,
rmd-toolbar-dropdown-table .dropdown-table .location-count,
rmd-toolbar-dropdown-table .dropdown-table-column .location-count {
  margin-left: 5px;
  clear: none;
  display: inline-block;
  font-weight: 700;
}
rmd-toolbar-dropdown-table .loading {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: box !important;
  display: flex !important;
  padding: 10px;
}
rmd-toolbar-dropdown-table .loading-icon {
  padding-right: 5px;
}
rmd-toolbar-dropdown-table .loading-message {
  display: inline-block !important;
  min-width: 100% !important;
}
rmd-toolbar-dropdown-table .search-input {
  margin-bottom: 0px !important;
}
rmd-toolbar-dropdown-table .dropdown.open .dropdown-table {
  display: table;
}
rmd-toolbar-dropdown-table .md-dropdown-menu {
  width: 100%;
}
rmd-toolbar-dropdown-table .md-dropdown-menu .no-data {
  margin-top: -15px;
  width: 300px;
  text-align: center;
  padding: 5px 0;
}
rmd-toolbar-dropdown-table .expanded-search-box {
  width: 100%;
}
rmd-toolbar-dropdown-table .dropdown-table-column.md-specialty-column {
  min-width: 30px;
}
rmd-toolbar-dropdown-table .md-dropdown-menu.search {
  max-height: 400px !important;
  overflow-y: auto !important;
  padding-top: 10px !important;
  display: none !important;
}
rmd-toolbar-dropdown-table .open > .md-dropdown-menu.search {
  display: block !important;
}
rmd-toolbar-dropdown-table .dropdown-table-column {
  min-width: 400px;
  background-color: transparent;
}
rmd-toolbar-dropdown-table .expanded-search-box {
  padding-bottom: 15px !important;
}
rmd-toolbar-dropdown-table .loading {
  display: block !important;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
}
rmd-toolbar-dropdown-table .loading .text1 {
  font-size: 14px;
}
rmd-toolbar-dropdown-table .loading .fas {
  font-size: 14px;
  color: #1da4f0;
}
md-toolbar-procedure-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-source-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-insurance-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-insurance-picker .clear-filter-option:hover {
  text-decoration: underline;
}
md-toolbar-insurance-picker .separator-line {
  height: 1px;
  background-color: #dcdcdc;
  margin: 5px 0;
}
md-toolbar-insurance-picker .md-dropdown-menu.search {
  max-width: 400px;
  min-width: 300px;
}
md-toolbar-insurance-picker a.payer-option {
  padding: 3px 20px;
  color: #000;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
}
md-toolbar-insurance-picker .loading .text1 {
  font-size: 14px;
}
md-toolbar-insurance-picker .loading .fas {
  font-size: 14px;
  color: #1da4f0;
}
md-toolbar-insurance-picker .insurance-picker-wrapper {
  display: block;
  position: relative;
}
md-toolbar-insurance-picker .insurance-picker-wrapper .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
md-toolbar-insurance-picker .insurance-picker-wrapper .clear-button-holder {
  z-index: 1;
}
md-toolbar-method-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-communication-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-child-account-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-other-report-picker {
  clear: none;
  display: inline-block;
}
md-report-trends {
  display: block;
}
md-report-fax-activity {
  display: block;
}
md-report-fax-activity .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-fax-activity .report-table .col-name {
  width: 210px;
}
md-report-fax-activity .report-table .col-data {
  position: relative;
  padding-right: 30px;
  padding-left: 10px;
  z-index: 1;
}
md-report-fax-activity .report-table .col-data {
  text-align: center;
}
md-report-fax-activity .report-table .col-data.left {
  text-align: left;
  padding-left: 10px;
}
md-report-fax-activity .report-table .col-data.strong {
  font-weight: 600;
}
md-report-dashboard {
  display: block;
}
md-report-dashboard md-report-pane .md-pane {
  min-height: 447px;
}
md-report-dashboard .dashboard-row {
  margin-bottom: 10px;
}
md-report-dashboard .dashboard-row .col-left {
  padding-right: 5px;
}
md-report-dashboard .dashboard-row .col-right {
  padding-left: 5px;
}
md-report-widget-summary {
  display: block;
}
md-report-widget-summary md-report-pane {
  min-height: 0px;
}
md-report-widget-summary md-report-pane .md-pane {
  min-height: 0px;
}
md-report-widget-summary md-report-pane .md-pane .header-row {
  display: none;
}
md-report-widget-summary md-report-pane .md-pane .content-row .content {
  padding-top: 0px;
}
md-report-widget-summary md-report-pane .md-pane .content-row md-report-content {
  height: auto !important;
}
md-report-widget-summary md-report-pane .md-pane .content-row md-report-content .report-box .content {
  padding-top: 0px;
}
md-report-widget-summary .report-box {
  clear: none;
  display: inline-block;
  width: 100%;
  padding: 0px;
  vertical-align: middle;
}
md-report-widget-summary .report-box.w20 {
  width: 20%;
}
md-report-widget-summary .report-box.w166 {
  width: 16.666666666666668%;
}
md-report-widget-summary .report-box .header .title {
  line-height: 30px;
  font-size: 20px;
  color: #000;
}
md-report-widget-summary .report-box .header .value {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1a93d7;
  text-align: center;
}
md-report-widget-summary .report-box .content .item {
  padding: 5px 0px;
}
md-report-widget-summary .report-box .content .title {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  text-align: center;
}
md-report-widget-summary .report-box .content .name {
  font-size: 14px;
  line-height: 22px;
  color: #666;
  text-align: center;
}
md-report-pane {
  display: block;
  min-height: 200px;
}
md-report-pane .header-row {
  margin-bottom: 10px;
}
md-report-pane .header-row .title {
  clear: none;
  display: inline-block;
}
md-report-pane .header-row .title h4 {
  font-size: 20px;
  line-height: 30px;
  color: #000;
}
md-report-pane .header-row .title a h4 {
  cursor: pointer;
  color: #1da4f0;
}
md-report-pane .header-row .title a h4:hover,
md-report-pane .header-row .title a h4:focus {
  color: #4ab6f3;
}
md-report-pane .header-row .md-toolbar .nav-pills li:first-child {
  padding-left: 0px;
}
md-report-pane .header-row .md-toolbar .nav-pills li:last-child {
  padding-right: 0px;
}
md-report-pane .content-row .no-data {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  padding: 30px 0;
  text-align: center;
}
md-report-pane .content-row .content {
  padding-top: 10px;
}
md-report-pane .content-row .content md-report-content {
  display: block;
  height: 350px;
}
md-report-widget-leakage {
  display: block;
}
md-report-widget-leakage md-report-legend {
  position: absolute;
  bottom: 0;
  right: 5px;
  min-width: 160px;
}
md-report-widget-leakage nvd3 {
  display: block;
}
md-report-widget-leakage nvd3 .nv-pieLabels .nv-label text {
  font-weight: 700;
  font-size: 18px;
  fill: #fff !important;
}
md-report-leakage-graph {
  display: block;
}
md-report-leakage-graph md-report-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  min-width: 160px;
}
md-report-leakage-graph nvd3 {
  display: block;
}
md-report-leakage-graph nvd3 .nv-pieLabels .nv-label text {
  font-weight: 700;
  font-size: 18px;
  fill: #fff !important;
}
md-report-widget-providers {
  display: block;
}
md-report-widget-providers .rmd-list-manual {
  max-height: 100%;
  overflow-y: auto;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column {
  padding: 7px 0px !important;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column.col-name {
  padding-left: 0px !important;
  max-width: 50px !important;
  min-width: 50px !important;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column.col-value {
  padding-right: 20px !important;
  min-width: 30px;
  max-width: 50px;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column.col-value.col-count {
  max-width: 20px;
  min-width: 20px;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column.col-value.col-affiliation {
  max-width: 20px;
  min-width: 20px;
}
md-report-widget-providers .provider-info .provider-info-content-container {
  display: -webkit-box;
  width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
md-report-widget-providers .provider-info .provider-info-content-container .text1,
md-report-widget-providers .provider-info .provider-info-content-container .text2 {
  white-space: pre-wrap;
}
md-report-widget-providers .rmd-list-manual .rmd-list-item .column.col-value.col-index {
  padding-right: 0px !important;
  min-width: 0px !important;
  max-width: 5px !important;
}
md-report-widget-status {
  display: block;
}
md-report-widget-status md-report-legend {
  position: absolute;
  bottom: 0;
  right: 5px;
  min-width: 160px;
}
md-report-widget-status nvd3 {
  display: block;
}
md-report-widget-status nvd3 .nv-pieLabels .nv-label text {
  font-weight: 700;
  font-size: 18px;
  fill: #fff !important;
}
md-report-widget-trends {
  display: block;
}
md-report-widget-trends svg.nvd3-svg {
  overflow: hidden;
}
md-report-widget-trends .nvd3 line.nv-guideline {
  stroke: #666;
}
md-report-widget-trends .nv-area {
  stroke: #1da4f0 !important;
  stroke-width: 2;
  stroke-opacity: 1;
  fill: #1da4f0 !important;
  fill-opacity: 0.6;
}
md-report-widget-trends .nv-axis.nv-x line {
  opacity: 0 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
  filter: alpha(opacity=0) !important;
}
md-report-widget-trends .nv-axis.nv-x text {
  fill: #666;
  font: normal 14px OpenSans;
}
md-report-widget-trends .nv-axis.nv-y line {
  stroke: #000 !important;
  opacity: 0.05 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)" !important;
  filter: alpha(opacity=5) !important;
}
md-report-widget-locations {
  display: block;
}
md-report-widget-locations md-report-legend {
  position: absolute;
  bottom: 0;
  right: 5px;
  min-width: 160px;
}
md-report-widget-locations #md-states-map .provider-map {
  height: 350px !important;
}
md-report-widget-locations #md-states-map .provider-map.has-toolbar {
  height: 305px !important;
}
md-report-locations {
  display: block;
}
md-report-locations md-report-legend {
  margin-bottom: 20px;
}
md-report-locations #md-states-map {
  min-height: 400px;
}
md-report-locations #md-states-map .loading-mask {
  text-align: center;
  padding-top: 30px;
  height: 100%;
}
md-report-locations #md-states-map #tooltip {
  font-size: 14px;
  color: #000;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.2);
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  position: absolute;
  min-width: 200px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  margin: 10px;
  pointer-events: none;
  z-index: 9;
}
md-report-locations #md-states-map #tooltip .county-header {
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 10px;
}
md-report-locations #md-states-map #tooltip .county-header h4 {
  margin-top: 0px;
  text-align: center;
}
md-report-locations #md-states-map #tooltip .title {
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
  margin: 0px;
}
md-report-locations #md-states-map #tooltip .subtitle {
  font-size: 14px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-report-locations #md-states-map #tooltip .remark {
  font-size: 14px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  color: #1da4f0;
  margin-top: 10px;
}
md-report-locations #md-states-map #svg-usa-map #background {
  fill: transparent;
}
md-report-locations #md-states-map #svg-usa-map #background.zoomed {
  cursor: pointer;
}
md-report-locations #md-states-map #svg-usa-map #states {
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 0.5px;
}
md-report-locations #md-states-map #svg-usa-map #states .state.data {
  cursor: pointer;
}
md-report-locations #md-states-map #svg-usa-map #county-objects {
  fill: none;
  stroke: #fff;
}
md-report-locations #md-states-map #svg-usa-map #county-objects .map-marker {
  fill: #e36776;
  stroke: #fff;
  stroke-width: 0.5;
}
md-report-locations #md-states-map .provider-map {
  height: 700px;
}
md-report-locations #md-states-map .provider-map.has-toolbar {
  height: 655px;
}
md-report-locations #md-states-map .provider-map .clickable-marker-content {
  color: #6495ed;
  cursor: pointer;
}
md-report-locations #md-states-map .provider-map .marker-organization-count-list {
  padding-top: 10px;
  width: 300px;
}
md-report-locations #md-states-map .provider-map .marker-organization-count-item {
  border-top: 1px solid #d3d3d3;
  padding: 10px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
md-report-legend {
  display: block;
  padding: 0px 10px;
}
md-report-legend .report-legend .legend-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #d0d0d0;
  text-align: center;
}
md-report-legend .report-legend .legend-header .title {
  margin: 0;
}
md-report-legend .report-legend .legend-row {
  font-size: 12px;
  margin-right: 0px;
  margin: 0;
}
md-report-legend .report-legend .legend-row p {
  text-align: right;
  margin-bottom: 0px;
}
md-report-legend .report-legend .legend-row .legend-color {
  padding: 0px;
  height: 15px;
  width: 15px;
}
md-report-conversion {
  display: block;
}
md-report-conversion svg.nvd3-svg {
  overflow: hidden;
}
md-report-conversion .nvd3 line.nv-guideline {
  stroke: #666;
}
md-report-conversion .nvd3 .nv-bars rect {
  fill: #1da4f0 !important;
  fill-opacity: 0.6;
}
md-report-conversion-graph {
  display: block;
}
md-report-conversion-graph md-report-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  min-width: 160px;
}
md-report-conversion-graph nvd3 {
  display: block;
}
md-report-conversion-graph nvd3 .nv-pieLabels .nv-label text {
  font-weight: 700;
  font-size: 18px;
  fill: #fff !important;
}
md-report-leakage {
  display: block;
}
md-report-leakage svg.nvd3-svg {
  overflow: hidden;
}
md-report-leakage .nvd3 line.nv-guideline {
  stroke: #666;
}
md-report-leakage .nvd3 .nv-bars rect {
  fill: #1da4f0 !important;
  fill-opacity: 0.6;
}
md-report-competitor {
  display: block;
}
md-report-competitor .has-filters-competitor {
  height: calc(100vh - 210px - 40px) !important;
}
md-report-competitor .md-layout-stretch-wrap {
  height: calc(100vh - 210px);
}
md-report-competitor .count {
  margin-top: -30px;
  margin-right: 0px;
  margin-bottom: 10px;
}
md-report-competitor .table {
  table-layout: fixed;
}
md-report-competitor .table .rmd-list-columns .column {
  border-bottom: 1px solid #ddd !important;
}
md-report-competitor .table .rmd-list-columns .column.last .action-column {
  width: auto;
}
md-report-competitor .table .rmd-list-item:hover {
  background: none;
}
md-report-competitor .table .rmd-list-item:hover .column {
  background: none;
}
md-report-competitor .table .rmd-list-item .column {
  border-right: 1px solid #ddd;
}
md-report-competitor .table .rmd-list-item .column:last-child {
  border-right: none;
}
md-report-competitor .table .rmd-list-item .column.provider-opened {
  padding: 0px !important;
}
md-report-competitor .table .rmd-list-item .column.provider-opened .providers-header {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
md-report-competitor .row.no-data-row .no-data {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
md-report-competitor .col-page-stats {
  text-align: right;
  margin-bottom: 10px;
}
md-report-competitor .col-page-stats .text2 {
  font-size: 14px;
}
md-report-competitor .footnote {
  text-align: right;
  margin-top: 20px;
}
md-report-competitor .footnote p {
  margin: 0px;
  font-size: 16px;
}
md-report-competitor .provider-row .col-name {
  vertical-align: top !important;
}
md-report-competitor .provider-row .column.provider-opened {
  vertical-align: top !important;
}
md-report-competitor .provider-row .column.provider-closed {
  vertical-align: middle !important;
}
md-report-competitor .provider-row .location {
  line-height: 20px;
}
md-report-competitor .provider-row .location i {
  clear: none;
  display: inline-block;
  color: #666;
}
md-report-competitor .provider-row .location .additional {
  clear: none;
  display: inline-block;
}
md-report-competitor .provider-row .location .additional i {
  color: #1da4f0;
}
md-report-competitor .provider-row .providers-header .quant {
  clear: none;
  display: inline-block;
}
md-report-competitor .provider-row .providers-header .expand {
  cursor: pointer;
  color: #1da4f0;
}
md-report-competitor .provider-row .providers-header .expand:hover,
md-report-competitor .provider-row .providers-header .expand:focus {
  color: #4ab6f3;
}
md-report-competitor .provider-row .providers-header .expand.no-data {
  cursor: default;
  color: #000;
}
md-report-competitor .provider-row .providers-header .expand.no-data i {
  display: none;
}
md-report-competitor .provider-row .providers-header .expand i {
  margin-left: 5px;
}
md-report-competitor .provider-row .providers-list {
  list-style-type: none;
  margin-bottom: 0px;
  padding-left: 0px;
}
md-report-competitor .provider-row .providers-list .provider-item {
  padding: 5px 10px;
  padding-left: 20px;
  border-bottom: 1px solid #ddd;
}
md-report-competitor .provider-row .providers-list .provider-item .name {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
md-report-competitor .provider-row .providers-list .provider-item .name.linked {
  cursor: pointer;
  color: #1da4f0;
}
md-report-competitor .provider-row .md-more {
  border-top: none;
  margin: 0px;
  padding: 10px;
}
md-report-service-level {
  display: block;
}
md-report-service-level .row.no-data-row .no-data {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
md-report-service-level .report-table .col-grouping {
  width: 240px;
}
md-report-service-level .report-table .col-name {
  width: 210px;
}
md-report-service-level .report-table .column {
  max-width: 300px;
}
md-report-service-level .report-table .column:not(:first-child) {
  padding-left: 10px !important;
}
md-report-service-level .report-table .column:not(:last-child) {
  padding-right: 10px !important;
}
md-report-service-level .average-time {
  margin-left: 100px;
}
md-toolbar-grouping-picker {
  clear: none;
  display: inline-block;
}
md-report-status {
  display: block;
}
md-report-status .row.no-data-row .no-data {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
md-report-status .status-legend {
  font-size: 12px;
  color: #666;
  text-align: left;
}
md-report-status .status-legend .status-legend-item {
  clear: none;
  display: inline-block;
  margin-right: 8px;
}
md-report-status .status-legend .status-legend-item .color {
  clear: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -3px 3px 0 0;
  vertical-align: middle;
  border-radius: 50%;
}
md-report-status .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-status .report-table .col-grouping {
  width: 240px;
}
md-report-status .report-table .col-name {
  font-weight: 400;
  color: #666;
  width: 210px;
  padding-right: 10px;
  padding-left: 10px;
}
md-report-status .report-table .col-data {
  padding-right: 30px !important;
}
md-report-status .report-table .col-data > .bar {
  padding-left: 20px;
}
md-report-status .report-table .col-data .bar {
  position: relative;
  height: 10px;
  margin-top: 4px;
  padding-left: 0px;
  margin-right: 10px;
}
md-report-status .report-table .col-data .bar .status {
  height: 9px;
  overflow: hidden;
  float: left;
}
md-report-status .report-table .col-data .value-wrap {
  float: left;
  width: 0px;
}
md-report-status .report-table .col-data .value-wrap .value {
  font-weight: 600;
  color: #666;
  top: -6px;
  margin-left: 5px;
  position: absolute;
}
md-report-trends {
  display: block;
}
md-report-trends svg.nvd3-svg {
  overflow: hidden;
}
md-report-trends .nvd3 line.nv-guideline {
  stroke: #666;
}
md-report-contact-activity {
  display: block;
}
md-report-contact-activity .more {
  text-align: center;
  padding: 10px 0px;
}
md-report-contact-activity .more a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
md-report-contact-activity .rmd-list-manual .rmd-list-item:hover .column.col-name {
  background-color: #fff;
}
md-report-contact-activity .report-table .summary-row .summary-column {
  font-weight: 600;
}
md-report-contact-activity .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-contact-activity .report-table .col-data {
  position: relative;
  padding-right: 30px;
  padding-left: 10px;
  z-index: 1;
  text-align: center;
}
md-report-contact-activity .report-table .col-data.left {
  text-align: left;
  padding-left: 10px;
}
md-report-contact-activity .report-table .col-data > .bar {
  padding-left: 20px;
}
md-report-contact-activity .report-table .col-data .bar {
  position: relative;
  height: 10px;
  margin-top: 4px;
  padding-left: 0px;
  margin-right: 10px;
}
md-report-contact-activity .report-table .col-data .bar .gradient {
  background-color: #1a93d7;
  background: -webkit-linear-gradient(left, #1da4f0, #1a93d7);
  background: -moz-linear-gradient(left, #1da4f0, #1a93d7);
  background: -o-linear-gradient(left, #1da4f0, #1a93d7);
  background: -ms-linear-gradient(left, #1da4f0, #1a93d7);
  background: linear-gradient(to right, #1da4f0, #1a93d7);
  height: 10px;
  overflow: hidden;
  float: left;
}
md-report-contact-activity .report-table .col-data .value-wrap {
  float: left;
  width: 0px;
}
md-report-contact-activity .report-table .col-data .value-wrap .value {
  font-weight: 600;
  color: #666;
  top: -6px;
  margin-left: 5px;
  position: absolute;
}
md-report-contact-activity .report-table .col-name {
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  border-right: 1px solid #d0d0d0;
}
md-report-contact-activity .report-table .col-name.organization .group-parent {
  font-weight: 600;
}
md-report-contact-activity .report-table .col-name.user .group-child {
  padding-left: 10px;
}
md-report-contact-activity .report-table td.column.col-contact-name {
  min-width: 250px !important;
}
md-report-contact-activity .report-table .organization-not-specified {
  color: #808080;
}
md-report-referral-activity {
  display: block;
}
md-report-referral-activity .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-referral-activity .report-table .col-name {
  width: 210px;
}
md-report-referral-activity .report-table .col-data {
  position: relative;
  padding-right: 30px;
  padding-left: 10px;
  z-index: 1;
}
md-report-referral-activity .report-table .col-data {
  text-align: center;
}
md-report-referral-activity .report-table .col-data.left {
  text-align: left;
  padding-left: 10px;
}
md-report-referral-activity .report-table .col-data.strong {
  font-weight: 600;
}
md-report-communications {
  display: block;
}
md-report-communications .footnote {
  text-align: right;
  margin-top: 20px;
}
md-report-communications .footnote p {
  margin: 0px;
  font-size: 16px;
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-report-communications .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-communications .report-table .col-name {
  width: 270px !important;
  min-width: 270px !important;
  max-width: 270px !important;
}
md-report-volume {
  display: block;
}
md-report-volume .row.no-data-row .no-data {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
md-report-volume .report-table .rmd-list-item .column {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
md-report-volume .report-table .col-grouping {
  width: 240px;
}
md-report-volume .report-table .action-column,
md-report-volume .report-table .title-volume {
  width: 140px !important;
}
md-report-volume .report-table .column rmd-radio.form-control .radio {
  line-height: 15px !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
md-report-volume .report-table .column rmd-radio.form-control .radio label {
  font-size: 10px;
  padding-left: 20px !important;
  font-weight: 600;
  vertical-align: middle !important;
  color: #919191;
}
md-report-volume .report-table .column rmd-radio.form-control .radio label .fake {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
}
md-report-volume .report-table .column rmd-radio.form-control .radio label .fake .fa-check {
  width: 13px !important;
  line-height: 15px !important;
}
md-report-volume .report-table .col-name {
  font-weight: 400;
  color: #666;
  width: 210px;
}
md-report-volume .report-table .col-data {
  position: relative;
  padding-right: 30px !important;
  padding-left: 10px;
  z-index: 1;
}
md-report-volume .report-table .col-data > .bar {
  padding-left: 20px;
}
md-report-volume .report-table .col-data .bar {
  position: relative;
  height: 10px;
  margin-top: 4px;
  padding-left: 0px;
  margin-right: 10px;
}
md-report-volume .report-table .col-data .bar .gradient {
  background-color: #1a93d7;
  background: -webkit-linear-gradient(left, #1da4f0, #1a93d7);
  background: -moz-linear-gradient(left, #1da4f0, #1a93d7);
  background: -o-linear-gradient(left, #1da4f0, #1a93d7);
  background: -ms-linear-gradient(left, #1da4f0, #1a93d7);
  background: linear-gradient(to right, #1da4f0, #1a93d7);
  height: 10px;
  overflow: hidden;
  float: left;
}
md-report-volume .report-table .col-data .value-wrap {
  float: left;
  width: 0px;
}
md-report-volume .report-table .col-data .value-wrap .value {
  font-weight: 600;
  color: #666;
  top: -6px;
  margin-left: 5px;
  position: absolute;
}
.md-controller-appointment-manager-list .requested-dates {
  color: #f00;
}
.md-controller-appointment-manager-list .override-button-holder {
  position: absolute;
  right: 55px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  pointer: cursor;
}
.md-controller-appointment-manager-list .override-button-holder .icon {
  width: 16px;
}
.md-controller-appointment-manager-list .override-button-holder .icon i.fa.fa-ban.active {
  color: #da3549;
}
.md-controller-appointment-manager-list .text2 {
  font-size: 13px;
}
.md-controller-appointment-manager-list .mr-0 {
  margin-right: 0px !important;
}
.md-controller-appointment-manager-list .md-appointment-filters-state {
  margin-top: 0px;
}
.md-controller-appointment-manager-list .md-appointment-filters-state .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-controller-appointment-manager-list .md-appointment-filters-state .item .text {
  overflow: hidden;
}
.md-controller-appointment-manager-list .md-appointment-filters-state .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-appointment-manager-list input.md-form-control[type="text"][readonly] {
  background: unset;
  min-width: 205px;
  cursor: pointer;
}
.md-controller-appointment-manager-list .md-layout-stretch-wrap .md-layout-stretch-content {
  overflow: auto;
}
.md-controller-appointment-manager-list .md-layout-stretch-wrap .md-layout-stretch-content.scrollable {
  overflow: auto;
  height: inherit;
}
.md-controller-appointment-manager-list .md-layout-stretch-wrap .md-layout-stretch-content.fixed {
  overflow: hidden;
  height: inherit;
}
.md-controller-appointment-manager-list .md-toolbar.md-section-toolbar {
  line-height: normal;
  margin-bottom: 5px;
}
.md-controller-appointment-manager-list .md-toolbar .md-dropdown-menu {
  max-width: 400px;
}
.md-controller-appointment-manager-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: 500px;
  min-width: fit-content;
  width: 250px;
}
.md-controller-appointment-manager-list .md-toolbar md-toolbar-organization-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
  left: 0;
}
.md-controller-appointment-manager-list .md-toolbar .md-input-expand:focus {
  min-width: 475px;
}
.md-controller-appointment-manager-list .md-toolbar.right .group {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 15px;
}
.md-controller-appointment-manager-list .md-toolbar.right .md-form-group .bootstrap-switch {
  margin-bottom: 3px;
}
.md-controller-appointment-manager-list .md-toolbar.right .bootstrap-switch + .control-label {
  margin-right: 10px;
  margin-bottom: 3px;
}
.md-controller-appointment-manager-list .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control {
  text-transform: uppercase;
  line-height: 30px;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon {
  margin-right: 20px;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon i.fa {
  padding-right: 5px;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon .md-text {
  color: #919191;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters i.fa,
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .md-dropdown-group.page-setting-icon.has-filters .md-text {
  color: #1da4f0;
}
.md-controller-appointment-manager-list .md-toolbar.toolbar-control .control-filter i.fa {
  color: #1da4f0;
}
.md-controller-appointment-manager-list .md-toolbar .pulse {
  -webkit-animation: filter-pulse 2s ease infinite;
  -moz-animation: filter-pulse 2s ease infinite;
  -o-animation: filter-pulse 2s ease infinite;
  -ms-animation: filter-pulse 2s ease infinite;
  animation: filter-pulse 2s ease infinite;
}
@-moz-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes filter-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.md-controller-appointment-manager-list .md-toolbar-content {
  margin-bottom: 10px;
}
.md-controller-appointment-manager-list .md-toolbar-content .md-toolbar md-search-picker {
  width: unset;
}
.md-controller-appointment-manager-list .md-toolbar-content .md-toolbar .form-group {
  margin-right: 20px;
}
.md-controller-appointment-manager-list .md-toolbar-content .md-toolbar.right .form-group {
  margin-left: 10px;
  margin-right: 0px;
}
.md-controller-appointment-manager-list .appointment-row .count {
  min-width: fit-content;
  border-radius: 50%;
  background-color: #1da4f0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 2px;
  position: absolute;
  padding: 0 4px;
}
.md-controller-appointment-manager-list .appointment-row .appointment-status {
  clear: none;
  display: inline-block;
}
.md-controller-appointment-manager-list .appointment-row .appointment-status i {
  margin-left: 5px;
  color: #70c060;
}
.md-controller-appointment-manager-list .rmd-list-content .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-controller-appointment-manager-list .rmd-list-content .last-activity,
.md-controller-appointment-manager-list .rmd-list-content .payer {
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-controller-appointment-manager-list .rmd-list-content .column .reason-column {
  max-width: 350px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: max-content;
}
.md-controller-appointment-manager-list .rmd-list-content .column .appointment-action {
  margin-left: 20px;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-appointment-manager-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-appointment-manager-list .md-section-toolbar .page-setting-icon {
  font-size: 15px;
  margin-left: 4px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode {
  margin-left: 4px;
  display: inline-block;
  min-width: 192px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-container span {
  min-width: 160px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-container .ui-select-search {
  height: 40px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-container .ui-select-match .ui-select-match-text {
  margin-top: 3px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-container .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 15px;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .fa-times {
  display: none;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-bootstrap .ui-select-choices {
  margin-top: 15px;
  max-height: none;
}
.md-controller-appointment-manager-list md-string-picker.view-mode .ui-select-bootstrap .ui-select-match .btn {
  height: 40px;
}
.md-controller-appointment-manager-list .fc-event-title {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.md-controller-appointment-manager-list .fc-daygrid-day,
.md-controller-appointment-manager-list .fc-col-header-cell {
  border: 1px solid #ddd;
}
.md-controller-appointment-manager-list .fc-col-header-cell {
  background-color: #f2f2f2;
}
.md-controller-appointment-manager-list .fc-header-toolbar {
  margin-bottom: 0.5em !important;
  background-color: #f2f2f2;
  -webkit-box-shadow: 0px 1.5em 0px #f2f2f2;
  box-shadow: 0px 1.5em 0px #f2f2f2;
}
.md-controller-appointment-manager-list #calendar-container {
  height: inherit;
  position: relative;
}
.md-controller-appointment-manager-list .fc-event {
  cursor: pointer;
}
.md-controller-appointment-manager-list .fc-daygrid-event {
  cursor: pointer;
}
.md-controller-appointment-manager-list .fc-header-toolbar .fc-prev-button,
.md-controller-appointment-manager-list .fc-header-toolbar .fc-today-button {
  margin-top: 0.5em;
  margin-left: 0.5em;
}
.md-controller-appointment-manager-list .fc-header-toolbar .fc-next-button {
  margin-top: 0.5em;
  margin-right: 0.5em;
}
.md-controller-appointment-manager-list .md-loader.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}
md-appointment-status-list {
  display: block;
}
md-appointment-status-list .md-sidebar-filter-list ul.nested-filter-list li {
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
md-appointment-status-list .md-sidebar-filter-list .truncate {
  display: inherit !important;
  padding-right: 5px;
  max-width: 225px;
}
md-appointment-status-list .md-sidebar-filter-list li a.active .quantity {
  margin-right: -2px;
}
md-appointment-status-list .md-sidebar-filter-list li .md-text.section-header {
  text-transform: uppercase;
}
md-appointment-status-list .md-sidebar-filter-list.appointments {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dfdfdf;
}
.md-sidebar-filter-list .truncate {
  display: inherit !important;
  padding-right: 5px;
  max-width: 225px;
}
.md-sidebar-filter-list li a.active .quantity {
  margin-right: -2px;
}
.md-sidebar-filter-list li .md-text.section-header {
  text-transform: uppercase;
}
.md-sidebar-filter-list.intake {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dfdfdf;
}
md-appointment-editor {
  display: block;
}
md-appointment-editor .md-modal .modal-body .content-section {
  height: 100%;
}
md-appointment-editor .providers-dropdown-container {
  position: fixed;
  top: 165px /* header modal + header card */;
  left: calc(100% - 40px);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
md-appointment-editor .providers-dropdown-container.search {
  max-width: 518px /* modal aside controls width */;
}
.md-modal-schedule-appointment {
  height: inherit;
  overflow: hidden;
}
.md-modal-schedule-appointment .modal-dialog {
  margin-top: 10px;
  margin-bottom: 10px;
  height: calc(100vh - 50px);
  width: 90%;
}
.md-modal-schedule-appointment .modal-header {
  border-bottom: none;
  padding-bottom: 10px;
}
@media print {
  .md-modal-schedule-appointment .modal-dialog {
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
  }
}
.md-modal-schedule-appointment .modal-content {
  background: #fff !important;
  height: calc(100vh - 50px);
}
.md-modal-schedule-appointment .modal-body {
  padding-top: 10px;
  padding-bottom: 0px;
}
.md-modal-schedule-appointment .md-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-appointment-referral-sidebar {
  display: block;
}
md-appointment-referral-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-appointment-referral-sidebar .card .last-header-field {
  padding-bottom: 10px !important;
}
md-appointment-referral-sidebar .card.readOnly {
  cursor: default !important;
}
md-appointment-referral-sidebar md-panel md-panel-header-title .text1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
md-appointment-referral-sidebar md-panel md-panel-header-title.detail-panel-header.has-icon .display-icon {
  display: block;
  line-height: 20px;
  margin-right: 15px;
  background: #fff;
  font-size: 16px;
  color: #999;
}
md-appointment-referral-sidebar md-panel md-panel-header-title.detail-panel-header.has-icon rmd-system-id {
  position: unset;
}
md-appointment-referral-sidebar .collapsed-detail {
  font-size: 13px !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 18px !important;
}
md-appointment-referral-sidebar .detail-main md-avatar {
  margin-bottom: 5px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-appointment-sidebar {
  display: block;
}
md-appointment-sidebar .action-container .action-link {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1da4f0;
}
md-appointment-sidebar .action-container .action-link i {
  margin-right: 5px;
}
md-appointment-sidebar .tooltip-inner {
  width: 120px;
  white-space: normal;
}
md-appointment-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-appointment-sidebar .mt4 {
  margin-top: 4px;
}
md-appointment-sidebar .selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  padding-left: 1px;
}
md-appointment-sidebar .collapsed-detail {
  font-size: 13px !important;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  line-height: 18px !important;
}
md-appointment-sidebar div[class^='has-error'] .text2,
md-appointment-sidebar div[class*=' has-error'] .text2,
md-appointment-sidebar div[class^='has-error'] .dropdown-title,
md-appointment-sidebar div[class*=' has-error'] .dropdown-title,
md-appointment-sidebar div[class^='has-error'] .md-text.md-link,
md-appointment-sidebar div[class*=' has-error'] .md-text.md-link,
md-appointment-sidebar div[class^='has-error'] .action-link,
md-appointment-sidebar div[class*=' has-error'] .action-link {
  color: #e36776 !important;
}
md-appointment-sidebar div[class^='has-error'] input,
md-appointment-sidebar div[class*=' has-error'] input {
  border-color: #e36776 !important;
}
md-appointment-sidebar .edit-label.has-error {
  color: #e36776;
}
md-appointment-sidebar .edit-form .has-error .md-dropdown-group .dropdown .dropdown-toggle {
  color: #e36776;
}
md-appointment-sidebar .has-error {
  color: #e36776;
}
md-appointment-sidebar .has-error .form-control {
  border-color: #e36776;
}
md-appointment-sidebar .md-form-group.has-error .control-label {
  color: #e36776 !important;
}
md-appointment-sidebar .no-error {
  border-color: #d1d1d1 !important;
}
md-appointment-sidebar .no-error .form-control {
  border-color: #d1d1d1 !important;
}
md-appointment-sidebar md-panel.read-only .rmd-editable {
  cursor: default;
}
md-appointment-sidebar md-panel.read-only .edit-icon .fa-pencil {
  display: none !important;
}
md-appointment-sidebar md-panel .appointment-form {
  padding-bottom: 20px;
}
md-appointment-sidebar .rmd-editable.read-only .rmd-editable {
  cursor: default;
}
md-appointment-sidebar .rmd-editable.read-only .edit-icon .fa-pencil {
  display: none !important;
}
md-appointment-sidebar .form-group.md-form-group.md-picker-up .md-appointment-status-picker-menu.dropdown-menu.md-dropdown-menu {
  position: absolute;
  z-index: 1000;
  overflow-y: auto;
  -webkit-transform: translateY(-110%);
  -moz-transform: translateY(-110%);
  -o-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
}
md-appointment-intake-sidebar .attachment {
  margin-top: 0px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 500px;
  padding: 5px;
}
md-appointment-intake-sidebar .attachment:last-child {
  margin-bottom: 10px;
}
md-appointment-intake-sidebar .md-form-question {
  font-size: 14px;
  color: #000;
  margin-left: 0;
  margin-right: 0;
}
md-appointment-intake-sidebar .md-form-question .question-answer {
  line-height: 22px;
  margin-top: 4px;
}
md-appointment-intake-sidebar .md-form-question .question-answer .answer {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  color: #000;
}
md-appointment-schedule {
  display: block;
}
md-appointment-schedule .md-controller-provider-directory .providers md-public-provider-profile {
  min-width: 300px;
}
md-registration-child-editor {
  display: block;
}
md-registration-child-editor .modal-body {
  height: calc(100vh - 75px - 81px);
  overflow-y: hidden;
  overflow-x: hidden;
}
md-registration-child-form {
  display: block;
  width: 100%;
}
md-registration-child-form .zip_code {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
md-tax-id-picker {
  display: block;
}
md-tax-id-picker .split1 {
  width: calc(50%) !important;
  margin-left: 0px !important;
  max-width: unset !important;
  margin-right: 10px;
}
md-tax-id-picker .split2 {
  width: calc(50% - 15px);
}
md-tax-id-picker .md-form-group {
  margin-bottom: 10px;
}
md-tax-id-picker .add-link {
  font-size: 14px;
  cursor: pointer;
  display: block;
  clear: both;
}
md-tax-id-picker .add-link i {
  margin-right: 5px;
}
md-tax-id-picker .text-muted {
  color: #b1b1b1;
}
md-tax-id-picker .input-row .type-picker {
  min-width: 150px;
  max-width: 150px;
  margin-left: 10px;
}
md-tax-id-picker .no-data {
  padding-bottom: 15px;
}
md-tax-id-picker .ui-select-match-text {
  padding-right: 0px !important;
}
md-tax-id-picker .ui-select-match-text .ui-select-placeholder {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
md-tax-id-picker .tax-id-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 100%;
}
md-tax-id-picker .tax-col-sm-12 {
  width: 100%;
  float: left;
}
md-tax-id-picker .tax-col-sm-6 {
  width: 50%;
  float: left;
}
md-tax-id-picker .tax-col-sm-4 {
  width: 33.33%;
  float: left;
}
md-tax-id-picker .tax-col-sm-3 {
  width: 25%;
  float: left;
}
md-tax-id-picker .sidebar-integration-system {
  width: 90%;
  float: left;
  margin-bottom: 10px;
}
md-tax-id-picker .sidebar-delete {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-tax-id-picker .sidebar-delete .danger {
  color: #da3549 !important;
}
md-tax-id-picker .md-btn.icon.danger {
  padding-left: 7px !important;
}
md-tax-id-picker .sidebar-data-mapping {
  margin-bottom: 10px;
}
md-licensed-master-users-editor {
  display: block;
}
md-licensed-master-users-editor .modal-body {
  height: calc(100vh - 75px - 81px);
  overflow-y: hidden;
  overflow-x: hidden;
}
md-licensed-master-users-form {
  display: block;
  width: 100%;
}
md-licensed-master-users-form .header-row {
  margin-top: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-licensed-master-users-form .header-row .header-column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 110px;
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
}
md-licensed-master-users-form .header-row .data-column {
  min-width: 60px;
  margin-right: 10px;
}
md-licensed-master-users-form .header-row .header-detail.left {
  margin-left: 125px;
  width: 125px;
}
md-change-password-editor {
  display: block;
}
md-change-password-editor .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-change-password-editor .password-check.alert {
  background-color: #efefef;
  font-size: 12px;
  border-radius: 3px;
}
md-change-password-editor .password-check.alert::before {
  display: none;
}
md-change-password-editor .password-check.alert::after {
  display: none;
}
md-change-password-editor .password-form {
  max-width: 550px;
}
md-change-password-editor .password-form .form-group .control-label {
  font-weight: 600;
}
.md-controller-accounts-list {
  display: block;
}
.md-controller-accounts-list .mobile-toolbar .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 15px;
}
.md-controller-accounts-list .mobile-toolbar a.md-link i.fa {
  font-size: 24px;
}
.md-controller-accounts-list .mobile-toolbar .form-group {
  margin-bottom: -15px;
}
.md-controller-accounts-list .text2 {
  font-size: 13px;
}
.md-controller-accounts-list .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 50px);
}
.md-controller-accounts-list .referral-links {
  display: -webkit-inline-box;
  width: max-content;
}
.md-controller-accounts-list .md-toolbar.md-section-toolbar {
  margin-left: 2px;
}
.md-controller-accounts-list .md-toolbar.md-section-toolbar .offset .md-dropdown-group .dropdown .dropdown-menu {
  left: 100%;
  max-width: 175px;
}
.md-controller-accounts-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu,
.md-controller-accounts-list .md-toolbar md-search-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
}
@media (max-width: 767px) {
  .md-controller-accounts-list .md-toolbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .md-controller-accounts-list .md-toolbar .dropdown-menu.md-dropdown-menu {
    position: absolute !important;
    width: calc(100vw - 30px) !important;
    min-width: unset !important;
    max-width: calc(100vw - 30px) !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -o-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}
.md-controller-accounts-list .rmd-list-content .header-action i.fa-fax {
  font-size: 10px;
  line-height: 17px;
  vertical-align: text-bottom;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container md-referral-status-picker {
  margin-top: -7px;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container md-referral-status-picker .dropdown {
  margin-left: 15px;
}
.md-controller-accounts-list .rmd-list-content .batch-operator-container md-referral-status-picker .status-wrap {
  display: none;
}
.md-controller-accounts-list .rmd-list-item .group.profile-group {
  max-width: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-controller-accounts-list .rmd-list-item .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-controller-accounts-list .rmd-list-item .group.profile-group .mobile-details {
  display: none;
}
@media (max-width: 767px) {
  .md-controller-accounts-list .rmd-list-item .group.profile-group .mobile-details {
    display: block;
  }
}
@media (max-width: 767px) {
  .md-controller-accounts-list .md-dropdown-group {
    font-size: 14px;
  }
  .md-controller-accounts-list .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-accounts-list .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding-top: 0px;
  }
  .md-controller-accounts-list .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-accounts-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters i.fa,
  .md-controller-accounts-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters .name {
    color: #1da4f0;
  }
  .md-controller-accounts-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 15px - 50px);
  }
  .md-controller-accounts-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 35px - 15px - 50px);
  }
  .md-controller-accounts-list rmd-list-pagination {
    margin-top: 5px;
  }
}
.md-controller-accounts-list .form-group.date-picker-group {
  margin: 0px !important;
}
.md-controller-accounts-list .custom-status-position ul {
  margin-left: 28px;
}
.md-controller-accounts-list .search-input {
  width: 260px !important;
}
.md-controller-accounts-list .toolbar-column {
  width: auto !important;
  max-width: 150px !important;
}
.md-controller-accounts-list .account-toolbar-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.md-controller-accounts-list .fa-circle {
  display: inline-block;
  font-size: 18px;
}
.md-controller-accounts-list .fa-circle.red {
  color: #f00;
}
.md-controller-accounts-list .fa-circle.green {
  color: #008000;
}
.md-controller-accounts-list .fa-circle.yellow {
  color: #ff0;
}
.md-controller-accounts-list td.column.center {
  text-align: center;
}
.md-controller-organization-list-account-name {
  font-weight: 600;
}
.md-controller-organization-dashboard {
  display: block;
}
.md-controller-organization-dashboard h1.title .account-name {
  font-weight: 500;
  display: inline;
}
.md-controller-organization-dashboard .md-section-header {
  border-bottom: 0px;
}
.md-controller-organization-dashboard .fa-circle {
  display: inline-block;
  font-size: 18px;
}
.md-controller-organization-dashboard .fa-circle.red {
  color: #f00;
}
.md-controller-organization-dashboard .fa-circle.green {
  color: #008000;
}
.md-controller-organization-dashboard .fa-circle.yellow {
  color: #ff0;
}
.md-controller-organization-dashboard td.column.center {
  text-align: center;
}
md-health-account-objectives-list {
  display: block;
}
md-health-account-objectives-list .md-layout-stretch-wrap.objectives-list {
  height: calc(100vh - 193px) !important;
}
md-health-account-objectives-list .fa-circle {
  display: inline-block;
  font-size: 18px;
}
md-health-account-objectives-list .fa-circle.red {
  color: #f00;
}
md-health-account-objectives-list .fa-circle.green {
  color: #008000;
}
md-health-account-objectives-list .fa-circle.yellow {
  color: #ff0;
}
md-health-account-objectives-list td.column-value.center {
  text-align: center;
}
md-health-account-objectives-list th.column.health,
md-health-account-objectives-list td.column-value.health {
  width: 20px !important;
}
md-health-account-adoption-list {
  display: block;
}
md-health-account-adoption-list .md-layout-stretch-wrap.adoption-list {
  height: calc(100vh - 193px) !important;
}
md-health-account-adoption-list .fa-circle {
  display: inline-block;
  font-size: 18px;
}
md-health-account-adoption-list .fa-circle.red {
  color: #f00;
}
md-health-account-adoption-list .fa-circle.green {
  color: #008000;
}
md-health-account-adoption-list .fa-circle.yellow {
  color: #ff0;
}
md-health-account-adoption-list td.column-value.center {
  text-align: center;
}
md-health-account-adoption-list th.column.health,
md-health-account-adoption-list td.column-value.health {
  width: 20px !important;
}
md-health-account-adoption-list td.column.column-value.module {
  border: 1px solid #d0d0d0;
}
md-health-account-adoption-list .chart-container {
  width: 100%;
  height: 50px;
}
md-health-account-adoption-list .center-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
md-health-account-adoption-list .center-container {
  text-align: center;
}
md-health-account-adoption-list .back-button {
  display: inline-block;
  margin-top: 30px;
}
md-health-account-adoption-list .text1.bold {
  font-weight: 600;
}
md-health-account-adoption-list th.column.module,
md-health-account-adoption-list td.column-value.module {
  width: 280px !important;
}
.md-master-account-staff {
  display: block;
}
.md-master-account-staff rmd-toolbar-dropdown .md-dropdown-group .dropdown .dropdown-toggle.disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.md-master-account-staff rmd-radio label {
  margin-left: 5px;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
.md-master-account-staff .toolbar-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.md-master-account-staff .toolbar-container .right-side {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.md-master-account-staff .toolbar-container .right-side .create-button {
  margin-left: 20px;
}
.md-master-account-staff .toolbar-container .right-side .create-button .dropdown-menu {
  min-width: 105px;
  width: 105px;
  cursor: pointer;
  background-color: #1da4f0;
}
.md-master-account-staff .toolbar-container .right-side .create-button .dropdown-menu a {
  color: #fff;
}
.md-master-account-staff .toolbar-container .right-side .create-button .dropdown-menu a:hover {
  background-color: #4ab6f3;
}
.md-master-account-staff .admin-tag {
  clear: none;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  margin-left: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #1da4f0;
  color: #fff;
}
.md-controller-parent-profile {
  display: block;
  overflow-y: hidden;
}
.md-controller-parent-profile md-account-organization .md-pane.pane-account-profile {
  padding-left: 0px;
  padding-top: 0px;
}
.md-controller-parent-profile md-account-organization .md-pane {
  height: calc(100vh - 50px - 40px - 51px - 20px);
}
.md-controller-provider-list .mobile-toolbar .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 15px;
}
.md-controller-provider-list .mobile-toolbar a.md-link i.fa {
  font-size: 24px;
}
.md-controller-provider-list .mobile-toolbar .form-group {
  margin-bottom: -15px;
}
.md-controller-provider-list .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 55px);
}
.md-controller-provider-list .md-layout-stretch-wrap.has-filters-selected {
  height: calc(100vh - 200px - 55px - 30px);
}
.md-controller-provider-list .md-toolbar.md-section-toolbar {
  margin-left: 0px;
}
.md-controller-provider-list .md-toolbar.md-section-toolbar md-search-picker {
  width: auto;
}
.md-controller-provider-list .md-toolbar.md-section-toolbar .control-label {
  font-weight: 600;
}
.md-controller-provider-list .md-toolbar.md-section-toolbar .toolbar-picker .md-dropdown-menu {
  width: fit-content;
  max-width: 300px;
}
.md-controller-provider-list .md-toolbar.md-section-toolbar .toolbar-picker .md-dropdown-menu.search {
  min-width: 200px;
}
@media (max-width: 767px) {
  .md-controller-provider-list .md-toolbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .md-controller-provider-list .md-toolbar .dropdown-menu.md-dropdown-menu {
    position: absolute !important;
    width: calc(100vw - 30px) !important;
    min-width: unset !important;
    max-width: calc(100vw - 30px) !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -o-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}
.md-controller-provider-list .md-selected-filters {
  margin-top: 0px;
}
.md-controller-provider-list .md-selected-filters .item {
  clear: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0 5px 5px 0;
  padding: 5px 5px;
  cursor: default;
}
.md-controller-provider-list .md-selected-filters .item .text {
  overflow: hidden;
}
.md-controller-provider-list .md-selected-filters .item .fa-times {
  float: right;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.md-controller-provider-list .column .dropdown {
  width: 100%;
  text-align: right;
}
.md-controller-provider-list .column .stats .text1,
.md-controller-provider-list .column .stats .text2 {
  vertical-align: bottom;
}
.md-controller-provider-list md-toolbar-specialty-picker .dropdown-menu {
  left: auto;
  right: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  max-width: fit-content !important;
  min-width: fit-content !important;
}
.md-controller-provider-list .provider-row .column .group {
  max-width: 90%;
}
.md-controller-provider-list .rmd-list-content .select-all-header-check .checkbox {
  margin-left: 5px;
}
.md-controller-provider-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
@media (max-width: 767px) {
  .md-controller-provider-list form.toolbar-form {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .md-controller-provider-list .md-dropdown-group {
    font-size: 14px;
  }
  .md-controller-provider-list .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-provider-list .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding-top: 0px;
  }
  .md-controller-provider-list .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-provider-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters i.fa,
  .md-controller-provider-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters .name {
    color: #1da4f0;
  }
  .md-controller-provider-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 15px - 50px);
  }
  .md-controller-provider-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 35px - 15px - 50px);
  }
  .md-controller-provider-list rmd-list-pagination {
    margin-top: 5px;
  }
}
md-toolbar-language-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-gender-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-gender-picker {
  clear: none;
  display: inline-block;
}
.rmd-list-infinite .md-more {
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.rmd-list-infinite .md-more a {
  display: block;
  cursor: pointer;
  color: #1da4f0;
}
.rmd-list-infinite .md-more a:hover,
.rmd-list-infinite .md-more a:focus {
  color: #4ab6f3;
}
.md-controller-provider-details {
  display: block;
}
.md-controller-provider-details .staff {
  margin-right: -100px !important;
  margin-left: 5px;
}
.md-controller-provider-details .md-sidebar .provider-card-item {
  margin-bottom: 10px;
}
.md-controller-provider-details .md-sidebar .provider-card-item:last-child {
  margin-bottom: 0;
}
.md-controller-provider-details .md-sidebar .sidebar-pane {
  margin-bottom: 10px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane h2 {
  font-weight: 700;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .phone-list-item:first-child {
  margin-top: 5px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .phone-list-item .phone-number,
.md-controller-provider-details .md-sidebar .sidebar-pane .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .phone-list-item .phone-type {
  margin-left: 10px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .sidebar-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .sidebar-header h2 {
  margin-bottom: 0px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .location {
  margin-bottom: 20px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .location:last-child {
  margin-bottom: 0px;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .location h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #000;
}
.md-controller-provider-details .md-sidebar .sidebar-pane .insurance {
  line-height: 24px;
}
.md-controller-provider-details .provider-details .affiliations {
  margin-top: 5px;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  padding-left: 100px;
  margin-bottom: -5px;
  color: #1da4f0;
}
.md-controller-provider-details .provider-details .provider-heading {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-controller-provider-details .provider-details .provider-heading .provider-toolbar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: right;
  max-width: 250px;
}
@media (min-width: 1200px) {
  .md-controller-provider-details .provider-details .provider-heading .provider-toolbar {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 300px;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    max-width: 450px;
  }
}
.md-controller-provider-details .provider-details .provider-heading .provider-toolbar .form-group {
  margin-bottom: 10px;
}
.md-controller-provider-details .provider-details .provider-heading .provider-toolbar .form-group + .form-group {
  margin-left: 10px;
}
.md-controller-provider-details .provider-details .provider-heading .provider-toolbar .md-btn {
  padding: 0px 15px;
}
.md-controller-provider-details .provider-details .provider-heading md-provider-profile {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 0px;
}
.md-controller-provider-details .provider-details .detail-pane {
  margin-bottom: 10px;
}
.md-controller-provider-details .provider-details .detail-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 10px;
}
.md-controller-provider-details .popover {
  max-width: none;
}
.md-controller-provider-details .popover-content {
  padding: 3px 4px;
}
.md-controller-provider-details .provider-map {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
  display: grid;
}
.md-controller-provider-details .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
.md-controller-provider-details .mobile-header .mobile-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.md-controller-provider-details .mobile-header .mobile-toolbar a.md-link {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-provider-details .mobile-header .mobile-toolbar a.md-link i.fa {
  font-size: 30px;
}
.md-controller-provider-details .mobile-header .mobile-toolbar .mobile-profile-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.md-controller-provider-details .mobile-header .mobile-toolbar .mobile-profile-section .contact-name {
  padding: 10px 0;
}
.md-controller-provider-details .mobile-header .mobile-toolbar .add-button-container {
  width: 25.72px;
}
@media (max-width: 767px) {
  .md-controller-provider-details .card ul.detail-list {
    padding-top: 0px;
  }
  .md-controller-provider-details .card .md-toolbar.text-center {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .md-controller-provider-details .card .detail-main {
    margin-bottom: 10px;
  }
  .md-controller-provider-details .card md-provider-info .provider-info .text-section {
    padding: 10px 0;
  }
  .md-controller-provider-details .card md-provider-info .provider-info .text-section:first-child {
    margin-top: 10px;
    border-top: 1px solid #e0e0e0;
  }
  .md-controller-provider-details .card md-provider-profile h1,
  .md-controller-provider-details .card md-provider-profile .profile-text,
  .md-controller-provider-details .card md-provider-profile .provider-profile {
    display: none;
  }
  .md-controller-provider-details .card md-provider-profile .profile-content {
    margin-top: 0;
  }
  .md-controller-provider-details .card md-provider-profile .detail-row.mobile {
    display: block;
  }
  .md-controller-provider-details .card .location {
    margin-bottom: 10px;
  }
  .md-controller-provider-details .card .location:last-child {
    margin-bottom: 0px;
  }
  .md-controller-provider-details .card .location h4 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #000;
  }
  .md-controller-provider-details .card .location .edit-display.phone-list-item {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
  .md-controller-provider-details .card .location .edit-display.phone-list-item .phone-number {
    margin-right: 5px;
  }
  .md-controller-provider-details .card .insurance .text1 {
    line-height: 24px;
  }
  .md-controller-provider-details .header-preview {
    display: none;
  }
  .md-controller-provider-details .header-wrap {
    border-bottom: none !important;
  }
  .md-controller-provider-details .md-pane.panel.collapsed .header-wrap {
    padding-bottom: 0px !important;
  }
  .md-controller-provider-details .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-provider-details .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .md-controller-provider-details .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  .md-controller-provider-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.first-row {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .md-controller-provider-details .md-tabpanel-tabs .md-toolbar {
    display: none;
  }
}
md-provider-card {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
md-provider-card .card {
  width: 100%;
}
.rmd-list-infinite .md-more {
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.rmd-list-infinite .md-more a {
  display: block;
  cursor: pointer;
  color: #1da4f0;
}
.rmd-list-infinite .md-more a:hover,
.rmd-list-infinite .md-more a:focus {
  color: #4ab6f3;
}
.md-controller-provider-organization-details {
  display: block;
}
.md-controller-provider-organization-details .affiliations {
  margin-top: 5px;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  padding-left: 102px;
  margin-bottom: -5px;
  color: #1da4f0;
}
.md-controller-provider-organization-details .office-photo-header {
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 12px;
}
.md-controller-provider-organization-details .md-sidebar .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
.md-controller-provider-organization-details .md-sidebar .provider-card-item {
  margin-bottom: 10px;
}
.md-controller-provider-organization-details .md-sidebar .provider-card-item:last-child {
  margin-bottom: 0;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane {
  margin-bottom: 10px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane h2 {
  font-weight: 700;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .sidebar-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .sidebar-header h2 {
  margin-bottom: 0px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location {
  margin-bottom: 20px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location .phone-list-item:first-child {
  margin-top: 5px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location .phone-list-item .phone-number,
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location .phone-list-item .phone-type {
  margin-left: 10px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location:last-child {
  margin-bottom: 0px;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .location h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #000;
}
.md-controller-provider-organization-details .md-sidebar .sidebar-pane .insurance {
  line-height: 24px;
}
.md-controller-provider-organization-details .detail-pane {
  margin-bottom: 10px;
}
.md-controller-provider-organization-details .detail-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  margin-bottom: 10px;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .logo-group {
  margin-bottom: 0px;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .md-form-group {
  margin-bottom: 0px;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .gallery-image {
  cursor: pointer;
  position: relative;
  width: 250px;
  height: 250px;
  margin: 5px 20px;
  border-radius: 3px;
  display: inline-block;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .gallery-image .preview-image {
  background-size: cover;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .gallery-image .toolbar {
  position: absolute;
  top: 15px;
  right: 15px;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .gallery-image .toolbar a {
  display: block;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border-radius: 50%;
  text-align: center;
  background: #e36776;
}
.md-controller-provider-organization-details .detail-pane .office-photos-row .organization-photos .gallery-image .toolbar a i {
  line-height: 20px;
  color: #fff;
  vertical-align: super;
}
.md-controller-provider-organization-details .detail-pane .provider-heading {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: right;
  max-width: 250px;
}
@media (min-width: 1200px) {
  .md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 300px;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    max-width: 450px;
  }
}
.md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar .form-group {
  margin-bottom: 10px;
}
.md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar .form-group + .form-group {
  margin-left: 10px;
}
.md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar .md-btn {
  padding: 0px 15px;
}
.md-controller-provider-organization-details .detail-pane .provider-heading .provider-toolbar .provider-toolbar-content {
  display: contents;
}
.md-controller-provider-organization-details .detail-pane .provider-heading md-provider-organization-profile {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 0px;
}
.md-controller-provider-organization-details .popover {
  max-width: none;
}
.md-controller-provider-organization-details .popover-content {
  padding: 3px 4px;
}
.md-controller-provider-organization-details .provider-map {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  display: grid;
  border: 1px solid #c0c0c0;
}
.md-controller-provider-organization-details .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar a.md-link {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar a.md-link i.fa {
  font-size: 30px;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar .mobile-profile-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar .mobile-profile-section .contact-name {
  padding: 10px 0;
}
.md-controller-provider-organization-details .mobile-header .mobile-toolbar .add-button-container {
  width: 25.72px;
}
@media (max-width: 767px) {
  .md-controller-provider-organization-details .card ul.detail-list {
    padding-top: 0px;
  }
  .md-controller-provider-organization-details .card .md-toolbar.text-center {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .md-controller-provider-organization-details .card .detail-main {
    margin-bottom: 10px;
  }
  .md-controller-provider-organization-details .card md-provider-info .provider-info .text-section {
    padding: 10px 0;
  }
  .md-controller-provider-organization-details .card md-provider-info .provider-info .text-section:first-child {
    margin-top: 10px;
    border-top: 1px solid #e0e0e0;
  }
  .md-controller-provider-organization-details .card md-provider-organization-profile h1,
  .md-controller-provider-organization-details .card md-provider-organization-profile .provider-profile {
    display: none;
  }
  .md-controller-provider-organization-details .card md-provider-organization-profile .profile-content {
    margin-top: 0;
  }
  .md-controller-provider-organization-details .card md-provider-organization-profile .profile-content .text2 {
    color: #000;
  }
  .md-controller-provider-organization-details .card .location {
    margin-bottom: 10px;
  }
  .md-controller-provider-organization-details .card .location:last-child {
    margin-bottom: 0px;
  }
  .md-controller-provider-organization-details .card .location h4 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #000;
  }
  .md-controller-provider-organization-details .card .location .edit-display.phone-list-item {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
  .md-controller-provider-organization-details .card .location .edit-display.phone-list-item .phone-number {
    margin-right: 5px;
  }
  .md-controller-provider-organization-details .card .insurance .text1 {
    line-height: 24px;
  }
  .md-controller-provider-organization-details .header-preview {
    display: none;
  }
  .md-controller-provider-organization-details .header-wrap {
    border-bottom: none !important;
  }
  .md-controller-provider-organization-details .md-pane.panel.collapsed .header-wrap {
    padding-bottom: 0px !important;
  }
  .md-controller-provider-organization-details .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-provider-organization-details .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .md-controller-provider-organization-details .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  .md-controller-provider-organization-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.first-row {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .md-controller-provider-organization-details .md-tabpanel-tabs .md-toolbar {
    display: none;
  }
}
md-provider-organization-profile {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
md-provider-organization-profile .provider-profile {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 20px;
}
md-provider-organization-profile .provider-profile .avatar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: -15px;
}
md-provider-organization-profile .provider-profile .npi {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
md-provider-organization-profile .profile-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  min-width: 0px;
}
md-provider-organization-profile .profile-content h1 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #000;
}
md-provider-organization-profile .profile-content .accept-patients {
  line-height: 20px;
  position: absolute;
  bottom: 0;
}
md-provider-organization-profile .profile-content i {
  line-height: 20px;
  vertical-align: bottom;
  color: #1da4f0;
  margin-right: 5px;
}
md-provider-organization-profile .profile-content .details-row {
  line-height: 20px;
  position: absolute;
  bottom: 0;
  min-width: 200%;
}
md-provider-organization-profile .profile-content .details-row .affiliation-level {
  margin-right: 20px;
}
md-provider-organization-stats {
  display: block;
}
md-provider-organization-stats .provider-stats {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
  md-provider-organization-stats .provider-stats {
    margin-top: 0px;
  }
}
md-provider-organization-stats .provider-stats ul.stat-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
@media (max-width: 767px) {
  md-provider-organization-stats .provider-stats ul.stat-list {
    margin: 0 -15px;
  }
}
md-provider-organization-stats .provider-stats ul.stat-list li.stat {
  clear: none;
  display: inline-block;
  width: 33.333333333333336%;
}
md-provider-organization-stats .provider-stats ul.stat-list li.stat .value,
md-provider-organization-stats .provider-stats ul.stat-list li.stat .name {
  text-align: center;
}
md-provider-organization-stats .provider-stats ul.stat-list li.stat .value {
  font-size: 24px;
  line-height: 30px;
  color: #000;
}
@media (max-width: 767px) {
  md-provider-organization-stats .provider-stats ul.stat-list li.stat .value {
    font-size: 20px;
  }
}
md-provider-organization-stats .provider-stats ul.stat-list li.stat .name {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  color: #666;
}
@media (max-width: 767px) {
  md-provider-organization-stats .provider-stats ul.stat-list li.stat .name {
    line-height: 12px;
    text-transform: none;
  }
}
.md-controller-contact-list {
  display: block;
}
.md-controller-contact-list .mobile-toolbar .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 15px;
}
.md-controller-contact-list .mobile-toolbar a.md-link i.fa {
  font-size: 24px;
}
.md-controller-contact-list .mobile-toolbar .form-group {
  margin-bottom: -15px;
}
.md-controller-contact-list .text2 {
  font-size: 13px;
}
.md-controller-contact-list .referral-links {
  display: -webkit-inline-box;
  width: max-content;
}
.md-controller-contact-list .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 50px);
}
.md-controller-contact-list .md-toolbar.md-section-toolbar {
  margin-left: 2px;
}
.md-controller-contact-list .md-toolbar.md-section-toolbar .offset .md-dropdown-group .dropdown .dropdown-menu {
  left: 100%;
  max-width: 175px;
}
.md-controller-contact-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu,
.md-controller-contact-list .md-toolbar md-search-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: 250px;
}
.md-controller-contact-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu {
  max-width: fit-content;
  min-width: fit-content;
}
@media (max-width: 767px) {
  .md-controller-contact-list .md-toolbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .md-controller-contact-list .md-toolbar .dropdown-menu.md-dropdown-menu {
    position: absolute !important;
    width: calc(100vw - 30px) !important;
    max-width: calc(100vw - 30px) !important;
    min-width: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -o-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}
.md-controller-contact-list .rmd-list-content .header-action i.fa-fax {
  font-size: 10px;
  line-height: 17px;
  vertical-align: text-bottom;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container md-referral-status-picker {
  margin-top: -7px;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container md-referral-status-picker .dropdown {
  margin-left: 15px;
}
.md-controller-contact-list .rmd-list-content .batch-operator-container md-referral-status-picker .status-wrap {
  display: none;
}
.md-controller-contact-list .rmd-list-item .group.profile-group {
  max-width: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-controller-contact-list .rmd-list-item .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-controller-contact-list .rmd-list-item .group.profile-group .mobile-details {
  display: none;
}
@media (max-width: 767px) {
  .md-controller-contact-list .rmd-list-item .group.profile-group .mobile-details {
    display: block;
  }
}
@media (max-width: 767px) {
  .md-controller-contact-list .md-dropdown-group {
    font-size: 14px;
  }
  .md-controller-contact-list .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-contact-list .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding-top: 0px;
  }
  .md-controller-contact-list .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-contact-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters i.fa,
  .md-controller-contact-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters .name {
    color: #1da4f0;
  }
  .md-controller-contact-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 15px - 50px);
  }
  .md-controller-contact-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 35px - 15px - 50px);
  }
  .md-controller-contact-list rmd-list-pagination {
    margin-top: 5px;
  }
}
md-toolbar-affiliation-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-other-picker {
  clear: none;
  display: inline-block;
}
md-mobile-sort-picker {
  display: block;
}
md-mobile-sort-picker .md-dropdown-group {
  font-size: 14px;
}
md-mobile-sort-picker .sort-arrows-container {
  margin-left: 5px;
  color: #1da4f0;
  font-size: 20px;
}
.md-controller-contact-details {
  display: block;
}
@media (min-width: 767px) {
  .md-controller-contact-details .mobile {
    display: none !important;
  }
}
.md-controller-contact-details .organization-item {
  margin-bottom: 10px;
}
.md-controller-contact-details .mobile-header .mobile-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.md-controller-contact-details .mobile-header .mobile-toolbar a.md-link {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-contact-details .mobile-header .mobile-toolbar a.md-link i.fa {
  font-size: 30px;
}
.md-controller-contact-details .mobile-header .mobile-toolbar .mobile-profile-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.md-controller-contact-details .mobile-header .mobile-toolbar .mobile-profile-section .contact-name {
  padding: 10px 0;
}
.md-controller-contact-details .mobile-header .mobile-toolbar .add-button-container {
  width: 25.72px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 15px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group {
  font-size: 14px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-toggle i {
  color: #000;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-menu {
  position: fixed;
  left: 15px;
  right: 15px;
  width: auto;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-menu li {
  border-bottom: $_borderSeparator;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-menu li a.phone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options .md-dropdown-group .text1 {
  font-size: 16px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-text,
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-call {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  border: none;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-text.disabled i.fa,
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-call.disabled i.fa {
  color: #e0e0e0;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-text i.fa,
.md-controller-contact-details .mobile-header .mobile-contact-options button.a.option-call i.fa {
  font-size: 25px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-email {
  background: none;
  border: none;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-email.disabled i.fa {
  color: #e0e0e0;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-email i.fa {
  font-size: 25px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-email a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account {
  background: none;
  border: none;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa {
  font-size: 25px;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.btn-toolbar-grey {
  color: #727272;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.btn-toolbar-success {
  color: #cf7a15;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info-secondary {
  color: #5b8e24;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info {
  color: #1da4f0;
}
.md-controller-contact-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info.active {
  background-color: #fefeff;
  background: -webkit-linear-gradient(top, #e9f6fd, #fefeff);
  background: -moz-linear-gradient(top, #e9f6fd, #fefeff);
  background: -o-linear-gradient(top, #e9f6fd, #fefeff);
  background: -ms-linear-gradient(top, #e9f6fd, #fefeff);
  background: linear-gradient(to bottom, #e9f6fd, #fefeff);
}
@media (max-width: 767px) {
  .md-controller-contact-details md-task-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 15px - 10px - 41px - 108px - 72px - 30px - 34px - 50px);
  }
  .md-controller-contact-details md-task-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 15x - 10px - 41px - 108px - 72px - 30px - 34px - 50px - 15px);
  }
  .md-controller-contact-details md-task-list .task-details {
    max-width: calc(100vw - 40px - 40px - 42px - 30px - 5px);
  }
  .md-controller-contact-details .card ul.detail-list {
    padding-top: 0px;
  }
  .md-controller-contact-details .card .md-toolbar.text-center {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .md-controller-contact-details .header-preview {
    display: none;
  }
  .md-controller-contact-details .header-wrap {
    border-bottom: none !important;
  }
  .md-controller-contact-details .md-pane.panel.collapsed .header-wrap {
    padding-bottom: 0px !important;
  }
  .md-controller-contact-details .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-contact-details .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .md-controller-contact-details .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-contact-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.mobile {
    margin-right: 15px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-contact-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.mobile.active:after {
    bottom: 5px;
  }
  .md-controller-contact-details .md-tabpanel-tabs .md-toolbar {
    display: none;
  }
}
.md-controller-contact-details .consult-stats.text1,
.md-controller-contact-details .referral-stats.text1 {
  color: #000;
  font-weight: 600;
}
.md-controller-contact-details .consult-stats.text1 md-activity-log,
.md-controller-contact-details .referral-stats.text1 md-activity-log {
  margin-top: 20px;
}
.md-controller-contact-details .consult-stats.text1 md-activity-log .activity-log .detail,
.md-controller-contact-details .referral-stats.text1 md-activity-log .activity-log .detail {
  margin-bottom: 10px;
}
.md-controller-contact-details .consult-stats.text1 md-activity-log .activity-log .detail .month-title,
.md-controller-contact-details .referral-stats.text1 md-activity-log .activity-log .detail .month-title {
  margin-top: 0px;
}
.md-controller-contact-details .referral-stats,
.md-controller-contact-details .consult-stats {
  margin-top: -1px;
}
.md-sidebar md-panel-header-title .fa-asterisk,
.md-sidebar .info-section .fa-asterisk,
.md-sidebar .edit-label .fa-asterisk {
  color: #da3549;
}
.md-sidebar .md-pane h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
md-contact-sidebar {
  display: block;
}
md-contact-sidebar .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
md-contact-sidebar md-gender-picker .other {
  margin-top: 10px;
}
@media (max-width: 767px) {
  md-contact-sidebar .card ul.detail-list {
    padding-top: 0px;
  }
  md-contact-sidebar .header-preview {
    display: none;
  }
  md-contact-sidebar .card.profile-name-section {
    margin: 10px 0px;
  }
}
md-contact-sidebar .affiliations-display + .affiliations-display {
  border-top: 1px solid #d0d0d0;
  padding-top: 5px;
  margin-top: 5px;
}
md-contact-sidebar rmd-member-chips .md-chips {
  max-width: 100%;
}
md-contact-sidebar rmd-member-chips .md-chips md-chip {
  max-width: 100% !important;
}
md-contact-sidebar .selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  padding-left: 1px;
}
md-contact-sidebar .truncate {
  max-width: 278px;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: -5px;
}
md-contact-sidebar .edit-label .has-error {
  color: #e36776 !important;
}
md-contact-sidebar .has-error {
  color: #e36776 !important;
}
md-contact-sidebar .has-error .form-control {
  border-color: #e36776 !important;
}
md-contact-sidebar .has-error label {
  color: #e36776 !important;
}
md-contact-sidebar .dropdown-menu,
md-contact-sidebar .md-dropdown-menu,
md-contact-sidebar .dropdown {
  min-width: 75px !important;
  max-width: 100% !important;
}
md-contact-sidebar .dropdown-menu.dropdown-icon,
md-contact-sidebar .md-dropdown-menu.dropdown-icon,
md-contact-sidebar .dropdown.dropdown-icon {
  min-width: unset !important;
}
md-contact-sidebar input.md-form-control[type="search"] {
  max-width: 100% !important;
}
md-contact-sidebar .dropdown-menu.history .dropdown-table-column.header,
md-contact-sidebar .md-dropdown-menu.history .dropdown-table-column.header {
  white-space: nowrap;
}
@media (max-width: 767px) {
  md-contact-sidebar .dropdown-menu.history,
  md-contact-sidebar .md-dropdown-menu.history {
    min-width: unset !important;
    max-width: unset !important;
    width: calc(100vw - 30px);
    left: calc(100px - 100vw);
    right: 15px;
    position: absolute;
  }
  md-contact-sidebar .dropdown-menu.history .dropdown-table-column,
  md-contact-sidebar .md-dropdown-menu.history .dropdown-table-column {
    white-space: break-spaces;
    padding: 5px;
  }
  md-contact-sidebar .dropdown-menu.history .md-text,
  md-contact-sidebar .md-dropdown-menu.history .md-text {
    white-space: break-spaces;
  }
}
md-contact-sidebar .year-dropdown {
  margin-left: 10px;
  width: 75px !important;
}
md-contact-sidebar .role-picker .control-label {
  margin-bottom: 0px !important;
}
md-contact-sidebar .role-picker .control-label.inline {
  line-height: 34px;
  vertical-align: middle;
}
md-contact-sidebar .role-picker .contact-role-picker {
  display: block;
}
md-contact-sidebar md-procedure-picker ul.dropdown-menu.md-dropdown-menu.search,
md-contact-sidebar md-condition-picker ul.dropdown-menu.md-dropdown-menu.search {
  width: fit-content !important;
  max-width: unset !important;
  min-width: 100% !important;
}
md-contact-sidebar .phone-list-item:first-child {
  margin-top: 5px;
}
md-contact-sidebar .phone-list-item:last-child {
  margin-bottom: -5px;
}
md-contact-sidebar .phone-list-item .phone-number,
md-contact-sidebar .phone-list-item .phone-type {
  clear: none;
  display: inline-block;
}
md-contact-sidebar .phone-list-item .phone-type {
  margin-left: 10px;
}
md-contact-sidebar .add-link {
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
md-contact-sidebar .add-link i {
  margin-right: 5px;
}
md-contact-sidebar .popover {
  max-width: none;
}
md-contact-sidebar .popover-content {
  padding: 3px 4px;
}
md-contact-sidebar .provider-map {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
}
md-contact-sidebar .link-button {
  font-size: 12px;
  color: #1da4f0;
  font-weight: 600;
}
md-contact-sidebar md-specialty-table-picker .dropdown-menu {
  min-width: fit-content !important;
  max-width: 600px;
}
md-contact-sidebar md-specialty-table-picker .md-specialty-column {
  min-width: 400px !important;
}
md-contact-sidebar md-specialty-table-picker .md-specialty-tax-column {
  min-width: 40px !important;
}
md-contact-sidebar .edit-icon.icon-with-data i.fa {
  color: #6bb31c !important;
}
md-contact-sidebar .icon-without-data i.fa {
  color: #1da4f0;
}
md-toolbar-custom-item-picker {
  clear: none;
  display: inline-block;
}
md-toolbar-custom-item-picker .custom-item-toolbar-container.full-width-dropdown .md-dropdown-menu.search {
  max-width: fit-content;
}
md-landing-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-landing-picker .ui-select-toggle {
  color: #000;
}
md-landing-picker .text-muted {
  color: #b1b1b1;
}
md-landing-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-landing-picker .input-row {
  margin-bottom: 10px;
}
md-landing-picker .input-row .type-picker {
  margin-left: 10px;
}
md-landing-picker .md-form-group {
  margin-bottom: 10px;
}
md-landing-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-landing-picker .add-link i {
  margin-right: 5px;
}
md-landing-picker .ui-select-spin {
  display: none;
}
md-landing-picker .btn-link {
  display: none;
}
md-affiliation-level-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-affiliation-level-picker .btn-default {
  color: #000;
}
md-affiliation-level-picker .text-muted {
  color: #b1b1b1;
}
md-affiliation-level-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-affiliation-level-picker .input-row {
  margin-bottom: 10px;
}
md-affiliation-level-picker .input-row .type-picker {
  margin-left: 10px;
}
md-affiliation-level-picker .md-form-group {
  margin-bottom: 10px;
}
md-affiliation-level-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-affiliation-level-picker .add-link i {
  margin-right: 5px;
}
md-affiliation-level-picker .ui-select-spin {
  display: none;
}
md-affiliation-level-picker .btn-link {
  display: none;
}
md-specialty-table-picker {
  display: block;
  display: block;
  width: 100%;
}
md-specialty-table-picker .clear-button-holder {
  z-index: 1;
  right: 15px !important;
  line-height: 40px;
  color: #b1b1b1;
}
md-specialty-table-picker .md-dropdown-menu {
  width: 100%;
}
md-specialty-table-picker .md-dropdown-menu {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}
md-specialty-table-picker .md-dropdown-menu .no-data {
  padding: 5px 20px;
}
md-specialty-table-picker .search-input-group {
  margin-bottom: 0px;
}
md-specialty-table-picker .search-results .loading {
  text-align: center;
}
md-specialty-table-picker .search-results .loading .fas {
  color: #1da4f0;
}
md-specialty-table-picker .md-dropdown-menu,
md-specialty-table-picker .dropdown-table,
md-specialty-table-picker .dropdown-table-column {
  width: 100% !important;
}
md-specialty-table-picker .dropdown-table-column.md-specialty-column {
  min-width: 400px;
}
md-specialty-table-picker .md-dropdown-menu {
  max-height: 400px !important;
  overflow-y: auto !important;
  padding: 0px !important;
  display: none !important;
}
md-specialty-table-picker .open > .md-dropdown-menu {
  display: block !important;
}
md-specialty-table-picker .dropdown-table-column {
  min-width: 400px;
}
.specialty-table-picker-container .specialty-table {
  min-width: 250px !important;
  max-width: fit-content !important;
  min-height: fit-content !important;
  max-height: 330px;
  overflow: auto;
}
.specialty-table-picker-container .md-specialty-column {
  min-width: 400px !important;
}
.specialty-table-picker-container .md-specialty-tax-column {
  min-width: 40px !important;
}
.specialty-table-picker-container i.fas.fa-spinner {
  color: #1da4f0;
}
md-opt-out-picker {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
md-opt-out-picker .ui-select-toggle {
  color: #000;
}
md-opt-out-picker .text-muted {
  color: #b1b1b1;
}
md-opt-out-picker .has-error .form-control {
  border-color: #da3549 !important;
}
md-opt-out-picker .input-row {
  margin-bottom: 10px;
}
md-opt-out-picker .input-row .type-picker {
  margin-left: 10px;
}
md-opt-out-picker .md-form-group {
  margin-bottom: 10px;
}
md-opt-out-picker .add-link {
  font-size: 14px;
  cursor: pointer;
}
md-opt-out-picker .add-link i {
  margin-right: 5px;
}
md-opt-out-picker .ui-select-spin {
  display: none;
}
md-opt-out-picker .btn-link {
  display: none;
}
md-contact-audit-log {
  padding-top: 10px;
}
md-contact-audit-log .details {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
}
md-contact-audit-log .details .inline-text {
  clear: none;
  display: inline-block;
}
md-contact-audit-log .details .action {
  white-space: -moz-pre-wrap !important /* Mozilla, since 1999 */;
  white-space: -webkit-pre-wrap /* Chrome & Safari */;
  white-space: -pre-wrap /* Opera 4-6 */;
  white-space: -o-pre-wrap /* Opera 7 */;
  white-space: pre-wrap /* css-3 */;
  word-wrap: break-word /* Internet Explorer 5.5+ */;
  word-break: break-word;
  white-space: normal !important;
  clear: none;
  display: inline-block;
}
md-contact-audit-log .details .action.block {
  display: block;
}
md-contact-audit-log .details .action .p-html {
  clear: none;
  display: inline-block;
  margin-bottom: 0px;
}
md-contact-audit-log .details .action .p-html p {
  clear: none;
  display: inline-block;
  margin: 0px;
}
md-contact-audit-log .details .action.modules {
  white-space: pre-wrap !important;
}
md-contact-audit-log .details .file {
  clear: none;
  display: inline-block;
}
md-contact-audit-log .details .file a {
  font-weight: 600;
  cursor: pointer;
  color: #1da4f0;
}
md-contact-audit-log .details .file a:hover,
md-contact-audit-log .details .file a:focus {
  color: #4ab6f3;
}
md-contact-audit-log rmd-list-pagination {
  margin-bottom: 10px;
}
md-payer-sidebar .numeric-avatar {
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #1da4f0;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-right: 10px;
}
md-payer-sidebar .numeric-avatar .avatar-content {
  margin: auto;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
md-payer-sidebar .accepted-insurance-item {
  margin-bottom: 10px;
}
.md-controller-organization-list {
  display: block;
}
.md-controller-organization-list .mobile-toolbar .md-form-group.md-form-group-icon.icon-left input.md-form-control[type="search"] {
  padding-left: 15px;
}
.md-controller-organization-list .mobile-toolbar a.md-link i.fa {
  font-size: 24px;
}
.md-controller-organization-list .mobile-toolbar .form-group {
  margin-bottom: -15px;
}
.md-controller-organization-list .text2 {
  font-size: 13px;
}
.md-controller-organization-list .md-layout-stretch-wrap {
  height: calc(100vh - 200px - 50px);
}
.md-controller-organization-list .referral-links {
  display: -webkit-inline-box;
  width: max-content;
}
.md-controller-organization-list .md-toolbar.md-section-toolbar {
  margin-left: 2px;
}
.md-controller-organization-list .md-toolbar.md-section-toolbar .offset .md-dropdown-group .dropdown .dropdown-menu {
  left: 100%;
  max-width: 175px;
}
.md-controller-organization-list .md-toolbar md-toolbar-specialty-picker .md-dropdown-menu,
.md-controller-organization-list .md-toolbar md-search-picker .md-dropdown-menu {
  min-width: fit-content;
  width: 250px;
}
@media (max-width: 767px) {
  .md-controller-organization-list .md-toolbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .md-controller-organization-list .md-toolbar .dropdown-menu.md-dropdown-menu {
    position: absolute !important;
    width: calc(100vw - 30px) !important;
    min-width: unset !important;
    max-width: calc(100vw - 30px) !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -o-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}
.md-controller-organization-list .rmd-list-content .header-action i.fa-fax {
  font-size: 10px;
  line-height: 17px;
  vertical-align: text-bottom;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container {
  display: inline-block;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container .search-input {
  display: none;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container .dropdown {
  position: absolute;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown {
  margin-left: -50px;
  margin-top: -25px;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container .batch-owner-picker .dropdown-toggle {
  display: none;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container .batch-owner-picker rmd-toolbar-dropdown {
  position: absolute;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container md-referral-status-picker {
  margin-top: -7px;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container md-referral-status-picker .dropdown {
  margin-left: 15px;
}
.md-controller-organization-list .rmd-list-content .batch-operator-container md-referral-status-picker .status-wrap {
  display: none;
}
.md-controller-organization-list .rmd-list-item .column-profile {
  max-width: 100%;
}
.md-controller-organization-list .rmd-list-item .group.profile-group {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .md-controller-organization-list .rmd-list-item .group.profile-group {
    max-width: calc(100vw - 30px - 40px - 5px);
  }
}
.md-controller-organization-list .rmd-list-item .group.profile-group .mobile-details {
  display: none;
}
@media (max-width: 767px) {
  .md-controller-organization-list .rmd-list-item .group.profile-group .mobile-details {
    display: block;
  }
}
@media (max-width: 767px) {
  .md-controller-organization-list .md-dropdown-group {
    font-size: 14px;
  }
  .md-controller-organization-list .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-organization-list .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding-top: 0px;
  }
  .md-controller-organization-list .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-organization-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters i.fa,
  .md-controller-organization-list .md-tabpanel-tabs .md-tabpanel-tabs-tab.has-filters .name {
    color: #1da4f0;
  }
  .md-controller-organization-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 15px - 50px);
  }
  .md-controller-organization-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 51px - 41px - 35px - 30px - 35px - 15px - 50px);
  }
  .md-controller-organization-list rmd-list-pagination {
    margin-top: 5px;
  }
}
.md-controller-organization-details {
  display: block;
}
.md-controller-organization-details .md-sidebar .contact-item {
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  .md-controller-organization-details .mobile {
    display: none !important;
  }
}
.md-controller-organization-details .mobile-header .mobile-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.md-controller-organization-details .mobile-header .mobile-toolbar a.md-link {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-organization-details .mobile-header .mobile-toolbar a.md-link i.fa {
  font-size: 30px;
}
.md-controller-organization-details .mobile-header .mobile-toolbar .mobile-profile-section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.md-controller-organization-details .mobile-header .mobile-toolbar .mobile-profile-section .contact-name {
  padding: 10px 0;
}
.md-controller-organization-details .mobile-header .mobile-toolbar .add-button-container {
  width: 25.72px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 15px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-toggle i {
  color: #000;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown .dropdown-menu {
  position: fixed;
  left: 15px;
  right: 15px;
  width: auto;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown li {
  border-bottom: 1px solid #e0e0e0;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown li:last-child {
  border-bottom: none;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .dropdown a.phone {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options .md-dropdown-group .text1 {
  font-size: 16px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-text,
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-call {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  border: none;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-text.disabled i.fa,
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-call.disabled i.fa {
  color: #e0e0e0;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-text i.fa,
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-call i.fa {
  font-size: 25px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-email {
  background: none;
  border: none;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-email.disabled i.fa {
  color: #e0e0e0;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-email i.fa {
  font-size: 25px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-email a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account {
  background: none;
  border: none;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa {
  font-size: 25px;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.btn-toolbar-grey {
  color: #727272;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.btn-toolbar-success {
  color: #cf7a15;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info-secondary {
  color: #5b8e24;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info {
  color: #1da4f0;
}
.md-controller-organization-details .mobile-header .mobile-contact-options button.option-free-account i.fa.fa-user-plus.md-icon.info.active {
  background-color: #fefeff;
  background: -webkit-linear-gradient(top, #e9f6fd, #fefeff);
  background: -moz-linear-gradient(top, #e9f6fd, #fefeff);
  background: -o-linear-gradient(top, #e9f6fd, #fefeff);
  background: -ms-linear-gradient(top, #e9f6fd, #fefeff);
  background: linear-gradient(to bottom, #e9f6fd, #fefeff);
}
@media (max-width: 767px) {
  .md-controller-organization-details md-task-list .md-layout-stretch-wrap {
    height: calc(100vh - 50px - 15px - 10px - 41px - 108px - 72px - 30px - 34px - 50px);
  }
  .md-controller-organization-details md-task-list .md-layout-stretch-wrap.has-pagination {
    height: calc(100vh - 50px - 15px - 10px - 41px - 108px - 72px - 30px - 34px - 50px - 15px);
  }
  .md-controller-organization-details md-task-list .task-details {
    max-width: calc(100vw - 40px - 40px - 42px - 30px - 5px);
  }
  .md-controller-organization-details .card ul.detail-list {
    padding-top: 0px;
  }
  .md-controller-organization-details .card .md-toolbar.text-center {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .md-controller-organization-details .card .contact-item {
    margin-bottom: 10px;
  }
  .md-controller-organization-details .header-preview {
    display: none;
  }
  .md-controller-organization-details .header-wrap {
    border-bottom: none !important;
  }
  .md-controller-organization-details .md-pane.panel.collapsed .header-wrap {
    padding-bottom: 0px !important;
  }
  .md-controller-organization-details .md-content-padding {
    padding: 7.5px 15px;
  }
  .md-controller-organization-details .md-tabpanel-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .md-controller-organization-details .md-tabpanel-tabs .md-tabpanel-tabs-tab {
    margin-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-organization-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.mobile {
    margin-right: 15px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .md-controller-organization-details .md-tabpanel-tabs .md-tabpanel-tabs-tab.mobile.active:after {
    bottom: 5px;
  }
  .md-controller-organization-details .md-tabpanel-tabs .md-toolbar {
    display: none;
  }
}
.md-controller-organization-details .consult-stats.text1,
.md-controller-organization-details .referral-stats.text1 {
  color: #000;
  font-weight: 600;
}
.md-controller-organization-details .consult-stats.text1 md-activity-log,
.md-controller-organization-details .referral-stats.text1 md-activity-log {
  margin-top: 20px;
}
.md-controller-organization-details .consult-stats.text1 md-activity-log .activity-log .detail,
.md-controller-organization-details .referral-stats.text1 md-activity-log .activity-log .detail {
  margin-bottom: 10px;
}
.md-controller-organization-details .consult-stats.text1 md-activity-log .activity-log .detail .month-title,
.md-controller-organization-details .referral-stats.text1 md-activity-log .activity-log .detail .month-title {
  margin-top: 0px;
}
.md-controller-organization-details .referral-stats,
.md-controller-organization-details .consult-stats {
  margin-top: -1px;
}
.md-page-admin-invitation .has-error .form-control {
  border-color: #da3549 !important;
}
.md-page-admin-invitation .form-group select.form-control {
  border-radius: 5px;
  border-color: #d1d1d1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  padding: 9px 15px;
  height: 34px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: rgba(0,0,0,0.6);
}
.md-page-admin-invitation .form-group select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #1da4f0;
  color: #000;
}
.md-page-admin-invitation .form-group select.form-control[disabled],
.md-page-admin-invitation .form-group select.form-control[readonly] {
  background-color: #f2f2f2;
}
.md-page-admin-invitation .form-group select.form-control option {
  color: rgba(0,0,0,0.6);
  white-space: nowrap;
}
.md-page-admin-invitation .form-group .control-label {
  font-weight: 600;
}
.md-page-admin-invitation .form-group .control-label .fa-asterisk {
  margin-left: 3px;
  vertical-align: top;
  font-size: 7px;
  padding-top: 5px;
}
.md-page-admin-invitation .md-window {
  margin-bottom: 70px;
}
.md-page-admin-invitation .window-header {
  text-align: center;
}
.md-page-admin-invitation .md-blue.section-title {
  font-weight: 300;
  padding-bottom: 15px;
  padding-top: 5px;
}
.md-page-admin-invitation .md-form-control-check {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .md-page-admin-invitation .footer-button {
    text-align: center;
  }
}
.md-page-admin-invitation .form-group.md-form-group {
  margin-bottom: 10px;
}
.md-page-admin-invitation .modal-footer {
  text-align: center;
  border-top: 0px;
}
.md-page-admin-invitation .md-modal-footer-toolbar {
  margin-top: 15px;
}
.md-page-admin-invitation .md-modal-footer-toolbar .btn.md-btn.info {
  margin-left: 10px;
}
.md-page-admin-invitation .md-modal-footer-toolbar button.btn.md-btn.secondary {
  min-width: 90px;
}
@charset "UTF-8";
/*!
 * AngularJS Material Design
 * https://github.com/angular/material
 * @license MIT
 * v1.2.5
 */
html, body {
  height: 100%;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
}

[tabindex="-1"]:focus {
  outline: none;
}

.inset {
  padding: 10px;
}

a.md-no-style,
button.md-no-style {
  font-weight: normal;
  background-color: inherit;
  text-align: left;
  border: none;
  padding: 0;
  margin: 0;
}

select,
button,
textarea,
input {
  vertical-align: baseline;
}

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

textarea {
  vertical-align: top;
  overflow: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input:-webkit-autofill {
  text-shadow: none;
}

.md-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-transform: none;
  width: 1px;
}

.md-shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  pointer-events: none;
}

.md-shadow-bottom-z-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.md-shadow-bottom-z-2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.md-shadow-animated.md-shadow {
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/*
 * A container inside of a rippling element (eg a button),
 * which contains all of the individual ripples
 */
.md-ripple-container {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.md-ripple {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: 50% 50%;
  opacity: 0;
  border-radius: 50%;
}
.md-ripple.md-ripple-placed {
  transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.md-ripple.md-ripple-scaled {
  transform: translate(-50%, -50%) scale(1);
}
.md-ripple.md-ripple-active, .md-ripple.md-ripple-full, .md-ripple.md-ripple-visible {
  opacity: 0.2;
}
.md-ripple.md-ripple-remove {
  -webkit-animation: md-remove-ripple 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
          animation: md-remove-ripple 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@-webkit-keyframes md-remove-ripple {
  0% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
  }
}

@keyframes md-remove-ripple {
  0% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
  }
}
.md-padding {
  padding: 8px;
}

.md-margin {
  margin: 8px;
}

.md-scroll-mask {
  position: absolute;
  background-color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
}
.md-scroll-mask > .md-scroll-mask-bar {
  display: block;
  position: absolute;
  background-color: #fafafa;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 65;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
}

.md-no-momentum {
  -webkit-overflow-scrolling: auto;
}

.md-no-flicker {
  -webkit-filter: blur(0px);
}

@media (min-width: 960px) {
  .md-padding {
    padding: 16px;
  }
}
html[dir=rtl], html[dir=ltr], body[dir=rtl], body[dir=ltr] {
  unicode-bidi: embed;
}

bdo[dir=rtl] {
  direction: rtl;
  unicode-bidi: bidi-override;
}

bdo[dir=ltr] {
  direction: ltr;
  unicode-bidi: bidi-override;
}

@media (max-width: 599px) {
  .layout-row:not(.layout-xs-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-xs-row > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 16px;
  }
  [dir=rtl] .layout-row:not(.layout-xs-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-xs-row > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 0;
    margin-right: 16px;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-xs-row:not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-sm-row:not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 16px;
  }
  [dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-xs-row:not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-sm-row:not(.layout-sm-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 0;
    margin-right: 16px;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-sm-row:not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-md-row:not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 16px;
  }
  [dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-sm-row:not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-md-row:not(.layout-md-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 0;
    margin-right: 16px;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-md-row:not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-lg-row:not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 16px;
  }
  [dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-md-row:not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-lg-row:not(.layout-lg-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 0;
    margin-right: 16px;
  }
}
@media (min-width: 1920px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 16px;
  }
  [dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child),
[dir=rtl] .layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column) > .md-auto-horizontal-margin:not(:first-child) {
    margin-left: 0;
    margin-right: 16px;
  }
}
html, body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: default;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/************
 * Headings
 ************/
.md-display-4 {
  font-size: 112px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 112px;
}

.md-display-3 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 56px;
}

.md-display-2 {
  font-size: 45px;
  font-weight: 400;
  line-height: 64px;
}

.md-display-1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
}

.md-headline {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.md-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.md-subhead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 24px;
}

/************
 * Body Copy
 ************/
.md-body-1 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 20px;
}

.md-body-2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 24px;
}

.md-caption {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.md-button {
  letter-spacing: 0.01em;
}

/************
 * Defaults
 ************/
button,
select,
html,
textarea,
input {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}

select,
button,
textarea,
input {
  font-size: 100%;
}

/*
*  Responsive attributes
*
*  References:
*  1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex
*  2) https://css-tricks.com/almanac/properties/f/flex/
*  3) https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*  4) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
*  5) http://godban.com.ua/projects/flexgrid
*/
.md-panel-outer-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.md-panel-inner-wrapper {
  position: fixed;
}

._md-panel-offscreen {
  left: -9999px;
}

._md-panel-hidden {
  display: none;
}

._md-panel-shown .md-panel {
  opacity: 1;
  transition: none;
}

.md-panel {
  opacity: 0;
  position: relative;
}
.md-panel._md-panel-shown {
  opacity: 1;
  transition: none;
}
.md-panel._md-panel-animate-enter {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.md-panel._md-panel-animate-leave {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.md-panel._md-panel-animate-scale-out, .md-panel._md-panel-animate-fade-out {
  opacity: 0;
}
.md-panel._md-panel-backdrop {
  height: 100%;
  position: fixed;
  width: 100%;
}
.md-panel._md-opaque-enter {
  opacity: 0.48;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.md-panel._md-opaque-leave {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}

._md-panel-fullscreen {
  border-radius: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
}

md-autocomplete {
  border-radius: 2px;
  display: block;
  height: 40px;
  position: relative;
  overflow: visible;
  min-width: 190px;
}
md-autocomplete[disabled] input {
  cursor: default;
}
md-autocomplete[md-floating-label] {
  border-radius: 0;
  background: transparent;
  height: auto;
}
md-autocomplete[md-floating-label] md-input-container {
  padding-bottom: 0;
}
md-autocomplete[md-floating-label] md-autocomplete-wrap {
  height: auto;
}
md-autocomplete[md-floating-label] .md-show-clear-button button {
  display: block;
  position: absolute;
  right: 0;
  top: 20px;
  width: 30px;
  height: 30px;
}
md-autocomplete[md-floating-label] .md-show-clear-button input {
  padding-right: 30px;
}
[dir=rtl] md-autocomplete[md-floating-label] .md-show-clear-button input {
  padding-right: 0;
  padding-left: 30px;
}
md-autocomplete md-autocomplete-wrap {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  height: 40px;
}
md-autocomplete md-autocomplete-wrap.md-menu-showing {
  z-index: 51;
}
md-autocomplete md-autocomplete-wrap md-input-container,
md-autocomplete md-autocomplete-wrap input {
  flex: 1 1 0;
  box-sizing: border-box;
  min-width: 0;
}
md-autocomplete md-autocomplete-wrap md-progress-linear {
  position: absolute;
  bottom: -2px;
  left: 0;
}
md-autocomplete md-autocomplete-wrap md-progress-linear.md-inline {
  bottom: 40px;
  right: 2px;
  left: 2px;
  width: auto;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: none;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate .md-container {
  transition: none;
  height: 3px;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter {
  transition: opacity 0.15s linear;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter.ng-enter-active {
  opacity: 1;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave {
  transition: opacity 0.15s linear;
}
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave.ng-leave-active {
  opacity: 0;
}
md-autocomplete input:not(.md-input) {
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 0 15px;
  line-height: 40px;
  height: 40px;
}
md-autocomplete input:not(.md-input)::-ms-clear {
  display: none;
}
md-autocomplete .md-show-clear-button button {
  position: relative;
  line-height: 20px;
  text-align: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  padding: 0;
  font-size: 12px;
  background: transparent;
  margin: auto 5px;
}
md-autocomplete .md-show-clear-button button:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
md-autocomplete .md-show-clear-button button:focus {
  outline: none;
}
md-autocomplete .md-show-clear-button button:focus:after {
  transform: scale(1);
  opacity: 1;
}
md-autocomplete .md-show-clear-button button md-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
}
md-autocomplete .md-show-clear-button button md-icon path {
  stroke-width: 0;
}
md-autocomplete .md-show-clear-button button.ng-enter {
  transform: scale(0);
  transition: transform 0.15s ease-out;
}
md-autocomplete .md-show-clear-button button.ng-enter.ng-enter-active {
  transform: scale(1);
}
md-autocomplete .md-show-clear-button button.ng-leave {
  transition: transform 0.15s ease-out;
}
md-autocomplete .md-show-clear-button button.ng-leave.ng-leave-active {
  transform: scale(0);
}
@media screen and (-ms-high-contrast: active) {
  md-autocomplete input {
    border: 1px solid #fff;
  }
  md-autocomplete .md-autocomplete-suggestion:focus {
    color: #fff;
  }
}

.md-virtual-repeat-container.md-autocomplete-suggestions-container,
.md-standard-list-container.md-autocomplete-suggestions-container {
  position: absolute;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  z-index: 100;
  height: 100%;
}
.md-virtual-repeat-container.md-autocomplete-suggestions-container .highlight,
.md-standard-list-container.md-autocomplete-suggestions-container .highlight {
  font-weight: bold;
}

.md-standard-list-container {
  box-sizing: border-box;
  display: block;
  margin: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0;
}

.md-virtual-repeat-container.md-not-found,
.md-standard-list-container.md-not-found {
  height: 48px;
}

.md-autocomplete-suggestions {
  margin: 0;
  list-style: none;
  padding: 0;
}
.md-autocomplete-suggestions .md-autocomplete-suggestion {
  font-size: 14px;
  overflow: hidden;
  padding: 0 15px;
  line-height: 48px;
  height: 48px;
  transition: background 0.15s linear;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.md-autocomplete-suggestions .md-autocomplete-suggestion:focus {
  outline: none;
}
.md-autocomplete-suggestions .md-autocomplete-suggestion:not(.md-not-found-wrapper) {
  cursor: pointer;
}

@media screen and (-ms-high-contrast: active) {
  md-autocomplete,
.md-autocomplete-suggestions {
    border: 1px solid #fff;
  }
}
md-backdrop {
  transition: opacity 450ms;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
md-backdrop.md-menu-backdrop {
  position: fixed !important;
  z-index: 99;
}
md-backdrop.md-select-backdrop {
  z-index: 81;
  transition-duration: 0;
}
md-backdrop.md-dialog-backdrop {
  z-index: 79;
}
md-backdrop.md-bottom-sheet-backdrop {
  z-index: 69;
}
md-backdrop.md-sidenav-backdrop {
  z-index: 59;
}
md-backdrop.md-click-catcher {
  position: absolute;
}
md-backdrop.md-opaque {
  opacity: 0.48;
}
md-backdrop.md-opaque.ng-enter {
  opacity: 0;
}
md-backdrop.md-opaque.ng-enter.md-opaque.ng-enter-active {
  opacity: 0.48;
}
md-backdrop.md-opaque.ng-leave {
  opacity: 0.48;
  transition: opacity 400ms;
}
md-backdrop.md-opaque.ng-leave.md-opaque.ng-leave-active {
  opacity: 0;
}

md-bottom-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 16px 88px 16px;
  z-index: 70;
  border-top-width: 1px;
  border-top-style: solid;
  transform: translate3d(0, 80px, 0);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: transform;
}
md-bottom-sheet.md-has-header {
  padding-top: 0;
}
md-bottom-sheet.ng-enter {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
md-bottom-sheet.ng-enter-active {
  opacity: 1;
  display: block;
  transform: translate3d(0, 80px, 0) !important;
}
md-bottom-sheet.ng-leave-active {
  transform: translate3d(0, 100%, 0) !important;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-bottom-sheet .md-subheader {
  background-color: transparent;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  line-height: 56px;
  padding: 0;
  white-space: nowrap;
}
md-bottom-sheet md-inline-icon {
  display: inline-block;
  height: 24px;
  width: 24px;
  fill: #444;
}
md-bottom-sheet md-list-item {
  display: flex;
  outline: none;
}
md-bottom-sheet md-list-item:hover {
  cursor: pointer;
}
md-bottom-sheet.md-list md-list-item {
  padding: 0;
  align-items: center;
  height: 48px;
}
md-bottom-sheet.md-grid {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 0;
}
md-bottom-sheet.md-grid md-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transition: all 0.5s;
  align-items: center;
}
md-bottom-sheet.md-grid md-list-item {
  flex-direction: column;
  align-items: center;
  transition: all 0.5s;
  height: 96px;
  margin-top: 8px;
  margin-bottom: 8px;
  /* Mixin for how many grid items to show per row */
}
@media (max-width: 960px) {
  md-bottom-sheet.md-grid md-list-item {
    flex: 1 1 33.3333333333%;
    max-width: 33.3333333333%;
  }
  md-bottom-sheet.md-grid md-list-item:nth-of-type(3n + 1) {
    align-items: flex-start;
  }
  md-bottom-sheet.md-grid md-list-item:nth-of-type(3n) {
    align-items: flex-end;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  md-bottom-sheet.md-grid md-list-item {
    flex: 1 1 25%;
    max-width: 25%;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  md-bottom-sheet.md-grid md-list-item {
    flex: 1 1 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1920px) {
  md-bottom-sheet.md-grid md-list-item {
    flex: 1 1 14.2857142857%;
    max-width: 14.2857142857%;
  }
}
md-bottom-sheet.md-grid md-list-item::before {
  display: none;
}
md-bottom-sheet.md-grid md-list-item .md-list-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  padding-bottom: 16px;
}
md-bottom-sheet.md-grid md-list-item .md-grid-item-content {
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
md-bottom-sheet.md-grid md-list-item .md-grid-text {
  font-weight: 400;
  line-height: 16px;
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
  width: 64px;
  text-align: center;
  text-transform: none;
  padding-top: 8px;
}

@media screen and (-ms-high-contrast: active) {
  md-bottom-sheet {
    border: 1px solid #fff;
  }
}
button.md-button::-moz-focus-inner {
  border: 0;
}

.md-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  /** Alignment adjustments */
  min-height: 36px;
  min-width: 88px;
  line-height: 36px;
  vertical-align: middle;
  align-items: center;
  text-align: center;
  border-radius: 2px;
  box-sizing: border-box;
  /* Reset default button appearance */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  border: 0;
  /** Custom styling for button */
  padding: 0 8px;
  margin: 6px 8px;
  background: transparent;
  color: currentColor;
  white-space: nowrap;
  /* Uppercase text content */
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  font-style: inherit;
  font-variant: inherit;
  font-family: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.md-dense > .md-button:not(.md-dense-disabled), .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
  min-height: 32px;
}
.md-dense > .md-button:not(.md-dense-disabled), .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
  line-height: 32px;
}
.md-dense > .md-button:not(.md-dense-disabled), .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
  font-size: 13px;
}
.md-button:focus {
  outline: none;
}
.md-button:hover, .md-button:focus {
  text-decoration: none;
}
.md-button.ng-hide, .md-button.ng-leave {
  transition: none;
}
.md-button.md-cornered {
  border-radius: 0;
}
.md-button.md-icon {
  padding: 0;
  background: none;
}
.md-button.md-raised:not([disabled]) {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.md-button.md-icon-button {
  margin: 0 6px;
  height: 40px;
  min-width: 0;
  line-height: 24px;
  padding: 8px;
  width: 40px;
  border-radius: 50%;
}
.md-button.md-fab {
  z-index: 20;
  line-height: 56px;
  min-width: 0;
  width: 56px;
  height: 56px;
  vertical-align: middle;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 50%;
  background-clip: padding-box;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-property: background-color, box-shadow, transform;
}
.md-button.md-fab.md-fab-bottom-right {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  position: absolute;
}
.md-button.md-fab.md-fab-bottom-left {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  position: absolute;
}
.md-button.md-fab.md-fab-top-right {
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  position: absolute;
}
.md-button.md-fab.md-fab-top-left {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  position: absolute;
}
.md-button.md-fab.md-mini {
  line-height: 40px;
  width: 40px;
  height: 40px;
}
.md-button.md-fab.ng-hide, .md-button.md-fab.ng-leave {
  transition: none;
}
.md-button.md-fab[disabled] {
  box-shadow: none;
}
.md-button:not([disabled]).md-raised.md-focused, .md-button:not([disabled]).md-fab.md-focused {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.md-button:not([disabled]).md-raised:active, .md-button:not([disabled]).md-fab:active {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
.md-button .md-ripple-container {
  border-radius: inherit;
  background-clip: padding-box;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}

.md-button.md-icon-button md-icon,
button.md-button.md-fab md-icon {
  display: block;
}

.md-toast-open-top .md-button.md-fab-top-left,
.md-toast-open-top .md-button.md-fab-top-right {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate3d(0, 42px, 0);
}
.md-toast-open-top .md-button.md-fab-top-left:not([disabled]).md-focused, .md-toast-open-top .md-button.md-fab-top-left:not([disabled]):hover,
.md-toast-open-top .md-button.md-fab-top-right:not([disabled]).md-focused,
.md-toast-open-top .md-button.md-fab-top-right:not([disabled]):hover {
  transform: translate3d(0, 41px, 0);
}

.md-toast-open-bottom .md-button.md-fab-bottom-left,
.md-toast-open-bottom .md-button.md-fab-bottom-right {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate3d(0, -42px, 0);
}
.md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]).md-focused, .md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]):hover,
.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]).md-focused,
.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]):hover {
  transform: translate3d(0, -43px, 0);
}

.md-button-group {
  display: flex;
  flex: 1;
  width: 100%;
}
.md-button-group > .md-button {
  flex: 1;
  display: block;
  overflow: hidden;
  width: 0;
  border-width: 1px 0px 1px 1px;
  border-radius: 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.md-button-group > .md-button:first-child {
  border-radius: 2px 0px 0px 2px;
}
.md-button-group > .md-button:last-child {
  border-right-width: 1px;
  border-radius: 0px 2px 2px 0px;
}

@media screen and (-ms-high-contrast: active) {
  .md-button.md-raised,
.md-button.md-fab {
    border: 1px solid #fff;
  }
}
md-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 8px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
md-card md-card-header {
  padding: 16px;
  display: flex;
  flex-direction: row;
}
md-card md-card-header:first-child md-card-avatar {
  margin-right: 12px;
}
[dir=rtl] md-card md-card-header:first-child md-card-avatar {
  margin-right: auto;
  margin-left: 12px;
}
md-card md-card-header:last-child md-card-avatar {
  margin-left: 12px;
}
[dir=rtl] md-card md-card-header:last-child md-card-avatar {
  margin-left: auto;
  margin-right: 12px;
}
md-card md-card-header md-card-avatar {
  width: 40px;
  height: 40px;
}
md-card md-card-header md-card-avatar .md-user-avatar,
md-card md-card-header md-card-avatar md-icon {
  border-radius: 50%;
}
md-card md-card-header md-card-avatar md-icon {
  padding: 8px;
}
md-card md-card-header md-card-avatar md-icon > svg {
  height: inherit;
  width: inherit;
}
md-card md-card-header md-card-avatar + md-card-header-text {
  max-height: 40px;
}
md-card md-card-header md-card-avatar + md-card-header-text .md-title {
  font-size: 14px;
}
md-card md-card-header md-card-header-text {
  display: flex;
  flex: 1;
  flex-direction: column;
}
md-card md-card-header md-card-header-text .md-subhead {
  font-size: 14px;
}
md-card > img,
md-card > md-card-header img,
md-card md-card-title-media img {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
}
md-card md-card-title {
  padding: 24px 16px 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
}
md-card md-card-title + md-card-content {
  padding-top: 0;
}
md-card md-card-title md-card-title-text {
  flex: 1;
  flex-direction: column;
  display: flex;
}
md-card md-card-title md-card-title-text .md-subhead {
  padding-top: 0;
  font-size: 14px;
}
md-card md-card-title md-card-title-text:only-child .md-subhead {
  padding-top: 12px;
}
md-card md-card-title md-card-title-media {
  margin-top: -8px;
}
md-card md-card-title md-card-title-media .md-media-sm {
  height: 80px;
  width: 80px;
}
md-card md-card-title md-card-title-media .md-media-md {
  height: 112px;
  width: 112px;
}
md-card md-card-title md-card-title-media .md-media-lg {
  height: 152px;
  width: 152px;
}
md-card md-card-content {
  display: block;
  padding: 16px;
}
md-card md-card-content > p:first-child {
  margin-top: 0;
}
md-card md-card-content > p:last-child {
  margin-bottom: 0;
}
md-card md-card-content .md-media-xl {
  height: 240px;
  width: 240px;
}
md-card md-card-actions {
  margin: 8px;
}
md-card md-card-actions.layout-column .md-button:not(.md-icon-button) {
  margin: 2px 0;
}
md-card md-card-actions.layout-column .md-button:not(.md-icon-button):first-of-type {
  margin-top: 0;
}
md-card md-card-actions.layout-column .md-button:not(.md-icon-button):last-of-type {
  margin-bottom: 0;
}
md-card md-card-actions.layout-column .md-button.md-icon-button {
  margin-top: 6px;
  margin-bottom: 6px;
}
md-card md-card-actions md-card-icon-actions {
  flex: 1;
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
}
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button) {
  margin: 0 4px;
}
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type {
  margin-left: 0;
}
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type {
  margin-left: auto;
  margin-right: 0;
}
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type {
  margin-right: 0;
}
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type {
  margin-right: auto;
  margin-left: 0;
}
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button {
  margin-left: 6px;
  margin-right: 6px;
}
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type {
  margin-left: 12px;
}
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type {
  margin-left: auto;
  margin-right: 12px;
}
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
  margin-right: 12px;
}
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
  margin-right: auto;
  margin-left: 12px;
}
md-card md-card-actions:not(.layout-column) .md-button + md-card-icon-actions {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
}
md-card md-card-footer {
  margin-top: auto;
  padding: 16px;
}

@media screen and (-ms-high-contrast: active) {
  md-card {
    border: 1px solid #fff;
  }
}
.md-image-no-fill > img {
  width: auto;
  height: auto;
}

.md-inline-form md-checkbox {
  margin-top: 14px;
  margin-bottom: auto;
}

md-checkbox {
  box-sizing: border-box;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  min-width: 18px;
  min-height: 48px;
}
.md-dense > md-checkbox:not(.md-dense-disabled), .md-dense :not(.md-dense-disabled) md-checkbox:not(.md-dense-disabled) {
  min-height: 36px;
}
md-checkbox.md-focused:not([disabled]) .md-container:before {
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
}
md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before {
  background-color: rgba(0, 0, 0, 0.12);
}
md-checkbox .md-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  right: auto;
}
[dir=rtl] md-checkbox .md-container {
  left: auto;
}
[dir=rtl] md-checkbox .md-container {
  right: 0;
}
md-checkbox .md-container:before {
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 50%;
  content: "";
  position: absolute;
  display: block;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
  width: auto;
}
md-checkbox .md-container:after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
}
md-checkbox .md-container .md-ripple-container {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
}
md-checkbox .md-icon {
  box-sizing: border-box;
  transition: 240ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
}
md-checkbox.md-checked .md-icon {
  border-color: transparent;
}
md-checkbox.md-checked .md-icon:after {
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 0px;
  display: table;
  width: 6px;
  height: 12px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  content: "";
}
md-checkbox[disabled] {
  cursor: default;
}
md-checkbox.md-indeterminate .md-icon:after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: table;
  width: 10.8px;
  height: 2px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  content: "";
}
md-checkbox .md-container {
  top: auto;
  left: auto;
  right: auto;
  margin: 3px;
  margin-top: 21px;
}
md-checkbox .md-label {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  margin-top: 10px;
  margin-bottom: auto;
  margin-left: 36px;
}
[dir=rtl] md-checkbox .md-label {
  margin-left: 0;
  margin-right: 36px;
}
md-checkbox .md-label:empty {
  margin-left: 24px;
  margin-right: 0;
}
[dir=rtl] md-checkbox .md-label:empty {
  margin-left: 0;
}
[dir=rtl] md-checkbox .md-label:empty {
  margin-right: 24px;
}

md-input-container .md-checkbox-link-label {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  cursor: pointer;
  top: -21px;
  margin-left: 18px;
  margin-right: 0;
}
[dir=rtl] md-input-container .md-checkbox-link-label {
  margin-left: 0;
}
[dir=rtl] md-input-container .md-checkbox-link-label {
  margin-right: 18px;
}

.md-contact-chips .md-chips md-chip {
  padding: 0 25px 0 0;
}
[dir=rtl] .md-contact-chips .md-chips md-chip {
  padding: 0 0 0 25px;
}
.md-contact-chips .md-chips md-chip .md-contact-avatar {
  float: left;
}
[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-avatar {
  float: right;
}
.md-contact-chips .md-chips md-chip .md-contact-avatar img {
  height: 32px;
  border-radius: 16px;
}
.md-contact-chips .md-chips md-chip .md-contact-name {
  display: inline-block;
  height: 32px;
  margin-left: 8px;
}
[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-name {
  margin-left: auto;
  margin-right: 8px;
}

.md-contact-suggestion {
  height: 56px;
}
.md-contact-suggestion img {
  height: 40px;
  border-radius: 20px;
  margin-top: 8px;
}
.md-contact-suggestion .md-contact-name {
  margin-left: 8px;
  width: 120px;
}
[dir=rtl] .md-contact-suggestion .md-contact-name {
  margin-left: auto;
  margin-right: 8px;
}
.md-contact-suggestion .md-contact-name, .md-contact-suggestion .md-contact-email {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.md-contact-chips-suggestions li {
  height: 100%;
}

md-chips {
  display: flex;
}

.md-chips {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 13px;
  padding: 0 0 8px 3px;
  vertical-align: middle;
}
.md-chips:after {
  content: "";
  display: table;
  clear: both;
}
[dir=rtl] .md-chips {
  padding: 0 3px 8px 0;
}
.md-chips.md-readonly .md-chip-input-container {
  min-height: 32px;
}
.md-chips:not(.md-readonly) {
  cursor: text;
}
.md-chips.md-removable md-chip {
  padding-right: 28px;
}
[dir=rtl] .md-chips.md-removable md-chip {
  padding-right: 0;
  padding-left: 28px;
}
.md-chips.md-removable md-chip .md-chip-content {
  padding-right: 4px;
}
[dir=rtl] .md-chips.md-removable md-chip .md-chip-content {
  padding-right: 0;
  padding-left: 4px;
}
.md-chips md-chip {
  cursor: default;
  border-radius: 16px;
  display: block;
  height: 32px;
  line-height: 32px;
  margin: 8px 8px 0 0;
  padding: 0 12px 0 12px;
  float: left;
  box-sizing: border-box;
  max-width: 100%;
  position: relative;
}
[dir=rtl] .md-chips md-chip {
  margin: 8px 0 0 8px;
}
[dir=rtl] .md-chips md-chip {
  float: right;
}
.md-chips md-chip .md-chip-content {
  display: block;
  float: left;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
[dir=rtl] .md-chips md-chip .md-chip-content {
  float: right;
}
.md-chips md-chip .md-chip-content:focus {
  outline: none;
}
.md-chips md-chip._md-chip-content-edit-is-enabled {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
}
.md-chips md-chip .md-chip-remove-container {
  position: absolute;
  right: 0;
  line-height: 22px;
}
[dir=rtl] .md-chips md-chip .md-chip-remove-container {
  right: auto;
  left: 0;
}
.md-chips md-chip .md-chip-remove {
  text-align: center;
  width: 32px;
  height: 32px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  position: relative;
}
.md-chips md-chip .md-chip-remove md-icon {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.md-chips .md-chip-input-container {
  display: block;
  line-height: 32px;
  margin: 8px 8px 0 0;
  padding: 0;
  flex-grow: 1;
  float: left;
}
[dir=rtl] .md-chips .md-chip-input-container {
  margin: 8px 0 0 8px;
}
[dir=rtl] .md-chips .md-chip-input-container {
  float: right;
}
.md-chips .md-chip-input-container input {
  width: 100%;
}
.md-chips .md-chip-input-container input:not([type]), .md-chips .md-chip-input-container input[type=email], .md-chips .md-chip-input-container input[type=number], .md-chips .md-chip-input-container input[type=tel], .md-chips .md-chip-input-container input[type=url], .md-chips .md-chip-input-container input[type=text] {
  border: 0;
  height: 32px;
  line-height: 32px;
  padding: 0;
}
.md-chips .md-chip-input-container input:not([type]):focus, .md-chips .md-chip-input-container input[type=email]:focus, .md-chips .md-chip-input-container input[type=number]:focus, .md-chips .md-chip-input-container input[type=tel]:focus, .md-chips .md-chip-input-container input[type=url]:focus, .md-chips .md-chip-input-container input[type=text]:focus {
  outline: none;
}
.md-chips .md-chip-input-container md-autocomplete, .md-chips .md-chip-input-container md-autocomplete-wrap {
  background: transparent;
  height: 32px;
}
.md-chips .md-chip-input-container md-autocomplete md-autocomplete-wrap {
  box-shadow: none;
}
.md-chips .md-chip-input-container md-autocomplete input {
  position: relative;
}
.md-chips .md-chip-input-container input {
  border: 0;
  height: 32px;
  line-height: 32px;
  padding: 0;
}
.md-chips .md-chip-input-container input:focus {
  outline: none;
}
.md-chips .md-chip-input-container md-autocomplete, .md-chips .md-chip-input-container md-autocomplete-wrap {
  height: 32px;
}
.md-chips .md-chip-input-container md-autocomplete {
  box-shadow: none;
}
.md-chips .md-chip-input-container md-autocomplete input {
  position: relative;
}
.md-chips .md-chip-input-container:not(:first-child) {
  margin: 8px 8px 0 0;
}
[dir=rtl] .md-chips .md-chip-input-container:not(:first-child) {
  margin: 8px 0 0 8px;
}
.md-chips .md-chip-input-container input {
  background: transparent;
  border-width: 0;
}
.md-chips md-autocomplete button {
  display: none;
}

@media screen and (-ms-high-contrast: active) {
  .md-chip-input-container,
md-chip {
    border: 1px solid #fff;
  }

  .md-chip-input-container md-autocomplete {
    border: none;
  }
}
md-content {
  display: block;
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
md-content[md-scroll-y] {
  overflow-y: auto;
  overflow-x: hidden;
}
md-content[md-scroll-x] {
  overflow-x: auto;
  overflow-y: hidden;
}
@media print {
  md-content {
    overflow: visible !important;
  }
}

/** Styles for mdCalendar. */
md-calendar {
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.md-calendar-scroll-mask {
  display: inline-block;
  overflow: hidden;
  height: 308px;
}
.md-calendar-scroll-mask .md-virtual-repeat-scroller {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.md-calendar-scroll-mask .md-virtual-repeat-scroller::-webkit-scrollbar {
  display: none;
}
.md-calendar-scroll-mask .md-virtual-repeat-offsetter {
  width: 100%;
}

.md-calendar-scroll-container {
  box-shadow: inset -3px 3px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 308px;
  width: 346px;
}

.md-calendar-date {
  height: 44px;
  width: 44px;
  text-align: center;
  padding: 0;
  border: none;
  box-sizing: content-box;
}
.md-calendar-date:first-child {
  padding-left: 16px;
}
[dir=rtl] .md-calendar-date:first-child {
  padding-left: 0;
  padding-right: 16px;
}
.md-calendar-date:last-child {
  padding-right: 16px;
}
[dir=rtl] .md-calendar-date:last-child {
  padding-right: 0;
  padding-left: 16px;
}
.md-calendar-date.md-calendar-date-disabled {
  cursor: default;
}

.md-calendar-date-selection-indicator {
  transition: background-color, color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.md-calendar-date:not(.md-disabled) .md-calendar-date-selection-indicator {
  cursor: pointer;
}

.md-calendar-month-label {
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 0 24px;
}
[dir=rtl] .md-calendar-month-label {
  padding: 0 24px 0 0;
}
.md-calendar-month-label.md-calendar-label-clickable {
  cursor: pointer;
}
.md-calendar-month-label md-icon {
  transform: rotate(180deg);
}
[dir=rtl] .md-calendar-month-label md-icon {
  transform: none;
}
.md-calendar-month-label span {
  vertical-align: middle;
}

.md-calendar-day-header {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
.md-calendar-day-header th {
  height: 40px;
  width: 44px;
  text-align: center;
  padding: 0;
  border: none;
  box-sizing: content-box;
  font-weight: normal;
}
.md-calendar-day-header th:first-child {
  padding-left: 16px;
}
[dir=rtl] .md-calendar-day-header th:first-child {
  padding-left: 0;
  padding-right: 16px;
}
.md-calendar-day-header th:last-child {
  padding-right: 16px;
}
[dir=rtl] .md-calendar-day-header th:last-child {
  padding-right: 0;
  padding-left: 16px;
}

.md-calendar {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
.md-calendar tr:last-child td {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.md-calendar:first-child {
  border-top: 1px solid transparent;
}
.md-calendar tbody, .md-calendar td, .md-calendar tr {
  vertical-align: middle;
  box-sizing: content-box;
}

/** Styles for mdDatepicker. */
md-datepicker {
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}

.md-inline-form md-datepicker {
  margin-top: 12px;
}

.md-datepicker-button {
  display: inline-block;
  box-sizing: border-box;
  background: none;
  vertical-align: middle;
  position: relative;
}
.md-datepicker-button:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  content: "";
  speak: none;
}

.md-datepicker-input {
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  min-width: 120px;
  max-width: 328px;
  padding: 0 0 5px;
}
.md-datepicker-input::-ms-clear {
  display: none;
}

._md-datepicker-floating-label > md-datepicker {
  overflow: visible;
}
._md-datepicker-floating-label > md-datepicker .md-datepicker-input-container {
  border: none;
}
._md-datepicker-floating-label > md-datepicker .md-datepicker-button {
  float: left;
  margin-top: -16px;
  top: 13.5px;
}
[dir=rtl] ._md-datepicker-floating-label > md-datepicker .md-datepicker-button {
  float: right;
}
._md-datepicker-floating-label .md-input {
  float: none;
}
._md-datepicker-floating-label._md-datepicker-has-calendar-icon > label:not(.md-no-float):not(.md-container-ignore) {
  right: 18px;
  left: auto;
  width: calc(100% - 84px);
}
[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon > label:not(.md-no-float):not(.md-container-ignore) {
  right: auto;
}
[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon > label:not(.md-no-float):not(.md-container-ignore) {
  left: 18px;
}
._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation {
  margin-left: 64px;
}
[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation {
  margin-left: auto;
  margin-right: 64px;
}

._md-datepicker-has-triangle-icon {
  padding-right: 18px;
  margin-right: -18px;
}
[dir=rtl] ._md-datepicker-has-triangle-icon {
  padding-right: 0;
  padding-left: 18px;
}
[dir=rtl] ._md-datepicker-has-triangle-icon {
  margin-right: auto;
  margin-left: -18px;
}

.md-datepicker-input-container {
  position: relative;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: inline-block;
  width: auto;
}
.md-icon-button + .md-datepicker-input-container {
  margin-left: 12px;
}
[dir=rtl] .md-icon-button + .md-datepicker-input-container {
  margin-left: auto;
  margin-right: 12px;
}
.md-datepicker-input-container.md-datepicker-focused {
  border-bottom-width: 2px;
}

.md-datepicker-is-showing .md-scroll-mask {
  z-index: 99;
}

.md-datepicker-calendar-pane {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 100;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  transform: scale(0);
  transform-origin: 0 0;
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.md-datepicker-calendar-pane.md-pane-open {
  transform: scale(1);
}

.md-datepicker-input-mask {
  height: 40px;
  width: 340px;
  position: relative;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
  cursor: text;
}

.md-datepicker-calendar {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.5, 0, 0.25, 1);
}
.md-pane-open .md-datepicker-calendar {
  opacity: 1;
}
.md-datepicker-calendar md-calendar:focus {
  outline: none;
}

.md-datepicker-expand-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
}

.md-datepicker-triangle-button {
  position: absolute;
  right: 0;
  bottom: -2.5px;
  transform: translateX(45%);
}
[dir=rtl] .md-datepicker-triangle-button {
  right: auto;
  left: 0;
}
[dir=rtl] .md-datepicker-triangle-button {
  transform: translateX(-45%);
}

.md-datepicker-triangle-button.md-button.md-icon-button {
  height: 36px;
  width: 36px;
  position: absolute;
  padding: 8px;
}

md-datepicker[disabled] .md-datepicker-input-container {
  border-bottom-color: transparent;
}
md-datepicker[disabled] .md-datepicker-triangle-button {
  display: none;
}

.md-datepicker-open {
  overflow: hidden;
}
.md-datepicker-open .md-datepicker-input-container,
.md-datepicker-open input.md-input {
  border-bottom-color: transparent;
}
.md-datepicker-open .md-datepicker-triangle-button, .md-datepicker-open.md-input-has-value > label, .md-datepicker-open.md-input-has-placeholder > label {
  display: none;
}

.md-datepicker-pos-adjusted .md-datepicker-input-mask {
  display: none;
}

.md-datepicker-calendar-pane .md-calendar {
  transform: translateY(-85px);
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.125s;
}
.md-datepicker-calendar-pane.md-pane-open .md-calendar {
  transform: translateY(0);
}

.md-dialog-is-showing {
  max-height: 100%;
}

.md-dialog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 80;
  overflow: hidden;
}

md-dialog {
  opacity: 0;
  min-width: 240px;
  max-width: 80%;
  max-height: 80%;
  position: relative;
  overflow: auto;
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}
md-dialog.md-transition-in {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(0, 0) scale(1);
}
md-dialog.md-transition-out {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(0, 100%) scale(0.2);
}
md-dialog > form {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
md-dialog .md-dialog-content {
  padding: 24px;
}
md-dialog md-dialog-content {
  order: 1;
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
md-dialog md-dialog-content:not([layout=row]) > *:first-child:not(.md-subheader) {
  margin-top: 0;
}
md-dialog md-dialog-content:focus {
  outline: none;
}
md-dialog md-dialog-content .md-subheader {
  margin: 0;
}
md-dialog md-dialog-content .md-dialog-content-body {
  width: 100%;
}
md-dialog md-dialog-content .md-prompt-input-container {
  width: 100%;
  box-sizing: border-box;
}
md-dialog md-dialog-actions {
  display: flex;
  order: 2;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  padding-right: 8px;
  padding-left: 16px;
  min-height: 52px;
  overflow: hidden;
}
[dir=rtl] md-dialog md-dialog-actions {
  padding-right: 16px;
}
[dir=rtl] md-dialog md-dialog-actions {
  padding-left: 8px;
}
md-dialog md-dialog-actions .md-button {
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 0;
  margin-top: 8px;
}
[dir=rtl] md-dialog md-dialog-actions .md-button {
  margin-left: 0;
}
[dir=rtl] md-dialog md-dialog-actions .md-button {
  margin-right: 8px;
}
md-dialog.md-content-overflow md-dialog-actions {
  border-top-width: 1px;
  border-top-style: solid;
}

@media screen and (-ms-high-contrast: active) {
  md-dialog {
    border: 1px solid #fff;
  }
}
@media (max-width: 959px) {
  md-dialog.md-dialog-fullscreen {
    min-height: 100%;
    min-width: 100%;
    border-radius: 0;
  }
}
md-divider {
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  margin: 0;
}
md-divider[md-inset] {
  margin-left: 80px;
}
[dir=rtl] md-divider[md-inset] {
  margin-left: auto;
  margin-right: 80px;
}

@media (max-width: 599px) {
  .layout-row:not(.layout-xs-column) > md-divider,
.layout-xs-row > md-divider {
    border-top-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column) > md-divider,
.layout-gt-xs-row:not(.layout-sm-column) > md-divider,
.layout-sm-row:not(.layout-sm-column) > md-divider {
    border-top-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column) > md-divider,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column) > md-divider,
.layout-gt-sm-row:not(.layout-md-column) > md-divider,
.layout-md-row:not(.layout-md-column) > md-divider {
    border-top-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > md-divider,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > md-divider,
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column) > md-divider,
.layout-gt-md-row:not(.layout-lg-column) > md-divider,
.layout-lg-row:not(.layout-lg-column) > md-divider {
    border-top-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
  }
}
@media (min-width: 1920px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider,
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider,
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider,
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider,
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-divider {
    border-top-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
  }
}
md-fab-speed-dial {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 20;
  /*
   * Hide some graphics glitches if switching animation types
   */
  /*
   * Handle the animations
   */
}
md-fab-speed-dial.md-fab-bottom-right {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  position: absolute;
}
md-fab-speed-dial.md-fab-bottom-left {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  position: absolute;
}
md-fab-speed-dial.md-fab-top-right {
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  position: absolute;
}
md-fab-speed-dial.md-fab-top-left {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  position: absolute;
}
md-fab-speed-dial:not(.md-hover-full) {
  pointer-events: none;
}
md-fab-speed-dial:not(.md-hover-full) md-fab-trigger, md-fab-speed-dial:not(.md-hover-full) .md-fab-action-item {
  pointer-events: auto;
}
md-fab-speed-dial:not(.md-hover-full).md-is-open {
  pointer-events: auto;
}
md-fab-speed-dial ._md-css-variables {
  z-index: 20;
}
md-fab-speed-dial.md-is-open .md-fab-action-item {
  align-items: center;
}
md-fab-speed-dial md-fab-actions {
  display: flex;
  height: auto;
}
md-fab-speed-dial md-fab-actions .md-fab-action-item {
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-fab-speed-dial.md-down {
  flex-direction: column;
}
md-fab-speed-dial.md-down md-fab-trigger {
  order: 1;
}
md-fab-speed-dial.md-down md-fab-actions {
  flex-direction: column;
  order: 2;
}
md-fab-speed-dial.md-up {
  flex-direction: column;
}
md-fab-speed-dial.md-up md-fab-trigger {
  order: 2;
}
md-fab-speed-dial.md-up md-fab-actions {
  flex-direction: column-reverse;
  order: 1;
}
md-fab-speed-dial.md-left {
  flex-direction: row;
}
md-fab-speed-dial.md-left md-fab-trigger {
  order: 2;
}
md-fab-speed-dial.md-left md-fab-actions {
  flex-direction: row-reverse;
  order: 1;
}
md-fab-speed-dial.md-left md-fab-actions .md-fab-action-item {
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-fab-speed-dial.md-right {
  flex-direction: row;
}
md-fab-speed-dial.md-right md-fab-trigger {
  order: 1;
}
md-fab-speed-dial.md-right md-fab-actions {
  flex-direction: row;
  order: 2;
}
md-fab-speed-dial.md-right md-fab-actions .md-fab-action-item {
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-fab-speed-dial.md-fling-remove .md-fab-action-item > *, md-fab-speed-dial.md-scale-remove .md-fab-action-item > * {
  visibility: hidden;
}
md-fab-speed-dial.md-fling .md-fab-action-item {
  opacity: 1;
}
md-fab-speed-dial.md-fling.md-animations-waiting .md-fab-action-item {
  opacity: 0;
  transition-duration: 0s;
}
md-fab-speed-dial.md-scale .md-fab-action-item {
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 0.1428571429s;
}

md-fab-toolbar {
  display: block;
  /*
   * Closed styling
   */
  /*
   * Open styling
   */
}
md-fab-toolbar.md-fab-bottom-right {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  position: absolute;
}
md-fab-toolbar.md-fab-bottom-left {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  position: absolute;
}
md-fab-toolbar.md-fab-top-right {
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  position: absolute;
}
md-fab-toolbar.md-fab-top-left {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  position: absolute;
}
md-fab-toolbar .md-fab-toolbar-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  height: 68px;
}
md-fab-toolbar md-fab-trigger {
  position: absolute;
  z-index: 20;
}
md-fab-toolbar md-fab-trigger button {
  overflow: visible !important;
}
md-fab-toolbar md-fab-trigger .md-fab-toolbar-background {
  display: block;
  position: absolute;
  z-index: 21;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-fab-toolbar md-fab-trigger md-icon {
  position: relative;
  z-index: 22;
  opacity: 1;
  transition: all 200ms ease-in;
}
md-fab-toolbar.md-left md-fab-trigger {
  right: 0;
}
[dir=rtl] md-fab-toolbar.md-left md-fab-trigger {
  right: auto;
  left: 0;
}
md-fab-toolbar.md-left .md-toolbar-tools {
  flex-direction: row-reverse;
}
md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
  margin-right: 0.6rem;
}
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
  margin-right: auto;
  margin-left: 0.6rem;
}
md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
  margin-left: -0.8rem;
}
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
  margin-left: auto;
  margin-right: -0.8rem;
}
md-fab-toolbar.md-left .md-toolbar-tools > .md-button:last-child {
  margin-right: 8px;
}
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools > .md-button:last-child {
  margin-right: auto;
  margin-left: 8px;
}
md-fab-toolbar.md-right md-fab-trigger {
  left: 0;
}
[dir=rtl] md-fab-toolbar.md-right md-fab-trigger {
  left: auto;
  right: 0;
}
md-fab-toolbar.md-right .md-toolbar-tools {
  flex-direction: row;
}
md-fab-toolbar md-toolbar {
  background-color: transparent !important;
  pointer-events: none;
  z-index: 23;
}
md-fab-toolbar md-toolbar .md-toolbar-tools {
  padding: 0 20px;
  margin-top: 3px;
}
md-fab-toolbar md-toolbar .md-fab-action-item {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 0.15s;
}
md-fab-toolbar.md-is-open md-fab-trigger > button {
  box-shadow: none;
}
md-fab-toolbar.md-is-open md-fab-trigger > button md-icon {
  opacity: 0;
}
md-fab-toolbar.md-is-open .md-fab-action-item {
  opacity: 1;
  transform: scale(1);
}

md-grid-list {
  box-sizing: border-box;
  display: block;
  position: relative;
}
md-grid-list md-grid-tile,
md-grid-list md-grid-tile > figure,
md-grid-list md-grid-tile-header,
md-grid-list md-grid-tile-footer {
  box-sizing: border-box;
}
md-grid-list md-grid-tile {
  display: block;
  position: absolute;
}
md-grid-list md-grid-tile figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
}
md-grid-list md-grid-tile md-grid-tile-header,
md-grid-list md-grid-tile md-grid-tile-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
md-grid-list md-grid-tile md-grid-tile-header h3,
md-grid-list md-grid-tile md-grid-tile-header h4,
md-grid-list md-grid-tile md-grid-tile-footer h3,
md-grid-list md-grid-tile md-grid-tile-footer h4 {
  font-weight: 400;
  margin: 0 0 0 16px;
}
md-grid-list md-grid-tile md-grid-tile-header h3,
md-grid-list md-grid-tile md-grid-tile-footer h3 {
  font-size: 14px;
}
md-grid-list md-grid-tile md-grid-tile-header h4,
md-grid-list md-grid-tile md-grid-tile-footer h4 {
  font-size: 12px;
}
md-grid-list md-grid-tile md-grid-tile-header {
  top: 0;
}
md-grid-list md-grid-tile md-grid-tile-footer {
  bottom: 0;
}

@media screen and (-ms-high-contrast: active) {
  md-grid-tile {
    border: 1px solid #fff;
  }

  md-grid-tile-footer {
    border-top: 1px solid #fff;
  }
}
md-icon {
  margin: auto;
  background-repeat: no-repeat no-repeat;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  height: 24px;
  width: 24px;
  min-height: 24px;
  min-width: 24px;
}
md-icon svg {
  pointer-events: none;
  display: block;
}
md-icon[md-font-icon] {
  line-height: 24px;
  width: auto;
}

md-input-container {
  display: inline-block;
  position: relative;
  padding: 2px;
  margin: 18px 0px;
  vertical-align: middle;
  /*
   * The .md-input class is added to the input/textarea
   */
}
md-input-container:after {
  content: "";
  display: table;
  clear: both;
}
md-input-container.md-block {
  display: block;
}
md-input-container .md-errors-spacer {
  float: right;
  min-height: 24px;
  min-width: 1px;
}
[dir=rtl] md-input-container .md-errors-spacer {
  float: left;
}
md-input-container > md-icon {
  position: absolute;
  top: 8px;
  left: 2px;
  right: auto;
}
[dir=rtl] md-input-container > md-icon {
  left: auto;
}
[dir=rtl] md-input-container > md-icon {
  right: 2px;
}
md-input-container textarea,
md-input-container input[type=text],
md-input-container input[type=password],
md-input-container input[type=datetime],
md-input-container input[type=datetime-local],
md-input-container input[type=date],
md-input-container input[type=month],
md-input-container input[type=time],
md-input-container input[type=week],
md-input-container input[type=number],
md-input-container input[type=email],
md-input-container input[type=url],
md-input-container input[type=search],
md-input-container input[type=tel],
md-input-container input[type=color] {
  /* remove default appearance from all input/textarea */
  -moz-appearance: none;
  -webkit-appearance: none;
}
md-input-container input[type=date],
md-input-container input[type=datetime-local],
md-input-container input[type=month],
md-input-container input[type=time],
md-input-container input[type=week] {
  min-height: 30px;
}
md-input-container textarea {
  resize: none;
  overflow: hidden;
}
md-input-container textarea.md-input {
  min-height: 30px;
  -ms-flex-preferred-size: auto;
}
md-input-container textarea[md-no-autogrow] {
  height: auto;
  overflow: auto;
}
md-input-container label:not(.md-container-ignore) {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: auto;
}
[dir=rtl] md-input-container label:not(.md-container-ignore) {
  left: auto;
}
[dir=rtl] md-input-container label:not(.md-container-ignore) {
  right: 0;
}
md-input-container label:not(.md-container-ignore).md-required:after {
  content: " *";
  font-size: 13px;
  vertical-align: top;
}
md-input-container label:not(.md-no-float):not(.md-container-ignore),
md-input-container .md-placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  order: 1;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  padding-left: 2px;
  padding-right: 0;
  z-index: 1;
  transform: translate3d(0, 28px, 0) scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-width: 100%;
  transform-origin: left top;
}
[dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore),
[dir=rtl] md-input-container .md-placeholder {
  padding-left: 0;
}
[dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore),
[dir=rtl] md-input-container .md-placeholder {
  padding-right: 2px;
}
[dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore),
[dir=rtl] md-input-container .md-placeholder {
  transform-origin: right top;
}
md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore),
md-input-container.md-input-has-value .md-placeholder {
  padding-left: 3px;
  padding-right: 0;
}
[dir=rtl] md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore),
[dir=rtl] md-input-container.md-input-has-value .md-placeholder {
  padding-left: 0;
}
[dir=rtl] md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore),
[dir=rtl] md-input-container.md-input-has-value .md-placeholder {
  padding-right: 3px;
}
md-input-container .md-placeholder {
  position: absolute;
  top: 0;
  opacity: 0;
  transition-property: opacity, transform;
  transform: translate3d(0, 30px, 0);
}
md-input-container.md-input-focused .md-placeholder {
  opacity: 1;
  transform: translate3d(0, 24px, 0);
}
md-input-container.md-input-has-value .md-placeholder {
  transition: none;
  opacity: 0;
}
md-input-container:not(.md-input-has-value):not(.md-input-has-placeholder) input:not(:focus) {
  color: transparent;
}
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-ampm-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-day-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-hour-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-millisecond-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-minute-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-month-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-second-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-week-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-year-field, md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-text {
  color: transparent;
}
md-input-container .md-input {
  order: 2;
  display: block;
  margin-top: 0;
  background: none;
  padding-top: 2px;
  padding-bottom: 1px;
  padding-left: 0;
  padding-right: 2px;
  border-width: 0 0 1px 0;
  line-height: 26px;
  height: 30px;
  -ms-flex-preferred-size: 26px;
  border-radius: 0;
  border-style: solid;
  transition: border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  box-sizing: border-box;
  float: left;
}
[dir=rtl] md-input-container .md-input {
  padding-left: 2px;
}
[dir=rtl] md-input-container .md-input {
  padding-right: 0;
}
[dir=rtl] md-input-container .md-input {
  float: right;
}
md-input-container .md-input:focus {
  outline: none;
}
md-input-container .md-input:invalid {
  outline: none;
  box-shadow: none;
}
md-input-container .md-input.md-no-flex {
  flex: none !important;
}
md-input-container .md-char-counter {
  text-align: right;
  padding-right: 2px;
  padding-left: 0;
}
[dir=rtl] md-input-container .md-char-counter {
  text-align: left;
}
[dir=rtl] md-input-container .md-char-counter {
  padding-right: 0;
}
[dir=rtl] md-input-container .md-char-counter {
  padding-left: 2px;
}
md-input-container .md-input-messages-animation {
  position: relative;
  order: 4;
  overflow: hidden;
  clear: left;
}
[dir=rtl] md-input-container .md-input-messages-animation {
  clear: right;
}
md-input-container .md-input-message-animation, md-input-container .md-char-counter {
  font-size: 12px;
  line-height: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  opacity: 1;
  margin-top: 0;
  padding-top: 8px;
}
md-input-container .md-input-message-animation:not(.md-char-counter), md-input-container .md-char-counter:not(.md-char-counter) {
  padding-right: 5px;
  padding-left: 0;
}
[dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter), [dir=rtl] md-input-container .md-char-counter:not(.md-char-counter) {
  padding-right: 0;
}
[dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter), [dir=rtl] md-input-container .md-char-counter:not(.md-char-counter) {
  padding-left: 5px;
}
md-input-container:not(.md-input-invalid) .md-auto-hide .md-input-message-animation {
  opacity: 0;
  margin-top: -100px;
}
md-input-container .md-input-message-animation.ng-enter-prepare {
  opacity: 0;
  margin-top: -100px;
}
md-input-container .md-input-message-animation.ng-enter:not(.ng-enter-active) {
  opacity: 0;
  margin-top: -100px;
}
md-input-container.md-input-focused label:not(.md-no-float), md-input-container.md-input-has-placeholder label:not(.md-no-float), md-input-container.md-input-has-value label:not(.md-no-float) {
  transform: translate3d(0, 6px, 0) scale(0.75);
  transition: transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s, width cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s;
}
md-input-container.md-input-has-value label {
  transition: none;
}
md-input-container.md-input-focused .md-input,
md-input-container .md-input.ng-invalid.ng-dirty, md-input-container.md-input-resized .md-input {
  padding-bottom: 0;
  border-width: 0 0 2px 0;
}
md-input-container .md-input[disabled], [disabled] md-input-container .md-input {
  background-position: bottom -1px left 0;
  background-size: 4px 1px;
  background-repeat: repeat-x;
}
md-input-container.md-icon-float {
  transition: margin-top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
md-input-container.md-icon-float > label {
  pointer-events: none;
  position: absolute;
}
md-input-container.md-icon-float > md-icon {
  top: 8px;
  left: 2px;
  right: auto;
}
[dir=rtl] md-input-container.md-icon-float > md-icon {
  left: auto;
}
[dir=rtl] md-input-container.md-icon-float > md-icon {
  right: 2px;
}
md-input-container.md-icon-left > label:not(.md-no-float):not(.md-container-ignore),
md-input-container.md-icon-left > label .md-placeholder, md-input-container.md-icon-right > label:not(.md-no-float):not(.md-container-ignore),
md-input-container.md-icon-right > label .md-placeholder {
  width: calc(100% - 36px);
  padding: 0;
}
md-input-container.md-icon-left {
  padding-left: 36px;
  padding-right: 0;
}
[dir=rtl] md-input-container.md-icon-left {
  padding-left: 0;
}
[dir=rtl] md-input-container.md-icon-left {
  padding-right: 36px;
}
md-input-container.md-icon-left > label {
  left: 36px;
  right: auto;
}
[dir=rtl] md-input-container.md-icon-left > label {
  left: auto;
}
[dir=rtl] md-input-container.md-icon-left > label {
  right: 36px;
}
md-input-container.md-icon-right {
  padding-left: 0;
  padding-right: 36px;
}
[dir=rtl] md-input-container.md-icon-right {
  padding-left: 36px;
}
[dir=rtl] md-input-container.md-icon-right {
  padding-right: 0;
}
md-input-container.md-icon-right > md-icon:last-of-type {
  margin: 0;
  right: 2px;
  left: auto;
}
[dir=rtl] md-input-container.md-icon-right > md-icon:last-of-type {
  right: auto;
}
[dir=rtl] md-input-container.md-icon-right > md-icon:last-of-type {
  left: 2px;
}
md-input-container.md-icon-left.md-icon-right {
  padding-left: 36px;
  padding-right: 36px;
}
md-input-container.md-icon-left.md-icon-right > label:not(.md-no-float):not(.md-container-ignore),
md-input-container.md-icon-left.md-icon-right > label .md-placeholder {
  width: calc(100% - (36px * 2));
}

.md-resize-wrapper {
  position: relative;
}
.md-resize-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.md-resize-handle {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 10px;
  background: transparent;
  width: 100%;
  cursor: ns-resize;
}

@media screen and (-ms-high-contrast: active) {
  md-input-container.md-default-theme > md-icon {
    fill: #fff;
  }
}
md-list {
  display: block;
  padding: 8px 0px 8px 0px;
}
md-list .md-subheader {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2em;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner {
  min-height: 40px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item::before,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner::before {
  content: "";
  min-height: 40px;
  visibility: hidden;
  display: inline-block;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item md-icon:first-child,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner md-icon:first-child {
  width: 20px;
  height: 20px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item > md-icon:first-child:not(.md-avatar-icon),
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
  margin-right: 36px;
  margin-top: 4px;
  margin-bottom: 4px;
}
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item > md-icon:first-child:not(.md-avatar-icon),
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
  margin-right: auto;
  margin-left: 36px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar, md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon {
  margin-right: 20px;
  margin-top: 6px;
  margin-bottom: 6px;
}
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar, [dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon {
  margin-right: auto;
  margin-left: 20px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar {
  flex: none;
  width: 36px;
  height: 36px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container .md-secondary.md-button,
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container .md-secondary.md-button {
  margin-top: 4px;
  margin-bottom: 4px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container md-checkbox:not(.md-dense-disabled),
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container md-checkbox:not(.md-dense-disabled) {
  min-height: 40px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
  margin-left: 56px;
}
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
  margin-left: auto;
  margin-right: 56px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h4,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text p, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text h3,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text h4,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h4,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text p, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text h3,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text h4,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text p {
  line-height: 1.05;
  font-size: 12px;
  padding-bottom: 4px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style .md-list-item-text h3 {
  font-size: 13px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style {
  min-height: 60px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line::before, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style::before {
  content: "";
  min-height: 60px;
  visibility: hidden;
  display: inline-block;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-avatar, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-avatar-icon, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style > .md-avatar, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line > .md-no-style .md-avatar-icon {
  margin-top: 12px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style {
  min-height: 76px;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line::before, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style::before {
  content: "";
  min-height: 76px;
  visibility: hidden;
  display: inline-block;
}
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > md-icon:first-child,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-avatar, md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style > md-icon:first-child,
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line > .md-no-style > .md-avatar {
  margin-top: 16px;
}
md-list.md-dense:not(.md-dense-disabled) .md-subheader-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

md-list-item {
  position: relative;
}
md-list-item.md-proxy-focus.md-focused .md-no-style {
  transition: background-color 0.15s linear;
}
md-list-item._md-button-wrap {
  position: relative;
}
md-list-item._md-button-wrap > div.md-button:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 16px;
  margin: 0;
  font-weight: 400;
  text-align: left;
  border: medium none;
}
[dir=rtl] md-list-item._md-button-wrap > div.md-button:first-child {
  text-align: right;
}
md-list-item._md-button-wrap > div.md-button:first-child > .md-button:first-child {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  padding: 0;
}
md-list-item._md-button-wrap > div.md-button:first-child .md-list-item-inner {
  width: 100%;
}
md-list-item._md-button-wrap > div.md-button:first-child .md-list-item-inner::before {
  content: "";
  min-height: inherit;
  visibility: hidden;
  display: inline-block;
}
md-list-item.md-no-proxy,
md-list-item .md-no-style {
  position: relative;
  padding: 0px 16px;
  flex: 1 1 auto;
}
md-list-item.md-no-proxy.md-button,
md-list-item .md-no-style.md-button {
  font-size: inherit;
  height: inherit;
  text-align: left;
  text-transform: none;
  width: 100%;
  white-space: normal;
  flex-direction: inherit;
  align-items: inherit;
  border-radius: 0;
  margin: 0;
}
[dir=rtl] md-list-item.md-no-proxy.md-button,
[dir=rtl] md-list-item .md-no-style.md-button {
  text-align: right;
}
md-list-item.md-no-proxy.md-button > .md-ripple-container,
md-list-item .md-no-style.md-button > .md-ripple-container {
  border-radius: 0;
}
md-list-item.md-no-proxy:focus,
md-list-item .md-no-style:focus {
  outline: none;
}
md-list-item.md-clickable:hover {
  cursor: pointer;
}
md-list-item md-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
[dir=rtl] md-list-item md-divider {
  left: auto;
  right: 0;
}
md-list-item md-divider[md-inset] {
  left: 72px;
  width: calc(100% - 72px);
  margin: 0 !important;
}
[dir=rtl] md-list-item md-divider[md-inset] {
  left: auto;
  right: 72px;
}
md-list-item,
md-list-item .md-list-item-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 48px;
  height: auto;
}
md-list-item::before,
md-list-item .md-list-item-inner::before {
  content: "";
  min-height: 48px;
  visibility: hidden;
  display: inline-block;
}
md-list-item > div.md-primary > md-icon:not(.md-avatar-icon), md-list-item > div.md-secondary > md-icon:not(.md-avatar-icon), md-list-item > md-icon:first-child:not(.md-avatar-icon),
md-list-item > md-icon.md-secondary:not(.md-avatar-icon),
md-list-item .md-list-item-inner > div.md-primary > md-icon:not(.md-avatar-icon),
md-list-item .md-list-item-inner > div.md-secondary > md-icon:not(.md-avatar-icon),
md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon),
md-list-item .md-list-item-inner > md-icon.md-secondary:not(.md-avatar-icon) {
  width: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
  box-sizing: content-box;
}
md-list-item > div.md-primary > md-checkbox, md-list-item > div.md-secondary > md-checkbox, md-list-item > md-checkbox,
md-list-item md-checkbox.md-secondary,
md-list-item .md-list-item-inner > div.md-primary > md-checkbox,
md-list-item .md-list-item-inner > div.md-secondary > md-checkbox,
md-list-item .md-list-item-inner > md-checkbox,
md-list-item .md-list-item-inner md-checkbox.md-secondary {
  align-self: center;
}
md-list-item > div.md-primary > md-checkbox .md-label, md-list-item > div.md-secondary > md-checkbox .md-label, md-list-item > md-checkbox .md-label,
md-list-item md-checkbox.md-secondary .md-label,
md-list-item .md-list-item-inner > div.md-primary > md-checkbox .md-label,
md-list-item .md-list-item-inner > div.md-secondary > md-checkbox .md-label,
md-list-item .md-list-item-inner > md-checkbox .md-label,
md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label {
  display: none;
}
md-list-item > md-icon:first-child:not(.md-avatar-icon),
md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
  margin-right: 32px;
}
[dir=rtl] md-list-item > md-icon:first-child:not(.md-avatar-icon),
[dir=rtl] md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
  margin-right: auto;
  margin-left: 32px;
}
md-list-item .md-avatar, md-list-item .md-avatar-icon,
md-list-item .md-list-item-inner .md-avatar,
md-list-item .md-list-item-inner .md-avatar-icon {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 16px;
  border-radius: 50%;
  box-sizing: content-box;
}
[dir=rtl] md-list-item .md-avatar, [dir=rtl] md-list-item .md-avatar-icon,
[dir=rtl] md-list-item .md-list-item-inner .md-avatar,
[dir=rtl] md-list-item .md-list-item-inner .md-avatar-icon {
  margin-right: auto;
  margin-left: 16px;
}
md-list-item .md-avatar,
md-list-item .md-list-item-inner .md-avatar {
  flex: none;
  width: 40px;
  height: 40px;
}
md-list-item .md-avatar-icon,
md-list-item .md-list-item-inner .md-avatar-icon {
  padding: 8px;
}
md-list-item .md-avatar-icon svg,
md-list-item .md-list-item-inner .md-avatar-icon svg {
  width: 24px;
  height: 24px;
}
md-list-item > md-checkbox,
md-list-item .md-list-item-inner > md-checkbox {
  width: 24px;
  min-height: 40px;
  margin-left: 0px;
  margin-right: 29px;
}
[dir=rtl] md-list-item > md-checkbox,
[dir=rtl] md-list-item .md-list-item-inner > md-checkbox {
  margin-left: 29px;
}
[dir=rtl] md-list-item > md-checkbox,
[dir=rtl] md-list-item .md-list-item-inner > md-checkbox {
  margin-right: 0px;
}
md-list-item .md-secondary-container,
md-list-item .md-list-item-inner .md-secondary-container {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  margin: auto;
  margin-right: 0;
  margin-left: auto;
}
[dir=rtl] md-list-item .md-secondary-container,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container {
  margin-right: auto;
}
[dir=rtl] md-list-item .md-secondary-container,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container {
  margin-left: 0;
}
md-list-item .md-secondary-container .md-button:last-of-type, md-list-item .md-secondary-container .md-icon-button:last-of-type,
md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,
md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type {
  margin-right: 0;
}
[dir=rtl] md-list-item .md-secondary-container .md-button:last-of-type, [dir=rtl] md-list-item .md-secondary-container .md-icon-button:last-of-type,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type {
  margin-right: auto;
  margin-left: 0;
}
md-list-item .md-secondary-container md-checkbox,
md-list-item .md-list-item-inner .md-secondary-container md-checkbox {
  margin: 0 6px;
  padding: 0 8px;
  min-height: 40px;
}
md-list-item .md-secondary-container md-checkbox:last-child,
md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child {
  width: 40px;
  margin-right: 0;
}
[dir=rtl] md-list-item .md-secondary-container md-checkbox:last-child,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child {
  margin-right: auto;
  margin-left: 0;
}
md-list-item .md-secondary-container md-switch,
md-list-item .md-list-item-inner .md-secondary-container md-switch {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: -6px;
}
[dir=rtl] md-list-item .md-secondary-container md-switch,
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-switch {
  margin-right: auto;
  margin-left: -6px;
}
md-list-item > p, md-list-item > .md-list-item-inner > p,
md-list-item .md-list-item-inner > p,
md-list-item .md-list-item-inner > .md-list-item-inner > p {
  flex: 1 1 auto;
  margin: 0;
}
md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style, md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style {
  align-items: flex-start;
  justify-content: center;
}
md-list-item.md-2-line.md-long-text, md-list-item.md-2-line > .md-no-style.md-long-text, md-list-item.md-3-line.md-long-text, md-list-item.md-3-line > .md-no-style.md-long-text {
  margin-top: 8px;
  margin-bottom: 8px;
}
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text, md-list-item.md-3-line .md-list-item-text, md-list-item.md-3-line > .md-no-style .md-list-item-text {
  flex: 1 1 auto;
  margin: auto;
  text-overflow: ellipsis;
  overflow: hidden;
}
md-list-item.md-2-line .md-list-item-text.md-offset, md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list-item.md-3-line .md-list-item-text.md-offset, md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
  margin-left: 56px;
}
[dir=rtl] md-list-item.md-2-line .md-list-item-text.md-offset, [dir=rtl] md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, [dir=rtl] md-list-item.md-3-line .md-list-item-text.md-offset, [dir=rtl] md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
  margin-left: auto;
  margin-right: 56px;
}
md-list-item.md-2-line .md-list-item-text h3, md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list-item.md-3-line .md-list-item-text h3, md-list-item.md-3-line > .md-no-style .md-list-item-text h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 0 0;
  line-height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
md-list-item.md-2-line .md-list-item-text h4, md-list-item.md-2-line > .md-no-style .md-list-item-text h4, md-list-item.md-3-line .md-list-item-text h4, md-list-item.md-3-line > .md-no-style .md-list-item-text h4 {
  font-size: 14px;
  letter-spacing: 0.01em;
  margin: 3px 0 1px 0;
  font-weight: 400;
  line-height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
md-list-item.md-2-line .md-list-item-text p, md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list-item.md-3-line .md-list-item-text p, md-list-item.md-3-line > .md-no-style .md-list-item-text p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 0 0;
  line-height: 1.6em;
}
md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style {
  height: auto;
  min-height: 72px;
}
md-list-item.md-2-line::before, md-list-item.md-2-line > .md-no-style::before {
  content: "";
  min-height: 72px;
  visibility: hidden;
  display: inline-block;
}
md-list-item.md-2-line > .md-avatar, md-list-item.md-2-line .md-avatar-icon, md-list-item.md-2-line > .md-no-style > .md-avatar, md-list-item.md-2-line > .md-no-style .md-avatar-icon {
  margin-top: 12px;
}
md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > md-icon:first-child {
  align-self: flex-start;
}
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text {
  flex: 1 1 auto;
}
md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style {
  height: auto;
  min-height: 88px;
}
md-list-item.md-3-line::before, md-list-item.md-3-line > .md-no-style::before {
  content: "";
  min-height: 88px;
  visibility: hidden;
  display: inline-block;
}
md-list-item.md-3-line > md-icon:first-child,
md-list-item.md-3-line > .md-avatar, md-list-item.md-3-line > .md-no-style > md-icon:first-child,
md-list-item.md-3-line > .md-no-style > .md-avatar {
  margin-top: 16px;
}

.md-open-menu-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  border-radius: 2px;
  max-height: calc(100vh - 10px);
  overflow: auto;
}
.md-open-menu-container md-menu-divider {
  margin-top: 4px;
  margin-bottom: 4px;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  width: 100%;
}
.md-open-menu-container md-menu-content > * {
  opacity: 0;
}
.md-open-menu-container:not(.md-clickable) {
  pointer-events: none;
}
.md-open-menu-container.md-active {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 200ms;
}
.md-open-menu-container.md-active > md-menu-content > * {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 200ms;
  transition-delay: 100ms;
}
.md-open-menu-container.md-leave {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 250ms;
}

md-menu-content {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  max-height: 304px;
  overflow-y: auto;
}
md-menu-content.md-dense {
  max-height: 208px;
}
md-menu-content.md-dense md-menu-item {
  height: 32px;
  min-height: 32px;
}

md-menu-item {
  display: flex;
  flex-direction: row;
  min-height: 48px;
  height: 48px;
  align-content: center;
  justify-content: flex-start;
  /*
   * We cannot use flex on <button> elements due to a bug in Firefox, so we also can't use it on
   * <a> elements. Add some top padding to fix alignment since buttons automatically align their
   * text vertically.
   */
}
md-menu-item > * {
  width: 100%;
  margin: auto 0;
  padding-left: 16px;
  padding-right: 16px;
}
md-menu-item > a.md-button {
  padding-top: 5px;
}
md-menu-item > .md-button {
  text-align: left;
  display: inline-block;
  border-radius: 0;
  margin: auto 0;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
md-menu-item > .md-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
[dir=rtl] md-menu-item > .md-button {
  text-align: right;
}
md-menu-item > .md-button md-icon {
  margin: auto 16px auto 0;
}
[dir=rtl] md-menu-item > .md-button md-icon {
  margin: auto 0 auto 16px;
}
md-menu-item > .md-button p {
  display: inline-block;
  margin: auto;
}
md-menu-item > .md-button span {
  margin-top: auto;
  margin-bottom: auto;
}
md-menu-item > .md-button .md-ripple-container {
  border-radius: inherit;
}

md-toolbar .md-menu {
  height: auto;
  margin: auto;
  padding: 0;
}

@media (max-width: 959px) {
  md-menu-content {
    min-width: 112px;
  }

  md-menu-content[width="3"] {
    min-width: 168px;
  }

  md-menu-content[width="4"] {
    min-width: 224px;
  }

  md-menu-content[width="5"] {
    min-width: 280px;
  }

  md-menu-content[width="6"] {
    min-width: 336px;
  }

  md-menu-content[width="7"] {
    min-width: 392px;
  }
}
@media (min-width: 960px) {
  md-menu-content {
    min-width: 96px;
  }

  md-menu-content[width="3"] {
    min-width: 192px;
  }

  md-menu-content[width="4"] {
    min-width: 256px;
  }

  md-menu-content[width="5"] {
    min-width: 320px;
  }

  md-menu-content[width="6"] {
    min-width: 384px;
  }

  md-menu-content[width="7"] {
    min-width: 448px;
  }
}
md-toolbar.md-menu-toolbar h2.md-toolbar-tools {
  line-height: 1rem;
  height: auto;
  padding: 28px;
  padding-bottom: 12px;
}
md-toolbar.md-has-open-menu {
  position: relative;
  z-index: 100;
}

md-menu-bar {
  padding: 0 20px;
  display: block;
  position: relative;
  z-index: 2;
}
md-menu-bar .md-menu {
  display: inline-block;
  padding: 0;
  position: relative;
}
md-menu-bar button {
  font-size: 14px;
  padding: 0 10px;
  margin: 0;
  border: 0;
  background-color: transparent;
  height: 40px;
}
md-menu-bar md-backdrop.md-menu-backdrop {
  z-index: -2;
}

md-menu-content.md-menu-bar-menu.md-dense {
  max-height: none;
  padding: 16px 0;
}
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent {
  position: relative;
}
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent > md-icon {
  position: absolute;
  padding: 0;
  width: 24px;
  top: 6px;
  left: 24px;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent > md-icon {
  left: auto;
  right: 24px;
}
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent > .md-button, md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu > .md-button {
  padding: 0 32px 0 64px;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent > .md-button, [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu > .md-button {
  padding: 0 64px 0 32px;
}
md-menu-content.md-menu-bar-menu.md-dense .md-button {
  min-height: 0;
  height: 32px;
}
md-menu-content.md-menu-bar-menu.md-dense .md-button span {
  float: left;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span {
  float: right;
}
md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text {
  float: right;
  margin: 0 8px;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text {
  float: left;
}
md-menu-content.md-menu-bar-menu.md-dense md-menu-divider {
  margin: 8px 0;
}
md-menu-content.md-menu-bar-menu.md-dense md-menu-item > .md-button, md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button {
  text-align: left;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item > .md-button, [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button {
  text-align: right;
}
md-menu-content.md-menu-bar-menu.md-dense .md-menu {
  padding: 0;
}
md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button {
  position: relative;
  margin: 0;
  width: 100%;
  text-transform: none;
  font-weight: normal;
  border-radius: 0px;
  padding-left: 16px;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button {
  padding-left: 0;
  padding-right: 16px;
}
md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button:after {
  display: block;
  content: "\25BC";
  position: absolute;
  top: 0px;
  speak: none;
  transform: rotate(270deg) scaleY(0.45) scaleX(0.9);
  right: 28px;
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button:after {
  transform: rotate(90deg) scaleY(0.45) scaleX(0.9);
}
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button:after {
  right: auto;
  left: 28px;
}

/** Matches "md-tabs md-tabs-wrapper" style. */
.md-nav-bar {
  border-style: solid;
  border-width: 0 0 1px;
  height: 48px;
  position: relative;
}

._md-nav-bar-list {
  outline: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
}

.md-nav-item:first-of-type {
  margin-left: 8px;
}

.md-button._md-nav-button {
  line-height: 24px;
  margin: 0 4px;
  padding: 12px 16px;
  transition: background-color 0.35s cubic-bezier(0.35, 0, 0.25, 1);
}
.md-button._md-nav-button:focus {
  outline: none;
}

md-nav-ink-bar {
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left top;
  will-change: transform;
  transition: transform 0.125s cubic-bezier(0.35, 0, 0.25, 1);
}
md-nav-ink-bar.ng-animate {
  transition: none;
}

md-nav-extra-content {
  min-height: 48px;
  padding-right: 12px;
}

@-webkit-keyframes indeterminate-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes indeterminate-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
md-progress-circular {
  position: relative;
  display: block;
  transform: scale(1, 1);
}
[dir=rtl] md-progress-circular {
  transform: scale(-1, 1);
}
md-progress-circular._md-progress-circular-disabled {
  visibility: hidden;
}
md-progress-circular.md-mode-indeterminate svg {
  -webkit-animation: indeterminate-rotate 1568.63ms linear infinite;
          animation: indeterminate-rotate 1568.63ms linear infinite;
}
md-progress-circular svg {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
}

md-progress-linear {
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  transform: scale(1, 1);
}
[dir=rtl] md-progress-linear {
  transform: scale(-1, 1);
}
md-progress-linear._md-progress-linear-disabled {
  visibility: hidden;
}
md-progress-linear .md-container {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  transform: translate(0, 0) scale(1, 1);
}
md-progress-linear .md-container .md-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
}
md-progress-linear .md-container .md-dashed:before {
  content: "";
  display: none;
  position: absolute;
  margin-top: 0;
  height: 5px;
  width: 100%;
  background-color: transparent;
  background-size: 10px 10px !important;
  background-position: 0px -23px;
}
md-progress-linear .md-container .md-bar1, md-progress-linear .md-container .md-bar2 {
  transition: transform 0.2s linear;
}
md-progress-linear .md-container.md-mode-query .md-bar1 {
  display: none;
}
md-progress-linear .md-container.md-mode-query .md-bar2 {
  transition: all 0.2s linear;
  -webkit-animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
          animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
}
md-progress-linear .md-container.md-mode-determinate .md-bar1 {
  display: none;
}
md-progress-linear .md-container.md-mode-indeterminate .md-bar1 {
  -webkit-animation: md-progress-linear-indeterminate-scale-1 4s infinite, md-progress-linear-indeterminate-1 4s infinite;
          animation: md-progress-linear-indeterminate-scale-1 4s infinite, md-progress-linear-indeterminate-1 4s infinite;
}
md-progress-linear .md-container.md-mode-indeterminate .md-bar2 {
  -webkit-animation: md-progress-linear-indeterminate-scale-2 4s infinite, md-progress-linear-indeterminate-2 4s infinite;
          animation: md-progress-linear-indeterminate-scale-2 4s infinite, md-progress-linear-indeterminate-2 4s infinite;
}
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container {
  -webkit-animation: none;
          animation: none;
}
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar1 {
  -webkit-animation-name: none;
          animation-name: none;
}
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar2 {
  -webkit-animation-name: none;
          animation-name: none;
}
md-progress-linear .md-container.md-mode-buffer {
  background-color: transparent !important;
  transition: all 0.2s linear;
}
md-progress-linear .md-container.md-mode-buffer .md-dashed:before {
  display: block;
  -webkit-animation: buffer 3s infinite linear;
          animation: buffer 3s infinite linear;
}

@-webkit-keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1);
  }
}

@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1);
  }
}
@-webkit-keyframes buffer {
  0% {
    opacity: 1;
    background-position: 0px -23px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    background-position: -200px -23px;
  }
}
@keyframes buffer {
  0% {
    opacity: 1;
    background-position: 0px -23px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    background-position: -200px -23px;
  }
}
@-webkit-keyframes md-progress-linear-indeterminate-scale-1 {
  0% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  36.6% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: cubic-bezier(0.334731432, 0.124819821, 0.785843996, 1);
            animation-timing-function: cubic-bezier(0.334731432, 0.124819821, 0.785843996, 1);
  }
  69.15% {
    transform: scaleX(0.83);
    -webkit-animation-timing-function: cubic-bezier(0.225732004, 0, 0.233648906, 1.3709798);
            animation-timing-function: cubic-bezier(0.225732004, 0, 0.233648906, 1.3709798);
  }
  100% {
    transform: scaleX(0.1);
  }
}
@keyframes md-progress-linear-indeterminate-scale-1 {
  0% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  36.6% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: cubic-bezier(0.334731432, 0.124819821, 0.785843996, 1);
            animation-timing-function: cubic-bezier(0.334731432, 0.124819821, 0.785843996, 1);
  }
  69.15% {
    transform: scaleX(0.83);
    -webkit-animation-timing-function: cubic-bezier(0.225732004, 0, 0.233648906, 1.3709798);
            animation-timing-function: cubic-bezier(0.225732004, 0, 0.233648906, 1.3709798);
  }
  100% {
    transform: scaleX(0.1);
  }
}
@-webkit-keyframes md-progress-linear-indeterminate-1 {
  0% {
    left: -105.1666666667%;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  20% {
    left: -105.1666666667%;
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495818703);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495818703);
  }
  69.15% {
    left: 21.5%;
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.38135197, 0.55, 0.956352125);
            animation-timing-function: cubic-bezier(0.302435, 0.38135197, 0.55, 0.956352125);
  }
  100% {
    left: 95.4444444444%;
  }
}
@keyframes md-progress-linear-indeterminate-1 {
  0% {
    left: -105.1666666667%;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  20% {
    left: -105.1666666667%;
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495818703);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495818703);
  }
  69.15% {
    left: 21.5%;
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.38135197, 0.55, 0.956352125);
            animation-timing-function: cubic-bezier(0.302435, 0.38135197, 0.55, 0.956352125);
  }
  100% {
    left: 95.4444444444%;
  }
}
@-webkit-keyframes md-progress-linear-indeterminate-scale-2 {
  0% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: cubic-bezier(0.205028172, 0.057050836, 0.57660995, 0.453970841);
            animation-timing-function: cubic-bezier(0.205028172, 0.057050836, 0.57660995, 0.453970841);
  }
  19.15% {
    transform: scaleX(0.57);
    -webkit-animation-timing-function: cubic-bezier(0.152312994, 0.196431957, 0.648373778, 1.00431535);
            animation-timing-function: cubic-bezier(0.152312994, 0.196431957, 0.648373778, 1.00431535);
  }
  44.15% {
    transform: scaleX(0.91);
    -webkit-animation-timing-function: cubic-bezier(0.25775882, -0.003163357, 0.211761916, 1.38178961);
            animation-timing-function: cubic-bezier(0.25775882, -0.003163357, 0.211761916, 1.38178961);
  }
  100% {
    transform: scaleX(0.1);
  }
}
@keyframes md-progress-linear-indeterminate-scale-2 {
  0% {
    transform: scaleX(0.1);
    -webkit-animation-timing-function: cubic-bezier(0.205028172, 0.057050836, 0.57660995, 0.453970841);
            animation-timing-function: cubic-bezier(0.205028172, 0.057050836, 0.57660995, 0.453970841);
  }
  19.15% {
    transform: scaleX(0.57);
    -webkit-animation-timing-function: cubic-bezier(0.152312994, 0.196431957, 0.648373778, 1.00431535);
            animation-timing-function: cubic-bezier(0.152312994, 0.196431957, 0.648373778, 1.00431535);
  }
  44.15% {
    transform: scaleX(0.91);
    -webkit-animation-timing-function: cubic-bezier(0.25775882, -0.003163357, 0.211761916, 1.38178961);
            animation-timing-function: cubic-bezier(0.25775882, -0.003163357, 0.211761916, 1.38178961);
  }
  100% {
    transform: scaleX(0.1);
  }
}
@-webkit-keyframes md-progress-linear-indeterminate-2 {
  0% {
    left: -54.8888888889%;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.5150584, 0.409684966);
            animation-timing-function: cubic-bezier(0.15, 0, 0.5150584, 0.409684966);
  }
  25% {
    left: -17.25%;
    -webkit-animation-timing-function: cubic-bezier(0.3103299, 0.284057684, 0.8, 0.733718979);
            animation-timing-function: cubic-bezier(0.3103299, 0.284057684, 0.8, 0.733718979);
  }
  48.35% {
    left: 29.5%;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.627034903, 0.6, 0.902025796);
            animation-timing-function: cubic-bezier(0.4, 0.627034903, 0.6, 0.902025796);
  }
  100% {
    left: 117.3888888889%;
  }
}
@keyframes md-progress-linear-indeterminate-2 {
  0% {
    left: -54.8888888889%;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.5150584, 0.409684966);
            animation-timing-function: cubic-bezier(0.15, 0, 0.5150584, 0.409684966);
  }
  25% {
    left: -17.25%;
    -webkit-animation-timing-function: cubic-bezier(0.3103299, 0.284057684, 0.8, 0.733718979);
            animation-timing-function: cubic-bezier(0.3103299, 0.284057684, 0.8, 0.733718979);
  }
  48.35% {
    left: 29.5%;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.627034903, 0.6, 0.902025796);
            animation-timing-function: cubic-bezier(0.4, 0.627034903, 0.6, 0.902025796);
  }
  100% {
    left: 117.3888888889%;
  }
}
md-radio-button {
  box-sizing: border-box;
  display: block;
  margin-bottom: 16px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
md-radio-button[disabled] {
  cursor: default;
}
md-radio-button[disabled] .md-container {
  cursor: default;
}
md-radio-button .md-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  left: 0;
  right: auto;
}
[dir=rtl] md-radio-button .md-container {
  left: auto;
}
[dir=rtl] md-radio-button .md-container {
  right: 0;
}
md-radio-button .md-container .md-ripple-container {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
}
md-radio-button .md-container:before {
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 50%;
  content: "";
  position: absolute;
  display: block;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
  width: auto;
}
md-radio-button.md-align-top-left > div.md-container {
  top: 12px;
}
md-radio-button .md-off {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  transition: border-color ease 0.28s;
}
md-radio-button .md-on {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: transform ease 0.28s;
  transform: scale(0);
}
md-radio-button.md-checked .md-on {
  transform: scale(0.5);
}
md-radio-button .md-label {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin-left: 30px;
  margin-right: 0;
  vertical-align: middle;
  white-space: normal;
  pointer-events: none;
  width: auto;
}
[dir=rtl] md-radio-button .md-label {
  margin-left: 0;
}
[dir=rtl] md-radio-button .md-label {
  margin-right: 30px;
}

md-radio-group:focus {
  outline: none;
}
md-radio-group.md-focused.ng-not-empty .md-checked .md-container:before {
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
}
md-radio-group.md-focused.ng-empty > md-radio-button:first-child .md-container:before {
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
}
md-radio-group[disabled] md-radio-button {
  cursor: default;
}
md-radio-group[disabled] md-radio-button .md-container {
  cursor: default;
}

@media (max-width: 599px) {
  .layout-row:not(.layout-xs-column) > md-radio-button,
.layout-xs-row > md-radio-button {
    margin-bottom: 0;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column) > md-radio-button,
.layout-gt-xs-row:not(.layout-sm-column) > md-radio-button,
.layout-sm-row:not(.layout-sm-column) > md-radio-button {
    margin-bottom: 0;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column) > md-radio-button,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column) > md-radio-button,
.layout-gt-sm-row:not(.layout-md-column) > md-radio-button,
.layout-md-row:not(.layout-md-column) > md-radio-button {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > md-radio-button,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column) > md-radio-button,
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column) > md-radio-button,
.layout-gt-md-row:not(.layout-lg-column) > md-radio-button,
.layout-lg-row:not(.layout-lg-column) > md-radio-button {
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button,
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button,
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button,
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button,
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button,
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column) > md-radio-button {
    margin-bottom: 0;
  }
}
.md-inline-form md-radio-group {
  margin: 18px 0 19px;
}
.md-inline-form md-radio-group md-radio-button {
  display: inline-block;
  height: 30px;
  padding: 2px 10px 2px 6px;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
}
.md-inline-form md-radio-group md-radio-button .md-label {
  top: 4px;
}
.md-inline-form md-radio-group md-radio-button .md-container {
  margin-top: 2px;
}

@media screen and (-ms-high-contrast: active) {
  md-radio-button.md-default-theme .md-on {
    background-color: #fff;
  }
}
md-input-container:not([md-no-float]) .md-select-placeholder span:first-child {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: left top;
}
[dir=rtl] md-input-container:not([md-no-float]) .md-select-placeholder span:first-child {
  transform-origin: right top;
}
md-input-container.md-input-focused:not([md-no-float]) md-select:not([placeholder]) .md-select-placeholder span:first-child {
  transform: translate(-2px, -22px) scale(0.75);
}

.md-select-menu-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  opacity: 0;
  display: none;
  transform: translateY(-1px);
}
.md-select-menu-container:not(.md-clickable) {
  pointer-events: none;
}
.md-select-menu-container md-progress-circular {
  display: table;
  margin: 24px auto !important;
}
.md-select-menu-container.md-active {
  display: block;
  opacity: 1;
}
.md-select-menu-container.md-active md-select-menu {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 150ms;
}
.md-select-menu-container.md-active md-select-menu > * {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 150ms;
  transition-delay: 100ms;
}
.md-select-menu-container.md-leave {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 250ms;
}

.md-inline-form md-select {
  margin-top: 20px;
}

md-input-container > md-select, .md-inline-form md-input-container > md-select {
  margin-top: 0px;
}
md-input-container > md-select {
  order: 2;
}

md-input-container:not(.md-input-has-value) md-select[required]:not(.md-no-asterisk) .md-select-value span:first-child:after, md-input-container:not(.md-input-has-value) md-select.ng-required:not(.md-no-asterisk) .md-select-value span:first-child:after {
  content: " *";
  font-size: 13px;
  vertical-align: top;
}

md-input-container.md-input-invalid md-select .md-select-value {
  border-bottom-style: solid;
  padding-bottom: 1px;
}

md-select {
  display: flex;
}
md-select[required].ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after, md-select.ng-required.ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after {
  content: " *";
  font-size: 13px;
  vertical-align: top;
}
md-select[disabled] .md-select-value {
  background-position: bottom -1px left 0;
  background-size: 4px 1px;
  background-repeat: repeat-x;
  padding-bottom: 2px;
  padding-top: 1px;
  transform: translateY(1px);
}
md-select:focus {
  outline: none;
}
md-select[disabled]:hover {
  cursor: default;
}
md-select:not([disabled]):hover {
  cursor: pointer;
}
md-select:not([disabled]):focus .md-select-value {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  padding-bottom: 0px;
}

md-input-container md-select:not([disabled]):focus .md-select-value {
  border-bottom-width: 2px;
}
md-input-container md-select[disabled] .md-select-value {
  background-position: bottom -1px left 0;
}
md-input-container md-select .md-select-value {
  min-height: 26px;
  border-bottom-width: 1px;
  padding-bottom: 1px;
}
md-input-container md-select .md-select-value.md-select-placeholder {
  padding-left: 0;
  padding-right: 2px;
}
[dir=rtl] md-input-container md-select .md-select-value.md-select-placeholder {
  padding-left: 2px;
}
[dir=rtl] md-input-container md-select .md-select-value.md-select-placeholder {
  padding-right: 0;
}

.md-select-value {
  display: flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 1px;
  padding-left: 0;
  padding-right: 2px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  box-sizing: content-box;
  min-width: 88px;
  min-height: 26px;
  margin-bottom: auto;
  -ms-flex-item-align: start;
  flex-grow: 1;
}
[dir=rtl] .md-select-value {
  padding-left: 2px;
}
[dir=rtl] .md-select-value {
  padding-right: 0;
}
.md-select-value > span:not(.md-select-icon) {
  max-width: 100%;
  flex: 1 1 auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.md-select-value > span:not(.md-select-icon) .md-text {
  display: inline;
}
.md-select-value .md-select-icon {
  display: block;
  align-items: flex-end;
  text-align: right;
  width: 24px;
  transform: translateY(-2px);
  font-size: 1.2rem;
}
[dir=rtl] .md-select-value .md-select-icon {
  align-items: flex-start;
}
[dir=rtl] .md-select-value .md-select-icon {
  text-align: left;
}
.md-select-value .md-select-icon:after {
  display: block;
  content: "\25BC";
  position: relative;
  top: 2px;
  right: -4px;
  left: auto;
  speak: none;
  font-size: 13px;
  transform: scaleY(0.5);
}
[dir=rtl] .md-select-value .md-select-icon:after {
  right: auto;
}
[dir=rtl] .md-select-value .md-select-icon:after {
  left: -4px;
}
.md-select-value.md-select-placeholder {
  display: flex;
  order: 1;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  z-index: 1;
}

md-select-menu {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
  max-height: 256px;
  min-height: 48px;
  overflow-y: hidden;
  transform-origin: left top;
  transform: scale(1);
}
md-select-menu.md-reverse {
  flex-direction: column-reverse;
}
md-select-menu:not(.md-overflow) md-content {
  padding-top: 8px;
  padding-bottom: 8px;
}
[dir=rtl] md-select-menu {
  transform-origin: right top;
}
md-select-menu md-content {
  min-width: 136px;
  min-height: 48px;
  max-height: 256px;
  overflow-y: auto;
}
md-select-menu > * {
  opacity: 0;
}

md-option {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  transition: background 0.15s linear;
  padding: 0 16px 0 16px;
  height: 48px;
}
md-option[disabled] {
  cursor: default;
}
md-option:focus {
  outline: none;
}
md-option .md-text {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

md-optgroup {
  display: block;
}
md-optgroup label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px;
  font-weight: 500;
}
md-optgroup md-option {
  padding-left: 32px;
  padding-right: 32px;
}

@media screen and (-ms-high-contrast: active) {
  .md-select-backdrop {
    background-color: transparent;
  }

  md-select-menu {
    border: 1px solid #fff;
  }
}
md-select-menu[multiple] md-option.md-checkbox-enabled {
  padding-left: 40px;
  padding-right: 16px;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled {
  padding-left: 16px;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled {
  padding-right: 40px;
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  right: auto;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  left: auto;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  right: 0;
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:before {
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 50%;
  content: "";
  position: absolute;
  display: block;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
  width: auto;
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container .md-ripple-container {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-icon {
  box-sizing: border-box;
  transition: 240ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
}
md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon {
  border-color: transparent;
}
md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon:after {
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 0px;
  display: table;
  width: 6px;
  height: 12px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  content: "";
}
md-select-menu[multiple] md-option.md-checkbox-enabled[disabled] {
  cursor: default;
}
md-select-menu[multiple] md-option.md-checkbox-enabled.md-indeterminate .md-icon:after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: table;
  width: 10.8px;
  height: 2px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  content: "";
}
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  margin-left: 10.6666666667px;
  margin-right: auto;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  margin-left: auto;
}
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
  margin-right: 10.6666666667px;
}

md-sidenav {
  box-sizing: border-box;
  position: absolute;
  flex-direction: column;
  z-index: 60;
  width: 320px;
  max-width: 320px;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
md-sidenav ul {
  list-style: none;
}
md-sidenav.md-closed {
  display: none;
}
md-sidenav.md-closed-add, md-sidenav.md-closed-remove {
  display: flex;
  transition: 0.2s ease-in all;
}
md-sidenav.md-closed-add.md-closed-add-active, md-sidenav.md-closed-remove.md-closed-remove-active {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
md-sidenav.md-locked-open-add, md-sidenav.md-locked-open-remove {
  position: static;
  display: flex;
  transform: translate3d(0, 0, 0);
}
md-sidenav.md-locked-open, md-sidenav.md-locked-open.md-closed, md-sidenav.md-locked-open.md-closed.md-sidenav-left, md-sidenav.md-locked-open.md-closed.md-sidenav-right {
  position: static;
  display: flex;
  transform: translate3d(0, 0, 0);
}
md-sidenav.md-locked-open-remove.md-closed {
  position: static;
  display: flex;
  transform: translate3d(0, 0, 0);
}
md-sidenav.md-closed.md-locked-open-add {
  position: static;
  display: flex;
  transform: translate3d(0%, 0, 0);
}
md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active) {
  transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  width: 0 !important;
  min-width: 0 !important;
}
md-sidenav.md-closed.md-locked-open-add-active {
  transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-sidenav.md-locked-open-remove-active {
  transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  width: 0 !important;
  min-width: 0 !important;
}

.md-sidenav-backdrop.md-locked-open {
  display: none;
}

.md-sidenav-left, md-sidenav {
  left: 0;
  top: 0;
  transform: translate3d(0%, 0, 0);
}
.md-sidenav-left.md-closed, md-sidenav.md-closed {
  transform: translate3d(-100%, 0, 0);
}

.md-sidenav-right {
  left: 100%;
  top: 0;
  transform: translate(-100%, 0);
}
.md-sidenav-right.md-closed {
  transform: translate(0%, 0);
}

@media (min-width: 600px) {
  md-sidenav {
    max-width: 400px;
  }
}
@media (max-width: 456px) {
  md-sidenav {
    width: calc(100% - 56px);
    min-width: calc(100% - 56px);
    max-width: calc(100% - 56px);
  }
}
@media screen and (-ms-high-contrast: active) {
  .md-sidenav-left, md-sidenav {
    border-right: 1px solid #fff;
  }

  .md-sidenav-right {
    border-left: 1px solid #fff;
  }
}
@-webkit-keyframes sliderFocusThumb {
  0% {
    transform: scale(0.7);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@keyframes sliderFocusThumb {
  0% {
    transform: scale(0.7);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@-webkit-keyframes sliderDiscreteFocusThumb {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes sliderDiscreteFocusThumb {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes sliderDiscreteFocusRing {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
  }
}
@keyframes sliderDiscreteFocusRing {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
  }
}
md-slider {
  height: 48px;
  min-width: 128px;
  position: relative;
  margin-left: 4px;
  margin-right: 4px;
  padding: 0;
  display: block;
  flex-direction: row;
  /**
   * Track
   */
  /**
   * Slider thumb
   */
  /* The sign that's focused in discrete mode */
  /**
   * The border/background that comes in when focused in non-discrete mode
   */
  /* Don't animate left/right while panning */
}
md-slider *, md-slider *:after {
  box-sizing: border-box;
}
md-slider .md-slider-wrapper {
  outline: none;
  width: 100%;
  height: 100%;
}
md-slider .md-slider-content {
  position: relative;
}
md-slider .md-track-container {
  width: 100%;
  position: absolute;
  top: 23px;
  height: 2px;
}
md-slider .md-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
}
md-slider .md-track-fill {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: width, height;
}
md-slider .md-track-ticks {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
}
md-slider .md-track-ticks canvas {
  width: 100%;
  height: 100%;
}
md-slider .md-thumb-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: left, right, bottom;
}
[dir=rtl] md-slider .md-thumb-container {
  left: auto;
  right: 0;
}
md-slider .md-thumb {
  z-index: 1;
  position: absolute;
  left: -10px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  transform: scale(0.7);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[dir=rtl] md-slider .md-thumb {
  left: auto;
  right: -10px;
}
md-slider .md-thumb:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border-width: 3px;
  border-style: solid;
  transition: inherit;
}
md-slider .md-sign {
  /* Center the children (slider-thumb-text) */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -14px;
  top: -17px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  transform: scale(0.4) translate3d(0, 67.5px, 0);
  transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  /* The arrow pointing down under the sign */
}
md-slider .md-sign:after {
  position: absolute;
  content: "";
  left: 0px;
  border-radius: 16px;
  top: 19px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top-width: 16px;
  border-top-style: solid;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition: all 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}
[dir=rtl] md-slider .md-sign:after {
  left: auto;
  right: 0px;
}
md-slider .md-sign .md-thumb-text {
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
}
md-slider .md-focus-ring {
  position: absolute;
  left: -17px;
  top: 7px;
  width: 34px;
  height: 34px;
  border-radius: 34px;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.35, 0, 0.25, 1);
}
[dir=rtl] md-slider .md-focus-ring {
  left: auto;
  right: -17px;
}
md-slider .md-disabled-thumb {
  position: absolute;
  left: -14px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  transform: scale(0.5);
  border-width: 4px;
  border-style: solid;
  display: none;
}
[dir=rtl] md-slider .md-disabled-thumb {
  left: auto;
  right: -14px;
}
md-slider.md-min .md-sign {
  opacity: 0;
}
md-slider:focus {
  outline: none;
}
md-slider.md-dragging .md-thumb-container,
md-slider.md-dragging .md-track-fill {
  transition: none;
}
md-slider:not([md-discrete]) {
  /* Hide the sign and ticks in non-discrete mode */
}
md-slider:not([md-discrete]) .md-track-ticks,
md-slider:not([md-discrete]) .md-sign {
  display: none;
}
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper .md-thumb:hover {
  transform: scale(0.8);
}
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring {
  transform: scale(1);
  opacity: 1;
}
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
  -webkit-animation: sliderFocusThumb 0.7s cubic-bezier(0.35, 0, 0.25, 1);
          animation: sliderFocusThumb 0.7s cubic-bezier(0.35, 0, 0.25, 1);
}
md-slider:not([md-discrete]):not([disabled]).md-active .md-slider-wrapper .md-thumb {
  transform: scale(1);
}
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring {
  transform: scale(0);
  -webkit-animation: sliderDiscreteFocusRing 0.5s cubic-bezier(0.35, 0, 0.25, 1);
          animation: sliderDiscreteFocusRing 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
  -webkit-animation: sliderDiscreteFocusThumb 0.5s cubic-bezier(0.35, 0, 0.25, 1);
          animation: sliderDiscreteFocusThumb 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb, md-slider[md-discrete]:not([disabled]).md-active .md-thumb {
  transform: scale(0);
}
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign,
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign:after, md-slider[md-discrete]:not([disabled]).md-active .md-sign,
md-slider[md-discrete]:not([disabled]).md-active .md-sign:after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
md-slider[md-discrete][disabled][readonly] .md-thumb {
  transform: scale(0);
}
md-slider[md-discrete][disabled][readonly] .md-sign,
md-slider[md-discrete][disabled][readonly] .md-sign:after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
md-slider[disabled] .md-track-fill {
  display: none;
}
md-slider[disabled] .md-track-ticks {
  opacity: 0;
}
md-slider[disabled]:not([readonly]) .md-sign {
  opacity: 0;
}
md-slider[disabled] .md-thumb {
  transform: scale(0.5);
}
md-slider[disabled] .md-disabled-thumb {
  display: block;
}
md-slider[md-vertical] {
  flex-direction: column;
  min-height: 128px;
  min-width: 0;
}
md-slider[md-vertical] .md-slider-wrapper {
  flex: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 48px;
  align-self: center;
  display: flex;
  justify-content: center;
}
md-slider[md-vertical] .md-track-container {
  height: 100%;
  width: 2px;
  top: 0;
  left: calc(50% - (2px / 2));
}
md-slider[md-vertical] .md-thumb-container {
  top: auto;
  margin-bottom: 23px;
  left: calc(50% - 1px);
  bottom: 0;
}
md-slider[md-vertical] .md-thumb-container .md-thumb:after {
  left: 1px;
}
md-slider[md-vertical] .md-thumb-container .md-focus-ring {
  left: -16px;
}
md-slider[md-vertical] .md-track-fill {
  bottom: 0;
}
md-slider[md-vertical][md-discrete] .md-sign {
  left: -40px;
  top: 9.5px;
  transform: scale(0.4) translate3d(67.5px, 0, 0);
  /* The arrow pointing left next the sign */
}
md-slider[md-vertical][md-discrete] .md-sign:after {
  top: 9.5px;
  left: 19px;
  border-top: 14px solid transparent;
  border-right: 0;
  border-bottom: 14px solid transparent;
  border-left-width: 16px;
  border-left-style: solid;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition: all 0.2s ease-in-out;
}
md-slider[md-vertical][md-discrete] .md-sign .md-thumb-text {
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
}
md-slider[md-vertical][md-discrete].md-active .md-sign:after,
md-slider[md-vertical][md-discrete] .md-focused .md-sign:after, md-slider[md-vertical][md-discrete][disabled][readonly] .md-sign:after {
  top: 0;
}
md-slider[md-vertical][disabled][readonly] .md-thumb {
  transform: scale(0);
}
md-slider[md-vertical][disabled][readonly] .md-sign,
md-slider[md-vertical][disabled][readonly] .md-sign:after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
md-slider[md-invert]:not([md-vertical]) .md-track-fill {
  left: auto;
  right: 0;
}
[dir=rtl] md-slider[md-invert]:not([md-vertical]) .md-track-fill {
  left: 0;
}
[dir=rtl] md-slider[md-invert]:not([md-vertical]) .md-track-fill {
  right: auto;
}
md-slider[md-invert][md-vertical] .md-track-fill {
  bottom: auto;
  top: 0;
}

md-slider-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
md-slider-container > *:first-child:not(md-slider), md-slider-container > *:last-child:not(md-slider) {
  min-width: 25px;
  max-width: 42px;
  height: 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: color, max-width;
}
md-slider-container > *:first-child:not(md-slider) {
  margin-right: 16px;
}
[dir=rtl] md-slider-container > *:first-child:not(md-slider) {
  margin-right: auto;
  margin-left: 16px;
}
md-slider-container > *:last-child:not(md-slider) {
  margin-left: 16px;
}
[dir=rtl] md-slider-container > *:last-child:not(md-slider) {
  margin-left: auto;
  margin-right: 16px;
}
md-slider-container[md-vertical] {
  flex-direction: column;
}
md-slider-container[md-vertical] > *:first-child:not(md-slider), md-slider-container[md-vertical] > *:last-child:not(md-slider) {
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
md-slider-container md-input-container input[type=number] {
  text-align: center;
  padding-left: 15px;
  height: 50px;
  margin-top: -25px;
}
[dir=rtl] md-slider-container md-input-container input[type=number] {
  padding-left: 0;
  padding-right: 15px;
}

@media screen and (-ms-high-contrast: active) {
  md-slider.md-default-theme .md-track {
    border-bottom: 1px solid #fff;
  }
}
.md-sticky-clone {
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  position: absolute !important;
  transform: translate3d(-9999px, -9999px, 0);
}
.md-sticky-clone[sticky-state=active] {
  transform: translate3d(0, 0, 0);
}
.md-sticky-clone[sticky-state=active]:not(.md-sticky-no-effect) .md-subheader-inner {
  -webkit-animation: subheaderStickyHoverIn 0.3s ease-out both;
          animation: subheaderStickyHoverIn 0.3s ease-out both;
}

@-webkit-keyframes subheaderStickyHoverIn {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }
  100% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
}

@keyframes subheaderStickyHoverIn {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }
  100% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
}
@-webkit-keyframes subheaderStickyHoverOut {
  0% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes subheaderStickyHoverOut {
  0% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
.md-subheader-wrapper:not(.md-sticky-no-effect) {
  transition: 0.2s ease-out margin;
}
.md-subheader-wrapper:not(.md-sticky-no-effect) .md-subheader {
  margin: 0;
}
.md-subheader-wrapper:not(.md-sticky-no-effect).md-sticky-clone {
  z-index: 2;
}
.md-subheader-wrapper:not(.md-sticky-no-effect)[sticky-state=active] {
  margin-top: -2px;
}
.md-subheader-wrapper:not(.md-sticky-no-effect):not(.md-sticky-clone)[sticky-prev-state=active] .md-subheader-inner:after {
  -webkit-animation: subheaderStickyHoverOut 0.3s ease-out both;
          animation: subheaderStickyHoverOut 0.3s ease-out both;
}

.md-subheader {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  margin: 0 0 0 0;
  position: relative;
}
.md-subheader .md-subheader-inner {
  display: block;
  padding: 16px;
}
.md-subheader .md-subheader-content {
  display: block;
  z-index: 1;
  position: relative;
}

[md-swipe-left], [md-swipe-right] {
  touch-action: pan-y;
}

[md-swipe-up], [md-swipe-down] {
  touch-action: pan-x;
}

.md-inline-form md-switch {
  margin-top: 18px;
  margin-bottom: 19px;
}

md-switch {
  margin: 16px 0;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 30px;
  line-height: 28px;
  align-items: center;
  display: flex;
  margin-left: inherit;
  margin-right: 16px;
}
[dir=rtl] md-switch {
  margin-left: 16px;
}
[dir=rtl] md-switch {
  margin-right: inherit;
}
md-switch:last-of-type {
  margin-left: inherit;
  margin-right: 0;
}
[dir=rtl] md-switch:last-of-type {
  margin-left: 0;
}
[dir=rtl] md-switch:last-of-type {
  margin-right: inherit;
}
md-switch[disabled] {
  cursor: default;
}
md-switch[disabled] .md-container {
  cursor: default;
}
md-switch .md-container {
  cursor: -webkit-grab;
  cursor: grab;
  width: 36px;
  height: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-right: 8px;
  float: left;
}
[dir=rtl] md-switch .md-container {
  margin-right: 0px;
  margin-left: 8px;
}
md-switch.md-inverted .md-container {
  margin-right: initial;
  margin-left: 8px;
}
[dir=rtl] md-switch.md-inverted .md-container {
  margin-right: 8px;
}
[dir=rtl] md-switch.md-inverted .md-container {
  margin-left: initial;
}
md-switch:not([disabled]) .md-dragging, md-switch:not([disabled]).md-dragging .md-container {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
md-switch.md-focused .md-thumb:before {
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
}
md-switch .md-label {
  border-color: transparent;
  border-width: 0;
  float: left;
}
md-switch .md-bar {
  left: 1px;
  width: 34px;
  top: 5px;
  height: 14px;
  border-radius: 8px;
  position: absolute;
}
md-switch .md-thumb-container {
  top: 2px;
  left: 0;
  width: 16px;
  position: absolute;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
md-switch.md-checked .md-thumb-container {
  transform: translate3d(100%, 0, 0);
}
md-switch .md-thumb {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  outline: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
md-switch .md-thumb:before {
  background-color: transparent;
  border-radius: 50%;
  content: "";
  position: absolute;
  display: block;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
  width: auto;
}
md-switch .md-thumb .md-ripple-container {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
}
md-switch:not(.md-dragging) .md-bar,
md-switch:not(.md-dragging) .md-thumb-container,
md-switch:not(.md-dragging) .md-thumb {
  transition: all 0.08s linear;
  transition-property: transform, background-color;
}
md-switch:not(.md-dragging) .md-bar,
md-switch:not(.md-dragging) .md-thumb {
  transition-delay: 0.05s;
}

@media screen and (-ms-high-contrast: active) {
  md-switch.md-default-theme .md-bar {
    background-color: #666;
  }

  md-switch.md-default-theme.md-checked .md-bar {
    background-color: #9E9E9E;
  }

  md-switch.md-default-theme .md-thumb {
    background-color: #fff;
  }
}
@-webkit-keyframes md-tab-content-hide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes md-tab-content-hide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
md-tab-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}

md-tabs {
  display: block;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
md-tabs:not(.md-no-tab-content):not(.md-dynamic-height) {
  min-height: 248px;
}
md-tabs[md-align-tabs=bottom] {
  padding-bottom: 48px;
}
md-tabs[md-align-tabs=bottom] > md-tabs-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
}
md-tabs[md-align-tabs=bottom] > md-tabs-content-wrapper {
  top: 0;
  bottom: 48px;
}
md-tabs.md-dynamic-height md-tabs-content-wrapper {
  min-height: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  overflow: visible;
}
md-tabs.md-dynamic-height md-tab-content.md-active {
  position: relative;
}
md-tabs[md-border-bottom] md-tabs-wrapper {
  border-width: 0 0 1px;
  border-style: solid;
}
md-tabs[md-border-bottom]:not(.md-dynamic-height) md-tabs-content-wrapper {
  top: 49px;
}

md-tabs-wrapper {
  display: block;
  position: relative;
  transform: translate(0, 0);
}
md-tabs-wrapper md-prev-button, md-tabs-wrapper md-next-button {
  height: 100%;
  width: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1em;
  z-index: 2;
  cursor: pointer;
  font-size: 16px;
  background: transparent no-repeat center center;
  transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
md-tabs-wrapper md-prev-button:focus, md-tabs-wrapper md-next-button:focus {
  outline: none;
}
md-tabs-wrapper md-prev-button.md-disabled, md-tabs-wrapper md-next-button.md-disabled {
  opacity: 0.25;
  cursor: default;
}
md-tabs-wrapper md-prev-button.ng-leave, md-tabs-wrapper md-next-button.ng-leave {
  transition: none;
}
md-tabs-wrapper md-prev-button md-icon, md-tabs-wrapper md-next-button md-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
[dir=rtl] md-tabs-wrapper md-prev-button, [dir=rtl] md-tabs-wrapper md-next-button {
  transform: rotateY(180deg) translateY(-50%);
}
md-tabs-wrapper md-prev-button {
  left: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg==");
}
[dir=rtl] md-tabs-wrapper md-prev-button {
  left: auto;
  right: 0;
}
md-tabs-wrapper md-next-button {
  right: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K");
}
[dir=rtl] md-tabs-wrapper md-next-button {
  right: auto;
  left: 0;
}
md-tabs-wrapper md-next-button md-icon {
  transform: translate(-50%, -50%) rotate(180deg);
}
md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper {
  width: 100%;
  flex-direction: row;
}
md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper md-tab-item {
  flex-grow: 1;
}

md-tabs-canvas {
  position: relative;
  overflow: hidden;
  display: block;
  height: 48px;
}
md-tabs-canvas:after {
  content: "";
  display: table;
  clear: both;
}
md-tabs-canvas .md-dummy-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
[dir=rtl] md-tabs-canvas .md-dummy-wrapper {
  left: auto;
  right: 0;
}
md-tabs-canvas.md-paginated {
  margin: 0 32px;
}
md-tabs-canvas.md-center-tabs {
  display: flex;
  flex-direction: column;
  text-align: center;
}
md-tabs-canvas.md-center-tabs .md-tab {
  float: none;
  display: inline-block;
}

md-pagination-wrapper {
  height: 48px;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  position: absolute;
  left: 0;
  transform: translate(0, 0);
}
md-pagination-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
[dir=rtl] md-pagination-wrapper {
  left: auto;
  right: 0;
}
md-pagination-wrapper.md-center-tabs {
  position: relative;
  justify-content: center;
}
md-pagination-wrapper md-tab-item {
  min-width: 72px;
}
@media (min-width: 600px) {
  md-pagination-wrapper md-tab-item {
    min-width: 160px;
  }
}

md-tabs-content-wrapper {
  display: block;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

md-tab-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  overflow: auto;
  transform: translate(0, 0);
}
md-tab-content.md-no-scroll {
  bottom: auto;
  overflow: hidden;
}
md-tab-content.ng-leave, md-tab-content.md-no-transition {
  transition: none;
}
md-tab-content.md-left:not(.md-active) {
  transform: translateX(-100%);
  -webkit-animation: 1s md-tab-content-hide;
          animation: 1s md-tab-content-hide;
  visibility: hidden;
}
[dir=rtl] md-tab-content.md-left:not(.md-active) {
  transform: translateX(100%);
}
md-tab-content.md-left:not(.md-active) * {
  transition: visibility 0s linear;
  transition-delay: 0.5s;
  visibility: hidden;
}
md-tab-content.md-right:not(.md-active) {
  transform: translateX(100%);
  -webkit-animation: 1s md-tab-content-hide;
          animation: 1s md-tab-content-hide;
  visibility: hidden;
}
[dir=rtl] md-tab-content.md-right:not(.md-active) {
  transform: translateX(-100%);
}
md-tab-content.md-right:not(.md-active) * {
  transition: visibility 0s linear;
  transition-delay: 0.5s;
  visibility: hidden;
}
md-tab-content > div {
  flex: 1 0 100%;
  min-width: 0;
}
md-tab-content > div.ng-leave {
  -webkit-animation: 1s md-tab-content-hide;
          animation: 1s md-tab-content-hide;
}

md-ink-bar {
  position: absolute;
  left: auto;
  right: auto;
  bottom: 0;
  height: 2px;
}
md-ink-bar.md-left {
  transition: left 0.125s cubic-bezier(0.35, 0, 0.25, 1), right 0.25s cubic-bezier(0.35, 0, 0.25, 1);
}
md-ink-bar.md-right {
  transition: left 0.25s cubic-bezier(0.35, 0, 0.25, 1), right 0.125s cubic-bezier(0.35, 0, 0.25, 1);
}

md-tab {
  position: absolute;
  z-index: -1;
  left: -9999px;
}

.md-tab {
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  padding: 12px;
  transition: background-color 0.35s cubic-bezier(0.35, 0, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
  float: left;
  font-weight: 500;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
[dir=rtl] .md-tab {
  float: right;
}
.md-tab.md-focused, .md-tab:focus {
  box-shadow: none;
  outline: none;
}
.md-tab.md-active {
  cursor: default;
}
.md-tab.md-disabled {
  pointer-events: none;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  opacity: 0.5;
  cursor: default;
}
.md-tab.ng-leave {
  transition: none;
}

md-toolbar + md-tabs, md-toolbar + md-dialog-content md-tabs {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.md-toast-text {
  padding: 0 8px;
}

md-toast {
  position: absolute;
  z-index: 105;
  box-sizing: border-box;
  cursor: default;
  overflow: hidden;
  padding: 8px;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Transition differently when swiping */
  /*
   * When the toast doesn't take up the whole screen,
   * make it rotate when the user swipes it away
   */
}
md-toast .md-toast-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: 168px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 2px;
  font-size: 14px;
  overflow: hidden;
  transform: translate3d(0, 0, 0) rotateZ(0deg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  justify-content: flex-start;
}
md-toast .md-toast-content::before {
  content: "";
  min-height: 48px;
  visibility: hidden;
  display: inline-block;
}
[dir=rtl] md-toast .md-toast-content {
  justify-content: flex-end;
}
md-toast .md-toast-content span {
  flex: 1 1 0%;
  box-sizing: border-box;
  min-width: 0;
}
md-toast.md-capsule {
  border-radius: 24px;
}
md-toast.md-capsule .md-toast-content {
  border-radius: 24px;
}
md-toast.ng-leave-active .md-toast-content {
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
md-toast.md-swipeleft .md-toast-content, md-toast.md-swiperight .md-toast-content, md-toast.md-swipeup .md-toast-content, md-toast.md-swipedown .md-toast-content {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
md-toast.ng-enter {
  opacity: 0;
}
md-toast.ng-enter .md-toast-content {
  transform: translate3d(0, 100%, 0);
}
md-toast.ng-enter.md-top .md-toast-content {
  transform: translate3d(0, -100%, 0);
}
md-toast.ng-enter.ng-enter-active {
  opacity: 1;
}
md-toast.ng-enter.ng-enter-active .md-toast-content {
  transform: translate3d(0, 0, 0);
}
md-toast.ng-leave.ng-leave-active .md-toast-content {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content {
  transform: translate3d(0, -50%, 0);
}
md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content {
  transform: translate3d(0, 50%, 0);
}
md-toast.ng-leave.ng-leave-active.md-top .md-toast-content {
  transform: translate3d(0, -100%, 0);
}
md-toast .md-action {
  line-height: 19px;
  margin-left: 24px;
  margin-right: 0;
  cursor: pointer;
  text-transform: uppercase;
  float: right;
}
md-toast .md-button {
  min-width: 0;
  margin-right: 0;
  margin-left: 8px;
}
[dir=rtl] md-toast .md-button {
  margin-right: 8px;
}
[dir=rtl] md-toast .md-button {
  margin-left: 0;
}

@media (max-width: 959px) {
  md-toast {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 0;
    bottom: 0;
    padding: 0;
  }
  md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content {
    transform: translate3d(0, -50%, 0);
  }
  md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content {
    transform: translate3d(0, 50%, 0);
  }
}
@media (min-width: 960px) {
  md-toast {
    min-width: 304px;
    /*
    * When the toast doesn't take up the whole screen,
    * make it rotate when the user swipes it away
    */
  }
  md-toast.md-bottom {
    bottom: 0;
  }
  md-toast.md-left {
    left: 0;
  }
  md-toast.md-right {
    right: 0;
  }
  md-toast.md-top {
    top: 0;
  }
  md-toast._md-start {
    left: 0;
  }
  [dir=rtl] md-toast._md-start {
    left: auto;
    right: 0;
  }
  md-toast._md-end {
    right: 0;
  }
  [dir=rtl] md-toast._md-end {
    right: auto;
    left: 0;
  }
  md-toast.ng-leave.ng-leave-active.md-swipeleft .md-toast-content {
    transform: translate3d(-50%, 0, 0);
  }
  md-toast.ng-leave.ng-leave-active.md-swiperight .md-toast-content {
    transform: translate3d(50%, 0, 0);
  }
}
@media (min-width: 1920px) {
  md-toast .md-toast-content {
    max-width: 568px;
  }
}
@media screen and (-ms-high-contrast: active) {
  md-toast {
    border: 1px solid #fff;
  }
}
.md-toast-animating {
  overflow: hidden !important;
}

md-toolbar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  font-size: 20px;
  min-height: 64px;
  width: 100%;
}
md-toolbar._md-toolbar-transitions {
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.35, 0, 0.25, 1);
  transition-property: background-color, fill, color;
}
md-toolbar.md-whiteframe-z1-add, md-toolbar.md-whiteframe-z1-remove {
  transition: box-shadow 0.5s linear;
}
md-toolbar md-toolbar-filler {
  width: 72px;
}
md-toolbar *,
md-toolbar *:before,
md-toolbar *:after {
  box-sizing: border-box;
}
md-toolbar.ng-animate {
  transition: none;
}
md-toolbar.md-tall {
  height: 128px;
  min-height: 128px;
  max-height: 128px;
}
md-toolbar.md-medium-tall {
  height: 88px;
  min-height: 88px;
  max-height: 88px;
}
md-toolbar.md-medium-tall .md-toolbar-tools {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}
md-toolbar > .md-indent {
  margin-left: 64px;
}
[dir=rtl] md-toolbar > .md-indent {
  margin-left: auto;
  margin-right: 64px;
}
md-toolbar ~ md-content > md-list {
  padding: 0;
}
md-toolbar ~ md-content > md-list md-list-item:last-child md-divider {
  display: none;
}

.md-toolbar-tools {
  font-size: 20px;
  letter-spacing: 0.005em;
  box-sizing: border-box;
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 64px;
  max-height: 64px;
  padding: 0 16px;
  margin: 0;
}
.md-toolbar-tools h1, .md-toolbar-tools h2, .md-toolbar-tools h3 {
  font-size: inherit;
  font-weight: inherit;
  margin: inherit;
}
.md-toolbar-tools a {
  color: inherit;
  text-decoration: none;
}
.md-toolbar-tools .fill-height {
  display: flex;
  align-items: center;
}
.md-toolbar-tools md-checkbox {
  margin: inherit;
}
.md-toolbar-tools .md-button {
  margin-top: 0;
  margin-bottom: 0;
}
.md-toolbar-tools .md-button, .md-toolbar-tools .md-button.md-icon-button md-icon {
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.35, 0, 0.25, 1);
  transition-property: background-color, fill, color;
}
.md-toolbar-tools .md-button.ng-animate, .md-toolbar-tools .md-button.md-icon-button md-icon.ng-animate {
  transition: none;
}
.md-toolbar-tools > .md-button:first-child {
  margin-left: -8px;
}
[dir=rtl] .md-toolbar-tools > .md-button:first-child {
  margin-left: auto;
  margin-right: -8px;
}
.md-toolbar-tools > .md-button:last-child {
  margin-right: -8px;
}
[dir=rtl] .md-toolbar-tools > .md-button:last-child {
  margin-right: auto;
  margin-left: -8px;
}
.md-toolbar-tools > md-menu:last-child {
  margin-right: -8px;
}
[dir=rtl] .md-toolbar-tools > md-menu:last-child {
  margin-right: auto;
  margin-left: -8px;
}
.md-toolbar-tools > md-menu:last-child > .md-button {
  margin-right: 0;
}
[dir=rtl] .md-toolbar-tools > md-menu:last-child > .md-button {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (-ms-high-contrast: active) {
  .md-toolbar-tools {
    border-bottom: 1px solid #fff;
  }
}

@media (min-width: 0) and (max-width: 959px) and (orientation: portrait) {
  md-toolbar {
    min-height: 56px;
  }

  .md-toolbar-tools {
    height: 56px;
    max-height: 56px;
  }
}
@media (min-width: 0) and (max-width: 959px) and (orientation: landscape) {
  md-toolbar {
    min-height: 48px;
  }

  .md-toolbar-tools {
    height: 48px;
    max-height: 48px;
  }
}
.md-tooltip {
  display: inline-block;
  pointer-events: none;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 32px;
  line-height: 32px;
  padding-right: 16px;
  padding-left: 16px;
}
.md-tooltip.md-origin-top {
  transform-origin: center bottom;
  margin-top: -24px;
}
.md-tooltip.md-origin-right {
  transform-origin: left center;
  margin-left: 24px;
}
.md-tooltip.md-origin-bottom {
  transform-origin: center top;
  margin-top: 24px;
}
.md-tooltip.md-origin-left {
  transform-origin: right center;
  margin-left: -24px;
}
@media (min-width: 960px) {
  .md-tooltip {
    font-size: 10px;
    height: 22px;
    line-height: 22px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .md-tooltip.md-origin-top {
    margin-top: -14px;
  }
  .md-tooltip.md-origin-right {
    margin-left: 14px;
  }
  .md-tooltip.md-origin-bottom {
    margin-top: 14px;
  }
  .md-tooltip.md-origin-left {
    margin-left: -14px;
  }
}
.md-tooltip.md-show-add {
  transform: scale(0);
}
.md-tooltip.md-show {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 150ms;
  transform: scale(1);
  opacity: 0.9;
}
.md-tooltip.md-hide {
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  transition-duration: 150ms;
  transform: scale(0);
  opacity: 0;
}

.md-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.md-truncate.md-clip {
  text-overflow: clip;
}
.md-truncate.flex {
  width: 0;
}

.md-virtual-repeat-container {
  box-sizing: border-box;
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.md-virtual-repeat-container .md-virtual-repeat-scroller {
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-overflow-scrolling: touch;
}
.md-virtual-repeat-container .md-virtual-repeat-sizer {
  box-sizing: border-box;
  height: 1px;
  display: block;
  margin: 0;
  padding: 0;
  width: 1px;
}
.md-virtual-repeat-container .md-virtual-repeat-offsetter {
  box-sizing: border-box;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-scroller {
  overflow-x: auto;
  overflow-y: hidden;
}
.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter {
  bottom: 16px;
  right: auto;
  white-space: nowrap;
}
[dir=rtl] .md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter {
  right: auto;
  left: auto;
}

.md-whiteframe-1dp, .md-whiteframe-z1 {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-2dp {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-3dp {
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 3px 3px -2px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-4dp, .md-whiteframe-z2 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-5dp {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-6dp {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-7dp, .md-whiteframe-z3 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-8dp {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-9dp {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-10dp, .md-whiteframe-z4 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-11dp {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-12dp {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-13dp, .md-whiteframe-z5 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-14dp {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-15dp {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-16dp {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-17dp {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-18dp {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-19dp {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-20dp {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-21dp {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-22dp {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-23dp {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.md-whiteframe-24dp {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

@media screen and (-ms-high-contrast: active) {
  md-whiteframe {
    border: 1px solid #fff;
  }
}
@media print {
  md-whiteframe, [md-whiteframe] {
    background-color: #ffffff;
  }
}
/*
* Since Layout API uses ng-cloak to hide the dom elements while layouts are adjusted
*/
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

/*
*  Responsive attributes
*
*  References:
*  1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex
*  2) https://css-tricks.com/almanac/properties/f/flex/
*  3) https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*  4) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
*  5) http://godban.com.ua/projects/flexgrid
*/
@-moz-document url-prefix() {
  .layout-fill {
    margin: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
  }
}
/*
 *  Apply Mixins to create Layout/Flexbox styles
 */
.flex-order {
  order: 0;
}

.flex-order--20 {
  order: -20;
}

.flex-order--19 {
  order: -19;
}

.flex-order--18 {
  order: -18;
}

.flex-order--17 {
  order: -17;
}

.flex-order--16 {
  order: -16;
}

.flex-order--15 {
  order: -15;
}

.flex-order--14 {
  order: -14;
}

.flex-order--13 {
  order: -13;
}

.flex-order--12 {
  order: -12;
}

.flex-order--11 {
  order: -11;
}

.flex-order--10 {
  order: -10;
}

.flex-order--9 {
  order: -9;
}

.flex-order--8 {
  order: -8;
}

.flex-order--7 {
  order: -7;
}

.flex-order--6 {
  order: -6;
}

.flex-order--5 {
  order: -5;
}

.flex-order--4 {
  order: -4;
}

.flex-order--3 {
  order: -3;
}

.flex-order--2 {
  order: -2;
}

.flex-order--1 {
  order: -1;
}

.flex-order-0 {
  order: 0;
}

.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

.flex-order-3 {
  order: 3;
}

.flex-order-4 {
  order: 4;
}

.flex-order-5 {
  order: 5;
}

.flex-order-6 {
  order: 6;
}

.flex-order-7 {
  order: 7;
}

.flex-order-8 {
  order: 8;
}

.flex-order-9 {
  order: 9;
}

.flex-order-10 {
  order: 10;
}

.flex-order-11 {
  order: 11;
}

.flex-order-12 {
  order: 12;
}

.flex-order-13 {
  order: 13;
}

.flex-order-14 {
  order: 14;
}

.flex-order-15 {
  order: 15;
}

.flex-order-16 {
  order: 16;
}

.flex-order-17 {
  order: 17;
}

.flex-order-18 {
  order: 18;
}

.flex-order-19 {
  order: 19;
}

.flex-order-20 {
  order: 20;
}

.offset-0, .flex-offset-0, .layout-margin .flex-offset-0, .layout-margin .offset-0 {
  margin-left: 0;
}
[dir=rtl] .offset-0, [dir=rtl] .flex-offset-0, [dir=rtl] .layout-margin .flex-offset-0, [dir=rtl] .layout-margin .offset-0 {
  margin-left: auto;
  margin-right: 0;
}

.offset-5, .flex-offset-5, .layout-margin .flex-offset-5, .layout-margin .offset-5 {
  margin-left: 5%;
}
[dir=rtl] .offset-5, [dir=rtl] .flex-offset-5, [dir=rtl] .layout-margin .flex-offset-5, [dir=rtl] .layout-margin .offset-5 {
  margin-left: auto;
  margin-right: 5%;
}

.offset-10, .flex-offset-10, .layout-margin .flex-offset-10, .layout-margin .offset-10 {
  margin-left: 10%;
}
[dir=rtl] .offset-10, [dir=rtl] .flex-offset-10, [dir=rtl] .layout-margin .flex-offset-10, [dir=rtl] .layout-margin .offset-10 {
  margin-left: auto;
  margin-right: 10%;
}

.offset-15, .flex-offset-15, .layout-margin .flex-offset-15, .layout-margin .offset-15 {
  margin-left: 15%;
}
[dir=rtl] .offset-15, [dir=rtl] .flex-offset-15, [dir=rtl] .layout-margin .flex-offset-15, [dir=rtl] .layout-margin .offset-15 {
  margin-left: auto;
  margin-right: 15%;
}

.offset-20, .flex-offset-20, .layout-margin .flex-offset-20, .layout-margin .offset-20 {
  margin-left: 20%;
}
[dir=rtl] .offset-20, [dir=rtl] .flex-offset-20, [dir=rtl] .layout-margin .flex-offset-20, [dir=rtl] .layout-margin .offset-20 {
  margin-left: auto;
  margin-right: 20%;
}

.offset-25, .flex-offset-25, .layout-margin .flex-offset-25, .layout-margin .offset-25 {
  margin-left: 25%;
}
[dir=rtl] .offset-25, [dir=rtl] .flex-offset-25, [dir=rtl] .layout-margin .flex-offset-25, [dir=rtl] .layout-margin .offset-25 {
  margin-left: auto;
  margin-right: 25%;
}

.offset-30, .flex-offset-30, .layout-margin .flex-offset-30, .layout-margin .offset-30 {
  margin-left: 30%;
}
[dir=rtl] .offset-30, [dir=rtl] .flex-offset-30, [dir=rtl] .layout-margin .flex-offset-30, [dir=rtl] .layout-margin .offset-30 {
  margin-left: auto;
  margin-right: 30%;
}

.offset-35, .flex-offset-35, .layout-margin .flex-offset-35, .layout-margin .offset-35 {
  margin-left: 35%;
}
[dir=rtl] .offset-35, [dir=rtl] .flex-offset-35, [dir=rtl] .layout-margin .flex-offset-35, [dir=rtl] .layout-margin .offset-35 {
  margin-left: auto;
  margin-right: 35%;
}

.offset-40, .flex-offset-40, .layout-margin .flex-offset-40, .layout-margin .offset-40 {
  margin-left: 40%;
}
[dir=rtl] .offset-40, [dir=rtl] .flex-offset-40, [dir=rtl] .layout-margin .flex-offset-40, [dir=rtl] .layout-margin .offset-40 {
  margin-left: auto;
  margin-right: 40%;
}

.offset-45, .flex-offset-45, .layout-margin .flex-offset-45, .layout-margin .offset-45 {
  margin-left: 45%;
}
[dir=rtl] .offset-45, [dir=rtl] .flex-offset-45, [dir=rtl] .layout-margin .flex-offset-45, [dir=rtl] .layout-margin .offset-45 {
  margin-left: auto;
  margin-right: 45%;
}

.offset-50, .flex-offset-50, .layout-margin .flex-offset-50, .layout-margin .offset-50 {
  margin-left: 50%;
}
[dir=rtl] .offset-50, [dir=rtl] .flex-offset-50, [dir=rtl] .layout-margin .flex-offset-50, [dir=rtl] .layout-margin .offset-50 {
  margin-left: auto;
  margin-right: 50%;
}

.offset-55, .flex-offset-55, .layout-margin .flex-offset-55, .layout-margin .offset-55 {
  margin-left: 55%;
}
[dir=rtl] .offset-55, [dir=rtl] .flex-offset-55, [dir=rtl] .layout-margin .flex-offset-55, [dir=rtl] .layout-margin .offset-55 {
  margin-left: auto;
  margin-right: 55%;
}

.offset-60, .flex-offset-60, .layout-margin .flex-offset-60, .layout-margin .offset-60 {
  margin-left: 60%;
}
[dir=rtl] .offset-60, [dir=rtl] .flex-offset-60, [dir=rtl] .layout-margin .flex-offset-60, [dir=rtl] .layout-margin .offset-60 {
  margin-left: auto;
  margin-right: 60%;
}

.offset-65, .flex-offset-65, .layout-margin .flex-offset-65, .layout-margin .offset-65 {
  margin-left: 65%;
}
[dir=rtl] .offset-65, [dir=rtl] .flex-offset-65, [dir=rtl] .layout-margin .flex-offset-65, [dir=rtl] .layout-margin .offset-65 {
  margin-left: auto;
  margin-right: 65%;
}

.offset-70, .flex-offset-70, .layout-margin .flex-offset-70, .layout-margin .offset-70 {
  margin-left: 70%;
}
[dir=rtl] .offset-70, [dir=rtl] .flex-offset-70, [dir=rtl] .layout-margin .flex-offset-70, [dir=rtl] .layout-margin .offset-70 {
  margin-left: auto;
  margin-right: 70%;
}

.offset-75, .flex-offset-75, .layout-margin .flex-offset-75, .layout-margin .offset-75 {
  margin-left: 75%;
}
[dir=rtl] .offset-75, [dir=rtl] .flex-offset-75, [dir=rtl] .layout-margin .flex-offset-75, [dir=rtl] .layout-margin .offset-75 {
  margin-left: auto;
  margin-right: 75%;
}

.offset-80, .flex-offset-80, .layout-margin .flex-offset-80, .layout-margin .offset-80 {
  margin-left: 80%;
}
[dir=rtl] .offset-80, [dir=rtl] .flex-offset-80, [dir=rtl] .layout-margin .flex-offset-80, [dir=rtl] .layout-margin .offset-80 {
  margin-left: auto;
  margin-right: 80%;
}

.offset-85, .flex-offset-85, .layout-margin .flex-offset-85, .layout-margin .offset-85 {
  margin-left: 85%;
}
[dir=rtl] .offset-85, [dir=rtl] .flex-offset-85, [dir=rtl] .layout-margin .flex-offset-85, [dir=rtl] .layout-margin .offset-85 {
  margin-left: auto;
  margin-right: 85%;
}

.offset-90, .flex-offset-90, .layout-margin .flex-offset-90, .layout-margin .offset-90 {
  margin-left: 90%;
}
[dir=rtl] .offset-90, [dir=rtl] .flex-offset-90, [dir=rtl] .layout-margin .flex-offset-90, [dir=rtl] .layout-margin .offset-90 {
  margin-left: auto;
  margin-right: 90%;
}

.offset-95, .flex-offset-95, .layout-margin .flex-offset-95, .layout-margin .offset-95 {
  margin-left: 95%;
}
[dir=rtl] .offset-95, [dir=rtl] .flex-offset-95, [dir=rtl] .layout-margin .flex-offset-95, [dir=rtl] .layout-margin .offset-95 {
  margin-left: auto;
  margin-right: 95%;
}

.offset-33, .flex-offset-33, .layout-margin .flex-offset-33, .layout-margin .offset-33 {
  margin-left: 33.3333333333%;
}

.offset-66, .flex-offset-66, .layout-margin .flex-offset-66, .layout-margin .offset-66 {
  margin-left: 66.6666666667%;
}
[dir=rtl] .offset-66, [dir=rtl] .flex-offset-66, [dir=rtl] .layout-margin .flex-offset-66, [dir=rtl] .layout-margin .offset-66 {
  margin-left: auto;
  margin-right: 66.6666666667%;
}

.layout-align,
.layout-align-start-stretch {
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.layout-align-start,
.layout-align-start-start,
.layout-align-start-center,
.layout-align-start-end,
.layout-align-start-stretch {
  justify-content: flex-start;
}

.layout-align-center,
.layout-align-center-start,
.layout-align-center-center,
.layout-align-center-end,
.layout-align-center-stretch {
  justify-content: center;
}

.layout-align-end,
.layout-align-end-start,
.layout-align-end-center,
.layout-align-end-end,
.layout-align-end-stretch {
  justify-content: flex-end;
}

.layout-align-space-around,
.layout-align-space-around-center,
.layout-align-space-around-start,
.layout-align-space-around-end,
.layout-align-space-around-stretch {
  justify-content: space-around;
}

.layout-align-space-between,
.layout-align-space-between-center,
.layout-align-space-between-start,
.layout-align-space-between-end,
.layout-align-space-between-stretch {
  justify-content: space-between;
}

.layout-align-start-start,
.layout-align-center-start,
.layout-align-end-start,
.layout-align-space-between-start,
.layout-align-space-around-start {
  align-items: flex-start;
  align-content: flex-start;
}

.layout-align-start-center,
.layout-align-center-center,
.layout-align-end-center,
.layout-align-space-between-center,
.layout-align-space-around-center {
  align-items: center;
  align-content: center;
  max-width: 100%;
}

.layout-align-start-center > *,
.layout-align-center-center > *,
.layout-align-end-center > *,
.layout-align-space-between-center > *,
.layout-align-space-around-center > * {
  max-width: 100%;
  box-sizing: border-box;
}

.layout-align-start-end,
.layout-align-center-end,
.layout-align-end-end,
.layout-align-space-between-end,
.layout-align-space-around-end {
  align-items: flex-end;
  align-content: flex-end;
}

.layout-align-start-stretch,
.layout-align-center-stretch,
.layout-align-end-stretch,
.layout-align-space-between-stretch,
.layout-align-space-around-stretch {
  align-items: stretch;
  align-content: stretch;
}

.flex {
  flex: 1;
  box-sizing: border-box;
}

.flex-grow {
  flex: 1 1 100%;
  box-sizing: border-box;
}

.flex-initial {
  flex: 0 1 auto;
  box-sizing: border-box;
}

.flex-auto {
  flex: 1 1 auto;
  box-sizing: border-box;
}

.flex-none {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.flex-noshrink {
  flex: 1 0 auto;
  box-sizing: border-box;
}

.flex-nogrow {
  flex: 0 1 auto;
  box-sizing: border-box;
}

.flex-0 {
  flex: 1 1 100%;
  max-width: 0%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-0 {
  flex: 1 1 100%;
  max-width: 0%;
  max-height: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.layout-column > .flex-0 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 0%;
  box-sizing: border-box;
}

.flex-5 {
  flex: 1 1 100%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-5 {
  flex: 1 1 100%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-5 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 5%;
  box-sizing: border-box;
}

.flex-10 {
  flex: 1 1 100%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-10 {
  flex: 1 1 100%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-10 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 10%;
  box-sizing: border-box;
}

.flex-15 {
  flex: 1 1 100%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-15 {
  flex: 1 1 100%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-15 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 15%;
  box-sizing: border-box;
}

.flex-20 {
  flex: 1 1 100%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-20 {
  flex: 1 1 100%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-20 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 20%;
  box-sizing: border-box;
}

.flex-25 {
  flex: 1 1 100%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-25 {
  flex: 1 1 100%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-25 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 25%;
  box-sizing: border-box;
}

.flex-30 {
  flex: 1 1 100%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-30 {
  flex: 1 1 100%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-30 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 30%;
  box-sizing: border-box;
}

.flex-35 {
  flex: 1 1 100%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-35 {
  flex: 1 1 100%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-35 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 35%;
  box-sizing: border-box;
}

.flex-40 {
  flex: 1 1 100%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-40 {
  flex: 1 1 100%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-40 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 40%;
  box-sizing: border-box;
}

.flex-45 {
  flex: 1 1 100%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-45 {
  flex: 1 1 100%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-45 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 45%;
  box-sizing: border-box;
}

.flex-50 {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-50 {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-50 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 50%;
  box-sizing: border-box;
}

.flex-55 {
  flex: 1 1 100%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-55 {
  flex: 1 1 100%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-55 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 55%;
  box-sizing: border-box;
}

.flex-60 {
  flex: 1 1 100%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-60 {
  flex: 1 1 100%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-60 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 60%;
  box-sizing: border-box;
}

.flex-65 {
  flex: 1 1 100%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-65 {
  flex: 1 1 100%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-65 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 65%;
  box-sizing: border-box;
}

.flex-70 {
  flex: 1 1 100%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-70 {
  flex: 1 1 100%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-70 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 70%;
  box-sizing: border-box;
}

.flex-75 {
  flex: 1 1 100%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-75 {
  flex: 1 1 100%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-75 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 75%;
  box-sizing: border-box;
}

.flex-80 {
  flex: 1 1 100%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-80 {
  flex: 1 1 100%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-80 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 80%;
  box-sizing: border-box;
}

.flex-85 {
  flex: 1 1 100%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-85 {
  flex: 1 1 100%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-85 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 85%;
  box-sizing: border-box;
}

.flex-90 {
  flex: 1 1 100%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-90 {
  flex: 1 1 100%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-90 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 90%;
  box-sizing: border-box;
}

.flex-95 {
  flex: 1 1 100%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-95 {
  flex: 1 1 100%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-95 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 95%;
  box-sizing: border-box;
}

.flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

.flex-33 {
  flex: 1 1 100%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box;
}

.flex-66 {
  flex: 1 1 100%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box;
}
.layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box;
}

.layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box;
}
.layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box;
}

.layout-row > .flex-33 {
  flex: 1 1 100%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box;
}
.layout-row > .flex-66 {
  flex: 1 1 100%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box;
}
.layout-row > .flex {
  min-width: 0;
}

.layout-column > .flex-33 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box;
}
.layout-column > .flex-66 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box;
}
.layout-column > .flex {
  min-height: 0;
}

.layout, .layout-column, .layout-row {
  box-sizing: border-box;
  display: flex;
}

.layout-column {
  flex-direction: column;
}

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

.layout-padding-sm > *,
.layout-padding > .flex-sm {
  padding: 4px;
}

.layout-padding,
.layout-padding-gt-sm,
.layout-padding-md,
.layout-padding > *,
.layout-padding-gt-sm > *,
.layout-padding-md > *,
.layout-padding > .flex,
.layout-padding > .flex-gt-sm,
.layout-padding > .flex-md {
  padding: 8px;
}

.layout-padding-gt-md > *,
.layout-padding-lg > *,
.layout-padding-gt-lg > *,
.layout-padding > .flex-gt-md,
.layout-padding > .flex-lg,
.layout-padding > .flex-lg,
.layout-padding > .flex-gt-lg {
  padding: 16px;
}

.layout-margin-sm > *,
.layout-margin > .flex-sm {
  margin: 4px;
}

.layout-margin,
.layout-margin-gt-sm,
.layout-margin-md,
.layout-margin > *,
.layout-margin-gt-sm > *,
.layout-margin-md > *,
.layout-margin > .flex,
.layout-margin > .flex-gt-sm,
.layout-margin > .flex-md {
  margin: 8px;
}

.layout-margin-gt-md > *,
.layout-margin-lg > *,
.layout-margin-gt-lg > *,
.layout-margin > .flex-gt-md,
.layout-margin > .flex-lg,
.layout-margin > .flex-gt-lg {
  margin: 16px;
}

.layout-wrap {
  flex-wrap: wrap;
}

.layout-nowrap {
  flex-wrap: nowrap;
}

.layout-fill {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

/**
 * `hide-gt-sm show-gt-lg` should hide from 600px to 1200px
 * `show-md hide-gt-sm` should show from 0px to 960px and hide at >960px
 * `hide-gt-md show-gt-sm` should show everywhere (show overrides hide)`
 *
 *  hide means hide everywhere
 *  Sizes:
 *         $layout-breakpoint-xs:     600px !default;
 *         $layout-breakpoint-sm:     960px !default;
 *         $layout-breakpoint-md:     1280px !default;
 *         $layout-breakpoint-lg:     1920px !default;
 */
@media (max-width: 599px) {
  .hide-xs:not(.show-xs):not(.show), .hide:not(.show-xs):not(.show) {
    display: none;
  }

  .flex-order-xs--20 {
    order: -20;
  }

  .flex-order-xs--19 {
    order: -19;
  }

  .flex-order-xs--18 {
    order: -18;
  }

  .flex-order-xs--17 {
    order: -17;
  }

  .flex-order-xs--16 {
    order: -16;
  }

  .flex-order-xs--15 {
    order: -15;
  }

  .flex-order-xs--14 {
    order: -14;
  }

  .flex-order-xs--13 {
    order: -13;
  }

  .flex-order-xs--12 {
    order: -12;
  }

  .flex-order-xs--11 {
    order: -11;
  }

  .flex-order-xs--10 {
    order: -10;
  }

  .flex-order-xs--9 {
    order: -9;
  }

  .flex-order-xs--8 {
    order: -8;
  }

  .flex-order-xs--7 {
    order: -7;
  }

  .flex-order-xs--6 {
    order: -6;
  }

  .flex-order-xs--5 {
    order: -5;
  }

  .flex-order-xs--4 {
    order: -4;
  }

  .flex-order-xs--3 {
    order: -3;
  }

  .flex-order-xs--2 {
    order: -2;
  }

  .flex-order-xs--1 {
    order: -1;
  }

  .flex-order-xs-0 {
    order: 0;
  }

  .flex-order-xs-1 {
    order: 1;
  }

  .flex-order-xs-2 {
    order: 2;
  }

  .flex-order-xs-3 {
    order: 3;
  }

  .flex-order-xs-4 {
    order: 4;
  }

  .flex-order-xs-5 {
    order: 5;
  }

  .flex-order-xs-6 {
    order: 6;
  }

  .flex-order-xs-7 {
    order: 7;
  }

  .flex-order-xs-8 {
    order: 8;
  }

  .flex-order-xs-9 {
    order: 9;
  }

  .flex-order-xs-10 {
    order: 10;
  }

  .flex-order-xs-11 {
    order: 11;
  }

  .flex-order-xs-12 {
    order: 12;
  }

  .flex-order-xs-13 {
    order: 13;
  }

  .flex-order-xs-14 {
    order: 14;
  }

  .flex-order-xs-15 {
    order: 15;
  }

  .flex-order-xs-16 {
    order: 16;
  }

  .flex-order-xs-17 {
    order: 17;
  }

  .flex-order-xs-18 {
    order: 18;
  }

  .flex-order-xs-19 {
    order: 19;
  }

  .flex-order-xs-20 {
    order: 20;
  }

  .offset-xs-0, .flex-offset-xs-0, .layout-margin .flex-offset-xs-0, .layout-margin .offset-xs-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-xs-0, [dir=rtl] .flex-offset-xs-0, [dir=rtl] .layout-margin .flex-offset-xs-0, [dir=rtl] .layout-margin .offset-xs-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-xs-5, .flex-offset-xs-5, .layout-margin .flex-offset-xs-5, .layout-margin .offset-xs-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-xs-5, [dir=rtl] .flex-offset-xs-5, [dir=rtl] .layout-margin .flex-offset-xs-5, [dir=rtl] .layout-margin .offset-xs-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-xs-10, .flex-offset-xs-10, .layout-margin .flex-offset-xs-10, .layout-margin .offset-xs-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-xs-10, [dir=rtl] .flex-offset-xs-10, [dir=rtl] .layout-margin .flex-offset-xs-10, [dir=rtl] .layout-margin .offset-xs-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-xs-15, .flex-offset-xs-15, .layout-margin .flex-offset-xs-15, .layout-margin .offset-xs-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-xs-15, [dir=rtl] .flex-offset-xs-15, [dir=rtl] .layout-margin .flex-offset-xs-15, [dir=rtl] .layout-margin .offset-xs-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-xs-20, .flex-offset-xs-20, .layout-margin .flex-offset-xs-20, .layout-margin .offset-xs-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-xs-20, [dir=rtl] .flex-offset-xs-20, [dir=rtl] .layout-margin .flex-offset-xs-20, [dir=rtl] .layout-margin .offset-xs-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-xs-25, .flex-offset-xs-25, .layout-margin .flex-offset-xs-25, .layout-margin .offset-xs-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-xs-25, [dir=rtl] .flex-offset-xs-25, [dir=rtl] .layout-margin .flex-offset-xs-25, [dir=rtl] .layout-margin .offset-xs-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-xs-30, .flex-offset-xs-30, .layout-margin .flex-offset-xs-30, .layout-margin .offset-xs-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-xs-30, [dir=rtl] .flex-offset-xs-30, [dir=rtl] .layout-margin .flex-offset-xs-30, [dir=rtl] .layout-margin .offset-xs-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-xs-35, .flex-offset-xs-35, .layout-margin .flex-offset-xs-35, .layout-margin .offset-xs-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-xs-35, [dir=rtl] .flex-offset-xs-35, [dir=rtl] .layout-margin .flex-offset-xs-35, [dir=rtl] .layout-margin .offset-xs-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-xs-40, .flex-offset-xs-40, .layout-margin .flex-offset-xs-40, .layout-margin .offset-xs-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-xs-40, [dir=rtl] .flex-offset-xs-40, [dir=rtl] .layout-margin .flex-offset-xs-40, [dir=rtl] .layout-margin .offset-xs-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-xs-45, .flex-offset-xs-45, .layout-margin .flex-offset-xs-45, .layout-margin .offset-xs-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-xs-45, [dir=rtl] .flex-offset-xs-45, [dir=rtl] .layout-margin .flex-offset-xs-45, [dir=rtl] .layout-margin .offset-xs-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-xs-50, .flex-offset-xs-50, .layout-margin .flex-offset-xs-50, .layout-margin .offset-xs-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-xs-50, [dir=rtl] .flex-offset-xs-50, [dir=rtl] .layout-margin .flex-offset-xs-50, [dir=rtl] .layout-margin .offset-xs-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-xs-55, .flex-offset-xs-55, .layout-margin .flex-offset-xs-55, .layout-margin .offset-xs-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-xs-55, [dir=rtl] .flex-offset-xs-55, [dir=rtl] .layout-margin .flex-offset-xs-55, [dir=rtl] .layout-margin .offset-xs-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-xs-60, .flex-offset-xs-60, .layout-margin .flex-offset-xs-60, .layout-margin .offset-xs-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-xs-60, [dir=rtl] .flex-offset-xs-60, [dir=rtl] .layout-margin .flex-offset-xs-60, [dir=rtl] .layout-margin .offset-xs-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-xs-65, .flex-offset-xs-65, .layout-margin .flex-offset-xs-65, .layout-margin .offset-xs-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-xs-65, [dir=rtl] .flex-offset-xs-65, [dir=rtl] .layout-margin .flex-offset-xs-65, [dir=rtl] .layout-margin .offset-xs-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-xs-70, .flex-offset-xs-70, .layout-margin .flex-offset-xs-70, .layout-margin .offset-xs-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-xs-70, [dir=rtl] .flex-offset-xs-70, [dir=rtl] .layout-margin .flex-offset-xs-70, [dir=rtl] .layout-margin .offset-xs-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-xs-75, .flex-offset-xs-75, .layout-margin .flex-offset-xs-75, .layout-margin .offset-xs-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-xs-75, [dir=rtl] .flex-offset-xs-75, [dir=rtl] .layout-margin .flex-offset-xs-75, [dir=rtl] .layout-margin .offset-xs-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-xs-80, .flex-offset-xs-80, .layout-margin .flex-offset-xs-80, .layout-margin .offset-xs-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-xs-80, [dir=rtl] .flex-offset-xs-80, [dir=rtl] .layout-margin .flex-offset-xs-80, [dir=rtl] .layout-margin .offset-xs-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-xs-85, .flex-offset-xs-85, .layout-margin .flex-offset-xs-85, .layout-margin .offset-xs-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-xs-85, [dir=rtl] .flex-offset-xs-85, [dir=rtl] .layout-margin .flex-offset-xs-85, [dir=rtl] .layout-margin .offset-xs-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-xs-90, .flex-offset-xs-90, .layout-margin .flex-offset-xs-90, .layout-margin .offset-xs-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-xs-90, [dir=rtl] .flex-offset-xs-90, [dir=rtl] .layout-margin .flex-offset-xs-90, [dir=rtl] .layout-margin .offset-xs-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-xs-95, .flex-offset-xs-95, .layout-margin .flex-offset-xs-95, .layout-margin .offset-xs-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-xs-95, [dir=rtl] .flex-offset-xs-95, [dir=rtl] .layout-margin .flex-offset-xs-95, [dir=rtl] .layout-margin .offset-xs-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-xs-33, .flex-offset-xs-33, .layout-margin .flex-offset-xs-33, .layout-margin .offset-xs-33 {
    margin-left: 33.3333333333%;
  }

  .offset-xs-66, .flex-offset-xs-66, .layout-margin .flex-offset-xs-66, .layout-margin .offset-xs-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-xs-66, [dir=rtl] .flex-offset-xs-66, [dir=rtl] .layout-margin .flex-offset-xs-66, [dir=rtl] .layout-margin .offset-xs-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-xs,
.layout-align-xs-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-xs-start,
.layout-align-xs-start-start,
.layout-align-xs-start-center,
.layout-align-xs-start-end,
.layout-align-xs-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-xs-center,
.layout-align-xs-center-start,
.layout-align-xs-center-center,
.layout-align-xs-center-end,
.layout-align-xs-center-stretch {
    justify-content: center;
  }

  .layout-align-xs-end,
.layout-align-xs-end-start,
.layout-align-xs-end-center,
.layout-align-xs-end-end,
.layout-align-xs-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-xs-space-around,
.layout-align-xs-space-around-center,
.layout-align-xs-space-around-start,
.layout-align-xs-space-around-end,
.layout-align-xs-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-xs-space-between,
.layout-align-xs-space-between-center,
.layout-align-xs-space-between-start,
.layout-align-xs-space-between-end,
.layout-align-xs-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-xs-start-start,
.layout-align-xs-center-start,
.layout-align-xs-end-start,
.layout-align-xs-space-between-start,
.layout-align-xs-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-xs-start-center,
.layout-align-xs-center-center,
.layout-align-xs-end-center,
.layout-align-xs-space-between-center,
.layout-align-xs-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-xs-start-center > *,
.layout-align-xs-center-center > *,
.layout-align-xs-end-center > *,
.layout-align-xs-space-between-center > *,
.layout-align-xs-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-xs-start-end,
.layout-align-xs-center-end,
.layout-align-xs-end-end,
.layout-align-xs-space-between-end,
.layout-align-xs-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-xs-start-stretch,
.layout-align-xs-center-stretch,
.layout-align-xs-end-stretch,
.layout-align-xs-space-between-stretch,
.layout-align-xs-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-xs {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-xs-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-xs-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-xs-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-xs-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-xs-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-xs-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-xs-column > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xs-column > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-xs-row > .flex-xs-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-xs-row > .flex-xs-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-xs-row > .flex {
    min-width: 0;
  }

  .layout-xs-column > .flex-xs-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-xs-column > .flex-xs-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-xs-column > .flex {
    min-height: 0;
  }

  .layout-xs, .layout-xs-column, .layout-xs-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-xs-column {
    flex-direction: column;
  }

  .layout-xs-row {
    flex-direction: row;
  }
}
@media (min-width: 600px) {
  .flex-order-gt-xs--20 {
    order: -20;
  }

  .flex-order-gt-xs--19 {
    order: -19;
  }

  .flex-order-gt-xs--18 {
    order: -18;
  }

  .flex-order-gt-xs--17 {
    order: -17;
  }

  .flex-order-gt-xs--16 {
    order: -16;
  }

  .flex-order-gt-xs--15 {
    order: -15;
  }

  .flex-order-gt-xs--14 {
    order: -14;
  }

  .flex-order-gt-xs--13 {
    order: -13;
  }

  .flex-order-gt-xs--12 {
    order: -12;
  }

  .flex-order-gt-xs--11 {
    order: -11;
  }

  .flex-order-gt-xs--10 {
    order: -10;
  }

  .flex-order-gt-xs--9 {
    order: -9;
  }

  .flex-order-gt-xs--8 {
    order: -8;
  }

  .flex-order-gt-xs--7 {
    order: -7;
  }

  .flex-order-gt-xs--6 {
    order: -6;
  }

  .flex-order-gt-xs--5 {
    order: -5;
  }

  .flex-order-gt-xs--4 {
    order: -4;
  }

  .flex-order-gt-xs--3 {
    order: -3;
  }

  .flex-order-gt-xs--2 {
    order: -2;
  }

  .flex-order-gt-xs--1 {
    order: -1;
  }

  .flex-order-gt-xs-0 {
    order: 0;
  }

  .flex-order-gt-xs-1 {
    order: 1;
  }

  .flex-order-gt-xs-2 {
    order: 2;
  }

  .flex-order-gt-xs-3 {
    order: 3;
  }

  .flex-order-gt-xs-4 {
    order: 4;
  }

  .flex-order-gt-xs-5 {
    order: 5;
  }

  .flex-order-gt-xs-6 {
    order: 6;
  }

  .flex-order-gt-xs-7 {
    order: 7;
  }

  .flex-order-gt-xs-8 {
    order: 8;
  }

  .flex-order-gt-xs-9 {
    order: 9;
  }

  .flex-order-gt-xs-10 {
    order: 10;
  }

  .flex-order-gt-xs-11 {
    order: 11;
  }

  .flex-order-gt-xs-12 {
    order: 12;
  }

  .flex-order-gt-xs-13 {
    order: 13;
  }

  .flex-order-gt-xs-14 {
    order: 14;
  }

  .flex-order-gt-xs-15 {
    order: 15;
  }

  .flex-order-gt-xs-16 {
    order: 16;
  }

  .flex-order-gt-xs-17 {
    order: 17;
  }

  .flex-order-gt-xs-18 {
    order: 18;
  }

  .flex-order-gt-xs-19 {
    order: 19;
  }

  .flex-order-gt-xs-20 {
    order: 20;
  }

  .offset-gt-xs-0, .flex-offset-gt-xs-0, .layout-margin .flex-offset-gt-xs-0, .layout-margin .offset-gt-xs-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-gt-xs-0, [dir=rtl] .flex-offset-gt-xs-0, [dir=rtl] .layout-margin .flex-offset-gt-xs-0, [dir=rtl] .layout-margin .offset-gt-xs-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-gt-xs-5, .flex-offset-gt-xs-5, .layout-margin .flex-offset-gt-xs-5, .layout-margin .offset-gt-xs-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-gt-xs-5, [dir=rtl] .flex-offset-gt-xs-5, [dir=rtl] .layout-margin .flex-offset-gt-xs-5, [dir=rtl] .layout-margin .offset-gt-xs-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-gt-xs-10, .flex-offset-gt-xs-10, .layout-margin .flex-offset-gt-xs-10, .layout-margin .offset-gt-xs-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-gt-xs-10, [dir=rtl] .flex-offset-gt-xs-10, [dir=rtl] .layout-margin .flex-offset-gt-xs-10, [dir=rtl] .layout-margin .offset-gt-xs-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-gt-xs-15, .flex-offset-gt-xs-15, .layout-margin .flex-offset-gt-xs-15, .layout-margin .offset-gt-xs-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-gt-xs-15, [dir=rtl] .flex-offset-gt-xs-15, [dir=rtl] .layout-margin .flex-offset-gt-xs-15, [dir=rtl] .layout-margin .offset-gt-xs-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-gt-xs-20, .flex-offset-gt-xs-20, .layout-margin .flex-offset-gt-xs-20, .layout-margin .offset-gt-xs-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-gt-xs-20, [dir=rtl] .flex-offset-gt-xs-20, [dir=rtl] .layout-margin .flex-offset-gt-xs-20, [dir=rtl] .layout-margin .offset-gt-xs-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-gt-xs-25, .flex-offset-gt-xs-25, .layout-margin .flex-offset-gt-xs-25, .layout-margin .offset-gt-xs-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-gt-xs-25, [dir=rtl] .flex-offset-gt-xs-25, [dir=rtl] .layout-margin .flex-offset-gt-xs-25, [dir=rtl] .layout-margin .offset-gt-xs-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-gt-xs-30, .flex-offset-gt-xs-30, .layout-margin .flex-offset-gt-xs-30, .layout-margin .offset-gt-xs-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-gt-xs-30, [dir=rtl] .flex-offset-gt-xs-30, [dir=rtl] .layout-margin .flex-offset-gt-xs-30, [dir=rtl] .layout-margin .offset-gt-xs-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-gt-xs-35, .flex-offset-gt-xs-35, .layout-margin .flex-offset-gt-xs-35, .layout-margin .offset-gt-xs-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-gt-xs-35, [dir=rtl] .flex-offset-gt-xs-35, [dir=rtl] .layout-margin .flex-offset-gt-xs-35, [dir=rtl] .layout-margin .offset-gt-xs-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-gt-xs-40, .flex-offset-gt-xs-40, .layout-margin .flex-offset-gt-xs-40, .layout-margin .offset-gt-xs-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-gt-xs-40, [dir=rtl] .flex-offset-gt-xs-40, [dir=rtl] .layout-margin .flex-offset-gt-xs-40, [dir=rtl] .layout-margin .offset-gt-xs-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-gt-xs-45, .flex-offset-gt-xs-45, .layout-margin .flex-offset-gt-xs-45, .layout-margin .offset-gt-xs-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-gt-xs-45, [dir=rtl] .flex-offset-gt-xs-45, [dir=rtl] .layout-margin .flex-offset-gt-xs-45, [dir=rtl] .layout-margin .offset-gt-xs-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-gt-xs-50, .flex-offset-gt-xs-50, .layout-margin .flex-offset-gt-xs-50, .layout-margin .offset-gt-xs-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-gt-xs-50, [dir=rtl] .flex-offset-gt-xs-50, [dir=rtl] .layout-margin .flex-offset-gt-xs-50, [dir=rtl] .layout-margin .offset-gt-xs-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-gt-xs-55, .flex-offset-gt-xs-55, .layout-margin .flex-offset-gt-xs-55, .layout-margin .offset-gt-xs-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-gt-xs-55, [dir=rtl] .flex-offset-gt-xs-55, [dir=rtl] .layout-margin .flex-offset-gt-xs-55, [dir=rtl] .layout-margin .offset-gt-xs-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-gt-xs-60, .flex-offset-gt-xs-60, .layout-margin .flex-offset-gt-xs-60, .layout-margin .offset-gt-xs-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-gt-xs-60, [dir=rtl] .flex-offset-gt-xs-60, [dir=rtl] .layout-margin .flex-offset-gt-xs-60, [dir=rtl] .layout-margin .offset-gt-xs-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-gt-xs-65, .flex-offset-gt-xs-65, .layout-margin .flex-offset-gt-xs-65, .layout-margin .offset-gt-xs-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-gt-xs-65, [dir=rtl] .flex-offset-gt-xs-65, [dir=rtl] .layout-margin .flex-offset-gt-xs-65, [dir=rtl] .layout-margin .offset-gt-xs-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-gt-xs-70, .flex-offset-gt-xs-70, .layout-margin .flex-offset-gt-xs-70, .layout-margin .offset-gt-xs-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-gt-xs-70, [dir=rtl] .flex-offset-gt-xs-70, [dir=rtl] .layout-margin .flex-offset-gt-xs-70, [dir=rtl] .layout-margin .offset-gt-xs-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-gt-xs-75, .flex-offset-gt-xs-75, .layout-margin .flex-offset-gt-xs-75, .layout-margin .offset-gt-xs-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-gt-xs-75, [dir=rtl] .flex-offset-gt-xs-75, [dir=rtl] .layout-margin .flex-offset-gt-xs-75, [dir=rtl] .layout-margin .offset-gt-xs-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-gt-xs-80, .flex-offset-gt-xs-80, .layout-margin .flex-offset-gt-xs-80, .layout-margin .offset-gt-xs-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-gt-xs-80, [dir=rtl] .flex-offset-gt-xs-80, [dir=rtl] .layout-margin .flex-offset-gt-xs-80, [dir=rtl] .layout-margin .offset-gt-xs-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-gt-xs-85, .flex-offset-gt-xs-85, .layout-margin .flex-offset-gt-xs-85, .layout-margin .offset-gt-xs-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-gt-xs-85, [dir=rtl] .flex-offset-gt-xs-85, [dir=rtl] .layout-margin .flex-offset-gt-xs-85, [dir=rtl] .layout-margin .offset-gt-xs-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-gt-xs-90, .flex-offset-gt-xs-90, .layout-margin .flex-offset-gt-xs-90, .layout-margin .offset-gt-xs-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-gt-xs-90, [dir=rtl] .flex-offset-gt-xs-90, [dir=rtl] .layout-margin .flex-offset-gt-xs-90, [dir=rtl] .layout-margin .offset-gt-xs-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-gt-xs-95, .flex-offset-gt-xs-95, .layout-margin .flex-offset-gt-xs-95, .layout-margin .offset-gt-xs-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-gt-xs-95, [dir=rtl] .flex-offset-gt-xs-95, [dir=rtl] .layout-margin .flex-offset-gt-xs-95, [dir=rtl] .layout-margin .offset-gt-xs-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-gt-xs-33, .flex-offset-gt-xs-33, .layout-margin .flex-offset-gt-xs-33, .layout-margin .offset-gt-xs-33 {
    margin-left: 33.3333333333%;
  }

  .offset-gt-xs-66, .flex-offset-gt-xs-66, .layout-margin .flex-offset-gt-xs-66, .layout-margin .offset-gt-xs-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-gt-xs-66, [dir=rtl] .flex-offset-gt-xs-66, [dir=rtl] .layout-margin .flex-offset-gt-xs-66, [dir=rtl] .layout-margin .offset-gt-xs-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-gt-xs,
.layout-align-gt-xs-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-gt-xs-start,
.layout-align-gt-xs-start-start,
.layout-align-gt-xs-start-center,
.layout-align-gt-xs-start-end,
.layout-align-gt-xs-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-gt-xs-center,
.layout-align-gt-xs-center-start,
.layout-align-gt-xs-center-center,
.layout-align-gt-xs-center-end,
.layout-align-gt-xs-center-stretch {
    justify-content: center;
  }

  .layout-align-gt-xs-end,
.layout-align-gt-xs-end-start,
.layout-align-gt-xs-end-center,
.layout-align-gt-xs-end-end,
.layout-align-gt-xs-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-gt-xs-space-around,
.layout-align-gt-xs-space-around-center,
.layout-align-gt-xs-space-around-start,
.layout-align-gt-xs-space-around-end,
.layout-align-gt-xs-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-gt-xs-space-between,
.layout-align-gt-xs-space-between-center,
.layout-align-gt-xs-space-between-start,
.layout-align-gt-xs-space-between-end,
.layout-align-gt-xs-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-gt-xs-start-start,
.layout-align-gt-xs-center-start,
.layout-align-gt-xs-end-start,
.layout-align-gt-xs-space-between-start,
.layout-align-gt-xs-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-gt-xs-start-center,
.layout-align-gt-xs-center-center,
.layout-align-gt-xs-end-center,
.layout-align-gt-xs-space-between-center,
.layout-align-gt-xs-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-gt-xs-start-center > *,
.layout-align-gt-xs-center-center > *,
.layout-align-gt-xs-end-center > *,
.layout-align-gt-xs-space-between-center > *,
.layout-align-gt-xs-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-gt-xs-start-end,
.layout-align-gt-xs-center-end,
.layout-align-gt-xs-end-end,
.layout-align-gt-xs-space-between-end,
.layout-align-gt-xs-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-gt-xs-start-stretch,
.layout-align-gt-xs-center-stretch,
.layout-align-gt-xs-end-stretch,
.layout-align-gt-xs-space-between-stretch,
.layout-align-gt-xs-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-gt-xs {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-gt-xs-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-gt-xs-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-xs-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-xs-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-xs-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-xs-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-gt-xs-column > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-xs-column > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-gt-xs-row > .flex-gt-xs-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-xs-row > .flex-gt-xs-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-xs-row > .flex {
    min-width: 0;
  }

  .layout-gt-xs-column > .flex-gt-xs-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-gt-xs-column > .flex-gt-xs-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-gt-xs-column > .flex {
    min-height: 0;
  }

  .layout-gt-xs, .layout-gt-xs-column, .layout-gt-xs-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-gt-xs-column {
    flex-direction: column;
  }

  .layout-gt-xs-row {
    flex-direction: row;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hide:not(.show-gt-xs):not(.show-sm):not(.show), .hide-gt-xs:not(.show-gt-xs):not(.show-sm):not(.show) {
    display: none;
  }

  .hide-sm:not(.show-gt-xs):not(.show-sm):not(.show) {
    display: none;
  }

  .flex-order-sm--20 {
    order: -20;
  }

  .flex-order-sm--19 {
    order: -19;
  }

  .flex-order-sm--18 {
    order: -18;
  }

  .flex-order-sm--17 {
    order: -17;
  }

  .flex-order-sm--16 {
    order: -16;
  }

  .flex-order-sm--15 {
    order: -15;
  }

  .flex-order-sm--14 {
    order: -14;
  }

  .flex-order-sm--13 {
    order: -13;
  }

  .flex-order-sm--12 {
    order: -12;
  }

  .flex-order-sm--11 {
    order: -11;
  }

  .flex-order-sm--10 {
    order: -10;
  }

  .flex-order-sm--9 {
    order: -9;
  }

  .flex-order-sm--8 {
    order: -8;
  }

  .flex-order-sm--7 {
    order: -7;
  }

  .flex-order-sm--6 {
    order: -6;
  }

  .flex-order-sm--5 {
    order: -5;
  }

  .flex-order-sm--4 {
    order: -4;
  }

  .flex-order-sm--3 {
    order: -3;
  }

  .flex-order-sm--2 {
    order: -2;
  }

  .flex-order-sm--1 {
    order: -1;
  }

  .flex-order-sm-0 {
    order: 0;
  }

  .flex-order-sm-1 {
    order: 1;
  }

  .flex-order-sm-2 {
    order: 2;
  }

  .flex-order-sm-3 {
    order: 3;
  }

  .flex-order-sm-4 {
    order: 4;
  }

  .flex-order-sm-5 {
    order: 5;
  }

  .flex-order-sm-6 {
    order: 6;
  }

  .flex-order-sm-7 {
    order: 7;
  }

  .flex-order-sm-8 {
    order: 8;
  }

  .flex-order-sm-9 {
    order: 9;
  }

  .flex-order-sm-10 {
    order: 10;
  }

  .flex-order-sm-11 {
    order: 11;
  }

  .flex-order-sm-12 {
    order: 12;
  }

  .flex-order-sm-13 {
    order: 13;
  }

  .flex-order-sm-14 {
    order: 14;
  }

  .flex-order-sm-15 {
    order: 15;
  }

  .flex-order-sm-16 {
    order: 16;
  }

  .flex-order-sm-17 {
    order: 17;
  }

  .flex-order-sm-18 {
    order: 18;
  }

  .flex-order-sm-19 {
    order: 19;
  }

  .flex-order-sm-20 {
    order: 20;
  }

  .offset-sm-0, .flex-offset-sm-0, .layout-margin .flex-offset-sm-0, .layout-margin .offset-sm-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-sm-0, [dir=rtl] .flex-offset-sm-0, [dir=rtl] .layout-margin .flex-offset-sm-0, [dir=rtl] .layout-margin .offset-sm-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-sm-5, .flex-offset-sm-5, .layout-margin .flex-offset-sm-5, .layout-margin .offset-sm-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-sm-5, [dir=rtl] .flex-offset-sm-5, [dir=rtl] .layout-margin .flex-offset-sm-5, [dir=rtl] .layout-margin .offset-sm-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-sm-10, .flex-offset-sm-10, .layout-margin .flex-offset-sm-10, .layout-margin .offset-sm-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-sm-10, [dir=rtl] .flex-offset-sm-10, [dir=rtl] .layout-margin .flex-offset-sm-10, [dir=rtl] .layout-margin .offset-sm-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-sm-15, .flex-offset-sm-15, .layout-margin .flex-offset-sm-15, .layout-margin .offset-sm-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-sm-15, [dir=rtl] .flex-offset-sm-15, [dir=rtl] .layout-margin .flex-offset-sm-15, [dir=rtl] .layout-margin .offset-sm-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-sm-20, .flex-offset-sm-20, .layout-margin .flex-offset-sm-20, .layout-margin .offset-sm-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-sm-20, [dir=rtl] .flex-offset-sm-20, [dir=rtl] .layout-margin .flex-offset-sm-20, [dir=rtl] .layout-margin .offset-sm-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-sm-25, .flex-offset-sm-25, .layout-margin .flex-offset-sm-25, .layout-margin .offset-sm-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-sm-25, [dir=rtl] .flex-offset-sm-25, [dir=rtl] .layout-margin .flex-offset-sm-25, [dir=rtl] .layout-margin .offset-sm-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-sm-30, .flex-offset-sm-30, .layout-margin .flex-offset-sm-30, .layout-margin .offset-sm-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-sm-30, [dir=rtl] .flex-offset-sm-30, [dir=rtl] .layout-margin .flex-offset-sm-30, [dir=rtl] .layout-margin .offset-sm-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-sm-35, .flex-offset-sm-35, .layout-margin .flex-offset-sm-35, .layout-margin .offset-sm-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-sm-35, [dir=rtl] .flex-offset-sm-35, [dir=rtl] .layout-margin .flex-offset-sm-35, [dir=rtl] .layout-margin .offset-sm-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-sm-40, .flex-offset-sm-40, .layout-margin .flex-offset-sm-40, .layout-margin .offset-sm-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-sm-40, [dir=rtl] .flex-offset-sm-40, [dir=rtl] .layout-margin .flex-offset-sm-40, [dir=rtl] .layout-margin .offset-sm-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-sm-45, .flex-offset-sm-45, .layout-margin .flex-offset-sm-45, .layout-margin .offset-sm-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-sm-45, [dir=rtl] .flex-offset-sm-45, [dir=rtl] .layout-margin .flex-offset-sm-45, [dir=rtl] .layout-margin .offset-sm-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-sm-50, .flex-offset-sm-50, .layout-margin .flex-offset-sm-50, .layout-margin .offset-sm-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-sm-50, [dir=rtl] .flex-offset-sm-50, [dir=rtl] .layout-margin .flex-offset-sm-50, [dir=rtl] .layout-margin .offset-sm-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-sm-55, .flex-offset-sm-55, .layout-margin .flex-offset-sm-55, .layout-margin .offset-sm-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-sm-55, [dir=rtl] .flex-offset-sm-55, [dir=rtl] .layout-margin .flex-offset-sm-55, [dir=rtl] .layout-margin .offset-sm-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-sm-60, .flex-offset-sm-60, .layout-margin .flex-offset-sm-60, .layout-margin .offset-sm-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-sm-60, [dir=rtl] .flex-offset-sm-60, [dir=rtl] .layout-margin .flex-offset-sm-60, [dir=rtl] .layout-margin .offset-sm-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-sm-65, .flex-offset-sm-65, .layout-margin .flex-offset-sm-65, .layout-margin .offset-sm-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-sm-65, [dir=rtl] .flex-offset-sm-65, [dir=rtl] .layout-margin .flex-offset-sm-65, [dir=rtl] .layout-margin .offset-sm-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-sm-70, .flex-offset-sm-70, .layout-margin .flex-offset-sm-70, .layout-margin .offset-sm-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-sm-70, [dir=rtl] .flex-offset-sm-70, [dir=rtl] .layout-margin .flex-offset-sm-70, [dir=rtl] .layout-margin .offset-sm-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-sm-75, .flex-offset-sm-75, .layout-margin .flex-offset-sm-75, .layout-margin .offset-sm-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-sm-75, [dir=rtl] .flex-offset-sm-75, [dir=rtl] .layout-margin .flex-offset-sm-75, [dir=rtl] .layout-margin .offset-sm-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-sm-80, .flex-offset-sm-80, .layout-margin .flex-offset-sm-80, .layout-margin .offset-sm-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-sm-80, [dir=rtl] .flex-offset-sm-80, [dir=rtl] .layout-margin .flex-offset-sm-80, [dir=rtl] .layout-margin .offset-sm-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-sm-85, .flex-offset-sm-85, .layout-margin .flex-offset-sm-85, .layout-margin .offset-sm-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-sm-85, [dir=rtl] .flex-offset-sm-85, [dir=rtl] .layout-margin .flex-offset-sm-85, [dir=rtl] .layout-margin .offset-sm-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-sm-90, .flex-offset-sm-90, .layout-margin .flex-offset-sm-90, .layout-margin .offset-sm-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-sm-90, [dir=rtl] .flex-offset-sm-90, [dir=rtl] .layout-margin .flex-offset-sm-90, [dir=rtl] .layout-margin .offset-sm-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-sm-95, .flex-offset-sm-95, .layout-margin .flex-offset-sm-95, .layout-margin .offset-sm-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-sm-95, [dir=rtl] .flex-offset-sm-95, [dir=rtl] .layout-margin .flex-offset-sm-95, [dir=rtl] .layout-margin .offset-sm-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-sm-33, .flex-offset-sm-33, .layout-margin .flex-offset-sm-33, .layout-margin .offset-sm-33 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-66, .flex-offset-sm-66, .layout-margin .flex-offset-sm-66, .layout-margin .offset-sm-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-sm-66, [dir=rtl] .flex-offset-sm-66, [dir=rtl] .layout-margin .flex-offset-sm-66, [dir=rtl] .layout-margin .offset-sm-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-sm,
.layout-align-sm-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-sm-start,
.layout-align-sm-start-start,
.layout-align-sm-start-center,
.layout-align-sm-start-end,
.layout-align-sm-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-sm-center,
.layout-align-sm-center-start,
.layout-align-sm-center-center,
.layout-align-sm-center-end,
.layout-align-sm-center-stretch {
    justify-content: center;
  }

  .layout-align-sm-end,
.layout-align-sm-end-start,
.layout-align-sm-end-center,
.layout-align-sm-end-end,
.layout-align-sm-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-sm-space-around,
.layout-align-sm-space-around-center,
.layout-align-sm-space-around-start,
.layout-align-sm-space-around-end,
.layout-align-sm-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-sm-space-between,
.layout-align-sm-space-between-center,
.layout-align-sm-space-between-start,
.layout-align-sm-space-between-end,
.layout-align-sm-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-sm-start-start,
.layout-align-sm-center-start,
.layout-align-sm-end-start,
.layout-align-sm-space-between-start,
.layout-align-sm-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-sm-start-center,
.layout-align-sm-center-center,
.layout-align-sm-end-center,
.layout-align-sm-space-between-center,
.layout-align-sm-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-sm-start-center > *,
.layout-align-sm-center-center > *,
.layout-align-sm-end-center > *,
.layout-align-sm-space-between-center > *,
.layout-align-sm-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-sm-start-end,
.layout-align-sm-center-end,
.layout-align-sm-end-end,
.layout-align-sm-space-between-end,
.layout-align-sm-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-sm-start-stretch,
.layout-align-sm-center-stretch,
.layout-align-sm-end-stretch,
.layout-align-sm-space-between-stretch,
.layout-align-sm-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-sm {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-sm-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-sm-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-sm-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-sm-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-sm-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-sm-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-sm-column > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-sm-column > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-sm-row > .flex-sm-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-sm-row > .flex-sm-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-sm-row > .flex {
    min-width: 0;
  }

  .layout-sm-column > .flex-sm-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-sm-column > .flex-sm-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-sm-column > .flex {
    min-height: 0;
  }

  .layout-sm, .layout-sm-column, .layout-sm-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-sm-column {
    flex-direction: column;
  }

  .layout-sm-row {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .flex-order-gt-sm--20 {
    order: -20;
  }

  .flex-order-gt-sm--19 {
    order: -19;
  }

  .flex-order-gt-sm--18 {
    order: -18;
  }

  .flex-order-gt-sm--17 {
    order: -17;
  }

  .flex-order-gt-sm--16 {
    order: -16;
  }

  .flex-order-gt-sm--15 {
    order: -15;
  }

  .flex-order-gt-sm--14 {
    order: -14;
  }

  .flex-order-gt-sm--13 {
    order: -13;
  }

  .flex-order-gt-sm--12 {
    order: -12;
  }

  .flex-order-gt-sm--11 {
    order: -11;
  }

  .flex-order-gt-sm--10 {
    order: -10;
  }

  .flex-order-gt-sm--9 {
    order: -9;
  }

  .flex-order-gt-sm--8 {
    order: -8;
  }

  .flex-order-gt-sm--7 {
    order: -7;
  }

  .flex-order-gt-sm--6 {
    order: -6;
  }

  .flex-order-gt-sm--5 {
    order: -5;
  }

  .flex-order-gt-sm--4 {
    order: -4;
  }

  .flex-order-gt-sm--3 {
    order: -3;
  }

  .flex-order-gt-sm--2 {
    order: -2;
  }

  .flex-order-gt-sm--1 {
    order: -1;
  }

  .flex-order-gt-sm-0 {
    order: 0;
  }

  .flex-order-gt-sm-1 {
    order: 1;
  }

  .flex-order-gt-sm-2 {
    order: 2;
  }

  .flex-order-gt-sm-3 {
    order: 3;
  }

  .flex-order-gt-sm-4 {
    order: 4;
  }

  .flex-order-gt-sm-5 {
    order: 5;
  }

  .flex-order-gt-sm-6 {
    order: 6;
  }

  .flex-order-gt-sm-7 {
    order: 7;
  }

  .flex-order-gt-sm-8 {
    order: 8;
  }

  .flex-order-gt-sm-9 {
    order: 9;
  }

  .flex-order-gt-sm-10 {
    order: 10;
  }

  .flex-order-gt-sm-11 {
    order: 11;
  }

  .flex-order-gt-sm-12 {
    order: 12;
  }

  .flex-order-gt-sm-13 {
    order: 13;
  }

  .flex-order-gt-sm-14 {
    order: 14;
  }

  .flex-order-gt-sm-15 {
    order: 15;
  }

  .flex-order-gt-sm-16 {
    order: 16;
  }

  .flex-order-gt-sm-17 {
    order: 17;
  }

  .flex-order-gt-sm-18 {
    order: 18;
  }

  .flex-order-gt-sm-19 {
    order: 19;
  }

  .flex-order-gt-sm-20 {
    order: 20;
  }

  .offset-gt-sm-0, .flex-offset-gt-sm-0, .layout-margin .flex-offset-gt-sm-0, .layout-margin .offset-gt-sm-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-gt-sm-0, [dir=rtl] .flex-offset-gt-sm-0, [dir=rtl] .layout-margin .flex-offset-gt-sm-0, [dir=rtl] .layout-margin .offset-gt-sm-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-gt-sm-5, .flex-offset-gt-sm-5, .layout-margin .flex-offset-gt-sm-5, .layout-margin .offset-gt-sm-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-gt-sm-5, [dir=rtl] .flex-offset-gt-sm-5, [dir=rtl] .layout-margin .flex-offset-gt-sm-5, [dir=rtl] .layout-margin .offset-gt-sm-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-gt-sm-10, .flex-offset-gt-sm-10, .layout-margin .flex-offset-gt-sm-10, .layout-margin .offset-gt-sm-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-gt-sm-10, [dir=rtl] .flex-offset-gt-sm-10, [dir=rtl] .layout-margin .flex-offset-gt-sm-10, [dir=rtl] .layout-margin .offset-gt-sm-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-gt-sm-15, .flex-offset-gt-sm-15, .layout-margin .flex-offset-gt-sm-15, .layout-margin .offset-gt-sm-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-gt-sm-15, [dir=rtl] .flex-offset-gt-sm-15, [dir=rtl] .layout-margin .flex-offset-gt-sm-15, [dir=rtl] .layout-margin .offset-gt-sm-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-gt-sm-20, .flex-offset-gt-sm-20, .layout-margin .flex-offset-gt-sm-20, .layout-margin .offset-gt-sm-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-gt-sm-20, [dir=rtl] .flex-offset-gt-sm-20, [dir=rtl] .layout-margin .flex-offset-gt-sm-20, [dir=rtl] .layout-margin .offset-gt-sm-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-gt-sm-25, .flex-offset-gt-sm-25, .layout-margin .flex-offset-gt-sm-25, .layout-margin .offset-gt-sm-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-gt-sm-25, [dir=rtl] .flex-offset-gt-sm-25, [dir=rtl] .layout-margin .flex-offset-gt-sm-25, [dir=rtl] .layout-margin .offset-gt-sm-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-gt-sm-30, .flex-offset-gt-sm-30, .layout-margin .flex-offset-gt-sm-30, .layout-margin .offset-gt-sm-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-gt-sm-30, [dir=rtl] .flex-offset-gt-sm-30, [dir=rtl] .layout-margin .flex-offset-gt-sm-30, [dir=rtl] .layout-margin .offset-gt-sm-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-gt-sm-35, .flex-offset-gt-sm-35, .layout-margin .flex-offset-gt-sm-35, .layout-margin .offset-gt-sm-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-gt-sm-35, [dir=rtl] .flex-offset-gt-sm-35, [dir=rtl] .layout-margin .flex-offset-gt-sm-35, [dir=rtl] .layout-margin .offset-gt-sm-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-gt-sm-40, .flex-offset-gt-sm-40, .layout-margin .flex-offset-gt-sm-40, .layout-margin .offset-gt-sm-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-gt-sm-40, [dir=rtl] .flex-offset-gt-sm-40, [dir=rtl] .layout-margin .flex-offset-gt-sm-40, [dir=rtl] .layout-margin .offset-gt-sm-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-gt-sm-45, .flex-offset-gt-sm-45, .layout-margin .flex-offset-gt-sm-45, .layout-margin .offset-gt-sm-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-gt-sm-45, [dir=rtl] .flex-offset-gt-sm-45, [dir=rtl] .layout-margin .flex-offset-gt-sm-45, [dir=rtl] .layout-margin .offset-gt-sm-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-gt-sm-50, .flex-offset-gt-sm-50, .layout-margin .flex-offset-gt-sm-50, .layout-margin .offset-gt-sm-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-gt-sm-50, [dir=rtl] .flex-offset-gt-sm-50, [dir=rtl] .layout-margin .flex-offset-gt-sm-50, [dir=rtl] .layout-margin .offset-gt-sm-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-gt-sm-55, .flex-offset-gt-sm-55, .layout-margin .flex-offset-gt-sm-55, .layout-margin .offset-gt-sm-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-gt-sm-55, [dir=rtl] .flex-offset-gt-sm-55, [dir=rtl] .layout-margin .flex-offset-gt-sm-55, [dir=rtl] .layout-margin .offset-gt-sm-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-gt-sm-60, .flex-offset-gt-sm-60, .layout-margin .flex-offset-gt-sm-60, .layout-margin .offset-gt-sm-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-gt-sm-60, [dir=rtl] .flex-offset-gt-sm-60, [dir=rtl] .layout-margin .flex-offset-gt-sm-60, [dir=rtl] .layout-margin .offset-gt-sm-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-gt-sm-65, .flex-offset-gt-sm-65, .layout-margin .flex-offset-gt-sm-65, .layout-margin .offset-gt-sm-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-gt-sm-65, [dir=rtl] .flex-offset-gt-sm-65, [dir=rtl] .layout-margin .flex-offset-gt-sm-65, [dir=rtl] .layout-margin .offset-gt-sm-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-gt-sm-70, .flex-offset-gt-sm-70, .layout-margin .flex-offset-gt-sm-70, .layout-margin .offset-gt-sm-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-gt-sm-70, [dir=rtl] .flex-offset-gt-sm-70, [dir=rtl] .layout-margin .flex-offset-gt-sm-70, [dir=rtl] .layout-margin .offset-gt-sm-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-gt-sm-75, .flex-offset-gt-sm-75, .layout-margin .flex-offset-gt-sm-75, .layout-margin .offset-gt-sm-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-gt-sm-75, [dir=rtl] .flex-offset-gt-sm-75, [dir=rtl] .layout-margin .flex-offset-gt-sm-75, [dir=rtl] .layout-margin .offset-gt-sm-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-gt-sm-80, .flex-offset-gt-sm-80, .layout-margin .flex-offset-gt-sm-80, .layout-margin .offset-gt-sm-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-gt-sm-80, [dir=rtl] .flex-offset-gt-sm-80, [dir=rtl] .layout-margin .flex-offset-gt-sm-80, [dir=rtl] .layout-margin .offset-gt-sm-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-gt-sm-85, .flex-offset-gt-sm-85, .layout-margin .flex-offset-gt-sm-85, .layout-margin .offset-gt-sm-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-gt-sm-85, [dir=rtl] .flex-offset-gt-sm-85, [dir=rtl] .layout-margin .flex-offset-gt-sm-85, [dir=rtl] .layout-margin .offset-gt-sm-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-gt-sm-90, .flex-offset-gt-sm-90, .layout-margin .flex-offset-gt-sm-90, .layout-margin .offset-gt-sm-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-gt-sm-90, [dir=rtl] .flex-offset-gt-sm-90, [dir=rtl] .layout-margin .flex-offset-gt-sm-90, [dir=rtl] .layout-margin .offset-gt-sm-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-gt-sm-95, .flex-offset-gt-sm-95, .layout-margin .flex-offset-gt-sm-95, .layout-margin .offset-gt-sm-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-gt-sm-95, [dir=rtl] .flex-offset-gt-sm-95, [dir=rtl] .layout-margin .flex-offset-gt-sm-95, [dir=rtl] .layout-margin .offset-gt-sm-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-gt-sm-33, .flex-offset-gt-sm-33, .layout-margin .flex-offset-gt-sm-33, .layout-margin .offset-gt-sm-33 {
    margin-left: 33.3333333333%;
  }

  .offset-gt-sm-66, .flex-offset-gt-sm-66, .layout-margin .flex-offset-gt-sm-66, .layout-margin .offset-gt-sm-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-gt-sm-66, [dir=rtl] .flex-offset-gt-sm-66, [dir=rtl] .layout-margin .flex-offset-gt-sm-66, [dir=rtl] .layout-margin .offset-gt-sm-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-gt-sm,
.layout-align-gt-sm-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-gt-sm-start,
.layout-align-gt-sm-start-start,
.layout-align-gt-sm-start-center,
.layout-align-gt-sm-start-end,
.layout-align-gt-sm-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-gt-sm-center,
.layout-align-gt-sm-center-start,
.layout-align-gt-sm-center-center,
.layout-align-gt-sm-center-end,
.layout-align-gt-sm-center-stretch {
    justify-content: center;
  }

  .layout-align-gt-sm-end,
.layout-align-gt-sm-end-start,
.layout-align-gt-sm-end-center,
.layout-align-gt-sm-end-end,
.layout-align-gt-sm-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-gt-sm-space-around,
.layout-align-gt-sm-space-around-center,
.layout-align-gt-sm-space-around-start,
.layout-align-gt-sm-space-around-end,
.layout-align-gt-sm-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-gt-sm-space-between,
.layout-align-gt-sm-space-between-center,
.layout-align-gt-sm-space-between-start,
.layout-align-gt-sm-space-between-end,
.layout-align-gt-sm-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-gt-sm-start-start,
.layout-align-gt-sm-center-start,
.layout-align-gt-sm-end-start,
.layout-align-gt-sm-space-between-start,
.layout-align-gt-sm-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-gt-sm-start-center,
.layout-align-gt-sm-center-center,
.layout-align-gt-sm-end-center,
.layout-align-gt-sm-space-between-center,
.layout-align-gt-sm-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-gt-sm-start-center > *,
.layout-align-gt-sm-center-center > *,
.layout-align-gt-sm-end-center > *,
.layout-align-gt-sm-space-between-center > *,
.layout-align-gt-sm-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-gt-sm-start-end,
.layout-align-gt-sm-center-end,
.layout-align-gt-sm-end-end,
.layout-align-gt-sm-space-between-end,
.layout-align-gt-sm-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-gt-sm-start-stretch,
.layout-align-gt-sm-center-stretch,
.layout-align-gt-sm-end-stretch,
.layout-align-gt-sm-space-between-stretch,
.layout-align-gt-sm-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-gt-sm {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-gt-sm-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-gt-sm-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-sm-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-sm-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-sm-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-sm-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-gt-sm-column > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-sm-column > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-gt-sm-row > .flex-gt-sm-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-sm-row > .flex-gt-sm-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-sm-row > .flex {
    min-width: 0;
  }

  .layout-gt-sm-column > .flex-gt-sm-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-gt-sm-column > .flex-gt-sm-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-gt-sm-column > .flex {
    min-height: 0;
  }

  .layout-gt-sm, .layout-gt-sm-column, .layout-gt-sm-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-gt-sm-column {
    flex-direction: column;
  }

  .layout-gt-sm-row {
    flex-direction: row;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show), .hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show), .hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show) {
    display: none;
  }

  .hide-md:not(.show-md):not(.show-gt-sm):not(.show-gt-xs):not(.show) {
    display: none;
  }

  .flex-order-md--20 {
    order: -20;
  }

  .flex-order-md--19 {
    order: -19;
  }

  .flex-order-md--18 {
    order: -18;
  }

  .flex-order-md--17 {
    order: -17;
  }

  .flex-order-md--16 {
    order: -16;
  }

  .flex-order-md--15 {
    order: -15;
  }

  .flex-order-md--14 {
    order: -14;
  }

  .flex-order-md--13 {
    order: -13;
  }

  .flex-order-md--12 {
    order: -12;
  }

  .flex-order-md--11 {
    order: -11;
  }

  .flex-order-md--10 {
    order: -10;
  }

  .flex-order-md--9 {
    order: -9;
  }

  .flex-order-md--8 {
    order: -8;
  }

  .flex-order-md--7 {
    order: -7;
  }

  .flex-order-md--6 {
    order: -6;
  }

  .flex-order-md--5 {
    order: -5;
  }

  .flex-order-md--4 {
    order: -4;
  }

  .flex-order-md--3 {
    order: -3;
  }

  .flex-order-md--2 {
    order: -2;
  }

  .flex-order-md--1 {
    order: -1;
  }

  .flex-order-md-0 {
    order: 0;
  }

  .flex-order-md-1 {
    order: 1;
  }

  .flex-order-md-2 {
    order: 2;
  }

  .flex-order-md-3 {
    order: 3;
  }

  .flex-order-md-4 {
    order: 4;
  }

  .flex-order-md-5 {
    order: 5;
  }

  .flex-order-md-6 {
    order: 6;
  }

  .flex-order-md-7 {
    order: 7;
  }

  .flex-order-md-8 {
    order: 8;
  }

  .flex-order-md-9 {
    order: 9;
  }

  .flex-order-md-10 {
    order: 10;
  }

  .flex-order-md-11 {
    order: 11;
  }

  .flex-order-md-12 {
    order: 12;
  }

  .flex-order-md-13 {
    order: 13;
  }

  .flex-order-md-14 {
    order: 14;
  }

  .flex-order-md-15 {
    order: 15;
  }

  .flex-order-md-16 {
    order: 16;
  }

  .flex-order-md-17 {
    order: 17;
  }

  .flex-order-md-18 {
    order: 18;
  }

  .flex-order-md-19 {
    order: 19;
  }

  .flex-order-md-20 {
    order: 20;
  }

  .offset-md-0, .flex-offset-md-0, .layout-margin .flex-offset-md-0, .layout-margin .offset-md-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-md-0, [dir=rtl] .flex-offset-md-0, [dir=rtl] .layout-margin .flex-offset-md-0, [dir=rtl] .layout-margin .offset-md-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-md-5, .flex-offset-md-5, .layout-margin .flex-offset-md-5, .layout-margin .offset-md-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-md-5, [dir=rtl] .flex-offset-md-5, [dir=rtl] .layout-margin .flex-offset-md-5, [dir=rtl] .layout-margin .offset-md-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-md-10, .flex-offset-md-10, .layout-margin .flex-offset-md-10, .layout-margin .offset-md-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-md-10, [dir=rtl] .flex-offset-md-10, [dir=rtl] .layout-margin .flex-offset-md-10, [dir=rtl] .layout-margin .offset-md-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-md-15, .flex-offset-md-15, .layout-margin .flex-offset-md-15, .layout-margin .offset-md-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-md-15, [dir=rtl] .flex-offset-md-15, [dir=rtl] .layout-margin .flex-offset-md-15, [dir=rtl] .layout-margin .offset-md-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-md-20, .flex-offset-md-20, .layout-margin .flex-offset-md-20, .layout-margin .offset-md-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-md-20, [dir=rtl] .flex-offset-md-20, [dir=rtl] .layout-margin .flex-offset-md-20, [dir=rtl] .layout-margin .offset-md-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-md-25, .flex-offset-md-25, .layout-margin .flex-offset-md-25, .layout-margin .offset-md-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-md-25, [dir=rtl] .flex-offset-md-25, [dir=rtl] .layout-margin .flex-offset-md-25, [dir=rtl] .layout-margin .offset-md-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-md-30, .flex-offset-md-30, .layout-margin .flex-offset-md-30, .layout-margin .offset-md-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-md-30, [dir=rtl] .flex-offset-md-30, [dir=rtl] .layout-margin .flex-offset-md-30, [dir=rtl] .layout-margin .offset-md-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-md-35, .flex-offset-md-35, .layout-margin .flex-offset-md-35, .layout-margin .offset-md-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-md-35, [dir=rtl] .flex-offset-md-35, [dir=rtl] .layout-margin .flex-offset-md-35, [dir=rtl] .layout-margin .offset-md-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-md-40, .flex-offset-md-40, .layout-margin .flex-offset-md-40, .layout-margin .offset-md-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-md-40, [dir=rtl] .flex-offset-md-40, [dir=rtl] .layout-margin .flex-offset-md-40, [dir=rtl] .layout-margin .offset-md-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-md-45, .flex-offset-md-45, .layout-margin .flex-offset-md-45, .layout-margin .offset-md-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-md-45, [dir=rtl] .flex-offset-md-45, [dir=rtl] .layout-margin .flex-offset-md-45, [dir=rtl] .layout-margin .offset-md-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-md-50, .flex-offset-md-50, .layout-margin .flex-offset-md-50, .layout-margin .offset-md-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-md-50, [dir=rtl] .flex-offset-md-50, [dir=rtl] .layout-margin .flex-offset-md-50, [dir=rtl] .layout-margin .offset-md-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-md-55, .flex-offset-md-55, .layout-margin .flex-offset-md-55, .layout-margin .offset-md-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-md-55, [dir=rtl] .flex-offset-md-55, [dir=rtl] .layout-margin .flex-offset-md-55, [dir=rtl] .layout-margin .offset-md-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-md-60, .flex-offset-md-60, .layout-margin .flex-offset-md-60, .layout-margin .offset-md-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-md-60, [dir=rtl] .flex-offset-md-60, [dir=rtl] .layout-margin .flex-offset-md-60, [dir=rtl] .layout-margin .offset-md-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-md-65, .flex-offset-md-65, .layout-margin .flex-offset-md-65, .layout-margin .offset-md-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-md-65, [dir=rtl] .flex-offset-md-65, [dir=rtl] .layout-margin .flex-offset-md-65, [dir=rtl] .layout-margin .offset-md-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-md-70, .flex-offset-md-70, .layout-margin .flex-offset-md-70, .layout-margin .offset-md-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-md-70, [dir=rtl] .flex-offset-md-70, [dir=rtl] .layout-margin .flex-offset-md-70, [dir=rtl] .layout-margin .offset-md-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-md-75, .flex-offset-md-75, .layout-margin .flex-offset-md-75, .layout-margin .offset-md-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-md-75, [dir=rtl] .flex-offset-md-75, [dir=rtl] .layout-margin .flex-offset-md-75, [dir=rtl] .layout-margin .offset-md-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-md-80, .flex-offset-md-80, .layout-margin .flex-offset-md-80, .layout-margin .offset-md-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-md-80, [dir=rtl] .flex-offset-md-80, [dir=rtl] .layout-margin .flex-offset-md-80, [dir=rtl] .layout-margin .offset-md-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-md-85, .flex-offset-md-85, .layout-margin .flex-offset-md-85, .layout-margin .offset-md-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-md-85, [dir=rtl] .flex-offset-md-85, [dir=rtl] .layout-margin .flex-offset-md-85, [dir=rtl] .layout-margin .offset-md-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-md-90, .flex-offset-md-90, .layout-margin .flex-offset-md-90, .layout-margin .offset-md-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-md-90, [dir=rtl] .flex-offset-md-90, [dir=rtl] .layout-margin .flex-offset-md-90, [dir=rtl] .layout-margin .offset-md-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-md-95, .flex-offset-md-95, .layout-margin .flex-offset-md-95, .layout-margin .offset-md-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-md-95, [dir=rtl] .flex-offset-md-95, [dir=rtl] .layout-margin .flex-offset-md-95, [dir=rtl] .layout-margin .offset-md-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-md-33, .flex-offset-md-33, .layout-margin .flex-offset-md-33, .layout-margin .offset-md-33 {
    margin-left: 33.3333333333%;
  }

  .offset-md-66, .flex-offset-md-66, .layout-margin .flex-offset-md-66, .layout-margin .offset-md-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-md-66, [dir=rtl] .flex-offset-md-66, [dir=rtl] .layout-margin .flex-offset-md-66, [dir=rtl] .layout-margin .offset-md-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-md,
.layout-align-md-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-md-start,
.layout-align-md-start-start,
.layout-align-md-start-center,
.layout-align-md-start-end,
.layout-align-md-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-md-center,
.layout-align-md-center-start,
.layout-align-md-center-center,
.layout-align-md-center-end,
.layout-align-md-center-stretch {
    justify-content: center;
  }

  .layout-align-md-end,
.layout-align-md-end-start,
.layout-align-md-end-center,
.layout-align-md-end-end,
.layout-align-md-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-md-space-around,
.layout-align-md-space-around-center,
.layout-align-md-space-around-start,
.layout-align-md-space-around-end,
.layout-align-md-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-md-space-between,
.layout-align-md-space-between-center,
.layout-align-md-space-between-start,
.layout-align-md-space-between-end,
.layout-align-md-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-md-start-start,
.layout-align-md-center-start,
.layout-align-md-end-start,
.layout-align-md-space-between-start,
.layout-align-md-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-md-start-center,
.layout-align-md-center-center,
.layout-align-md-end-center,
.layout-align-md-space-between-center,
.layout-align-md-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-md-start-center > *,
.layout-align-md-center-center > *,
.layout-align-md-end-center > *,
.layout-align-md-space-between-center > *,
.layout-align-md-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-md-start-end,
.layout-align-md-center-end,
.layout-align-md-end-end,
.layout-align-md-space-between-end,
.layout-align-md-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-md-start-stretch,
.layout-align-md-center-stretch,
.layout-align-md-end-stretch,
.layout-align-md-space-between-stretch,
.layout-align-md-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-md {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-md-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-md-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-md-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-md-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-md-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-md-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-md-column > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-md-column > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-md-row > .flex-md-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-md-row > .flex-md-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-md-row > .flex {
    min-width: 0;
  }

  .layout-md-column > .flex-md-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-md-column > .flex-md-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-md-column > .flex {
    min-height: 0;
  }

  .layout-md, .layout-md-column, .layout-md-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-md-column {
    flex-direction: column;
  }

  .layout-md-row {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .flex-order-gt-md--20 {
    order: -20;
  }

  .flex-order-gt-md--19 {
    order: -19;
  }

  .flex-order-gt-md--18 {
    order: -18;
  }

  .flex-order-gt-md--17 {
    order: -17;
  }

  .flex-order-gt-md--16 {
    order: -16;
  }

  .flex-order-gt-md--15 {
    order: -15;
  }

  .flex-order-gt-md--14 {
    order: -14;
  }

  .flex-order-gt-md--13 {
    order: -13;
  }

  .flex-order-gt-md--12 {
    order: -12;
  }

  .flex-order-gt-md--11 {
    order: -11;
  }

  .flex-order-gt-md--10 {
    order: -10;
  }

  .flex-order-gt-md--9 {
    order: -9;
  }

  .flex-order-gt-md--8 {
    order: -8;
  }

  .flex-order-gt-md--7 {
    order: -7;
  }

  .flex-order-gt-md--6 {
    order: -6;
  }

  .flex-order-gt-md--5 {
    order: -5;
  }

  .flex-order-gt-md--4 {
    order: -4;
  }

  .flex-order-gt-md--3 {
    order: -3;
  }

  .flex-order-gt-md--2 {
    order: -2;
  }

  .flex-order-gt-md--1 {
    order: -1;
  }

  .flex-order-gt-md-0 {
    order: 0;
  }

  .flex-order-gt-md-1 {
    order: 1;
  }

  .flex-order-gt-md-2 {
    order: 2;
  }

  .flex-order-gt-md-3 {
    order: 3;
  }

  .flex-order-gt-md-4 {
    order: 4;
  }

  .flex-order-gt-md-5 {
    order: 5;
  }

  .flex-order-gt-md-6 {
    order: 6;
  }

  .flex-order-gt-md-7 {
    order: 7;
  }

  .flex-order-gt-md-8 {
    order: 8;
  }

  .flex-order-gt-md-9 {
    order: 9;
  }

  .flex-order-gt-md-10 {
    order: 10;
  }

  .flex-order-gt-md-11 {
    order: 11;
  }

  .flex-order-gt-md-12 {
    order: 12;
  }

  .flex-order-gt-md-13 {
    order: 13;
  }

  .flex-order-gt-md-14 {
    order: 14;
  }

  .flex-order-gt-md-15 {
    order: 15;
  }

  .flex-order-gt-md-16 {
    order: 16;
  }

  .flex-order-gt-md-17 {
    order: 17;
  }

  .flex-order-gt-md-18 {
    order: 18;
  }

  .flex-order-gt-md-19 {
    order: 19;
  }

  .flex-order-gt-md-20 {
    order: 20;
  }

  .offset-gt-md-0, .flex-offset-gt-md-0, .layout-margin .flex-offset-gt-md-0, .layout-margin .offset-gt-md-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-gt-md-0, [dir=rtl] .flex-offset-gt-md-0, [dir=rtl] .layout-margin .flex-offset-gt-md-0, [dir=rtl] .layout-margin .offset-gt-md-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-gt-md-5, .flex-offset-gt-md-5, .layout-margin .flex-offset-gt-md-5, .layout-margin .offset-gt-md-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-gt-md-5, [dir=rtl] .flex-offset-gt-md-5, [dir=rtl] .layout-margin .flex-offset-gt-md-5, [dir=rtl] .layout-margin .offset-gt-md-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-gt-md-10, .flex-offset-gt-md-10, .layout-margin .flex-offset-gt-md-10, .layout-margin .offset-gt-md-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-gt-md-10, [dir=rtl] .flex-offset-gt-md-10, [dir=rtl] .layout-margin .flex-offset-gt-md-10, [dir=rtl] .layout-margin .offset-gt-md-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-gt-md-15, .flex-offset-gt-md-15, .layout-margin .flex-offset-gt-md-15, .layout-margin .offset-gt-md-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-gt-md-15, [dir=rtl] .flex-offset-gt-md-15, [dir=rtl] .layout-margin .flex-offset-gt-md-15, [dir=rtl] .layout-margin .offset-gt-md-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-gt-md-20, .flex-offset-gt-md-20, .layout-margin .flex-offset-gt-md-20, .layout-margin .offset-gt-md-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-gt-md-20, [dir=rtl] .flex-offset-gt-md-20, [dir=rtl] .layout-margin .flex-offset-gt-md-20, [dir=rtl] .layout-margin .offset-gt-md-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-gt-md-25, .flex-offset-gt-md-25, .layout-margin .flex-offset-gt-md-25, .layout-margin .offset-gt-md-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-gt-md-25, [dir=rtl] .flex-offset-gt-md-25, [dir=rtl] .layout-margin .flex-offset-gt-md-25, [dir=rtl] .layout-margin .offset-gt-md-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-gt-md-30, .flex-offset-gt-md-30, .layout-margin .flex-offset-gt-md-30, .layout-margin .offset-gt-md-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-gt-md-30, [dir=rtl] .flex-offset-gt-md-30, [dir=rtl] .layout-margin .flex-offset-gt-md-30, [dir=rtl] .layout-margin .offset-gt-md-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-gt-md-35, .flex-offset-gt-md-35, .layout-margin .flex-offset-gt-md-35, .layout-margin .offset-gt-md-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-gt-md-35, [dir=rtl] .flex-offset-gt-md-35, [dir=rtl] .layout-margin .flex-offset-gt-md-35, [dir=rtl] .layout-margin .offset-gt-md-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-gt-md-40, .flex-offset-gt-md-40, .layout-margin .flex-offset-gt-md-40, .layout-margin .offset-gt-md-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-gt-md-40, [dir=rtl] .flex-offset-gt-md-40, [dir=rtl] .layout-margin .flex-offset-gt-md-40, [dir=rtl] .layout-margin .offset-gt-md-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-gt-md-45, .flex-offset-gt-md-45, .layout-margin .flex-offset-gt-md-45, .layout-margin .offset-gt-md-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-gt-md-45, [dir=rtl] .flex-offset-gt-md-45, [dir=rtl] .layout-margin .flex-offset-gt-md-45, [dir=rtl] .layout-margin .offset-gt-md-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-gt-md-50, .flex-offset-gt-md-50, .layout-margin .flex-offset-gt-md-50, .layout-margin .offset-gt-md-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-gt-md-50, [dir=rtl] .flex-offset-gt-md-50, [dir=rtl] .layout-margin .flex-offset-gt-md-50, [dir=rtl] .layout-margin .offset-gt-md-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-gt-md-55, .flex-offset-gt-md-55, .layout-margin .flex-offset-gt-md-55, .layout-margin .offset-gt-md-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-gt-md-55, [dir=rtl] .flex-offset-gt-md-55, [dir=rtl] .layout-margin .flex-offset-gt-md-55, [dir=rtl] .layout-margin .offset-gt-md-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-gt-md-60, .flex-offset-gt-md-60, .layout-margin .flex-offset-gt-md-60, .layout-margin .offset-gt-md-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-gt-md-60, [dir=rtl] .flex-offset-gt-md-60, [dir=rtl] .layout-margin .flex-offset-gt-md-60, [dir=rtl] .layout-margin .offset-gt-md-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-gt-md-65, .flex-offset-gt-md-65, .layout-margin .flex-offset-gt-md-65, .layout-margin .offset-gt-md-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-gt-md-65, [dir=rtl] .flex-offset-gt-md-65, [dir=rtl] .layout-margin .flex-offset-gt-md-65, [dir=rtl] .layout-margin .offset-gt-md-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-gt-md-70, .flex-offset-gt-md-70, .layout-margin .flex-offset-gt-md-70, .layout-margin .offset-gt-md-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-gt-md-70, [dir=rtl] .flex-offset-gt-md-70, [dir=rtl] .layout-margin .flex-offset-gt-md-70, [dir=rtl] .layout-margin .offset-gt-md-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-gt-md-75, .flex-offset-gt-md-75, .layout-margin .flex-offset-gt-md-75, .layout-margin .offset-gt-md-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-gt-md-75, [dir=rtl] .flex-offset-gt-md-75, [dir=rtl] .layout-margin .flex-offset-gt-md-75, [dir=rtl] .layout-margin .offset-gt-md-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-gt-md-80, .flex-offset-gt-md-80, .layout-margin .flex-offset-gt-md-80, .layout-margin .offset-gt-md-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-gt-md-80, [dir=rtl] .flex-offset-gt-md-80, [dir=rtl] .layout-margin .flex-offset-gt-md-80, [dir=rtl] .layout-margin .offset-gt-md-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-gt-md-85, .flex-offset-gt-md-85, .layout-margin .flex-offset-gt-md-85, .layout-margin .offset-gt-md-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-gt-md-85, [dir=rtl] .flex-offset-gt-md-85, [dir=rtl] .layout-margin .flex-offset-gt-md-85, [dir=rtl] .layout-margin .offset-gt-md-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-gt-md-90, .flex-offset-gt-md-90, .layout-margin .flex-offset-gt-md-90, .layout-margin .offset-gt-md-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-gt-md-90, [dir=rtl] .flex-offset-gt-md-90, [dir=rtl] .layout-margin .flex-offset-gt-md-90, [dir=rtl] .layout-margin .offset-gt-md-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-gt-md-95, .flex-offset-gt-md-95, .layout-margin .flex-offset-gt-md-95, .layout-margin .offset-gt-md-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-gt-md-95, [dir=rtl] .flex-offset-gt-md-95, [dir=rtl] .layout-margin .flex-offset-gt-md-95, [dir=rtl] .layout-margin .offset-gt-md-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-gt-md-33, .flex-offset-gt-md-33, .layout-margin .flex-offset-gt-md-33, .layout-margin .offset-gt-md-33 {
    margin-left: 33.3333333333%;
  }

  .offset-gt-md-66, .flex-offset-gt-md-66, .layout-margin .flex-offset-gt-md-66, .layout-margin .offset-gt-md-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-gt-md-66, [dir=rtl] .flex-offset-gt-md-66, [dir=rtl] .layout-margin .flex-offset-gt-md-66, [dir=rtl] .layout-margin .offset-gt-md-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-gt-md,
.layout-align-gt-md-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-gt-md-start,
.layout-align-gt-md-start-start,
.layout-align-gt-md-start-center,
.layout-align-gt-md-start-end,
.layout-align-gt-md-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-gt-md-center,
.layout-align-gt-md-center-start,
.layout-align-gt-md-center-center,
.layout-align-gt-md-center-end,
.layout-align-gt-md-center-stretch {
    justify-content: center;
  }

  .layout-align-gt-md-end,
.layout-align-gt-md-end-start,
.layout-align-gt-md-end-center,
.layout-align-gt-md-end-end,
.layout-align-gt-md-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-gt-md-space-around,
.layout-align-gt-md-space-around-center,
.layout-align-gt-md-space-around-start,
.layout-align-gt-md-space-around-end,
.layout-align-gt-md-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-gt-md-space-between,
.layout-align-gt-md-space-between-center,
.layout-align-gt-md-space-between-start,
.layout-align-gt-md-space-between-end,
.layout-align-gt-md-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-gt-md-start-start,
.layout-align-gt-md-center-start,
.layout-align-gt-md-end-start,
.layout-align-gt-md-space-between-start,
.layout-align-gt-md-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-gt-md-start-center,
.layout-align-gt-md-center-center,
.layout-align-gt-md-end-center,
.layout-align-gt-md-space-between-center,
.layout-align-gt-md-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-gt-md-start-center > *,
.layout-align-gt-md-center-center > *,
.layout-align-gt-md-end-center > *,
.layout-align-gt-md-space-between-center > *,
.layout-align-gt-md-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-gt-md-start-end,
.layout-align-gt-md-center-end,
.layout-align-gt-md-end-end,
.layout-align-gt-md-space-between-end,
.layout-align-gt-md-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-gt-md-start-stretch,
.layout-align-gt-md-center-stretch,
.layout-align-gt-md-end-stretch,
.layout-align-gt-md-space-between-stretch,
.layout-align-gt-md-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-gt-md {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-gt-md-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-gt-md-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-md-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-md-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-md-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-md-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-gt-md-column > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-md-column > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-gt-md-row > .flex-gt-md-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-md-row > .flex-gt-md-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-md-row > .flex {
    min-width: 0;
  }

  .layout-gt-md-column > .flex-gt-md-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-gt-md-column > .flex-gt-md-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-gt-md-column > .flex {
    min-height: 0;
  }

  .layout-gt-md, .layout-gt-md-column, .layout-gt-md-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-gt-md-column {
    flex-direction: column;
  }

  .layout-gt-md-row {
    flex-direction: row;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show), .hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show), .hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show), .hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show) {
    display: none;
  }

  .hide-lg:not(.show-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show) {
    display: none;
  }

  .flex-order-lg--20 {
    order: -20;
  }

  .flex-order-lg--19 {
    order: -19;
  }

  .flex-order-lg--18 {
    order: -18;
  }

  .flex-order-lg--17 {
    order: -17;
  }

  .flex-order-lg--16 {
    order: -16;
  }

  .flex-order-lg--15 {
    order: -15;
  }

  .flex-order-lg--14 {
    order: -14;
  }

  .flex-order-lg--13 {
    order: -13;
  }

  .flex-order-lg--12 {
    order: -12;
  }

  .flex-order-lg--11 {
    order: -11;
  }

  .flex-order-lg--10 {
    order: -10;
  }

  .flex-order-lg--9 {
    order: -9;
  }

  .flex-order-lg--8 {
    order: -8;
  }

  .flex-order-lg--7 {
    order: -7;
  }

  .flex-order-lg--6 {
    order: -6;
  }

  .flex-order-lg--5 {
    order: -5;
  }

  .flex-order-lg--4 {
    order: -4;
  }

  .flex-order-lg--3 {
    order: -3;
  }

  .flex-order-lg--2 {
    order: -2;
  }

  .flex-order-lg--1 {
    order: -1;
  }

  .flex-order-lg-0 {
    order: 0;
  }

  .flex-order-lg-1 {
    order: 1;
  }

  .flex-order-lg-2 {
    order: 2;
  }

  .flex-order-lg-3 {
    order: 3;
  }

  .flex-order-lg-4 {
    order: 4;
  }

  .flex-order-lg-5 {
    order: 5;
  }

  .flex-order-lg-6 {
    order: 6;
  }

  .flex-order-lg-7 {
    order: 7;
  }

  .flex-order-lg-8 {
    order: 8;
  }

  .flex-order-lg-9 {
    order: 9;
  }

  .flex-order-lg-10 {
    order: 10;
  }

  .flex-order-lg-11 {
    order: 11;
  }

  .flex-order-lg-12 {
    order: 12;
  }

  .flex-order-lg-13 {
    order: 13;
  }

  .flex-order-lg-14 {
    order: 14;
  }

  .flex-order-lg-15 {
    order: 15;
  }

  .flex-order-lg-16 {
    order: 16;
  }

  .flex-order-lg-17 {
    order: 17;
  }

  .flex-order-lg-18 {
    order: 18;
  }

  .flex-order-lg-19 {
    order: 19;
  }

  .flex-order-lg-20 {
    order: 20;
  }

  .offset-lg-0, .flex-offset-lg-0, .layout-margin .flex-offset-lg-0, .layout-margin .offset-lg-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-lg-0, [dir=rtl] .flex-offset-lg-0, [dir=rtl] .layout-margin .flex-offset-lg-0, [dir=rtl] .layout-margin .offset-lg-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-lg-5, .flex-offset-lg-5, .layout-margin .flex-offset-lg-5, .layout-margin .offset-lg-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-lg-5, [dir=rtl] .flex-offset-lg-5, [dir=rtl] .layout-margin .flex-offset-lg-5, [dir=rtl] .layout-margin .offset-lg-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-lg-10, .flex-offset-lg-10, .layout-margin .flex-offset-lg-10, .layout-margin .offset-lg-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-lg-10, [dir=rtl] .flex-offset-lg-10, [dir=rtl] .layout-margin .flex-offset-lg-10, [dir=rtl] .layout-margin .offset-lg-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-lg-15, .flex-offset-lg-15, .layout-margin .flex-offset-lg-15, .layout-margin .offset-lg-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-lg-15, [dir=rtl] .flex-offset-lg-15, [dir=rtl] .layout-margin .flex-offset-lg-15, [dir=rtl] .layout-margin .offset-lg-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-lg-20, .flex-offset-lg-20, .layout-margin .flex-offset-lg-20, .layout-margin .offset-lg-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-lg-20, [dir=rtl] .flex-offset-lg-20, [dir=rtl] .layout-margin .flex-offset-lg-20, [dir=rtl] .layout-margin .offset-lg-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-lg-25, .flex-offset-lg-25, .layout-margin .flex-offset-lg-25, .layout-margin .offset-lg-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-lg-25, [dir=rtl] .flex-offset-lg-25, [dir=rtl] .layout-margin .flex-offset-lg-25, [dir=rtl] .layout-margin .offset-lg-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-lg-30, .flex-offset-lg-30, .layout-margin .flex-offset-lg-30, .layout-margin .offset-lg-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-lg-30, [dir=rtl] .flex-offset-lg-30, [dir=rtl] .layout-margin .flex-offset-lg-30, [dir=rtl] .layout-margin .offset-lg-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-lg-35, .flex-offset-lg-35, .layout-margin .flex-offset-lg-35, .layout-margin .offset-lg-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-lg-35, [dir=rtl] .flex-offset-lg-35, [dir=rtl] .layout-margin .flex-offset-lg-35, [dir=rtl] .layout-margin .offset-lg-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-lg-40, .flex-offset-lg-40, .layout-margin .flex-offset-lg-40, .layout-margin .offset-lg-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-lg-40, [dir=rtl] .flex-offset-lg-40, [dir=rtl] .layout-margin .flex-offset-lg-40, [dir=rtl] .layout-margin .offset-lg-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-lg-45, .flex-offset-lg-45, .layout-margin .flex-offset-lg-45, .layout-margin .offset-lg-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-lg-45, [dir=rtl] .flex-offset-lg-45, [dir=rtl] .layout-margin .flex-offset-lg-45, [dir=rtl] .layout-margin .offset-lg-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-lg-50, .flex-offset-lg-50, .layout-margin .flex-offset-lg-50, .layout-margin .offset-lg-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-lg-50, [dir=rtl] .flex-offset-lg-50, [dir=rtl] .layout-margin .flex-offset-lg-50, [dir=rtl] .layout-margin .offset-lg-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-lg-55, .flex-offset-lg-55, .layout-margin .flex-offset-lg-55, .layout-margin .offset-lg-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-lg-55, [dir=rtl] .flex-offset-lg-55, [dir=rtl] .layout-margin .flex-offset-lg-55, [dir=rtl] .layout-margin .offset-lg-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-lg-60, .flex-offset-lg-60, .layout-margin .flex-offset-lg-60, .layout-margin .offset-lg-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-lg-60, [dir=rtl] .flex-offset-lg-60, [dir=rtl] .layout-margin .flex-offset-lg-60, [dir=rtl] .layout-margin .offset-lg-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-lg-65, .flex-offset-lg-65, .layout-margin .flex-offset-lg-65, .layout-margin .offset-lg-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-lg-65, [dir=rtl] .flex-offset-lg-65, [dir=rtl] .layout-margin .flex-offset-lg-65, [dir=rtl] .layout-margin .offset-lg-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-lg-70, .flex-offset-lg-70, .layout-margin .flex-offset-lg-70, .layout-margin .offset-lg-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-lg-70, [dir=rtl] .flex-offset-lg-70, [dir=rtl] .layout-margin .flex-offset-lg-70, [dir=rtl] .layout-margin .offset-lg-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-lg-75, .flex-offset-lg-75, .layout-margin .flex-offset-lg-75, .layout-margin .offset-lg-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-lg-75, [dir=rtl] .flex-offset-lg-75, [dir=rtl] .layout-margin .flex-offset-lg-75, [dir=rtl] .layout-margin .offset-lg-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-lg-80, .flex-offset-lg-80, .layout-margin .flex-offset-lg-80, .layout-margin .offset-lg-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-lg-80, [dir=rtl] .flex-offset-lg-80, [dir=rtl] .layout-margin .flex-offset-lg-80, [dir=rtl] .layout-margin .offset-lg-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-lg-85, .flex-offset-lg-85, .layout-margin .flex-offset-lg-85, .layout-margin .offset-lg-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-lg-85, [dir=rtl] .flex-offset-lg-85, [dir=rtl] .layout-margin .flex-offset-lg-85, [dir=rtl] .layout-margin .offset-lg-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-lg-90, .flex-offset-lg-90, .layout-margin .flex-offset-lg-90, .layout-margin .offset-lg-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-lg-90, [dir=rtl] .flex-offset-lg-90, [dir=rtl] .layout-margin .flex-offset-lg-90, [dir=rtl] .layout-margin .offset-lg-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-lg-95, .flex-offset-lg-95, .layout-margin .flex-offset-lg-95, .layout-margin .offset-lg-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-lg-95, [dir=rtl] .flex-offset-lg-95, [dir=rtl] .layout-margin .flex-offset-lg-95, [dir=rtl] .layout-margin .offset-lg-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-lg-33, .flex-offset-lg-33, .layout-margin .flex-offset-lg-33, .layout-margin .offset-lg-33 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-66, .flex-offset-lg-66, .layout-margin .flex-offset-lg-66, .layout-margin .offset-lg-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-lg-66, [dir=rtl] .flex-offset-lg-66, [dir=rtl] .layout-margin .flex-offset-lg-66, [dir=rtl] .layout-margin .offset-lg-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-lg,
.layout-align-lg-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-lg-start,
.layout-align-lg-start-start,
.layout-align-lg-start-center,
.layout-align-lg-start-end,
.layout-align-lg-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-lg-center,
.layout-align-lg-center-start,
.layout-align-lg-center-center,
.layout-align-lg-center-end,
.layout-align-lg-center-stretch {
    justify-content: center;
  }

  .layout-align-lg-end,
.layout-align-lg-end-start,
.layout-align-lg-end-center,
.layout-align-lg-end-end,
.layout-align-lg-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-lg-space-around,
.layout-align-lg-space-around-center,
.layout-align-lg-space-around-start,
.layout-align-lg-space-around-end,
.layout-align-lg-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-lg-space-between,
.layout-align-lg-space-between-center,
.layout-align-lg-space-between-start,
.layout-align-lg-space-between-end,
.layout-align-lg-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-lg-start-start,
.layout-align-lg-center-start,
.layout-align-lg-end-start,
.layout-align-lg-space-between-start,
.layout-align-lg-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-lg-start-center,
.layout-align-lg-center-center,
.layout-align-lg-end-center,
.layout-align-lg-space-between-center,
.layout-align-lg-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-lg-start-center > *,
.layout-align-lg-center-center > *,
.layout-align-lg-end-center > *,
.layout-align-lg-space-between-center > *,
.layout-align-lg-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-lg-start-end,
.layout-align-lg-center-end,
.layout-align-lg-end-end,
.layout-align-lg-space-between-end,
.layout-align-lg-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-lg-start-stretch,
.layout-align-lg-center-stretch,
.layout-align-lg-end-stretch,
.layout-align-lg-space-between-stretch,
.layout-align-lg-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-lg {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-lg-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-lg-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-lg-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-lg-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-lg-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-lg-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-lg-column > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-lg-column > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-lg-row > .flex-lg-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-lg-row > .flex-lg-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-lg-row > .flex {
    min-width: 0;
  }

  .layout-lg-column > .flex-lg-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-lg-column > .flex-lg-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-lg-column > .flex {
    min-height: 0;
  }

  .layout-lg, .layout-lg-column, .layout-lg-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-lg-column {
    flex-direction: column;
  }

  .layout-lg-row {
    flex-direction: row;
  }
}
@media (min-width: 1920px) {
  .flex-order-gt-lg--20 {
    order: -20;
  }

  .flex-order-gt-lg--19 {
    order: -19;
  }

  .flex-order-gt-lg--18 {
    order: -18;
  }

  .flex-order-gt-lg--17 {
    order: -17;
  }

  .flex-order-gt-lg--16 {
    order: -16;
  }

  .flex-order-gt-lg--15 {
    order: -15;
  }

  .flex-order-gt-lg--14 {
    order: -14;
  }

  .flex-order-gt-lg--13 {
    order: -13;
  }

  .flex-order-gt-lg--12 {
    order: -12;
  }

  .flex-order-gt-lg--11 {
    order: -11;
  }

  .flex-order-gt-lg--10 {
    order: -10;
  }

  .flex-order-gt-lg--9 {
    order: -9;
  }

  .flex-order-gt-lg--8 {
    order: -8;
  }

  .flex-order-gt-lg--7 {
    order: -7;
  }

  .flex-order-gt-lg--6 {
    order: -6;
  }

  .flex-order-gt-lg--5 {
    order: -5;
  }

  .flex-order-gt-lg--4 {
    order: -4;
  }

  .flex-order-gt-lg--3 {
    order: -3;
  }

  .flex-order-gt-lg--2 {
    order: -2;
  }

  .flex-order-gt-lg--1 {
    order: -1;
  }

  .flex-order-gt-lg-0 {
    order: 0;
  }

  .flex-order-gt-lg-1 {
    order: 1;
  }

  .flex-order-gt-lg-2 {
    order: 2;
  }

  .flex-order-gt-lg-3 {
    order: 3;
  }

  .flex-order-gt-lg-4 {
    order: 4;
  }

  .flex-order-gt-lg-5 {
    order: 5;
  }

  .flex-order-gt-lg-6 {
    order: 6;
  }

  .flex-order-gt-lg-7 {
    order: 7;
  }

  .flex-order-gt-lg-8 {
    order: 8;
  }

  .flex-order-gt-lg-9 {
    order: 9;
  }

  .flex-order-gt-lg-10 {
    order: 10;
  }

  .flex-order-gt-lg-11 {
    order: 11;
  }

  .flex-order-gt-lg-12 {
    order: 12;
  }

  .flex-order-gt-lg-13 {
    order: 13;
  }

  .flex-order-gt-lg-14 {
    order: 14;
  }

  .flex-order-gt-lg-15 {
    order: 15;
  }

  .flex-order-gt-lg-16 {
    order: 16;
  }

  .flex-order-gt-lg-17 {
    order: 17;
  }

  .flex-order-gt-lg-18 {
    order: 18;
  }

  .flex-order-gt-lg-19 {
    order: 19;
  }

  .flex-order-gt-lg-20 {
    order: 20;
  }

  .offset-gt-lg-0, .flex-offset-gt-lg-0, .layout-margin .flex-offset-gt-lg-0, .layout-margin .offset-gt-lg-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-gt-lg-0, [dir=rtl] .flex-offset-gt-lg-0, [dir=rtl] .layout-margin .flex-offset-gt-lg-0, [dir=rtl] .layout-margin .offset-gt-lg-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-gt-lg-5, .flex-offset-gt-lg-5, .layout-margin .flex-offset-gt-lg-5, .layout-margin .offset-gt-lg-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-gt-lg-5, [dir=rtl] .flex-offset-gt-lg-5, [dir=rtl] .layout-margin .flex-offset-gt-lg-5, [dir=rtl] .layout-margin .offset-gt-lg-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-gt-lg-10, .flex-offset-gt-lg-10, .layout-margin .flex-offset-gt-lg-10, .layout-margin .offset-gt-lg-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-gt-lg-10, [dir=rtl] .flex-offset-gt-lg-10, [dir=rtl] .layout-margin .flex-offset-gt-lg-10, [dir=rtl] .layout-margin .offset-gt-lg-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-gt-lg-15, .flex-offset-gt-lg-15, .layout-margin .flex-offset-gt-lg-15, .layout-margin .offset-gt-lg-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-gt-lg-15, [dir=rtl] .flex-offset-gt-lg-15, [dir=rtl] .layout-margin .flex-offset-gt-lg-15, [dir=rtl] .layout-margin .offset-gt-lg-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-gt-lg-20, .flex-offset-gt-lg-20, .layout-margin .flex-offset-gt-lg-20, .layout-margin .offset-gt-lg-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-gt-lg-20, [dir=rtl] .flex-offset-gt-lg-20, [dir=rtl] .layout-margin .flex-offset-gt-lg-20, [dir=rtl] .layout-margin .offset-gt-lg-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-gt-lg-25, .flex-offset-gt-lg-25, .layout-margin .flex-offset-gt-lg-25, .layout-margin .offset-gt-lg-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-gt-lg-25, [dir=rtl] .flex-offset-gt-lg-25, [dir=rtl] .layout-margin .flex-offset-gt-lg-25, [dir=rtl] .layout-margin .offset-gt-lg-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-gt-lg-30, .flex-offset-gt-lg-30, .layout-margin .flex-offset-gt-lg-30, .layout-margin .offset-gt-lg-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-gt-lg-30, [dir=rtl] .flex-offset-gt-lg-30, [dir=rtl] .layout-margin .flex-offset-gt-lg-30, [dir=rtl] .layout-margin .offset-gt-lg-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-gt-lg-35, .flex-offset-gt-lg-35, .layout-margin .flex-offset-gt-lg-35, .layout-margin .offset-gt-lg-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-gt-lg-35, [dir=rtl] .flex-offset-gt-lg-35, [dir=rtl] .layout-margin .flex-offset-gt-lg-35, [dir=rtl] .layout-margin .offset-gt-lg-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-gt-lg-40, .flex-offset-gt-lg-40, .layout-margin .flex-offset-gt-lg-40, .layout-margin .offset-gt-lg-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-gt-lg-40, [dir=rtl] .flex-offset-gt-lg-40, [dir=rtl] .layout-margin .flex-offset-gt-lg-40, [dir=rtl] .layout-margin .offset-gt-lg-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-gt-lg-45, .flex-offset-gt-lg-45, .layout-margin .flex-offset-gt-lg-45, .layout-margin .offset-gt-lg-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-gt-lg-45, [dir=rtl] .flex-offset-gt-lg-45, [dir=rtl] .layout-margin .flex-offset-gt-lg-45, [dir=rtl] .layout-margin .offset-gt-lg-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-gt-lg-50, .flex-offset-gt-lg-50, .layout-margin .flex-offset-gt-lg-50, .layout-margin .offset-gt-lg-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-gt-lg-50, [dir=rtl] .flex-offset-gt-lg-50, [dir=rtl] .layout-margin .flex-offset-gt-lg-50, [dir=rtl] .layout-margin .offset-gt-lg-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-gt-lg-55, .flex-offset-gt-lg-55, .layout-margin .flex-offset-gt-lg-55, .layout-margin .offset-gt-lg-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-gt-lg-55, [dir=rtl] .flex-offset-gt-lg-55, [dir=rtl] .layout-margin .flex-offset-gt-lg-55, [dir=rtl] .layout-margin .offset-gt-lg-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-gt-lg-60, .flex-offset-gt-lg-60, .layout-margin .flex-offset-gt-lg-60, .layout-margin .offset-gt-lg-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-gt-lg-60, [dir=rtl] .flex-offset-gt-lg-60, [dir=rtl] .layout-margin .flex-offset-gt-lg-60, [dir=rtl] .layout-margin .offset-gt-lg-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-gt-lg-65, .flex-offset-gt-lg-65, .layout-margin .flex-offset-gt-lg-65, .layout-margin .offset-gt-lg-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-gt-lg-65, [dir=rtl] .flex-offset-gt-lg-65, [dir=rtl] .layout-margin .flex-offset-gt-lg-65, [dir=rtl] .layout-margin .offset-gt-lg-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-gt-lg-70, .flex-offset-gt-lg-70, .layout-margin .flex-offset-gt-lg-70, .layout-margin .offset-gt-lg-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-gt-lg-70, [dir=rtl] .flex-offset-gt-lg-70, [dir=rtl] .layout-margin .flex-offset-gt-lg-70, [dir=rtl] .layout-margin .offset-gt-lg-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-gt-lg-75, .flex-offset-gt-lg-75, .layout-margin .flex-offset-gt-lg-75, .layout-margin .offset-gt-lg-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-gt-lg-75, [dir=rtl] .flex-offset-gt-lg-75, [dir=rtl] .layout-margin .flex-offset-gt-lg-75, [dir=rtl] .layout-margin .offset-gt-lg-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-gt-lg-80, .flex-offset-gt-lg-80, .layout-margin .flex-offset-gt-lg-80, .layout-margin .offset-gt-lg-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-gt-lg-80, [dir=rtl] .flex-offset-gt-lg-80, [dir=rtl] .layout-margin .flex-offset-gt-lg-80, [dir=rtl] .layout-margin .offset-gt-lg-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-gt-lg-85, .flex-offset-gt-lg-85, .layout-margin .flex-offset-gt-lg-85, .layout-margin .offset-gt-lg-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-gt-lg-85, [dir=rtl] .flex-offset-gt-lg-85, [dir=rtl] .layout-margin .flex-offset-gt-lg-85, [dir=rtl] .layout-margin .offset-gt-lg-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-gt-lg-90, .flex-offset-gt-lg-90, .layout-margin .flex-offset-gt-lg-90, .layout-margin .offset-gt-lg-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-gt-lg-90, [dir=rtl] .flex-offset-gt-lg-90, [dir=rtl] .layout-margin .flex-offset-gt-lg-90, [dir=rtl] .layout-margin .offset-gt-lg-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-gt-lg-95, .flex-offset-gt-lg-95, .layout-margin .flex-offset-gt-lg-95, .layout-margin .offset-gt-lg-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-gt-lg-95, [dir=rtl] .flex-offset-gt-lg-95, [dir=rtl] .layout-margin .flex-offset-gt-lg-95, [dir=rtl] .layout-margin .offset-gt-lg-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-gt-lg-33, .flex-offset-gt-lg-33, .layout-margin .flex-offset-gt-lg-33, .layout-margin .offset-gt-lg-33 {
    margin-left: 33.3333333333%;
  }

  .offset-gt-lg-66, .flex-offset-gt-lg-66, .layout-margin .flex-offset-gt-lg-66, .layout-margin .offset-gt-lg-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-gt-lg-66, [dir=rtl] .flex-offset-gt-lg-66, [dir=rtl] .layout-margin .flex-offset-gt-lg-66, [dir=rtl] .layout-margin .offset-gt-lg-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-gt-lg,
.layout-align-gt-lg-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-gt-lg-start,
.layout-align-gt-lg-start-start,
.layout-align-gt-lg-start-center,
.layout-align-gt-lg-start-end,
.layout-align-gt-lg-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-gt-lg-center,
.layout-align-gt-lg-center-start,
.layout-align-gt-lg-center-center,
.layout-align-gt-lg-center-end,
.layout-align-gt-lg-center-stretch {
    justify-content: center;
  }

  .layout-align-gt-lg-end,
.layout-align-gt-lg-end-start,
.layout-align-gt-lg-end-center,
.layout-align-gt-lg-end-end,
.layout-align-gt-lg-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-gt-lg-space-around,
.layout-align-gt-lg-space-around-center,
.layout-align-gt-lg-space-around-start,
.layout-align-gt-lg-space-around-end,
.layout-align-gt-lg-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-gt-lg-space-between,
.layout-align-gt-lg-space-between-center,
.layout-align-gt-lg-space-between-start,
.layout-align-gt-lg-space-between-end,
.layout-align-gt-lg-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-gt-lg-start-start,
.layout-align-gt-lg-center-start,
.layout-align-gt-lg-end-start,
.layout-align-gt-lg-space-between-start,
.layout-align-gt-lg-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-gt-lg-start-center,
.layout-align-gt-lg-center-center,
.layout-align-gt-lg-end-center,
.layout-align-gt-lg-space-between-center,
.layout-align-gt-lg-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-gt-lg-start-center > *,
.layout-align-gt-lg-center-center > *,
.layout-align-gt-lg-end-center > *,
.layout-align-gt-lg-space-between-center > *,
.layout-align-gt-lg-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-gt-lg-start-end,
.layout-align-gt-lg-center-end,
.layout-align-gt-lg-end-end,
.layout-align-gt-lg-space-between-end,
.layout-align-gt-lg-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-gt-lg-start-stretch,
.layout-align-gt-lg-center-stretch,
.layout-align-gt-lg-end-stretch,
.layout-align-gt-lg-space-between-stretch,
.layout-align-gt-lg-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-gt-lg {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-gt-lg-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-gt-lg-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-lg-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-lg-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-lg-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-gt-lg-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-gt-lg-column > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-gt-lg-column > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-gt-lg-row > .flex-gt-lg-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-lg-row > .flex-gt-lg-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-gt-lg-row > .flex {
    min-width: 0;
  }

  .layout-gt-lg-column > .flex-gt-lg-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-gt-lg-column > .flex-gt-lg-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-gt-lg-column > .flex {
    min-height: 0;
  }

  .layout-gt-lg, .layout-gt-lg-column, .layout-gt-lg-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-gt-lg-column {
    flex-direction: column;
  }

  .layout-gt-lg-row {
    flex-direction: row;
  }

  .flex-order-xl--20 {
    order: -20;
  }

  .flex-order-xl--19 {
    order: -19;
  }

  .flex-order-xl--18 {
    order: -18;
  }

  .flex-order-xl--17 {
    order: -17;
  }

  .flex-order-xl--16 {
    order: -16;
  }

  .flex-order-xl--15 {
    order: -15;
  }

  .flex-order-xl--14 {
    order: -14;
  }

  .flex-order-xl--13 {
    order: -13;
  }

  .flex-order-xl--12 {
    order: -12;
  }

  .flex-order-xl--11 {
    order: -11;
  }

  .flex-order-xl--10 {
    order: -10;
  }

  .flex-order-xl--9 {
    order: -9;
  }

  .flex-order-xl--8 {
    order: -8;
  }

  .flex-order-xl--7 {
    order: -7;
  }

  .flex-order-xl--6 {
    order: -6;
  }

  .flex-order-xl--5 {
    order: -5;
  }

  .flex-order-xl--4 {
    order: -4;
  }

  .flex-order-xl--3 {
    order: -3;
  }

  .flex-order-xl--2 {
    order: -2;
  }

  .flex-order-xl--1 {
    order: -1;
  }

  .flex-order-xl-0 {
    order: 0;
  }

  .flex-order-xl-1 {
    order: 1;
  }

  .flex-order-xl-2 {
    order: 2;
  }

  .flex-order-xl-3 {
    order: 3;
  }

  .flex-order-xl-4 {
    order: 4;
  }

  .flex-order-xl-5 {
    order: 5;
  }

  .flex-order-xl-6 {
    order: 6;
  }

  .flex-order-xl-7 {
    order: 7;
  }

  .flex-order-xl-8 {
    order: 8;
  }

  .flex-order-xl-9 {
    order: 9;
  }

  .flex-order-xl-10 {
    order: 10;
  }

  .flex-order-xl-11 {
    order: 11;
  }

  .flex-order-xl-12 {
    order: 12;
  }

  .flex-order-xl-13 {
    order: 13;
  }

  .flex-order-xl-14 {
    order: 14;
  }

  .flex-order-xl-15 {
    order: 15;
  }

  .flex-order-xl-16 {
    order: 16;
  }

  .flex-order-xl-17 {
    order: 17;
  }

  .flex-order-xl-18 {
    order: 18;
  }

  .flex-order-xl-19 {
    order: 19;
  }

  .flex-order-xl-20 {
    order: 20;
  }

  .offset-xl-0, .flex-offset-xl-0, .layout-margin .flex-offset-xl-0, .layout-margin .offset-xl-0 {
    margin-left: 0;
  }
  [dir=rtl] .offset-xl-0, [dir=rtl] .flex-offset-xl-0, [dir=rtl] .layout-margin .flex-offset-xl-0, [dir=rtl] .layout-margin .offset-xl-0 {
    margin-left: auto;
    margin-right: 0;
  }

  .offset-xl-5, .flex-offset-xl-5, .layout-margin .flex-offset-xl-5, .layout-margin .offset-xl-5 {
    margin-left: 5%;
  }
  [dir=rtl] .offset-xl-5, [dir=rtl] .flex-offset-xl-5, [dir=rtl] .layout-margin .flex-offset-xl-5, [dir=rtl] .layout-margin .offset-xl-5 {
    margin-left: auto;
    margin-right: 5%;
  }

  .offset-xl-10, .flex-offset-xl-10, .layout-margin .flex-offset-xl-10, .layout-margin .offset-xl-10 {
    margin-left: 10%;
  }
  [dir=rtl] .offset-xl-10, [dir=rtl] .flex-offset-xl-10, [dir=rtl] .layout-margin .flex-offset-xl-10, [dir=rtl] .layout-margin .offset-xl-10 {
    margin-left: auto;
    margin-right: 10%;
  }

  .offset-xl-15, .flex-offset-xl-15, .layout-margin .flex-offset-xl-15, .layout-margin .offset-xl-15 {
    margin-left: 15%;
  }
  [dir=rtl] .offset-xl-15, [dir=rtl] .flex-offset-xl-15, [dir=rtl] .layout-margin .flex-offset-xl-15, [dir=rtl] .layout-margin .offset-xl-15 {
    margin-left: auto;
    margin-right: 15%;
  }

  .offset-xl-20, .flex-offset-xl-20, .layout-margin .flex-offset-xl-20, .layout-margin .offset-xl-20 {
    margin-left: 20%;
  }
  [dir=rtl] .offset-xl-20, [dir=rtl] .flex-offset-xl-20, [dir=rtl] .layout-margin .flex-offset-xl-20, [dir=rtl] .layout-margin .offset-xl-20 {
    margin-left: auto;
    margin-right: 20%;
  }

  .offset-xl-25, .flex-offset-xl-25, .layout-margin .flex-offset-xl-25, .layout-margin .offset-xl-25 {
    margin-left: 25%;
  }
  [dir=rtl] .offset-xl-25, [dir=rtl] .flex-offset-xl-25, [dir=rtl] .layout-margin .flex-offset-xl-25, [dir=rtl] .layout-margin .offset-xl-25 {
    margin-left: auto;
    margin-right: 25%;
  }

  .offset-xl-30, .flex-offset-xl-30, .layout-margin .flex-offset-xl-30, .layout-margin .offset-xl-30 {
    margin-left: 30%;
  }
  [dir=rtl] .offset-xl-30, [dir=rtl] .flex-offset-xl-30, [dir=rtl] .layout-margin .flex-offset-xl-30, [dir=rtl] .layout-margin .offset-xl-30 {
    margin-left: auto;
    margin-right: 30%;
  }

  .offset-xl-35, .flex-offset-xl-35, .layout-margin .flex-offset-xl-35, .layout-margin .offset-xl-35 {
    margin-left: 35%;
  }
  [dir=rtl] .offset-xl-35, [dir=rtl] .flex-offset-xl-35, [dir=rtl] .layout-margin .flex-offset-xl-35, [dir=rtl] .layout-margin .offset-xl-35 {
    margin-left: auto;
    margin-right: 35%;
  }

  .offset-xl-40, .flex-offset-xl-40, .layout-margin .flex-offset-xl-40, .layout-margin .offset-xl-40 {
    margin-left: 40%;
  }
  [dir=rtl] .offset-xl-40, [dir=rtl] .flex-offset-xl-40, [dir=rtl] .layout-margin .flex-offset-xl-40, [dir=rtl] .layout-margin .offset-xl-40 {
    margin-left: auto;
    margin-right: 40%;
  }

  .offset-xl-45, .flex-offset-xl-45, .layout-margin .flex-offset-xl-45, .layout-margin .offset-xl-45 {
    margin-left: 45%;
  }
  [dir=rtl] .offset-xl-45, [dir=rtl] .flex-offset-xl-45, [dir=rtl] .layout-margin .flex-offset-xl-45, [dir=rtl] .layout-margin .offset-xl-45 {
    margin-left: auto;
    margin-right: 45%;
  }

  .offset-xl-50, .flex-offset-xl-50, .layout-margin .flex-offset-xl-50, .layout-margin .offset-xl-50 {
    margin-left: 50%;
  }
  [dir=rtl] .offset-xl-50, [dir=rtl] .flex-offset-xl-50, [dir=rtl] .layout-margin .flex-offset-xl-50, [dir=rtl] .layout-margin .offset-xl-50 {
    margin-left: auto;
    margin-right: 50%;
  }

  .offset-xl-55, .flex-offset-xl-55, .layout-margin .flex-offset-xl-55, .layout-margin .offset-xl-55 {
    margin-left: 55%;
  }
  [dir=rtl] .offset-xl-55, [dir=rtl] .flex-offset-xl-55, [dir=rtl] .layout-margin .flex-offset-xl-55, [dir=rtl] .layout-margin .offset-xl-55 {
    margin-left: auto;
    margin-right: 55%;
  }

  .offset-xl-60, .flex-offset-xl-60, .layout-margin .flex-offset-xl-60, .layout-margin .offset-xl-60 {
    margin-left: 60%;
  }
  [dir=rtl] .offset-xl-60, [dir=rtl] .flex-offset-xl-60, [dir=rtl] .layout-margin .flex-offset-xl-60, [dir=rtl] .layout-margin .offset-xl-60 {
    margin-left: auto;
    margin-right: 60%;
  }

  .offset-xl-65, .flex-offset-xl-65, .layout-margin .flex-offset-xl-65, .layout-margin .offset-xl-65 {
    margin-left: 65%;
  }
  [dir=rtl] .offset-xl-65, [dir=rtl] .flex-offset-xl-65, [dir=rtl] .layout-margin .flex-offset-xl-65, [dir=rtl] .layout-margin .offset-xl-65 {
    margin-left: auto;
    margin-right: 65%;
  }

  .offset-xl-70, .flex-offset-xl-70, .layout-margin .flex-offset-xl-70, .layout-margin .offset-xl-70 {
    margin-left: 70%;
  }
  [dir=rtl] .offset-xl-70, [dir=rtl] .flex-offset-xl-70, [dir=rtl] .layout-margin .flex-offset-xl-70, [dir=rtl] .layout-margin .offset-xl-70 {
    margin-left: auto;
    margin-right: 70%;
  }

  .offset-xl-75, .flex-offset-xl-75, .layout-margin .flex-offset-xl-75, .layout-margin .offset-xl-75 {
    margin-left: 75%;
  }
  [dir=rtl] .offset-xl-75, [dir=rtl] .flex-offset-xl-75, [dir=rtl] .layout-margin .flex-offset-xl-75, [dir=rtl] .layout-margin .offset-xl-75 {
    margin-left: auto;
    margin-right: 75%;
  }

  .offset-xl-80, .flex-offset-xl-80, .layout-margin .flex-offset-xl-80, .layout-margin .offset-xl-80 {
    margin-left: 80%;
  }
  [dir=rtl] .offset-xl-80, [dir=rtl] .flex-offset-xl-80, [dir=rtl] .layout-margin .flex-offset-xl-80, [dir=rtl] .layout-margin .offset-xl-80 {
    margin-left: auto;
    margin-right: 80%;
  }

  .offset-xl-85, .flex-offset-xl-85, .layout-margin .flex-offset-xl-85, .layout-margin .offset-xl-85 {
    margin-left: 85%;
  }
  [dir=rtl] .offset-xl-85, [dir=rtl] .flex-offset-xl-85, [dir=rtl] .layout-margin .flex-offset-xl-85, [dir=rtl] .layout-margin .offset-xl-85 {
    margin-left: auto;
    margin-right: 85%;
  }

  .offset-xl-90, .flex-offset-xl-90, .layout-margin .flex-offset-xl-90, .layout-margin .offset-xl-90 {
    margin-left: 90%;
  }
  [dir=rtl] .offset-xl-90, [dir=rtl] .flex-offset-xl-90, [dir=rtl] .layout-margin .flex-offset-xl-90, [dir=rtl] .layout-margin .offset-xl-90 {
    margin-left: auto;
    margin-right: 90%;
  }

  .offset-xl-95, .flex-offset-xl-95, .layout-margin .flex-offset-xl-95, .layout-margin .offset-xl-95 {
    margin-left: 95%;
  }
  [dir=rtl] .offset-xl-95, [dir=rtl] .flex-offset-xl-95, [dir=rtl] .layout-margin .flex-offset-xl-95, [dir=rtl] .layout-margin .offset-xl-95 {
    margin-left: auto;
    margin-right: 95%;
  }

  .offset-xl-33, .flex-offset-xl-33, .layout-margin .flex-offset-xl-33, .layout-margin .offset-xl-33 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-66, .flex-offset-xl-66, .layout-margin .flex-offset-xl-66, .layout-margin .offset-xl-66 {
    margin-left: 66.6666666667%;
  }
  [dir=rtl] .offset-xl-66, [dir=rtl] .flex-offset-xl-66, [dir=rtl] .layout-margin .flex-offset-xl-66, [dir=rtl] .layout-margin .offset-xl-66 {
    margin-left: auto;
    margin-right: 66.6666666667%;
  }

  .layout-align-xl,
.layout-align-xl-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  .layout-align-xl-start,
.layout-align-xl-start-start,
.layout-align-xl-start-center,
.layout-align-xl-start-end,
.layout-align-xl-start-stretch {
    justify-content: flex-start;
  }

  .layout-align-xl-center,
.layout-align-xl-center-start,
.layout-align-xl-center-center,
.layout-align-xl-center-end,
.layout-align-xl-center-stretch {
    justify-content: center;
  }

  .layout-align-xl-end,
.layout-align-xl-end-start,
.layout-align-xl-end-center,
.layout-align-xl-end-end,
.layout-align-xl-end-stretch {
    justify-content: flex-end;
  }

  .layout-align-xl-space-around,
.layout-align-xl-space-around-center,
.layout-align-xl-space-around-start,
.layout-align-xl-space-around-end,
.layout-align-xl-space-around-stretch {
    justify-content: space-around;
  }

  .layout-align-xl-space-between,
.layout-align-xl-space-between-center,
.layout-align-xl-space-between-start,
.layout-align-xl-space-between-end,
.layout-align-xl-space-between-stretch {
    justify-content: space-between;
  }

  .layout-align-xl-start-start,
.layout-align-xl-center-start,
.layout-align-xl-end-start,
.layout-align-xl-space-between-start,
.layout-align-xl-space-around-start {
    align-items: flex-start;
    align-content: flex-start;
  }

  .layout-align-xl-start-center,
.layout-align-xl-center-center,
.layout-align-xl-end-center,
.layout-align-xl-space-between-center,
.layout-align-xl-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%;
  }

  .layout-align-xl-start-center > *,
.layout-align-xl-center-center > *,
.layout-align-xl-end-center > *,
.layout-align-xl-space-between-center > *,
.layout-align-xl-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .layout-align-xl-start-end,
.layout-align-xl-center-end,
.layout-align-xl-end-end,
.layout-align-xl-space-between-end,
.layout-align-xl-space-around-end {
    align-items: flex-end;
    align-content: flex-end;
  }

  .layout-align-xl-start-stretch,
.layout-align-xl-center-stretch,
.layout-align-xl-end-stretch,
.layout-align-xl-space-between-stretch,
.layout-align-xl-space-around-stretch {
    align-items: stretch;
    align-content: stretch;
  }

  .flex-xl {
    flex: 1;
    box-sizing: border-box;
  }

  .flex-xl-grow {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .flex-xl-initial {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-xl-auto {
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flex-xl-none {
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .flex-xl-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box;
  }

  .flex-xl-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-column > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .layout-xl-column > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0;
  }

  .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box;
  }

  .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box;
  }

  .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box;
  }

  .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box;
  }

  .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box;
  }

  .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box;
  }

  .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box;
  }

  .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box;
  }

  .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box;
  }

  .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box;
  }

  .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box;
  }

  .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box;
  }

  .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box;
  }

  .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box;
  }

  .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box;
  }

  .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box;
  }

  .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box;
  }

  .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box;
  }

  .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box;
  }

  .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-xl-column > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }

  .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }

  .layout-xl-row > .flex-xl-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-xl-row > .flex-xl-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .layout-xl-row > .flex {
    min-width: 0;
  }

  .layout-xl-column > .flex-xl-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box;
  }
  .layout-xl-column > .flex-xl-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box;
  }
  .layout-xl-column > .flex {
    min-height: 0;
  }

  .layout-xl, .layout-xl-column, .layout-xl-row {
    box-sizing: border-box;
    display: flex;
  }

  .layout-xl-column {
    flex-direction: column;
  }

  .layout-xl-row {
    flex-direction: row;
  }

  .hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show), .hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show), .hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show), .hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show), .hide-gt-lg:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show) {
    display: none;
  }

  .hide-xl:not(.show-xl):not(.show-gt-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show) {
    display: none;
  }
}
@media print {
  .hide-print:not(.show-print):not(.show) {
    display: none !important;
  }
}