deja-date-time-selector {
    #date-time-selector {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 310px;
        outline: none;

        &.timeonly {
            height: 15rem;
        }

        #date-header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            height: 94px;
            padding: 0;
            position: relative;

            [current] {
                font-size: 2rem;
            }

            .year {
                align-items: center;
                display: flex;
                font-size: 1rem;
                justify-content: center;
                width: 50%;

                [fontIcon] {
                    flex: 0 0 auto;
                    cursor: pointer;
                }

                div {
                    flex: 1 1 auto;
                    text-align: center;
                }
            }
        }

        #time-selector {
            height: 8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #date-selector {
            margin: 0 auto;
            width: 310px;

            #sub-header {
                .month {
                    align-items: center;
                    display: flex;
                    justify-content: center;
                    padding: 1rem;
                    text-align: center;

                    span {
                        flex: 1 1 auto;
                        font-size: 1rem;
                        text-transform: capitalize;
                    }

                    button[mat-mini-fab] {
                        flex: 0 0 auto;
                        box-shadow: none;
                    }
                }

                .days {
                    align-items: center;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    margin-bottom: 0.5rem;
                    text-align: center;

                    span {
                        flex: 0 0 14%;
                        position: relative;
                    }
                }
            }

            #date-body {
                align-items: center;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;

                &:focus {
                    outline: none;
                }

                .date {
                    flex: 0 0 14%;
                    position: relative;

                    &:before {
                        content: '';
                        float: left;
                        padding-top: 100%;
                    }

                    .day {
                        align-items: center;
                        border-radius: 50%;
                        bottom: 0;
                        display: flex;
                        justify-content: center;
                        left: 0;
                        position: absolute;
                        right: 0;
                        top: 0;
                        transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;

                        &.disabled {
                            &:hover {
                                cursor: not-allowed;
                            }
                        }

                        &:hover,
                        &[selected] {
                            cursor: pointer;
                        }
                    }
                }
            }
        }
    }
}
