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

Stylesheet: Theme Main Stylesheet

// Here is where we import all of our Sass files
// so they can compile into one CSS file.
//
******************************************************************/
a {cursor: pointer;}
/************
* Forms
************/
label {
  color: #0495a3;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 20px;
}

.form-group textarea {
  resize: none;
}

.form-control,
.styled-select-input {
  color: #000;
  background-color: #ccf3f7;
  border-color: #ccf3f7;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  box-shadow: none;
  outline: none !important;
  margin-bottom: 10px;
}

.form-control::-webkit-input-placeholder,
.styled-select-input::-webkit-input-placeholder {
  color: #0495a3;
}

.form-control::-moz-placeholder,
.styled-select-input::-moz-placeholder {
  color: #0495a3;
}

.form-control:-moz-placeholder,
.styled-select-input:-moz-placeholder {
  color: #0495a3;
}

.form-control:-ms-input-placeholder,
.styled-select-input:-ms-input-placeholder {
  color: #0495a3;
}

.form-control:focus, .form-control:active,
.styled-select-input:focus,
.styled-select-input:active {
  border-color: #00c6d9;
}

#gender {
  text-align: center;
  min-height: 100px;
}

#gender label {
  width: 60px;
  height: 60px;
  margin: 0 20px;
  background: #ccc;
  border-radius: 50%;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  border: 5px solid #ccc;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

#gender label.gender-male {
  background-image: url("../images/icons/man-standing.png") !important;
}

#gender label.gender-female {
  background-image: url("../images/icons/woman-standing.png") !important;
}

#gender label span {
  display: block;
  font-size: 16px;
  padding-top: 65px;
  text-align: center;
}

#gender input {
  display: none;
}

#gender input:checked + label {
  pointer-events: none;
  background-color: #00c6d9 !important;
  border-color: #00c6d9;
}

.input-photo label {
  display: block;
  text-align: center;
  text-transform: capitalize;
  text-decoration: underline;
  cursor: pointer;
}

.input-photo label:hover {
  text-decoration: none;
}

.input-photo input {
  display: none;
}

/* Styled select dropdown */
.styled-select {
  position: relative;
  outline: none !important;
}

.styled-select.open .styled-select-menu {
  display: block;
}

.styled-select .styled-select-input {
  display: block;
  position: relative;
}

.styled-select .styled-select-input:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/icons/icon-chevron-down.png") no-repeat 50% 50%;
  font-size: 16px;
  text-align: center;
  position: absolute;
  top: 12px;
  right: 5px;
}

.styled-select-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: none;
  width: 100%;
  z-index: 1000;
  background: #dbf7f9;
}

.styled-select-menu li {
  color: #0495a3;
  padding: 10px 10px;
  transition: all 0.3s ease;
}

.styled-select-menu li:hover {
  cursor: pointer;
  background: #ccf3f7;
}

.styled-select .dropdown-menu {
  z-index: 1000;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
}

/* Styled radio */
.styled-radio {
  background-color: transparent !important;
}

.styled-radio label {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.styled-radio label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccf3f7;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.styled-radio label:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccf3f7;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: all 0.3s;
}

.styled-radio label:hover:after {
  background: #0495a3;
}

.styled-radio input[type="radio"] {
  display: none;
}

.styled-radio input[type="radio"]:checked + label:before {
  border-color: #0495a3;
}

.styled-radio input[type="radio"]:checked + label:after {
  background: #0495a3;
}

.styled-checkbox {
  display: none;
}

.styled-checkbox + label {
  text-align: left;
  padding-left: 34px;
  display: table-cell;
  height: 24px;
  vertical-align: middle;
  position: relative;
}

.styled-checkbox + label:before {
  content: "";
  display: inline-block;
  background: #ccf3f7;
  color: #FFF;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-family: 'FontAwesome';
  text-align: center;
  position: absolute;
  top: 2px;
  left: 0;
  transition: all 0.3s;
}

.styled-checkbox:checked + label:before {
  content: "\f00c";
  background: #00c6d9;
}

/************
* Card component
************/
.card {
  background: #F2F2F2;
  padding: 20px;
  margin-bottom: 50px;
  box-shadow: 2px 2px 5px 2px rgba(204, 204, 204, 0.3);
}

.card-header {
  border-bottom: 2px solid #0495a3;
  padding-bottom: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  white-space: nowrap;
}

.card-header img {
  height: 26px;
  width: auto;
  margin-right: 15px;
}

.card-title {
  color: #0495a3;
  display: inline-block;
  line-height: 26px;
}

.card-content {
  text-align: center;
}

.card .btn {
  margin-top: 15px;
}

/************
* Buttons
************/
.btn {
  outline: none !important;
}

.btn-default {
  color: #0495a3;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
  color: #0495a3;
  background-color: #ccf3f7 !important;
  border-color: #ccf3f7 !important;
}

.btn-primary,
.btn-primary.active {
  background-color: #00c6d9 !important;
  border-color: #00c6d9 !important;
}

.btn-primary:focus, .btn-primary:active,
.btn-primary.active:focus,
.btn-primary.active:active {
  background-color: #00c6d9 !important;
  border-color: #00c6d9 !important;
}

.btn-primary:hover,
.btn-primary.active:hover {
  background-color: #009eae !important;
}

.btn-large {
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
}

/************
* Modal
************/
/* modal vertical centering */
.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
  text-align: center;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-content {
  padding: 10px;
}

.modal-header {
  border-bottom: 2px solid #0495a3;
  margin: 0 15px;
  padding: 15px 0;
}

.modal-header img {
  display: inline-block;
  height: 26px;
  width: auto;
  margin-right: 10px;
}

.modal-title {
  display: inline-block;
  line-height: 26px;
}

.modal-body {
  padding: 25px 15px 15px;
}

.modal-footer {
  border: none;
  padding-top: 0;
}

.modal .close span {
  font-size: 24px;
}

/** jQuery Smart Wizard  **/
.form_wizard {
  position: relative;
}

.form_wizard .stepContainer {
  background-color: #FFF;
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 15px 65px;
  border: 0 solid #CCC;
  overflow-x: hidden;
}

#wizard2 .stepContainer {
  min-height: 340px;
}

#wizard3 .stepContainer {
  min-height: 300px;
}

.form_wizard-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-register-pattern1.png") repeat;
  opacity: 0.15;
}

.wizard_horizontal ul.wizard_steps,
.wizard_vertical ul.wizard_steps {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  list-style: none;
  position: relative;
  width: 100%;
  padding: 70px 0 0;
  margin: 0 0 45px;
  z-index: 2;
}
.wizard_vertical ul.wizard_steps {
  flex-direction: column;
  margin: 20px 0;
  padding: 0;
}

.wizard_horizontal ul.wizard_steps:after {
  content: "";
  display: block;
  border-top: 2px solid #0495a3;
  width: 67%;
  position: absolute;
  top: 125px;
  z-index: 1;
}

.wizard_horizontal ul.wizard_steps li,
.wizard_vertical ul.wizard_steps li {
  display: table-cell;
  text-align: center;
  /*pointer-events: none;*/
}
.wizard_vertical ul.wizard_steps li {
  margin: 25px 0;
  position: relative;
}
.wizard_vertical ul.wizard_steps li:not(:last-child):after {
  content: "";
  display: block;
  border-left: 2px solid #0495a3;
  width: auto;
  height:50px;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
}

.wizard_horizontal ul.wizard_steps li a,
.wizard_vertical ul.wizard_steps li a {
  display: block;
  position: relative;
  opacity: 1;
  color: #666;
}

.wizard_horizontal ul.wizard_steps li a:before,
.wizard_vertical ul.wizard_steps li a:before {
  display: none;
}

.wizard_horizontal ul.wizard_steps li a .step_no,
.wizard_vertical ul.wizard_steps li a .step_no {
  background-color: #ccc !important;
  background-size: initial;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto 5px;
  font-size: 0;
  text-align: center;
  position: relative;
  z-index: 5;
  background-color: transparent;
}

.wizard_horizontal ul.wizard_steps li a .step_no:hover,
.wizard_vertical ul.wizard_steps li a .step_no:hover {
  text-decoration: none;
}

.wizard_horizontal ul.wizard_steps li a.selected .step_no,
.wizard_vertical ul.wizard_steps li a.selected .step_no {
  background-color: #00c6d9 !important;
}

.wizard_horizontal ul.wizard_steps li a .step_descr,
.wizard_vertical ul.wizard_steps li a .step_descr {
  font-size: 14px;
  color: #0495a3;
  text-transform: uppercase;
}

.actionBar {
  width: auto;
  display: inline-block;
  float: right;
  padding: 10px 15px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}

.actionBar .buttonDisabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: .65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

.actionBar {
  clear: both;
}

.actionBar a {
  margin: 0 3px;
}

.actionBar .btn {
  min-width: 85px;
}

@media (min-width: 768px) {
  .actionBar .btn {
    min-width: 100px;
  }
}

.actionBar .buttonFinish {
  float: right;
}

.actionBar .buttonNext {
  float: right;
}

@media (min-width: 768px) {
  .actionBar .buttonNext {
    min-width: 200px;
  }
}

.actionBar .buttonPrevious {
  float: left;
}

.form_wizard .loader {
  display: none;
}

.form_wizard .msgBox {
  display: none;
}

/** jQuery Smart Wizard  **/
/* easypiechart.js */
.chart {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.chart canvas {
  width: 90px !important;
  height: 90px !important;
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  line-height: 90px;
  z-index: 2;
  color: #0495a3;
  font-size: 16px;
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}

/* Ion.RangeSlider */
.irs {
  height: 55px;
  display: block;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.irs-with-grid {
  height: 75px;
}

.irs-line {
  display: block;
  position: relative;
  overflow: hidden;
  outline: none !important;
  height: 10px;
  top: 33px;
  background: #EEE;
  border-radius: 16px;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
  position: absolute;
  display: block;
  top: 0;
  height: 8px;
}

.irs-line-left {
  left: 0;
  width: 11%;
}

.irs-line-mid {
  left: 9%;
  width: 82%;
}

.irs-line-right {
  right: 0;
  width: 11%;
}

.irs-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 10px;
  top: 33px;
  background: #ccf3f7;
}

.irs-bar-edge {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  top: 33px;
  width: 14px;
  border-right: 0;
  background: #ccf3f7;
  border-radius: 16px 0 0 16px;
}

.irs-shadow {
  display: none;
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  top: 38px;
  background: #000;
  opacity: 0.3;
  border-radius: 5px;
}

.irs-slider {
  display: block;
  position: absolute;
  cursor: default;
  z-index: 1;
  top: 25px;
  width: 27px;
  height: 27px;
  background: #00c6d9;
  border-radius: 27px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.irs-slider.state_hover, .irs-slider:hover {
  background: #009eae;
}

.irs-from, .irs-to, .irs-single {
  color: #0495a3;
  font-size: 14px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background: #ccf3f7;
  border-radius: 3px;
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-min, .irs-max {
  color: #0495a3;
  font-size: 12px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 5px;
  border-radius: 3px;
}

.irs-min {
  position: absolute;
  display: block;
  left: 0;
  cursor: default;
}

.irs-max {
  position: absolute;
  display: block;
  right: 0;
  cursor: default;
}

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 27px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  opacity: 0.5;
  background: #ccf3f7;
}

.irs-grid-pol.small {
  background: #999;
}

.irs-grid-text {
  position: absolute;
  left: 0;
  bottom: 5px;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #99a4ac;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: transparent;
  z-index: 2;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

/* jQuery UI*/
.ui-widget-header {
  background: #ccf3f7;
  border: none;
  padding: 5px 0;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #fff;
  background: #fff;
  font-weight: normal;
  color: #0495a3;
  text-align: center;
  border-radius: 50%;
}

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover {
  background: #eee;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #00c6d9;
  color: #eee;
  border-radius: 50%;
}

.ui-datepicker {
  padding: 0;
}

.ui-datepicker .ui-datepicker-title {
  padding: 5px 0;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year,
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  background: #b5c7c9;
  color: #FFF;
  font-size: 15px;
  margin: 0 -2px;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  padding: 7px 7px 7px 20px;
  border-radius: 12px 0 0 12px;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  padding: 7px 20px 7px 7px;
  border-radius: 0 12px 12px 0;
}

.ui-datepicker th {
  color: #0495a3;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 4px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.2s;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  width: 12px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../images/icons/icon-chevrons.png");
}

.ui-datepicker .ui-datepicker-prev span {
  background-position: -16px 0;
}

.ui-datepicker .ui-datepicker-next span {
  background-position: 0 0;
}

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

Stylesheet: Main Stylesheet

*************************************************/
body {
  font-family: "Rubik", Helvetica, Arial, sans-serif;
  color: #0495a3;
}

/*********************
GENERAL STYLES
*********************/
a,
button,
input,
textarea,
select,
.fa,
.btn {
  transition: all 0.3s;
}

a {
  color: #00c6d9;
}

a:hover {
  color: #00a8b8;
}

a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.background-image {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex-center {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.position-relative {
  position: relative;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity {
  opacity: 0;
}

.main-color {
  color: #00c6d9;
}

.block-hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.hover-state:hover {
  cursor: pointer;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-small {
  font-size: 10px;
}

.list-styled {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.list-styled li {
  padding: 15px 15px 15px 45px;
  position: relative;
}

.list-styled li:before {
  display: block;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 20px;
  color: #00c6d9;
  padding-right: 20px;
  position: absolute;
  top: 10px;
  left: 0;
}

/*********************
H1, H2, H3, H4, H5, P STYLES
*********************/
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

/*****************
* Header
*****************/
.header {
  height: 55px;
}

.header .navbar {
  height: 55px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

.header .navbar-brand {
  color: #FFF;
  font-size: 17px;
  line-height: 25px;
  text-transform: uppercase;
}

.header .navbar--center {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.header .navbar-search {
  border: none;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-shadow: none;
}

.header .navbar-search .form-group {
  width: 100%;
  max-width: 465px;
  position: relative;
}

.header .navbar-search .form-group input {
  width: 100%;
  padding-left: 30px;
  height: 35px;
  line-height: 35px;
  background-color: #FFF;
  margin: 0;
}

.header .navbar-search .form-group .fa {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 22px;
  color: #00c6d9;
}

.header .navbar--right {
  padding: 0 15px;
}

.header .navbar-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.header .navbar-nav>li>a {
  color: #FFF;
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
  padding-left: 12px;
  padding-right: 12px;
}

.header .navbar-nav>li>a:hover {
  color: #eee;
}

.header .navbar .navbar-toggle {
  display: block !important;
  border: none;
  margin-right: 0;
  margin: 10px 0 0;
}

.header .navbar .navbar-toggle:hover, .header .navbar .navbar-toggle:focus, .header .navbar .navbar-toggle:active {
  background: transparent;
}

.header .navbar .navbar-toggle:hover .icon-bar, .header .navbar .navbar-toggle:focus .icon-bar, .header .navbar .navbar-toggle:active .icon-bar {
  background-color: #eee;
}

/*****************
* Footer
*****************/
.footer {
  color: #FFF;
  background: #00c6d9;
  padding-top: 20px;
}

.footer-logo {
  display: block;
  color: #FFF;
  padding: 10px;
}

.footer-logo:hover {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  list-style-type: none;
  margin: 0 0 15px;
  padding: 0;
}

.footer-links li a {
  display: block;
  color: #FFF;
  padding: 10px;
}

.footer-bottom {
  padding: 25px 0;
}

.footer-bottom ul {
  font-size: 0;
  margin-bottom: 0;
}

.footer-bottom ul li {
  padding: 0 7px;
}

.footer-bottom ul li a {
  color: #FFF;
  font-size: 14px;
}

.footer-bottom ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

/*****************
* Page
*****************/
.page-title {
  color: #00c6d9;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.page-subtitle {
  color: #00c6d9;
}

.hero {
  background-image: url("../images/bg-hero.jpg");
  height: 545px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.hero-container {
  padding: 0 15px;
}

.hero-share {
  color: #00c6d9;
  font-size: 30px;
  margin-bottom: 30px;
}

.hero-btn {
  background: #fff;
  border: 1px solid #999;
  padding: 1em 1.5em;
  width: 100%;
  max-width: 350px;
  margin: 45px auto 0;
}

.hero .btn {
  text-align: center;
  text-transform: uppercase;
  padding: 17px;
  font-size: 14px;
}

.hero .nav {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero .nav li {
  background: #FFF;
}

.hero .nav li:not(:last-child) {
  margin-right: 15px;
}

.hero .nav li.active a {
  background: #00c6d9;
  color: #FFF;
}

.hero .nav li.active:hover a {
  background: #00c6d9;
}

.hero .nav li a {
  min-width: 120px;
  text-align: center;
  padding: 15px;
  color: #999;
}

.information {
  padding: 30px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.information ul {
  max-width: 900px;
  margin: 0;
}

.information ul li {
  font-size: 16px;
}

@media (min-width: 768px) {
  .information ul li {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .information ul li:before {
    top: 25px;
  }
}

.doctor {
  padding: 70px 0 130px;
}

.doctor-sidebar {
  padding: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 992px) {
  .doctor-sidebar {
    display: block;
    width: 260px;
    float: left;
  }
}

.doctor-sidebar .sidebar-top {
  width: 200px;
}

.doctor-sidebar .sidebar-bottom {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .doctor-sidebar .sidebar-bottom {
    padding: 0;
  }
}

.doctor-photo {
  width: 200px;
  height: 200px;
  background-size: contain;
}

.doctor-meta h5 {
  color: #00c6d9;
  text-transform: uppercase;
  margin: 0 0 7px;
}

.doctor-meta p {
  margin-bottom: 25px;
}

.doctor-info {
  padding: 30px;
}

@media (min-width: 992px) {
  .doctor-info {
    width: calc(100% - 260px);
    float: left;
  }
}

.doctor-description {
  margin-bottom: 50px;
}

.socials {
  text-align: center;
  padding: 20px 10px;
}

.socials a {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background: #00c6d9;
  color: #fff;
  text-align: center;
  margin: 0 3px;
}

.socials a:hover {
  background: #009eae;
}

.address {
  background-image: url("../images/bg-address.png");
  padding: 50px 0;
  border-top: 1px solid #999;
}

.address-block {
  max-width: 350px;
  margin: 20px auto 0;
}

.address-header {
  background: #00c6d9;
  color: #FFF;
  min-height: 60px;
  text-align: center;
  padding: 10px 10px 10px 70px;
  margin-bottom: 10px;
  position: relative;
}

.address-header:before {
  color: #FFF;
  font-size: 35px;
  content: "\f015";
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address-header h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 7px;
}

.address-header span {
  font-size: 12px;
  line-height: 1;
}

.address-header a {
  color: #FFF;
}

.address-body {
  background: rgba(0, 198, 217, 0.9);
  color: #FFF;
  padding: 15px 10px;
}

.address-body ul {
  margin-bottom: 10px;
}

.address-body ul li {
  padding: 7px 10px;
}

.address-schedule-title {
  padding: 7px 10px;
}

@media (min-width: 480px) {
  .address-schedule {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .address-schedule-title {
    -webkit-flex-grow: 5;
        -ms-flex-positive: 5;
            flex-grow: 5;
  }
  .address-schedule-list {
    -webkit-flex-grow: 6;
        -ms-flex-positive: 6;
            flex-grow: 6;
  }
}

.map-title {
  background: #00c6d9;
  color: #FFF;
  text-align: center;
  padding: 16px;
  margin: 0;
}

.map-container {
  height: 335px;
}

.map-container iframe {
  width: 100%;
  display: block;
  pointer-events: none;
  position: relative;
  /* IE needs a position other than static */
}

.map-container iframe.clicked {
  pointer-events: auto;
}

/*****************
* PAGE - Login / Signup
*****************/
.login {
  /*background: #f7f7f7 url("../images/bg-hero.jpg") no-repeat 50% 50%;*/
  /*background-size: cover;*/
  /*height: calc(100vh - 55px);*/
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}

.login-container {
  width: 100%;
  max-width: 500px;
}

.login-title {
  color: #00c6d9;
  font-size: 24px;
  margin-bottom: 15px;
}

@media (min-height: 660px) {
  .login-title {
    margin-bottom: 30px;
  }
}

.login .nav-tabs {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .login .nav-tabs {
    margin-bottom: 35px;
  }
}

.login .nav-tabs li {
  width: 100%;
}

.login .nav-tabs li a {
  background: #FFF;
  color: #878E94;
  border: none;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  margin: 0;
}

.login .nav-tabs li + li a {
	margin-left: 1px;
}

.login .nav-tabs{
	border-bottom: 0;
}

.login .nav-tabs li a:hover {
  text-decoration: underline;
}

.login .nav-tabs li.active a {
  background: #00c6d9;
  color: #fff;
  border: none;
  text-decoration: none;
}

.login .form-group {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .login .form-group {
    /*margin-bottom: 30px;*/
  }
}

.login .form-group.two input:first-child {
  margin-bottom: 15px;
}

.login .form-group.two:before, .login .form-group.two:after {
  content: " ";
  display: table;
}

.login .form-group.two:after {
  clear: both;
}

@media (min-width: 768px) {
  .login .form-group.two input {
    width: 49%;
    float: left;
  }
  .login .form-group.two input:first-child {
    margin-right: 2%;
    margin-bottom: 0;
  }
}

.login input,
.login .submit {
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 10px;
  border: none;
  color: #fff;
}

@media (min-height: 660px) {
  .login input,
  .login .submit {
    height: 55px;
    line-height: 55px;
  }
}

.login input {
  background: rgba(0, 198, 217, 0.3);
}

.login input::-webkit-input-placeholder {
  color: #FFF;
}

.login input::-moz-placeholder {
  color: #FFF;
}

.login input:-moz-placeholder {
  color: #FFF;
}

.login input:-ms-input-placeholder {
  color: #FFF;
}

.login .submit {
  width: 190px;
  margin: 0 auto 20px;
}

.login .forgot-password {
  font-size: 10px;
  color: #00c6d9;
}

.login .confirmation-text {
  color: #fff;
  line-height: 35px;
  padding: 15px;
  margin-bottom: 15px;
}

.login .confirmation-link {
  display: block;
  color: red;
  font-size: 10px;
  line-height: 1;
  padding: 30px 0;
  text-decoration: underline;
}

.login .confirmation-link:hover {
  text-decoration: none;
}

/*****************
* PAGE - Registration Form
*****************/
.registration-form {
  padding-bottom: 50px;
  /*position: relative;*/
}

@media (min-width: 992px) {
  .form-column {
    padding: 0 35px;
  }
}

#collapseContactPerson {
  padding: 30px 0;
}

/* Questionary section */
.questionary:before, .questionary:after {
  content: " ";
  display: table;
}

.questionary:after {
  clear: both;
}

@media (min-width: 768px) {
  .questionary-content {
    padding-left: 280px;
  }
}

@media (min-width: 1200px) {
  .questionary-content {
    padding-left: 320px;
  }
}

.questionary-heading {
  margin-bottom: 30px;
}

.body-model {
  width: 260px;
  height: 260px;
  position: relative;
  margin: 15px auto 30px;
}

@media (min-width: 768px) {
  .body-model {
    float: left;
    margin: 0;
  }
}

.body-model .left,
.body-model .right {
  color: #FFF;
  font-size: 12px;
  padding: 10px;
  position: absolute;
  top: 0;
}

.body-model .left {
  left: 0;
}

.body-model .right {
  right: 0;
}

.body-model .checkbox {
  position: absolute;
  margin: 0;
}

.body-model.male .checkbox-1 {
  top: 50px;
  left: 93px;
}

.body-model.male .checkbox-2 {
  top: 50px;
  left: 145px;
}

.body-model.male .checkbox-3 {
  top: 125px;
  left: 105px;
}

.body-model.male .checkbox-4 {
  top: 125px;
  left: 133px;
}

.body-model.male .checkbox-5 {
  top: 170px;
  left: 105px;
}

.body-model.male .checkbox-6 {
  top: 170px;
  left: 133px;
}

.body-model.female .checkbox-1 {
  top: 53px;
  left: 100px;
}

.body-model.female .checkbox-2 {
  top: 53px;
  left: 140px;
}

.body-model.female .checkbox-3 {
  top: 115px;
  left: 105px;
}

.body-model.female .checkbox-4 {
  top: 115px;
  left: 135px;
}

.body-model.female .checkbox-5 {
  top: 163px;
  left: 109px;
}

.body-model.female .checkbox-6 {
  top: 163px;
  left: 131px;
}

.body-model input {
  display: none;
}

.body-model input + label {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  position: relative;
}

.body-model input + label:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.body-model input:checked + label:before {
  background: red;
}

.questionary-cards .card {
  margin-left: 12px;
  margin-right: 12px;
}

.sports-activity {
  height: 35px;
  line-height: 35px;
}

.sports-activity + .remove-item {
  display: inline-block;
  text-align: center;
  height: 35px;
  line-height: 35px;
  font-size: 24px;
  padding: 0;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.sports-activity + .remove-item:hover {
  color: red;
}

.new-activity {
  position: relative;
}

.new-activity .remove-item {
  position: absolute;
  top: 0;
  left: -16px;
}

/* Schedule section */
.schedule {
  background: #f2f2f2;
  min-height: 375px;
  padding: 30px;
}

.schedule-link-modal {
  display: inline-block;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 20px;
  color: #0495a3;
}

.schedule-link-modal:hover {
  color: #009eae;
}

.schedule-dates {
  list-style-type: none;
  padding: 0;
}

.schedule-dates li {
  line-height: 35px;
}

.schedule-dates li span {
  display: block;
  font-size: 16px;
  min-width: 60px;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .schedule-dates li span {
    display: inline-block;
  }
}

.schedule-dates li button {
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  min-width: 75px;
  text-align: center;
  margin-right: 8px;
  margin-bottom: 10px;
}

#appointment_type .btn {
  min-width: 120px;
  text-align: center;
  margin-bottom: 10px;
}

#appointment_type .btn:first-child {
  margin-right: 8px;
}

#appointment_type .btn.active {
  background-color: #00c6d9 !important;
  border-color: #00c6d9;
  color: #FFF;
  box-shadow: none;
}

/*# sourceMappingURL=style.css.map */

.relation-row {margin-top: 10px;}
.start-time-label { min-width:65px; margin-right:5px; margin-bottom:5px;}
label.btn {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.quize-front-form-question{
	padding: 20px 10px;
	display: none;
}

.quize-front-form-question .control-label{
	width: 100%;
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
	float: none;
}
.quize-front-form-question .control-label + div{
	width: 100%;
	text-align: center;
	float: none;
}
.quize-form-next-question{
	text-align: center;
	padding-top: 30px;
    display: inline-block;
}
.quize-form-next-question .btn{
    min-width: 100px;
}
.quize-form-prev-question{
	text-align: center;
	padding-top: 30px;
    display: inline-block;
}
.quize-form-prev-question .btn{
  min-width: 100px;
}
.stepContainer{
	height: auto !important;
}
.quize-front-form-question .trumbowyg-box{
	text-align: start;
}
.complete-patinet-form{
	padding: 40px 0;
	/*position: relative;*/
	/*z-index: 100;*/
}
.patient-upload-image-container img{
	display: block;
	width: 100%;
}
.patient-upload-image-container{
	min-height: 100px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}
.patient-upload-image-container input[type='file']{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
}
.patient-upload-cover{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: 0.3s;
}
.patient-upload-cover span{
	color: #FFF;
	text-align: center;	
	display: block;
}
.patient-upload-cover span .fa{
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}
.patient-upload-image-container:not(.loading):hover .patient-upload-cover{
	opacity: 1;
}
.patient-upload-image-container.loading:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: rgba(255, 255, 255, 0.75) url(../images/photo-loading.gif) center center no-repeat;
}
.patients-gender-switcher{
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 25px;
	background: #EEE;
	position: relative;	
	transition: 0.3s;
	display: inline-block;
	vertical-align: top;
}
.patients-gender-switcher i{
	position: absolute;
	font-size: 35px;
	color: #FFF;
	left: 50%;
	top: 50%;
	margin-left: -10px;
	margin-top: -17px;
}
.patients-gender-switcher.male.active{
	background: #2da4dc;
}
.patients-gender-switcher.female.active{
	background: #f15ac1;
}
.patients-gender-switcher.female i{
	margin-left: -13px;
}
.gender-label{
	float: left;
	width: 70px;
	font-weight: bold;
	padding-top: 15px;
	font-size: 14px;
}
.complete-patinet-body .ui-datepicker .ui-datepicker-title .ui-datepicker-month{
	padding: 7px 2px;
	background: none;
	color: #0495a3;
}
.complete-patinet-body .ui-datepicker .ui-datepicker-title .ui-datepicker-year{
	padding: 7px 2px;
	background: none;
	color: #0495a3;
}
.complete-patinet-body .ui-datepicker .ui-datepicker-next span{
	background-position: -16px 0;
}
.complete-patinet-body .ui-datepicker .ui-datepicker-prev span{
	background-position: 0 0;
}
.complete-patinet-body .ui-state-active, .complete-patinet-body .ui-widget-content .ui-state-active, .complete-patinet-body .ui-widget-header .ui-state-active{
	border: none;
	background: #00c6d9 !important;
	color: #FFF;
}
.complete-patinet-body .ui-state-highlight, .complete-patinet-body .ui-widget-content .ui-state-highlight, .complete-patinet-body .ui-widget-header .ui-state-highlight{
	border: none;
	background: none;
	color: #0495a3;
}
.complete-patinet-body .ui-state-highlight:hover, .complete-patinet-body .ui-widget-content .ui-state-highlight:hover, .complete-patinet-body .ui-widget-header .ui-state-highlight:hover{
	background: #eeeeee;
}
.complete-patinet-form h1{
	padding-bottom: 30px;
}
.password-hidden-switcher{
	padding-bottom: 26px;
}
.form-control.error-marked{
	border-color: #db3325;
}
label.error-marked{
	display: block;
	padding: 2px 5px;
	font-size: 12px;
	color: #db3325;
	text-transform: none;
}
.password-hidden-wrapper{
	display: none;
}
#signup .card{
  background: rgba(242, 242, 242, 0.4);
}
#new_customer .card{
  background: rgba(242, 242, 242, 0.4);
}
legend {
  color: #0495a3;
}
.has-error .form-control {
  background: rgba(169, 68, 66, 0.3);
}
#signup input[type=radio] {
  display: none;
}
.profile {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.patients-gender-switcher.male.active.static {
  background: #00c6d9;
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
.patients-gender-switcher.male.active.static i {
  position: absolute;
  font-size: 70px;
  color: #FFF;
  left: 50%;
  top: 50%;
  margin-left: -19px;
  margin-top: -36px;
}
section {
  margin-bottom:50px;
}
.patient-header>div {
  height: 100px;
}
.patient-header div.patient-name {
  line-height:50px;
}
.patient-header div.patient-links {
  line-height:100px;
}
.navbar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-default {
  background: #00c6d9;
  border: 0;
  font-size: 15px;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #00c6d9;
  border-bottom: 5px solid #fff;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
  border-bottom: 5px solid #fff;
}
.panel-default > .panel-heading, .panel-default > .panel-heading > a {
  background: #00c6d9;
  border: 0;
  color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel-default {
  border: 1px solid #00c6d9;
  background: #f2f2f2;
  border-radius: 0;
}
.panel-inbox {
  border: 0;
  box-shadow: none;
}
.panel-default.white .panel-body {
  background: #fff;
}
.panel-inbox .panel-body {
  padding-top: 1px;
}
.panel-inbox .actions {
  line-height: 56px;
}
.list-group-item, .list-group-item:first-child, .list-group-item:last-child {
  border-color: #01c2d4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/*.panel-body .card{margin-bottom:0;}*/
.plexi-logo {
  background: url(../images/logo-inverted.png);
  background-size: 100%;
  margin-left: 10px;
  width: 150px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 110px;
}
body:after {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: url("../images/bg-register-pattern1.png") repeat;
  opacity: 0.15;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 110px;
}
.forgot-password a{color: #fff;}

#signup legend, #signup label, #signup a {color: #000;}
#new_customer legend, #new_customer label, #new_customer a {color: #000;}

#signup label, #new_customer label{
  font-size: 20px;
  padding-top: 3px;
}

.combodate .form-control {display: inline;}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
  background-color: #fff;
}

.modal-content {
  box-shadow: none!important;
  padding: 15px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 0!important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box;
  outline: 0;
}
.modal-footer {
  background-color: #fff;
}
.mfp-content{
  max-width:50%!important;
}

.compose.panel {
  margin-bottom:0;
}
.compose {
  /*padding: 0;*/
  position: fixed;
  bottom: 0;
  right: 0;
  /*background: #fff;*/
  border: 1px solid #D9DEE4;
  /*border-right: 0;*/
  /*border-bottom: 0;*/
  /*border-top-left-radius: 5px;*/
  z-index: 9999;
  display: none;
}

.compose .compose-header {
  /*padding: 5px;*/
  /*background: #169F85;*/
  color: #fff;
  /*border-top-left-radius: 5px;*/
}

.compose .compose-header .close {
  text-shadow: 0 1px 0 #ffffff;
  line-height: .8;
}
.panel-inbox .compose-body.panel-body {
  padding-top: 10px;
}
.compose .compose-body .editor.btn-toolbar {
  margin: 0;
}

.compose .compose-body .editor-wrapper {
  height: 100%;
  min-height: 50px;
  max-height: 180px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  overflow: auto;
}

.compose .compose-footer {
  padding: 10px;
  background-color: #fff ;
}
.compose-body {
  padding-top: 10px;
}
.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}
.editor-wrapper {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-collapse: separate;
  border-radius: 3px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.075) inset;
  box-sizing: content-box;
  min-height: 250px;
  outline: medium none;
  overflow: scroll;
  padding: 4px;
}
.compose .compose-body .editor-wrapper {
  border-left: medium none;
  border-radius: 0;
  border-right: medium none;
  height: 100%;
  max-height: 180px;
  min-height: 50px;
  overflow: auto;
}
.editor.btn-toolbar {
  zoom: 1;
  background: #F7F7F7;
  margin: 5px 2px;
  padding: 3px 0;
  border: 1px solid #EFEFEF;
}
.special-patient-form label.control-label{
	padding-top: 14px;
}
.datepicker-wrapper .form-control{
	padding-right: 50px;
}
.datepicker-wrapper{
	position: relative;
}
.datepicker-wrapper:after{
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	background: url(../images/icons/calendar-1.png) left top no-repeat;
	background-size: cover;
}
.work-table{
	width: 100%;
}
.work-table td, .work-table th{
	padding: 5px;
}
.fb-form-grid-table label.radio input{
	margin: 0;
	position: static;
}
.fb-form-grid-table label.radio input + span{
	display: none;
}
label.error{
	color: #a94442 !important;
	font-size: 14px;
	text-transform: none;
}
.login-container label.error-marked{
	color: #a94442 !important;
	font-size: 20px;
	text-transform: none;
}
.login-container .form-control.error-marked,
.login-container .form-control.error-marked[type="checkbox"]+label:before{
	background: rgba(169, 68, 66, 0.3);
}
.login-container .form-control.error-marked:focus{
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.form-control.error-marked + label.error-marked + .combodate select{
	background: rgba(169, 68, 66, 0.3);
	border-color: #843534;
}
.valid-form label.error{
	display: none !important;
}
.valid-form .help-block.with-errors{
	display: none !important;
}
#new_customer .related-block {
  display: none;
}
.clinic-description {
  color: #000;
  font-size: 16px;
}
.language-navigator {
  margin-bottom: 35px;
}
#new_customer label.confirmation-message {
  color: green;
}
.valid-form .has-error .form-control{
	background: rgba(0, 198, 217, 0.3);
}
.create-account-link-wrapper{
	text-align: center;
	font-size: 20px;
	padding: 35px 0 15px;
}
.wizard_horizontal ul.static-wizard-steps:after{
	width: 70%;
	left: 50%;
	margin-left: -35%;
}
.body-ltr .ui-datepicker .ui-datepicker-prev span{
	background-position: 0 0;
}
.body-ltr .ui-datepicker .ui-datepicker-next span{
	background-position: -16px 0;
}
.body-ltr .ui-datepicker .ui-datepicker-title .ui-datepicker-month{
	border-radius: 12px 0 0 12px;
	padding: 7px 7px 7px 20px;
}
.body-ltr .ui-datepicker .ui-datepicker-title .ui-datepicker-year{
	border-radius: 0 12px 12px 0;
	padding: 7px 20px 7px 7px;
}
.form_wizard-background + .container{
	z-index: 10;
	position: relative;
}
.login-form-field-size .form-control{
	/*font-size: 24px;*/
  font-size: 32px;
  font-weight: 100;
}
.login-form-field-size select.form-control.month, .login-form-field-size select.form-control.day, .login-form-field-size select.form-control.year{
	/*font-size: 20px;*/
	font-size: 24px;
	padding-left: 2px;
	padding-right: 2px;
}
.login-form-field-size .btn{
	font-size: 24px;
}

.resend-verify-code-block {
  color: #000;
}
.resend-verify-code-block > div:not(.resend-verify-code-link) {
  display: none;
}
#errors-block,
.resend-verify-code-block .resend-verify-code-error-message {
  color: #a94442;
  font-size: 21px;
}
.resend-verify-code-block .resend-verify-code-loader {
  height: 32px;
  background: url('../images/body-loading.gif') center center no-repeat;
  background-size: contain;
}
/*#new_customer .container {*/
  /*position: relative;*/
  /*z-index: auto;*/
/*}*/
/*#new_customer .container form section.card{*/
  /*background: rgba(242, 242, 242, 1);*/
/*}*/
/*.container form .bottom-place {*/
  /*position: fixed;*/
  /*z-index: 3;*/
  /*bottom: 0;*/
  /*left: 0;*/

  /*width: 100%;*/
  /*height: 110px;*/
  /*margin: 0;*/

  /*background: #00c6d9;*/

  /*text-align: center;*/
/*}*/
/*.container form .bottom-place .btn {*/
  /*margin: 28px auto;*/
  /*height: 55px;*/
/*}*/

.login .bottom-place {
  margin:0;
}
main .bottom-place>*,
main .quize-front-form-question .btn-block a{
  border: 1px #fff solid !important;
}
main .quize-front-form-question .btn-block a.loading{
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0);
  position: relative;  
  cursor: not-allowed;
}
main .quize-front-form-question .btn-block a.loading:before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background: url(../images/loading.svg) center/contain no-repeat;
}
main .bottom-place ,
main .quize-front-form-question .btn-block{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  min-height: 110px;
  background: #00c6d9;
  text-align: center;
}
main .bottom-place .btn,
main .quize-front-form-question .btn-block>*{
  margin: 28px auto;
  height: 55px;
}
main .bottom-place .btn.smaller {
  height: 40px;
  width: 120px;
  font-size: 18px;
  line-height: 40px;
}
main .quize-front-form-question .btn-block>*{
  padding: 0;
}
main .quize-front-form-question.dropdown {
  position: static;
}
#new_customer form section.card{
  background: rgba(242, 242, 242, 1);
}


.input-font-larger input {
  font-size: 16px;
}

#login > .form_wizard-background,
#signup > .form_wizard-background {
  background: #f7f7f7 url("../images/bg-hero.jpg") no-repeat 50% 50%;
  background-size: cover;
  opacity: 1;
}
.login .form_wizard-background + .container {
  padding: 0;
  width: 100%;
}

.login .position-relative {
  z-index: 1;
}

/*------------------------------------------------------------------
[ Widget / .widget]
*/

.widget {

  position: relative;
  clear: both;

  width: auto;

  margin-bottom: 2em;

  overflow: hidden;
}

.widget-header {

  position: relative;

  height: 40px;
  line-height: 40px;

  background: #f9f6f1;
  background:-moz-linear-gradient(top, #f9f6f1 0%, #f2efea 100%); /* FF3.6+ */
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f6f1), color-stop(100%,#f2efea)); /* Chrome,Safari4+ */
  background:-webkit-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* Chrome10+,Safari5.1+ */
  background:-o-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* Opera11.10+ */
  background:-ms-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* IE10+ */
  background:linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6f1', endColorstr='#f2efea');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6f1', endColorstr='#f2efea')";


  border: 1px solid #d6d6d6;


  -webkit-background-clip: padding-box;
}

.widget-header h3 {
  position: relative;
  top: 2px;
  left: 10px;

  display: inline-block;
  margin: 0 3em 0 0;

  font-size: 16px;
  font-weight: 800;
  color: #525252;
  line-height: 18px;

  text-shadow: 1px 1px 2px rgba(255, 255, 255, .5);
}

.patient-form-widget .widget-header h3 {

  position: static;
  display: block;
  margin: 0 90px 0 10px;

  font-size: 16px;
  font-weight: 800;
  color: #525252;
  line-height: 40px;

  text-shadow: 1px 1px 2px rgba(255,255,255,.5);
}

.widget-header [class^="icon-"], .widget-header [class*=" icon-"] {

  display: inline-block;
  margin-left: 13px;
  margin-right: -2px;

  font-size: 16px;
  color: #555;
  vertical-align: middle;
}

.widget-content {
  padding: 20px 15px 15px;

  background: #FFF;


  border: 1px solid #D5D5D5;

  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.widget-header+.widget-content {
  border-top: none;

  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.widget-nopad .widget-content {
  padding: 0;
}

/* Widget Content Clearfix */
.widget-content:before,
.widget-content:after {
  content:"";
  display:table;
}

.widget-content:after {
  clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.widget-content {
  zoom:1;
}

.patients-document-box{
  display: inline-block;
  width: 70px;
  height: 116px;
  padding: 5px 10px;
  vertical-align: top;
  margin: 5px 7px;
  border: rgba(0, 0, 0, 0) 1px solid;
  transition: 0.3s;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.patients-document-box:hover{
  border-color: #eee;
}
.patients-document-box-image-container{
  width: 100%;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}
.patients-document-box-filename{
  display: block;
  margin-top: 10px;
  line-height: 14px;
  height: 36px;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
  color: #999;
  font-size: 10px;
}
.patients-document-box:hover .patients-document-box-filename{
  color: #0696a3;
}
.patients-document-box.add-files .patients-document-box-filename{
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.patients-document-box.add-files .patients-document-box-image-container{
  width: 50px;
  height: 50px;
  margin: 15px auto 5px;
}
.patients-document-box.add-files{
  position: relative;
}
.patients-document-box.add-files input[type='file']{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Widget Table */

.widget-table .widget-content {
  padding: 0;
}

.widget-table .table {
  margin-bottom: 0;

  border: none;
}

.widget-table .table tr td:first-child {
  border-left: none;
}

.widget-table .table tr th:first-child {
  border-left: none;
}


/* Widget Plain */

.widget-plain {

  background: transparent;

  border: none;
}

.widget-plain .widget-content {
  padding: 0;

  background: transparent;

  border: none;
}


/* Widget Box */

.widget-box {

}

.widget-box .widget-content {
  background: #E3E3E3;
  background: #FFF;
}

.header-light .navbar--left{
  width: 54px;
  height: 54px;
}
.header-light .header-profile-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-light .header-profile-img {
  height: 54px;
  width: 54px;
  padding: 7px;
  object-fit: cover;
  object-position: center center;
}

.header-light .navbar-brand {
  float: none;
  margin: 0 auto;
}

.my-complaints-background {
  background: #f9f6f1;
}

#new_customer .form-group.disabled,
#new_customer .form-group.disabled label{
  color: #878E94;
}
#new_customer .form-group.disabled {
  display: none;
}

.update-patient-information-buttons {
  float: right;
  margin: 0 3px 0 0;
}

.dashboard-title {
  text-align: center;
}
.patient-additional-hidden-form,
.update-patient-information-buttons .cancel-button,
.patient-additional-info-report-updated {
  display: none;
}

@media (max-width: 767px) {
	.plexi-logo:not(.not-scaled){
		padding: 0;
		background-size: cover;
		height: 40px;
		width: 40px;
		background-position: left center;
		margin-top: 10px;
	}
	.navbar--center{
		display: none;
	}
    .header-light .navbar--center{
      display: block;
    }
	.navbar--right>ul>li:nth-child(2), .navbar--right>ul>li:nth-child(3){
		display: none;
	}
  .navbar-nav .open .dropdown-menu {
    position: absolute;
  }
  /*.widget .widget-content .nav-tabs li {*/
    /*float: none;*/
  /*}*/
  /*.widget .widget-content .nav-tabs li a.btn{*/
    /*border-radius: 0;*/
  /*}*/

  .widget .nav-tabs>li{
    width: 100%;
    margin: 0;
  }
  .widget .nav-tabs>.active>a, .nav-tabs>.active>a:hover{
    border-bottom: #ddd 1px solid;
    border-radius: 0;
  }
  .widget .widget-header{
    height: auto;
    min-height: 40px;
  }
  .widget .widget-header > .btn{
    float: none !important;
    width: auto;
    display: block;
  }
}
.quize-front-form-question .fb-radiobuttons-container .btn-group {
	margin: 5px 10px 5px 0;
}
.quize-front-form-question .fb-radiobuttons-container .btn-group .btn {
	padding: 10px 15px;
}
.quize-front-form-question .fb-checkboxes-container .btn-group {
	margin: 5px 10px 5px 0;
}
.quize-front-form-question .fb-checkboxes-container .btn-group .btn {
	padding: 10px 15px;
}
.btn {
  font-size: 16px;
}
.complete-patinet-form input[readonly] {
  cursor: default;
  pointer-events: none;
}
.not-all-filled-text {
  font-size: 20px;
  text-align: center;
  color: #a94442;
  display: block;
  padding-bottom: 15px;
}
.date-of-birth-label{
	float: left;
	width: 70px;
	font-weight: bold;
	padding-top: 15px;
  font-size: 14px;
  display: none;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .date-of-birth-label{
    display: block;
  } 
}
.combodate {
  display: flex;
}
.combodate .form-control {
  flex-basis: 100%;
}
.complaint-subheader {
  font-size: 20px;
  margin: 10px 0;
}
.confirm-patient-wrapper {
  padding: 20px 0 40px;
}
.confirm-sms-wrapper__buttons {
  padding-top: 20px;
  text-align: center;
}
.confirm-sms-wrapper__input {
  padding-top: 20px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;  
}
.confirm-sms-wrapper__input input {
  text-align: center;
}
a.ui-slider-handle {
  transition: none;
  outline: none !important;
}