html,
.rubber-indicator {
  width: 100%;
}

.weekdays-list {
     display: flex;   
    list-style: none;
    border-radius: .25rem;
    padding-right:6px;   
    padding-left:0px; 
}

.weekdays-list .weekdays-day {
   position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #000099;
    background-color: #fff;
    border: 1px solid #dee2e6;
    cursor: pointer;
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 13px;
    font-style: normal;
}

.weekdays-day:hover {
    background-color: #eee;
    font-weight: bold;
    border: 1px solid white;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.weekdays-list .weekday-selected {
    background-color: #bfbfbf;
    font-weight: bold;
    border: 1px solid white;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.weekdays-list :first-child{
    border-left: 1px solid #dee2e6;
}

.weekdays-list :last-child{
    border-right: 1px solid #dee2e6;
}
