
.container {
	display: flex;
	justify-content: space-evenly;
	margin-top:3rem;
}

.circle {
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 13rem;
    width: 13rem;
    margin: 4rem 0 4rem 0;
    font-size: 24px;
    font-weight:500;

}

.circle-lite {
	background-color: rgb(1,180,192);
	 box-shadow: 0 0 0 13px rgb(1,180,192,0.5);
}

.circle-basic {
	background-color: rgb(161,72,196);
	margin-top: 5rem;
	box-shadow: 0 0 0 13px rgb(161,72,196,0.5);
}

.circle-plus {
	background-color: rgb(240,38,111);
	box-shadow: 0 0 0 11px rgb(240,38,111,0.5);
}

.circles {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-small {
	background-color: rgb(253,206,15);
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: -2rem 0 -5rem 0;
    z-index: 1;
}

.pricing {

	background-color: rgb(0,0,0,0.8);
	display:flex;
	flex-direction: column;
	align-items: center;
	border-radius: 15rem 15rem 0 0;
	padding:0;

}

.plan {
	color:rgb(255,255,255,0.8);
	background-color: rgb(255,255,255,0.1);
	width:100%;
	height:12rem;
	display:flex;
	align-items: center;
	justify-content: center

}

.pricing-list {
	color:rgb(255,255,255,0.8);
	text-decoration: none;
	list-style: none;
	padding:0;
	display: flex;
	flex-direction: column;
	align-items: center;
    margin: 2rem 1.5rem;
    line-height: 2.3;
    font-size: 13px;
}

.tick {
	color:rgb(1,180,192);
}

.text-lite, .text-basic, .text-plus{
	text-align: center;
	font-size:18px;
	font-weight: 900;

}

.text-lite, .tick-lite {
	color: rgb(1,180,192);
}

.text-basic, .tick-basic {
	color: rgb(161,72,196);
}

.text-plus, .tick-plus {
	color: rgb(240,38,111);
}

.strike {
	text-decoration: line-through;
}

.text-small {
	font-size: 12px;
	color:rgb(255,255,255,0.8);
	font-weight: normal;
}

@media only screen and (max-width: 480px) {
  .pricing {
	border-radius: 0;
	
  }
  #pricingtable
  {
	padding-top: 0px;
  }


  .container {
  	flex-direction: column;
  	margin:0;
  	padding:0;
  }

  .circle-small {
  	display: none;
  }

  .lite, .basic {
  	margin-bottom: 2rem;
  }
}
