 .business-hours {
     background: #222;
     padding: 40px 14px;
     margin-top: -15px;
     position: relative;
 }

 .business-hours:before {
     content: '';
     width: 23px;
     height: 23px;
     background: #111;
     /* position: absolute; */
     top: 5px;
     left: -12px;
     transform: rotate(-45deg);
     z-index: -1;
 }

 .business-hours .title {
     font-size: 20px;
     color: #BBB;
     text-transform: uppercase;
     padding-left: 5px;
     border-left: 4px solid #ffac0c;
 }

 .business-hours li {
     color: #888;
     line-height: 30px;
     border-bottom: 1px solid #333;
 }

 .business-hours li:last-child {
     border-bottom: none;
 }

 .business-hours .opening-hours li.today {
     color: #ffac0c;
 }

 /* .open span:after {
            content: " 營業中";
            color: #6C0;
        }

        .closed span:after {
            content: " Closed";
            color: red;
        } */

 .openorclosed.open {
     color: #6C0;
 }


 .openorclosed.closed {
     color: red;
 }

 .pull-right {
     float: right !important;
     margin-right: 20px;
 }

 li {
     list-style-type: none;
 }

 .circle-button {
     width: 30px;
     /* 寬度 */
     height: 30px;
     /* 高度，和寬度相同 */
     padding: 0;
     /* 去除內邊距 */
     border-radius: 50%;
     /* 變成圓形 */
     display: flex;
     /* 方便置中 */
     justify-content: center;
     align-items: center;
 }