.tab-btn-contain {
    border: solid 1px #d4d4d4;
    border-radius: 50px;
    display: flex;
    padding: 7px;
	background: #fff;
}
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.tab {
    padding: 7px 25px;
    margin: 0 5px;
    /*border: 2px solid #ccc;*/
    border-radius: 50px;
    cursor: pointer;
    /* background: #f5f5f5;*/
    transition: 0.3s;
}
.tab:hover {
    background: #8e44ad;
    color: #fff;
    border-color: #8e44ad;
}
.tab.active {
    background: #8e44ad;
    color: #fff;
    border-color: #8e44ad;
}
.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.plan {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
   /* width: 300px;*/
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	background: #fff;
}
.plan.best::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #67b241;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
    z-index: 9;
}
.plan h3 {
    margin: 0 0 10px;
}
.price h4{
    font-size: 34px;
	font-weight: 700;
	font-family: "DM Sans", sans-serif;
	margin-bottom: 10px !important;
}
.txt-purple{
	    color: #8e44ad;
}
.txt-green{
	color: #67b241;
}
.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 8px;
}
.discount {
    background: #3498db;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 18px;
	font-weight: 600;
    display: inline-block;
	margin-bottom: 15px;
}
.btn {
    background: linear-gradient(to right, #c94bdb, #a249c2);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
}
ul {
    padding-left: 20px;
    margin-top: 10px;
}
.hidden {
    display: none;
}
.bg-strip {
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 9;
    height: 5px;
    width: 100%;
    display: block;
    z-index: 2;
    border-radius: 5px 5px 0px 0px;
}
.voilet-bg {
    background: rgb(115, 82, 209);
}
.green-bg {
    background: #67b241;
}
.hint-txt {
    font-size: 16px !important;
    color: #666 !important;
	padding-bottom: 15px;
}
.pricing-plan-card-body ul {
    margin: 0;
    padding: 0;
}
.pricing-plan-card-body li {
    list-style: none;
}
.pricing-plan-card-body ul li {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #2e2e2e;
    padding: 15px 30px 15px 50px;
    line-height: 20px;
    position: relative;
}
.pricing-plan-card-body ul li::before {
    content: "";
    background: url("../img/icon/check2.svg") no-repeat 0 0;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 15px;
    left: 10px;
}
.pricing-plan-card-body ul .unchecked::before {
    background: url("../img/icon/unchecked.svg") no-repeat 0 0;
}
