/*------------------------------------------------------------------------------ opening hours */
.opening-hours {
    background: url( '../../_img/opening-hours.png' ) no-repeat #fff;
    background-position: -50px 25px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.02 );  
    margin-bottom: 40px;
    border-right: 1px solid #e5e9ed;
    border-left: 1px solid #e5e9ed;
    border-bottom: 1px solid #dbdfe3;
}

.opening-hours .today {
    color: #3bbded;
    font-weight: 600;
    font-size: 35px;
    text-align: center;
}

.opening-hours .day {
    text-align: center;
    font-size: 15px;
    color: #9a9e9f;
}

.opening-hours .action {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.opening-hours .other-days {
    list-style: none;
    text-align: center;
    position: absolute;
    background: #3bbded;
    padding: 7.5px 15px;
    width: 389px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.1 );
    z-index: 99999;
    left: -40px;
    margin-top: 10px;
    display: none;   
}

.opening-hours .other-days:before {
    width: 7px;
    height: 7px;
    background: #3bbded;
    position: absolute;
    content: ' ';
    top: -3.5px;
    left: 50%;
    margin-left: -3.5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.opening-hours .other-days li {
    color: #fff;
    font-size: 13px;
    padding: 4px 5px;
    display: inline-block;
    cursor: pointer;
}

/*------------------------------------------------------------------------------ responsive */
@media (min-width: 850px) and (max-width: 1149px) {

    .opening-hours .today {
        font-size: 25px;
    }
    
    .opening-hours .other-days {
        width: 264px;
    }
}

@media (min-width: 600px) and (max-width: 849px) {

    .opening-hours {
        margin-bottom: 0;
    }
}

@media (max-width: 599px) {

    .opening-hours {
        margin-bottom: 0;
    }
    
    .opening-hours .today {
        font-size: 25px;
    }
}