body.course-list {
    background: #F6F6F6;
    padding: 0;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.filters {
    background: #11415E;
    padding: 60px 10vw;
}
.course-list-container {
    padding: 60px 10vw;
}
.course-container .item {
    width: 100%;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.07);
    padding: 20px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 4fr 1fr 2fr 1fr 1fr;
    align-items: center;
    transition: all 500ms ease-in-out;
    cursor: pointer;
}
.course-name {
    font-weight: bold;
}
.course-campus, .course-accommodation {
    display: flex;
}
.course-book {
    justify-self: end;
}
.course-book button {
    min-width: 150px;
    min-height: 40px;
    background-color: #98E350;
    border-radius: 3px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}
.course-book button:hover {
    background-color: rgb(132, 199, 70);
}
.course-book button.button-full {
    background-color: #DDDDDD;
    cursor: not-allowed;
}
.course-book button.button-waiting {
    background-color: rgb(156, 156, 156);
    cursor: pointer;
}
.inactive .item {
    opacity: .7;
    box-shadow: none;
}
h6 {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: .3;
    margin-bottom: 20px;
}
.availibility-warning {
    font-size: 12px;
    color: darkred;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 40px;
}
.filter-box {
    background: #FFFFFF;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.05);
    border-radius: 5px;
    padding: 30px;
    color: black;
    line-height: 1.5em;
    cursor: pointer;
}
.filter-box h2 {
    margin-top: 5px;
    display: block;
}
.filter-box.selected{
    background-color: rgb(214, 248, 255);
}
.filters {
    color: white;
}
.filters img {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 20px;
    margin-top: -10px;
}
.filter-tag {
    padding: 12px 18px;
    min-height: 24px;
    line-height: 24px;
    background: rgba(26, 198, 233, 0.31);
    /* color: white; */
    display: inline-block;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
}
.filter-tag img {
    margin-left: 16px;
}
.filter-tag img.icon {
    /* height: 18px; */
    margin-right: 10px;
    margin-left: 0;
    margin-bottom: -5px;
}
.item img {
    display: inline-flex;
    margin-right: 10px;
    margin-top: -4px;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    display: inline-flex;

}
.section-title {
    display: inline-flex;
}
.no-results {
    width: 100%;
    text-align: center;
    padding: 60px;
    border-radius: 10px;
    border: 2px dashed rgb(211, 211, 211);
    font-size: 24px;
    color: rgb(100, 100, 100);
    margin-top: 30px;
}
button.reset-button {
    min-width: 150px;
    min-height: 40px;
    background-color: rgb(78, 78, 78);
    border-radius: 3px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    padding: 10px 20px;
    margin-top: 20px;
}
.toggle-item {
    border-top: 1px solid #DDDDDD;
    margin: 20px 0px;
    display: grid;
    grid-template-columns: 2fr 2fr 4fr 1fr;
    grid-column: 1 / span 5;
}
.start-date, .end-date {
    font-weight: bold;
}
.course-stream {
    padding: 6px 12px;
    min-height: 24px;
    line-height: 24px;
    background: rgba(207, 207, 207, 0.5);
    /* color: white; */
    display: inline-block;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
}
.more-info {
    opacity: 0.3;
    position: relative;
    float: right;
    margin-top: 15px;
    margin-right: -15px;
    text-align: right;
}
.more-info:hover {
    opacity: 1;
}