/* ********************************************* */
/*           PRICING TABLE STYLES                */
/* ********************************************* */

/* ****************************** */
/* Table areas (Applies to ALL)   */
/* ****************************** */

/* Table */
.et_pb_pricing_table {
	transition: 0.5s all;
}

/* Apply general effects */
.et_pb_pricing.dh_round .et_pb_pricing_table {
	border-radius: 20px;
}

.et_pb_pricing.dh_round .et_pb_pricing_heading {
    border-radius: 20px 20px 0 0;
}

.et_pb_pricing.dh_rounded .et_pb_pricing_table {
	border-radius: 4px;
}

.et_pb_pricing.dh_rounded .et_pb_pricing_heading {
    border-radius: 4px 4px 0 0;
}

.et_pb_pricing.dh_boxshadow .et_pb_pricing_table {
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
}

.et_pb_pricing.dh_boxshadow_hover .et_pb_pricing_table:hover {
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.1); 
}
.et_pb_pricing.dh_boxshadow_hover .et_pb_featured_table:hover {
	box-shadow: 0 0 10px 5px rgba(0,0,0,0.1); 
}

/* Make the tables rise slightly on hover if 'dh_movetable_hover' class applied */
/* Need a different margin placement for normal and featured tables */
.et_pb_pricing.dh_movetable_hover .et_pb_pricing_table:hover {
	margin: 25px -1px 5px 0;
}


/* Amount */
span.et_pb_sum {
    padding-left: 5px;
}

/* Individual items bullets in before area */
ul.et_pb_pricing li span:before {
	font-family: "ETmodules" !important;
    content: "\4e";
    background-color: #3FD300;
    border: none;
    top: 2px;
    left: -26px;
    color: white;
    border-radius: 50%;
    line-height: 1;
}

/* Individual pricing items (when unavailable) */
ul.et_pb_pricing li.et_pb_not_available {
	text-decoration: line-through;
}

/* Individual items (when unavailable) bullets in before area */
ul.et_pb_pricing li.et_pb_not_available span:before {
	font-family: "ETmodules" !important;
    content: "\4d";
    background-color: transparent;
    border: none;
    top: -2px;
    left: -30px;
    font-size: 22px;
    color: red;
}

/* ********************************************* */
/*           PRICING TABLE STYLE 1               */
/* ********************************************* */

/* Full pricing table selector */
.dh_pricing_table_style1 {
	margin-bottom: 100px!important;
}

/* Standard table selector */
.dh_pricing_table_style1 .et_pb_pricing_table {
	transition: 0.5s all;
	margin-top: 80px!important;
	transition: 0.5s all;
    position: relative;
    margin: 30px -1px 0 0;
    padding-bottom: 30px;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}


.dh_pricing_table_style1 .et_pb_et_price {
	transition: 0.5s all;
    display: inline-block;
    background: #cc0033;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	padding-top: 45px;
}

.dh_pricing_table_style1 .et_pb_pricing_table:hover .et_pb_pricing_content_top {
    transform: scale(1.1);
}

.dh_pricing_table_style1 .et_pb_pricing_content_top {
	transition: 0.5s all;
    position: absolute;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: none;
    top: -72px;
    max-width: 140px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}

.dh_pricing_table_style1 .et_pb_pricing_content_top:after {
	transition: 0.5s all;
    content: "";
    display: block;
    padding-top: 100%;
    width: 100%;
}


.dh_pricing_table_style1 .et_pb_pricing_heading {
	transition: 0.5s all;
	padding: 83px 0 20px;
    border-bottom: 1px solid #eee;
    margin: 10px;
    background-color: rgba(0,0,0,0);
}

.dh_pricing_table_style1 .et_pb_frequency {
position: absolute;
    top: 90px;
    left: 46px;
}

/* ********************************************* */
/*           PRICING TABLE STYLE 2               */
/* ********************************************* */

/* Remove bullet as we're using an image that isn't a list item */
.dh_pricing_table_style2 ul.et_pb_pricing li:first-of-type span:before {
	content: none;
}

/* Full pricing table selector */
.dh_pricing_table_style2 {
	margin-bottom: 100px!important;
}

/* Standard table selector */
.dh_pricing_table_style2 .et_pb_pricing_table {
	transition: 0.5s all;
    position: relative;
    margin: 30px -1px 0 0;
    padding-bottom: 30px;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/* Zoom content on hovering */
.dh_pricing_table_style2 .et_pb_pricing_table:hover  {
    transform: scale(1.02);
}

.dh_pricing_table_style2 .et_pb_pricing_content_top {
	transition: 0.5s all;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin: 0 10px;
}

.dh_pricing_table_style2 .et_pb_pricing_content_top:after {
	transition: 0.5s all;
    content: "";
    display: block;
}

.dh_pricing_table_style2 .et_pb_pricing_heading {
	transition: 0.5s all;
	border-style: solid;
    border-width: 0px 50px 25px 50px;
    border-color: transparent transparent #fff transparent;
    padding: 20px 0;
}

/* Center the image included in the content */
.dh_pricing_table_style2 .dh_pricing_table_style2_img {
    width: 100%;
    margin-left: -8px;
	border-radius: 10px;
}


/* ********************************************* */
/*           PRICING TABLE STYLE 3               */
/* ********************************************* */

/* Remove bullet as we're using an image that isn't a list item */
.dh_pricing_table_style3 ul.et_pb_pricing li:first-of-type span:before {
	content: none;
}

/* Full pricing table selector */
.dh_pricing_table_style3 {
	margin-bottom: 100px!important;
}

.dh_pricing_table_style3 .et_pb_pricing_content_top:after {
	transition: 0.5s all;
    content: "";
    display: block;
}


.dh_pricing_table_style3 .et_pb_pricing_table {
	transition: 0.5s all;
    position: relative;
    margin: 30px -1px 0 0;
    padding-bottom: 30px;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.dh_pricing_table_style3 .et_pb_pricing_heading {
	transition: 0.5s all;
	padding: 150px 0 20px;
}

/* Set style for background image applied by JQuery */
.dh_pricing_table_style3 .et_pb_pricing_heading {
	background-size: cover;
	background-position: center;
}

/* Hide the original image */
.dh_pricing_table_style3 .dh_pricing_table_style3_img {
	display:none;
}

.dh_pricing_table_style3 .et_pb_pricing_heading h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 0;
}

.dh_pricing_table_style3 .et_pb_pricing_content_top {
	margin: 30px 0 -32px 0;
    padding-bottom: 20px;
}

.dh_pricing_table_style3 .et_pb_dollar_sign {
	position: absolute!important;
    top: -20px!important;
    margin: auto!important;
}


/* ********************************************* */
/*           PRICING TABLE STYLE 4               */
/* ********************************************* */

.dh_pricing_table_style4 ul.et_pb_pricing li:first-of-type span:before {
	content: none;
}

/* Full pricing table selector */
.dh_pricing_table_style4 {
	margin-bottom: 100px!important;
}

/* Standard table selector */
.dh_pricing_table_style4 .et_pb_pricing_table {
	transition: 0.5s all;
}

.dh_pricing_table_style4 .et_pb_pricing_table:hover  {
    transform: scale(1.02);
}

.dh_pricing_table_style4 .et_pb_pricing_content_top {
	transition: 0.5s all;
	margin: 30px 0 -32px 0;
    padding-bottom: 20px;

}

.dh_pricing_table_style4 .et_pb_pricing_content {
	margin-top: 30px;
}

.dh_pricing_table_style4 .et_pb_pricing_content_top:after {
	transition: 0.5s all;
    content: "";
    display: block;

}

.dh_pricing_table_style4 .et_pb_pricing_table {
	transition: 0.5s all;
    position: relative;
	margin-top: 50px!important;
    padding-bottom: 30px;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.dh_pricing_table_style4 .et_pb_pricing_heading {
	transition: 0.5s all;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    border-radius: 50% 10px 50% 0!important;
    margin-top: -44px;
}

.dh_pricing_table_style4 .et_pb_pricing_heading h2 {
	background: transparent!important;
}


.dh_pricing_table_style4 .et_pb_dollar_sign {
	position: absolute!important;
    top: -20px!important;
    margin: auto!important;
}


