
/*---------- schedule ------------------------------------------*/

.schedule{
    width: 100%;
}

.tbl{
    width: 90%;
    margin: 0 5%;
    padding: 20px 0;
    height: auto;
    border-bottom: 0.5px dotted #000;
}

td.date{
    width: 30%;
    text-align: center;
    font-family: 'Akaya Kanadaka', cursive;
    font-size: 25px;
    line-height: 2.5;
}

.day{
    vertical-align: sub;
    font-size: 15px;
    
}

td.details{
    width: 70%;
    line-height: 2.0;
}

.type{
    border: 1px solid #000;
    border-radius: 3px;
    margin-right: 20px;
    padding: 2px 5px;
}

td.details h1{
    font-size: 16px;
}

.list{
    margin: 30px 0;
}

.list li{
    margin: 7px;
}

.buy{
    margin-right: 10px;
    width: 20px;
    vertical-align: middle;
}

td.details a{
    color: #000;
}

.back{
    display: block;
    margin: 50px 0 0 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 13px;
}

.back span{
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 10px;
}

@media screen and (max-width: 1023px){

    td.date{
        font-size: 23px;
        display: block;
        width: 100%;
        text-align: left;
    }

    td.details{
        display: block;
        width: 100%;
    }  
}

@media screen and (max-width: 599px){
    .tbl{
        padding: 10px 0;
    }

    td.details{
        font-size: 13px;
    }
}

