.style-switcher
{
    position:fixed;
    right: 2px;
    top: 120px;
    padding: 20px;
    width: 290px;
    z-index: 1001;
    border-radius: 0px;
    transition: all 0.4s ease;
    transform: translateX(100%);
}

@media screen and (max-width:450px) {
    .style-switcher
{
    position: fixed;
    right: 3px;
    top: 35px;
    width: 290px;
}
}

.style-switcher.open
{
    border: 2px solid var(--first-color);
    background-color: rgb(0, 0, 0);
    transform: translateX(-1px);
}

.style-switcher-tooltip {
    position: absolute;
    top:10%;
    right: 20%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
    font-size: 15px;
}


.style-switcher .s-icon
{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 30px;
    background-color: none;
    color: var(--title-color);
    right: 100%;
    border: 1px;
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.style-switcher .s-icon i
{
    line-height: 0px;
}

.style-switcher .style-switcher-toggler
{
    top: 0;
}
.style-switcher h4
{
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.925);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.style-switcher .colors
{
    display: flex;
    cursor: pointer;
    flex-wrap: wrap;
    justify-content: space-around;
}

.style-switcher .colors span
{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 0.1px solid rgba(0, 0, 0, 0.781);
}

.style-switcher .colour
{
    background: rgb(0, 115, 255);
}

.style-switcher .colour-2
{
    background:  rgb(255, 0, 0);
}

.style-switcher .colour-3
{
    background: rgb(11, 210, 50);
}

.style-switcher .colour-4
{
    background: rgb(255, 123, 0);
}

.style-switcher .colour-5
{
    background: #C2185B;
}

.style-switcher .colour-6
{
    background: rgb(255, 0, 221);
}
