.appointment-header__split > p{
    font-size: 18px;
    color: var(--text-gray);
    margin: 30px 0;
}
.appointment-calendar__flexContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}
.appointment-header > p{
    font-size: 32px;
}
.appointment-calendar__nextM, .appointment-calendar__prevM{
    min-width: 30px;
    min-height: 30px;
    background: var(--black);
    content: '';
    mask-size: contain;
    mask-repeat: no-repeat;
    cursor: pointer;
}
.appointment-calendar__nextM{
    mask-image: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1769 27.6367L19.3593 25.8448L5.0382 14.0525L19.3593 2.26016L17.1769 0.463135L0.679624 14.0525L17.1769 27.6367Z' fill='%23F5EFF2'/%3E%3C/svg%3E%0A");
}
.appointment-calendar__prevM{
    mask-image: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.82312 27.6367L0.640747 25.8448L14.9618 14.0525L0.640747 2.26016L2.82312 0.463135L19.3204 14.0525L2.82312 27.6367Z' fill='%23F5EFF2'/%3E%3C/svg%3E%0A");
}
.appointment-calendar__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.appointment-calendar__header > p{
    font-size: 32px;
}
.appointment-calendar__items{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 40px;
}
.appointment-calendar__item{
    width: 40px;
    height: 40px;
    border: solid 1px var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
}
.appointment-calendar__item.current-day{
    border: solid 1px var(--midle-gray);
}
.appointment-calendar__items-container{
    display: flex;
    justify-content: center;
}
.appointment-container__times{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.appointment-container__time{
    padding: 15px 40px;
    border: solid 1px var(--beige);
    cursor: pointer;
    transition: .3s;
}
.appointment-container__time:hover{
    background: var(--beige);
    transition: .3s;
}
.appointment-container__phone > input, .appointment-register__container > input[type='text'], .appointment-register__container > input[type='email']{
    width: 100%;
    height: 50px;
    border: solid 1px var(--black);
    padding: 0 10px;
    outline: none;
    color: var(--text);
    font-size: 16px;
}
.appointment-container__control-btn{
    padding: 15px 30px;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}
.appointment-container__control-btn:hover{
    transform: scale(1.1);
    transition: .3s;
}
.appointment-container__control-btn p{
    font-size: 18px;
}
.appointment-container__control{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.appointment-container__control-prev.disable{
    opacity: 0;
    pointer-events: none;
}
.appointment-container__text{
    text-align: center;
}
.appointment-container__verification{
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.appointment-container__inputs{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}
.appointment-container__inputs input{
    flex: 1;
    height: 60px;
    width: 100%;
    outline: none;
    border: solid 1px var(--black);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 15px;
}
.appointment-container__inputs input[type="number"] {
    -moz-appearance: textfield; /* Для Firefox */
}

.appointment-container__inputs input[type="number"]::-webkit-outer-spin-button,
.appointment-container__inputs input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Для Chrome, Safari, Edge */
    margin: 0;
}

.appointment-register__container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
}

.custom-checkbox input {
    display: none; /* Скрываем стандартный чекбокс */
}

.checkmark {
    min-width: 20px;
    min-height: 20px;
    border: 1px solid var(--black);
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

.custom-checkbox input:checked + .checkmark::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--text);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Центрируем квадрат */
}
.custom-checkbox a{
    text-decoration: none;
    margin-left: 5px;
    color: var(--text-gray);
}
.appointment-check__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.appointment-check__header-worker__info{
    display: flex;
    align-items: center;
    gap: 5px;
}
.appointment-check__header-worker__info img{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
}
.hystmodal__window.big{
    width: 800px;
}
.appointment-check__header-date p:first-child, .appointment-check__header-worker > p{
    font-size: 18px;
    color: var(--text-gray);
}
.appointment-check__header-date p:last-child{
    font-size: 30px;
    margin-top: 15px;
}
.appointment-check__header-worker__info{
    margin-top: 15px;
}
.appointment-check__header-worker__info > p{
    font-size: 18px;
}
.appointment-check__info > p{
    margin-top: 20px;
    font-size: 18px;
}
.appointment-check__info-client{
    font-size: 18px;
    color: var(--text-gray);
}
.appointment-calendar__item.available{
    background: var(--beige);
    cursor: pointer;
}
.appointment-calendar__item.available.disabled{
    cursor: not-allowed;
}
.appointment-container__time.selected{
    background: var(--beige);
}
.appointment-container__text.disabled{
    color: var(--text-gray);
    cursor: not-allowed;
}
.appointment-container__control-next.disable{
    background: var(--light-gray);
    pointer-events: none;
    transition: .3s;
}
.appointment-btn {
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 3;
    bottom: 20px;
    right: 20px;
    border-radius: 100%;
    background: var(--beige);
    background-size: contain;
    cursor: pointer;
    animation: pulse 1.5s infinite; /* Добавление анимации */
    animation-play-state: running; /* Анимация активна по умолчанию */
}
.appointment-btn__ico{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.appointment-btn__ico::before{
    content: '';
    width: 60%;
    height: 60%;
    background: url("../asset/appoinment-ico.png") no-repeat;
    background-size: contain;
    position: absolute;
}
.appointment-btn:hover {
    animation-play-state: paused; /* Остановка анимации при наведении */
}
@media (max-width: 500px){
    .appointment-container__time{
        padding: 10px 20px;
    }
    .appointment-container__control-btn p {
        font-size: 14px;
    }
    .appointment-calendar__item{
        width: 35px;
        height: 35px;
    }
    .checkmark {
        min-width: 15px;
        min-height: 15px;
    }
    .custom-checkbox > p{
        font-size: 14px;
    }
    .custom-checkbox input:checked + .checkmark::before {
        transform: translate(-55%, -45%);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Увеличиваем на 10% */
    }
    100% {
        transform: scale(1);
    }
}
