.jss19 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.jss38 {
    justify-content: space-between;
}

#calendarPicker {
    margin: 0 auto;
    text-align: center;
}

    #calendarPicker .calendarHeader, #availableTimes .time-header,
    #waitlistTimes .header, .details-header, .additionalInfoHeader,
    .purchaserHeader {
        border-radius: 2px;
        padding: 6px 20px;
        font-size: 13px;
    }

#calendarPicker {
    max-width: 388px
}

    #calendarPicker .calendarHeader {
        position: relative;
    }

        #calendarPicker .calendarHeader .monthTitle {
            font-weight: 600;
        }

        #calendarPicker .calendarHeader #nextMonth {
            position: absolute;
            background-repeat: no-repeat;
            background-image: url(../Images/calendarIcons.svg);
            background-size: 3920% 3920%;
            border: 0;
            right: 20px;
            width: 23px;
            height: 23px;
            background-position: -205px -491px;
            cursor: pointer;
        }

            #calendarPicker .calendarHeader #nextMonth.inactive {
                background-position: -173px -492px;
                cursor: default;
            }

        #calendarPicker .calendarHeader #previousMonth {
            position: absolute;
            background-repeat: no-repeat;
            background-image: url(../Images/calendarIcons.svg);
            background-size: 3920% 3920%;
            border: 0;
            left: 20px;
            width: 23px;
            height: 23px;
            background-position: -255px -491px;
            cursor: pointer;
        }

            #calendarPicker .calendarHeader #previousMonth.inactive {
                background-position: -236px -492px;
                cursor: default;
            }

    #calendarPicker .days {
        width: 280px;
        margin: 22px auto;
        color: #1a3a48;
    }

        #calendarPicker .days .day {
            width: 30px;
        }

    #calendarPicker .calendarBody {
        width: 290px;
        margin: 22px auto;
    }

        #calendarPicker .calendarBody .row {
            display: flex;
            justify-content: space-between;
            margin: 0;
        }

        #calendarPicker .calendarBody .date {
            width: 30px;
            height: 30px;
            margin: 5px;
            padding: 3px 0;
            align-self: center;
            position: relative;
            transition: background-color 0.2s ease;
            border-radius: 15px;
            color: #007bff;
            text-decoration: none;
        }

            #calendarPicker .calendarBody .date.disabled {
                color: #cdcdcd;
            }

            #calendarPicker .calendarBody .date.waitlisted {
                color: #575957;
            }

            #calendarPicker .calendarBody .date.closed {
                color: #cdcdcd;
            }

            #calendarPicker .calendarBody .date .unavailable {
                color: #cdcdcd;
            }

            #calendarPicker .calendarBody .date.available {
                cursor: pointer;
            }

            #calendarPicker .calendarBody .date > div#today {
                width: 30px;
                height: 30px;
                border: solid 1px #cdcdcd;
                border-radius: 15px;
                padding: 3px 0;
                position: absolute;
                top: 0;
                font-weight: 600;
            }

            #calendarPicker .calendarBody .date.selected, #calendarPicker .calendarBody .date.available:hover {
                background-color: #575957;
                border-radius: 15px;
                text-decoration: none;
                transition: background-color 0.3s ease;
                color: white;
                padding: 4px 0;
            }

                #calendarPicker .calendarBody .date.selected > div#today, #calendarPicker .calendarBody .date.available:hover > div#today {
                    border: 0;
                    top: 1px;
                }

                    #calendarPicker .calendarBody .date.selected > div#today a,
                    #calendarPicker .calendarBody .date.available:hover > div#today a {
                        padding: 3px 0;
                        color: white;
                        text-decoration: none;
                    }
