/* Button 1 */


.knobs, .slayer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button
{
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    margin: -20px auto 0 auto;
}

.button.r, .button.r .slayer
{
    border-radius: 100px;
}

.button.b2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
ul.option-list.render .old {
	display: none;
}
.knobs
{
    z-index: 2;
}

.slayer
{
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}
.render {
	margin: 10px 0 20px;
}
.render .button {
	margin: -35px auto 0 auto;
}
.render #button-1 .knobs:before {
	content: 'Old';
	background-color: #e96d3e;
}	
.render #button-1 .checkbox:checked + .knobs:before
{
    content: 'New';
	background-color: #58385D;
}

.render .addto-button #button-1 .knobs:before  {
	content: 'YES';
    background-color: #03A9F4;
}
.render .addto-button #button-1 .checkbox:checked + .knobs:before  {
	content: 'NO';
    background-color: #f44336;
}
.button-wrapper-create ul.option-list.options {
    padding: 0;
}
.button-wrapper-create ul.option-list.options li label {
	top: -8px;
}
.cdn #button-1 .knobs:before {
	content: 'CDN';
	background-color: #e96d3e;
}
.cdn #button-1 .checkbox:checked + .knobs:before
{
    content: 'CDN1';
	background-color: #58385D;
}
.bundle #button-1 .knobs:before {
	content: 'PRO';
	background-color: #e96d3e;
}
.bundle #button-1 .checkbox:checked + .knobs:before
{
    content: 'DEV';
	background-color: #58385D;
}

.prod-dev-wrapper ul.option-list li #date {
    position: absolute;
    font-size: 11px;
    white-space: nowrap;
    top: 13px;
    padding-left: 10px;
}
#button-1 .knobs:before
{
    content: 'YES';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 10px;
    padding: 9px 4px;
    background-color: #03A9F4;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-1 .checkbox:checked + .knobs:before
{
    content: 'NO';
    left: 42px;
    background-color: #f44336;
}

#button-1 .checkbox:checked ~ .slayer
{
    background-color: #fcebeb;
}

#button-1 .knobs, #button-1 .knobs:before, #button-1 .slayer
{
    transition: 0.3s ease all;
}
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 36px;
  background: #ebf7fc;
  outline: none;
  border: none !important;
  padding: 10px 5px !important;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 50px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #03A9F4;
  cursor: pointer;
  border-radius: 100%;
  border: none;
}

.slider::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #03A9F4;
  cursor: pointer;
  border-radius: 100%;
  border: none;
}