.allstar_table {
    position: relative;
}

.allstar_table .loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.8);
    z-index: 999;
}

.allstar_table .loader h3 {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    margin-top: -15px;
    font-size: 25px;
    line-height: 30px;
}

.allstar_table input[type="button"], 
.allstar_table input[type="submit"] {
    width: 100%;
    height: 35px;
    background: #306875;
    color: #FFF;
    border: none;
    border-radius: 4px;
}

.allstar_table input[type="button"].allstar_availability,
.allstar_table input[type="submit"].allstar_availability {
    background: #518c9a;
}

.allstar_table .allstartables {
    display: block;
    height: auto;
    overflow: hidden;
    border: 1px solid #e3e3e3;
}

.allstar_table .allstartables .header {
    background: #306875;
    color: #FFF;
}

.allstar_table .allstartables .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
}

.allstar_table .allstartables .row div {
    padding: 15px;
}

.allstar_table .allstartables .row .date {
    width: 15%;
}

.allstar_table .allstartables .row .mdest {
    width: 100%;
    display: none;
}

.allstar_table .allstartables .body .row .date {
    font-size: 20px;
}

.allstar_table .allstartables .row .date .day {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    display: block;
    width: 100%;
}

.allstar_table .allstartables .row .price,
.allstar_table .allstartables .row .status {
    width: 20%;
}

.allstar_table .allstartables .row .dest {
    width: 45%;
}

.allstar_table .allstartables .body .row .price {
    font-size: 20px;
}

.allstar_table .allstartables .body .row .divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #ECECEC;
    margin: 7px 0;
    clear: both;
}

.allstar_table .allstartables .body .row:nth-child(even) {
    background-color: #f7f7f7;
}

.allstar_forms {
    width: 100%;
    display: block;
}

.allstar_forms .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 15px;
}

.allstar_forms .row .field {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
}

.allstar_forms .reqmark {
    color: #FF0000;
}

.allstar_forms input[type='text'],
.allstar_forms input[type='date'],
.allstar_forms input[type='number'],
.allstar_forms select,
.allstar_forms textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #CCC;
    border-radius: 5px;
    background: #FFF;
}

.allstar_forms input:disabled {
    background: #F7F7F7;
}

.allstar_forms textarea {
    height: 120px;
}

.allstar_forms input[type='button'], .allstar_forms input[type='submit'] {
    width: 100%;
    height: 50px;
    text-align: center;
    background: #000;
    color: #FFF;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.allstar_forms input.req, .allstar_forms select.req, .allstar_forms div.req {
    border: 1px dashed #FF0000;
    background: #f8eeee;
}

.allstar_forms h3 {
    font-size: 24px;
    margin: 25px 0 5px 0;
}

.margin10 {
    width: 100%;
    height: 10px;
}

.allstar_forms h3.nomargin {
    margin: 25px 0 0 0;
}

.allstar_forms #errors {
    display: none;
    border: 1px solid #FF0000;
    background: #FF0000;
    color: #FFF;
    text-align: center;
    line-height: 50px;
    margin-bottom: 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {

    .allstar_forms .row {
        flex-wrap: wrap;
    }

    .allstar_forms .row .field {
        min-width: 100%;
        width: 100%;
        flex-basis: 1;
    }

    .allstar_table .allstartables .row {
        flex-wrap: wrap;
    }

    .allstar_table .allstartables .header .dest,
    .allstar_table .allstartables .header .status,
    .allstar_table .allstartables .body .dest {
        display: none;
    }

    .allstar_table .allstartables .body .status {
        width: 100%!important;
    }

    .allstar_table .allstartables .row .mdest {
        display: block;
        width: 100%!important;
    }

    .allstar_table .allstartables .header .date,
    .allstar_table .allstartables .header .price,
    .allstar_table .allstartables .body .date,
    .allstar_table .allstartables .body .price {
        width: 50%;
    }

    .allstar_table .allstartables .header .price,
    .allstar_table .allstartables .body .price {
        text-align: right;
    }

}