.schedule {
    padding-bottom: 50px;
    font-family: 'Open Sans', sans-serif;
}
.schedule__top {
    display: flex;
    margin-bottom: 80px;
}
.schedule__top-abr {
    font-size: 36px;
    font-weight: 600;
    color: rgba(52, 204, 255, 1);
    margin-right: 10px;
}
.schedule__top-title {
    font-size: 36px;
    font-weight: 300;
    color: rgba(64, 64, 64, 1);
    letter-spacing: -0.01em;
}
.schedule__top-map {
    margin-left: auto;
}
.schedule__top-map-link {
    font-size: 14px;
    color: rgba(24, 54, 80, 1);
    letter-spacing: -0.01em;
    line-height: 26px;
}
.schedule__top-map-link:before {
    content: url("img/map.svg");
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}
.schedule__header {
    display: flex;
    position: relative;
}
.schedule__header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    z-index: 1;
    background-color: rgba(214, 245, 255, 1);
}
.schedule__title {
    min-width: 196px;
    background-color: rgba(214, 245, 255, 1);
    font-size: 18px;
    color: rgba(24, 54, 80, 1);
    letter-spacing: -0.01em;
    line-height: 1;
    text-align: center;
    padding: 14px 10px 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .2s;
}
.schedule__title:hover, .schedule__title:active {
    text-decoration: none;
    color: rgba(24, 54, 80, 1);
}
.schedule__title:before {
    vertical-align: middle;
    margin-right: 12px;
}
.schedule__title.active {
    background-color: rgba(52, 203, 254, 1);
}
.--arrival:before {
    content: url("img/down.svg");
}
.--departure:before {
    content: url("img/up.svg");
}
.schedule__date {
    margin-left: auto;
    font-size: 14px;
    color: rgba(64, 64, 64, 1);
    line-height: 26px;
    padding: 11px 0;
    position: relative;
}
.schedule__date:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(52, 203, 254, 1);
}
.schedule__date-day {
    color: rgba(128, 128, 128, 1);
}
.schedule__table {
    display: none;
    padding: 30px 0;
}
.schedule__table.active {
    display: block;
    transform: translate(0, 150px);
    opacity: 0;
    transition: transform .5s ease-in-out, opacity .5s ease-in-out;
}
.schedule__table.animate {
    transform: translate(0, 0);
    opacity: 1;
}
.schedule__row {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 30px 40px;
    display: flex;
    color: rgba(24, 54, 80, 1);
    transition: background-color .3s, border-bottom .3s;
    position: relative;
    cursor: pointer;
}
.schedule__row:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: transparent;
    transition: background-color .3s;
}
.schedule__row:hover {
    background-color: rgba(241, 248, 250, 1);
    border-bottom: 1px solid rgba(241, 248, 250, 1);
}
.schedule__row:hover:before {
    background-color: rgba(241, 248, 250, 1);
}
.schedule__row.--header {
    color: rgba(128, 128, 128, 1);
}
.schedule__row.--header:hover {
    background-color: transparent;
}
.schedule__item {
    width: 20%;
    padding: 0 0px;
    font-size: 16px;
    line-height: 26px;
}
.schedule__item.--main:first-child {
    font-weight: 600;
}
.schedule__code-info {
    font-size: 14px;
    color: rgba(128, 128, 128, 1);
    line-height: 26px;
    padding: 20px 0;
}
.mobile {
    display: none;
}
@media screen and (max-width: 1024px) {
    .schedule__table {
        padding: 15px 0;
    }
    .schedule__row {
        padding: 20px 0;
    }
    .schedule__item {
        font-size: 14px;
        line-height: 18px;
    }
    .schedule__title {
        min-width: 160px;
        font-size: 16px;
    }
}
@media screen and (min-width: 641px) {
    .schedule-mobile {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    .mobile {
        display: flex;
    }
    .schedule__top {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .schedule__top-abr {
        margin: 0 0 10px;
    }
    .schedule__top-title {
        margin: 0 0 30px;
    }
    .schedule__top-map {
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .schedule__top-date {
        font-size: 14px;
        color: rgba(64, 64, 64, 1);
        letter-spacing: -0.01em;
        line-height: 1.85;
        border-bottom: 2px solid rgba(52, 203, 254, 1);
    }
    .schedule__title {
        min-width: 50%;
    }
    .schedule__date {
        display: none;
    }
    .schedule__row.--header .schedule__item {
        font-size: 14px;
    }
    .schedule__item {
        font-size: 16px;
        line-height: 25px;
    }
    .schedule__row {
        flex-direction: column;
    }
    .schedule__row.--header  {
        width: 40%;
    }
    .schedule__row:nth-child(2n) {
        width: 60%;
    }
    .schedule__item {
        padding: 8px 0;
        width: 100%;
    }
    .schedule__table.active {
        display: flex;
        flex-wrap: wrap;
        transform: translate(0, 0);
        opacity: 1;
    }
    .schedule-mobile .schedule {
        display: block;
        padding-top: 90px;
    }
    .schedule {
        display: none;
    }

}