@charset "UTF-8";

.qx-schedule-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:30px;
}

.qx-schedule-box {
    width: calc((100% - 30px) /2);
}

@media (max-width: 768px) {
    .qx-schedule-wrapper {
        flex-direction: column;
        gap:30px 20px;
    }

    .qx-schedule-box {
        width: 100%;
    }
}


.qx-schedule-info {
    width: 100%;
    border-collapse: collapse;
}

.qx-schedule-info tr th {
    font-weight:normal;
    border: 2px solid #000000;
    background: #e8e2ce;
    padding: 20px 0;
    width: 35%;
    font-weight: 600;
}


.qx-schedule-info tr td {
    border: 2px solid #000000;
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 393px) {
   .qx-schedule-info tr th {
        width: 30%;
    }

 }

.qx-schedule-info tr td.qx-schedule-info-towlines {
    padding: 10px 0;
}



