@charset "utf-8";
/* 
    File name: schedule-styles.css
*/

@charset "utf-8";
/* Schedule Styles */

#schedule {
    padding-top: 96px;
    padding-bottom: 4em;
    background-color: #F4F6F4;
}

#schedule div.header {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../assets/background/HeaderMountain.jpg') center bottom 60% / cover no-repeat;
    height: 25vw;
    min-height: 25vh;
    max-height: 40vh;
}

#schedule div.header h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vw;
    min-height: 25vh;
    max-height: 40vh;
    font-size: 48px;
    color: #FFF;
    text-transform: uppercase;
}

#schedule #content {
    padding-top: 30px;
}

/* Table Styles */

#tableContainer {
    border-width: 2px;
    border-color: #707070;
    border-style: solid;
}

#tableContainer table.table {
    margin-bottom: 0px;
}

thead {
    background-color: #C68D8B;
    color: #fff;
}

table#mainContent {
    border-collapse: collapse;
    border-style: hidden;
}

table#mainContent td, table#mainContent th {
    border: 1px solid gray;
    position: relative;
}

table#mainContent th {
    vertical-align: middle;
}

/* Table Content Styles */

span.down-arrow {
    font-size: 30px;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.15s;
    vertical-align: top;
    margin-top: -5px;
}

span.down-arrow.flip {
    transform: rotate(180deg);
}

a.linkBox {
    border-radius: 25px;
    border: 2px solid rgb(170, 170, 170);
    padding: 8px 15px 8px 15px;
    display: inline-block;
    font-weight: bold;
}

p.topic {
    margin-bottom: 0;
}

p.details {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in;
    margin-bottom: 0;
}

/* Time Button Styles */

td.divider {
    text-align: center;
    background-color: rgb(56, 56, 56);
    color: honeydew;
    padding: 8px 12px 8px 12px;
}

div.timeButtons {
    margin-bottom: 10px;
}

div.timeButtons label {
    cursor: pointer;
}

/* div#timeButtons label.active {
    background-color: rgb(34, 34, 34);
} */

div.timeButtons label.btn.btn-secondary.SGl {
    background-color: #C68D8B;
    border: 2px solid #C68D8B;
}

div.timeButtons label.btn.btn-secondary.IDl {
    background-color: #AC7274;
    border: 2px solid #AC7274;
}

div.timeButtons label.btn.btn-secondary.LNl {
    background-color: #985D6B;
    border: 2px solid #985D6B;
}

div.timeButtons label.btn.btn-secondary.USl {
    background-color: #694453;
    border: 2px solid #694453;
}

#smallScreen {
    display: none;
}

#smallScreen div {
    width: 100%;
    margin-bottom: 0px;
}

#smallScreen div label {
    width: 50%;
}

/* Responsive design */
@media (max-width: 992px) {
    #schedule {
        padding-top: 76px;
    }

    #bigScreen {
        display: none;
    }

    #smallScreen {
        display: block;
    }
}