.psy-card-schedule {




}

.psy-card-schedule__title {
    margin-bottom: 14px;
font-size: 15px;
    font-weight: bold;
}

.psy-card-schedule__dates {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.psy-card-schedule__date {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.psy-card-schedule__date-head {
    width: 75px;
    flex: 0 0 75px;
}

.psy-card-schedule__date-head strong {
    display: block;
    color: #344054;
    font-size: 14px;
    line-height: 1.2;
}

.psy-card-schedule__date-head span {
    display: block;
    margin-top: 3px;
    color: #98a2b3;
    font-size: 12px;
}

.psy-card-schedule__times {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.psy-card-schedule__time {
    min-width: 66px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #c6efd8;
    border-radius: 8px;
    background: #eaf8f0;
    color: #1f8f55;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.psy-card-schedule__time:hover {
    border-color: #7C99D0;
    background: #edf4ff;
    color: #597bb9;
}

.psy-card-schedule__empty {
    color: #98a2b3;
    font-size: 14px;
}

@media (max-width: 600px) {
    .psy-card-schedule__date {
        display: block;
    }

    .psy-card-schedule__date-head {
        width: auto;
        margin-bottom: 8px;
    }
}
.psy-card-schedule__date--hidden {
    display: none;
}

.psy-card-schedule.is-open .psy-card-schedule__date--hidden {
    display: flex;
}

.psy-card-schedule__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: 100%;
    margin-top: 14px;
    padding: 11px 15px;

    border: 0;
    border-radius: 10px;

    background: #f7f9fc;
    color: #667085;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    transition: .2s;
}

.psy-card-schedule__toggle:hover {
    background: #edf4ff;
    color: #597bb9;
}

.psy-card-schedule__toggle-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 25px;
    height: 22px;
    padding: 0 6px;

    border-radius: 20px;

    background: #eaf8f0;
    color: #1f8f55;

    font-size: 11px;
    font-weight: 800;
}

.psy-card-schedule__toggle-arrow {
    width: 7px;
    height: 7px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
}

.psy-card-schedule.is-open
.psy-card-schedule__toggle-arrow {
    transform: rotate(225deg) translate(-2px, -2px);
}

@media (max-width: 600px) {

    .psy-card-schedule.is-open
    .psy-card-schedule__date--hidden {
        display: block;
    }
}