/* Global Contact Use */
.menu-tooltip {
    --toggle-color: var(--primary-200);
    --item-1-gradient: linear-gradient(45deg, #62daca, #10d4a9);
    --item-2-gradient: linear-gradient(45deg, #f97d98, #d41f46);
    --item-3-gradient: linear-gradient(45deg, #124a7c, #961d96);
    color: #f5f5f5;
    width: 200px;
    height: 200px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    z-index: 999;
}

aside.menu-tooltip > .toggle {
    width: 60px;
    height: 60px;
    background-color: var(--toggle-color);
    text-align: center;
    line-height: 60px;
    border-radius: 25%;
    font-size: 1.8em;
    z-index: 999;
    position: absolute;
    transition: transform 0.65s ease-in-out;
    cursor: pointer;
}

aside.menu-tooltip > #toggle {
    appearance: none;
    visibility: hidden;
}

    aside.menu-tooltip > #toggle:checked + .toggle {
        transform: rotate(360deg);
    }

    aside.menu-tooltip > #toggle:checked ~ .circle-box {
        transform: rotate(calc(360deg / 8 * var(--i)));
    }

aside.menu-tooltip > .circle-box {
    position: absolute;
    left: 0;
    list-style-type: none;
    transition: 0.5s;
    transform-origin: 100px;
    transition-delay: calc(0.1s * var(--i));
    transform: rotate(0deg) translateX(70px);
    width: 50px;
    height: 50px;
}

    aside.menu-tooltip > .circle-box:nth-of-type(1) .anchor {
        background: var(--primary-300);
    }

    aside.menu-tooltip > .circle-box:nth-of-type(2) .anchor {
        background: var(--primary-300);
    }

    aside.menu-tooltip > .circle-box:nth-of-type(3) .anchor {
        background: var(--primary-300);
    }

    aside.menu-tooltip > .circle-box:nth-of-type(n+4) {
        visibility: hidden;
    }

.anchor {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5em;
    text-decoration: none;
    color: #fff;
    position: relative;
    transform: rotate(calc(360deg / -8 * var(--i)));
}

    .anchor:hover {
        border: 4.75px solid var(--secondary--300);
        color: #f5f5f5;
        text-decoration: none !important;
    }

    .anchor:before {
        content: "";
        position: absolute;
        inset: 0px;
        background-image: inherit;
        border-radius: inherit;
        z-index: -1;
        transition: 0.25s all;
    }

    .anchor:hover:before {
        inset: 0px;
        transform: scale(1.1);
        transition: 0.25s all;
    }

@media (max-width: 575px) {
    aside.menu-tooltip {
        --postion: -45px;
        transform: scale(0.8);
        bottom: calc(var(--postion) + (-10px));
        right: var(--postion);
    }
}
/* /Global Contact Use */
