<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*---------------------------------------------------
CONTENT SWITCHER
----------------------------------------------------*/
.mas-content-switcher-toggle-switch-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0;
}

.mas-content-switcher-toggle-switch-label input {
    opacity: 0;
    width: 0;
    height: 0;
}

.mas-content-switcher-toggle-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    display: block;
    border-style: solid;
}

.mas-content-switcher-toggle-switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.mas-content-switcher-toggle-switch-slider {
    background-color: #2196F3;
}

input:focus+.mas-content-switcher-toggle-switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.mas-content-switcher-toggle-switch-slider:before {
    -webkit-transform: translate(34px, -50%);
    -ms-transform: translate(34px, -50%);
    transform: translate(34px, -50%);
}

.mas-content-switcher-toggle-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 30px 0;
    position: relative;
}

.mas-content-switcher-toggle.mas_switecher_left {
    justify-content: flex-start;
    display: flex;
}

.mas-content-switcher-toggle.mas_switecher_center {
    justify-content: center;
    display: flex;
}

.mas-content-switcher-toggle.mas_switecher_right {
    justify-content: flex-end;
    display: flex;
}

.mas-content-switcher-toggle.mas_switecher_justify {
    display: block;
}

.mas-content-switcher-toggle.mas_switecher_justify .mas-content-switcher-toggle-inner {
    justify-content: center;
}

.mas-content-switcher-toggle-label-1, 
.mas-content-switcher-toggle-label-2 {
    cursor: pointer;
}
</pre></body></html>