.calendar-section {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

.calendar,
.calendar_weekdays,
.calendar_content {
    max-width: 650px;
}

.calendar {
    /*float: left;*/
    font-family: "Roboto", sans-serif;
    margin: auto;
    min-width: 320px;
    font-weight: 400;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    /* -webkit-box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14); */
}

.calendar_weekdays {
    color: #aaa;
    font-weight: 300;
}

.calendar_weekdays div {
    display: inline-block;
    vertical-align: top;
    color: #000;
    font-weight: 700;
}

.calendar_content,
.calendar_weekdays,
.calendar_header {
    position: relative;
}

.calendar_content:after,
.calendar_weekdays:after,
.calendar_header:after {
    content: " ";
    display: table;
    clear: both;
}

.calendar_weekdays div,
.calendar_content div {
    /*border: 1px dotted #999;*/
    width: 14.28571%;
    height: 44px;
    line-height: 44px;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
}

.calendar_content div {
    float: left;
    margin-left: 0px;
    margin-top: 0px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.calendar_content div:hover {
    /* border: 1px solid #ededed; */
    /*line-height: 68px;*/
    border-top: 2px solid #f7931e;
    border-bottom: 2px solid #f7931e;
    cursor: pointer;
    border-radius: 0;
}

.calendar_content div.blank:hover {
    cursor: default;
    border: none;
}

.calendar_content div.past-date {
    cursor: initial;
    color: #d5d5d5;
    border-top: 0px !important;
    border-bottom: 0px !important;
}

/* .calendar_content div.today {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background-color: #f7931e;
} */

.calendar_content div.selected {
    background-color: #dccbba3b;
    /* rgba(153, 153, 161, 0.2); */
    /*rgba(170, 170, 176, .5) #aaaab0*/
    /* border: 1px solid white; */
    border-radius: 0;
}

.calendar_content div.selected.start-date {
    background-color: #f7931e;
    /* border-radius: 10px 0 0 10px; */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.calendar_content div.selected.end-date {
    background-color: #f7931e;
    /* border-radius: 0px 10px 10px 0px; */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hover-highlight{
    /* background-color: #dccbba3b !important; */
    border-top: 2px solid #f7931e !important;
    border-bottom: 2px solid #f7931e !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-radius: 0px !important;
}

.calendar_header {
    width: 100%;
    text-align: center;
    position: relative;
    height: 55px;
    display: table;
    vertical-align: middle;
}

.calendar_header h2 {
    font-family: "Roboto", sans-serif;
    margin-top: 15px;
    padding: 0;
    font-weight: 700;
    font-size: 18px;
    color: #000 !important;
    /* text-transform: uppercase; */
}

button.switch-month {
    background-color: transparent;
    padding: 0;
    outline: none;
    border: none;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #cccccc;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
button.switch-month.switch-left {
    left: 0;
}
button.switch-month.switch-right {
    right: 0;
}

button.switch-month:hover {
    color: #bd83ce;
}

button.switch-month:active {
    background-color: transparent;
}
