﻿hr{
    margin: unset;
}

.schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: row;
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
    max-width: 350px;
}

.schedule-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.divider {
    flex-grow: 1;
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.course-item {
}
    .course-item:has(.full-course) {
        display:none;
    }

    .course-item.selected .course-options {
        /*background-color: lightgrey;*/
    }

        .course-item.selected .course-confirm-btn {
            background-color: white;
            color: black;
            pointer-events: none;
        }

    .course-name {
        margin-bottom: 10px;
        font-family: Montserrat, sans-serif;
        font-size: 17px;
        font-weight: 400;
    }

.full-course {
    background-color: #FEFEFE;
}

.course-number {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
}

.course-date {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.course-options {
    display: flex;
    border: 1px solid #eeeeee;
    margin-bottom: 20px;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
}

    .course-options.selected {
        display: flex;
    }

.course-select-confirm .course-options {
    padding: 5px;
}


.your-selections .course-options {
    border: none;
}

.price {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.summary .price{
    display: none;
}

.address-name {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 500;
}


.address {
    font-family: Montserrat, sans-serif;
    color: #858585;
    font-weight: 500;
}


.external-id {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: #777777;
    font-size: 11px;
}

.time {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.schedule {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

.item-container {
    max-width: 200px;
}

.course-options .course-date {
    font-size: 28px;
    margin-bottom: 30px;
    display: block;
    line-height: 30px;
}

.course-options .address {
    font-size: 15px;
    margin-top: 5px;
}

.flex-v-center {
    display: flex;
    align-items: center;
}

.course-item{

}

.full-course *{
    color: #cccccc;
}

.course-select-confirm-body-left .item-container {
    max-width: unset;
}

.item-container.summary {
    min-height: unset;
}

.nice-select {
    line-height: 35px;
}

.filter-bar-input-box input {
    border-radius: 5px;
}

.filter-bar-input-box select {
    border-radius: 5px;
}

.schedule-container {
    min-width: 300px;
}

@media screen and (max-width: 767px) {
    .flex-v-center {
        justify-content: center;
    }
    .sm-margin-vertical-s {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .item-container{
        margin-bottom: 10px;
        max-width: 400px;
        width: 100%;
        justify-content: left;
        min-height: unset;
    }
    .course-item {
        /*padding: 20px 20px;*/
    }

    .course-options {
        justify-content: center;
        flex-wrap: wrap;
        /*margin-top: 10px;*/
    }
    hr{
        margin: 0 20px;
    }
}

@media screen and (max-width: 479px) {
    input[type="date"] {
        display: block;
        min-width: 93%;
    }

    .filter-bar-input{
        width: 100%;
    }
    .item-container {
        max-width: 100%;
    }
}