#timescreen-container {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#timescreen {
    padding-top: 20px;
    position: relative;
}
.timescreen-day {
    text-align: center;
    position: relative;
    float: left;
    margin: 0 10px;
}
.date-title {
    font-size: 1.5em;
    color: #444;
    font-weight: 300;
}
.show-times {
    cursor: pointer;
    font-weight: 300;
    font-size: 1.2em;
    margin: 20px 0;
    border: 1px solid #bbb;
    border-radius: 10px;
}
.time-title {
    font-size: 1.2em;
    padding: 5px 0;
}
.times-available {
    font-size: 1.1em;
    padding: 5px 0;
    color: #3c763d;
}
.time-container {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -20px;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
}
.timescreen-time {
    font-size: 1.2em;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}
.timescreen-time:first-child {
    border-top: none;
}
.timescreen-time:hover, .timescreen-time.selected {
    background-color: #002940;
    color: white;
    font-weight: 800;
}
.next-btn, .prev-btn {
    color: #333;
    cursor: pointer;
    display: block;
    height: 55px;
    text-decoration: none;
    width: 45px;
}
.next-btn:hover, .prev-btn:hover {
    color: #666;
    text-decoration: none;
}
.next-btn:hover, .prev-btn:hover, .next-btn:active, .prev-btn:active, .next-btn:visited, .prev-btn:visited, .next-btn:focus, .prev-btn:focus {
    text-decoration: none;
}
.next-btn {
    margin-right: 20px;
}
.prev-btn {
    margin-left: 20px;
}
.confirm-area {
    float: right;
    text-align: center;
    margin: 20px;
}
#chosen-time {
    margin-right: 10px;
    display: inline-block;
}
@media (max-width: 1018px)
{
    .confirm-area
    {
        float: none;
        text-align: center;
    }
}
#loading {
    margin-top: 20px;
}
