/* 
    Document   : dark-blue.css
    Version    : 1.0
    Author     : hogo82
*/


/* Single plan */
.red .plan {
    background: rgb(252, 252, 252);
}

/* Style plan name field */
.red .top-name {
    text-shadow: 2px 1px 1px rgb(255, 255, 255);  
}

/* Style plan name text */
.red .top-name h2 {
    color: rgb(70, 70, 70);
}

/* Style price field */
.red .top-price {
    border-top: 1px solid rgba(186,1,0,1);
    text-shadow: 2px 2px 5px rgb(107, 1, 0);
    /*Gradient*/
    background: rgb(237,38,35); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(237,38,35,1) 0%, rgba(186,1,0,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,38,35,1)), color-stop(100%,rgba(186,1,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed2623', endColorstr='#ba0100',GradientType=0 ); /* IE6-9 */
    /*End of Gradient*/
}

/* Style price text */
.red h1 {
    color:white;
}

.red p {
    text-shadow: 2px 2px 3px rgb(107, 1, 0);
    color: rgb(252, 226, 226);
}

/* The button */

.red .button {
    color: #fff;
    text-shadow: 1px 2px 2px rgb(107, 1, 0);
    border: 1px solid rgba(186,1,0,1);
    /*Gradient*/
    background: rgb(237,38,35); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(237,38,35,1) 0%, rgba(186,1,0,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,38,35,1)), color-stop(100%,rgba(186,1,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(237,38,35,1) 0%,rgba(186,1,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed2623', endColorstr='#ba0100',GradientType=0 ); /* IE6-9 */
    /*End of Gradient*/
}

.red .button:hover {
    /*Hover Gradient*/
    background: rgb(240,82,80); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(240,82,80,1) 0%, rgba(250,0,0,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(240,82,80,1)), color-stop(100%,rgba(250,0,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(240,82,80,1) 0%,rgba(250,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(240,82,80,1) 0%,rgba(250,0,0,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(240,82,80,1) 0%,rgba(250,0,0,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(240,82,80,1) 0%,rgba(250,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f05250', endColorstr='#fa0000',GradientType=0 ); /* IE6-9 */
    /*End of Hover Gradient */
}

/* Smartphones (portrait and landscape) */ 
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
	.red h1,.red p {
    color:#333;
	}
	.red .button {
	background:#000;
	}
}

