.thmfe-container {
    position: relative;
    z-index: 1;
}

.thmfe-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.thmfe-menu > li {
    position: relative;
    z-index: 1;
}

.thmfe-cursor_trigger {
    display: inline-block;
    user-select: none;
    transition: all .3s;
}

.thmfe-cursor {
    position: fixed;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

[data-elementor-device-mode='tablet'] .thmfe-container.disable-tablet .thmfe-cursor {
    display: none;
}

[data-elementor-device-mode='mobile'] .thmfe-container.disable-mobile .thmfe-cursor {
    display: none;
}

.thmfe-cursor_inner {
    transform: translate3d(50vw, 50vh, 0);
}

.thmfe-cursor_list {
    width: 150px;
    height: 150px;
    transform: scale(0) translateY(-50%);
    transition: transform .3s ease-in;
}

.thmfe-cursor_list.thmfe-is-active {
    transform: scale(1) translateY(-50%);
    transition: transform .3s ease-out;
}

.thmfe-cursor_item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.thmfe-cursor_item.thmfe-is-active {
    opacity: 1;
}

.thmfe-cursor_img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
