/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .akd-pricing-table {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.6% 31.6% 31.6%;
}
.pricing-plan {
    padding: 46px 30px 44px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 3px 51px 0px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
	border: 1px solid transparent;
	transition: .3s ease-in-out;
    flex-direction: column;
	position: relative;
	overflow: hidden;
}
.pricing-plan:hover {
    border-color: #40BCEB;
    box-shadow: 0px 3px 51px 0px rgba(64.00000000000001, 188.00000000000017, 235, 0.15);
}
.pricing-plan .popular-plan {
    position: absolute;
    left: -40px;
    top: 27px;
    background: #40BCEB;
    padding: 1px 40px 2px;
    transform: rotate(-44deg);
}
.pricing-plan .popular-plan span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
	display: block;
}
.plan-logo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #40BCEB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.plan-name {
    font-size: 24px;
    margin-bottom: 16px;
}
.plan-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
	font-family: "Archivo", sans-serif;
}
.plan-pricing {
    margin-bottom: 20px;
}
.pricing-dropdown {
    width: 100%;
    padding: 8px 34px 8px 14px !important;
    background-position-x: calc(100% - 10px) !important;
}
.free-plan-notice {
    font-size: 18px;
    color: #0073aa;
    font-weight: bold;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 24px;
    text-align: left;
}
.plan-features li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 26px;
}
.plan-features li:last-child{
	margin-bottom: 0;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #000;
    color: #fff;
    border-radius: 100%;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}
.feature-text {
    display: inline-block;
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    line-height: 24px;
}
.choose-plan-btn-outer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choose-plan-btn-outer a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #40BCEB;
    color: #fff;
    gap: 14px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    transition: .3s ease-in-out;
}
.choose-plan-btn-outer a:hover {
    background-color: #000000;
	color: #fff;
	transform: translatey(-8px);
}

@media only screen and (max-width: 1600px) {
	.pricing-plan {
    	padding: 36px 30px;
	}
	.plan-logo {
		width: 80px;
		height: 80px;
		margin: 0 auto 24px;
	}
	.plan-logo img{
		width: 40px;
		object-fit: contain;
	}
	.plan-name {
    	margin-bottom: 14px;
	}
	.plan-desc {
    	margin-bottom: 18px;
	}
	.plan-features li {
    	margin-bottom: 8px;
	}
	.plan-pricing {
    	margin-bottom: 18px;
	}
}
@media only screen and (max-width: 1199px) {
	.akd-pricing-table {
   		gap: 24px;
	}
	.pricing-plan {
        padding: 36px 29px;
    }
}
@media only screen and (max-width: 991px) {
	.akd-pricing-table {
		gap: 21px;
		max-width: 738px;
		margin: 0 auto;
		grid-template-columns: 48.5% 48.5%;
	}
	.akd-pricing-table .pricing-plan:last-child{
		grid-column: 1/-1;
		max-width: 358px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 767px) {
	    .akd-pricing-table {
        	max-width: 100%;
        	grid-template-columns: 100%;
    	}
	    .plan-desc {
        	margin-bottom: 16px;
        	font-size: 14px;
    	}
		.plan-logo {
			width: 70px;
			height: 70px;
			margin: 0 auto 20px;
		}
		.plan-features li {
        	margin-bottom: 6px;
    	}
	    .pricing-plan {
        	padding: 36px 89px;
    	}
	    .akd-pricing-table .pricing-plan:last-child {
        	max-width: 100%;
    	}
	    .plan-logo img {
        	width: 28px;
    	}
}
@media only screen and (max-width: 575px) {
	.pricing-plan {
        	padding: 26px 24px;
    }
	.choose-plan-btn-outer a {
		gap: 10px;
		font-size: 14px;
		padding: 12px 24px;
	}
	.feature-text {
    	font-size: 14px;
    	line-height: 20px;
	}
	.feature-icon {
		width: 14px;
		height: 14px;
    	font-size: 8px;
	}
	.plan-pricing {
        margin-bottom: 14px;
    }
	.plan-features {
    	margin: 0 auto 20px;
	}
	.pricing-dropdown {
		padding: 8px 34px 8px 10px !important;
		font-size: 14px;
	}
	.pricing-plan .popular-plan span {
		font-size: 12px;
		line-height: 20px;
	}
	.pricing-plan .popular-plan {
		left: -37px;
		top: 24px;
		padding: 1px 40px 3px;
	}
}