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

_variables.scss

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

_functions.scss

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

_mixins.scss

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

_utilities.scss

*********************************/
.textCenter {
  text-align: center;
}

.displayNone {
  display: none;
}

.apnt__cRed {
  color: #FF0000;
}

.apnt__cGreen {
  color: #00a32a;
}

.apnt__cOrange {
  color: #ffb300;
}

/* Safari */
@-webkit-keyframes apntLoaderSpin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes apntLoaderSpin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media print, screen and (min-width: 769px) {
  .pcBlock {
    display: block;
  }
  .spBlock {
    display: none !important;
  }
  .pcFlex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .spFlex {
    display: none !important;
  }
}
@media print, screen and (max-width: 768px) {
  .pcBlock {
    display: none !important;
  }
  .spBlock {
    display: block;
  }
  .pcFlex {
    display: none !important;
  }
  .spFlex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.apnt__calendar {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.apnt__calendar--centered {
  margin: 2.0833333333vw auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 52.0833333333vw;
}
.apnt__calendar__left {
  width: 45%;
}
.apnt__calendar__right {
  width: 65%;
  padding-left: 1em;
}
.apnt__calendar__datepicker {
  margin: 0 auto;
  width: 52.0833333333vw;
  height: 35.4166666667vw;
}
.apnt__calendar__datepicker--left {
  margin: 0 auto 0 0;
}

.apnt__modalBg {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 888;
  display: none;
}
.apnt__modalBg * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.apnt__modalWrap {
  width: 100%;
  height: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.apnt__modalBody {
  padding: 2.0833333333vw 1.0416666667vw 1.0416666667vw;
  width: 36.4583333333vw;
  height: 27.34375vw;
  background-color: #fff;
  position: relative;
}

.apnt__modalClose {
  position: absolute;
  top: 0.5208333333vw;
  right: 0.5208333333vw;
  width: 1.8229166667vw;
  height: 1.8229166667vw;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #555;
}
.apnt__modalClose::before, .apnt__modalClose::after {
  content: "";
  position: absolute;
  width: 1.25vw;
  height: 0.1041666667vw;
  background-color: #fff; /* Change color as needed */
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.apnt__modalClose::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.apnt__modalClose::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.apnt__modalClose:hover::before, .apnt__modalClose:hover::after {
  opacity: 0.8;
}

.apnt__modalLoader {
  display: none;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0.3125vw solid #c3c4c7;
  border-radius: 50%;
  border-top: 0.3125vw solid #555;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  -webkit-animation: apntLoaderSpin 1s linear infinite; /* Safari */
  animation: apntLoaderSpin 1s linear infinite;
}

.apnt__modalNotice {
  margin: 1.5625vw auto 0;
  font-size: 0.9375vw;
  font-weight: 500;
  text-align: center;
  color: #000;
}

.apnt__modalContent {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  height: 100%;
}
.apnt__modalContent--fullRow {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.apnt__modalContent--fullRow .apnt__timeSlot__item {
  padding: 0;
  border: none;
}
.apnt__modalContent--fullRow .apnt__timeSlot__itemLink {
  padding: 0.2604166667vw;
  border: 0.0520833333vw solid;
}
.apnt__modalContent .apnt__resMsg {
  color: #000;
}
.apnt__modalContent .apnt__resMsg * {
  color: #000;
  font-size: inherit;
  line-height: inherit;
}

.apnt__timeSlot {
  margin: 1.0416666667vw auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5208333333vw;
  list-style: none;
  overflow: scroll;
  width: 100%;
}
.apnt__timeSlot__item {
  margin: 0.2604166667vw 0 0 !important;
  padding: 0.2604166667vw;
  width: calc(33.33% - 0.5208333333vw);
  text-align: center;
  background-color: #000;
  color: #fff;
  border: 0.0520833333vw solid;
  font-size: 0.9375vw;
  line-height: 1.35;
  font-weight: 500;
}
.apnt__timeSlot__item:hover, .apnt__timeSlot__item.selected {
  color: #000;
  background-color: #b8e6bf;
  cursor: pointer;
  opacity: 0.6;
}
.apnt__timeSlot__item.booked, .apnt__timeSlot__item.not-available {
  color: #000;
  background-color: #fff;
  opacity: 0.2;
}
.apnt__timeSlot__item.selected {
  opacity: 1;
}
.apnt__timeSlot__date {
  font-size: 1.25vw;
  text-align: center;
}
.apnt__timeSlot__itemLink {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  font-size: inherit;
}
.apnt__timeSlot__itemLink:hover {
  color: inherit;
  font-size: inherit;
}

.apnt__resMsg {
  font-size: 0.9375vw;
  line-height: 1.35;
}
.apnt__resMsg a {
  color: #007fff;
  text-decoration: underline;
  cursor: pointer;
}
.apnt__resMsg a:hover {
  opacity: 0.8;
}

.apnt__check__icon {
  display: inline-block;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  background-color: #28a745;
  border-radius: 50%;
  position: relative;
}
.apnt__check__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25vw;
  height: 2.2916666667vw;
  border: solid #fff;
  border-width: 0 0.2083333333vw 0.2083333333vw 0;
  -webkit-transform: translate(-50%, -65%) rotate(45deg);
          transform: translate(-50%, -65%) rotate(45deg);
}

.apnt__cross__icon {
  display: inline-block;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  background-color: #FF0000;
  border-radius: 50%;
  position: relative;
}
.apnt__cross__icon::before, .apnt__cross__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.6041666667vw;
  height: 0.2083333333vw;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.apnt__cross__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.apnt__calendar .ui-datepicker {
  width: 100% !important; /* Full width */
  max-width: none !important; /* Override any max-width */
  height: inherit;
}

.apnt__calendar .ui-datepicker table {
  width: 100%; /* Make sure table inside expands */
  height: 88%;
}

.apnt__timeSlot__list {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 280px;
  margin: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.apnt__timeSlot__list label {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 110px;
  margin: 10px 0 0;
}
.apnt__timeSlot__list * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media print, screen and (max-width: 768px) {
  .apnt__calendar--centered {
    margin: 10.6666666667vw auto;
    max-width: initial;
  }
  .apnt__calendar__datepicker {
    width: 100%;
    height: 106.6666666667vw;
  }
  .apnt__calendar .ui-datepicker table {
    width: 100%; /* Make sure table inside expands */
    height: 84%;
  }
  .apnt__modalBody {
    padding: 6.6666666667vw 4vw 6.6666666667vw;
    width: 86.6666666667vw;
    height: 113.0666666667vw;
  }
  .apnt__modalClose {
    position: absolute;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .apnt__modalClose::before, .apnt__modalClose::after {
    width: 4.8vw;
    height: 0.5333333333vw;
  }
  .apnt__modalLoader {
    border: 1.0666666667vw solid #c3c4c7;
    border-top: 1.0666666667vw solid #555;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
  .apnt__modalNotice {
    margin: 5.3333333333vw auto 0;
    font-size: 3.7333333333vw;
  }
  .apnt__timeSlot {
    padding: 0;
    margin: 5.3333333333vw auto;
    gap: 1.0666666667vw;
  }
  .apnt__timeSlot__item {
    margin: 1.3333333333vw auto 0;
    padding: 1.3333333333vw;
    width: 24.5333333333vw;
    border: 0.2666666667vw solid;
    font-size: 3.2vw;
  }
  .apnt__timeSlot__date {
    font-size: 4.8vw;
  }
  .apnt__resMsg {
    margin: 5.3333333333vw auto 0;
    font-size: 3.4666666667vw;
    overflow: scroll;
  }
  .apnt__check__icon {
    width: 16vw;
    height: 16vw;
  }
  .apnt__check__icon::before {
    width: 2.6666666667vw;
    height: 5.8666666667vw;
    border-width: 0 0.5333333333vw 0.5333333333vw 0;
  }
  .apnt__cross__icon {
    display: inline-block;
    width: 16vw;
    height: 16vw;
  }
  .apnt__cross__icon::before, .apnt__cross__icon::after {
    width: 6.6666666667vw;
    height: 0.5333333333vw;
  }
}
/* Date Picker Default Styles */
.ui-datepicker {
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-top: none;
  border-radius: 2.6041666667vw;
  -webkit-box-shadow: 0 0 0.0520833333vw #cf1e26, 0 0 0.2604166667vw #cf1e26, 0 0 1.0416666667vw #cf1e26;
          box-shadow: 0 0 0.0520833333vw #cf1e26, 0 0 0.2604166667vw #cf1e26, 0 0 1.0416666667vw #cf1e26;
  width: auto !important;
  z-index: 1000 !important;
  overflow: hidden;
}
.ui-datepicker * {
  padding: 0;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  width: auto;
  font-size: 0.9375vw;
  line-height: 1.2;
  width: auto;
}
.ui-datepicker table {
  font-size: 0.8333333333vw;
  margin: 0;
  border: none;
  border-collapse: collapse;
}
.ui-datepicker thead th {
  background: #313131;
  color: #fff;
  border-width: 1px;
  border-color: #eee;
  border-style: solid;
  font-size: 0.9375vw;
  line-height: 1.2;
}
.ui-datepicker thead th span {
  font-size: inherit;
  line-height: inherit;
}
.ui-datepicker tbody td {
  background: #fff;
  color: #000;
  border-width: 1px;
  border-color: #eee;
  border-style: solid;
  font-size: 0.8333333333vw;
  line-height: 1.2;
}
.ui-datepicker tbody td span {
  font-size: inherit;
  line-height: inherit;
}

.ui-datepicker .ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  padding: 1.0416666667vw;
  background-image: none;
  border: none;
  color: #fff;
  font-weight: normal;
}

.ui-datepicker .ui-datepicker-header .ui-state-hover {
  background: transparent;
  border-color: transparent;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0;
  padding: 0.5208333333vw 0;
  color: #fff;
  font-size: 0.9375vw;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title * {
  font-size: inherit;
  line-height: inherit;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: relative;
  top: 0;
  height: 1.7708333333vw;
  width: 1.7708333333vw;
}

.ui-datepicker .ui-state-hover.ui-datepicker-prev,
.ui-datepicker .ui-state-hover.ui-datepicker-next {
  border: none;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev-hover {
  left: 0;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next-hover {
  right: 0;
}

.ui-datepicker .ui-datepicker-prev {
  float: left;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "";
  background-image: url("./../images/common/arrow-r-wh.png");
  width: 1.4583333333vw !important;
  height: 0.4166666667vw !important;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: bottom;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.ui-datepicker .ui-datepicker-next {
  float: right;
}

.ui-datepicker .ui-datepicker-next:before {
  content: "";
  background-image: url("./../images/common/arrow-r-wh.png");
  width: 1.4583333333vw !important;
  height: 0.4166666667vw !important;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: bottom;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: none;
}

.ui-datepicker .ui-datepicker-next.ui-state-disabled,
.ui-datepicker .ui-datepicker-prev.ui-state-disabled {
  visibility: hidden;
}

.ui-datepicker .ui-datepicker-next:not(.ui-state-disabled):before,
.ui-datepicker .ui-datepicker-prev:not(.ui-state-disabled):before {
  font: normal 0.5882352941 "dashicons";
  padding-left: 0.3645833333vw;
  color: #fff;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 1.7708333333vw;
  height: 1.7708333333vw;
}

.ui-datepicker .ui-datepicker-prev-hover:before,
.ui-datepicker .ui-datepicker-next-hover:before {
  opacity: 0.7;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 33%;
}

.ui-datepicker thead {
  color: #fff;
  font-weight: 600;
}

.ui-datepicker th {
  padding: 0.5208333333vw;
}

.ui-datepicker td {
  padding: 0;
}

.ui-datepicker td.ui-datepicker-other-month {
  border: transparent;
}

.ui-datepicker td.ui-datepicker-today {
  background-color: #b8e6bf;
}

.ui-datepicker td.ui-datepicker-current-day {
  background: #b8e6bf;
}

.ui-datepicker td.ui-state-disabled {
  cursor: not-allowed !important;
  opacity: 0.35;
}

.ui-datepicker td.ui-state-disabled .ui-state-default {
  background: #fff;
}

.ui-datepicker td .ui-state-default {
  background: transparent;
  border: none;
  text-align: center;
  text-decoration: none;
  width: auto;
  display: block;
  padding: 0.2604166667vw 0.5208333333vw;
  font-weight: normal;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.ui-datepicker td .ui-state-default.ui-priority-secondary {
  opacity: 0.3;
}

.ui-datepicker td .ui-state-default.ui-priority-secondary.ui-state-hover {
  opacity: 1;
}

/* WordPress Color Schemes */
/* Default/Unknown */
.ui-datepicker .ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  background: #cf1e26;
}

.ui-datepicker thead {
  background: #313131;
}

.ui-datepicker td .ui-state-hover {
  background: #b8e6bf;
}

@media print, screen and (max-width: 768px) {
  .ui-datepicker {
    padding: 0;
    margin: 0;
    background-color: #fff;
    border-top: none;
    border-radius: 4.2666666667vw;
    -webkit-box-shadow: 0 0 0.2666666667vw #cf1e26, 0 0 1.3333333333vw #cf1e26, 0 0 5.3333333333vw #cf1e26;
            box-shadow: 0 0 0.2666666667vw #cf1e26, 0 0 1.3333333333vw #cf1e26, 0 0 5.3333333333vw #cf1e26;
    width: auto !important;
    z-index: 1000 !important;
    overflow: hidden;
  }
  .ui-datepicker * {
    font-size: 3.2vw;
  }
  .ui-datepicker table {
    font-size: 3.2vw;
  }
  .ui-datepicker thead th {
    padding: 2.1333333333vw 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
  .ui-datepicker tbody td {
    background: #fff;
    color: #000;
    border-width: 1px;
    border-color: #eee;
    border-style: solid;
    font-size: 3.2vw;
    line-height: 1.2;
  }
  .ui-datepicker tbody td span {
    font-size: inherit;
    line-height: inherit;
  }
  .ui-datepicker .ui-widget-header,
  .ui-datepicker .ui-datepicker-header {
    padding: 2.6666666667vw;
  }
  .ui-datepicker .ui-datepicker-title {
    padding: 2.6666666667vw 0;
    font-size: 4.8vw;
  }
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    height: 9.0666666667vw;
    width: 9.0666666667vw;
  }
  .ui-datepicker .ui-datepicker-prev:before {
    width: 7.4666666667vw !important;
    height: 2.1333333333vw !important;
  }
  .ui-datepicker .ui-datepicker-next:before {
    width: 7.4666666667vw !important;
    height: 2.1333333333vw !important;
  }
  .ui-datepicker .ui-datepicker-next:not(.ui-state-disabled):before,
  .ui-datepicker .ui-datepicker-prev:not(.ui-state-disabled):before {
    font: normal 0.5882352941 "dashicons";
    padding-left: 1.8666666667vw;
    width: 9.0666666667vw;
    height: 9.0666666667vw;
  }
  .ui-datepicker td .ui-state-default {
    padding: 1.3333333333vw 1.6vw;
  }
}
.apnt__form input,
.apnt__form textarea {
  margin: 1em 0;
}
.apnt__form input[type=text],
.apnt__form input[type=password],
.apnt__form textarea {
  width: 100%;
}
.apnt__form input[type=checkbox],
.apnt__form input[type=radio] {
  margin: 1em 0.5em;
}

.apnt__login {
  margin: 1.0416666667vw auto;
  padding: 2.0833333333vw 2.0833333333vw;
  width: 100%;
  max-width: 36.4583333333vw;
  -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 22px 1px rgba(0, 0, 0, 0.4);
  border-radius: 0.4166666667vw;
}
.apnt__login__heading {
  margin: 0 auto 1.0416666667vw;
  font-size: 1.6666666667vw;
  line-height: 1.35;
  font-weight: bold;
}
.apnt__login__msg {
  margin: 0.78125vw auto;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.35;
  color: #FF0000;
}
.apnt__login__row--remember {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.apnt__login__row--remember input[type=checkbox] {
  margin: 1em 0.5em 1em 0;
}
.apnt__login__row--remember label {
  cursor: pointer;
}
.apnt__login__row--submit {
  margin-top: 3.125vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.apnt__login .btn {
  margin: 0;
  color: #fff;
}

.apnt__profile {
  margin: 3.125vw auto 0;
}
.apnt__profile__msg {
  margin: 0.78125vw auto;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.35;
  color: #00a32a;
}
.apnt__profile__row {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.apnt__profile__headerAction {
  margin-bottom: 1.5625vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.apnt__profile__headerAction .btn:not(*:last-of-type) {
  margin-right: 0.5208333333vw;
}

.apnt__video {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}

.apnt__videoActions {
  margin: 1.0416666667vw auto 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.apnt__videoActions button:not(:last-of-type) {
  margin-right: 0.5em;
}

.apnt__msg {
  margin: 1em 0;
  font-size: 0.9375vw;
  line-height: 1.35;
}
.apnt__msg.error {
  color: #FF0000;
}
.apnt__msg.success {
  color: #00a32a;
}

.apnt__itemTableWrapper {
  margin: 2.0833333333vw auto;
}

.apnt__itemTable {
  margin: 0 auto;
  padding: 0;
  border-collapse: collapse;
  width: 100%;
  background: transparent;
  border-radius: 0.8333333333vw;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
  overflow: auto;
}
.apnt__itemTable * {
  font-size: 0.9375vw;
  line-height: 1.5;
}
.apnt__itemTable th,
.apnt__itemTable td {
  padding: 0.4166666667vw 0.2083333333vw;
}
.apnt__itemTable thead th {
  padding: 0.78125vw 0.5208333333vw;
  background: #313131 !important;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
}
.apnt__itemTable thead th:last-child {
  border-color: rgba(255, 255, 255, 0.4);
  background: #313131;
}
.apnt__itemTable tbody td {
  width: auto;
}
.apnt__itemTable tbody td:first-child {
  border-left: 1px solid #d12a3b;
}
.apnt__itemTable tbody td:last-child {
  background: #000;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
}
.apnt__itemTable th {
  padding: 0.4166666667vw 0.2083333333vw;
  background-color: #fff;
  font-weight: 500;
}
.apnt__itemTable tr:nth-child(odd) {
  background-color: #f6f7f7;
}
.apnt__itemTable td {
  text-align: center;
}
.apnt__itemTable td:nth-child(1) {
  font-weight: 500;
}
.apnt__itemTable td.appointment-info {
  padding: 0.5208333333vw;
  text-align: left;
}
.apnt__itemTable .btn {
  margin: 0 auto;
  width: 6.6666666667vw;
  height: 2.8125vw;
  min-width: auto;
  color: #fff;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.8333333333vw;
}
.apnt__itemTable .btn.spaceRight {
  margin-right: 0.78125vw;
}
.apnt__itemTable .btn:hover {
  opacity: 0.8;
}

.apnt__userSched {
  margin: 2.0833333333vw auto;
  max-width: 62.5vw;
}

.apnt__searchForm {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.apnt__searchForm input[type=text] {
  padding: 0.5208333333vw;
  margin-right: 0.5208333333vw;
  width: 14.5833333333vw;
  border: 1px solid #fff;
  height: 2.2916666667vw;
  background: #fff;
  font-size: 0.9375vw;
  color: #000;
  line-height: 1.35;
}
.apnt__searchForm button[type=submit] {
  margin-right: 0.4166666667vw;
}
.apnt__searchForm .btn {
  margin: 0;
  width: 6.6666666667vw;
  height: 2.8125vw;
  min-width: auto;
  color: #fff;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.8333333333vw;
}
.apnt__searchForm .btn.spaceRight {
  margin-right: 0.78125vw;
}

.apnt__itemPagination {
  margin: 1.0416666667vw auto 0;
  padding: 0.5208333333vw;
  font-size: 0.8333333333vw;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
.apnt__itemPagination .page-numbers {
  padding: 0.4166666667vw;
  display: inline-block;
  width: 2.0833333333vw;
  border: 1px solid #555;
  background-color: #fff;
  color: #555;
  cursor: pointer;
  text-decoration: none;
}
.apnt__itemPagination .page-numbers.current {
  color: #fff;
  background-color: #555;
}
.apnt__itemPagination .page-numbers:hover {
  opacity: 0.8;
}

#apnt__loadingContainer {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
  z-index: 9999;
}

.apnt__loaderWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.apnt__loaderObj {
  display: block;
  border: 0.2083333333vw solid #f3f3f3;
  border-radius: 50%;
  border-top: 0.2083333333vw solid #8c8f94;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  -webkit-animation: apntLoaderSpin 1s linear infinite; /* Safari */
  animation: apntLoaderSpin 1s linear infinite;
}

.apnt__date__actions .btn {
  margin: 1.0416666667vw auto 0;
  font-size: 1.0416666667vw;
  line-height: 1.2;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  color: #fff;
  width: 9.375vw;
  height: 3.5416666667vw;
}

@media print, screen and (max-width: 768px) {
  .apnt__login {
    margin: 5.3333333333vw auto;
    padding: 10.6666666667vw 10.6666666667vw;
    max-width: 186.6666666667vw;
    border-radius: 2.1333333333vw;
  }
  .apnt__login__heading {
    margin: 0 auto 5.3333333333vw;
    font-size: 8.5333333333vw;
  }
  .apnt__login__msg {
    margin: 4vw auto;
    font-size: 4.8vw;
  }
  .apnt__profile {
    margin: 8vw auto 0;
    max-width: 186.6666666667vw;
  }
  .apnt__profile__msg {
    margin: 4vw auto;
    font-size: 4.8vw;
  }
  .apnt__profile__headerAction {
    margin-bottom: 8vw;
  }
  .apnt__profile__headerAction .btn:not(*:last-of-type) {
    margin-right: 2.6666666667vw;
  }
  .apnt__calendar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .apnt__calendar__left {
    width: 100%;
  }
  .apnt__calendar__right {
    margin: 10.6666666667vw auto 0;
    padding-left: 0;
    width: 100%;
  }
  .apnt__msg {
    font-size: 4.8vw;
  }
  .apnt__itemTableWrapper {
    width: 100%;
    overflow: scroll;
  }
  .apnt__itemTable {
    margin: 5.3333333333vw auto;
    width: 160vw;
  }
  .apnt__itemTable * {
    font-size: 3.2vw;
    line-height: 1.5;
  }
  .apnt__itemTable th,
  .apnt__itemTable td {
    padding: 2.1333333333vw 1.0666666667vw;
  }
  .apnt__itemTable thead th {
    padding: 2.6666666667vw 1.0666666667vw;
    font-size: 3.2vw;
  }
  .apnt__itemTable thead th:last-child {
    border-color: rgba(255, 255, 255, 0.4);
    background: #313131;
  }
  .apnt__itemTable tbody td {
    width: auto;
  }
  .apnt__itemTable tbody td:first-child {
    border-left: 1px solid #d12a3b;
  }
  .apnt__itemTable tbody td:last-child {
    background: #000;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.4);
    border-style: solid;
  }
  .apnt__itemTable th {
    padding: 2.1333333333vw 1.0666666667vw;
    background-color: #fff;
    font-weight: 500;
  }
  .apnt__itemTable tr:nth-child(odd) {
    background-color: #f6f7f7;
  }
  .apnt__itemTable td {
    text-align: center;
  }
  .apnt__itemTable td:nth-child(1) {
    font-weight: 500;
  }
  .apnt__itemTable td.appointment-info {
    padding: 2.6666666667vw 1.0666666667vw;
    text-align: left;
  }
  .apnt__itemTable .btn {
    margin: 0 auto;
    width: 22.6666666667vw;
    height: 7.4666666667vw;
    min-width: auto;
    border-radius: 2.1333333333vw;
  }
  .apnt__userSched {
    margin: 10.6666666667vw auto;
    max-width: initial;
    width: 100%;
  }
  .apnt__searchForm {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .apnt__searchForm input[type=text] {
    margin: 0 0 4vw;
    width: 74.6666666667vw;
    height: 7.2vw;
    padding: 1.3333333333vw;
    font-size: 2.1333333333vw;
    border-radius: 1.3333333333vw;
  }
  .apnt__searchForm button[type=submit] {
    margin-right: 2.1333333333vw;
  }
  .apnt__searchForm .btn {
    margin: 0;
    width: 32vw;
    height: 7.4666666667vw;
    border-radius: 2.1333333333vw;
  }
  .apnt__searchForm .btn.spaceRight {
    margin-right: 4vw;
  }
  .apnt__itemPagination {
    margin: 5.3333333333vw auto 0;
    padding: 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
  .apnt__itemPagination .page-numbers {
    padding: 1.0666666667vw;
    width: 8vw;
  }
  .apnt__loaderObj {
    border: 1.0666666667vw solid #f3f3f3;
    border-top: 1.0666666667vw solid #8c8f94;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
  .apnt__date__actions .btn {
    margin: 5.3333333333vw auto 0;
    font-size: 3.7333333333vw;
    width: 32vw;
    height: 12.8vw;
  }
}