/* side-links area style  */
#siteflex-side-links {
    position: fixed;
    top: 0;
    padding: 20px 5px;
    background-color: #fff;
    width: 100px;
    right: -100px;
    transition: all 0.5s;
    z-index: 99999;
    font-weight: inherit;
    bottom: 0;
}

#siteflex-side-links .options {
    background-color: #fff;
    width: 43px;
    position: absolute;
    top: 250px;
    left: -43px;
    cursor: pointer;
    border-left: 0;
    border-radius: 0;
	box-shadow: 0px 0px 20px -10px;
    padding: 0;
    border-radius: 12px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: 1px solid #eee;
    border-right: 0;
    box-sizing: border-box;
}

#siteflex-side-links .options .custom-tooltip {
    transition: all 0.5s;
    position: relative;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

#siteflex-side-links .options .custom-tooltip:last-child {
    border-bottom: none;
}

#siteflex-side-links .options .custom-tooltip:hover .wc-tooltip {
    opacity: 1;
    right: 55px;
    visibility: visible;
    transform: scale(1);
}

#siteflex-side-links .options .custom-tooltip:hover svg path {
    fill: var(--primary);
}

#siteflex-side-links .options .icon {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: block;
    height: 41px;
    line-height: 41px;
    color: #333;
    transition: all 0.5s;
}

#siteflex-side-links .options svg {
    width: 18px;
    height: 18px;
}

#siteflex-side-links .options svg,
#siteflex-side-links .options svg path {
    fill: var(--e-global-color-text);
    transition: all 0.5s;
}

#siteflex-side-links .options .wc-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    position: absolute;
    line-height: 12px;
    background-color: #fff;
    border: 1px solid #eee;
    font-size: 14px;
    margin: 0;
    padding: 12px;
    font-family: inherit;
    width: auto;
    font-weight: 500;
    display: block;
    right: 10px;
    top: 2px;
    white-space: nowrap;
    border-radius: 0;
    transition: all 0.5s;
    border-radius: 12px;
    color: #333;
}

#siteflex-side-links .options .wc-tooltip .triangle-tooltip {
    display: block;
    position: absolute;
    right: -6px;
    margin-top: -6px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid #eee;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    opacity: 0.08;
}

#siteflex-side-links .options .wc-tooltip:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: #eee;
    opacity: 0.08;
    display: none;
}

@media (max-width: 1024px) {
    #siteflex-side-links {
        display: none;
    }
}