/*
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 TABLE OF CONTENTS
 -----------------
 0. Normalize.css
 1. Base Styles
 2. Content Blocks
 3. Common Sections
 - Header
 - Breadcrumbs
 - Footer
 4. Provider Sign Up
 5. My Account
 I. Media Queries
 II. Modifiers
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 FORMATTING GUIDE
 --------------------
 Doctor.com uses a grouped, multi-line css formatting style. This style groups similar rules on a single line.
 The exact order of rules within each line isn't very important, but the order of rule categories (lines) should stay consistent. This makes the code much easier to scan.
 This formatting style can take a little time to get used to, but it provides a nice balance between readability and document length.
 1. [box-model] - display, height, min-height, width, min-width, padding, margin, border
 2. [positioning & flow] - position, top, bottom, left, right, float, z-index, clear
 3. [appearance] - background, box-shadow, outline, border-radius, overflow, list-style
 4. [text formatting] - font, color, letter-spacing, line-break
 5. [miscellaneous] - everything else
 6. [browser hacks] - ie specific rules using *, and other hacks
 Here's an example of css written using this format:
 */
#example-element {
  display: block;
  height: 100px;
  width: 150px;
  margin: 20px 0 20px 0;
  border-top: 1px dashed red;
  float: right;
  clear: left;
  background-color: red;
  border-radius: 3px;
  font-family: "Comic Sans", "Papyrus", sans-serif;
  overflow: hidden;
  cursor: crosshair; }
/*
 In parts of the css where lots of simple and/or similar styles are described, a single-line format can be used. Icon classes, for example:
 .i-20.i-insurance:after				{ background-position: -0px -0px; }
 .i-20.i-insurance-dark:after		{ background-position: -0px -20px; }
 .i-20.i-insurance-white:after		{ background-position: -0px -40px; }
 .i-20.i-dollar:after				{ background-position: -20px -0px; }
 .i-20.i-dollar-dark:after			{ background-position: -20px -20px; }
 .i-20.i-dollar-white:after			{ background-position: -20px -40px; }
 */
/* TOOLS
 --------------------
 CSS Gradients - http://www.colorzilla.com/gradient-editor/
 Transitions & Easing - http://matthewlein.com/ceaser/
 ==========================================================================
 0. NORMALIZE.CSS - v1.1.2 - git.io/normalize
 ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

html, button, input, select, textarea {
  font-family: sans-serif; }

body {
  margin: 0; }

a:focus {
  outline: thin dotted; }

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

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.67em;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

p, pre {
  margin: 0; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -1em; }

sub {
  bottom: -0.25em; }

dl, menu, ol, ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu, ol, ul {
  padding: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

form {
  margin: 0; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px; }

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible; }

button[disabled], html input[disabled] {
  cursor: default; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }
/*
 ==========================================================================
 1. BASE STYLES
 ========================================================================== */
html, button, input, select, textarea {
  color: #465259;
  font-family: Signika, 'Helvetica Neue', Helvetica, Sans-serif; }

body {
  min-width: 1024px;
  background: #e1e1dd;
  font: 14px/1.5 "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 300; }

::-moz-selection {
  background: #3c4951;
  color: white;
  text-shadow: none; }

::selection {
  background: #3c4951;
  color: white;
  text-shadow: none; }

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

h1 {
  font-size: 26px; }

h2 {
  font-size: 20px; }

h3 {
  font-size: 16px; }

a {
  border: 0;
  outline: 0 !important;
  box-shadow: 0 1px 0 #b1e4e4;
  cursor: pointer;
  color: #1f8686;
  text-decoration: none;
  font-family: "Lora", "Times New Roman", Times, Serif;
  font-style: italic;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */ }

a:hover {
  box-shadow: 0 1px 0 #a0d821;
  color: #88b71c; }

p a {
  font-weight: bold; }

a.img-rep {
  box-shadow: none; }

a.a-plain, a.a-plain:hover {
  box-shadow: none; }

p + p {
  margin: 1em 0 0 0; }

img {
  /* Remove space between img and container */
  vertical-align: middle; }

em {
  font-family: "Lora", "Times New Roman", Times, Serif;
  font-style: italic; }

strong, b {
  font-weight: 600; }

em strong, strong em {
  font-weight: bold; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

iframe {
  border: none; }
/*
 ==========================================================================
 2. CONTENT BLOCKS
 ========================================================================== */
/* Boxes
 -----------------------------------------------------------------*/
.box {
  display: block;
  padding: 20px;
  margin: 0 0 20px 0;
  position: relative;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 1px 1px #b4b4b4; }

.box-grey {
  background-color: #f2f2f2;
  /*F7F6F8*/
  box-shadow: inset 0 -1px 1px #c5c5db; }

.box-blue {
  background: #ddf7f7;
  box-shadow: inset 0 -1px 1px #b0e1e1; }
/* Flush to top, right, bottom, left */
.box .flush-t {
  margin-top: -20px; }

.box .flush-r {
  margin-right: -20px; }

.box .flush-b {
  margin-bottom: -20px; }

.box .flush-l {
  margin-left: -20px; }
/* 15px padding */
.box-pad-15 {
  padding: 15px; }

.box .box-pad-15 .flush-t {
  margin-top: -15px; }

.box .box-pad-15 .flush-r {
  margin-right: -15px; }

.box .box-pad-15 .flush-b {
  margin-bottom: -15px; }

.box .box-pad-15 .flush-l {
  margin-left: -15px; }
/* 10px padding */
.box .box-pad-10 {
  padding: 10px; }

.box .box-pad-10 .flush-t {
  margin-top: -10px; }

.box .box-pad-10 .flush-r {
  margin-right: -10px; }

.box .box-pad-10 .flush-b {
  margin-bottom: -10px; }

.box .box-pad-10 .flush-l {
  margin-left: -10px; }
/* Page Columns
 -----------------------------------------------------------------*/
.page-sidebar {
  border-right: 1px solid #dcdced;
  display: block;
  height: 100%;
  width: 272px;
  background: -moz-linear-gradient(left, #fff 93%, #f7f6f8 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(93%, #fff), color-stop(100%, #f7f6f8));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #fff 93%, #f7f6f8 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #fff 93%, #f7f6f8 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #fff 93%, #f7f6f8 100%);
  /* IE10+ */
  background: linear-gradient(to right, #fff 93%, #f7f6f8 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f6f8',GradientType=1);
  /* IE6-9 */ }

.page-sidebar.fl-l {
  margin: 0 50px 40px 0; }

.page-sidebar.fl-r {
  margin-left: 65px;
  border-left: 1px solid #dcdced;
  border-right: none;
  background: #f7f6f8;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f7f6f8 0%, #fff 7%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f7f6f8), color-stop(7%, #fff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #f7f6f8 0%, #fff 7%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #f7f6f8 0%, #fff 7%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #f7f6f8 0%, #fff 7%);
  /* IE10+ */
  background: linear-gradient(to right, #f7f6f8 0%, #fff 7%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f6f8', endColorstr='#ffffff',GradientType=1);
  /* IE6-9 */ }

.page-column-575 {
  display: block;
  height: 100%;
  width: 575px; }

.page-column-full {
  width: 96%;
  padding: 4% 2% 2% 2%; }

.page-column-65 {
  width: 61%;
  padding: 4% 2% 2% 2%; }

.page-column-half {
  display: block;
  height: 100%;
  width: 46%;
  padding: 4% 2% 2% 2%; }

.page-column-35 {
  width: 31%;
  padding: 4% 2% 2% 2%; }

.content-column-25 {
  width: 21%;
  padding: 0 2% 0 2%; }

.content-column-33 {
  width: 29%;
  padding: 0 2% 0 2%; }

.content-column-40 {
  width: 36%;
  padding: 0 2% 0 2%; }

.content-column-50 {
  width: 46%;
  padding: 0 2% 0 2%; }

.content-column-60 {
  width: 56%;
  padding: 0 2% 0 2%; }

.content-column-75 {
  width: 71%;
  padding: 0 2% 0 2%; }
/* Lists
 -----------------------------------------------------------------*/
/* Standard Lists */
ul.list-bullets li + li {
  margin-top: 10px; }
/* Horizontal List */
.list-h {
  padding: 0;
  margin: 0;
  list-style: none; }

.list-h li {
  margin: 0 0 0 10px;
  float: left; }

.list-h li:first-child {
  margin: 0; }

.list-h li + li {
  margin: 0; }

.list-h-5 li {
  margin: 0 0 0 5px; }

.list-h.list-flush li {
  margin: 0; }
/* Vertical List */
.list-v {
  padding: 0;
  margin: 0;
  list-style: none; }

.limit_li {
  max-width: 350px;
  overflow: hidden; }
/* Dropdown List */
.dropdown-parent {
  position: relative; }

.dropdown {
  height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  right: 0;
  /* z-index needs to be 3 here because otherwise <div id="modal-overlay"> overlays the <ul class="dropdown"> */
  z-index: 2;
  background: #239c9c;
  border-radius: 2px 0 2px 2px;
  overflow: hidden;
  box-shadow: 0 2px 0 #246f6f;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */ }

.dropdown:hover {
  height: 125px; }

.dropdown li {
  display: block;
  width: 100%; }

.dropdown li a, .dropdown li a:hover {
  display: block;
  height: 40px;
  padding: 0 10px 0 10px;
  border-top: 1px solid #2d8989;
  box-shadow: none;
  line-height: 40px;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 600;
  letter-spacing: 1px;
  font-style: normal; }

.dropdown li a:hover {
  background: #2d8989; }

.dropdown-parent:hover > .dropdown {
  height: auto !important;
  height: 125px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100); }
/* Checklist */
.list-checklist {
  padding: 0;
  margin: 0 0 20px 40px; }

.list-checklist li {
  padding: 0 0 0 40px;
  margin: 20px 0 0 0;
  position: relative;
  list-style-type: none; }

.list-checklist li:before {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0;
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url(../images/sprite.png);
  background-position: -72px -98px;
  content: ''; }
/* List-group */
ul.list-group {
  padding: 0;
  margin: 0;
  border: 1px solid #e7e0df;
  list-style-type: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.list-group > a, .list-group > li > label {
  display: block;
  height: 30px;
  padding: 10px;
  border-bottom: 1px solid #e7e0df;
  cursor: pointer;
  color: #7d625d;
  line-height: 30px;
  -webkit-transition: box-shadow 200ms cubic-bezier(0.39, 0.575, 0.565, 1), background-color 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: box-shadow 200ms cubic-bezier(0.39, 0.575, 0.565, 1), background-color 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: box-shadow 200ms cubic-bezier(0.39, 0.575, 0.565, 1), background-color 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: box-shadow 200ms cubic-bezier(0.39, 0.575, 0.565, 1), background-color 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: box-shadow 200ms cubic-bezier(0.39, 0.575, 0.565, 1), background-color 200ms cubic-bezier(0.39, 0.575, 0.565, 1); }

.list-group > a:hover, .list-group > li > label:hover, .list-group > a.is-active, .list-group > li > label.is-active {
  background-color: #ddf7f7;
  -webkit-box-shadow: inset 3px 0 0 #24b3b3;
  -moz-box-shadow: inset 3px 0 0 #24b3b3;
  box-shadow: inset 3px 0 0 #24b3b3;
  color: #465259; }
/* Table list*/
.list-table {
  padding: 0; }

ul.list-table {
  list-style-type: none; }

ol.list-table {
  list-style-position: inside; }

.list-table li {
  min-height: 40px;
  border-bottom: 1px solid #eaeaea;
  line-height: 40px; }

.list-table-s li {
  min-height: 30px;
  line-height: 30px;
  font-size: 12px; }

.list-table li a {
  box-shadow: none; }
/* floated list*/
.list-float {
  padding: 0;
  list-style-position: inside; }

.list-float li {
  margin-right: 20px;
  float: left; }
/* Buttons
 -----------------------------------------------------------------*/
.btn, #s-header-log-in, a.btn, a#s-header-log-in {
  display: block;
  height: 30px;
  padding: 0 10px 0 10px;
  border-radius: 3px;
  cursor: pointer;
  font: 14px "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */ }

.btn[disabled=disabled], #s-header-log-in[disabled=disabled] {
  opacity: 0.5; }

.btn.i-12.img-rep, #s-header-log-in.i-12.img-rep, .btn.i-16.img-rep, #s-header-log-in.i-16.img-rep, .btn.i-20.img-rep, #s-header-log-in.i-20.img-rep, .btn.i-24.img-rep, #s-header-log-in.i-24.img-rep {
  height: 30px;
  vertical-align: middle; }

.btn.btn-sm, #s-header-log-in.btn-sm, a.btn.btn-sm, a#s-header-log-in.btn-sm {
  height: 20px;
  padding: 0 5px 0 5px;
  line-height: 20px;
  font-size: 12px; }

.btn-sm.i-12.img-rep, .btn-sm.i-16.img-rep, .btn-sm.i-20.img-rep, .btn-sm.i-24.img-rep {
  height: 20px; }

.btn, #s-header-log-in, .btn-l, .btn:hover, #s-header-log-in:hover, .btn-l:hover {
  box-shadow: none; }

.btn.btn-center-200, #s-header-log-in.btn-center-200 {
  width: 200px;
  margin-left: -100px;
  padding: 0;
  position: relative;
  left: 50%;
  text-align: center; }

.btn.btn-center-400, #s-header-log-in.btn-center-400 {
  width: 400px;
  margin-left: -200px;
  padding: 0;
  position: relative;
  left: 50%;
  text-align: center; }

.btn-l, a.btn-l {
  display: block;
  height: 40px;
  padding: 0 10px 0 10px;
  border-radius: 3px;
  font: 16px "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 1px; }

.btn-l.i-12.img-rep, .btn-l.i-16.img-rep, .btn-l.i-20.img-rep, .btn-l.i-24.img-rep {
  height: 40px; }

.btn-xl, a.btn-xl {
  display: block;
  height: 50px;
  padding: 0 20px 0 20px;
  border-radius: 3px;
  font: 20px "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1px; }

.btn-xl.i-12.img-rep, .btn-xl.i-16.img-rep, .btn-xl.i-20.img-rep, .btn-xl.i-24.img-rep {
  height: 50px; }

.btn-check {
  width: 25px;
  padding: 0 0 0 5px; }

.btn-white, a.btn-white, .btn-white.img-rep {
  background-color: white;
  box-shadow: inset 0 -15px 10px #f9f9f9, 0 1px 0 #bfbfbf, 0 2px 0 #eaeaea;
  color: #46525b; }

.btn-white:hover, a.btn-white:hover {
  box-shadow: inset 0 -15px 10px #efefef, 0 1px 0 #bfbfbf, 0 2px 0 #eaeaea;
  color: #46525b; }

.btn-grey, a.btn-grey, .btn-grey.img-rep {
  background-color: #ececec;
  box-shadow: inset 0 -15px 10px #e6e6e6;
  color: #46525b; }

.btn-grey:hover, a.btn-grey:hover {
  box-shadow: inset 0 -15px 10px #d5d5d5; }

.btn-teal, a.btn-teal, .btn-teal.img-rep {
  background-color: #64cece;
  box-shadow: inset 0 -15px 10px #58c7c7;
  color: #fff;
  text-shadow: 1px 1px 1px #35a4a4; }

.btn-teal:hover, a.btn-teal:hover {
  box-shadow: inset 0 -15px 20px #49b7b7; }

.btn-green, a.btn-green, .btn-green.img-rep {
  background-color: #9fd327;
  box-shadow: inset 0 -15px 10px #96c820;
  color: #fff;
  text-shadow: 1px 1px 1px #698d16; }

.btn-green:hover, a.btn-green:hover {
  box-shadow: inset 0 -15px 15px #8bb91e; }

.btn-red, a.btn-red, .btn-red.img-rep {
  background: #e58750;
  box-shadow: inset 0 -15px 10px #ea7d35;
  color: #fff; }

.btn-red:hover, a.btn-red:hover {
  box-shadow: inset 0 -15px 10px #d7651f; }

.btn-group {
  display: block; }

.btn-group .btn, .btn-group #s-header-log-in {
  float: left;
  border-radius: 0; }

.btn-group .btn-white {
  border-left: 1px solid #e5e5e5; }

.btn-group .btn-grey {
  border-left: 1px solid #c5c5db;
  box-shadow: inset 1px 0 0 #fff, inset 0 -15px 10px #e6e6e6; }

.btn-group .btn-grey:first-child {
  box-shadow: inset 0 -15px 10px #e6e6e6; }

.btn-group .btn-grey:hover {
  box-shadow: inset 1px 0 0 #fff, inset 0 -15px 10px #d5d5d5; }

.btn-group .btn-grey:first-child:hover {
  box-shadow: inset 0 -15px 10px #d5d5d5; }

.btn-group .btn:first-child, .btn-group #s-header-log-in:first-child {
  border-left: none;
  border-radius: 2px 0 0 2px; }

.btn-group .btn:last-child, .btn-group #s-header-log-in:last-child {
  border-radius: 0 2px 2px 0; }

.btn-facebook, a.btn-facebook {
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  font: 13px "Arial";
  font-weight: 300;
  line-height: 20px;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */
  background: #195fad;
  color: #fff; }

.btn-twitter, a.btn-twitter {
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  font: 13px "Arial";
  font-weight: 300;
  line-height: 20px;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */
  background: #00aced;
  color: #fff;
  text-align: center; }

.btn-note-mt {
  margin-top: 2px !important; }

.note-td-0 {
  width: 5%; }

.note-td-1 {
  width: 15% !important; }

.note-td-2 {
  width: 20% !important; }

.note-div-table {
  max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden; }
/* checkbox */
.checkbox {
  display: block;
  height: 19px;
  width: 19px;
  padding: 5px;
  border: 1px solid #eaeaea;
  background-color: #f7f6f8;
  border-radius: 2px;
  box-shadow: none;
  text-indent: -9999px; }

.checkbox:hover {
  box-shadow: inset 0 0 5px #eaeaea; }

.checkbox.is-active {
  background: #eaffa8; }

.checkbox.is-active:after {
  display: block;
  height: 20px;
  width: 20px;
  margin: -10px 0 0 0;
  position: relative;
  top: 50%;
  float: left;
  background-image: url(../images/sprite.png);
  background-position: -72px -98px;
  content: ''; }
/* Forms
 -----------------------------------------------------------------*/
fieldset {
  margin: 0 0 40px 0; }

legend {
  display: block;
  height: 30px;
  width: 100%;
  margin: 0 0 40px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-indent: 3px; }

legend small {
  font-size: 14px; }

label {
  display: inline-block;
  height: 20px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #229b9b;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 20px; }

.siteEnhance-fieldset label {
  font-size: 12px; }

label.label-section {
  display: block;
  height: 30px;
  width: 100%;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #dcdced;
  overflow: hidden;
  font-size: 18px;
  text-transform: none;
  line-height: 30px;
  color: #465259; }

label.label-radio {
  display: inline-block;
  margin: 0 20px 2px 0;
  text-transform: none;
  vertical-align: middle;
  color: #46525b;
  cursor: pointer; }

label[data-tooltip] {
  display: block;
  min-height: 21px; }

label[data-tooltip].label-radio {
  display: inline-block;
  padding-right: 30px; }

.countdown {
  margin-left: 10px;
  text-transform: none;
  color: #9daab3;
  font-size: 12px; }

input, textarea {
  height: 30px;
  border: none;
  outline: none;
  border-radius: 0;
  font: 18px "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-weight: 300;
  line-height: 32px;
  color: #3c4951; }

select option {
  height: 16px;
  line-height: 16px;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif"; }

input[type="radio"], input[type="checkbox"] {
  display: inline-block;
  margin: 0 5px 3px 0;
  border-radius: 50%;
  vertical-align: middle; }

input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
  font-size: 14px;
  height: 26px;
  width: 100%;
  padding: 5px 0 5px 0;
  border: 1px solid #c5c5db;
  text-indent: 5px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  /* easeOutCirc */ }

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
  border: 1px solid #4ad7d7;
  box-shadow: inset 0 -50px 0 #e0f8f8;
  outline: none; }

input[type="email"]:invalid {
  border: 1px solid #ea7d35;
  box-shadow: inset 0 -50px 0 #f9d8c1;
  outline: none; }

input[type="password"] {
  height: 26px;
  font-size: 16px;
  line-height: 30px; }

textarea {
  display: block;
  width: 99%;
  height: 165px;
  padding: 1% 0 0 1%;
  border: 1px solid #c5c5db;
  resize: vertical;
  line-height: 24px;
  font-size: 16px; }

.txtarea-note {
  height: 50px;
  min-height: 50px;
  width: 95%; }

.txtarea-xsm {
  height: 66px;
  min-height: 66px; }

.txtarea-sm {
  height: 99px;
  min-height: 99px; }

.txtarea-lg {
  height: 264px; }

textarea:focus {
  border: 1px solid #4ad7d7;
  color: #3c4951;
  background-color: #e0f8f8; }

select {
  height: 38px;
  width: 100%;
  padding: 5px;
  border: 1px solid #c5c5db;
  outline: none;
  cursor: pointer;
  border-radius: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  color: #3c4951; }

select[multiple] {
  height: 150px; }

select:focus {
  border: 1px solid #4ad7d7;
  background: #e0f8f8; }

input:disabled, select:disabled {
  color: #aaa;
  background: #eaeaea;
  cursor: default;
  opacity: 0.5; }

option {
  height: 22px;
  padding: 7px; }

.form-group {
  min-height: 36px;
  width: 100%;
  margin: 0 0 30px 0;
  position: relative;
  float: left; }

.form-group-85 {
  float: left;
  width: 83%;
  margin: 0 0 30px 0;
  position: relative; }

.form-group-85.form-group-first {
  width: 85%; }

.form-group-75 {
  float: left;
  width: 72%;
  margin: 0 0 30px 0;
  position: relative; }

.form-group-75.form-group-first {
  width: 75%; }

.form-group-50 {
  float: left;
  width: 48%;
  margin: 0 0 30px 0;
  position: relative; }

.form-group-50.form-group-first {
  width: 50%; }

.form-group-47 {
  float: left;
  width: 47%;
  margin: 0 0 30px 14px;
  position: relative; }

.form-group-47.form-group-first {
  width: 47%; }

.form-group-33 {
  float: left;
  width: 31.3%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-33.form-group-first {
  width: 33.3%;
  margin: 0 0 30px 0; }

.form-group-25 {
  float: left;
  width: 23%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-25.form-group-first {
  width: 25%;
  margin: 0 0 30px 0; }

.form-group-20 {
  float: left;
  width: 20%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-15 {
  float: left;
  width: 13%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-15.form-group-first {
  width: 15%;
  margin: 0 0 30px 0; }

.form-group-12 {
  float: left;
  width: 10.5%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-12.form-group-first {
  width: 12.5%;
  margin: 0 0 30px 0; }

.form-group-9 {
  float: left;
  width: 9%;
  margin: 0 0 30px 2%;
  position: relative; }

.form-group-inline {
  display: table; }

.form-group-inline input {
  display: table-cell; }

.form-group-inline label {
  display: table-cell;
  width: 1px;
  padding: 0 7px 5px 7px;
  background: #f7f6f8;
  white-space: nowrap; }

.form-group.i-16:after, .form-group-half.i-16:after {
  position: absolute;
  right: 5px; }

input.no-label {
  margin-top: 21px; }

.form-between {
  display: block;
  height: 10px;
  margin: 35px 0 0 10px;
  text-align: center; }

:-ms-input-placeholder {
  color: #9daab2; }

#siteEnhanceMobile h3 {
  margin: 0px;
  font-weight: bold; }

.siteEnhance-fieldset {
  position: relative;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
  clear: both; }

#desktop-hero-table tr, #hero-table tr, #logo-table tr, #office-staff-table tr {
  height: 30px; }

#desktop-hero-table tr th, #hero-table tr th, #logo-table tr th, #office-staff-table tr th {
  padding: 0 0 0 10px;
  vertical-align: middle; }

#desktop-hero-table, #hero-table, #logo-table, #office-staff-table {
  border: 1px solid #ccc; }

#desktop-hero-table tr td, #hero-table tr td, #logo-table tr td, #office-staff-table tr td {
  text-align: center;
  padding: 10px 0;
  height: 100px; }

#desktop-hero-table tr td a, #hero-table tr td a, #logo-table tr td a, #office-staff-table tr td a {
  display: inline-block;
  float: none; }

#logo, #hero, #desktop_hero {
  display: none; }

.herologo-border {
  border : 1px solid #ccc;
  width: 33%; }

.herologo-border-none {
  border: none;
  width: 0; }

.enhance-practice-address {
  margin-left: 20px;
  top: -10px;
  position: relative; }

.enhance-line {
  clear: both;
  height: 1px;
  background-color: #ccc; }

.enhance-text {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 20px; }

.enhance-title {
  margin: 0px;
  font-weight: bold; }

.enhance-radio {
  margin-right: 20px; }
/* error state */
/* inline error messages */

.errorMessage {
  width: 100%;
  padding: 1px 1px 0 1px;
  position: absolute;
  background: #fddecc;
  color: #d9783f;
  text-indent: 5px;
  line-height: 15px; }

.relativeErrorMessageContainer {
  overflow: hidden;
  width: 100%; }
  .relativeErrorMessageContainer .errorMessage {
    position: relative; }
/* aditional setting for errorMessage */
.errorMessage2 {
  display: none;
  position: relative;
  line-height: 30px; }
/* Error Summary */
.errorSummary {
  padding: 20px;
  margin: 0 0 20px 0;
  background: #fddecc;
  border-radius: 2px;
  color: #9d410b; }

.errorSummary p {
  font-weight: 600; }

.errorSummary li {
  height: 30px;
  line-height: 30px; }
/* Tables
 -----------------------------------------------------------------*/
table {
  width: 100%;
  text-align: left; }

tr {
  height: 60px;
  border-top: 1px solid #eaeaea;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out; }

table.table-clear tr {
  border: none; }

th {
  padding: 0 15px 10px 0;
  font-size: 16px;
  font-weight: 600;
  vertical-align: bottom;
  text-align: left; }

th input[type="text"] {
  height: 20px;
  margin-top: 5px;
  line-height: 20px; }

th select {
  height: 32px;
  margin-top: 5px; }

th a, th a:hover {
  box-shadow: none;
  text-decoration: underline; }

tr:first-child {
  border-top: none; }

thead tr {
  border-bottom: 1px solid #eaeaea; }

td {
  padding: 0 15px 0 0; }

td:last-child, th:last-child, td.td-flush, th.td-flush {
  padding-right: 0; }

.table-select-half {
  width: 48%; }
/* Notices
 -----------------------------------------------------------------*/
.notice {
  margin-bottom: 20px;
  padding: 15px;
  position: relative;
  background: #f7f6f8;
  border-radius: 2px;
  color: #424e55; }

.notice h1 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 400;
  color: #465259;
  line-height: 30px; }

.notice h1:after {
  margin-top: 3px; }

.notice h2 {
  height: 20px;
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #465259;
  line-height: 20px; }

.notice-blue {
  background: #ddf7f7;
  color: #3f4c52; }

.notice-blue > .h-underline {
  border-bottom: 1px solid #b6e5e5; }

.notice-green {
  background: #eaffa8;
  color: #344600; }

.notice-yellow {
  background: #fff496;
  color: #1b1907; }

.notice-red {
  background: #fddecc;
  color: #9d410b; }

.notice-red h1, .notice-red h2, .notice-red a {
  color: #9d410b; }

.notice-red a {
  box-shadow: 0 1px 0 #cf672a; }

.close-x {
  display: block;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: url(../images/sprite.png) -46px -168px no-repeat;
  cursor: pointer;
  content: ' '; }

.notice-blue h1 {
  color: #424e55; }

.notice-green h1 {
  color: #344600; }

.notice-title {
  font-weight: 600; }

.notice-black-text {
  color: #000; }
/* Notes
 -----------------------------------------------------------------*/
.note {
  width: 288px;
  padding-left: 40px;
  position: relative;
  font-size: 14px;
  font-family: "Lora", "Times New Roman", Times, Serif;
  font-style: italic; }

.note:after {
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/sprite.png) -360px -20px;
  content: ''; }
/* Progress Bar
 -----------------------------------------------------------------*/
.progress-bar {
  display: block;
  padding-bottom: 5px;
  border-bottom: 4px solid #ebebeb;
  position: relative;
  font-weight: 400; }

.progress-count {
  float: right; }

.progress-graph {
  display: block;
  height: 4px;
  width: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #ea7e37;
  -webkit-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */ }

.progress-bar .tooltip-wrap {
  margin-top: -25px; }
/* Star Ratings
 -----------------------------------------------------------------*/
.star-rating {
  width: 120px; }

.star-rating span {
  display: block;
  height: 21px;
  width: 20px;
  padding-right: 4px;
  float: left;
  background: url(../images/sprite.png) 0 -888px no-repeat;
  text-indent: -9999px; }

.star-rating.stars-1 .stars-1, .star-rating.stars-2 .stars-1, .star-rating.stars-2 .stars-2 {
  background-position: 0 -867px; }

.star-rating.stars-3 .stars-3, .star-rating.stars-3 .stars-2, .star-rating.stars-3 .stars-1, .star-rating.stars-4 .stars-1, .star-rating.stars-4 .stars-2, .star-rating.stars-4 .stars-3, .star-rating.stars-4 .stars-4 {
  background-position: 0 -846px; }

.star-rating.stars-5 span {
  background-position: 0 -825px; }
/* Small Star Ratings
 -----------------------------------------------------------------*/
.star-rating.star-rating-sm {
  width: 75px; }

.star-rating.star-rating-sm span {
  display: block;
  height: 12px;
  width: 12px;
  padding-right: 3px;
  float: left;
  background: url(../images/sprite.png) 0 -947px no-repeat;
  text-indent: -9999px; }

.star-rating.star-rating-sm.stars-1 .stars-1, .star-rating.star-rating-sm.stars-2 .stars-1, .star-rating.star-rating-sm.stars-2 .stars-2 {
  background-position: 0 -935px; }

.star-rating.star-rating-sm.stars-3 .stars-3, .star-rating.star-rating-sm.stars-3 .stars-2, .star-rating.star-rating-sm.stars-3 .stars-1, .star-rating.star-rating-sm.stars-4 .stars-1, .star-rating.star-rating-sm.stars-4 .stars-2, .star-rating.star-rating-sm.stars-4 .stars-3, .star-rating.star-rating-sm.stars-4 .stars-4 {
  background-position: 0 -923px; }

.star-rating.star-rating-sm.stars-5 span {
  background-position: 0 -911px; }
/* Modal Window
 -----------------------------------------------------------------*/
#modal-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #104545;
  background: rgba(16, 69, 69, .8);
  overflow: auto; }

#modal {
  width: 100%;
  max-width: 800px;
  margin: 0;
  border-bottom: 20px solid #f1f1f1;
  margin-bottom: 20px;
  position: absolute;
  z-index: 9999;
  background: white;
  border-radius: 2px;
  overflow: visible;
  box-shadow: 0 1px 1px #363636;
  -webkit-transition: top 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: top 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: top 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: top 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: top 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
  /* easeOutCirc */ }

#modal-close, #modal-close-aside-x {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 45px;
  right: 45px;
  z-index: 9999;
  background: transparent url(../images/sprite.png) -46px -168px no-repeat;
  cursor: pointer; }

.modal-header, .modal-footer {
  padding: 30px 0 0 0;
  margin: 0;
  position: relative;
  background: #f1f1f1;
  text-align: center; }

.modal-header {
  min-height: 75px;
  border-radius: 2px 2px 0 0; }

.modal-header h1 {
  height: 22px;
  margin: 3px 0 0 40px;
  line-height: 0px;
  font-size: 18px;
  font-weight: 600;
  color: #229b9b;
  text-align: left; }

#modal-inner .modal-header h1 {
  line-height: 25px; }

.modal-footer {
  width: 90%;
  padding: 40px 5% 20px 5%;
  float: left; }

.modal-body {
  padding: 5%;
  width: 90%;
  float: left;
  text-align: left; }

.modal-body, .modal-body p, .modal-body li {
  font-size: 16px; }

.modal-body h2 {
  margin: 0 0 5px 0;
  font-size: 20px; }

.modal-body p + h2 {
  margin-top: 30px; }

#modal-aside {
  position: relative;
  z-index: 9999;
  background: white;
  color: #465259; }

#reviews-network-title {
  display: inline-block;
  max-width: 630px; }
/* Profile Pics
 -----------------------------------------------------------------*/
.profile-img {
  display: block;
  background-size: cover;
  background-position: center center;
  height: 80px; }

.profile-img.default-img-provider {
  width: 92px;
  height: 92px;
  background-color: #e5e5e5;
  background-image: url(../images/sprite.png);
  background-size: 467px;
  background-position: 0px -312px; }

.profile-img.default-img-provider-female {
  width: 80px;
  height: 80px;
  background-color: #e5e5e5;
  background-image: url(../images/sprite.png);
  background-size: 467px;
  background-position: 0px -233px; }

.profile-img.default-img-practice {
  background-color: #e5e5e5;
  background-image: url(../images/sprite.png);
  background-size: 475px;
  background-position: -73px -321px; }

#ul-other-practice .default-img-practice {
  background-color: #e5e5e5;
  background-image: url(../images/sprite.png);
  background-size: 605px;
  background-position: -90px -409px; }
/* Login Modal
 -----------------------------------------------------------------*/
#form_inline_login-pass {
  margin: 45px 0 0 50px;
  padding: 15px 0 15px 60px;
  width: 20%; }
/*
 ==========================================================================
 3. COMMON SECTIONS
 ========================================================================== */
#container {
  border-top: 150px solid #28b7b7; }

.wrapper {
  width: 978px;
  margin: 0 auto;
  padding: 0 20px 0 20px; }
/* Header
 -----------------------------------------------------------------*/
#s-header {
  height: 120px;
  margin-top: -150px; }

#s-header-logo {
  height: 120px;
  width: 220px;
  background: url(../images/logo.png) center left no-repeat; }

#s-header .list-h {
  margin-top: 45px;
  line-height: 30px; }

#s-header .list-h a {
  display: block; }
/* Primary Nav */
#s-header-primary-nav > li + li {
  margin-left: 30px; }

#s-header-primary-nav a {
  padding: 0 10px 0 10px;
  border-radius: 3px;
  line-height: 30px;
  font: 14px/30px "Signika", "Helvetica Neue", Helvetica, Sans-serif;
  font-weight: 300;
  font-style: normal; }

#s-header-primary-nav a.is-current, #s-header-primary-nav a.is-current:hover {
  background: #239c9c;
  font-weight: 600; }

#s-header-primary-nav a:hover {
  background: #26a9a9; }

#s-header-primary-nav a, #s-header-primary-nav a:hover {
  box-shadow: none; }

#s-header-primary-nav a {
  color: #fff; }
/* Login - Sign-Up - logged-in */
#profile-info {
  height: 98px;
  margin: 10px;
  padding: 10px;
  margin-bottom: 0px;
  background: #f7f6f8; }

#profile-info #profile-photo {
  float: left;
  height: 98px !important;
  width: 98px !important; }

#profile-info #profile-title {
  color: #229b9b;
  font-weight: 300;
  padding-left: 120px; }

#profile-title {
  margin-top: 5px;
  font-size: 20px; }

#profile-title span {
  font-weight: bold;
  font-size: 22px; }

#profile-title p {
  font-style: italic; }

#profile-info .img-resize {
  background-size: 650px; }

#profile-info .img-pos-male {
  background-position: 0px 212px; }

#profile-info .img-pos-female {
  background-position: 0px 318px; }

#s-header-account-nav {
  margin-left: 15px;
  padding-left: 25px;
  border-left: 1px solid #1fa3a3;
  height: 30px; }

#s-header-account-nav li + li {
  margin-left: 15px; }

#s-header-account-nav .dropdown li + li {
  margin-left: 0; }

#s-header-account-nav.list-h li em {
  font-size: 13px; }

#s-header-log-in {
  box-shadow: 0 1px 0 #20937e, 0 2px 0 #239e89;
  background: #f7f6f8;
  color: #46525b;
  text-shadow: none;
  font-weight: 600; }
  #s-header-log-in:after {
    top: 0;
    margin-top: 6px;
    background-position: 0 -120px; }

#s-header-log-in:hover {
  background: #fff;
  box-shadow: 0 2px 10px #20937e; }

#s-header-sign-up a {
  box-shadow: 0 1px 0 #20937e, 0 2px 0 #239e89;
  font-size: 18px;
  font-weight: 600; }

#s-header-sign-up a:hover {
  box-shadow: inset 0 -10px 7px #96c820, 0 2px 10px #20937e;
  text-shadow: 1px 1px 1px #698d16; }

#s-header-logged-in {
  height: 30px;
  margin-top: -3px;
  cursor: pointer; }

#s-header-logged-in .dropdown-parent {
  height: auto !important;
  padding: 5px 0 5px 10px;
  min-width: 194px;
  border-radius: 2px 2px 0 0;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  /* easeOutSine */ }

#s-header-logged-in .i-carat-white {
  display: block;
  height: 4px;
  width: 8px;
  padding: 8px 10px 17px 10px;
  margin: -5px 0 0 5px;
  border-radius: 2px 2px 0 0; }

#s-header-logged-in .i-carat-white:after, #s-header-logged-in .i-carat-white i.icon {
  margin: -3px -4px 0 0;
  position: absolute;
  top: 50%;
  background-position: -60px -172px; }

#s-header-logged-in:hover .dropdown-parent {
  background: #239c9c; }
/* Breadcrumbs
 -----------------------------------------------------------------*/
#s-breadcrumbs {
  min-height: 30px; }

#s-breadcrumbs .list-h {
  line-height: 30px;
  font-size: 12px;
  color: #3c4951; }

#s-breadcrumbs .list-h li {
  margin-right: 8px;
  position: relative; }

#s-breadcrumbs .list-h li + li {
  padding-left: 13px; }

#s-breadcrumbs .list-h li + li:after {
  content: '\203A';
  position: absolute;
  left: 0; }
/* Pages
 -----------------------------------------------------------------*/
/* Page Title
 --------------------*/
#s-page-header {
  height: 80px;
  border-top: 1px solid white;
  background: #f7f6f8;
  line-height: 80px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px; }

#s-page-header h1 {
  height: 80px;
  margin: 0;
  background-color: #f7f6f8;
  color: #229b9b;
  font-weight: 300;
  font-size: 18px; }

#s-page-header span {
  font-size: 16px;
  color: #229b9b; }

.s-page-title {
  display: block;
  height: 30px;
  width: 100%;
  margin: 0 0 40px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-indent: 3px; }

#s-page-footer {
  padding: 40px;
  position: relative;
  bottom: 0;
  background: #f7f6f8;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px; }

#s-page-money-icons {
  height: 20px;
  width: 154px;
  background: url(../images/ccards.png) no-repeat; }
/* Page Subsections
 --------------------*/
#s-page section > h1 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px; }

#s-page section > h1:after {
  margin-top: 3px; }
/* Page Side Menus
 --------------------*/
.side-menu-large {
  padding-top: 10px;
  font-size: 16px;
  color: #9daab2; }

.side-menu-large li {
  margin-bottom: 60px;
  line-height: 22px; }

.side-menu-large li.is-current, .side-menu-small li.is-current {
  margin-right: -1px;
  padding-right: 1px;
  background: url(../images/sprite.png) 264px -977px no-repeat;
  color: #156060;
  font-weight: 400; }

.side-menu-large li.is-current.no-arrow {
  background: transparent; }

.side-menu-large > li > span {
  margin: 0 30px 0 0;
  font-size: 22px; }

.side-menu-small {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  min-height: 350px;
  font-family: "Lora", "Times New Roman", Times, Serif;
  font-style: italic;
  font-size: 13px;
  color: #229b9b; }

.side-menu-small li {
  height: 40px;
  margin-bottom: 0;
  border-radius: 2px 0 0 2px;
  line-height: 40px;
  text-indent: 10px; }

.side-menu-small li.is-disabled a, .side-menu-small li.is-disabled a:hover {
  color: #9daab2;
  cursor: default;
  box-shadow: none;
  font-weight: normal; }

.side-menu-small li.is-disabled a:after {
  opacity: 0.5; }

.side-menu-small li a, .side-menu-small li span {
  height: 40px;
  padding: 0 20px 0 10px;
  display: block;
  cursor: pointer;
  box-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: all 0s; }

.side-menu-small li a:hover {
  box-shadow: 1px 0 0 #4ad7d7, inset -1px 0 0 #4ad7d7;
  font-weight: bold;
  color: #229b9b; }

.side-menu-small li.complete a:hover {
  box-shadow: 1px 0 0 #8fbe00, inset -1px 0 0 #8fbe00; }

.side-menu-small li.is-current {
  position: relative;
  background: #f2f2f2;
  box-shadow: inset -1px 0 0 #dcdced;
  font-weight: bold; }

.side-menu-small li.is-current li {
  font-weight: normal; }

.side-menu-small li.is-current a:hover {
  box-shadow: none; }

.side-menu-small li.is-current a, .side-menu-small li.is-current span {
  display: block;
  height: 40px;
  padding-right: 20px;
  margin-right: -1px;
  background: transparent url(../images/sprite.png) 264px -970px no-repeat;
  color: #465259; }

.side-menu-small li.complete a, .side-menu-small li.complete span {
  display: block;
  height: 40px;
  padding-right: 20px;
  margin-right: -1px;
  color: #8fbe00; }

.side-menu-small li strong {
  display: block;
  height: 24px;
  width: 35px;
  padding: 0 5px 0 5px;
  margin: 8px 0 8px 0;
  float: right;
  background: #ddf7f7;
  border-radius: 2px;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  text-align: center;
  text-indent: 0;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal; }

.side-menu-small li.is-current strong {
  background: transparent;
  font-weight: 600; }

.side-menu-small li.complete strong {
  background: transparent; }
/* Footer
 -----------------------------------------------------------------*/
#s-footer {
  padding: 35px 0 35px 0;
  margin-bottom: -5px;
  background: #24b3b3;
  box-shadow: inset 0 120px #28b7b7;
  line-height: 50px;
  color: #166161; }

#s-footer a {
  color: #ccf2f2;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-style: normal; }

#s-footer a, #s-footer a:hover {
  box-shadow: none;
  color: white; }

#s-footer-browse-featured {
  height: 50px;
  margin: 0 100px 0 0;
  padding: 0 15px 0 15px;
  background: #29c0c0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px; }

#s-footer-browse-featured {
  box-shadow: none; }

#s-footer-browse-featured:hover {
  box-shadow: none;
  background: #2ec5c5; }

#s-footer-twitter, #s-footer-google, #s-footer-fb {
  display: block;
  height: 36px;
  width: 36px;
  margin: 7px 0 0 10px;
  background-image: url(../images/sprite.png);
  opacity: 0.8; }

#s-footer-twitter:hover, #s-footer-google:hover, #s-footer-fb:hover {
  opacity: 1; }

#s-footer-twitter {
  background-position: -36px -60px; }

#s-footer-google {
  background-position: -72px -60px; }

#s-footer-fb {
  background-position: 0 -60px; }

#s-footer-utility-links {
  padding-top: 18px; }

#s-footer-utility-links li {
  height: 14px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ccf2f2;
  line-height: 14px; }

#s-footer-utility-links li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none; }
/* Footer > Directory
 -----------------------------------------------------------------*/
#s-directory {
  width: 100%;
  padding: 0 0 50px 0;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #1fa3a3; }

#s-directory > div {
  margin-top: 50px; }

#s-directory > div > h2 {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase; }

#s-directory li {
  display: block;
  line-height: 1.5; }

#s-directory a {
  display: block;
  width: 100%;
  border-radius: 2px;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  color: #cdf3f3;
  font-style: normal;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0ms;
  transition: all 0s;
  /* easeOutSine */ }

#s-directory a:hover {
  padding: 3px 5px 3px 5px;
  margin: -3px 0 -3px -5px;
  z-index: 2;
  background: #156060;
  font-weight: 600; }

#s-directory li:last-child {
  margin-top: 25px; }

#s-directory-name li:last-child {
  margin-top: 0; }

#s-directory-name li {
  height: 17px;
  width: 38px; }

#s-directory-name, #s-directory-name li, #s-directory-name li a {
  display: block;
  text-align: center;
  text-transform: uppercase; }

#s-directory-location {
  width: 190px;
  margin: 0 20px 0 80px; }

#s-directory-specialty {
  width: 330px;
  margin: 0 20px 0 0; }

#s-directory-insurance {
  width: 290px; }
/*
 ==========================================================================
 4. Provider Sign Up
 ========================================================================== */
/* Sidebar Profile & Progress
 --------------------*/
#s-page-docpoints-pic {
  margin: 5px 0 30px -38px;
  padding: 0px 0 10px 0; }

#s-page-docpoints-pic h2 {
  min-height: 20px;
  width: 100%;
  padding-left: 38px;
  margin: 0 0 0 0;
  float: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px; }

#s-page-docpoints-pic > h2 {
  padding-bottom: 10px;
  width: 270px;
  line-height: 20px; }

#s-page-docpoints-pic a {
  margin-left: 39px;
  font-size: 11px;
  top: -9px;
  position: relative; }

#s-page-docpoints-pic .profile-img {
  height: 60px;
  width: 60px;
  margin: 0 10px 0 38px;
  float: left;
  -webkit-background-size: cover;
  background-size: cover; }

#s-page-docpoints-pic .profile-img.default-img-provider {
  width: 62px;
  height: 62px;
  background-position: 2px -266px;
  -webkit-background-size: 400px;
  background-size: 400px; }

#s-page-docpoints-pic .profile-img.default-img-provider-female {
  width: 62px;
  height: 62px;
  background-position: 2px -203px;
  -webkit-background-size: 400px;
  background-size: 400px; }

#s-page-docpoints-pic .progress-bar {
  height: 21px;
  width: 172px;
  margin: 12px 0 0 0;
  padding-bottom: 7px;
  float: left; }

#s-page-docpoints-pic .progress-count {
  float: left; }

.i-16-alternative {
  margin-top: 2px;
  height: 24px;
  float: left;
  margin-left: -25px; }
/* 3rd-party provider sign up intro modal
 -----------------------------------------------------------------*/
#partner-intro-header {
  margin: -3px 0 0 0;
  float: none;
  text-align: center;
  color: #465259; }

#partner-intro-header img {
  max-height: 52px; }

.modal-body .partner-intro-sub-h {
  padding: 40px 0 0 0;
  margin-top: 40px;
  position: relative;
  color: #219a9a;
  font-weight: bold;
  font-size: 18px;
  text-align: center; }

.partner-intro-sub-h.i-24:after, .partner-intro-sub-h.i-24 .icon {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -12px; }

#partner-intro-body ul {
  width: 500px;
  margin-left: -250px;
  position: relative;
  left: 50%; }

#partner-intro-footer-link {
  color: #585858;
  box-shadow: 0 1px 0 #ccc; }

#partner-intro-log-link {
  position: absolute;
  left: 360px; }
/* Insurance Affiliations
 -----------------------------------------------------------------*/
div#form-medications ul li {
  background: url(''); }

#selected-insurers {
  width: 100%; }

#selected-insurers-title {
  width: 100%;
  height: 30px;
  line-height: 30px; }

#selected-insurers li {
  display: block;
  width: 96%;
  padding: 25px 0px 25px 2%;
  border-top: 1px solid #eaeaea;
  line-height: 30px;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out; }

#selected-insurers li:hover {
  background: #f8f8f8; }

#selected-insurers .delete-insurer {
  display: block;
  height: 28px;
  margin-right: 10px;
  cursor: pointer; }

.insurance-li .select2-result-label {
  height: 30px;
  line-height: 30px; }

.select2-result-label div.i-plus {
  margin-right: 18px;
  opacity: 0;
  filter: alpha(opacity=0); }

.selected > .select2-result-label div.i-plus {
  display: none; }

.select2-result.selected, .select2-result.selected:hover {
  background: #eaffa8;
  color: #344600;
  font-weight: 400; }

.select2-result:hover div.i-plus {
  opacity: 1;
  filter: alpha(opacity=100); }
/* Plan Select Modal */
#modal-insurance-plans li {
  padding: 10px 0 10px 0; }

#modal-insurance-plans li input[type='text'] {
  margin-top: 10px; }
/* Patient Forms
 -----------------------------------------------------------------*/
#form-forms li {
  width: 535px; }
/*
 ==========================================================================
 5. My Account
 ========================================================================== */
/* Menu */
#s-page-myaccount-menu {
  background: #f2f2f2;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px; }

#s-page-myaccount-menu li a {
  display: block;
  height: 50px;
  padding: 30px 15px 0 15px;
  margin: 0;
  position: relative;
  line-height: 50px;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-style: normal; }

#s-page-myaccount-menu li:first-child a, #s-page-myaccount-menu li:first-child a:hover {
  margin-left: 0;
  border-top-left-radius: 2px;
  box-shadow: 1px 0 0 #f2f2f2; }

#s-page-myaccount-menu .is-current, #s-page-myaccount-menu .is-current:hover {
  background: white;
  box-shadow: 1px 0 0 #e9e9e9, -1px 0 0 #e9e9e9;
  color: #46525b;
  font-weight: 400; }

#s-page-myaccount-menu li a {
  box-shadow: none; }

#s-page-myaccount-menu li a:hover {
  background: #e9e9e9;
  border: 0;
  box-shadow: none;
  color: #1f8686; }

#s-page-myaccount-menu li a:after, #s-page-myaccount-menu li a i.icon {
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -10px; }

#s-page-myaccount-menu li #s-page-myaccount-menu-premium {
  background: #96c820;
  border-top-right-radius: 2px;
  box-shadow: 0 -1px 0 #b5e545, inset 0 40px 40px #9fd327;
  color: #fff;
  font-size: 17px;
  font-weight: 600; }

#s-page-myaccount-menu li #s-page-myaccount-menu-premium-upgrade {
  background: #96c820;
  border-top-right-radius: 2px;
  box-shadow: 0 -1px 0 #b5e545, inset 0 40px 40px #9fd327;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  height: auto;
  padding: 19px;
  line-height: normal; }

#s-page-myaccount-menu li a#s-page-myaccount-menu-premium:hover {
  background: #9fd327;
  border-top-right-radius: 2px;
  box-shadow: 0 -1px 0 #b5e545, inset 0 40px 40px #b2e53c;
  color: #fff;
  text-shadow: 0 1px 1px #89b918; }
/* Community News & Updates */
.postList {
  padding: 0;
  margin: 20px 0 0 0;
  list-style-type: none; }

.postList br {
  display: none; }

.postList li {
  padding: 10px;
  border-left: 2px solid #28b7b7;
  background: white;
  border-radius: 0 2px 2px 0; }

.postList li + li {
  margin: 10px 0 0 0; }

.postDate {
  font-size: 11px; }

.postTitle {
  margin: 0 0 10px 0;
  font-weight: 600; }
/* Practice & Provider List */
.provider-list {
  padding-top: 20px; }

.provider-list > li.box {
  height: 110px;
  transition: 300ms; }

#s-page-myaccount-practice-list > li.box, #s-page-myaccount-provider-list > li.box {
  height: auto;
  min-height: 110px; }

.practice-photos, .provider-photos {
  width: 92px;
  height: 92px;
  float: left;
  margin-right: 10px !important;
  background-color: #fff; }

.practice-photos img, .provider-photos img {
  margin-left: auto !important;
  margin-right: auto !important; }

.practice-photos a, .provider-photos a {
  margin-top: 32px; }

.provider-data {
  margin-left: 100px; }

#s-page-myaccount-practice-list .profile-img {
  max-width: 92px;
  max-height: 92px;
  margin: 0;
  left: 10px;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-size: contain; }

#s-page-myaccount-provider-list .profile-img {
  max-width: 92px;
  max-height: 92px;
  margin: 0;
  left: 10px;
  border-radius: 2px;
  padding-top: 6px; }

#s-page-myaccount-provider-list .default-img-provider {
  width: 92px;
  height: 92px;
  background-position: -9px -1252px;
  background-size: 750px 750px; }

#s-page-myaccount-provider-list .default-img-provider-female {
  width: 92px;
  height: 92px;
  background-position: -9px -1132px;
  background-size: 750px 750px; }

#s-page-myaccount-provider-list .default-img-provider .btn-white {
  display: none; }

#s-page-myaccount-provider-list .default-img-provider:hover .btn-white {
  display: block; }

#s-page-myaccount-provider-list .default-img-provider-female .btn-white {
  display: none; }

#s-page-myaccount-provider-list .default-img-provider-female:hover .btn-white {
  display: block; }

#s-page-myaccount-practice-list .default-img-practice {
  background-size: 605px;
  background-position: -90px -409px; }

#s-page-myaccount-practice-list .default-img-practice .btn-white {
  display: none; }

#s-page-myaccount-practice-list .default-img-practice:hover .btn-white {
  display: block; }

#provider-provider-form label.error {
  display: none !important; }

#provider-provider-form input.range_hours.error {
  border: solid red 1px; }

.provider-list li.is-featured .provider-photos:before {
  display: block;
  height: 20px;
  width: 20px;
  border: 5px solid #f4c319;
  border-right: 0;
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 1;
  background: #f4c319;
  background-image: url(../images/sprite.png);
  background-position: -560px -40px;
  content: ''; }

.provider-list li.is-featured .provider-photos:after {
  display: block;
  height: 0px;
  width: auto;
  max-width: 0px;
  border: 15px solid #f4c319;
  border-right-color: transparent;
  overflow: hidden;
  position: absolute;
  bottom: 28px;
  left: 20px;
  color: #614b00;
  font-weight: 600;
  line-height: 0px;
  content: "Featured"; }

.provider-list li.is-featured .provider-photos:hover:after {
  max-width: 400px;
  padding-right: 5px;
  overflow: visible; }

.provider-list > li.is-active {
  background: #ddf7f7; }

.action-filter-providers {
  transition: none; }

.provider-list > li.is-active .action-filter-providers {
  box-shadow: none;
  background: #64cece;
  /* Old browsers */
  background: -moz-linear-gradient(top, #64cece 0%, #58c7c7 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #64cece), color-stop(100%, #58c7c7));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #64cece 0%, #58c7c7 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #64cece 0%, #58c7c7 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #64cece 0%, #58c7c7 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #64cece 0%, #58c7c7 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#64cece', endColorstr='#58c7c7',GradientType=0);
  /* IE6-9 */
  color: #fff;
  text-shadow: 1px 1px 1px #35a4a4; }

.provider-list > li.is-active .action-filter-providers:after, .provider-list > li.is-active .action-filter-providers i.icon {
  background-position: -105px -98px; }

.provider-list h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600; }

.provider-list-img {
  height: 100%;
  width: 110px;
  margin: -10px 0 -10px 0px;
  position: absolute;
  left: 0;
  border-radius: 2px 0 0 2px;
  background-repeat: none;
  background-size: cover;
  background-position: center center; }

.provider-list-img a {
  display: none;
  margin-top: -15px;
  position: absolute;
  top: 50%;
  left: 6px;
  box-shadow: 0 1px 1px #cdcdcd; }

.provider-list-img a:hover {
  box-shadow: 0 1px 1px #cdcdcd; }

.provider-list-img.default-img-provider:hover a, .provider-list-img.default-img-provider-female:hover a, .provider-list-img.default-img-practice:hover a {
  display: block; }

.provider-list li#no-results {
  height: auto;
  min-height: 0;
  padding-left: 20px; }
/* myAccount/practicesProvider */
#s-description-bio {
  width: 190px;
  float: left; }

.practice-data {
  margin-left: 100px; }

.practices-associated {
  display: inline-block;
  width: 300px; }

#divChangeGender {
  display: none; }

#ul-other-practice {
  display: none; }

.showHideProvider {
  display: none; }
/* Practice Connect List */
#s-page-myaccount-practice-connect-list li {
  height: auto; }

#s-page-myaccount-practice-connect-list li .practice-provider-info {
  float: left;
  width: 380px; }

#s-page-myaccount-practice-connect-list li.is-selected {
  background: #ddf7f7; }

#s-page-myaccount-practice-connect-list .action-select-practice {
  cursor: pointer; }

#s-page-myaccount-practice-connect-list .provider-list-img {
  margin: 0 20px 0 0;
  border-radius: 50%; }

#s-page-myaccount-practice-connect-list .profile-img {
  margin-right: 10px; }

#s-page-myaccount-practice-connect-list .default-img-practice {
  height: 70px;
  width: 70px; }

#s-page-myaccount-practice-connect-list .action-select-practice .btn, #s-page-myaccount-practice-connect-list .action-select-practice #s-header-log-in {
  margin: 15px 10px 0 0; }

#s-page-myaccount-practice-connect-list .action-select-practice .btn:after, #s-page-myaccount-practice-connect-list .action-select-practice #s-header-log-in:after, #s-page-myaccount-practice-connect-list .action-select-practice .btn i.icon, #s-page-myaccount-practice-connect-list .action-select-practice #s-header-log-in i.icon {
  visibility: hidden; }

#s-page-myaccount-practice-connect-list li.is-selected .action-select-practice .btn:after, #s-page-myaccount-practice-connect-list li.is-selected .action-select-practice #s-header-log-in:after, #s-page-myaccount-practice-connect-list li.is-selected .action-select-practice .btn i.icon, #s-page-myaccount-practice-connect-list li.is-selected .action-select-practice #s-header-log-in i.icon {
  visibility: visible; }

.practice-connect-details {
  display: none; }

#s-page-myaccount-practice-connect-list li.is-selected .practice-connect-details {
  display: block; }

#s-page-myaccount-practice-connect-list table tr {
  height: 50px; }

#s-page-myaccount-practice-connect-list table th:first-child {
  width: 50px; }

#s-page-myaccount-practice-connect-list table th .tooltip-wrap {
  margin-right: 3px; }
/* Patient Reviews */
#s-page-myaccount-reviews-table .table-actions {
  min-width: 160px; }

#review_history_div_left {
  float: left;
  width: 49%; }

#review_history_div_right {
  float: right;
  width: 49%; }
/* Manage Services */
#s-services table {
  display: table; }

#s-services td {
  padding: 10px; }

#s-services tr {
  height: auto; }

#s-services h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px; }

#s-services .s-services-practice > div:first-child h2 {
  margin-top: 28px; }

.s-services-practice > div:first-child {
  padding: 20px 0 15px 0;
  border-top: 1px solid #eaeaea; }

#s-services .s-services-practice:first-child > div:first-child {
  border-top: 0; }

.s-services-provider {
  margin-left: 30px; }
/* Manage Practice */
#s-practice-title-pic {
  display: table;
  margin: 20px 0 30px -38px;
  padding: 20px 0 20px 38px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea; }

#s-practice-title-pic h2 {
  width: 212px;
  padding: 0 5px 0 0;
  margin: 0;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600; }

#s-practice-title-pic a {
  font-size: 11px;
  top: 0px;
  position: relative; }

#s-practice-title-pic .profile-img {
  height: 60px;
  width: 60px;
  margin: 0 15px 0 -20px;
  float: left; }

#s-practice-title-pic .default-img-practice {
  background-position: -76px -324px; }

#loading-indicator {
  display: none;
  float: right;
  background: url(/images/loading.gif) no-repeat center right;
  height: 40px;
  padding-right: 40px;
  line-height: 40px;
  font-style: oblique;
  font-size: 11px;
  clear: both; }
/* Review Modal */
.review-modal h2, .review-modal-comment h2 {
  border-bottom: 1px solid #eaeaea;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px; }

.review-modal li {
  height: 40px;
  line-height: 40px;
  font-size: 14px; }

.review-modal .star-rating-sm {
  margin-top: 15px; }

.review-modal-comment {
  text-align: left; }

.review-modal-comment h2 {
  border-bottom: none; }

#img-rating-response {
  max-width: 80px;
  max-height: 80px; }

.review-modal-description {
  text-align: left; }

.profile-img-m {
  height: 70px !important;
  width: 70px !important;
  z-index: 100;
  margin-top: 20px; }
/* Insurance Select */
.insPlanStatus {
  height: 30px;
  overflow: hidden; }

.insPlanStatus.is-active {
  height: auto;
  overflow: hidden; }
/* Ratings Report */
.repRevTbl tr {
  height: 30px;
  border: none; }
/* Photo Grid */
#photo-grid li.box {
  padding: 0; }

#photo-grid .photo-wrap {
  padding: 10px; }

#photo-grid li .btn-group {
  margin-top: -15px;
  position: absolute;
  top: 50%;
  right: 20px; }

#photo-grid .photo-wrap img {
  height: auto;
  width: auto;
  max-width: 100%; }
/* AccountBilling */
.w-h-72 {
  width: 70px !important;
  height: 72px !important; }
/* Tracked calls */
.i-24.i-status_yes:after, .i-24.i-status_yes > i.icon {
  background-position: 0px -260px; }

.i-24.i-status_no:after, .i-24.i-status_no > i.icon {
  background-position: -33px -260px; }

.i-24.i-status_junk:after, .i-24.i-status_junk > i.icon {
  background-position: -64px -260px; }

.i-24.i-status_new:after, .i-24.i-status_new > i.icon {
  background-position: -93px -260px; }

.i-24.i-status_returning:after, .i-24.i-status_returning > i.icon {
  background-position: -123px -260px; }

.i-24.i-status_business:after, .i-24.i-status_business > i.icon {
  background-position: -153px -260px; }
/*
 ==========================================================================
 I. MEDIA QUERIES
 ========================================================================== */
/*
 ==========================================================================
 II. Modifiers & Helpers
 ========================================================================== */
/* Styling & Positioning
 -----------------------------------------------------------------*/
.ilb {
  display: inline-block !important; }

.db {
  display: block !important; }

.fl-l {
  float: left !important; }

.fl-r {
  float: right !important; }

.clear {
  clear: both; }

.txt-white, a.txt-white, .txt-white a {
  color: white; }

.txt-green, a.txt-green, .txt-green a {
  color: #8fbe00 !important; }

.txt-orange, a.txt-orange, .txt-orange a {
  color: #f90 !important; }

.txt-teal, a.txt-teal, .txt-teal a {
  color: #1f8686; }

.txt-grey, a.txt-grey, .txt-grey a {
  color: #9daab2; }

.txt-light-grey, a.txt-light-grey, .txt-light-grey a {
  color: #f2f2f2; }

.txt-red, a.txt-red, .txt-red a {
  color: #d75002; }

.txt-blue {
  color: blue; }

.txt-signika {
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif" !important; }

.txt-lora {
  font-family: "Lora", "Times New Roman", Times, Serif !important; }

.txt-light {
  font-weight: 300 !important; }

.txt-left {
  text-align: left !important; }

.txt-center {
  text-align: center; }

.txt-right {
  text-align: right; }

.txt-30 {
  font-size: 30px; }

.txt-nowrap {
  white-space: nowrap; }

.amp {
  font-family: Constantia, Palatino, "Palatino Linotype", "Lora", "Times New Roman", Times, Serif;
  font-style: italic; }

.invisible {
  visibility: hidden; }

.hidden {
  display: none !important; }

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

.cursor-p {
  cursor: pointer !important; }

.m-0 {
  margin: 0px !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-5 {
  margin-top: 5px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-40 {
  margin-top: 40px !important; }

.ml-0 {
  margin-left: 0 !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-40 {
  margin-left: 40px !important; }

.ml-50 {
  margin-left: 50px !important; }

.ml-100 {
  margin-left: 100px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-40 {
  margin-right: 40px !important; }

.mr-45 {
  margin-right: 45px !important; }

.mh-0 {
  min-height: 0px !important; }

.p-0 {
  padding: 0px !important; }

.p-10 {
  padding: 10px !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-5 {
  padding-bottom: 5px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pt-0 {
  padding-top: 0 !important; }

.pt-5 {
  padding-top: 5px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pl-0 {
  padding-left: 0 !important; }

.pl-5 {
  padding-left: 5px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pl-60 {
  padding-left: 60px !important; }

.pl-70 {
  padding-left: 70px !important; }

.pr-0 {
  padding-right: 0px !important; }

.pr-5 {
  padding-right: 5px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-30 {
  padding-right: 30px !important; }

.pr-40 {
  padding-right: 40px !important; }

.h-30 {
  height: 30px;
  line-height: 32px; }

.w-15 {
  width: 15%; }

.w-25 {
  width: 25%; }

.w-30 {
  width: 30%; }

.w-38 {
  width: 38%; }

.w-40 {
  width: 40% !important; }

.w-48 {
  width: 48%; }

.w-50 {
  width: 50%; }

.w-58 {
  width: 58%; }

.w-60 {
  width: 60% !important; }

.w-70 {
  width: 70%; }

.w-80 {
  width: 80% !important; }

.w-85 {
  width: 85%; }

.w-90 {
  width: 90% !important; }

.w-95 {
  width: 95% !important; }

.w-100 {
  width: 100%; }

.no-border {
  border: none !important; }
/* Font Size
 -----------------------------------------------------------------*/
.fs-10 {
  font-size: 10px !important; }

.fs-12 {
  font-size: 12px !important; }

.fs-13 {
  font-size: 13px !important; }

.fs-14 {
  font-size: 14px !important; }

.fs-16 {
  font-size: 16px !important; }

.fs-20 {
  font-size: 20px !important; }

.fs-30 {
  font-size: 30px !important; }
/* Fixed width
 -----------------------------------------------------------------*/
.wpx-500 {
  width: 500px !important; }

.wpx-225 {
  width: 225px !important; }

.wpx-210 {
  width: 210px !important; }

.wpx-200 {
  width: 200px !important; }

.wpx-160 {
  width: 160px !important; }

.wpx-150 {
  width: 150px !important; }

.wpx-120 {
  width: 120px !important; }

.wpx-110 {
  width: 110px !important; }

.wpx-100 {
  width: 100px !important; }

.wpx-80 {
  width: 80px !important; }

.wpx-70 {
  width: 70px !important; }

.wpx-60 {
  width: 60px !important; }

.wpx-50 {
  width: 50px !important; }

.wpx-45 {
  width: 45px !important; }

.wpx-40 {
  width: 40px !important; }

.wpx-30 {
  width: 30px !important; }

.wpx-20 {
  width: 20px !important; }
/* font color */
.text-black {
  color: #000 !important; }

.disabled-color {
  color: #ccc; }

.inputError {
  border: solid red 1px !important; }

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

.border-left {
  box-shadow: -1px 0 0 #eaeaea; }

.h-underline {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px; }

.l-underline {
  padding-bottom: 0px;
  padding-top: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px; }

.img-rep {
  /* For this image-replacement technique to work, the element must have a height and width defined */
  border: 0;
  background-color: transparent;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.img-rep:before {
  width: 0;
  height: 150%;
  display: block;
  content: ""; }

.clearfix:before, .clearfix:after, .list-h:before, .list-h:after {
  content: " ";
  display: table; }

.clearfix:after, .list-h:after {
  clear: both; }

.clearfix, .list-h {
  *zoom: 1; }
/* Alerts
 -----------------------------------------------------------------*/
.alert-success {
  background-color: #c0f2c3;
  padding: 15px; }

.alert-warning {
  background-color: #ebf2c0;
  padding: 15px; }

.alert-error {
  background-color: #f2c0c0;
  padding: 15px;
  margin-bottom: 35px; }
/** Tooltips
 * z-index set to 1 Because appear over the modal screen
 */
.tooltip-wrap {
  display: block !important;
  height: 14px;
  width: 14px !important;
  padding: 14px 10px 10px 10px;
  margin: -21px -10px 0 0;
  background: none !important;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  cursor: help;
  font-weight: 300;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */ }

.tooltip-icon {
  display: block;
  height: 12px;
  width: 12px !important;
  border: 1px solid #28b7b7;
  background: url(../images/sprite.png) -30px -102px !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #28b7b7;
  text-align: center;
  line-height: 17px;
  transition: 300ms; }

.tooltip-content {
  display: block;
  height: auto;
  width: 240px;
  padding: 15px;
  border-top: 5px solid #caee4d;
  position: absolute;
  bottom: 39px;
  left: -185px;
  z-index: 99;
  background: #eaffa8;
  border-radius: 2px;
  box-shadow: 0 1px 1px #83a03d;
  opacity: 0;
  visibility: hidden;
  color: #344600;
  font-size: 14px;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out; }

.tooltip-large .tooltip-content {
  width: 340px;
  left: -235px; }

.tooltip-small .tooltip-content {
  width: 180px;
  left: -155px; }

.tooltip-content h1 {
  margin: 0 0 10px 0;
  font-size: 18px; }

.tooltip-content a {
  box-shadow: 0 1px 0 #a0d821; }

.tooltip-content:after {
  content: ' ';
  display: block;
  height: 12px;
  width: 22px;
  margin-left: 56px;
  position: absolute;
  left: 50%;
  bottom: -12px;
  background: url(../images/sprite.png) -49px -102px; }

.tooltip-wrap:after {
  content: '';
  display: block;
  height: 30px;
  width: 250px;
  position: absolute;
  top: -1px;
  left: -113px;
  visibility: hidden; }

.tooltip-wrap.is-active:after {
  content: '';
  display: block;
  height: 30px;
  width: 250px;
  position: absolute;
  top: -1px;
  left: -113px;
  visibility: visible; }

.tooltip-wrap.is-active .tooltip-icon {
  border: 1px solid #86b41b;
  background-color: #caee4d;
  color: white;
  text-shadow: 0 1px 1px #83a03d; }

.tooltip-wrap.is-active .tooltip-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

label .tooltip-wrap {
  text-transform: none; }
/* Icons
 -----------------------------------------------------------------*/
/* Elements styled with these classes must have a fixed height explicitly set */
.i-12, .i-16, .i-20, .i-24 {
  display: block; }
/* textless icons */
.i-12.img-rep, .i-16.img-rep, .i-20.img-rep, .i-24.img-rep {
  position: relative; }

.i-12.img-rep {
  height: 12px;
  width: 12px; }

.i-16.img-rep {
  height: 16px;
  width: 16px; }

.i-20.img-rep {
  height: 20px;
  width: 20px; }

.i-24.img-rep {
  height: 24px;
  width: 24px; }
/* 12x12 icons
 --------------------*/
.i-12:before, .i-12 > i.icon, .i-12.i-manual {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 5px 7px 0 0;
  background-image: url(../images/sprite.png);
  content: ''; }

.i-12.img-rep:before, .i-12.img-rep > i.icon, .i-12.img-rep.i-manual {
  margin-right: 0;
  position: absolute; }

.i-12.i-plus:before, .i-12.i-plus > i.icon, .i-12.i-plus.i-manual {
  background-position: -12px -168px; }

.i-12.i-plus-white:before, .i-12.i-plus-white > i.icon {
  background-position: -12px -179px; }

.i-12.i-x:before, .i-12.i-x > i.icon, .i-12.i-x.i-manual {
  position: relative;
  display: block;
  margin-top: 9px;
  background-position: -46px -168px; }

.i-12.i-x-white:before, .i-12.i-x-white > i.icon, .i-12.i-x-white.i-manual {
  background-position: -46px -180px; }

.i-12.i-carat:before, .i-12.i-carat > i.icon {
  background-position: -24px -168px; }

.i-12.i-carat-white:before, .i-12.i-carat-white > i.icon, .i-12.i-carat-white.i-manual {
  background-position: -58px -168px; }

.i-12.i-pause:before, .i-12.i-pause > i.icon {
  background-position: -70px -168px; }
/* 16x16 icons
 --------------------*/
.i-16:after, .i-16 > i.icon {
  display: block;
  height: 16px;
  width: 16px;
  margin: -8px 10px 0 0;
  position: relative;
  top: 50%;
  float: left;
  background-image: url(../images/sprite.png);
  content: ''; }

.i-16.img-rep:after, .i-16.img-rep > i.icon {
  margin-right: 0;
  position: absolute; }

.i-16.i-login:after, .i-16.i-login > i.icon {
  background-position: 0 -120px; }

.i-16.i-bio:after, .i-16.i-bio > i.icon {
  background-position: -16px -120px; }

.i-16.i-calendar-dark:after, .i-16.i-calendar-dark > i.icon {
  background-position: -48px -136px; }

.i-16.i-search:after, .i-16.i-search > i.icon {
  background-position: -64px -120px; }

.i-16.i-download:after, .i-16.i-download > i.icon {
  background-position: -144px -120px; }

.i-16.i-pdf:after, .i-16.i-pdf > i.icon {
  background-position: -160px -120px; }

.i-16.i-print:after, .i-16.i-print > i.icon {
  background-position: -16px -152px; }

.i-16.i-print-dark:after, .i-16.i-print-dark > i.icon {
  background-position: -16px -136px; }

.i-16.i-provider:after, .i-16.i-provider > i.icon {
  background-position: -96px -120px; }

.i-16.i-provider-dark:after, .i-16.i-provider-dark > i.icon {
  background-position: -112px -120px; }

.i-16.i-provider-white:after, .i-16.i-provider-white > i.icon {
  background-position: -128px -120px; }
/* Facebook (alt) )*/
.i-16.i-facebook:after, .i-16.i-facebook > i.icon {
  background-position: -64px -136px; }
/* Twitter */
.i-16.i-twitter:after, .i-16.i-twitter > i.icon {
  background-position: -80px -136px; }
/* 20x20 icons
 --------------------*/
.i-20:after, .i-20 > i.icon, .i-20.i-manual {
  display: block;
  height: 20px;
  width: 20px;
  margin: -10px 10px 0 0;
  position: relative;
  top: 50%;
  float: left;
  background-image: url(../images/sprite.png);
  content: ''; }

.i-20.img-rep:after, .i-20.img-rep > i.icon, .i-20.img-rep.i-manual {
  margin-right: 0;
  position: absolute; }
/* Insurance */
.i-20.i-insurance:after, .i-20.i-insurance > i.icon {
  background-position: 0px 0px; }

.i-20.i-insurance-dark:after, .i-20.i-insurance-dark > i.icon {
  background-position: 0px -20px; }

.i-20.i-insurance-white:after, .i-20.i-insurance-white > i.icon {
  background-position: 0px -40px; }
/* Dollar Sign */
.i-20.i-money:after, .i-20.i-money > i.icon {
  background-position: -20px 0px; }

.i-20.i-money-dark:after, .i-20.i-money-dark > i.icon {
  background-position: -20px -20px; }

.i-20.i-money-white:after, .i-20.i-money-white > i.icon {
  background-position: -20px -40px; }
/* Education */
.i-20.i-education:after, .i-20.i-education > i.icon {
  background-position: -40px 0px; }

.i-20.i-education-dark:after, .i-20.i-education-dark > i.icon {
  background-position: -40px -20px; }

.i-20.i-education-white:after, .i-20.i-education-white > i.icon {
  background-position: -40px -40px; }
/* Awards Ribbon */
.i-20.i-award:after, .i-20.i-award > i.icon {
  background-position: -60px 0px; }

.i-20.i-award-dark:after, .i-20.i-award-dark > i.icon {
  background-position: -60px -20px; }

.i-20.i-award-white:after, .i-20.i-award-white > i.icon {
  background-position: -60px -40px; }
/* Procedures List */
.i-20.i-procedures:after, .i-20.i-procedures > i.icon {
  background-position: -80px 0px; }

.i-20.i-procedures-dark:after, .i-20.i-procedures-dark > i.icon {
  background-position: -80px -20px; }

.i-20.i-procedures-white:after, .i-20.i-procedures-white > i.icon {
  background-position: -80px -40px; }
/* Generic List */
.i-20.i-list:after, .i-20.i-list > i.icon {
  background-position: -100px 0px; }

.i-20.i-list-dark:after, .i-20.i-list-dark > i.icon {
  background-position: -100px -20px; }

.i-20.i-list-white:after, .i-20.i-list-white > i.icon {
  background-position: -100px -40px; }
/* Medications (Pill) */
.i-20.i-medications:after, .i-20.i-medications > i.icon {
  background-position: -120px 0px; }

.i-20.i-medications-dark:after, .i-20.i-medications-dark > i.icon {
  background-position: -120px -20px; }

.i-20.i-medications-white:after, .i-20.i-medications-white > i.icon {
  background-position: -120px -40px; }
/* Photos */
.i-20.i-photos:after, .i-20.i-photos > i.icon {
  background-position: -140px 0px; }

.i-20.i-photos-dark:after, .i-20.i-photos-dark > i.icon {
  background-position: -140px -20px; }

.i-20.i-photos-white:after, .i-20.i-photos-white > i.icon {
  background-position: -140px -40px; }
/* Biography*/
.i-20.i-bio:after, .i-20.i-bio > i.icon {
  background-position: -160px 0px; }

.i-20.i-bio-dark:after, .i-20.i-bio-dark > i.icon {
  background-position: -160px -20px; }

.i-20.i-bio-white:after, .i-20.i-bio-white > i.icon {
  background-position: -160px -40px; }
/* Videos */
.i-20.i-video:after, .i-20.i-video > i.icon {
  background-position: -180px 0px; }

.i-20.i-video-dark:after, .i-20.i-video-dark > i.icon {
  background-position: -180px -20px; }

.i-20.i-video-white:after, .i-20.i-video-white > i.icon {
  background-position: -180px -40px; }
/* Comments */
.i-20.i-comments:after, .i-20.i-comments > i.icon {
  background-position: -200px 0px; }

.i-20.i-comments-dark:after, .i-20.i-comments-dark > i.icon {
  background-position: -200px -20px; }

.i-20.i-comments-white:after, .i-20.i-comments-white > i.icon {
  background-position: -200px -40px; }
/* Hospital/Practice */
.i-20.i-practice:after, .i-20.i-practice > i.icon {
  background-position: -220px 0px; }

.i-20.i-practice-dark:after, .i-20.i-practice-dark > i.icon {
  background-position: -220px -20px; }

.i-20.i-practice-white:after, .i-20.i-practice-white > i.icon {
  background-position: -220px -40px; }
/* Specialties List */
.i-20.i-specialties:after, .i-20.i-specialties > i.icon {
  background-position: -240px 0px; }

.i-20.i-specialties-dark:after, .i-20.i-specialties-dark > i.icon {
  background-position: -240px -20px; }

.i-20.i-specialties-white:after, .i-20.i-specialties-white > i.icon {
  background-position: -240px -40px; }
/* Compose / Edit */
.i-20.i-compose:after, .i-20.i-compose > i.icon {
  background-position: -260px 0px; }

.i-20.i-compose-dark:after, .i-20.i-compose-dark > i.icon {
  background-position: -260px -20px; }

.i-20.i-compose-white:after, .i-20.i-compose-white > i.icon {
  background-position: -260px -40px; }
/* Provider Group */
.i-20.i-providers:after, .i-20.i-providers > i.icon {
  background-position: -280px 0px; }

.i-20.i-providers-dark:after, .i-20.i-providers-dark > i.icon {
  background-position: -280px -20px; }

.i-20.i-providers-white:after, .i-20.i-providers-white > i.icon {
  background-position: -280px -40px; }
/* Incoming */
.i-20.i-incoming:after, .i-20.i-incoming > i.icon {
  background-position: -300px 0px; }

.i-20.i-incoming-dark:after, .i-20.i-incoming-dark > i.icon {
  background-position: -300px -20px; }

.i-20.i-incoming-white:after, .i-20.i-incoming-white > i.icon {
  background-position: -300px -40px; }
/* Outgoing */
.i-20.i-outgoing:after, .i-20.i-outgoing > i.icon {
  background-position: -320px 0px; }

.i-20.i-outgoing-dark:after, .i-20.i-outgoing-dark > i.icon {
  background-position: -320px -20px; }

.i-20.i-outgoing-white:after, .i-20.i-outgoing-white > i.icon {
  background-position: -320px -40px; }
/* Phone */
.i-20.i-phone:after, .i-20.i-phone > i.icon {
  background-position: -340px 0px; }

.i-20.i-phone-dark:after, .i-20.i-phone-dark > i.icon {
  background-position: -340px -20px; }

.i-20.i-phone-white:after, .i-20.i-phone-white > i.icon {
  background-position: -340px -40px; }
/* Note */
.i-20.i-note:after, .i-20.i-note > i.icon {
  background-position: -360px 0px;
  margin-top: 0; }

.i-20.i-note-dark:after, .i-20.i-note-dark > i.icon {
  background-position: -360px -20px; }

.i-20.i-note-white:after, .i-20.i-note-white > i.icon {
  background-position: -360px -40px; }
/* CCard */
.i-20.i-ccard:after, .i-20.i-ccard > i.icon {
  background-position: -380px 0px; }

.i-20.i-ccard-dark:after, .i-20.i-ccard-dark > i.icon {
  background-position: -380px -20px; }

.i-20.i-ccard-white:after, .i-20.i-ccard-white > i.icon {
  background-position: -380px -40px; }
/* Profile */
.i-20.i-profile:after, .i-20.i-profile > i.icon {
  background-position: -400px 0px; }

.i-20.i-profile-dark:after, .i-20.i-profile-dark > i.icon {
  background-position: -400px -20px; }

.i-20.i-profile-white:after, .i-20.i-profile-white > i.icon {
  background-position: -400px -40px; }
/* Calendar */
.i-20.i-calendar:after, .i-20.i-calendar > i.icon {
  background-position: -420px 0px; }

.i-20.i-calendar-dark:after, .i-20.i-calendar-dark > i.icon {
  background-position: -420px -20px; }

.i-20.i-calendar-white:after, .i-20.i-calendar-white > i.icon {
  background-position: -420px -40px; }
/* Marketing */
.i-20.i-growth:after, .i-20.i-growth > i.icon {
  background-position: -440px 0px; }

.i-20.i-growth-dark:after, .i-20.i-growth-dark > i.icon {
  background-position: -440px -20px; }

.i-20.i-growth-white:after, .i-20.i-growth-white > i.icon {
  background-position: -440px -40px; }
/* Settings */
.i-20.i-settings:after, .i-20.i-settings > i.icon {
  background-position: -460px 0px; }

.i-20.i-settings-dark:after, .i-20.i-settings-dark > i.icon {
  background-position: -460px -20px; }

.i-20.i-settings-white:after, .i-20.i-settings-white > i.icon {
  background-position: -460px -40px; }
/* Reports */
.i-20.i-graph:after, .i-20.i-graph > i.icon {
  background-position: -480px 0px; }

.i-20.i-graph-dark:after, .i-20.i-graph-dark > i.icon {
  background-position: -480px -20px; }

.i-20.i-graph-white:after, .i-20.i-graph-white > i.icon {
  background-position: -480px -40px; }
/* Flag */
.i-20.i-flag:after, .i-20.i-flag > i.icon {
  background-position: -500px 0px; }

.i-20.i-flag-dark:after, .i-20.i-flag-dark > i.icon {
  background-position: -500px -20px; }

.i-20.i-flag-white:after, .i-20.i-flag-white > i.icon {
  background-position: -500px -40px; }
/* Copy */
.i-20.i-copy:after, .i-20.i-copy > i.icon {
  background-position: -520px 0px; }

.i-20.i-copy-dark:after, .i-20.i-copy-dark > i.icon {
  background-position: -520px -20px; }

.i-20.i-copy-white:after, .i-20.i-copy-white > i.icon {
  background-position: -520px -40px; }
/* Logout */
.i-20.i-logout:after, .i-20.i-logout > i.icon {
  background-position: -540px 0px; }

.i-20.i-logout-dark:after, .i-20.i-logout-dark > i.icon {
  background-position: -540px -20px; }

.i-20.i-logout-white:after, .i-20.i-logout-white > i.icon {
  background-position: -540px -40px; }
/* Blowhorn */
.i-20.i-blowhorn:after, .i-20.i-blowhorn > i.icon {
  background-position: -760px 0px; }

.i-20.i-blowhorn-dark:after, .i-20.i-blowhorn-dark > i.icon {
  background-position: -760px -20px; }

.i-20.i-blowhorn-white:after, .i-20.i-blowhorn-white > i.icon {
  background-position: -760px -40px; }

.i-20.i-blowhorn-green:after, .i-20.i-blowhorn-green > i.icon {
  background-position: -760px -60px; }
/* Star */
.i-20.i-star:after, .i-20.i-star > i.icon {
  background-position: -560px 0px; }

.i-20.i-star-dark:after, .i-20.i-star-dark > i.icon {
  background-position: -560px -20px; }

.i-20.i-star-white:after, .i-20.i-star-white > i.icon .i-20.i-resize:after, .i-20.i-resize > i.icon {
  /* Resize */
  background-position: -580px 0px; }

.i-20.i-resize-dark:after, .i-20.i-resize-dark > i.icon {
  background-position: -580px -20px; }

.i-20.i-resize-white:after, .i-20.i-resize-white > i.icon {
  background-position: -580px -40px; }
/* Shopping Cart */
.i-20.i-cart:after, .i-20.i-cart > i.icon {
  background-position: -600px 0px; }

.i-20.i-cart-dark:after, .i-20.i-cart-dark > i.icon {
  background-position: -600px -20px; }

.i-20.i-cart-white:after, .i-20.i-cart-white > i.icon {
  background-position: -600px -40px; }
/* Cell Phone */
.i-20.i-cellphone:after, .i-20.i-cellphone > i.icon {
  background-position: -780px 0px; }

.i-20.i-cellphone-dark:after, .i-20.i-cellphone-dark > i.icon {
  background-position: -780px -20px; }

.i-20.i-cellphone-white:after, .i-20.icellphone-white > i.icon {
  background-position: -780px -40px; }
/* History */
.i-20.i-history:after, .i-20.i-history > i.icon {
  background-position: -800px 0px; }

.i-20.i-history-dark:after, .i-20.i-history-dark > i.icon {
  background-position: -800px -20px; }

.i-20.i-history-white:after, .i-20.history-white > i.icon {
  background-position: -800px -40px; }
/* Check Mark */
.i-20.i-check:after, .i-20.i-check > i.icon, .i-20.i-check.i-manual {
  background-position: -72px -98px; }

.i-20.i-check-white:after, .i-20.i-check-white > i.icon {
  background-position: -105px -98px; }
/* Text Settings */
.i-20.i-text:after, .i-20.i-text > i.icon {
  background-position: -840px 0px; }

.i-20.i-text-dark:after, .i-20.i-text-dark > i.icon {
  background-position: -840px -20px; }

.i-20.i-text-white:after, .i-20.text-white > i.icon {
  background-position: -840px -40px; }
/* Verified Review */
.i-20.i-verified:after, .i-20.i-verified > i.icon {
  background-position: -740px 0px; }

.i-20.i-verified-dark:after, .i-20.i-verified-dark > i.icon {
  background-position: -740px -20px; }

.i-20.i-verified-white:after, .i-20.i-verified-white > i.G {
  background-position: -740px -40px; }

.i-20.i-verified-green:after, .i-20.i-verified-green > i.icon {
  background-position: -740px -60px;
  margin: -10px 5px 0px 0px !important; }
/* Facebook */
.i-20.i-facebook:after, .i-20.i-facebook > i.icon {
  background-position: -819px 0px; }

.i-20.i-facebook-dark:after, .i-20.i-facebook-dark > i.icon {
  background-position: -819px -20px; }

.i-20.i-facebook-white:after, .i-20.facebook-white > i.icon {
  background-position: -819px -40px; }
/* Messaging */
.i-20.i-messaging:after, .i-20.i-messaging > i.icon {
  background-position: -908px 0px; }

.i-20.i-messaging-dark:after, .i-20.i-messaging-dark > i.icon {
  background-position: -908px -20px; }

.i-20.i-messaging-white:after, .i-20.i-messaging-white > i.icon {
  background-position: -908px -40px; }
/* 24x24 icons
 --------------------*/
.i-24:after, .i-24 > i.icon, .i-24.i-manual {
  display: block;
  height: 24px;
  width: 24px;
  margin: -12px 12px 0 0;
  position: relative;
  top: 50%;
  float: left;
  background-image: url(../images/sprite.png);
  content: ''; }

.i-24.img-rep:after, .i-24.img-rep > i.icon {
  margin-right: 0;
  position: absolute; }

.i-24.i-new-account:after, .i-24.i-new-account > i.icon {
  background-position: 0 -96px; }

.i-24.i-logged-in:after, .i-24.i-logged-in > i.icon {
  background-position: -125px -96px; }

.i-24.i-logged-in-white:after, .i-24.i-logged-in-white > i.icon, .i-24.i-logged-in-white.i-manual {
  background-position: -149px -96px; }

.i-24.i-logged-in-dark:after, .i-24.i-logged-in-dark > i.icon {
  background-position: -173px -96px; }

.i-24.i-add-practice:after, .i-24.i-add-practice > i.icon {
  background-position: -197px -96px; }

.i-24.i-add-practice-white:after, .i-24.i-add-practice-white > i.icon {
  background-position: -221px -96px; }

.i-24.i-add-practice-dark:after, .i-24.i-add-practice-dark > i.icon {
  background-position: -245px -96px; }
/* Mail Password */
.i-24.i-mail-pass:after, .i-24.i-mail-pass > i.icon {
  background-position: -885px 0px; }

.i-24.i-mail-pass-dark:after, .i-24.i-mail-pass-dark > i.icon {
  background-position: -845px -20px; }

.i-24.i--mail-pas-white:after, .i-24.i-mail-pass-white > i.icon {
  background-position: -845px -40px; }

.i-24.i-v-mail-pas-green:after, .i-24.i-mail-pass-green > i.icon {
  background-position: -845px -60px;
  margin: -10px 5px 0px 0px !important; }
/* Manually placed
 --------------------*/
.i-manual:after {
  display: none; }
/* Right-aligned Icons: .i-r */
.i-12.i-r:after, .i-12.i-r > i.icon, .i-16.i-r:after, .i-16.i-r > i.icon, .i-20.i-r:after, .i-20.i-r > i.icon, .i-24.i-r:after, .i-24.i-r > i.icon, .i-r.i-manual {
  float: right;
  margin-left: 10px;
  margin-right: 0;
  pointer-events: none; }
/* Left-aligned Icons: i-20-left */
.i-20-new > * {
  vertical-align: middle;
  line-height: normal; }

.i-20-new.i-note:before {
  background-position: -360px 0px;
  margin-top: 0; }

.i-20-new:before {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0px 10px 0 0;
  position: relative;
  background-image: url(../images/sprite.png);
  content: '';
  vertical-align: middle;
  line-height: normal; }
/* Insurance */
.i-20-new.i-insurance:before, .i-20-new.i-insurance > i.icon {
  background-position: 0px 0px; }

.i-20-new.i-insurance-dark:before, .i-20-new.i-insurance-dark > i.icon {
  background-position: 0px -20px; }

.i-20-new.i-insurance-white:before, .i-20-new.i-insurance-white > i.icon {
  background-position: 0px -40px; }
/* Dollar Sign */
.i-20-new.i-money:before, .i-20-new.i-money > i.icon {
  background-position: -20px 0px; }

.i-20-new.i-money-dark:before, .i-20-new.i-money-dark > i.icon {
  background-position: -20px -20px; }

.i-20-new.i-money-white:before, .i-20-new.i-money-white > i.icon {
  background-position: -20px -40px; }
/* Education */
.i-20-new.i-education:before, .i-20-new.i-education > i.icon {
  background-position: -40px 0px; }

.i-20-new.i-education-dark:before, .i-20-new.i-education-dark > i.icon {
  background-position: -40px -20px; }

.i-20-new.i-education-white:before, .i-20-new.i-education-white > i.icon {
  background-position: -40px -40px; }
/* Awards Ribbon */
.i-20-new.i-award:before, .i-20-new.i-award > i.icon {
  background-position: -60px 0px; }

.i-20-new.i-award-dark:before, .i-20-new.i-award-dark > i.icon {
  background-position: -60px -20px; }

.i-20-new.i-award-white:before, .i-20-new.i-award-white > i.icon {
  background-position: -60px -40px; }
/* Procedures List */
.i-20-new.i-procedures:before, .i-20-new.i-procedures > i.icon {
  background-position: -80px 0px; }

.i-20-new.i-procedures-dark:before, .i-20-new.i-procedures-dark > i.icon {
  background-position: -80px -20px; }

.i-20-new.i-procedures-white:before, .i-20-new.i-procedures-white > i.icon {
  background-position: -80px -40px; }
/* Generic List */
.i-20-new.i-list:before, .i-20-new.i-list > i.icon {
  background-position: -100px 0px; }

.i-20-new.i-list-dark:before, .i-20-new.i-list-dark > i.icon {
  background-position: -100px -20px; }

.i-20-new.i-list-white:before, .i-20-new.i-list-white > i.icon {
  background-position: -100px -40px; }
/* Medications (Pill) */
.i-20-new.i-medications:before, .i-20-new.i-medications > i.icon {
  background-position: -120px 0px; }

.i-20-new.i-medications-dark:before, .i-20-new.i-medications-dark > i.icon {
  background-position: -120px -20px; }

.i-20-new.i-medications-white:before, .i-20-new.i-medications-white > i.icon {
  background-position: -120px -40px; }
/* Photos */
.i-20-new.i-photos:before, .i-20-new.i-photos > i.icon {
  background-position: -140px 0px; }

.i-20-new.i-photos-dark:before, .i-20-new.i-photos-dark > i.icon {
  background-position: -140px -20px; }

.i-20-new.i-photos-white:before, .i-20-new.i-photos-white > i.icon {
  background-position: -140px -40px; }
/* Biography*/
.i-20-new.i-bio:before, .i-20-new.i-bio > i.icon {
  background-position: -160px 0px; }

.i-20-new.i-bio-dark:before, .i-20-new.i-bio-dark > i.icon {
  background-position: -160px -20px; }

.i-20-new.i-bio-white:before, .i-20-new.i-bio-white > i.icon {
  background-position: -160px -40px; }
/* Videos */
.i-20-new.i-video:before, .i-20-new.i-video > i.icon {
  background-position: -180px 0px; }

.i-20-new.i-video-dark:before, .i-20-new.i-video-dark > i.icon {
  background-position: -180px -20px; }

.i-20-new.i-video-white:before, .i-20-new.i-video-white > i.icon {
  background-position: -180px -40px; }
/* Comments */
.i-20-new.i-comments:before, .i-20-new.i-comments > i.icon {
  background-position: -200px 0px; }

.i-20-new.i-comments-dark:before, .i-20-new.i-comments-dark > i.icon {
  background-position: -200px -20px; }

.i-20-new.i-comments-white:before, .i-20-new.i-comments-white > i.icon {
  background-position: -200px -40px; }
/* Hospital/Practice */
.i-20-new.i-practice:before, .i-20-new.i-practice > i.icon {
  background-position: -220px 0px; }

.i-20-new.i-practice-dark:before, .i-20-new.i-practice-dark > i.icon {
  background-position: -220px -20px; }

.i-20-new.i-practice-white:before, .i-20-new.i-practice-white > i.icon {
  background-position: -220px -40px; }
/* Specialties List */
.i-20-new.i-specialties:before, .i-20-new.i-specialties > i.icon {
  background-position: -240px 0px; }

.i-20-new.i-specialties-dark:before, .i-20-new.i-specialties-dark > i.icon {
  background-position: -240px -20px; }

.i-20-new.i-specialties-white:before, .i-20-new.i-specialties-white > i.icon {
  background-position: -240px -40px; }
/* Compose / Edit */
.i-20-new.i-compose:before, .i-20-new.i-compose > i.icon {
  background-position: -260px 0px; }

.i-20-new.i-compose-dark:before, .i-20-new.i-compose-dark > i.icon {
  background-position: -260px -20px; }

.i-20-new.i-compose-white:before, .i-20-new.i-compose-white > i.icon {
  background-position: -260px -40px; }
/* Provider Group */
.i-20-new.i-providers:before, .i-20-new.i-providers > i.icon {
  background-position: -280px 0px; }

.i-20-new.i-providers-dark:before, .i-20-new.i-providers-dark > i.icon {
  background-position: -280px -20px; }

.i-20-new.i-providers-white:before, .i-20-new.i-providers-white > i.icon {
  background-position: -280px -40px; }
/* Incoming */
.i-20-new.i-incoming:before, .i-20-new.i-incoming > i.icon {
  background-position: -300px 0px; }

.i-20-new.i-incoming-dark:before, .i-20-new.i-incoming-dark > i.icon {
  background-position: -300px -20px; }

.i-20-new.i-incoming-white:before, .i-20-new.i-incoming-white > i.icon {
  background-position: -300px -40px; }
/* Outgoing */
.i-20-new.i-outgoing:before, .i-20-new.i-outgoing > i.icon {
  background-position: -320px 0px; }

.i-20-new.i-outgoing-dark:before, .i-20-new.i-outgoing-dark > i.icon {
  background-position: -320px -20px; }

.i-20-new.i-outgoing-white:before, .i-20-new.i-outgoing-white > i.icon {
  background-position: -320px -40px; }
/* Phone */
.i-20-new.i-phone:before, .i-20-new.i-phone > i.icon {
  background-position: -340px 0px; }

.i-20-new.i-phone-dark:before, .i-20-new.i-phone-dark > i.icon {
  background-position: -340px -20px; }

.i-20-new.i-phone-white:before, .i-20-new.i-phone-white > i.icon {
  background-position: -340px -40px; }
/* Note */
.i-20-new.i-note:before, .i-20-new.i-note > i.icon {
  background-position: -360px 0px;
  margin-top: 0; }

.i-20-new.i-note-dark:before, .i-20-new.i-note-dark > i.icon {
  background-position: -360px -20px; }

.i-20-new.i-note-white:before, .i-20-new.i-note-white > i.icon {
  background-position: -360px -40px; }
/* CCard */
.i-20-new.i-ccard:before, .i-20-new.i-ccard > i.icon {
  background-position: -380px 0px; }

.i-20-new.i-ccard-dark:before, .i-20-new.i-ccard-dark > i.icon {
  background-position: -380px -20px; }

.i-20-new.i-ccard-white:before, .i-20-new.i-ccard-white > i.icon {
  background-position: -380px -40px; }
/* Profile */
.i-20-new.i-profile:before, .i-20-new.i-profile > i.icon {
  background-position: -400px 0px; }

.i-20-new.i-profile-dark:before, .i-20-new.i-profile-dark > i.icon {
  background-position: -400px -20px; }

.i-20-new.i-profile-white:before, .i-20-new.i-profile-white > i.icon {
  background-position: -400px -40px; }
/* Calendar */
.i-20-new.i-calendar:before, .i-20-new.i-calendar > i.icon {
  background-position: -420px 0px; }

.i-20-new.i-calendar-dark:before, .i-20-new.i-calendar-dark > i.icon {
  background-position: -420px -20px; }

.i-20-new.i-calendar-white:before, .i-20-new.i-calendar-white > i.icon {
  background-position: -420px -40px; }
/* Marketing */
.i-20-new.i-growth:before, .i-20-new.i-growth > i.icon {
  background-position: -440px 0px; }

.i-20-new.i-growth-dark:before, .i-20-new.i-growth-dark > i.icon {
  background-position: -440px -20px; }

.i-20-new.i-growth-white:before, .i-20-new.i-growth-white > i.icon {
  background-position: -440px -40px; }
/* Settings */
.i-20-new.i-settings:before, .i-20-new.i-settings > i.icon {
  background-position: -460px 0px; }

.i-20-new.i-settings-dark:before, .i-20-new.i-settings-dark > i.icon {
  background-position: -460px -20px; }

.i-20-new.i-settings-white:before, .i-20-new.i-settings-white > i.icon {
  background-position: -460px -40px; }
/* Reports */
.i-20-new.i-graph:before, .i-20-new.i-graph > i.icon {
  background-position: -480px 0px; }

.i-20-new.i-graph-dark:before, .i-20-new.i-graph-dark > i.icon {
  background-position: -480px -20px; }

.i-20-new.i-graph-white:before, .i-20-new.i-graph-white > i.icon {
  background-position: -480px -40px; }
/* Flag */
.i-20-new.i-flag:before, .i-20-new.i-flag > i.icon {
  background-position: -500px 0px; }

.i-20-new.i-flag-dark:before, .i-20-new.i-flag-dark > i.icon {
  background-position: -500px -20px; }

.i-20-new.i-flag-white:before, .i-20-new.i-flag-white > i.icon {
  background-position: -500px -40px; }
/* Copy */
.i-20-new.i-copy:before, .i-20-new.i-copy > i.icon {
  background-position: -520px 0px; }

.i-20-new.i-copy-dark:before, .i-20-new.i-copy-dark > i.icon {
  background-position: -520px -20px; }

.i-20-new.i-copy-white:before, .i-20-new.i-copy-white > i.icon {
  background-position: -520px -40px; }
/* Logout */
.i-20-new.i-logout:before, .i-20-new.i-logout > i.icon {
  background-position: -540px 0px; }

.i-20-new.i-logout-dark:before, .i-20-new.i-logout-dark > i.icon {
  background-position: -540px -20px; }

.i-20-new.i-logout-white:before, .i-20-new.i-logout-white > i.icon {
  background-position: -540px -40px; }
/* Blowhorn */
.i-20-new.i-blowhorn:before, .i-20-new.i-blowhorn > i.icon {
  background-position: -760px 0px; }

.i-20-new.i-blowhorn-dark:before, .i-20-new.i-blowhorn-dark > i.icon {
  background-position: -760px -20px; }

.i-20-new.i-blowhorn-white:before, .i-20-new.i-blowhorn-white > i.icon {
  background-position: -760px -40px; }

.i-20-new.i-blowhorn-green:before, .i-20-new.i-blowhorn-green > i.icon {
  background-position: -760px -60px; }
/* Star */
.i-20-new.i-star:before, .i-20-new.i-star > i.icon {
  background-position: -560px 0px; }

.i-20-new.i-star-dark:before, .i-20-new.i-star-dark > i.icon {
  background-position: -560px -20px; }

.i-20-new.i-star-white:before, .i-20-new.i-star-white > i.icon .i-20-new.i-resize:before, .i-20-new.i-resize > i.icon {
  /* Resize */
  background-position: -580px 0px; }

.i-20-new.i-resize-dark:before, .i-20-new.i-resize-dark > i.icon {
  background-position: -580px -20px; }

.i-20-new.i-resize-white:before, .i-20-new.i-resize-white > i.icon {
  background-position: -580px -40px; }
/* Shopping Cart */
.i-20-new.i-cart:before, .i-20-new.i-cart > i.icon {
  background-position: -600px 0px; }

.i-20-new.i-cart-dark:before, .i-20-new.i-cart-dark > i.icon {
  background-position: -600px -20px; }

.i-20-new.i-cart-white:before, .i-20-new.i-cart-white > i.icon {
  background-position: -600px -40px; }
/* Cell Phone */
.i-20-new.i-cellphone:before, .i-20-new.i-cellphone > i.icon {
  background-position: -780px 0px; }

.i-20-new.i-cellphone-dark:before, .i-20-new.i-cellphone-dark > i.icon {
  background-position: -780px -20px; }

.i-20-new.i-cellphone-white:before, .i-20-new.icellphone-white > i.icon {
  background-position: -780px -40px; }
/* History */
.i-20-new.i-history:before, .i-20-new.i-history > i.icon {
  background-position: -800px 0px; }

.i-20-new.i-history-dark:before, .i-20-new.i-history-dark > i.icon {
  background-position: -800px -20px; }

.i-20-new.i-history-white:before, .i-20-new.history-white > i.icon {
  background-position: -800px -40px; }
/* Check Mark */
.i-20-new.i-check:before {
  background-position: -72px -98px; }

.i-20-new.i-check-white:before {
  background-position: -105px -98px; }
/* Select2
 -----------------------------------------------------------------*/
.select2-container {
  width: 100%;
  margin: 0;
  position: relative; }

.form-group-inline .select2-container {
  display: table-cell; }

.select2-container a:hover {
  box-shadow: none; }

.select2-container, .select2-drop, .select2-search, .select2-search input {
  /*
   Force border-box so that % widths fit the parent
   container without overlap because of margin/padding.
   More Info : http://www.quirksmode.org/css/box.html
   */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */ }

.select2-input {
  position: relative;
  background: url(../images/search-16.png) center right no-repeat;
  box-shadow: none; }

input[type="text"].select2-input:focus {
  box-shadow: none; }

.select2-container .select2-choice {
  height: 40px;
  width: 99.5%;
  border: 1px solid #c5c5db;
  padding: 5px 0 0 0;
  background: none;
  text-indent: 7px;
  display: block;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  color: #444;
  text-decoration: none;
  background-clip: padding-box;
  box-shadow: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: 300 16px/20px "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  outline: 0; }

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px; }

.select2-container .select2-choice > .select2-chosen {
  height: 36px;
  line-height: 36px;
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  outline: 0; }

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block; }

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer; }

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0); }

.select2-drop {
  width: 100%;
  margin-top: -47px;
  position: absolute;
  z-index: 9999;
  top: 0;
  border-top: 0;
  background-color: #e0f8f8; }

.select2-drop-auto-width {
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-drop-active .select2-search input, .select2-container-multi.select2-container-active.select2-dropdown-open {
  border-bottom: 0; }

.select2-drop.select2-drop-above {
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  margin-top: -5px; }

.select2-drop-active {
  border-top: none; }

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-clip: padding-box; }

.select2-container .select2-choice .select2-arrow b {
  display: block;
  height: 4px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../images/sprite.png) -26px -172px;
  pointer-events: none; }

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  position: relative;
  z-index: 10000;
  white-space: nowrap; }

.select2-search input, .select2-search input:focus {
  height: 46px;
  background-color: #bbefef; }

.select2-search input.select2-active {
  background-image: url('/images/v4/select2-spinner.gif') no-repeat 100%; }

.select2-container-active .select2-choice, .select2-container-active .select2-choices {
  outline: none; }

.select2-dropdown-open .select2-choice {
  border-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none; }

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px; }
/* results */
.select2-results {
  max-height: 200px;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: 1px solid #4ad7d7; }

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0; }

.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px; }

.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px; }

.select2-results li {
  padding: 0;
  list-style: none;
  display: list-item;
  background-image: none;
  border-bottom: 1px solid #bbefef; }

.select2-results li:last-child {
  border-bottom: 0; }

.select2-no-results {
  text-indent: 5px; }

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold; }

.select2-result:hover {
  font-weight: 400; }

.select2-results .select2-result-label {
  padding: 9px 7px 9px 12px;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.select2-results .select2-highlighted {
  background: #daf5f5; }

.select2-results li em {
  background: #feffde;
  font-style: normal; }

.select2-results .select2-highlighted em {
  background: transparent; }

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000; }

.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
  background: #e0f8f8;
  display: list-item; }
/*
 disabled look for disabled choices in the results dropdown
 */
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-disabled {
  background: #e0f8f8;
  display: list-item;
  cursor: default;
  font-size: 13px;
  font-family: "Lora", "Times New Roman", Times, Serif;
  font-style: italic;
  color: #8a9aa4; }

.select2-results .select2-selected {
  display: none; }

.select2-more-results.select2-active {
  background: #f4f4f4 url('/images/v4/select2-spinner.gif') no-repeat 100%; }

.select2-more-results {
  background: #f4f4f4;
  display: list-item; }
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0; }

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none; }
/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  min-height: 36px;
  margin: 0 0 -10px 0;
  padding: 0 10px 0 0;
  position: relative;
  cursor: text; }

.select2-locked {
  padding: 3px 5px 3px 5px !important; }

.select2-drop-multi {
  margin-top: 0; }

.select2-container-multi {
  min-height: 36px;
  border: 1px solid #c5c5db;
  display: block;
  overflow: hidden; }

.select2-container-multi:after {
  margin: 0; }

.select2-container-multi.select2-container-active {
  border: 1px solid #4ad7d7;
  background: #bbefef url(../images/search-16.png) right center no-repeat !important;
  box-shadow: none !important; }

.select2-container-multi.select2-container-active:after {
  display: none; }

.select2-container-multi.select2-container-active .select2-choices {
  outline: none; }

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none; }

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0 0 -10px 0;
  padding: 0;
  white-space: nowrap; }

.select2-container-multi .select2-choices .select2-search-field input {
  outline: 0;
  border: 0;
  background: transparent !important; }

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url('/images/v4/select2-spinner.gif') no-repeat 100% !important; }

.select2-default {
  color: #999 !important; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  cursor: default;
  font-size: 16px;
  line-height: 22px;
  border-radius: 2px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default; }

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4; }

.select2-search-choice-close {
  display: block;
  width: 10px;
  height: 12px;
  position: absolute;
  right: 3px;
  top: 8px;
  font-size: 1px;
  outline: none;
  background: url(../images/sprite.png) -36px -167px;
  box-shadow: none; }

.select2-container-multi .select2-search-choice-close {
  left: 3px; }
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none; }
/* end multiselect */
.select2-result-selectable .select2-match, .select2-result-unselectable .select2-match {
  text-decoration: underline; }

.select2-offscreen, .select2-offscreen:focus {
  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; }

.select2-display-none {
  display: none; }

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll; }
/* jQuery UI
 -----------------------------------------------------------------*/
/* Layout helpers
 ----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */ }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); }

.ui-front {
  z-index: 100; }
/* Interaction Cues
 ----------------------------------*/
.ui-state-disabled {
  cursor: default !important; }
/* Icons
 ----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }
/* Misc visuals
 ----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0; }

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
  display: none; }

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 5px 10px 0 10px;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%; }

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  height: 32px;
  width: 47%;
  padding: 5px; }

.ui-datepicker select.ui-datepicker-month {
  float: left; }

.ui-datepicker select.ui-datepicker-year {
  float: right; }

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em; }

.ui-datepicker table tr {
  height: 37px !important; }

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s; }

.ui-datepicker td a:hover {
  background: #23afaf;
  box-shadow: none;
  color: white;
  text-shadow: 0 1px 1px #1a7171; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }
/* Custom Styles */
#ui-datepicker-div {
  background: #f4f4f4; }
/* jQuery UI
 -----------------------------------------------------------------*/
.clear_autocomplete {
  display: none; }

#quickReportTabs {
  margin-top: 20px; }

a.ui-tabs-anchor {
  box-shadow: none; }

.ui-tabs-panel {
  min-height: 200px; }

.ui-tabs-nav {
  position: relative;
  z-index: 1;
  list-style-type: none; }

.ui-tabs-nav li a {
  display: block;
  padding: 10px;
  border: 1px solid transparent;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  float: left;
  border-radius: 3px 3px 0 0;
  font-family: "Signika", "Helvetica Neue", "Helvetica", "Sans-serif";
  font-style: normal; }

.ui-tabs-nav li a:hover {
  border-bottom: 1px solid #c5c5db;
  background: #fefefe;
  color: #1f8686; }

.ui-tabs-nav li.ui-state-active a {
  border: 1px solid #c5c5db;
  border-bottom: 1px solid white;
  background: white;
  color: #3c4951; }

.ui-tabs-panel {
  padding: 20px;
  border: 1px solid #c5c5db;
  background: white;
  border-radius: 0 3px 3px 3px; }
/* ie 6&7
 -----------------------------------------------------------------*/
.lt-ie8 #s-directory {
  margin-top: -50px; }

.lt-ie8 legend small {
  float: none; }

.lt-ie8 #s-page-footer {
  margin: 0;
  border-top: 1px solid #f7f6f8;
  background: transparent; }

.lt-ie8 .side-menu-small li strong {
  display: inline;
  margin: 0 0 0 10px;
  float: none; }

.lt-ie8 .form-group-inline label {
  border: none; }

.lt-ie8 .select2-search {
  margin-left: -2px; }

.lt-ie8 #delete-all-insurers {
  margin-top: -100%; }

.lt-ie8 #selected-insurers li {
  position: relative; }

.lt-ie8 #selected-insurers li span.fl-r {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  float: none; }

.lt-ie8 .mt-10 {
  margin-top: 20px !important; }

.lt-ie8 .form-group-inline {
  margin-top: 20px;
  display: block; }

.lt-ie8 .form-group-inline input {
  display: block; }

.lt-ie8 input[type="text"], .lt-ie8 input[type="email"], .lt-ie8 input[type="password"] {
  margin-bottom: 20px;
  border-bottom: 1px solid #4ad7d7;
  background: #e0f8f8;
  outline: none; }
/* UI autocomplete
 -----------------------------------------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none; }

.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute; }

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  /* support: IE10, see #8844 */
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); }

.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0;
  /* support: IE7 */
  font-weight: normal; }

.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5; }

.ui-menu .ui-state-disabled a {
  cursor: default; }

.ui-autocomplete {
  display: block;
  background: #e0f8f8 !important;
  list-style-type: none;
  color: #3c4951; }

.ui-autocomplete .ui-menu-item a {
  min-height: 30px;
  line-height: 30px;
  cursor: pointer; }

.ui-autocomplete .ui-menu-item:hover {
  background: #daf5f5; }

.ui-autocomplete .ui-menu-item a:hover {
  background: #daf5f5; }
/* Slider (for photo resize and crop) */
.ui-slider {
  position: relative;
  text-align: left;
  background: #d7d7d7;
  z-index: 0;
  /* set to zero because slider overlap modal screen */ }

.ui-slider {
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset; }

.ui-slider .ui-slider-handle {
  background: url(../images/slider_handles.png) 0px -23px no-repeat;
  position: absolute;
  z-index: 0;
  /* set to zero because slider overlap modal screen */
  width: 23px;
  height: 23px;
  cursor: default;
  border: none;
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.ui-slider .ui-state-hover, .ui-slider .ui-state-active {
  background-position: 0 0; }

.ui-slider .ui-slider-range {
  background: #a3cae0;
  position: absolute;
  z-index: 0;
  /* set to zero because slider overlap modal screen */
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0; }

.ui-slider .ui-slider-range {
  -moz-box-shadow: 0 1px 2px rgba(17, 35, 45, 0.6) inset;
  -webkit-box-shadow: 0 1px 2px rgba(17, 35, 45, 0.6) inset;
  box-shadow: 0 1px 2px rgba(17, 35, 45, 0.6) inset; }

.ui-slider-horizontal {
  height: 5px; }

.ui-slider-horizontal .ui-slider-handle {
  top: -8px;
  margin-left: -13px; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: 5px;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -8px;
  margin-left: 0;
  margin-bottom: -13px; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }
/*
 /* No Boxshadow
 -----------------------------------------------------------------*/
.no-boxshadow .box-inner {
  border: 1px solid #c5c5db; }

.arrow-left-top {
  position: relative; }

.arrow-left-top:after, .arrow-left-top:before {
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  right: 100%;
  content: " ";
  pointer-events: none; }

.arrow-left-top:after {
  margin: -10px -1px 0 0;
  top: 35px;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 10px; }

.arrow-left-top:before {
  margin: -11px -1px 0 0;
  top: 35px;
  border-color: rgba(92, 93, 11, 0);
  border-right-color: #c5c5db;
  border-width: 11px; }

.arrow-left-top.is-active:after {
  border-right-color: #e0f8f8; }

.arrow-left-top.is-active:before {
  border-right-color: #4ad7d7; }

.cluetip {
  z-index: 1001; }

.cluetip-outer {
  position: relative;
  margin: 0;
  background-color: #fff !important; }

h3.cluetip-title {
  margin: 0 0 5px;
  padding: 8px 10px 4px;
  font-size: 1.1em;
  font-weight: normal;
  background-color: #ddf7f7;
  color: #1f8686; }

.cluetip-inner {
  padding: 10px; }

span.cluetip-close {
  text-align: right;
  margin: 0 5px 5px;
  color: #900; }

.cluetip-close img {
  border: 0; }

.hd {
  vertical-align: top; }

.link_sort, .action-read-review, .action-approve, .action-send, .action-reject, .action-reschedule, .action-note, .action-edit-note {
  cursor: pointer;
  cursor: hand; }

.yellow {
  background-color: #fafab9; }

.green {
  background-color: #e3f5e0; }

.red {
  background-color: #facbc6; }

.grey {
  background-color: #d3d3d3; }

.pReview tr {
  height: 36px; }

.strong {
  font-weight: bold; }

.input_radio {
  margin-left: 30px !important; }

#input-date {
  width: 85px;
  cursor: pointer; }

.hour-combo {
  width: 75px; }

.time-combo {
  width: 55px; }

#loading_img {
  display: none;
  font-size: 11px; }

#loading_img img {
  margin-left: 40px;
  margin-right: 10px; }

.actions-buttons {
  font-size: 16px;
  cursor: pointer;
  margin-right: 5px;
  display: inline-block; }

.color-explain {
  float: right;
  font-size: 12px;
  margin-left: 5px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center; }

.color-explain-legend {
  padding: 5px;
  float: right;
  font-size: 16px;
  text-align: center;
  display: inline-block; }

#divAddNewHospital {
  width: 530px;
  height: 220px;
  min-height: 220px;
  max-height: 270px;
  border: 1px solid #ddf7f7;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fefefe; }

#divAddNewHospital h3 {
  margin-top: 0px; }

#statusMsg {
  display: inline-block; }

#btnCloseStatusMsg {
  cursor: pointer; }

#logo_holder {
  height: 100px; }

#newVisitReason {
  background-color: #f7f6f8; }

.deleteIcon {
  font-weight: bold;
  color: #000;
  font-size: 11px;
  font-family: monospace;
  cursor: pointer; }

.hours_error {
  display: none; }

.practice-container {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 10px; }
/* Acount Notifications */
.add-contact {
  height: 20px;
  overflow: hidden; }

.no-border {
  box-shadow: none; }

.page-column-575 #practicePatientMessagingBatchForm h3 {
  margin: 30px 0 10px 0; }

.page-column-575 h3 span {
  margin-right: 5px;
  background: #24b3b3;
  width: 25px;
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  color: white; }
