/*
@media only screen and (min-width: 480px)
@media only screen and (min-width: 960px)

/* Social Header
---------------------------------------------------------------------------- */
.social {
    display:block;
}
.social .wrap {
    display: flex;
    align-items: center;
    height:100%;
}
.simple-social-icons ul li {
    margin:0 0 12px !important;
}
/* Schedule List
---------------------------------------------------------------------------- */
.schedule-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
    gap: 12px;
    align-items: center;
    font-weight: 600;
    color:#fff;
  }

.schedule-item {
    flex: 30.33%;
    padding:10px;
  }
.schedule-item:nth-child(3) {
    text-align: center;
}
.schedule-button {
        background-color: #e01f06;
        border: 0;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        padding: 9px 15px;
        text-align: center;
        text-decoration: none;
        white-space: normal;
        width: auto;
    }  
.schedule-button:focus,
.schedule-button:hover {
    color:#fff;
    background-color: #941403;
}
@media only screen and (max-width:478px) {
    .schedule-row {
        flex-direction: column;
        gap:5px;
        margin-bottom: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #000;
    }
}