.containerDiv {
  margin: 40px 0;
  width: 500px;
  height: 620px;
  padding: 10px 25px;
  background: #FFFFFF;
  border-radius: 5px;
  font-family: "Montserrat";
  border: 1px solid #cacac9;
}
.containerDiv h2.title {
  font-size: 1.75rem;
  margin: 10px -5px;
  margin-bottom: 30px;
  color: #3e3e3e;
  text-align:center;
}

.result {
  position: relative;
  width: 100%;
  height: 65px;
  overflow: hidden;
  border-radius:5px;
  margin-bottom:15px;
}
.result__info {
  position: absolute;
  bottom: 4px;
  color: #3e3e3e;
  font-size: 0.8rem;
  transition: all 150ms ease-in-out;
  transform: translateY(200%);
  opacity: 0;
}
.result__info.right {
  right: 8px;
}
.result__info.left {
  right: 8px;
}
.result__viewbox {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 5px;
  color: #3e3e3e;
  text-align: center;
  line-height: 65px;
  border: 1px solid #cacac9;
}
.result #copy-btn {
	position: absolute;
	top: var(--y);
	left: var(--x);
	width: 38px;
	height: 38px;
	background: #3bb3d8 !important;
	border-radius: 50%;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0);
	transition: all 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	z-index: 2;
	color: #ffffff;
	border:0px;
}
.result #copy-btn:active {
  box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.08);
}
.result:hover #copy-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.35);
}

.field-title {
  position: absolute;
  top: -10px;
  left: 8px;
  transform: translateY(-50%);
  font-weight: 800;
  color: #3e3e3e;
  text-transform: uppercase;
  font-size: 0.85rem;
  pointer-events: none;
  user-select: none;
}

.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: #ffffff;
  border-radius: 5px;
  margin: 30px 10px;
  color:#3e3e3e;
}
.range__slider::before, .range__slider::after {
  position: absolute;
  color: #3e3e3e;
  font-size: 0.9rem;
  font-weight: bold;
}
.range__slider::before {
  content: attr(data-min);
  left: 10px;
}
.range__slider::after {
  content: attr(data-max);
  right: 10px;
}
.range__slider .length__title::after {
  content: attr(data-length);
  position: absolute;
  right: -16px;
  font-variant-numeric: tabular-nums;
  color: #3e3e3e;
}
.length__title{
	margin-left:-10px;
}
.result__title{
	text-align:left;
	padding-left:10px;
	color: #3e3e3e;
	font-weight: 800;
	color: #3e3e3e;
	font-size: 0.85rem;
	margin-bottom:15px;
}

#slider {
  -webkit-appearance: none;
  width: calc(100% - (70px));
  height: 2px;
  border-radius: 5px;
  background: #3bb3d8 !important;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#slider::focus{
	background: #3bb3d8 !important;
}
#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f2f3 !important;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
#slider::-webkit-slider-thumb:hover {
  background: #d4d4d4 !important;
  transform: scale(1.2);
}
#slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}
#slider::-moz-range-thumb:hover {
  background: #d4d4d4 !important;
}

.settings {
  position: relative;
  height: auto;
  widows: 100%;
  display: flex;
  flex-direction: column;
}
.settings .setting {
  position: relative;
  width: 100%;
  height: calc(65px - 10px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  color: #3e3e3e;
  margin-bottom: 8px;
}
.settings .setting input {
  opacity: 0;
  position: absolute;
}
.settings .setting input + label {
	user-select: none;
	color: #0e264f;
	cursor: pointer;
	font-size: 16px;
}
.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 + label::before {
  height: 30px;
  width: 50px;
  border-radius: 30px;
  background: rgba(214, 214, 214, 0.434);
}
.settings .setting input + label::after {
  height: 24px;
  width: 24px;
  border-radius: 60px;
  right: 32px;
  background: #ffffff;
}
.settings .setting input:checked + label:before {
  background: #3bb3d8;
  transition: all 150ms cubic-bezier(0, 0, 0, 0.1);
}
.settings .setting input:checked + label:after {
  right: 14px;
}
.settings .setting input:focus + label:before {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.btn.generate {
  user-select: none;
  position: relative;
  width: 100%;
  height: 50px;
  margin: 10px 0;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius:5px;
  
    background: linear-gradient(to right, #3BB3D8 6%, #3BB3D8 96%);
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}
.btn.generate:active {
  transform: translateY(-3%);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.08);
}
