/* December 12, 2024 */


/* 💛 #settings_image_container [s.Settings][s.Image] 💛 */
#settings_image_container {
    height: calc(34px + 14px + 16px);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
}
#my_settings_icon {
    max-width: 30px;
    width: 100%;
    margin: 0;
}
#circle_boundary_container {
    right: 0;
    top: 0;
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    opacity: 0.8;
}
#settings_icon_circular_boundary {
    padding: 0;
   display: inline-block;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   transition: all 0.1s 0.4s linear;
   outline-offset: 1px;
   border-left: none;
   border-top: none;
   top: unset;
   right: unset;
   left: unset;
   bottom: unset;
   pointer-events: none;
   width: 52px;
   height: 52px;
   margin: 0;
    transform-origin: center;
    position: relative;
    transform: rotate(0deg);
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0s;
    transition-delay: 0s;
    border-right: none;
    border-bottom: none;
}
/* 💛💛💛 */
#settings_icon_circular_boundary.hide {
    border-top-color: transparent;
    border-left-color: transparent;
    transition: all 0.1s linear;
}
body.dark_mode #settings_icon_circular_boundary {
    border-right: none;
    border-bottom: none;
}

#settings_icon_circular_boundary:before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

#settings_icon_main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    transition: all;
    transition-duration: 0s;
    transition-timing-function: linear;
    display: flex;
    justify-content: center;
    align-items: center;
}
#settings_icon_main:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 35%;
    transform: rotate(84deg);
    display: flex;
    height: 26px;
    width: 14px;
    border-radius: 100% 10% 90% 100%;
}
#settings_icon_main:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    left: 1px;
    height: 100%;
    width: 100%;
}

/* 💥 Box-shadows 💥 */


/* 💥 [s.Animation] 💥 */


/* 💥 [s.Animation] 💥 */


/* 💥 [s.Animation] 💥 */


#settings_icon_circular_boundary {
    animation-name: rotate-outside-box;
    animation-timing-function: linear;
    animation-duration: 120s;
    animation-iteration-count: infinite;
}
@keyframes rotate-outside-box {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    3.6% {
        transform: rotate(495deg);
        opacity: 1;
    }
    4%, 100% {
        opacity: 0;
    }
}



#settings_icon_main {
    animation-timing-function: linear;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: center;
}
@keyframes rotate-outside-circle {
    0% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(315deg);
    }
}


#settings_icon_main:before {
    animation-timing-function: linear;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: center;
}
@keyframes rotate-moving-sphere {
    0% {
        transform: rotate(calc(var(--icon-circle-starting-degree) * 1deg)) translate(-50%, 50%);
    }
    100% {
        transform: rotate(calc((var(--icon-circle-starting-degree) + (90 * 4)) * 1deg)) translate(-50%, 50%);
    }
}