.scheduleHolder {
    margin-bottom: 20px;
}

.staffHolder {
    margin: 10px;
    background: #ddd;
    border: 1px solid #ccc;
    display: inline-block;
    width: 300px;
    cursor: pointer;
}

.staffPicture {
    height: 80px;
    display: inline-block;
}

.staffPicture img {
    height: 100%;
}

.staffName {
    display: inline-block;
    padding: 20px 10px 20px 10px;
    text-align: center;
    width: 210px;
}

.placeHolder {
    margin: 10px;
    background: #ddd;
    border: 1px solid #ccc;
    display: inline-block;
    width: 300px;
    cursor: pointer;
}

.placeName,.serviceName {
    display: inline-block;
    padding: 20px 10px 20px 10px;
    text-align: center;
    width: 290px;
}

.serviceHolder {
    margin: 10px;
    background: #ddd;
    border: 1px solid #ccc;
    display: inline-block;
    width: 300px;
    cursor: pointer;
}

.staffHolder.selected,.placeHolder.selected,.serviceHolder.selected {
    background: #337ab7;
}

#selectYearAndMonthHolder {
    height: 50px;
    width: 500px;
    display: inline-block;
    padding: 10px;
}

#selectYearAndMonthHolder div {
    display: inline-block;
    padding: 5px;
}

#yearLeftArrow,#yearRightArrow {
    cursor: pointer;
}

#yearLeftArrow:hover,#yearRightArrow:hover {
    color: #337ab7;
}

.calendarColumn {
    display: inline-block;
    width: 12%;
    text-align: center;
    vertical-align: text-top;
}

.calendarColumn:first-child,.calendarColumn:last-child {
    width: 6%;
    font-size: 20px;
    cursor: pointer;
    background: #fff;
}

.calendarColumn:first-child:hover,.calendarColumn:last-child:hover {
    color: #337ab7;
}

.dayDate,.dayName {
    padding: 5px;
    overflow: hidden;
}

.dayDate {
    background: #337ab7 !important;
    color: white;
    font-weight: bold;
}

.calendarColumn div:first-child {
    background: #ddd;
    margin-bottom: 10px;
}

.aDate {
    padding: 5px;
    background: #337ab7;
    color: white;
    cursor: pointer;
    margin-top: 2px;
}

.aDate:hover {
    background: #2d8ac7;
}

.aDate.selected {
    background: red;
}

.eDate {
    padding: 5px;
    color: #999;
    font-size: 10px;
}

@media (max-width: 767px) {
    .staffHolder,.placeHolder,.serviceHolder {
        width: calc(100% - 10px);
    }

    #selectYearAndMonthHolder {
        width: auto;
    }

    .calendarColumn {
        width: 11%;
    }

    .calendarColumn:first-child, .calendarColumn:last-child {
        width: 7%;
    }
}

.form-control.b-success {
    border-color: #5cb85c;
    border-right: 10px solid #5cb85c;
}

.form-control.b-error {
    border-color: red;
    border-right: 10px solid red;
}