/*----------------- 
Shared related CSS
-----------------*/
/* SPINNER CSS */
.spinner-overlay {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.7);
}
.spinner-overlay-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.lds-roller {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  /*position: relative;*/
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* VANILLA DATEPICKER CSS */
.ccmsb_datepicker {
  display: none;
}

.ccmsb_datepicker.active {
  display: block;
}

.ccmsb_datepicker-dropdown {
  /*position: absolute;*/
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 4px;
}

.ccmsb_datepicker-dropdown .ccmsb_datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.ccmsb_datepicker-picker {
  display: inline-block;
  border-radius: 4px;
  background-color: white;
}

.ccmsb_datepicker-dropdown .ccmsb_datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.ccmsb_datepicker-picker span {
  display: block;
  flex: 1;
  border: 0;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ccmsb_datepicker-main {
  padding: 2px;
}

.ccmsb_datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
}

.ccmsb_datepicker-grid,
.ccmsb_datepicker-view .ccmsb_days-of-week,
.ccmsb_datepicker-view,
.ccmsb_datepicker-controls {
  display: flex;
}

.ccmsb_datepicker-grid {
  flex-wrap: wrap;
}

.ccmsb_datepicker-view .ccmsb_days .ccmsb_datepicker-cell,
.ccmsb_datepicker-view .ccmsb_dow {
  flex-basis: 14.2857142857%;
}

.ccmsb_datepicker-view.ccmsb_datepicker-grid .ccmsb_datepicker-cell {
  flex-basis: 25%;
}

.ccmsb_datepicker-cell,
.ccmsb_datepicker-view .ccmsb_week {
  height: 2.25rem;
  line-height: 2.25rem;
}

.ccmsb_datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls {
  padding: 2px 2px 0;
}

.ccmsb_datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: none;
  background-color: white;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #363636;
  font-size: 1rem;
}
.ccmsb_datepicker-cell.selected,.ccmsb_datepicker-cell.today,.ccmsb_datepicker-cell.highlighted,.ccmsb_datepicker-cell.unavailable {
  border-radius: 50%;
}

.ccmsb_datepicker-controls .button:focus,
.ccmsb_datepicker-controls .button:active {
  outline: none;
}

.ccmsb_datepicker-controls .button:hover {
  border-color: #b5b5b5;
  color: #363636;
}

.ccmsb_datepicker-controls .button:focus {
  border-color: #3273dc;
  color: #363636;
}

.ccmsb_datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.ccmsb_datepicker-controls .button:active {
  border-color: #4a4a4a;
  color: #363636;
}

.ccmsb_datepicker-controls .button[disabled] {
  cursor: not-allowed;
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls .button:hover {
  background-color: #f9f9f9;
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls .button:active {
  background-color: #f2f2f2;
}

.ccmsb_datepicker-header .ccmsb_datepicker-controls .button[disabled] {
  box-shadow: none;
}

.ccmsb_datepicker-footer .ccmsb_datepicker-controls .button {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  width: 100%;
  font-size: 0.75rem;
}

.ccmsb_datepicker-controls .view-switch {
  flex: auto;
}

.ccmsb_datepicker-controls .prev-btn,
.ccmsb_datepicker-controls .next-btn {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  width: 2.25rem;
}

.ccmsb_datepicker-controls .prev-btn.disabled,
.ccmsb_datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.ccmsb_datepicker-view .ccmsb_dow {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.ccmsb_datepicker-view .ccmsb_week {
  width: 2.25rem;
  color: #b5b5b5;
  font-size: 0.75rem;
}

@media (max-width: 22.5rem) {
  .ccmsb_datepicker-view .ccmsb_week {
    width: 1.96875rem;
  }
}

.ccmsb_datepicker-grid {
  width: 15.75rem;
}

@media (max-width: 22.5rem) {
  .calendar-weeks + .days .ccmsb_datepicker-grid {
    width: 13.78125rem;
  }
}

.ccmsb_datepicker-cell:not(.selected):not(.today):not(.unavailable):not(.disabled):not(.range):not(.range-start):not(.range-end):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.ccmsb_datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
}

.ccmsb_datepicker-cell.selected,
.ccmsb_datepicker-cell.selected:hover {
  background-color: #16a6be;
  color: #fff;
  font-weight: 600;
}

.ccmsb_datepicker-cell.disabled {
  color: #ffffff;
  background-color: #ff6e6e;
  cursor: not-allowed;
}
.ccmsb_datepicker-cell.unavailable {
  color: #dbdbdb;
  cursor: not-allowed;
}

.ccmsb_datepicker-cell.prev:not(.unavailable):not(.disabled),
.ccmsb_datepicker-cell.next:not(.unavailable):not(.disabled) {
  color: #7a7a7a;
  background-color: #e9e9e9;
  border-radius: 4px;
  opacity: 25%;
}

.ccmsb_datepicker-cell.prev.selected,
.ccmsb_datepicker-cell.next.selected {
  color: #e6e6e6;
}

.ccmsb_datepicker-cell.highlighted:not(.disabled):not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: whitesmoke;
}

.ccmsb_datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.unavailable):not(.disabled):hover {
  background-color: #eeeeee;
}

.ccmsb_datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}

.ccmsb_datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
  opacity: 50%;
}

.ccmsb_datepicker-cell.today:not(.selected):not(.unavailable):not(.disabled) {
  color: #fff;
}

.ccmsb_datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}

.ccmsb_datepicker-cell.range-end:not(.selected),
.ccmsb_datepicker-cell.range-start:not(.selected) {
  background-color: #16a6be;
  color: #fff;
}

.ccmsb_datepicker-cell.range-end.focused:not(.selected),
.ccmsb_datepicker-cell.range-start.focused:not(.selected) {
  background-color: #afafaf;
}

.ccmsb_datepicker-cell.range-start,.ccmsb_datepicker-cell.disabled-start {
  border-radius: 50% 0 0 50%;
}

.ccmsb_datepicker-cell.range-end:not(.range-start),.ccmsb_datepicker-cell.disabled-end:not(.disabled-start) {
  border-radius: 0 50% 50% 0;
}

.ccmsb_datepicker-cell.range {
  border-radius: 0;
  background-color: #16a6be;
  color: #fff;
}

.ccmsb_datepicker-cell.range:not(.unavailable):not(.disabled):not(.focused):not(.today):not(.range):not(.range-start):not(.range-end):hover {
  background-color: #d5d5d5;
}

.ccmsb_datepicker-cell.range.disabled {
  color: #c2c2c2;
}
.ccmsb_datepicker-cell.range.unavailable {
  color: #c2c2c2;
}

.ccmsb_datepicker-cell.range.focused {
  background-color: #cfcfcf;
}

.ccmsb_datepicker-view.ccmsb_datepicker-grid .ccmsb_datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}

.ccmsb_datepicker-input.in-edit {
  border-color: #2366d1;
}

.ccmsb_datepicker-input.in-edit:focus,
.ccmsb_datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
}

/* OTHER CSS */


.ccmsb_calendardiv_wide{
  max-width: 700px;
  min-width: 350px;
}
.ccmsb_calendardiv_compact{
  max-width: 450x;
}
.ccmsb_calendar_input_row_wide{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-top: 10px;
}
.ccmsb_calendar_input_row_compact{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-top: 10px;
}
.ccmsb_calendar_input_col{
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  flex-basis: max-content;
}
.ccmsb_calendar_input{
  flex-basis: 100%;
  max-width: 100%;
}
.ccmsb_col_100{
  min-width:100%;
}
.ccmsb_col_90{
  min-width:90%;
}
.ccmsb_col_80{
  min-width:80%;
}
.ccmsb_col_75{
  min-width:75%;
}
.ccmsb_col_70{
  min-width:70%;
}
.ccmsb_col_66{
  min-width:66.664%;
}
.ccmsb_col_60{
  min-width:60%;
}
.ccmsb_col_50{
  min-width:50%;
}
.ccmsb_col_40{
  min-width:40%;
}
.ccmsb_col_33{
  min-width:33.333%;
}
.ccmsb_col_30{
  min-width:30%;
}
.ccmsb_col_25{
  min-width:25%;
}
.ccmsb_col_20{
  min-width:20%;
}
.ccmsb_col_10{
  min-width:10%;
}
.ccmsb_calendar_button_book_now{
  width: 100%;
  height: 40px;
  font-size: 1.5rem;
}

/* end calendar css */
/* start common css */
.ccmsb_flexcontainer{
  display: flex;
}
.ccmsb_flexcontainer > div{
  flex: 1;
}
.ccmsb_checkboxcontainer{
  
}
.ccmsb_numericvalue{
  text-align:right;
}
.ccmsb_hidden{
  display:none;
}
.ccmsb_calendar_error_message{
  color:red;
  padding-bottom:10px;
}
.ccmsb_calendar_error_label{
  color:red;
  font-weight:bold;
}
/* end common css */
