.calendar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #07071f;
    min-height: 300px;
    padding: 5px;
    border: 1px solid #21315f;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    z-index: 100;
    opacity: 0;
    transition: 0.4s opacity;
    pointer-events: none;
}

.calendar.calendar-show {
    opacity: 1;
    pointer-events: all;
}

.calendar-prev-next {
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.calendar .input-prev,
.calendar .input-next {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 30px;
    font-family: sans-serif;
    background-color: transparent;
    border: 0;
    color: #333;
}

.calendar .input-prev:hover,
.calendar .input-next:hover {
    background: #666;
}

.calendar .date-name {
    font-size: 12px;
    color: #666;
    padding: 0 40px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
}

.calendar .calendar-header {
    height: 30px;
    position: relative;
}

.calendar .calendar-table-cnt {
    position: relative;
    padding-top: 10px;
}

.calendar .calendar-table {
    font-size: 12px;
    color: #666;
    width: 100%;
}

.calendar .calendar-table td {
    text-align: center;
    width: 14.2857%;
}

.calendar .calendar-table th {
    font-family: sans-serif;
    font-weight: normal;
    padding-bottom: 10px;
    font-size: 11px;
    color: #aaa;
}

.calendar .calendar-table td.day {
    height: 40px;
    font-size: 11px;
    font-family: sans-serif;
    font-weight: bold;
    border: 1px #13131c solid;
}

.calendar .calendar-table td.day:hover {
    background: #2d2d2d;
    cursor: pointer
}

.calendar .calendar-table td.current-day {
    background-color: #212121;
    color: #fff;
}

.calendar .calendar-table td.current-day:hover {
    background-color: #2f2f2f;
}

.input-calendar-cnt {
    position: relative;
}

input.calendar-table-time {
    display: inline-block;
    text-align: center;
}

.calendar-table-time-label {
    text-align: center;
    font-size: 12px;
    padding: 10px;
}

.calendar .calendar-table td.day.selected {
    background: #00430c;
    color: #fff;
}

.calendar-table-time {
    background: #13131c!important;
    color: #fff !important;
}



/* The naming convention for the hour, minute, second, and am/pm field is
`-webkit-datetime-edit-{field}-field` */

/* Hour */
input[type=time]::-webkit-datetime-edit-hour-field {
    border-radius: 15%;
}

/* 'X' button for resetting/clearing time */
input[type=time]::-webkit-clear-button {
    display: none;
}

/* Up/Down arrows for incrementing/decrementing the value */
input[type=time]::-webkit-inner-spin-button {
    display: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    padding-right: 10px;
}