.datetimepicker2 {
    background:#fff;
    border-top-right-radius:5px;
    border-top-left-radius:5px;
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    overflow:hidden;
    -webkit-box-shadow:0 6px 12px rgba(0,0,0,.176);
    box-shadow:0 6px 12px rgba(0,0,0,.176);
    max-width:300px;
    min-width: 300px;
    display:block;
    padding:10px;
    }
    
    .datetimepicker2+.datetimepicker2 {
    margin-left:15px;
    }
    
    .datetimepicker2 .paging {
    text-align:center;
    font-size:12px;
    position:relative;
    padding:5px;
    }
    
    .datetimepicker2 .paging .month-name {
    text-transform:uppercase;
    font-weight:700;
    }
    
    .datetimepicker2 .paging i {
    width:0;
    height:0;
    display:inline-block;
    vertical-align:middle;
    position:absolute;
    top:9px;
    line-height:24px;
    cursor:pointer;
    border-color:gray;
    border-style:solid;
    border-width:5px;
    }
    
    .datetimepicker2 .paging i.prev {
    left:0;
    border-top-color:transparent;
    border-bottom-color:transparent;
    border-left-style:none;
    }
    
    .datetimepicker2 .paging i.next {
    right:0;
    border-top-color:transparent;
    border-bottom-color:transparent;
    border-right-style:none;
    }
    
    .datetimepicker2 table {
    font-weight:400;
    font-size:14px;
    color:#333;
    border-collapse:collapse;
    width:100%;
    }
    
    .datetimepicker2 table td {
    text-align:center;
    border:1px solid #eee;
    padding:3px;
    }
    
    .datetimepicker2 table td.near-month {
    color:#ccc;
    }
    
    .datetimepicker2 table td.cur-date.cur-month {
    background:#D9EDF7;
    }
    
    .datetimepicker2 table td.unavailable {
    background:#C55762;
    color:#fff;
    }
    
    .datetimepicker2 table thead {
    font-weight:700;
    }
    
    .datetimepicker2 table thead td {
    border:none;
    border-bottom:2px solid #eee;
    min-width:40px;
    }
    
    .datetimepicker2 table tbody td:hover {
    background:#eee;
    cursor:pointer;
    }
    
    .datetimepicker2 table tbody td.available.cur-month {
        background-color: green;
    }
    
    .datetimepicker2 table tbody td:hover.unavailable {
    background:#C55762;
    cursor:not-allowed;
    }