/* === Credit Card === */
.credit-card {
    display:block;
    position:relative;
    width:50.75%;   /* This is 300px on 320px wide screen */
    max-width:600px;    /* Just to make sure that it doesnt get crazy on bg screens */
    min-width:300px;    /* And make sure that it contains at least some size */
    margin:30px auto;
    padding:20px;
    overflow:hidden;
    border-radius:6px;
    z-index:1;
}

.credit-card .inputs {
    list-style:none;
    margin-top:10px;
}

.credit-card .inputs li {
    margin-bottom:10px;
}

.credit-card .inputs li.last {
    margin-bottom:10px;
}

.credit-card .inputs li.expire {
    float:right;
    width:65%;
   
	direction:ltr;
}

.credit-card .inputs li.expire input{
    float:right;
	margin-right:5px;
    width:15%;
    height: 13px;
}

.credit-card .inputs li.expire input.month{
    width:60%;
    margin-right:5%;
}

.credit-card .inputs li.cvc-code {
    float:left;
    width:23%;
}

.credit-card .inputs li.cvc-code input {
    width:100%;
}

.credit-card .watermark {
    position:absolute;
    z-index:10;
}

.credit-card form {
    position:relative;
    z-index:50;
}

.credit-card .logo {
    position:absolute;
    top:10px; 
    right:20px;
    text-transform:uppercase;
    font-weight:bold;
	font-size: 10px;
}
/* === Visa === */
.visa {
    color:#fff;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.8), inset 0px 1px 3px rgba(255,255,255,0.3), inset 0px 0px 2px rgba(255,255,255,0.2);
}

.visa h2 {
    text-shadow:1px 1px 2px rgba(17,121,173,0.8);
}

.visa .logo {
    color:rgba(255,255,255,0.9);
    font-size:2em;
    font-style:italic;
    text-shadow:0px 0px 3px rgba(17,123,173,0.9);
}

.visa .logo:after {
/*
    content:' ';
    position:absolute;
    left:0px;
    top:5px;
    width: 0;
    height: 0;
    border-top: 10px solid orange;
    border-left: 10px solid transparent;
*/
}

.visa .watermark {
    bottom:90px;
    left:10px;
    color:rgba(255,255,255,0.06);
    font-size:14em;
    font-weight:bold;
    font-style:italic;
}
/* === Forms === */
.credit_label {
    display:block;
    margin-bottom:3px;
 	margin-left:10px; 
/*     color:rgba(255,255,255,0.6); */
    text-transform:uppercase;
    font-size:1.1em;
    font-weight:bold;
	color:#FFFFFF;
	font-size:16px;
    text-shadow:1px 1px 2px rgba(255, 250, 255, 1);
	direction: rtl;
	text-align: right;
}
.credit_input {
 height: 13px;
    display:block;
    padding:9px 5px;
    color:#999;
    font-size:1.2em;
    font-weight:bold;
    text-shadow:1px  1px 1px #fff;
    border:1px solid rgba(16,103,133,0.6);
    box-shadow:0px 0px 3px rgba(255,255,255,0.5), inset 0px 1px 4px rgba(0,0,0,0.2);
    border-radius:3px;
    float:left;
   
}

.credit_input.full {
   width:35%;
    height: 13px;
    
}


/* === Gradients === */
.gr-visa {
	border: 1px solid #FFFFFF;
    background: #F37021; /* Old browsers */
    background: -moz-linear-gradient(top,  #F37021 0%, #F37021 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F37021), color-stop(100%,#F37021)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #F37021 0%,#F37021 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #F37021 0%,#F37021 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #F37021 0%,#F37021 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #F37021 0%,#F37021 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F37021', endColorstr='#F37021',GradientType=0 ); /* IE6-9 */
}
.gr-input {

	
    background: #d3d3d3; /* Old browsers */
    background: -moz-linear-gradient(top,  #d3d3d3 0%, #d9d9d9 38%, #e5e5e5 82%, #e7e7e7 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d3d3d3), color-stop(38%,#d9d9d9), color-stop(82%,#e5e5e5), color-stop(100%,#e7e7e7)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #d3d3d3 0%,#d9d9d9 38%,#e5e5e5 82%,#e7e7e7 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #d3d3d3 0%,#d9d9d9 38%,#e5e5e5 82%,#e7e7e7 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #d3d3d3 0%,#d9d9d9 38%,#e5e5e5 82%,#e7e7e7 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #d3d3d3 0%,#d9d9d9 38%,#e5e5e5 82%,#e7e7e7 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3d3d3', endColorstr='#e7e7e7',GradientType=0 ); /* IE6-9 */
	margin:3px;
}
.gr-input:after{
	content: '-';
	position:absolute;
    left:0px;
    top:5px;
    width: 0;
    height: 0;
    border-top: 10px solid orange;
    border-left: 10px solid transparent;
}

.orange_button {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange_button:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange_button:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

.blue_button {
	width:100px;
	height:30px;
	color: #616060;/*000000*/
	border: solid 1px #F37021;
	background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#D0D1D1), color-stop(0.27,#ffffff), color-stop(0.100, #B1B1B1));
	background-image: -moz-linear-gradient(#D0D1D1 0%, #ffffff 27%, #B1B1B1 100%);
	background-image: -o-linear-gradient(#D0D1D1 0%, #ffffff 27%, #B1B1B1 100%);
	background-image: -ms-linear-gradient(#D0D1D1 0%, #ffffff 27%, #B1B1B1 100%);
	background-image: linear-gradient(#D0D1D1 0%, #ffffff 27%, #B1B1B1 100%);	
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue_button:hover {
	background-color: #F37021;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#F7921E), color-stop(0.27,#ffffff), color-stop(0.100, #F37021));
	background-image: -moz-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: -o-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: -ms-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);	
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.blue_button:active {
	background-color: #F37021;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#F7921E), color-stop(0.27,#ffffff), color-stop(0.100, #F37021));
	background-image: -moz-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: -o-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: -ms-linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);
	background-image: linear-gradient(#F7921E 0%, #ffffff 27%, #F37021 100%);	
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}

.white_button {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white_button:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white_button:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}


li.button_credite input{
    margin-top:25px;

    width:23%;
    
   
}

li.button_credite {
    width:90%;

}
