#expenses .title {
	font-size: 48px;
	font-weight: bold;
}
#expenses .switch {
	padding: 5px;
	margin-top: 40px;
	border-radius: 50px;
	background-color: white;
	box-shadow: 0px 10px 40px 0px rgba(0, 13, 69, 0.1);
}
#expenses .switch .item {
	color: rgba(0, 0, 0, 0.5);
	padding: 10px 20px;
	font-weight: 500;
	line-height: 19px;
	cursor: pointer;
}
#expenses .switch .item.active {
	color: white;
	border-radius: 60px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#expenses .list {
	gap: 30px;
	margin-top: 40px;
}
#expenses .list .item {
	flex: 1;
	width: 0;
	position: relative;
	top: 0;
	padding: 30px;
	border-radius: 20px;
	border: 2px solid white;
	box-shadow: 0px 10px 40px 0px rgba(0, 13, 69, 0.1);
	transition: top 0.3s;
	background: linear-gradient(180deg, #FFFFFF 0%, #F5F2FF 100%);
}
#expenses .list .item:nth-child(1) {
	background: linear-gradient( 180deg, #EAEDEF 0%, #FFFFFF 50%);
}
#expenses .list .item:nth-child(2) {
	background: linear-gradient( 180deg, #DBDFFF 0%, #FFFFFF 50%);
}
#expenses .list .item:nth-child(3) {
	background: linear-gradient( 180deg, #FAF4E2 0%, #FFFFFF 50%);
}
#expenses .list .item:hover {
	top: -10px;
	border: 2px solid #4E89FF;
}
#expenses .list .tag {
	position: absolute;
	top: 0;
	right: 0;
	color: white;
	padding: 10px 15px;
	border-radius: 0px 20px 0px 20px;
	background-color: #462DE1;
}
#expenses .list .name {
	font-size: 20px;
	font-weight: bold;
	font-family: Poppins ZN, Poppins ZN;
	line-height: 24px;
}
#expenses .list .item:nth-child(2) .name {
	color: #462DE1;
}
#expenses .list .item:nth-child(3) .name {
	color: #F37A00;
}
#expenses .list .introduce {
	color: #888888;
	font-size: 18px;
	margin-top: 10px;
}
#expenses .list .price {
	margin-top: 10px;
}
#expenses .list .price .amount {
	font-size: 36px;
}
#expenses .list .price .amount.origin {
	color: #888888;
	text-decoration: line-through;
}
#expenses .list .price .time {
	font-size: 20px;
}
#expenses .list .button {
	display: block;
	width: 100%;
	color: white;
	padding: 15px 0;
	cursor: pointer;
	margin-top: 30px;
	border-radius: 30px;
}
#expenses .list .item:nth-child(2) .button {
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#expenses .list .item:nth-child(3) .button {
	background: #F37A00;
}
#expenses .list .button.free {
	color: rgba(0, 0, 0, 0.5);;
	background: #DEDFE5;
}
#expenses .list .subtitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
#expenses .list .advantage {
	height: 190px;
	margin-top: 40px;
}
#expenses .list .rule {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
#expenses .list .rule .text {
	flex: 1;
	font-size: 16px;
}
#expenses .list .rule:last-child {
	margin-bottom: 0;
}
#expenses .list .rule .icon {
	flex: 1;
	width: 0;
	max-width: 16px;
	height: 16px;
	margin-right: 10px;
}
#expenses .list .detail {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #DEDFE5;
}
@media(max-width: 992px) {
    #expenses .title {
    	font-size: 38px;
    }
    #expenses .list {
    	gap: 20px;
    }
    #expenses .list .item {
    	padding: 20px;
    }
    #expenses .list .tag {
    	font-size: 14px;
    }
    #expenses .list .name {
    	font-size: 18px;
    }
    #expenses .list .introduce {
    	font-size: 16px;
    }
    #expenses .list .price .amount {
    	font-size: 28px;
    }
    #expenses .list .price .time {
    	font-size: 18px;
    }
    #expenses .list .button {
    	font-size: 14px;
    	padding: 10px 0;
    }
}
@media(max-width: 768px) {
	#expenses .title {
		font-size: 32px;
	}
	#expenses .switch .item {
		font-size: 14px;
		padding: 5px 10px;
	}
	#expenses .list {
		gap: 10px;
	}
	#expenses .list .item {
		padding: 15px;
	}
	#expenses .list .tag {
    	font-size: 12px;
    }
	#expenses .list .name {
		font-size: 16px;
	}
	#expenses .list .introduce {
		font-size: 12px;
	}
	#expenses .list .price .amount {
		font-size: 24px;
	}
	#expenses .list .price .time {
		font-size: 16px;
	}
	#expenses .list .button {
		font-size: 12px;
		margin-top: 20px;
	}
	#expenses .list .subtitle {
		font-size: 16px;
		margin-bottom: 10px;
	}
	#expenses .list .detail {
		margin-top: 20px;
		padding-top: 20px;
	}
	#expenses .list .rule .text {
		font-size: 14px;
	}
}
@media(max-width: 576px) {
	#expenses .title {
		font-size: 28px;
	}
	#expenses .switch .item {
		font-size: 14px;
	}
	#expenses .list {
		flex-direction: column;
	}
	#expenses .list .item {
		width: 100%;
	}
}


.ppg-buy-now-btn{
    display: inline-block;
    background: #19cb92;
    border-radius: 29px;
    color: #fff;
    padding: 14px 42px;
    margin: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.ppg-checkout-modal{
    z-index: 99999;
    display: none;
    background-color: transparent;
    border: 0px none transparent;
    visibility: visible;
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.ppg-checkout-modal.ppg-show{
    display: block;
}
.ppg-btn-close{
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 35px;
    background: rgb(0 0 0 / 35%);
    height: 50px;
    width: 50px;
    border: none;
    outline: none;
    cursor: pointer;
}
.ppg-btn-close.ppg-show{
    display: flex;
}
.ppg-btn-close img{
    width: 24px;
}
.ppg-iframe{
    width: 100%;
    height: 100%;
    border: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.ppg-loader {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    border: 5px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: ppg-rotation 1s linear infinite;
}

@keyframes ppg-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}