.shedule {
    margin-top: 40px;
    font-family: "Cera Pro";
}

.shedule-title {
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: -3px;
}
.shedule-title span {
    display: block;
    color: var(--base-color);
}

.shedule-item {
    margin-bottom: 100px;
    position: relative;
    border-top: 1px solid var(--base-color);
    padding-top: 40px;
}

.shedule-item__icon {
    position: absolute;
    right: -6px;
    top: -13px;
}
.shedule-item__icon i {
    font-size: 22px;
    color: var(--base-color);
}

.shedule-item__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.shedule-item__title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1px;
}
.shedule-item__title p {
    max-width: 450px;
    font-size: 15px;
    line-height: 140%;
    margin: 0;
}

.shedule-item__title-wrapp h3 {
    margin-bottom: 15px;
}
.shedule-item__title-wrapp .button-border {
    background: var(--base-color);
    color: #fff;
}
.shedule-item__title-wrapp .button-border:hover {
    background: var(--hover-color);
}

.shedule-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 50px;
}
.shedule-tabs li {
    width: 140px;
    border-radius: 37px;
    position: relative;
}
.shedule-tabs li img {
    display: block;
    width: 100%;
    border-radius: 37px;
}
.shedule-tabs li a {
    display: block;
    position: relative;
    border-radius: 37px;
    text-decoration: none;
}
.shedule-tabs li a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
    border-radius: 37px;
    transition: all ease 0.5s;
}
.shedule-tabs li a:hover:before, .shedule-tabs li a.active:before {
    opacity: 0;
}
.shedule-tabs li a:hover span, .shedule-tabs li a.active span {
    opacity: 1;
}
.shedule-tabs li span {
    display: block;
    color: #000;
    opacity: 0.3;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.5px;
    transition: all ease 0.5s;
    text-align: center;
    margin-top: 15px;
}

.shedule-calendar__month {
    display: flex;
    gap: 6px;
    margin-bottom: 44px;
}
.shedule-calendar__month a {
    display: block;
    height: 33px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0 20px;
    line-height: 30px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    letter-spacing: -1px;
    transition: all ease 0.3s;
}
.shedule-calendar__month a.active {
    color: var(--base-color);
    border-color: var(--base-color);
}
.shedule-calendar__month a:hover {
    border-color: var(--base-color);
}

.shedule-calendar__row {
    display: flex;
    justify-content: space-between;
}

.shedule-calendar__col {
    width: 450px;
}

.shedule-calendar__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #E1E1E1;
}
.shedule-calendar__title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: -0.5px;
}
.shedule-calendar__title span {
    font-size: 20px;
    font-weight: 500;
}
.shedule-calendar__title div {
    font-size: 15px;
    font-weight: 500;
}

.shedule-calendar__week {
    display: flex;
    gap: 5px;
}
.shedule-calendar__week div {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.shedule-calendar__table table {
    border-collapse: 0;
    width: 100%;
}
.shedule-calendar__table table tr td a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.3);
    cursor: default;
}
.shedule-calendar__table table tr td a.active {
    background: var(--base-color);
    color: #fff;
    border-color: var(--base-color);
    cursor: pointer;
}

.shedule-toggle {
    display: none;
}

.shedule-calendar__toggle {
    display: none;
}

.shedule-item__title-row {
    display: flex;
    justify-content: space-between;
}

.shedule-item__title-col {
    width: 450px;
}

.shedule-item__title-list {
    font-size: 15px;
    line-height: 120%;
    margin: 0;
    padding: 0;
}
.shedule-item__title-list li {
    margin-bottom: 10px;
}







/******  CUSTOM EDITS   ******/


.shedule-calendar__table table tr td span.empty_day {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 58px;
}

.shedule-tabs li img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    background-color: #c2c2c2;
}

.shedule-calendar__row {
    flex-wrap: wrap;
}

.shedule-calendar__col.extra_direction {
    margin-top: 70px;
}

/* Чтобы не подпихивать класс в список */
.shedule-item__title-list ul {
    margin: 0;
    padding: 0;
}