
Digital Masterminds
PLANS
.btn-inline .et_pb_button_module_wrapper {
display: inline-block;
margin: 0 5px;
}
.btn-inline {
text-align: center !important;
}
.btn-inline2 .et_pb_button_module_wrapper {
display: inline-block;
margin-right: 25px;
}
#main-menu2 .et_pb_column {
margin-bottom: 0px;
}
.animate-gradient {
background-size: 400% 400%;
animation: gradient 5s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.pricing-item-cursor {
cursor: pointer;
}
.hide-section-2 {
display: none;
}
.active-pricing-plan {
color: #6b63dd !important;
background-color: #fff;
}
jQuery(function($){
$('#pricing-plan-item-1').addClass('active-pricing-plan');
$('[id*="pricing-plan-item"]').click(function() {
var selector = $(this).attr('id').replace('-plan-item', '');
var $pricingselect = $('#' + selector);
$pricingselect.show().siblings().hide();
$('#toggle-section').show();
$('#dd-header').show();
$('#dd-welcome').show();
$('#dd-video').show();
$('#dd-video-mobile').show();
$('#dd-seo').show();
$('#dd-website').show();
$('#dd-tune').show();
$('#dd-rocket').show();
$('#dd-hashtag').show();
$('#dd-iphone').show();
$('#dd-also').show();
$('#dd-blurbs').show();
$('[id*="pricing-plan"]').removeClass("active-pricing-plan");
$(this).addClass('active-pricing-plan');
});
});