.customScrollbar::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
.customScrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.customScrollbar::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.customScrollbar.hideCustomScrollbar::-webkit-scrollbar{
    width: 0;
    height: 0;
}

.filials{
    border: 1px solid #FFF;
    background: #FFF;
}

.slidermedwidgetmm{
    position: relative;
    width: auto;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    font-size: 12px;
    overflow: auto;
    white-space: nowrap;
    flex-shrink: 0;
    flex-direction: row;
    justify-content: flex-start;
}

.medwidgetmm-day{
    position: relative;
    padding: 18px;
    flex: 0 0 210px;
    border-width: 1px;
    border-style: solid;
    border-color: #00b6ef;
    display: inline-flex;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 130px;
    margin-left: -1px;
    z-index: 1;
    white-space: normal;
    background: #FFF;
}

.slidermedwidgetmm .medwidgetmm-day:first-child{
    margin-left: 0;
}

.medwidgetmm-date{
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    padding-bottom: 10px;
    margin-right: 4px;
}

.medwidgetmm-times {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 130px;
    overflow-y: auto;
}

.medwidgetmm-times::after {
    content: '';
    flex: auto;
}

.medwidgetmm-time {
    padding: 4px;
    box-sizing: border-box;
    text-align: center;
    width: 33.3333%;
}

.medwidgetmm-times .medwidgetmm-time > span {
    cursor: pointer;
    font-weight: 400;
    display: inline-block;
    margin: auto;
    padding: 3px 7px;
    font-size: 14px;
    line-height: 120%;
    border-radius: 20px;
    color: #00b6ef;
    background-color: rgba(0,182,239,.13);
    transition: color .22s ease-in-out,background-color .22s ease-in-out;
}

.medwidgetmm-time:hover  > span {
    background-color: #00b6ef;
    color: #fff;
}

.medwidgetmm-notickets {
    border: 1px solid #00b6ef;
    flex: 1 1 auto;
    text-align: center;
    padding: 4em 2em;
    background: #FFF;
    font-size: 1.4em;
}

@media screen and (max-width: 782px) {

    .medwidgetmm-day{
        flex-shrink: 0;
    }

    .medwidgetmm-times{
        justify-content: space-between;
    }
}