.calendar-select, .calendar-select ul {list-style: none; display: inline-block;}
.calendar-select ul li {display: block; position: relative; float: left; /*border:1px solid #d3d3d3;*/}
.calendar-select li ul {display: none}
.calendar-select li:hover ul {background: #fff; display: block; position: absolute; border:1px solid #d3d3d3;}
.calendar-select li:hover li {float: none;}
.calendar-select ul li a {display: block; padding: 5px 10px 5px 10px; text-decoration: none; white-space: nowrap;}
.calendar-select ul {list-style: none; padding: 0px; margin: 0px; display: inline-block;}
.calendar-select li:hover li a:hover {background: #d3d3d3;}
.calendar-select ul {z-index: 99;}
.calendar-select {padding: 0px;}

/* Spinner and other styles */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s ease infinite;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.event-details .event-venue label {
    padding: 0;
}

.date-list hr {
    margin: 0 0 1rem 0;
}