/**
   TODO: Consider using updated CSS and override externally instead of in this file.
 * rome - Customizable date (and time) picker. Opt-in UI, no jQuery!
 * @version v2.1.22
 * @link https://github.com/bevacqua/rome
 * @license MIT
 */
.rd-container {
    font-family: 'Roboto', Arial, sans-serif;

    display: none;
    background-color: #fff;
    /* padding: 10px; */
    text-align: center;

    -webkit-box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
}

.rd-container-attachment {
    position: absolute;
    z-index: 99;
}

.rd-month-label {
    font-weight: 500;
    /*padding: 1em 0 1em 0;*/
    background-color: #1B6EA7;
    color: #fff;
}

.rd-month {
    display: inline-block;
    margin-right: 25px;
}

.rd-month:last-child {
    margin-right: 0;
}

.rd-month-label,
.rd-back,
.rd-next {
    height: 50px;
    line-height: 50px;
}

.rd-back,
.rd-next {
    min-width: 0;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    margin: 0;
    padding: 0 1.25em;
    color: #fff;
}

.rd-back[disabled],
.rd-next[disabled] {
    cursor: default;
}

.rd-back {
    float: left;
}

.rd-next {
    float: right;
}

.rd-back:before {
    display: block;
    content: '\003C';
}

.rd-next:before {
    display: block;
    content: '\003E';
}

.rd-day-head {
    font-weight: 500;
    color: #737373;
}

.rd-days {
    margin: 1em 0.5em;
}

.rd-day-body {
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
}

.rd-day-body:hover,
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
    cursor: pointer;
    background-color: #1B6EA7;
    color: #fff;
}

.rd-day-body.rd-day-disabled:hover {
    cursor: default;
    background-color: inherit;
    color: #fcc;
}

.rd-day-prev-month,
.rd-day-next-month {
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
}

.rd-day-disabled {
    cursor: default;
    color: #fcc;
}

.rd-time {
    position: relative;
    display: inline-block;
    margin: 1em;
    min-width: 80px;
}

.rd-time-list {
    display: none;
    position: absolute;
    overflow-y: scroll;
    max-height: 160px;
    left: 0;
    right: 0;
    bottom: 100%; /*places the timepicker dropdown above */
    background-color: #fff;
    color: #333;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 0px 8px 3px rgba(50, 50, 50, 0.25);
}

.rd-time-selected {
    padding: 10px 15px;
}

.rd-time-selected:before {
    padding-right: 0.8em;
    content: '\1F552';
}

.rd-time-option {
    padding: 5px;
}

.rd-day-concealed {
    visibility: hidden;
}

#glt-rome-mobile-overlay {
    display: none;
}

@media all and (max-width: 52em) {
    .rd-container-attachment {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;

        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #glt-rome-mobile-overlay {
        display: block;
        position: absolute;
        z-index: 98; /*one under rd-container-attachment*/
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        opacity: 0.2;
    }
}
