.datetime{
    width: 210px;
    margin-left: auto;
    margin-right: auto;
}
.datetime .calendarAno{
    text-align: center;
    margin-bottom: 1px;
    line-height: 30px;
}
.datetime .calendarMes{
    text-align: center;
    margin-bottom: 10px;
    line-height: 30px;
}
.datetime .calendarHeader{
    display: flex;
    flex-wrap: wrap;
}
.datetime .calendarHeader div{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #CCCCCC;
    font-weight: 300;
}
.datetime .calendarDias{
    display: flex;
    flex-wrap: wrap;
}
.datetime .calendarDias .calendarDia{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.datetime .calendarDias .calendarDia.selecteable{
    cursor: pointer;
}
.datetime .calendarDias .calendarDia.selecteable:hover{
    background-color: #CCCCCC;
}
.datetime .calendarDias .calendarDia.selected{
    background-color: #CCCCCC;
}
.datetime .calendarDrop{
    position: absolute;
    background-color: #FFFFFF;
    z-index: 20;
    width: 170px;
    max-height: 170px;
    overflow-y: auto;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    left: 50%;
    margin-left: -85px;
    margin-top: -5px;
}
.datetime .calendarSelector{
    cursor: pointer;
    position: relative;
    background-color: #EEEEEE;
}
.datetime .calendarSelector i{
    position: absolute;
    right: 3px!important;
    top:3px!important;
}
.datetime .calendarDrop div{
    border-bottom: solid 1px #EEEEEE;
    cursor: pointer;
}
.datetime .calendarDrop div:hover{
    background-color: #CCCCCC;
}
.datetime .calendarDrop div.selected{
    background-color: #CCCCCC;
}
.datetime .calendarTime{
    position: relative;
    background-color: #EEEEEE;
    display: flex;
    justify-content: center;
    line-height: 30px;
}
.datetime .calendarTime input{
    width: 30px;
    border: solid 0px #EEEEEE;
    background-color: #EEEEEE;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    height: 30px;
}