@charset "UTF-8";
/* CSS Document */
.p-col {
    padding: 20px 15px;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
}
.btn-toggle{
	width: 200px;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	border: 1px solid #5f63ff;
	border-radius: 18px;
	text-align: center;
	font-weight: 500;
	position: relative;
}
.btn-toggle::before{
	content: "";
	background: #5f63ff;
	height:28px;
	line-height: 28px;
	
	border-radius: 14px;
	position: absolute;
	width: 100px;
	left: 3px;
	top:3px;
	z-index: 1;
  	transition: left .5s;
}
.btn-toggle.monthly::before{
	left: 95px;
}
.btn-toggle .option{
	width: 50%;
	float: left;
	cursor: pointer;
	color: #5f63ff;
  	transition: color .5s;
	z-index: 2;
	position: relative;
}
.btn-toggle .option:first-child{
	color: #FFF;
}
.btn-toggle.monthly .option:first-child{
	color: #5f63ff;
}
.btn-toggle.monthly .option:last-child{
	color: #FFF;
}

.p-col .btn-gradient{
	    padding: 5px;
    display: block;
	margin-bottom: 15px;
}
.price{
 font-size: 55px;
	line-height: 1;
	margin: 15px 0px;
}

.price span{
	color: #ccc;
	font-size: 14px;
	display: block;
}
.hidden{
	display: none;
}