﻿* {
	box-sizing: border-box;
}

#wrapper {
	background-color: white;
}

#pricing-header {
	background-color: white;
	width: 100%;
	padding-bottom: 6px;
	padding-left: 16px;
	padding-right: 16px;
	text-align: center;
	box-sizing: border-box;
}

#pricing-header > h1 {
	color: black;
}

.pricing-buttons {
	margin-top: 10px;
}

.pricing-button {
    background-color: #99CC33;
    color: white;
	height: 34px;
	line-height: 34px;
    min-width: 190px;
    font-size: 18px;
    margin-top: 6px;
    margin-bottom: 6px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

a.pricing-button {
	color: white;
}

a.pricing-button:hover {
	color: white;
}

a.pricing-button:visited {
	color: white;
}

.pricing-button:disabled {
	background-color: lightgrey;
	color: darkgrey;
	cursor: default;
}

.pricing-button-current {
	background-color: darkgrey !important;
	color: lightgrey !important;
	border: solid 1px #39C;
}


#pricing-block {
    position: relative;
    max-width: 1800px;
    margin: 0 auto 0;
    text-align: center;
	background-color: white;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.pricing-plan {
	height: 700px;

	flex: 1 1 22%;

	margin: 0 10px 30px;

	min-width: 240px;
	max-width: 380px;
	background: #EFEFEF;
	font-size: 13px;
	text-align: left;

	box-sizing: content-box;
}

.pricing-plan-title {
    height: 220px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;	
}

.pricing-plan-title-text {
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    padding: 18px 0 12px;
    text-align: center;
	background-color: #39C;
	margin-bottom: 10px;
}

.pricing-plan-title-text.free {
	background-color: #6C7175;
}

.pricing-plan-title-text.business {
	background-color: #CC291F;
}

.pricing-plan-title-text.icons {
	background-color: #999;
}

.pricing-plan-price {
	height: 34px;
	line-height: 34px;
	font-size: 14px;
}
.pricing-plan-price.free {
	height: 68px;
	line-height: 68px;
	color: #9C3;
	font-size: larger;
}
.pricing-plan-price span {
}
span.usd {
	color: #39C;
}
span.price {
	color: #39C;
	font-size: 24px;
	font-weight: bold;
}


.pricing-plan-button {

}

.features-header {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin-left: 4px;
	margin-bottom: 10px;
	margin-top: 30px;
	
}

.features {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.features li {
	position: relative;
    font-weight: 500;
    line-height: 15px;
    margin-bottom: 11px;
	margin-left: 20px;
	margin-right: 0px;
	margin-top: 0px;
    padding-left: 18px;	
    width: 220px;
}

.features li:before {
	display: block;
	font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px; /*18*/
    height: 12px;
	color: #9C3;
	/*content: '✓';*/
	content: ' ';
	background-image: url("/img/check.png");
}

.features li.not-available:before{
	color: #6C7175;
	/*content: '✗';*/
	background-image: url("/img/x.png");
}

.features li.attribution:before{
	/*content: '\0026A0';*/
	background-image: url("/img/warning.png");
	color: #CC291F;
}

.features li.empty:before{
	content: ' ';
	background-image: none;
	background-color: #EFEFEF;
}

.not-available {
	color: #6C7175;
    text-decoration: line-through;
}

.content-business {
	color: #39C;
	text-align: center;
	margin-left: 0px;
	margin-right: 60px;
}

.content-business > .plus {
	font-size: xx-large;
}

.content-business > .free {
	color: black;
}

.content-custom-icons {
	color: black;
	text-align: justify;
	padding-left: 30px;
	padding-right: 30px;
}

.center {
	text-align: center;
}


.pricing-common-notes {
	text-align: center;
	font-size: 11px;
	padding: 10px;
}

#custom-icons-contact-link {
	cursor: pointer;
}