/*Pricing Plans Styles*/
#top .pricing-plans-area {
    margin-top: 50px;
}
#top .pricing-plans-area .monthly-yearly-btns {
    border: 0;
    margin: auto;
    width: fit-content;
    background: #f7f7fc;
    border-radius: 50px;
    margin-bottom: 50px;
}
#top .pricing-plans-area .monthly-yearly-btns .toggle-btn {
    font-size: 14px;
    color: #222230;
    font-weight: 500;
    display: inline-block;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    margin: 0;
    padding: 6px;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    min-width: 150px;
}
#top .pricing-plans-area .monthly-yearly-btns .toggle-btn.active {
    background: #0e72ed;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    color: #fff;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    border-radius: 44px;
}
#top .row {
	display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.row>* {
    width: 100%;
    max-width: 100%;
}
#top .col {
	padding: 0 10px;
}
#top .pricing-plan {
	color: rgba(49, 51, 60, 0.8);
    border: 1px solid #babacc;
    border-radius: 14px;
    padding: 35px 20px;
    position: relative;
    margin-bottom: 20px;
}
#top .pricing-plan .plan-type {
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(82,82,128,.8);
    margin-bottom: 13px;
}
#top .pricing-plan .plan-amount {
	color: #222230;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
}
#top .pricing-plan.basic .plan-button a, #top .pricing-plan.enterprise .plan-button a {
    color: #808083;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #bebfc0;
    border-radius: 50px;
    padding: 15px 40px;
    margin-bottom: 25px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
#top .pricing-plan.pro .plan-button a, #top .pricing-plan.business .plan-button a, #top .pricing-plan.business-pro .plan-button a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background-color: #007bff;
    border-color: #007bff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 15px 40px;
    margin-bottom: 25px;
    text-align: center;    
    line-height: 1;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}
#top .pricing-plan.pro .plan-button a:hover, #top .pricing-plan.business .plan-button a:hover, #top .pricing-plan.business-pro .plan-button a:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
#top .pricing-plan.basic .plan-button a:active, #top .pricing-plan.basic .plan-button a:hover, #top .pricing-plan.enterprise .plan-button a:hover  {
    color: #ffffff;
    background: #5d1c61;
    border-color: #5d1c61;
}
#top .plan-content ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    margin-bottom: 8px;
}
#top .plan-content ul li:before {
    content: "\f058";
    color: #90e290;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    padding-right: 12px;
    vertical-align: middle;
}
#top .pricing-plan .save-amount {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    color: #268543;
    text-transform: uppercase;
    display: none;
}
#top .pricing-plan.pro .plan-type, #top .pricing-plan.business .plan-type, #top .pricing-plan.business-pro .plan-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top .pricing-plan .plan-amount sup, #top .pricing-plan .plan-amount sub {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}
#top .pricing-plan .plan-amount sup {
    vertical-align: top;
}
#top .pricing-plan .plan-amount sub {
    vertical-align: middle;
}
#top .pricing-plan.pro .plan-amount .yearly {
    display: none;
}
#top .business.active {
    border: 2px solid #0e72ed;
}
#top .business .best-value {
    position: absolute;
    left: 0;
    top: 0px;
    background: linear-gradient(90deg,#0957b4 2.83%,#1b8180 53.58%,#19883d 97.64%);
    border-radius: 12px 12px 0 0;
    width: -webkit-fill-available;
    text-align: center;
    height: 23px;
    font-size: 12px;
    color: #fff;
    padding-top: 3px;
}
#top .pricing-plan .yearly-amount {
    display: none;
}
#top .plan-amount .yearly {
    display: none;
}
@media (min-width: 576px){
	#top .col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}
@media (min-width: 768px) {
	#top .col-md-4 {
	    flex: 0 0 auto;
	    width: 33.33333333%;
	}	
}
