﻿:root {
  --border-radius: 22px;
  --color-main: #2d4579;
  --color-main-light: #abc5e8;
  --color-main-lighter: #d3e0f0;
  --color-alt: #e0a78f; /*#DD4B11;*/
  --color-alt-light: #f5d9c8; /* #e0a78f;*/
  --color-alt-lighter: #f0e9e1; /* #f5d9c8;*/
  --color-bg-main: #f5f0eb;
  --color-bg-gray-50: #f6f6ee;
  --color-bg-gray-100: #e8e9ed;
  --color-default-text: #222222;
}

/*$font-main:Vision-Regular;*/
/*$font-main-light: Vision-Light;*/
/*$font-main-heavy: Vision-Heavy;*/
/*$font-size-h1: 3.25rem;
$font-size-h2: 27px;
$font-size-h3: 20px;
$font-size-h4: 17px;
$font-size-h5: 17px;
$font-size-h6: 13px;
$font-size-lg: 18px;
$font-size-p: 16px;
$font-size-sm: 14px;*/
.appointment-page {
  text-align: left;
}
.appointment-page select {
  width: 100%;
}
.appointment-page h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.appointment-page .tool-header {
  display: flex;
  justify-content: space-between;
  background: #F7F7F7;
}
.appointment-page .tool-header span {
  padding: 15px 0;
  width: 25%;
  text-align: center;
}
@media (max-width: 768px) {
  .appointment-page .tool-header span {
    display: none;
  }
}
.appointment-page .tool-header span.active {
  background: var(--color-main);
  color: #fff;
}
@media (max-width: 768px) {
  .appointment-page .tool-header span.active {
    display: block;
    width: 100%;
  }
}
.appointment-page .fc-button {
  font-size: 15px;
}
.appointment-page .select-group--last {
  margin-bottom: 0;
}
.appointment-page .select-group .group__head p {
  margin-bottom: 13px;
}
.appointment-page .select-group .group__body {
  background: white;
}
.appointment-page .select-group .group__body .highlight {
  color: var(--color-alt);
  font-weight: 400;
}
.appointment-page .select-group .group__body ul li {
  display: flex;
  padding: 15px;
  border-bottom: 2px solid #F7F7F7;
  margin-bottom: 0;
  align-items: center;
}
@media (max-width: 768px) {
  .appointment-page .select-group .group__body ul li {
    flex-direction: column;
  }
}
.appointment-page .select-group .group__body--table ul li > span:first-child {
  width: 80%;
}
@media (max-width: 768px) {
  .appointment-page .select-group .group__body--table ul li > span:first-child {
    width: 100%;
    margin-bottom: 1.67rem;
  }
}
.appointment-page .select-group .group__body--table ul li > span:last-child {
  width: 20%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .appointment-page .select-group .group__body--table ul li > span:last-child {
    width: 100%;
  }
}
.appointment-page .r-container span {
  color: inherit;
}
.appointment-page select, .appointment-page input[type=number], .appointment-page input[type=text] {
  background: white;
  color: #5a5a5a;
  padding: 15px;
  border: 1px solid #d2d2d2;
  font-size: 17px;
  width: 100%;
}
.appointment-page select:focus, .appointment-page input[type=number]:focus, .appointment-page input[type=text]:focus, .appointment-page textarea:focus {
  outline: 2px solid var(--color-main);
  border: 0 !important;
  box-sizing: border-box;
}
.appointment-page .heading-group {
  margin-bottom: 10px;
}
.appointment-page .heading-group h3 {
  margin-bottom: 0;
}
.appointment-page .heading-group small {
  font-size: 14px;
  color: gray;
}
.appointment-page .tool-section {
  padding: 30px;
  margin: 30px 0;
  background: #F7F7F7;
}
@media (max-width: 768px) {
  .appointment-page .tool-section {
    padding: 0;
    background: 0;
  }
}
.appointment-page .tool-section.active {
  /*background: darken($color-gray, 10%);*/
}
.appointment-page .tool-section--confirmation h3 {
  font-weight: 600;
}
.appointment-page .tool-section--confirmation a {
  text-decoration: underline;
}
.appointment-page .tool-section ul li span, .appointment-page .tool-section ul li label {
  font-size: 18px;
}
.appointment-page .legend {
  margin-bottom: 15px;
  display: flex;
}
.appointment-page .legend__item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.appointment-page .legend__item:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 8px;
}
.appointment-page .legend__item--available:before {
  background: var(--color-main);
}
.appointment-page .legend__item--occupied:before {
  background: var(--color-alt);
}
.appointment-page .form label, .appointment-page .form input[type=text], .appointment-page .form select, .appointment-page .form input[type=email], .appointment-page .form textarea, .appointment-page .form input[type=number] {
  font-size: 16px;
}
.appointment-page .form p {
  font-size: 18px;
}
.appointment-page .form .error {
  border-color: var(--color-alt);
}
.appointment-page .form input[type=text].ng-invalid {
  background: var(--color-alt-lighter);
  border: 1px solid var(--color-alt);
}
.appointment-page .form-intro {
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}
.appointment-page table {
  margin-bottom: 0;
}
.appointment-page table thead tr th {
  padding: 6px 0;
}
.appointment-page .invalid {
  color: var(--color-alt);
  display: block;
}
.appointment-page .payment-invalid {
  color: var(--color-main);
  display: none;
}
.appointment-page input.error + .payment-invalid {
  display: block;
}
.appointment-page .schedule-date {
  color: var(--color-alt);
  font-weight: 600;
  font-size: 26px;
}
.appointment-page .error-list span {
  display: block;
  color: var(--color-main);
}
.appointment-page p.error-list {
  font-size: 15px;
  font-family: Maax;
  color: var(--color-alt);
  margin-bottom: 0;
  line-height: 23px;
}
.appointment-page .validation-summary-errors ul {
  list-style-type: none;
}
.appointment-page .validation-summary-errors ul li {
  color: var(--color-alt);
}
.appointment-page .info {
  font-size: 14px;
  color: gray;
}
.appointment-page .info a {
  text-decoration: underline;
}
.appointment-page .change-date {
  font-size: 18px;
  text-decoration: underline;
}
.appointment-page .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.appointment-page ul li a {
  text-decoration: underline;
}
.appointment-page .appointment-price {
  text-align: center;
  margin-bottom: 30px;
}
.appointment-page .appointment-price .price__label {
  display: block;
  margin-bottom: 2px;
}
.appointment-page .appointment-price .price__price {
  display: block;
  font-size: 2rem;
  color: var(--color-main);
  font-weight: 600;
}
.appointment-page .cards {
  display: flex;
  margin-bottom: 30px;
}
.appointment-page .cards__list img {
  height: 30px;
  margin-right: 0.67rem;
}
.appointment-page .appointment-calendar {
  /*.monthview-selected {
      background-color: $color-main-lighter;
      border: 1px solid $color-main-lighter;
  }*/
}
.appointment-page .appointment-calendar .calendar {
  background: white;
}
@media (min-width: 768px) {
  .appointment-page .appointment-calendar .calendar {
    padding: 30px;
  }
}
.appointment-page .appointment-calendar .navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}
.appointment-page .appointment-calendar .navigation > div:last-child a {
  font-size: 18px;
}
.appointment-page .appointment-calendar .navigation > div:last-child a:first-child {
  margin-right: 10px;
}
.appointment-page .appointment-calendar .navigation > div:last-child a i {
  font-size: 26px;
}
.appointment-page .appointment-calendar .month, .appointment-page .appointment-calendar .year {
  color: var(--color-main);
  font-family: Chronicle;
  font-size: 2rem;
}
.appointment-page .appointment-calendar .weeks > div {
  background: var(--color-main);
  color: white;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  font-size: 15px;
}
.appointment-page .appointment-calendar .days .day {
  border: 1px solid #efefef;
  font-size: 16px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #F7F7F7;
}
@media (min-width: 768px) {
  .appointment-page .appointment-calendar .days .day {
    padding: 20px;
  }
}
.appointment-page .appointment-calendar .days .day.open {
  background: var(--color-main);
  color: white;
  cursor: pointer;
}
.appointment-page .appointment-calendar .days .day.occupied {
  background: var(--color-alt);
  color: white;
}
.appointment-page .appointment-calendar table {
  width: 100%;
}
.appointment-page .appointment-calendar table tr {
  display: flex;
}
.appointment-page .appointment-calendar table td {
  width: 14.2857142857%;
}
.appointment-page .appointment-calendar .text-muted {
  opacity: 0.4;
}
.appointment-page .appointment-calendar .nav-left {
  text-align: left;
}
.appointment-page .appointment-calendar .nav-right {
  text-align: right;
}
.appointment-page .appointment-calendar .scrollable {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.appointment-page .appointment-calendar .table-fixed {
  table-layout: fixed;
}
.appointment-page .appointment-calendar .no-event-label {
  font-weight: bold;
  color: darkgrey;
  text-align: center;
}
.appointment-page .appointment-calendar .event-detail-container {
  border-top: 2px darkgrey solid;
}
.appointment-page .appointment-calendar .event-detail {
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.appointment-page .appointment-calendar .calendar-header {
  text-align: center;
  padding-top: 5px;
  font-weight: bold;
}
.appointment-page .appointment-calendar .calendar-header h2 {
  margin-bottom: 0;
}
.appointment-page .appointment-calendar .calendar-hour-column, .appointment-page .appointment-calendar .calendar-week-column {
  width: 50px;
}
.appointment-page .appointment-calendar .calendar-navbar {
  margin-bottom: 15px;
}
.appointment-page .appointment-calendar .calendar-event-wrap {
  position: relative;
  height: 100%;
}
.appointment-page .appointment-calendar .calendar-event {
  position: absolute;
  padding: 2px;
  cursor: pointer;
}
.appointment-page .appointment-calendar .calendar-event-inner {
  overflow: hidden;
  background-color: #3a87ad;
  color: white;
  height: 100%;
  width: 100%;
  padding: 2px;
  line-height: 15px;
}
.appointment-page .appointment-calendar .calendar-cell {
  padding: 0 !important;
  height: 37px;
}
.appointment-page .appointment-calendar .monthview-dateCell {
  cursor: default;
  border: 1px solid #efefef;
  pointer-events: none;
  font-size: 16px;
}
.appointment-page .appointment-calendar .monthview-primary-with-event {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: white;
  cursor: pointer;
  pointer-events: auto;
}
.appointment-page .appointment-calendar .monthview-full {
  background: var(--color-alt);
  border: 1px solid var(--color-alt);
  cursor: default;
}
.appointment-page .appointment-calendar .monthview-current {
  background-color: var(--color-main-lighter);
  border: 1px solid var(--color-main-lighter);
}
.appointment-page .appointment-calendar .monthview-eventdetail-timecolumn {
  width: 110px;
  overflow: hidden;
}
.appointment-page .appointment-calendar .monthview-secondary-with-event {
  background-color: #d9edf7;
  border-color: #d9edf7;
}
.appointment-page .appointment-calendar .weekview-allday-label, .appointment-page .appointment-calendar .dayview-allday-label {
  float: left;
  height: 100%;
  line-height: 50px;
  text-align: center;
  width: 50px;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.appointment-page .appointment-calendar .weekview-allday-content-wrapper, .appointment-page .appointment-calendar .dayview-allday-content-wrapper {
  margin-left: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.appointment-page .appointment-calendar .weekview-header, .appointment-page .appointment-calendar .monthview-datetable {
  margin-bottom: 0;
}
.appointment-page .appointment-calendar .weekview-header th {
  overflow: hidden;
  white-space: nowrap;
}
.appointment-page .appointment-calendar .weekview-allday-table, .appointment-page .appointment-calendar .dayview-allday-table {
  height: 52px;
}
.appointment-page .appointment-calendar .weekview-allday-content-table, .appointment-page .appointment-calendar .dayview-allday-content-table {
  min-height: 100%;
  margin-bottom: 0;
}
.appointment-page .appointment-calendar .gutter-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 750px) {
  .appointment-page .appointment-calendar .weekview-allday-label, .appointment-page .appointment-calendar .dayview-allday-label, .appointment-page .appointment-calendar .calendar-hour-column, .appointment-page .appointment-calendar .calendar-week-column {
    width: 32px;
  }
  .appointment-page .appointment-calendar .weekview-allday-label, .appointment-page .appointment-calendar .dayview-allday-label {
    padding-top: 4px;
  }
  .appointment-page .appointment-calendar .table > tbody > tr > td.calendar-hour-column, .appointment-page .appointment-calendar .table > thead > tr > th.weekview-header-label {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    line-height: 12px;
    vertical-align: middle;
  }
  .appointment-page .appointment-calendar .weekview-allday-label, .appointment-page .appointment-calendar .dayview-allday-label {
    line-height: inherit;
  }
  .appointment-page .appointment-calendar .weekview-allday-content-wrapper, .appointment-page .appointment-calendar .dayview-allday-content-wrapper {
    margin-left: 32px;
  }
  .appointment-page .appointment-calendar .calendar-event-inner {
    font-size: 12px;
  }
}
.appointment-page .payment-form > div {
  font-size: 15px;
}

.user-detail-popup {
  width: 600px !important;
  padding: 30px;
  max-width: 100% !important;
}
.user-detail-popup p, .user-detail-popup a {
  font-size: 18px !important;
  font-family: Maax;
}
.user-detail-popup p:last-child, .user-detail-popup a:last-child {
  margin-bottom: 0;
}
.user-detail-popup a:not(.btn) {
  color: var(--color-main);
}
