.bit-store-open .hide-when-open {
    display: none;
}

.bit-store-closed .hide-when-closed {
    display: none;
}

.bit_openinghours_wrap {
    position: relative;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.bit_openinghours_wrap .info_bar {
    display: flex;
    align-items: center;

    gap: var(--wp--preset--spacing--20);
}

.bit_openinghours_wrap a.info_bar_mobile_link {
    font-weight: normal;
    color: var(--wp--preset--color--white);
    text-decoration: none;
}


.bit_openinghours_wrap .info_bar_text {
    font-size: var(--wp--preset--font-size--normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    display: none;
}

@media (min-width: 992px) {
    .bit_openinghours_wrap .info_bar_text {
        display: block;
    }
}

.bit_openinghours_wrap .info_bar_opening {
    font-size: var(--wp--preset--font-size--x-small);
    text-align: left;
}

.bit_openinghours_wrap .info_bar_icon {
    position: relative;
    display: flex;
    justify-content: center;

    color: var(--wp--preset--color--grey-800);

    svg {
        width: var(--wp--preset--spacing--60);
        height: auto;
    }
}


.bit_openinghours_wrap .menu_decoration {
    white-space: nowrap;
}

.bit_openinghours_wrap .bit_openinghours_number a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

.bit_openinghours_marker {
    width: 0.75em;
    height: 0.75em;
    border-radius: 100%;
    display: inline-block;
}

.bit_openinghours_wrap .info_bar_icon .bit_openinghours_marker {
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 0;
    right: 0;
    border-radius: 100%;
    vertical-align: middle;
}

.bit_openinghours_marker.open {
    background: var(--wp--preset--color--vivid-green-cyan, #03BD3B);

}

.bit_openinghours_marker.closed {
    background: var(--wp--preset--color--vivid-red, #ff0000);
}

.bit_openinghours_wrap>span {
    vertical-align: middle;
}

.bit_openinghours_state {
    text-transform: capitalize;
}

.bit_openinghours_info_wrap {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 0.4s;
    right: 0;
}

.bit_openinghours_info {
    margin-top: 10px;
    background: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
    font-size: var(--wp--preset--font-size--small);
    padding: var(--wp--preset--spacing--10);
    color: var(--wp--preset--color--grey-800);
    border-radius: 12px;
}

.bit_openinghours_wrap:hover .bit_openinghours_info_wrap,
.bit_openinghours_wrap:focus .bit_openinghours_info_wrap {
    z-index: 99999999;
    opacity: 1;
    visibility: visible;
}

.bit_openinghours_table .bit_openinghours_day {
    padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
}

.bit_openinghours_table .today {
    font-weight: bold;
}

.bit_openinghours_table .bit_openinghours_time {
    white-space: nowrap;
    padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20)
}


.bit_openinghours_info_head {
    padding-block: var(--wp--preset--spacing--30);
    border-bottom: 1px solid var(--wp--preset--color--grey-300);
    margin-bottom: var(--wp--preset--spacing--30);
    text-align: center;
}

@media(min-width: 992px) {
    .bit_openinghours_info_head {
        display: none;
    }
}

.bit_openinghours_info_number {
    font-size: var(--wp--preset--font-size--medium);
    text-decoration: none;
    color: var(--wp--preset--color--grey-1000);
}

.bit_openinghours_info_number:hover {
    text-decoration: underline;
    text-decoration-color: var(--wp--preset--color--green-600);
}

.bit_openinghours_wrap .menu_decoration {
    line-height: normal;
    white-space: nowrap;
}

.bit_openinghours_info_button {
    padding: var(--wp--preset--spacing--30);
}

.bit_openinghours_info_button>a {
    display: block;
    text-align: center;
    border-radius: 50px;
}