body#pricing {
	background-image: radial-gradient(circle farthest-corner at top left, rgba(207, 235, 232, 1) 0%, rgba(207, 235, 232, 0) 30%),
	radial-gradient(circle farthest-side at 100vw 100vh, rgba(255, 245, 199, 1) 0%, rgba(255, 245, 199, 0) 40%),
	radial-gradient(circle at 10vw 200vh, rgba(207, 235, 232, 1) 0%, rgba(207, 235, 232, 0) 20%),
	radial-gradient(circle at 40vw 300vh, rgba(255,227,227,1) 0%, rgba(255,227,227,0) 20%),
	radial-gradient(circle farthest-side at 80vw 400vh, rgba(255, 245, 199, 1) 0%, rgba(255, 245, 199, 0) 20%),
	radial-gradient(circle at -20vw 500vh, rgba(207, 235, 232, 1) 0%, rgba(207, 235, 232, 0) 20%);
	padding-bottom: 0;
}
#users-limit {
	transition: opacity 0.5s;
}
.rs-range {
	margin-top: 29px;
	width: 100%;
	-webkit-appearance: none;
	}
.rs-label {
	position: relative;
	transform-origin: center center;
	display: inline-block;
	padding: 0.2em 0.6em;
	background: #BADDD8;
	border-radius: 6px;
	text-align: center;
	margin-left: 16px;
	transform: translateX(-50%);
	left: attr(value);
	color: #004236;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 0.8rem;
	
}

/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #fbe3d1;
  border-radius: 10px;
  height: 10px;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -10px; /* Centers thumb on the track */
  background-color: #08877e;
  border-radius: 30px;
  height: 30px;
  width: 30px;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid #08877e;
  outline-offset: 0.125rem;
}

input[type="range"]:active::-webkit-slider-thumb {
  background: #004236;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #fbe3d1;
  border-radius: 10px;
  height: 10px;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #08877e;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 30px;
  height: 30px;
  width: 30px;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid #08877e;
  outline-offset: 0.125rem;
}
input[type="range"]:active::-moz-range-thumb {
  background: #004236;
}

#pricing h2 { margin-bottom: 2em; }
#pricing h3 { font-size: 21px; }
.products, .products li, .license, .license li {
	list-style: none;
	margin: 0;
	padding: 0;
	}
.products li {
	padding: 1.2em 2em 1.2em 5em;
	margin-bottom: 0.7em;
	border-radius: 20px;
	background: #fff url("/graphics/checkbox-blank.svg") no-repeat 2.5em 50%;
	font-family: 'neue-haas-bold';
	font-size: 18px;
	cursor: pointer;
	}
.products li:hover { background: #F1FAF9 url("/graphics/checkbox-blank.svg") no-repeat 2.5em 50%; }
.products li.active { background: #BADDD8 url("/graphics/checkbox-checked.svg") no-repeat 2.5em 50% !important; color: #004236 !important; }
.products li:active { background: #004236 url("/graphics/checkbox-checked.svg") no-repeat 2.5em 50%; color: #fff; }
.license li {
	background: #fff url("/graphics/checkbox-blank.svg") no-repeat 50% 90%;
	display: inline-block;
	width: 40%;
	height: 8em;
	border-radius: 20px;
	margin-right: 1em;
	text-align: center;
	font-family: 'neue-haas-bold';
	position: relative;
	cursor: pointer;
	}
.license li:hover { background: #F1FAF9 url("/graphics/checkbox-blank.svg") no-repeat 50% 90%; }
.license li.active { background: #BADDD8 url("/graphics/checkbox-checked.svg") no-repeat 50% 90% !important; color: #004236 !important; }
.license li:active { background: #004236 url("/graphics/checkbox-checked.svg") no-repeat 50% 90% !important; color: #fff !important; }
.license li::before {
	content: "";
	display: block;
	margin: 1.5em auto 0.5em auto;
	width: 32px;
	height: 32px;
	background: url("/graphics/icon-personal.svg") no-repeat;
	background-size: contain;
	}

.pricelist { font-size: 0.8rem; line-height: 1.3rem; }
.pricelist-container {
	margin-top: 5em;
	background: #fff;
	border-radius: 20px;
	background: #FFFFFF;
	box-shadow: 0 17px 25px -14px #DFD3CA;
	padding: 4em 4em 10em 4em;
	position: relative;
	margin-bottom: 2em;
	}
#pricelist-person {
	margin-top: 5em;
    }
#pricelist-person > p {
	border-radius: 20px;
	background: #FFFFFF;
	box-shadow: 0 17px 25px -14px #DFD3CA;
	padding: 2em;
	position: relative;
	margin-bottom: 2em;
	}
.sum {
	background: #F3F7F9;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 3em 4em 1em 4em;
	border-radius: 0 0 20px 20px;
	font-family: 'neue-haas-bold';
	}
.sum p {
	font-size: 1.5em;
	line-height: 100%;
	}
.pricelist p { margin-bottom: 1.5rem; }
.pricelist b {
	font-family: 'neue-haas-bold';
	display: block;
	font-size: 1.3rem;
	line-height: 1.8rem; 
	}
.price b, .sum .price {
	font-family: 'recoleta-bold';
	}
.pricelist .product {
	display: inline-block;
	width: 60%;
	float: left;
	}
.pricelist .price {
	width: 40%;
	text-align: right;
	float: right;
	}
.pricelist p::after {
	content: "";
	display: block;
	clear: both;
	}
.pricelist .note {
	color: #3C857E;
	margin-top: -0.5em;
	margin-bottom: 2em;
	}
#year-subscription .price b {
	text-decoration: line-through;
    }
.year-subscription-free span {
	text-align: right;
    float: right;
	background-color: #f7c4ba;
    color: #d64a47;
    padding: 2px 12px;
    border-radius: 9px;
    width: fit-content;
    }
	
#installment {
    color: #3C857E;
}

.dropdown {
	position: relative;
}
.dropdown-selection {
	background: #BADDD8 url(/graphics/checkbox-checked.svg) no-repeat 2.5em 50%;
	color: #004236;
	padding: 1.2em 2em 1.2em 2em;
	margin-bottom: 0.7em;
	border-radius: 20px;
	background: #fff no-repeat 2.5em 50%;
	font-family: 'neue-haas-bold';
	font-size: 18px;
	cursor: pointer;
	position: relative;
}
.dropdown-selection::after {
	content: "";
	position: absolute;
	right: 27px;
	top: 31px;
	display: block;
	border: 12px solid transparent;
	border-top-color: #004236;
	transform: scaleX(0.8);
}
.dropdown .dropdown-list {
	position: absolute;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background-color: #fff;
	padding: 20px;
	border-radius: 20px;
	z-index: 2;
	opacity: 0;
	box-sizing: border-box;
}
.dropdown.active .dropdown-list {
	opacity: 1;
	max-height: 500px;
	overflow: auto;
}
.dropdown {
	.products li {
		background: #fff;
		padding: 1.2em;
		margin: 0;
	}
	.products li.active {
		background: #BADDD8 !important;
	}
	.products li:hover {
		background: #F1FAF9;
	}
}