.settings .setting input + label {
    user-select: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
user agent stylesheet
label {
    cursor: default;
}
.settings .setting {
    position: relative;
    width: 100%;
    height: calc(65px - 10px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    color: #fff;
    margin-bottom: 8px;
}
.settings .setting input:checked + label:before {
    background: #5d68e2;
    transition: all 150ms cubic-bezier(0, 0, 0, 0.1);
}
.settings .setting input + label::before {
    height: 30px;
    width: 50px;
    border-radius: 30px;
    background: rgba(214, 214, 214, 0.434);
}
.settings .setting input + label::before, .settings .setting input + label::after {
    content: "";
    position: absolute;
    transition: 150ms cubic-bezier(0.24, 0, 0.5, 1);
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    cursor: pointer;
}
.settings .setting input:checked + label:after {
    right: 14px;
}
.settings .setting input + label::after {
    height: 24px;
    width: 24px;
    border-radius: 60px;
    right: 32px;
    background: #fff;
}
.settings .setting input + label::before, .settings .setting input + label::after {
    content: "";
    position: absolute;
    transition: 150ms cubic-bezier(0.24, 0, 0.5, 1);
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    cursor: pointer;
}



.settings .setting input:checked + label:after {
    right: 14px;
}
.settings .setting input + label::after {
    height: 24px;
    width: 24px;
    border-radius: 60px;
    right: 32px;
    background: #fff;
}

.options {
	width: 100%;
	height: auto;
	margin: 50px 0;
}
.range__slider {
    position: relative;
    width: 100%;
    height: calc(65px - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin: 30px 0;
}
.range__slider::before {
    content: attr(data-min);
    left: 10px;
}
.range__slider::before, .range__slider::after {
    position: absolute;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
}
.range__slider::after {
    content: attr(data-max);
    right: 10px;
}
.range__slider::before,
.range__slider:after {
	position: absolute;
	color: #fff;
	font-size: 0.9rem;
	font-weight: bold;
}
&::before {
	content: attr(data-min);
	left: 10px;
}
&::after {
	content: attr(data-max);
	right: 10px;
}
.length__title::after {
	content: attr(data-length);
	position: absolute;
	right: -16px;
	font-variant-numeric: tabular-nums;
	color: #000;
}
}

$range-handle-color: rgb(255, 255, 255) !default;
$range-handle-color-hover: rgb(212, 212, 212) !default;
$range-handle-size: 20px !default;

$range-track-color: rgba(255, 255, 255, 0.314) !default;
$range-track-height: 2px !default;

$range-label-width: 60px !default;

#slider {
	-webkit-appearance: none;
	width: calc(100% - (#{$range-label-width + 10px}));
	height: $range-track-height;
	border-radius: 5px;
	background: $range-track-color;
	outline: none;
	padding: 0;
	margin: 0;
	cursor: pointer;

	// Range Handle
	&::-webkit-slider-thumb {
		-webkit-appearance: none;
		width: $range-handle-size;
		height: $range-handle-size;
		border-radius: 50%;
		background: $range-handle-color;
		cursor: pointer;
		transition: all 0.15s ease-in-out;
		&:hover {
			background: $range-handle-color-hover;
			transform: scale(1.2);
		}
	}
	&::-moz-range-thumb {
		width: $range-handle-size;
		height: $range-handle-size;
		border: 0;
		border-radius: 50%;
		background: $range-handle-color;
		cursor: pointer;
		transition: background 0.15s ease-in-out;
		&:hover {
			background: $range-handle-color-hover;
		}
	}
}

.settings {
	position: relative;
	height: auto;
	widows: 100%;
	display: flex;
	flex-direction: column;

	.setting {
		position: relative;
		width: 100%;
		height: calc(#{$field-height} - 10px);
	background: $field-color;
	border-radius: $field-border-radius;
	display: flex;
	align-items: center;
	padding: 10px 25px;
	color: #fff;
	margin-bottom: 8px;
	input {
		opacity: 0;
		position: absolute;
		+ label {
			user-select: none;
			&::before,
			&::after {
				content: "";
				position: absolute;
				transition: 150ms cubic-bezier(0.24, 0, 0.5, 1);
				transform: translateY(-50%);
				top: 50%;
				right: 10px;
				cursor: pointer;
			}
			&::before {
				height: 30px;
				width: 50px;
				border-radius: 30px;
				background: rgba(214, 214, 214, 0.434);
			}
			&::after {
				height: 24px;
				width: 24px;
				border-radius: 60px;
				right: 32px;
				background: #fff;
			}
		}
		&:checked {
			& + label:before {
				background: #5d68e2;
				transition: all 150ms cubic-bezier(0, 0, 0, 0.1);
			}
			& + label:after {
				right: 14px;
			}
		}
		&:focus {
			+ label:before {
				box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
			}
		}
		&:disabled{
			+ label{
				&:before, &:after{ cursor: not-allowed }
				&:before{ background: #4f4f6a }
				&:after{ background: #909090 }
			}
		}
	}
}
}

.btn.generate {
	user-select: none;
	position: relative;
	width: 100%;
	height: 50px;
	margin: 10px 0;
	border-radius: $field-border-radius;
	color: #fff;
	border: none;
	background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 150ms ease;
	&:active {
		transform: translateY(-3%);
		box-shadow: 0 4px 8px rgba(255, 255, 255, 0.08);
	}
}



.support{
	position: fixed;
	right: 10px;
	bottom: 10px;
	padding: 10px;
	display: flex;
}



@keyframes octocat-wave{
	0%, 100%{
		transform:rotate(0);
	}
	20%, 60%{
		transform:rotate(-20deg);
	}
	40%, 80%{
		transform:rotate(10deg);
	}
}

.range__slider::before {
    content: attr(data-min);
    left: 10px;
}
.range__slider::before, .range__slider::after {
    position: absolute;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
}
.range__slider::after {
    content: attr(data-max);
    right: 10px;
}
.range__slider::before, .range__slider::after {
    position: absolute;
    color: #000;
    font-size: 0.9rem;
    font-weight: bold;
}

.settings .setting{
	position: relative;
    width: 100%;
    height: calc(65px - 10px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    color: #fff;
    margin-bottom: 8px;
}
.settings .setting input + label {
    user-select: none;
	margin-bottom: -.2rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
user agent stylesheet
label {
    cursor: default;
}
.settings .setting {
    position: relative;
    width: 100%;
    height: calc(65px - 15px);
    background: rgba(9, 65, 135, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    color: #000;
    margin-bottom: 8px;
}




.settings .setting input:checked + label:after {
    right: 14px;
}
.settings .setting input + label::after {
    height: 24px;
    width: 24px;
    border-radius: 60px;
    right: 32px;
    background: #fff;
}

.result__viewbox {
    width: 100%;
    height: 100%;
    background: rgb(9 65 135 / 8%);
    border-radius: 8px;
    color: #000;
    text-align: center;
    line-height: 65px;
	margin-bottom: 15px;
    margin-top: 15px;
}
.field-title {
    position: absolute;
    top: -10px;
    left: 8px;
    transform: translateY(-50%);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-size: 0.65rem;
    pointer-events: none;
    user-select: none;
}
.settings .setting input {
    opacity: 0;
    position: absolute;
}


.settings .setting input:checked + label:after {
    right: 14px;
}
.settings .setting input + label::after {
    height: 24px;
    width: 24px;
    border-radius: 60px;
    right: 32px;
    background: #fff;
}
.slider-scroller{
	width: calc(100% - (70px));
    height: 2px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.314);
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;"
}


