/* Custom popup for hours  */

/* Business Hours Popup container - can be anything you want */
.business-hours-popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    /* left: 40px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999999;
    color: white;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* The actual popup */
.business-hours-popup .popuptext {
    visibility: hidden;
    width: 300px;
    background-color: #2d3945;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 125%;
    left: 20%;
    margin-left: -120px;
}

/* Popup arrow */
.business-hours-popup .popuptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2d3945 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.business-hours-popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.store-Closed {
    color: #f00f0f;
}

.store-Open {
    color: #278032;
}

.custom-title {
    font-size: 60px;
    margin-top: 0px;
    font-family: 'New Tegomin', serif;
}

.hours-section {
    background-color: #2d3945;
    color: white;
    padding-bottom: 2px;
    text-align: center;
}

/*# sourceMappingURL=style.css.map */