body {
  font-family: "Cabin", sans-serif;
  background-color: #eee;
  margin: 0;
}

a {
  color: #8f479a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.center {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
}

@media screen and (min-width: 500px) {
  .stack {
    display: flex;
    flex-direction: column;
    max-width: 40rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
    background-color: white;
    border-radius: 1rem;
    min-height: 40rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 50px 0 rgba(0, 0, 0, 0.1);

  }
}

@media screen and (max-width: 499px) {
.stack {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  padding-left: 2rem;
  background-color: white;
  border-radius: 1rem;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
}


.title-link {

}

.title-link:hover {
  border: 1px solid 8f479a;
}
.title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  height: 4rem;
  justify-content: center;
}

.title-font {
  font-optical-sizing: auto;
  font-weight: bold;
  text-transform: uppercase;
}

.title-icon {
  height: 100%;
}

.fnt-bold {
  font-weight: bold;
}

.fnt-lighter {
  font-weight: lighter;
}

.title {
  margin: 0;
  padding: 0;
}

.subtitle {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: lighter;
  letter-spacing: .15rem;
}

.title-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.color-purple{
  color: #8f479a;
}

.color-gray {
  color: #54585a;
}

.price-row {
  margin-top: 2rem;
  height: 7rem;
  display: flex;
  align-items: centek;
  justify-content: center;
}

.price-border {
  /*border: 0.4rem solid #8f479a;*/
  border-radius: 4rem;
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 25rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  /*background: #8f479a;*/
 background: rgb(196,113,196);
background: linear-gradient(310deg, rgba(196,113,196,1) 0%, rgba(143,71,154,1) 23%, rgba(146,71,156,1) 71%, rgba(196,113,196,1) 100%); 
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: space-evenly;
  margin: 0 auto;
  color: white;
  width: 14rem;
}

.price-bignum {
  font-family: "Cabin", sans-serif;
  font-size: 2.75rem;
}

.price-cost-label {
  font-size: 0.75rem;  
}

.price-savings-label {
  font-size: 0.75rem;
}

.price-breakdown {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  min-width: 12rem;
  justify-content: space-between;
}

.price-num {
  display: flex;
  flex-direction: column;
}

.range {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.range input{
	-webkit-appearance:none;
  appearance: none;
  width: 100%;
	height:8px;
	border-radius:5px;
	background-color:#dbdbdb;
	outline:none;
  width: 100%;
}


input[type="range" i]::-webkit-slider-thumb {
	-webkit-appearance:none;
  appearance: none;
	width:2rem;
	height:2rem;
	border-radius:50%;
	background-color: #8f479a;

}

.range input::-moz-range-thumb {
	-webkit-appearance:none;
  appearance: none;
	width:2rem;
	height:2rem;
	border-radius:50%;
	background-color: #8f479a;
}

.range > span{
	position:relative;
	margin-left:14px;
	width:50px;
	height:30px;
	background-color:#918c8c;
	color:#fff;
	border-radius:3px;
	text-align:center;
	line-height:30px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.range span:before{
	content:'';
	position:absolute;
	border-right:9px solid transparent;
	border-left:9px solid transparent;
	border-bottom:12px solid #918c8c;
	left:-10px;
	top:50%;
	transform:translateY(-50%) rotate(-90deg);
}

.label-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.label {
  font-variant-caps: small-caps;
  color: #222;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

.range-row{
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.range-value {
  margin:0;
}
.tick {
  position: absolute;
  left: 40%;
}

.disclaimer-row {
  font-size: 0.8rem;
  max-width: 30rem;
}
