/* Paging */
.paging-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-600);
    background-color: transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.paging-item:not(.active):hover,
.paging-item:not(.active):focus-visible {
    outline: none;
    background-color: rgba(0, 0, 0, 0.06);
}
.paging-item.active {
    pointer-events: none;
    color: var(--color-solid-white);
    background-color: var(--color-primary-400);
}
.paging-item.type-img,
.paging-item.type-img-prev,
.paging-item.type-img-next {
    border: 1px solid transparent;
    border-radius: 50%;
}
.paging-item.type-img:hover,
.paging-item.type-img-prev:hover,
.paging-item.type-img-next:hover {
    border-color: transparent;
    color: var(--color-solid-white);
    background-color: var(--color-primary-400);
}
.paging-item svg {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    color: currentColor;
}

@media (max-width: 768px) {
    .paging-item { width: 24px; height: 24px; }
}


/* Datepicker */
#ui-datepicker-div .ui-widget-header .ui-icon,
#ui-datepicker-div .ui-widget-content .ui-icon,
#ui-datepicker-div .ui-state-hover .ui-icon,
#ui-datepicker-div .ui-state-focus .ui-icon {
    background-image: none !important;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.15s ease;
}
#ui-datepicker-div .ui-datepicker-prev::before,
#ui-datepicker-div .ui-datepicker-next::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color-text-600);
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}
#ui-datepicker-div .ui-datepicker-prev::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10 14L4 8L10 2' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10 14L4 8L10 2' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
#ui-datepicker-div .ui-datepicker-next::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 2L12 8L6 14' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 2L12 8L6 14' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
#ui-datepicker-div .ui-datepicker-prev-hover,
#ui-datepicker-div .ui-datepicker-next-hover {
    background-color: var(--color-solid-200);
    border: none;
}
#ui-datepicker-div .ui-datepicker-prev-hover::before,
#ui-datepicker-div .ui-datepicker-next-hover::before {
    background-color: var(--color-text-700);
}
