/* Calendar
-------------------------------------------------- */

#calendar {
	overflow: hidden;
	padding: 0;
}
#calendar nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
	padding: 30px 33px;
}
#calendar .weeks {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #17335E;
	font-size: 16px;
	font-weight: var(--fw500);
	line-height: 20px;
	text-align: center;
}
#calendar .weeks a {
	display: block;
	flex-shrink: 0;
	/* border: 1px solid #F5F6F7; */
	border-radius: 100px;
	height: 40px;
	width: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: background-color ease-in-out .2s;
	cursor: pointer;
}
#calendar .weeks a:active {
	background-color: #fcfcfc;
}
#calendar #week-text {
	min-width: 230px;
	padding: 0 35px;
}
#calendar #prev-week,
#calendar #prev-day {
	background-image: url(../img/arrow-prev.svg);
}
#calendar #next-week,
#calendar #next-day {
	background-image: url(../img/arrow-next.svg);
}
#calendar .week {
	position: relative;
	max-height: calc(100vh - 240px);
	overflow: auto;
	overscroll-behavior: none; /* disable elastic bounce */
}
#calendar .days {
	position: sticky;
	top: 0;
	z-index: 22;
	border-top: 1px solid #F5F6F7;
	background-color: #FFF;
}
#calendar .days,
#calendar .hour {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 1090px;
}
#calendar .days .day,
#calendar .hour .day {
	position: relative;
	flex-grow: 1; /* can't grow */
	flex-shrink: 0; /* can't shrink */
	flex-basis: 143px; /* base size */
	border: 1px solid #F5F6F7;
	height: 62px; /* 68px; */
	background-color: #fff;
}
#calendar .hour .day {
	display: flex;
	justify-content: center;
}
#calendar .days .day.time,
#calendar .hour .day.time {
	flex-grow: 0; /* can't grow */
	flex-shrink: 0; /* can't shrink */
	flex-basis: 89px; /* base size */
	border-left: 0;
	position: sticky;
	left: 0;
	z-index: 20;
	/* border-color: transparent; */
}
#calendar .days .day:last-child,
#calendar .hour .day:last-child {
	border-right: 0;
}
#calendar .days .day {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #90A3BF;
	font-size: 12px;
	font-weight: var(--fw500);
	line-height: 20px;
	text-align: center;
}
#calendar .days .day span {
	margin-left: 4px;
	border-radius: 6px;
	padding: 2px 8px;
	font-weight: var(--fw600);
	line-height: 20px;
}
#calendar .days .day.active {
	color: #046CC3;
	font-weight: var(--fw700);
}
#calendar .days .day.active span {
	color: #FFF;
	background: #046CC3;
}
#calendar .days .day > .lock {
	display: none;
	/* display: inline-block; */
	margin-left: 4px;
	height: 20px;
	width: 20px;
	background: url(../img/lock-close.svg) center center no-repeat;
	cursor: pointer;
}
#calendar .days .day.locked,
#calendar .days .day.past,
#calendar .days .day.disabled {
	background-color: #FAFAFA;
}
#calendar .days .day.locked > .lock {
	background-image: url(../img/lock-open.svg);
}
#calendar .days .day.past > .lock {
	display: none;
}
#calendar .hour .day.locked,
#calendar .hour .day.past,
#calendar .hour .day.disabled {
	background-color: #FAFAFA;
}
#calendar .hour .day.locked .slot:not(.confirmed) {
	background-color: #F4F4F4;
}
#calendar .hour .day.locked .slot:not(.confirmed) > * {
	display: none;
}
/*
#calendar .hour .day.past .slot * {
	background-color: #F4F4F4;
}
*/
#calendar .hour .day.past:not(.disabled) .slot > * {
	display: none;
}
#calendar .hour .day.time {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #90A3BF;
	font-size: 12px;
	font-weight: var(--fw500);
	line-height: 20px;
	text-align: center;
	background-color: #FFF;
}
#calendar #hour-signal {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 21;
	height: 2px;
	width: 100%;
	background-color: #046CC3;
	background-image: linear-gradient(90deg, #046CC3 0%, #00C4FF 100%);
}
#calendar #hour-signal:before {
	content: ""; 
	position: absolute; 
	bottom: -4px; 
	left: -5px; 
	border-radius: 5px;
	height: 10px; 
	width: 10px; 
	background: #046CC3; 
}
#calendar .week:not(.today-week) #hour-signal {
	display: none;
}
#calendar .slot {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: absolute;
	top: 0;
	z-index: 1;
	/* margin: 3px 3px; */
	outline-offset: -3px;
	border: 3px solid #fff;
	border-radius: 5px; /* 10px; */
	height: 66px; /* 60px; */
	width: 100%; /* calc( 100% - 6px ); */
	min-width: 135px;
	/* max-width: 140px; */
	padding: 8px; /* 0 8px; */
	color: #17335E;
	font-size: 12px;
	font-weight: var(--fw600);
	line-height: 20px;
	text-align: center;
	background: #F4F4F4;
	cursor: pointer;
}
#calendar .slot:hover {
	z-index: 2;
}
#calendar .slot.empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	outline: 1px solid #00C4FF;
	/*border: 1px solid #00C4FF; */
	cursor: default;
}
#calendar .past .slot.empty {
	border-color: #FAFAFA;
	outline: none;
}
#calendar .slot.empty .lock {
	display: none;
	margin: 0 auto;
	height: 16px;
	width: 16px;
	background: url(../img/lock-close.svg) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}
#calendar .slot.empty .book {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	cursor: pointer;
}
#calendar .slot.empty .time {
	border-radius: 5px;
	padding: 0 6px;
	color: #FFF;
	font-size: 10px;
	font-weight: var(--fw600);
	line-height: 20px;
	background: #00C4FF;
}
#calendar .slot.empty .icon {
	display: block;
	height: 20px;
	width: 20px;
	min-width: 20px;
	background: url(../img/ico-add-user.svg) center center no-repeat;
}
#calendar .slot.empty .book span {
	padding: 0px 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#calendar .slot.group.empty {
	border-color: #FAFAFA; /* #046CC3; */
}
#calendar .slot.group.empty .time {
	background: #046CC3;
}
#calendar .slot.group.empty .icon {
	background-image: url(../img/ico-add-users.svg);
}
#calendar .slot.confirmed {
	border: 1px solid #29CC39;
	padding: 6px 6px 8px 10px;
	background: #EFFFF1;
}
#calendar .slot.confirmed > div {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #17335E;
	font-size: 12px;
	font-weight: var(--fw600);
	line-height: 20px;
}
#calendar .slot.confirmed > div:first-child {
	justify-content: left;
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#calendar .slot.confirmed .photo {
	flex: 0 0 16px;
	margin-right: 7px;
	border-radius: 8px;
	height: 16px;
	width: 16px;
	background: url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
}
#calendar .slot.group.confirmed .photo {
	display: none;
}
#calendar .slot.confirmed .note {
	display: block;
	margin-left: 4px;
	height: 12px;
	width: 12px;
	background: url(../img/ico-note.svg) center center no-repeat;
}
#calendar .slot.confirmed em {
	display: flex;
	align-items: center;
	border-radius: 5px;
	height: 20px;
	padding: 0 6px;
	color: #FFF;
	font-size: 10px;
	font-weight: var(--fw600);
	line-height: 18px;
	background: #29CC39;
}
#calendar .slot.confirmed em:nth-child(2) {
	margin: 0 4px;
}
#calendar .slot.confirmed em i {
	display: block;
	height: 12px;
	width: 12px;
}
#calendar .slot.confirmed em.length i {
	margin-left: 4px;
	background: url(../img/white-time-circle.svg) center center no-repeat;
}
#calendar .slot.confirmed em.loc.fitness-center i {
	background: url(../img/white-loc-fitness-center.svg) center center no-repeat;
}
#calendar .slot.confirmed em.loc.home i {
	background: url(../img/white-loc-home.svg) center center no-repeat;
}
#calendar .slot.confirmed em.loc.online i {
	background: url(../img/white-loc-online.svg) center center no-repeat;
}
#calendar .slot.group.confirmed {
	border-color: #8E59FE;
	background: #EFEFFF;
}
#calendar .slot.group.confirmed em {
	background-color: #8E59FE;
}
#calendar .slot.group.confirmed .note {
	background-image: url(../img/ico-note-purple.svg);
}
#calendar .slot.locked,
#calendar .slot.locked.group {
	border-color: white;
	outline: 1px solid #91a3bf;
}

#calendar .slot.locked .lock {
	display: block;
	background-image: url(../img/lock-open.svg);
}
#calendar .slot.locked .book {
	filter: grayscale(100%);
	cursor: default;
}
#calendar .slot.locked .book .time,
#calendar .slot.locked .book .icon {
	opacity: .5;
}
#calendar .slot.group.locked .time {
	background: #00C4FF;
}

#calendar .time-node {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 4px;
	color: #046CC3;
	font-size: 12px;
	font-weight: var(--fw400);
	line-height: 15px;
	background: rgba(0, 196, 255, 0.25);
	opacity: 0;
}
#calendar .time-node.m15 {
	top: 25%;
}
#calendar .time-node.m30 {
	top: 50%;
}
#calendar .time-node.m45 {
	top: 75%;
}
#calendar .time-node:hover,
#calendar .time-node:active {
	opacity: 1;
}
#calendar .past .time-node,
#calendar .time .time-node,
#calendar .disabled .time-node {
	display: none;
}

#calendar .slot.booked {
	gap: 8px;
	outline: 1px solid #999;
	text-align: left;
	/* smaller */
	gap: 2px;
	padding: 2px 6px;
}
#calendar .slot.booked .session {
	display: flex;
	align-items: baseline;
	gap: 3px;
}
#calendar .slot.booked .session .name {
	flex: 1 0 auto;
	max-width: 60%;
	font-weight: var(--fw600);
	line-height: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#calendar .slot.booked .session .room {
	flex: 1 1 auto;
	font-size: 10px;
	font-weight: var(--fw500);
	line-height: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#calendar .slot.booked .customers {
	font-size: 10px;
	font-weight: 500;
	line-height: normal;
}
#calendar .slot.booked .customers i {
	opacity: .5;
}
#calendar .slot.booked .info {
	display: flex;
	align-items: center;
	gap: 6px;
}
#calendar .slot.booked .info em {
	display: flex;
	align-items: center;
	border-radius: 5px;
	height: 20px;
	padding: 0px 6px;
	color: #FFF;
	font-size: 10px;
	font-weight: var(--fw600);
	line-height: 20px;
	text-align: center;
	background-color: #999;
	/* smaller */
	height: 16px;
	line-height: 16px;
}
#calendar .slot.booked > .customer {
	display: flex;
	gap: 4px;
	align-items: center;
}
#calendar .slot.booked > .customer .photo {
	flex: 0 0 16px;
	border-radius: 8px;
	height: 16px;
	width: 16px;
	background: url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;	
}
#calendar .slot.booked > .customer .name {
	font-size: 12px;
	font-weight: var(--fw600);
	line-height: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#calendar .slot.booked > .room {
	font-size: 12px;
	font-weight: var(--fw500);
	line-height: normal;
	/* ellipsis */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* booked quarter */
#calendar .slot.booked.quarter {
	height: 15px !important;
	overflow: hidden;
	padding: 0 6px;
}
#calendar .slot.booked.quarter > .customer .photo {
	flex: 0 0 8px;
	height: 8px;
	width: 8px;
}
#calendar .slot.booked.quarter .customer .name,
#calendar .slot.booked.quarter .session .name,
#calendar .slot.booked.quarter .session .room {
	line-height: 9px;
	font-size: 9px;
}
#calendar .slot.booked.quarter > .room,
#calendar .slot.booked.quarter > .info {
	display: none;
}
#calendar .slot.locked.quarter,
#calendar .slot.locked.group.quarter {
	padding: 4px;
}
#calendar .slot.locked.quarter .lock {
	height: 8px;
	width: 8px;
}
/* booked half */
#calendar .slot.booked.half {
	justify-content: center;
	height: 30px !important;
	overflow: hidden;
}
#calendar .slot.booked.half > .room,
#calendar .slot.booked.half > .info,
#calendar .slot.booked.half > .customers {
	display: none;
}
/* booked halfquarter */
#calendar .slot.booked.halfquarter {
	justify-content: center;
	height: 45px !important;
	overflow: hidden;
}
#calendar .slot.booked.halfquarter > .info {
	display: none;
}
/* booked hour */
#calendar .slot.booked.fullhour {
	justify-content: center;
	height: 60px !important;
	overflow: hidden;
}

/* booked colors */
#calendar .slot.booked.yellow {
	outline-color: var(--yellow);
	background-color: #fbfded;
}
#calendar .slot.booked.yellow .info em {
	background-color: var(--yellow);
}
#calendar .slot.booked.green {
	outline-color: var(--green);
	background: #f2fbee;
}
#calendar .slot.booked.green .info em {
	background-color: var(--green);
}
#calendar .slot.booked.violet {
	outline-color: var(--violet);
	background: #f6effb;
}
#calendar .slot.booked.violet .info em {
	background-color: var(--violet);
}
#calendar .slot.booked.orange {
	outline-color: var(--orange);
	background: #fbf6ed;
}
#calendar .slot.booked.orange .info em {
	background-color: var(--orange);
}
#calendar .slot.booked.blue {
	outline-color: var(--blue);
	background: #eaf0f8;
}
#calendar .slot.booked.blue .info em {
	background-color: var(--blue);
}
#calendar .slot.booked.red {
	outline-color: var(--red);
	background: #faefec;
}
#calendar .slot.booked.red .info em {
	background-color: var(--red);
}



/* Modal (spec.)
-------------------------------------------------- */

.lock-slot {
	display: inline-block;
	margin-left: 4px;
	height: 20px;
	width: 20px;
	background: url('../img/lock-close.svg') center center no-repeat;
	cursor: pointer;
}
.confirmed .modal-dialog {
	border: 1px solid #29CC39;
	border-radius: 10px;
	height: auto /* 268px */;
	width: 244px;
	background: #EFFFF1;
}
.confirmed .modal-dialog .modal-close {
	background-image: url(../img/close-green.svg);
}
.confirmed .modal-dialog .delete {
	position: absolute;
	top: 16px;
	right: 52px;
	height: 24px;
	width: 24px;
	background: url(../img/ico-delete-xs.svg) center center no-repeat; /* ico-delete-sm.svg */
	cursor: pointer;
}
.confirmed .modal-body {
	padding: 24px 22px 16px;
	overflow: visible;
}
.confirmed .modal-body > div {
	display: flex;
	align-items: center;
	justify-content: center;
}
.confirmed .modal-body .photo-wrapper {
	margin: 24px auto 16px;
}
.confirmed .modal-body .photo-single {
	border-radius: 64px;
	height: 64px;
	width: 64px;
	background: url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
}
.confirmed .modal-body .name {
	margin-bottom: 16px;
	color: #17335E;
	font-size: 16px;
	font-weight: var(--fw600);
	line-height: 20px;
}
.confirmed .modal-body .badges {
	justify-content: space-between;
}
.confirmed .modal-body em {
	display: flex;
	align-items: center;
	border-radius: 5px;
	height: 28px;
	padding: 4px 12px;
	color: #FFF;
	font-size: 14px;
	font-weight: var(--fw600);
	line-height: 20px;
	background: #29CC39;
}
.confirmed .modal-body em:nth-child(2) {
	margin: 0 4px;
}
.confirmed .modal-body em i {
	display: block;
	height: 16px;
	width: 16px;
}
.confirmed .modal-body em.length i {
	margin-left: 4px;
	background: url(../img/white-time-circle-lg.svg) center center no-repeat;
}
.confirmed .modal-body em.loc.fitness-center i {
	background: url(../img/white-loc-fitness-center.svg) center center no-repeat;
	background-size: contain;
}
.confirmed .modal-body em.loc.home i {
	background: url(../img/white-loc-home.svg) center center no-repeat;
	background-size: 14px;
}
.confirmed .modal-body em.loc.online i {
	background: url(../img/white-loc-online.svg) center center no-repeat;
	background-size: contain;
}
.confirmed .modal-body .note {
	justify-content: flex-start;
	margin-top: 16px;
	max-height: 200px;
	overflow-y: auto;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 20px;
}
.confirmed .modal-body .note:empty {
	margin-top: 0;
}
.confirmed.group .modal-dialog {
	border: 1px solid #8E59FE;
	background: #F1EAFF;
	box-shadow: 0px 0px 8px 0px rgba(132, 41, 204, 0.25);
}
.confirmed.group .modal-dialog .modal-close {
	background-image: url(../img/close-purple.svg);
}
.confirmed.group .modal-body em {
	background: #8E59FE;
}
.confirmed.group .modal-body .photo-wrapper {
	margin-bottom: 8px;
}
.confirmed.group .modal-body .photo-wrapper .photo {
	position: relative;
	margin: 0;
	border-radius: 42px;
	height: 42px;
	width: 42px;
	background: #F1EAFF url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
}
.confirmed.group .modal-body .photo-wrapper .photo:nth-child(1) {
	z-index: 2;
	order: 2;
	border-radius: 48px;
	height: 48px;
	width: 48px;
}
.confirmed.group .modal-body .photo-wrapper .photo:nth-child(2) {
	z-index: 1;
	order: 1;
	margin-right: -12px;
}
.confirmed.group .modal-body .photo-wrapper .photo:nth-child(3) {
	z-index: 1;
	order: 3;
	margin-left: -12px;
}
.confirmed.group .modal-body .photo-wrapper .others {
	position: absolute;
	top: calc(50% - 10px);
	left: calc(100% + 4px);
	color: #8E59FE;
	font-size: 10px;
	font-weight: var(--fw600);
	line-height: 20px;
	text-align: center;
}
.confirmed.group .modal-body .photo-wrapper .photo.empty {
	background-image: none;
	box-shadow: none;
}
.confirmed.group .modal-body #add-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 8px;
	color: #8E59FE;
	text-align: center;
	font-size: 10px;
	font-weight: var(--fw500);
	line-height: 20px;
	cursor: pointer;
}
.confirmed.group .modal-body #add-remove.hide {
	display: none;
}
/*
#modal-book .modal-body .row:first-child {
	display: none;
}
#modal-book.group .modal-body .row:first-child {
	display: block;
}
*/
#modal-book .calendar {
	align-items: center;
	height: 64px;
}
#modal-book .calenadar .col.date,
#modal-book .calenadar .col.time {
	flex-basis: 50%;
}
#modal-book .modal-body .row .col.service,
#modal-book .modal-body .row .col.service-info {
	flex-basis: 50%;
	max-width: 50%;
}
#modal-book select[name=location] {
	max-width: 270px;
}
#modal-book select[name=session_title] {
	max-width: 100%;
	min-width: auto;
}
#modal-book.group select[name=session_title] option[data-group="0"] {
	display: none;
}
#modal-book:not(.group) select[name=session_title] option[data-group="1"] {
	display: none;
}
.modal-body .row .col.service-info b.included {
	color: var(--green);
}
#modal-book .row.recurring {
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 8px;
}
#modal-book .modal-body .row.recurring .col {
	flex-wrap: wrap;
	flex: 1 1 100%;
	padding: 0 20px;
}
#modal-book .modal-body .row.recurring .col label {
	flex: 1 1 100%;
	margin-bottom: 8px;
	color: #193766;
	font-size: 12px;
	font-weight: var(--fw500);
	line-height: 150%;
	letter-spacing: -0.28px;
	text-transform: none;
}
#modal-book .modal-body .row.group-pax {
	display: none;
}
#modal-book.group .modal-body .row.group-pax {
	display: flex;
}
#modal-book .modal-body .row.group-pax .col {
	background: url(../img/blu-users-add.svg) 20px center no-repeat;
}
#modal-book .modal-body .row.group-pax input {
	height: 30px;
	max-width: 270px;
	min-width: 176px;
	padding: 6px 12px;
}
#modal-book .save {
	justify-content: center;
	min-width: 127px;
}
#modal-book .save img {
	margin-left: 8px;
}
#modal-select-customers .modal-dialog {
	max-height: 500px;
}
#modal-select-customers .modal-header,
#modal-update-customers .modal-header {
	min-height: 68px;
	height: 68px;
}
#modal-select-customers .modal-body,
#modal-update-customers .modal-body {
	border-top: 1px solid #F7F7F7;
	border-bottom: 1px solid #F7F7F7;
}
#modal-select-customers .customer,
#modal-update-customers .customer {
	display: flex;
	align-items: center;
	height: 56px;
	padding: 16px 24px;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: 20px;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
}
#modal-select-customers .customer .img,
#modal-update-customers .customer .img {
	display: inline-block;
	margin-right: 8px;
	border-radius: 24px;
	height: 24px;
	width: 24px;
	background: url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
}
#modal-select-customers .customer input,
#modal-update-customers .customer input {
	margin-left: auto;
}
#modal-select-customers .customer .pkg,
#modal-update-customers .customer .pkg {
	margin-left: auto;
	padding: 0 0 0 20px;
	font-size: 12px;
	text-align: right;
}
#modal-select-customers .modal-footer,
#modal-update-customers .modal-footer {
	position: relative;
	padding: 57px 24px 24px 24px;
}
#modal-select-customers .modal-footer .availability,
#modal-update-customers .modal-footer .availability {
	display: block;
	position: absolute;
	top: 0;
	width: calc(100% - 48px);
	padding: 16px 0px;
	color: #2FB519;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 25px;
	text-align: center;
}
#modal-select-customers .modal-footer a,
#modal-update-customers .modal-footer a {
	display: block;
	margin-right: 0;
	margin-left: 16px;
	height: 25px;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw500);
	line-height: 25px;
	cursor: pointer;
}
#modal-select-customers .modal-footer a.btn-cancel,
#modal-update-customers .modal-footer a.btn-cancel {
	font-weight: var(--fw400);
}



#btn-booking {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	position: absolute;
	top: auto; right: 36px; bottom: 36px; left: auto;
	z-index: 100;
	border-radius: 10px;
	border: 0.8px solid #193766;
	height: 56px;
	width: 123px;
	padding: 0px 16px;
	color: var(--title-app, #17335E);
	text-align: center;
	font-size: 16px;
	font-weight: var(--fw300);
	line-height: 20px;
	background: #FFF;
	transition: background-color .2s ease-in-out;
}
/* #btn-booking:hover, */
#btn-booking:active {
	background-color: #F5F5F5;
}

#modal-choose-booking .modal-dialog {
	border-radius: 10px;
	width: 280px;
	padding: 16px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
#modal-choose-booking .modal-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 0px;
}
#modal-choose-booking a {
	display: flex;
	padding: 6px 8px 6px 36px;
	align-items: center;
	gap: 8px;
	height: 32px;
	color: #17335E;
	font-size: 14px;
	line-height: normal;
	font-weight: var(--fw400);
	text-align: center;
	background: url(../img/ico-calendar-xs.svg) 8px center no-repeat;
	transition: background-color .2s ease-in-out;
}
#modal-choose-booking a.add-group-book {
	background-image: url(../img/ico-users-x3.svg);
}
#modal-choose-booking a.add-lock-slot {
	background-image: url(../img/ico-lock.svg);
}
/* #modal-choose-booking a:hover, */
#modal-choose-booking a:active {
	border-radius: 5px;
	background-color: #F5F5F5;
}

#modal-show-booking .modal-dialog {
	gap: 24px;
	width: 390px;
	padding: 24px;
}
#modal-show-booking .modal-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
#modal-show-booking .modal-header {
	position: relative;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	gap: 8px;
	height: auto;
	min-height: auto;
	padding: 0 36px 0 0;
}
#modal-show-booking .modal-header .title {
	padding-right: 8px;
	color: var(--title-app, #17335E);
	font-size: 22px;
	font-weight: var(--fw600);
	line-height: normal;
}
#modal-show-booking .modal-header .title em {
	font-size: 18px;
	font-weight: var(--fw300);
	line-height: normal;
}
#modal-show-booking .modal-header .info {
	display: flex;
	align-items: center;
	gap: 8px;
}
#modal-show-booking .modal-header .info em {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	border-radius: 5px;
	padding: 4px 12px;
	color: #FFF;
	font-size: 14px;
	font-weight: var(--fw500);
	line-height: 20px;
	text-align: center;
	background-color: #999;
}
/* Show booking colors */
#modal-show-booking[data-room-color=yellow] .modal-header .info em {
	background-color: var(--yellow);
}
#modal-show-booking[data-room-color=green] .modal-header .info em {
	background-color: var(--green);
}
#modal-show-booking[data-room-color=violet] .modal-header .info em {
	background-color: var(--violet);
}
#modal-show-booking[data-room-color=orange] .modal-header .info em {
	background-color: var(--orange);
}
#modal-show-booking[data-room-color=blue] .modal-header .info em {
	background-color: var(--blue);
}
#modal-show-booking[data-room-color=red] .modal-header .info em {
	background-color: var(--red);
}







#modal-show-booking .modal-header .info em i {
	display: inline-block;
	height: 16px;
	width: 16px;
	background: url(../img/white-time-circle.svg) center center no-repeat;
	background-size: 14px;
}
#modal-show-booking.yellow .modal-header .info em {
	background-color: var(--yellow);
}
#modal-show-booking.green .modal-header .info em {
	background-color: var(--green);
}
#modal-show-booking.violet .modal-header .info em {
	background-color: var(--violet);
}
#modal-show-booking.orange .modal-header .info em {
	background-color: var(--orange);
}
#modal-show-booking.red .modal-header .info em {
	background-color: var(--red);
}
#modal-show-booking .delete {
	display: block;
	position: absolute;
	top: 1px; right: 0;
	height: 24px;
	width: 24px;
	background: url(../img/ico-delete-sm.svg) center center no-repeat;
	cursor: pointer;
}
#modal-show-booking .service {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#modal-show-booking .service .details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#modal-show-booking .service .name {
	color: #17335E;
	font-size: 16px;
	font-weight: var(--fw500);
	line-height: normal;
}
#modal-show-booking .service .length {
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: normal;
}
#modal-show-booking .service .rate {
	color: #17335E;
	font-size: 16px;
	font-weight: var(--fw500);
	line-height: normal;
}
#modal-show-booking .service .rate .del {
	color: #ccc;
	font-weight: var(--fw400);
	text-decoration: line-through;
}
#modal-show-booking .label {
	display: block;
	margin-bottom: 8px;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: normal;
}
#modal-show-booking .trainer .info {
	display: flex;
	align-items: center;
	gap: 8px;
}
#modal-show-booking .trainer .photo {
	border-radius: 14px;
	height: 28px;
	width: 28px;
	background: url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
}
#modal-show-booking .trainer .name {
	color: #17335E;
	font-size: 16px;
	font-weight: var(--fw400);
	line-height: normal;
}
#modal-show-booking .customers .list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#modal-show-booking .customers .list .photo-wrapper {
	display: flex;
	align-items: center;
	padding: 1px;
}
#modal-show-booking .customers .list .photo-wrapper .empty {
	color: #90A3BF;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: normal;
}
#modal-show-booking .customers .list .photo {
	position: relative;
	z-index: 3;
	border-radius: 24px;
	height: 24px;
	width: 24px;
	background: #FFF url(../img/ico-user.svg) center center no-repeat;
	background-size: cover;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}
#modal-show-booking .customers .list .photo:nth-child(2) {
	z-index: 2;
	margin-left: -9px;
}
#modal-show-booking .customers .list .photo:nth-child(3) {
	z-index: 1;
	margin-left: -9px;
}
#modal-show-booking .customers .list .photo.empty {
	display: none;
}
#modal-show-booking .customers .list .others {
	margin-left: 27px;
	color: #193766;
	font-size: 12px;
	font-weight: var(--fw300);
	line-height: 24px;
}
#modal-show-booking .customers .list .name {
	margin-left: 8px;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: normal;
}
#modal-show-booking .customers .edit {
	display: block;
	padding-right: 28px;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 24px;
	background: url(../img/ico-edit-out.svg) right center no-repeat;
}
#modal-show-booking .modal-footer.notes {
	justify-content: flex-start;
	padding: 0;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: normal;
}

#modal-slot-lock .modal-dialog {
	padding: 24px;
}
#modal-slot-lock .modal-header {
	margin-bottom: 24px;
	height: 20px;
	min-height: auto;
	font-weight: var(--fw500);
}
#modal-slot-lock .modal-dialog p {
	margin-bottom: 0;
}
#modal-slot-lock .modal-dialog input {
	padding: 8px 16px 8px 16px;
	text-align: center;
}
#modal-slot-lock .modal-footer {
	padding: 24px 0 0 0;
}
#modal-slot-lock .save {
	justify-content: center;
	margin: 0 0 0 16px;
	height: 48px;
	min-width: 127px;
	font-size: 16px;
	font-weight: var(--fw700);
}
#modal-slot-lock .save img {
	margin-left: 8px;
}
#modal-slot-lock .btn-cancel {
	font-size: 16px;
	font-weight: var(--fw600);
}


#modal-choose-delete-booking .modal-dialog {
	gap: 24px;
	border-radius: 10px;
	width: 400px;
	padding: 24px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
#modal-choose-delete-booking .modal-header {
	height: auto;
	min-height: auto;
	font-weight: var(--fw500);
	line-height: normal;
	text-align: center;
}
#modal-choose-delete-booking .modal-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 0px;
}
#modal-choose-delete-booking .modal-body .form label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}
#modal-choose-delete-booking .actions {
	display: flex;
	justify-content: flex-end;
}
#modal-choose-delete-booking .form button {
	margin: 0 0 0 16px;
	height: 48px;
	font-size: 16px;
	font-weight: var(--fw600);
}
#modal-choose-delete-booking .form button.out {
	border-color: transparent;
	color: #193766;
	font-weight: var(--fw600);
}
#modal-choose-delete-booking .form button.out:active {
	color: #FFF;
}
.modal .filter {
	display: block;
	margin: 16px auto;
	border: 1px solid #F3F5F7;
	border-radius: 10px;
	height: 48px;
	width: 100%;
	max-width: calc(100% - 48px);
	padding: 8px 52px 8px 22px;
	color: #344767;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: 32px;
	letter-spacing: -0.28px;
	background-color: #FFF;
	background-image: url(../img/ico-search.svg);
	background-position: calc(100% - 16px) center;
	background-repeat: no-repeat;
}
.modal .filter::-webkit-search-cancel-button {
	-webkit-appearance: none;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 10px;
	background:
		linear-gradient(45deg, rgba(25,55,102,0) 0%,rgba(25,55,102,0) 44.5%,#193766 45%,#193766 55%,rgba(25,55,102,0) 55.5%,rgba(25,55,102,0) 100%),
		linear-gradient(135deg, transparent 0%,transparent 44.5%,#193766 45%,#193766 55%,transparent 55.5%,transparent 100%);
	cursor: pointer;
}
.modal .filter:focus {
	outline: #046CC3 solid 1px;
}


/* Mobile
-------------------------------------------------- */

@media only screen and (max-width: 1024px) {
	#calendar nav {
		height: auto;
		padding: 16px 24px;
	}
	#calendar nav .view a em {
		display: none;
	}
	#calendar nav .view a img {
		width: 16px;
		vertical-align: middle;
	}
	#calendar nav .view a.active img {
		filter: brightness(300%);
	}
	#calendar #week-text {
		padding: 0 10px;
	}
	#calendar .week {
		max-height: calc(100vh - 226px);
	}
	#calendar .week::-webkit-scrollbar {
		display: none;
	}
}


/* Mobile < 768
-------------------------------------------------- */

@media only screen and (max-width: 767px) {
	#calendar .week .days > * {
		display: none;
	}
	#calendar .weeks {
		width: 100%;
		font-size: 14px;
		font-weight: var(--fw400);
	}
	#calendar .days,
	#calendar .hour {
		min-width: auto;
	}
	#calendar #day-text {
		/*
		min-width: 230px;
		padding: 0 35px;
		padding: 0 10px;
		*/
		padding: 0;
		line-height: normal;
	}
	#calendar .hour .day.time.first {
		visibility: hidden;
	}
	#calendar .hour .day.time {
		margin-top: -62px; /* -68px; */
		border-color: transparent;
		font-weight: var(--fw300);
	}
	#calendar .days .day,
	#calendar .hour .day {
		display: none;
		border-left-color: transparent;
		border-right-color: transparent;
	}
	#calendar .hour .day.curr-day {
		display: flex;
		flex-basis: calc(100vw - 90px);
	}
	#calendar .week:not(.today-day) #hour-signal {
		display: none;
	}
}
