
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

.pricing-table-wrapper{
	margin: 0;
	padding: 0;
	border: solid 1px #f0f0f0;
	float: left;
}
/* PRICING TABLE
================================*/
.pricing-table{
	width: 210px;
    border: solid 1px silver;
	padding: 0;
	margin: 10px;
	list-style: none;
	float: left;
	position: relative;
	background: #fff;
	position: relative;
	-o-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
.pricing-table li{
	width: 100%;
	float: left;
	color: #444;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	box-sizing:border-box;
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
}

/* PLAN
================================*/
.pricing-table .plan{
	padding: 15px 0;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
    height: 75px;
}

/* PRICE
================================*/
.pricing-table .table-price{
	padding: 5px 15px 10px;
	font-size: 40px;
	font-weight: 400;
	color: #fff;
	background: #666;
}
.pricing-table .table-price .month{
	font-size: 10px;
	float: right;
	width: 100%;
	font-weight: 400;	
	text-transform: uppercase;
}
.pricing-table .table-price .dollar{
	font-size: 14px;
}

/* DETAILS
================================*/
.pricing-table .detail{
	padding: 12px 26px;
	font-size: 13px;
	font-weight: 300;
	position: relative;
	border-bottom: solid 1px #f0f0f0;
}
.pricing-table .detail .first-line{
	float: left;
	width: 100%;
	font-weight: 700;
}
.pricing-table .detail .second-line{
	color: #999;
	font-weight: 400;
}

.pricing-table .signup {
    padding-left: 5px;
    padding-right: 5px;
}

/* HOVER EFFECT / ACTIVE STATE
================================*/
.pricing-table:hover,
.pricing-table.active{
	box-shadow: 0 1px 20px #555;
	/*z-index: 99;*/
}


/* STYLES
================================*/
/* red */
.red .table-price, .red .sign-up a{ background: var(--main-btn-button-color); color: var(--main-btn-text-color); }


/* RESPONSIVE DESIGN
================================*/
@media (max-width: 768px) {
	.pricing-table{
		width: 40%;
	}
}
@media (max-width: 480px) {
    /* PRICING TABLE
================================*/
    .pricing-table {
        width: 45%;
        border: solid 1px silver;
        padding: 0;
        margin: 5px;
        list-style: none;
        float: left;
        position: relative;
        background: #fff;
        position: relative;
        -o-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }

        .pricing-table li {
            width: 100%;
            float: left;
            color: #444;
            font-family: 'Open Sans', sans-serif;
            text-align: center;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        /* PLAN
================================*/
        .pricing-table .plan {
            padding: 5px 0;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            height: 50px;
        }

        /* PRICE
================================*/
        .pricing-table .table-price {
            padding: 5px 15px 10px;
            font-size: 26px;
            font-weight: 400;
            color: #fff;
            background: #666;
        }

            .pricing-table .table-price .month {
                font-size: 10px;
                float: right;
                width: 100%;
                font-weight: 400;
                text-transform: uppercase;
            }

            .pricing-table .table-price .dollar {
                font-size: 12px;
            }

        /* DETAILS
================================*/
        .pricing-table .detail {
            padding: 5px 5px;
            font-size: 12px;
            font-weight: 300;
            position: relative;
            border-bottom: solid 1px #f0f0f0;
        }

            .pricing-table .detail .first-line {
                float: left;
                width: 100%;
                font-weight: 700;
            }

            .pricing-table .detail .second-line {
                color: #999;
                font-weight: 400;
                font-size: 11px;
            }

        .pricing-table .signup {
            padding-left: 5px;
            padding-right: 5px;
        }

    .red .table-price, .red .sign-up a {
        background: var(--main-btn-button-color)
        color: var(--main-btn-text-color);
    }
}

/*Radiobuttons for choosen membership*/

span.radiolistss label {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #D1D3D4
}

/* hide input */
span.radiolistss input:empty {
	margin-left: -2000px;
}

/* style label */
span.radiolistss input:empty ~ label {
	position: relative;
	float: left;
	line-height: 2.5em;
	text-indent: 3.25em;
	margin-top: 2em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

span.radiolistss input:empty ~ label:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	width: 2.5em;
	background: #D1D3D4;
	border-radius: 3px 0 0 3px;
}

/* toggle hover */
span.radiolistss input:hover:not(:checked) ~ label:before {
	content:'\2714';
	text-indent: .0em;
	color: var(--main-btn-button-color);
}

span.radiolistss input:hover:not(:checked) ~ label {
	color: var(--main-btn-button-color);
}

/* toggle on */
span.radiolistss input:checked ~ label:before {
	content:'\2714';
	text-indent: .0em;
	color: var(--main-btn-text-color);
	background-color: var(--main-btn-button-color);
}

span.radiolistss input:checked ~ label {
	color: #777;
}

/* radio focus */
span.radiolistss input:focus ~ label:before {
	box-shadow: 0 0 0 1px black;
}



.addons {
    list-style: none;
}

.addon_price {
    padding: 5px 15px 10px;
    font-size: 30px;
    font-weight: 400;
    color: var(--main-btn-text-color);
    background: var(--main-btn-button-color);
}

.addon_name {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.squaredFour {
    width: 20px;
    position: relative;
    margin: 20px auto;
    padding: 20px;
}

.squaredFour label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: #fcfff4;
    background: -webkit-gradient(linear, left top, left bottom, from(#fcfff4), color-stop(40%, #dfe5d7), to(#b3bead));
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 4px;
    -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.squaredFour label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.squaredFour label:hover::after {
    opacity: 0.5;
}

.squaredFour input[type=checkbox] {
    visibility: hidden;
}

.squaredFour input[type=checkbox]:checked + label:after {
    opacity: 1;
}


