#imagen-producto{
	position: relative;
}

#calendar-html-output {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--lightgrey);
	height: 100%;
	width: 100%;
	overflow-x: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

#calendar-html-output::-webkit-scrollbar {
	display: none;
}

#calendar-outer {
	padding: 50px 0;
	width: 50%;
}

#calendar-outer ul {
	margin: 0px;
	padding: 0px;
}

#calendar-outer ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	transition: all 250ms ease;
	position: relative;
}

#calendar-outer ul li span.span-full{
	position: absolute;
	top: 2px;
	left: 2px;
	font-size: 11px;
	color: black;
}

#calendar-outer ul li span.span-suplemento{
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 11px;
	color: black;
}

#calendar-outer ul li.pasado {
	opacity: 0.3;
}

#calendar-outer ul li.hoy {
	border: 1px solid black;
}

#calendar-outer ul li.disabled {
	/*background-color: #ffebeb;*/
	opacity: 0.3;
}

#calendar-outer ul li.active:hover{
	cursor: pointer;
	background-color: black;
	color: white;
}

#calendar-outer ul li.active:hover span{
	color: white;
}


#calendar-outer ul li.select {
	background-color: #c8ffc8;
}

.prev {
	display: inline-block;
	float: left;
	cursor: pointer
}

.next {
	display: inline-block;
	float: right;
	cursor: pointer
}

.week-name-title{
	display: flex;
}

div.calendar-nav {
	text-align: center;
	padding: 10px 0;
	color: black;
	box-sizing: border-box;
	font-weight: 300;
	text-transform: capitalize;
}

#calendar-outer .week-name-title li {
	display: inline-block;
	padding: 10px 0;
	color: black;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	background-color: white;
	text-transform: lowercase;
}

.week-day-cell{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.week-day-cell li {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: black;
	border: 1px solid #f7f7f7;
	font-size: 13px;
}