/* body{
    cursor: none;
} */

.types-filter{
    padding: 16px 16px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--button-radius);
    padding: 16px;
}
/* #year-filter-selector{
    height: 45px;
    align-self: end;
    font-size: 16px;
    padding: 0px 16px;
   
} */

/* ----------------------------------------------------------------------------------------------------- */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    background: url('../../img/cursor.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
}

.custom-cursor.hidden {
    opacity: 0;
    /* ซ่อน custom cursor */
}

.custom-cursor::after {
    content: 'efin Intern';
    position: absolute;
    width: max-content;
    top: 26px;
    left: 26px;
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    /* border: 1px solid var(--Border-Yellow, #CCA421); */
    background: var(--Background-Yellow, #FFCD29);
    box-shadow: 0px 4px 8px 0px rgba(255, 205, 41, 0.32);
    color: var(--Black, #000);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

@media (max-width: 991px) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}
