/* 
    Document   : tsSite
    Created on : Jun 11, 2013, 12:01:36 PM
    Author     : bryan
    Description:
        This is a catch-all for custom css for the therapy-science site.
				
*/

:root {
  --primary-color: #7eae7c;
  --primary-color-light: #c6dbc5;
  --primary-color-lighter: #ddeadd;
  --primary-color-lightest: #edf4ed;
  --primary-color-dark: #949e94;
  --light-color: #c6dbc5;
  --ghost-color: #f4f8f4;
  --accent-color: #61324c;
  --light-accent-color: #ae7c98;
  --ghost-accent-color: #f8f4f8;
  --disabled-color: #f4f4f4;
  --text-color: #686868;
  --text-color-light: #eeeeee;
}

.primary-color {
  color: #7eae7c;
  color: var(--primary-color);
}

.primary-color-light {
  color: #c6dbc5;
  color: var(--primary-color-light);
}

.primary-color-lighter {
  color: #ddeadd;
  color: var(--primary-color-lighter);
}

.primary-color-lightest {
  color: #edf4ed;
  color: var(--primary-color-lightest);
}

.accent-color {
  color: #61324c;
  color: var(--accent-color);
}

.ghost-color {
  color: #f4f8f4;
  color: var(--ghost-color);
}

/*****************************************************************
	General elements
*****************************************************************/
body {
  font-family: arial, verdana, sans-serif;
}

body {
  color: #6b6b6b;
  word-wrap: break-word;
  line-height: 1.2;
  font-size: 15px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  /* -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s; */
  transition: all 0.2s;
}

a:hover,
a:focus {
  color: #1f405f;
  text-decoration: none;
}

a.boldLink {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 100;
  color: var(--primary-color);
  font-family: arial, verdana, sans-serif;
}

h4,
h5 {
  margin-top: 20px;
}

hr {
  display: block;
  height: 1px;
  background: transparent;
  width: 100%;
  border: none;
  border-top: solid 1px #aaa;
}

input:not([type="radio"]):not([type="checkbox"]):focus {
  outline: 0;
  box-shadow: 0 0 20px var(--primary-color);
}

label {
  font-weight: normal;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  min-height: 25px;
}

/* ol:not(.nav) ol:not(.nav), 
ol:not(.nav) ul:not(.nav), 
ul:not(.nav) ul:not(.nav), 
ul:not(.nav) ol:not(.nav), 
ul:not(.nav):not(.list-group):not(.clientList):not(.caseList), 
ol:not(.nav), ol:not(.list-group), ol:not(.clientList), ol:not(.caseList) {
	margin-top:20px;
	margin-bottom:30px;
} */

ol.postList10 li,
ul.postList10 li {
  margin-top: 10px;
}

ol.postList20 li,
ul.postList20 li {
  margin-top: 20px;
}

textarea {
  border: 1px solid black;
  padding: 2px 5px;
  overflow: auto;
  padding-right: 5px;
  /* width: 860px; */
}

textarea:focus {
  outline: 0;
  box-shadow: 0 0 20px var(--primary-color);
}

textarea::selection {
  background-color: var(--primary-color);
  /* color: var(--text-color-light); */
}

/***********************************************************

Tab css for jqueryUI tabs
http://keith-wood.name/uitabs.html#tabs-icons

***********************************************************/

.data-markup-tabs {
  padding: 0px;
  background: none;
  border-width: 0px;
}
.data-markup-tabs .ui-tabs-nav {
  padding-left: 0px;
  background: transparent;
  border-width: 0px 0px 1px 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
.data-markup-tabs .ui-tabs-panel {
  border-width: 0px 1px 1px 1px;
}

/* minimal tabs */
/* .data-markup-tabs { 
    background: transparent; 
    border: none; 
} 
.data-markup-tabs .ui-widget-header { 
    background: transparent; 
    border: none; 
    border-bottom: 1px solid #c0c0c0; 
    -moz-border-radius: 0px; 
    -webkit-border-radius: 0px; 
    border-radius: 0px; 
} 
.data-markup-tabs .ui-tabs-nav .ui-state-default { 
    background: transparent; 
    border: none; 
} 
.data-markup-tabs .ui-tabs-nav .ui-state-active { 
    background: transparent url(images/uiTabsArrow2.png) no-repeat bottom center; 
    border: none; 
} 
.data-markup-tabs .ui-tabs-nav .ui-state-default a { 
    color: #c0c0c0; 
} 
.data-markup-tabs .ui-tabs-nav .ui-state-active a { 
    color:var(--primary-color); 
} */

/*****************************************************************
	Some custom color and styling classes
*****************************************************************/
.blue {
  color: var(--primary-color);
}

.callout {
  margin: 30px 0px 30px 0px;
}

.calloutLabel {
  display: inline-block;
  vertical-align: top;
  width: 13%;
  text-align: right;
  font-style: italic;
  font-weight: bold;
  margin-right: 40px;
}

.calloutContent {
  display: inline-block;
  width: 66%;
}

.centerLabelBelow,
h2.centerLabelBelow h3.centerLabelBelow,
h4.centerLabelBelow,
h5.centerLabelBelow,
h6.centerLabelBelow,
.entry-content h2.centerLabelBelow,
.entry-content h3.centerLabelBelow,
.entry-content h4.centerLabelBelow,
.entry-content h5.centerLabelBelow,
.entry-content h6.centerLabelBelow {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.copyright {
  margin-top: 0px;
  float: right;
  text-align: right;
}

.darkblue {
  color: #1f405f;
}

.graphLabel {
  font-weight: bold;
}

.lightblue {
  color: #abc4db;
}

.underline {
  text-decoration: underline;
}

.wellTitle {
  margin-top: 0px;
  font-weight: bold;
}

.well-drama .wellTitle {
  margin-top: 0px;
  font-weight: bold;
  color: var(--accent-color);
}

.borderTable {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid black;
  padding: 3px;
}

.printOnly {
  display: none;
}

.opacity10 {
  opacity: 1;
}

.opacity5 {
  opacity: 0.5;
}

.opacity2 {
  opacity: 0.2;
}

.opacity0 {
  opacity: 0;
}

/* custom post element class helpers */
div.quoteStyle1 {
  margin: 30px 100px 40px 100px;
  border-left: 5px solid var(--primary-color);
  padding: 10px 20px;
}

.quoteText {
  font-style: italic;
  margin-bottom: 20px;
}

.quoteText::before,
.quoteText::after {
  content: '"';
}

.quoteSource {
  float: right;
  font-weight: 600;
}

.quoteSource::before {
  content: "- ";
}

img.helpPanel {
  max-height: 400px;
  max-width: 800px;
}

h3.title {
  font-size: 24px;
  margin-right: 3px;
}

.hoverDivA:hover {
  border: 3px solid var(--primary-color);
}

/*****************************************************************
	WordPress elements, and classes
*****************************************************************/
#colophon {
  /* background-color: var(--primary-color); */
  padding: 10px 0;
  margin-top: 20px;
}

h1.post-title {
  font-size: 32px;
}

div.entry-content {
  font-family: arial, verdana, sans-serif;
  font-size: 15px;
  color: #000000;
}

.entry-content {
  margin: 20px 20px 40px 30px;
}

.post-title {
  font-size: 32px;
}

/*****************************************************************
	Page element modifications	
*****************************************************************/

article img {
  max-width: 100%;
}

.entry-meta .fa {
  font-size: 16px;
  margin-right: 3px;
  color: var(--primary-color);
}

#tabs ul li a:focus,
#tabs ul li:focus {
  outline: none;
}

/* Minimal tabs */

.tabs-min {
  background: transparent;
  border: none;
}
.tabs-min .ui-widget-header {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c0c0c0;
  /* -moz-border-radius: 0px; 
    -webkit-border-radius: 0px;  */
  border-radius: 0px;
}
.tabs-min .ui-tabs-nav .ui-state-default {
  background: transparent;
  border: none;
}
.tabs-min .ui-tabs-nav .ui-state-active {
  background: transparent url(images/uiTabsArrow.png) no-repeat bottom center;
  border: none;
}
.tabs-min .ui-tabs-nav .ui-state-default a {
  color: #c0c0c0;
}
.tabs-min .ui-tabs-nav .ui-state-active a {
  color: #1f497d;
}

/* no header tabs */
#tabs {
  padding: 0px;
  background: none;
  border-width: 0px;
}
#tabs .ui-tabs-nav {
  padding-left: 0px;
  background: transparent;
  border-width: 0px 0px 1px 0px;
  /* -moz-border-radius: 0px; 
    -webkit-border-radius: 0px;  */
  border-radius: 0px;
}
#tabs .ui-tabs-panel {
  /*background: #ffffff url(themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png) repeat-x scroll 50% top;*/
  border-width: 0px 1px 1px 1px;
}

.overlineContextMenu {
  border-top-style: solid;
  border-top-width: 1px;
  border-radius: 0;
}
.underlineContextMenu {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-radius: 0;
}

.pointerInvisible {
  pointer-events: none;
}

/********************************************************************************************************************
	Plugins
	
*********************************************************************************************************************/

/*********************************************************
	WP GLossary 
********************************************************/
h1 .wp-glossary a {
  color: var(--primary-color);
}

h2 .wp-glossary a {
  color: var(--primary-color);
}

h3 .wp-glossary a {
  color: var(--primary-color);
}

h4 .wp-glossary a {
  color: var(--primary-color);
}

h5 .wp-glossary a {
  color: var(--primary-color);
}

h6 .wp-glossary a {
  color: var(--primary-color);
}

.wp-glossary a {
  /*background: rgba(0,0,0,0.1);*/
  background: inherit;
  cursor: pointer;
  display: inline-block;
  /*font-weight: 700;*/
  font-weight: normal;
  /*padding: 0 10px;*/
  padding: 0px;
  /*border:0px !important;*/
  border-bottom: dotted 2px !important;
  border-color: #444444;
  color: black;
}

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

/**********************************************************
	BB Press
***********************************************************/

#bbp_search {
  margin-right: 10px;
}

.bbp-reply-revision-log {
  display: none !important;
}

.bbp-topic-revision-log {
  display: none !important;
}

.bbp-reply-content {
  font-size: 14px;
}

/**********************************************************
	pmPro
***********************************************************/
#hipaaRemarks {
  margin: 10px;
}

#pmpro_submit_span,
#pmpro_paypalexpress_checkout {
  margin-top: 40px;
}

/**********************************************************
	Ultimate Member
***********************************************************/
.um-search-submit {
  width: 30%;
}

/* Link colors */
.um a.um-link,
.um .um-tip:hover,
.um .um-field-radio.active:not(.um-field-radio-state-disabled) i,
.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i,
.um .um-member-name a:hover,
.um .um-member-more a:hover,
.um .um-member-less a:hover,
.um .um-members-pagi a:hover,
.um .um-cover-add:hover,
.um .um-profile-subnav a.active,
.um .um-item-meta a,
.um-account-name a:hover,
.um-account-nav a.current,
.um-account-side li a.current span.um-account-icon,
.um-account-side li a.current:hover span.um-account-icon,
.um-dropdown li a:hover,
i.um-active-color,
span.um-active-color {
  color: var(--primary-color) !important;
}

.um a.um-link:hover,
.um a.um-link-hvr:hover {
  color: var(--primary-color-dark) !important;
}

/* Button colors */
.um .um-field-group-head,
.picker__box,
.picker__nav--prev:hover,
.picker__nav--next:hover,
.um .um-members-pagi span.current,
.um .um-members-pagi span.current:hover,
.um .um-profile-nav-item.active a,
.um .um-profile-nav-item.active a:hover,
.upload,
.um-modal-header,
.um-modal-btn,
.um-modal-btn.disabled,
.um-modal-btn.disabled:hover,
div.uimob800 .um-account-side li a.current,
div.uimob800 .um-account-side li a.current:hover,
.um .um-button,
.um a.um-button,
.um a.um-button.um-disabled:hover,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:active,
.um input[type="submit"].um-button,
.um input[type="submit"].um-button:focus,
.um input[type="submit"]:disabled:hover {
  background: var(--primary-color) !important;
}

.um .um-field-group-head:hover,
.picker__footer,
.picker__header,
.picker__day--infocus:hover,
.picker__day--outfocus:hover,
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted,
.picker__list-item:hover,
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted,
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected,
.um .um-button:hover,
.um a.um-button:hover,
.um input[type="submit"].um-button:hover {
  background: var(--primary-color-dark) !important;
}

/* Button alt colors */
.um .um-button.um-alt,
.um input[type="submit"].um-button.um-alt {
  background: #eeeeee !important;
}

.um .um-button.um-alt:hover,
.um input[type="submit"].um-button.um-alt:hover {
  background: #e5e5e5 !important;
}

/********************************************************************************************************************
	Bootstrap modifications
	
*********************************************************************************************************************/

.btn-primary,
.label-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover,
.label-primary[href]:hover,
.label-primary[href]:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
#image-navigation .nav-previous a:hover,
#image-navigation .nav-next a:hover {
  background-color: #1f405f;
  border-color: #1f405f;
}

/********************************************************
		Bootstrap - Panel
*********************************************************/

.panel-body {
  padding-left: 30px;
  padding-right: 30px;
}

textarea:disabled,
input:not([type]):disabled,
input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="time"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled {
  background-color: #f4f4f4;
}

/* Bootstrap accordian items */

.panel-title > a {
  display: block;
  position: relative;
}
.panel-title > a:before {
  content: "\f078"; /* fa-chevron-down */
  font-family: FontAwesome;
  position: absolute;
  right: 0;
}
.panel-title > a[aria-expanded="true"]:before {
  content: "\f077"; /* fa-chevron-up */
}

/* bootstrap block quote classes */

blockquote.left {
  font-size: inherit;
  margin: 30px 30px 30px 0px;
  border-right: 5px solid var(--primary-color);
  border-left: 0px;
}

blockquote.right {
  font-size: inherit;
  margin: 30px 0px 30px 30px;
  border-right: 0px;
  border-left: 5px solid var(--primary-color);
}

blockquote {
  border-left: 5px solid var(--primary-color);
}

/**********************************************************
		Bootstrap Carousel
 ************************************************************/

/* Get rid of the shading on the left and right edges of the carousel images */
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}

.carousel-caption {
  text-shadow: none !important;
}

.carousel {
  margin-bottom: 0px;
}

.carousel-caption h4 {
  background: var(--primary-color);
  background: rgba(46, 108, 167, 0.7);
  padding: 15px;
  color: #fff;
  max-width: 75%;
  margin-bottom: 4px;
}

.carousel-caption p {
  background: #555;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  max-width: 65%;
}

/***************************************************
      Custom well
  *****************************************************/
.well-blue {
  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,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 120%;
  background: var(--primary-color);
  background: rgba(46, 108, 167, 0.7);
  color: #ccc;
  text-align: center;
}

.well-markup {
  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,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  font-family: Consolas, "Courier new", courier;
}

.well-note {
  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,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  font-style: italic;
  background: var(--primary-color);
  /*background: rgba(46, 108, 167,0.7);*/
  color: #ffffff;
  line-height: 1.4em;
}

.well-note-right {
  min-height: 20px;
  padding: 19px;
  /*background-color: #f5f5f5;*/
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  /* -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  font-style: italic;
  background: var(--primary-color);
  /*background: rgba(46, 108, 167,0.7);*/
  color: #ffffff;

  float: right;
  margin: 20px 30px;
  line-height: 1.4em;
}

.well-note-left {
  min-height: 20px;
  padding: 19px;
  /*background-color: #f5f5f5;*/
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  /* -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  font-style: italic;
  background: var(--primary-color);
  /*background: rgba(46, 108, 167,0.7);*/
  color: #ffffff;

  float: left;
  margin: 20px 30px;
  line-height: 1.4em;
}

.well-case-study {
  min-height: 20px;
  padding: 19px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #000000;
  border-radius: 4px;
  /* -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  color: var(--text-color-dark);
}

div.well-case-study hr {
  border: none;
  height: 1px;
  /* Set the hr color */
  color: #aaaaaa; /* old IE */
  background-color: #aaaaaa; /* Modern Browsers */
}

.well-drama {
  min-height: 20px;
  padding: 19px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: var(--primary-color-light);
  border: 1px solid var(--accent-color);
  color: var(--text-color);
  border-radius: 4px;
  /* -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

div.well-drama hr {
  border: none;
  height: 1px;
  /* Set the hr color */
  color: var(--accent-color); /* old IE */
  background-color: var(--accent-color); /* Modern Browsers */
}

div.well-case-study h1,
div.well-case-study h2,
div.well-case-study h3,
div.well-case-study h4,
div.well-case-study h5,
div.well-case-study h6,
div.well-case-study .h1,
div.well-case-study .h2,
div.well-case-study .h3,
div.well-case-study .h4,
div.well-case-study .h5,
div.well-case-study .h6 {
  color: #000000; /* old IE */
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}

@media screen {
  .print-only {
    display: none;
  }
}
