.hc-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	background: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, .2);
}

.hc-loading img {
	display: inline-block;
	margin-right: 8px;
	width: 20px;
}

.hc-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
}

.hc-prev-background {
	position: absolute;
	top: -12px;
	left: -36px;
	width: 32px;
	height: 76px;
	background: #f7f7f7;
	z-index: 5;
}
.hc-next-background {
	position: absolute;
	top: -12px;
	right: -36px;
	width: 32px;
	height: 76px;
	background: #f7f7f7;
	z-index: 5;
}

.hc-next {
	border: solid #999;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.hc-prev {
	border: solid #999;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.hc-prev,
.hc-next {
	position: relative;
	top: 2px;
	min-width: 15px;
	width: 15px;
	height: 15px;
	cursor: pointer;
	z-index: 10;
}

.hc-calendar {
	position: relative;
	width: 100%;
	margin: 0 5px;
	white-space: nowrap;
	/* overflow-x: clip;
	overflow-y: visible; */
}

.hc-calendar-content {
	position: relative;
	left: 0;
	top: 18px;
	width: 6000px;
}

.hc-month {
	position: relative;
	float: left;
	height: 20px;
}

.hc-month-name {
	position: absolute;
	top: -26px;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: bold;
	color: white;
	background: #bbb;
	display: inline-block;
	padding: 2px 9px;
	border-radius: 0 12px 12px 0;
}

.hc-month-name::before {
	position: absolute;
	content: '';
	border-left: dashed 1px #bbb;
	height: 68px;
	top: 0;
	left: 0;
}

.hc-day {
	position: relative;
	float: left;
	font-size: 14px;
	text-align: center;
	font-weight: 400;
}

.hc-day.hc-today {
	font-weight: 900;
}

.hc-day.hc-weekend {
	color: red;
}

.hc-day.hc-con-eventos {
	cursor: pointer;
	border: solid 1px #273666;
}

.hc-day.hc-con-eventos:hover {
	color: white;
	background: #273666;
}

.hc-dayname {
	font-size: 10px;
	color: #aaa;
}

.hc-events {
	position: relative;
	top: -24px;
	width: 100%;
	padding-top: 4px;
	background: transparent;
	/* display:none; */
	visibility: hidden;
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.06), 0 8px 10px 1px rgba(0, 0, 0, 0.025), 0 3px 14px 2px rgba(0, 0, 0, 0.025);
	z-index: 100;
	opacity: 0;
	transition: opacity .2s;
}

.hc-day:hover .hc-events {
	display: block;
	visibility: visible;
	opacity: 1;
}

.hc-events .panel-group .panel+.panel {
	margin-top: 0;
}

.hc-events .panel-group .panel {
	border-radius: 0;
	border-color: transparent !important;
}

.hc-events .panel-heading {
	padding: 0 !important;
	border-radius: 0;
}

.hc-events .panel-heading h6 {
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

.hc-events .panel-heading h6 a {
	position: relative;
	left: 0;
	padding: 10px;
	display: block;
	text-decoration: none;
	white-space: normal;
	line-height: 1.4em;
	transition: all .2s;
}

.hc-events .panel-heading h6 a:hover {
	left: 4px;
}

.hc-event {
	display: block;
	padding: 15px;
	font-weight: 400;
	font-size: 12px;
	color: #2b2b2b;
	text-align: left;
	line-height: 1.2em;
	white-space: normal;
}

.hc-event .hc-hora {
	margin-bottom: 4px;
	font-size: 11px;
	color: #999;
}

.hc-event a.hc-titulo {
	text-decoration: none;
	outline: none;
	font-size: 13px;
	font-weight: bold;
	color: var(--primary-color);
}

.hc-event a.hc-titulo:hover {
	text-decoration: underline;
}

.hc-event .hc-categoria {
	margin-top: 6px;
	font-size: 11px;
	font-style: italic;
	color: #CDC24E;
}

.hc-event .hc-descripcion {
	margin-top: 6px;
	font-size: 12px;
}

.hc-event .hc-google-calendar a {
	display: block;
	margin-top: 8px;
	padding: 4px 8px;
	border-radius: 3px;
	background: #273666;
	color: white;
	text-decoration: none;
}

.hc-event .hc-google-calendar a:hover {
	background: #BF0C13;
}