
#myc-container {
    width: 100%;
	background: #fff;
	display: inline-block;
	border: 1px solid #bdbdbd;
	vertical-align: top;
}

#myc-container * {float: left; display: inline-block;}
#myc-nav-container-wrap {width: 100%;}
#myc-nav-container {
    width: 100%;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	font-family: 'Montserrat';
}

#myc-current-month-year-container {
    display: inline-block;
    font-size: 1.5em;
    font-weight: lighter;
    text-align: center;
    text-transform: capitalize;
    vertical-align: top;
    width: auto;
	line-height: 40px;
}

#myc-prev-week-container {
    display: inline-block;
    width: 40px; 
	border-right: 1px solid #e0e0e0;
	float: left;
	vertical-align: top;
}

#myc-next-week-container {
    display: inline-block;
    width: 40px;
	float: right;
	border-left: 1px solid #e0e0e0;
}


#myc-prev-week, #myc-next-week {
	color: #e0e0e0;
    cursor: pointer;
    float: left;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;	
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
}

#myc-next-week {
    float: right;
}
#myc-prev-week {background-image: url('../img/svg/arrow-prev.svg'); filter: invert(0);}
#myc-next-week {background-image: url('../img/svg/arrow-next.svg');filter: invert(0); }


#myc-prev-week:hover, #myc-next-week:hover {
filter: invert(1);
}

#myc-week-container {
    /*border-bottom: 1px solid #e0e0e0;*/
	width: 100%;
	float: left;
}

#myc-dates-container {
    background-color: #fafafa;
	width: 100%;
}

.myc-date-header {
    border-right: 1px solid #e0e0e0;
    display: inline-block;
    min-height: 50px;
    padding: var(--gap);
    vertical-align: top;
    width: 14.285%;
}


.myc-date-header:last-of-type {
    border-right: none;
}

#myc-available-time-container {
    border-top: 1px solid #e0e0e0;
    min-height: 150px;
}

.myc-day-time-container {
    display: inline-block;
    height: 100%;
    vertical-align: top;
    width: 14.285%;
}



.myc-date-number {
    font-size: 1.8em;
}

.myc-available-time {
    background-color:  #ccf7ee;
    border-radius: 0;
    color: #111;
    display: inline-block;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	border-right: 1px solid rgba(0,0,0,0.15);
    padding: 5px;
    text-align: center;
	width: 100%;
	text-decoration: none;
}

.myc-day-time-container:last-child .myc-available-time {border-right: 0;}
.myc-day-time-container .myc-available-time:last-of-type {border-bottom: 0;}


.myc-available-time:hover {
    color: #fff;
	background-color: #65baa9;
}

.myc-available-time.booked, .myc-available-time.booked:hover {
    color: #fff;
	background-color: #cc3333;
	cursor: default;
}


.myc-available-time.selected, .myc-available-time.selected:hover {
	color: #fff;
	background: var(--c-dark);
}
 
.myc-date-display {
    font-weight: lighter;
}

.myc-date-number,
.myc-date-display,
.myc-date-short {width: 100%; text-align:center;}
#myc-container .myc-date-short {display: none;}


.selected-date-wrapper {padding-top: var(--gap);}
#selected-date {margin: 0 0 var(--gap2) 0;}

.myc-available-time.unselectable {
	background-color: #f0f0f0;
	pointer-events: none;
	overflow: hidden;
	text-indent: -300%;
}

@media screen and (max-width: 800px){
#myc-container .myc-date-display {display: none;}
 #myc-container .myc-date-short {display: inline-block; font-size: 14px;}
}

@media screen and (max-width: 600px){
  
.myc-date-header {padding: var(--gap) 0;}  
 .myc-date-number,
 #myc-current-month-year-container { font-size: 1.2em;}  
 .myc-available-time {font-size: 14px; padding: 5px 0;}
  
}
