.style-switcher {
    font-family: var(--greenmax-font);
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 99999;
    background-color: #fff;
    width: 200px;
    text-align: center;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.04);
    transform: translateX(-100%);
    transition: transform 500ms ease;
    border-top-right-radius: var(--greenmax-border-radius, 10px);
    border-bottom-right-radius: var(--greenmax-border-radius, 10px);
    padding: 25px 15px 30px
}

.style-switcher.active {
    transform: translateX(0%)
}

.style-switcher h3 {
    margin: 0;
    text-transform: uppercase;
    color: var(--greenmax-black);
    font-size: 20px;
    letter-spacing: var(--greenmax-letter-space-small);
    line-height: 1;
    font-family: var(--greenmax-font);
    margin-bottom: 15px;
    font-weight: 800
}

.style-switcher .layout-feature,
.style-switcher .language-feature {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 15px
}

.style-switcher .layout-feature button,
.style-switcher .layout-feature a,
.style-switcher .language-feature button {
    border: none;
    outline: none;
    font-family: var(--greenmax-font);
    text-transform: uppercase;
    background-color: var(--greenmax-black);
    color: #fff;
    letter-spacing: var(--greenmax-letter-space-big);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--greenmax-border-radius)
}

.style-switcher .layout-feature a:nth-child(odd),
.style-switcher .layout-feature button:nth-child(odd),
.style-switcher .language-feature button.rtl-switcher {
    background-color: var(--greenmax-primary);
    color: #fff
}

.style-switcher .layout-feature button:last-child {
    grid-column-start: 1;
    grid-column-end: 3
}

#switcher-toggler {
    position: absolute;
    top: 20px;
    left: 100%;
    font-size: 22px;
    color: #fff;
    width: 40px;
    height: 40px;
    background-color: var(--greenmax-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms;
    border-top-right-radius: var(--greenmax-border-radius, 10px);
    border-bottom-right-radius: var(--greenmax-border-radius, 10px)
}

#switcher-toggler:hover {
    color: #fff;
    background-color: var(--greenmax-black)
}

#styleOptions {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr
}

#styleOptions li {
    width: 100%;
    height: 46.6667px;
    border-radius: 50%;
    overflow: hidden
}

#styleOptions li a {
    display: block;
    width: 100%;
    height: 100%
}

.skiptranslate {
    display: none!important
}

body {
    top: auto!important
}