/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.opening-hours-container {
	position: relative;
}
.opening-hours-container.with-dropdown .opening-hours-today {
	position: relative;
	padding-right: 25px;
}
.opening-hours-container.with-dropdown .opening-hours-today .dropdown-icon {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 10px;
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    margin-top: -3px;
    -webkit-transition: .1s 
	ease-in-out;
    transition: .1s 
	ease-in-out;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    cursor: pointer;
}

.opening-hours-container.dropdown-open .opening-hours-today .dropdown-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.opening-hours-container .opening-hours-dropdown {
	display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background-color: rgba(255, 255, 255, 100) !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
    width: 100%;
    z-index: 9999;
    padding: 15px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Safari */
    -khtml-user-select: none;   /* Konqueror HTML */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Standard syntax */
}

.opening-hours-container.dropdown-open .opening-hours-dropdown {
    display: block;
}

.opening-hours-container .opening-hours-dropdown .opening-hours-schedule-item {
    line-height: 1.25rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}