.logo {
    display: flex;
}

.logo-icon {
    background-image: -webkit-radial-gradient(at bottom left, #a14bd2 5%, rgba(161, 75, 210, 0) 50%), -webkit-radial-gradient(at top left, #10abf1 30%, rgba(16, 171, 241, 0) 50%), -webkit-radial-gradient(at top right, #41e0bd 30%, rgba(161, 75, 210, 0) 50%), -webkit-radial-gradient(at bottom right, #e94696 30%, rgba(161, 75, 210, 0) 50%);
    background-image: radial-gradient(at bottom left, #a14bd2 5%, rgba(161, 75, 210, 0) 50%), radial-gradient(at top left, #10abf1 30%, rgba(16, 171, 241, 0) 50%), radial-gradient(at top right, #41e0bd 30%, rgba(161, 75, 210, 0) 50%), radial-gradient(at bottom right, #e94696 30%, rgba(161, 75, 210, 0) 50%);
    background-color: #a14bd2;
    -webkit-clip-path: url(#logo-icon);
    clip-path: url(#logo-icon);
}

.logo-icon, .logo-text {
    height: 2.75rem;
    display: block;
}

.logo--large .logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-size: 45px 45px;
    margin-right: 15px;
}

.logo--large .logo-text {
    width: 9.625rem;
    height: 2.75rem;
}

[dir=ltr] .Pen-header .Status {
    margin-left: 0;
}

.Styling {
    display: flex;
    margin-left: auto;
}

.Styling-description {
    display: none;
}

@media (min-width: 420px) {
    .Styling-description {
        display: inline-block;
        padding-left: 5px;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}
