#calendar2 {
    width: 100%;
    text-align: center;
}


#calendar2 thead tr:nth-child(1) td:nth-child(1):hover, #calendar2 thead tr:nth-child(1) td:nth-child(3):hover {
    cursor: pointer;
}

#calendar2 tbody td.any-day {
    cursor: pointer;
}



#calendar2 tbody td:nth-child(n+6), #calendar2 .holiday {
    color: #43455D;
}

.seminars__main{
    padding: 0.7em;
    border-radius: 0.3em;
border: 0.1vw solid #F4F4F4}

.circle-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

/* Стиль для кастомного чекбокса */
.circle-checkbox {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: #fff;
    border: 0.1em solid #d9d9d9;
    border-radius: 50%; /* Делаем его кругом */
    cursor: pointer;
    position: relative;
}

/* Стиль для состояния, когда чекбокс активен */


/* Стиль для внутренней точки при активном чекбоксе */
.custom-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.7em;
    height: 0.7em;
    background-color: #ffe600;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

/* Показ внутренней точки, когда чекбокс активен */
.circle-checkbox input[type="checkbox"]:checked + .custom-circle::after {
    transform: translate(-50%, -50%) scale(1);
}

.filter_record{
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 1vw;
}

.filter_record:last-of-type{
    margin-bottom: 0;
}
.filter_record p{
    font-size: 1.2em;
}

.seminars__filter-title{
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 1.5em;
    margin-bottom: .5em;
}

.seminars__filter-form{
    margin-bottom: 2vw;
}

button.reset_filter {
    margin-left: auto;
    display: block;
    width: 100%;
    padding: 0.5vh 1vw;
    border-radius: 0.5vw;

    color: #000000;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    background: #ffe600;
}

.any-day{
    padding: 0.2em;
    border-radius: 0.2em;
    font-weight: 600;
}
#calendar2 tbody td.today{
    background: #b994b9;
    color: black;
}
.seminars__main td{
    font-size: 1em;
}


.any-day:hover{
    background: #b994b9;
}
#calendar2 tbody td.any-day.select-day {
    background-color: #b994b9;
}

.special-date{
    background: #fccdc3;
}

#calendar2 tbody{
    margin: 0.7em 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0.3em;
}

#calendar2 tbody tr{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3em;
}

#calendar2 thead tr:last-of-type{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    gap: 0.5vw;
    font-size: 1em;
}

#calendar2 thead tr:first-of-type{
    display: grid;
    grid-template-columns: 4vw 1fr 4vw;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 0.5vw;
    margin-bottom: 0.5em;
}
.head-td{
    font-size: 1.3em !important;
}
.calendar-arrow{
    font-size: 2em !important;
}

.ux-input {
    height: 2em;
    font-size: 1em;
}