.dropdown {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: top;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: width 200ms ease;
    gap: 25.75px;
    z-index: 5;
}
.dropdown:hover {
    width: 368.25px;
}
.dot {
    width: 8.5px;
    height: 8.5px;
    margin: 8px 0;
    background-color: var(--accent);
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot:hover, .dot.active {
    opacity: 1;
}
#theme1{
    margin-left: 25.75px;
}
#theme10{
    margin-right: 25.75px;
}
.icon {
    width: 24px;
    height: 24px;
    margin-top: 10px;
}
.dropdown:not(:hover) .dot:not(:first-child) {
    display: none;
}

@media only screen and (max-width: 600px){
    .dropdown{
        left: 20px;
        bottom: 20px;
        gap: 25.5px;
    }
    .dropdown:hover{
        width: 370.5px;
    }
    .dot{
        width: 9px;
        height: 9px;
    }

}
@media only screen and (max-width: 1024px){
    .dropdown{
        left: 20px;
        bottom: 20px;
        gap: 25.5px;
    }
    .dropdown:hover{
        width: 370.5px;
    }
    .dot{
        width: 9px;
        height: 9px;
    }

}