@import url(https://fonts.googleapis.com/css?family=Oswald:400,700,300);

#order {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}

.breadcrumbs {
    /*centering*/
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: center;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.06);
}

.breadcrumbs a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 15px;
    line-height: 50px;
    font-family: 'Oswald', Arial, serif;
    font-weight: 400;
    color: #cccccc;
    /*need more margin on the left of links to accomodate the numbers*/
    text-align: center;
    width: 33.33339%;
    background: #f7f7f7;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0px 1px 0px #fff;

}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumbs a:first-child {
    border-radius: 2px 0 0 2px; /*to match with the parent's radius*/
}

.breadcrumbs a:first-child:before {
    left: 14px;
}

.breadcrumbs a:last-child {
    border-radius: 0 2px 2px 0; /*this was to prevent glitches on hover*/
}

/*hover/active styles*/
.breadcrumbs a.active, .breadcrumbs a:hover {
    background: #c0dda5;
    color: #467b14;
}

.breadcrumbs a.active:after, .breadcrumbs a:hover:after {
    background: #c0dda5;
    color: #467b14;
}

/*adding the arrows for the breadcrumbss using rotated pseudo elements*/
.breadcrumbs a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -17px; /*half of square's length*/
    /*same dimension as the line-height of .breadcrumbs a */
    width: 45px;
    height: 52px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's:
    length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
    if diagonal required = 1; length = 1/1.414 = 0.707*/
    -webkit-transform: scale(0.900) rotate(46deg);
    -moz-transform: scale(0.900) rotate(46deg);
    -ms-transform: scale(0.900) rotate(46deg);
    -o-transform: scale(0.900) rotate(46deg);
    transform: scale(0.900) rotate(46deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #f7f7f7;
    /*stylish arrow design using box shadow*/
    box-shadow: 1px -1px 0 0px rgba(0, 0, 0, 0.4),
    2px -2px 0 2px rgba(255, 255, 255, 0.1);
    /*
        5px - for rounded arrows and
        50px - to prevent hover glitches on the border created using shadows*/
    border-radius: 0 1px 0 50px;
}

/*we dont need an arrow after the last link*/
.breadcrumbs a:last-child:after {
    content: none;
}

#steps {
    padding: 20px;
    margin-top: 10px;
    width: 730px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    -webkit-box-shadow: 1px 2px 2px #eee, inset 0 0 35px #F8F8F8;
    -khtml-box-shadow: 1px 2px 2px #eee, inset 0 0 35px #f8f8f8;
    -moz-box-shadow: 1px 2px 2px #eee, inset 0 0 35px #f8f8f8;
    -ms-box-shadow: 1px 2px 2px #eee, inset 0 0 35px #f8f8f8;
    -o-box-shadow: 1px 2px 2px #eee, inset 0 0 35px #f8f8f8;
    box-shadow: 1px 2px 2px #eee, inset 0 0 35px #F8F8F8;
    background: #fff;
    border: 1px solid #d9d9d9;
}

#order, #order *, #order:before, #order:after, #order *:before, #order *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#order input {
    color: #757575;
    margin: 0;
    display: inline-block;
    width: 100%;
    max-width: 425px;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    height: 37px;
    padding: 5px 15px 5px 15px;
    -webkit-box-shadow: inset 0px 4px 2px -1px rgba(223, 224, 223, 0.5);
    -moz-box-shadow: inset 0px 4px 2px -1px rgba(223, 224, 223, 0.5);
    box-shadow: inset 2px 4px 2px 0px rgba(223, 224, 223, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#ffffff', GradientType=0);
}

#order input[type='radio'] {
    max-width: 15px;
    display: inline-block;
    height: 15px;
    background: none;
    box-shadow: none;
    margin: 5px 0 0;
    padding: 0;
    vertical-align: top;
}

#order #pay-select {
    width: 100%;
    display: block;
}

#order .radios {
    width: 16px;
    display: inline-block;
    position: absolute;
}

#order .radio-desc span {
    white-space: normal;
    line-height: 20px;
    font-family: Helvetica, Arial, Tahoma;
    padding: 0 10px 10px 10px;
    display: inline-block;
    width: 90%;
    font-size: 14px;
    color: #333;
}

#order .radio-desc {
    display: block;
}

#order .yellow {
    background: #efff3f;
    margin-left: 10px;
}

#order select {
    color: #757575;
    display: inline-block;
    width: 100%;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    padding: 9px;
    margin: 0;
    height: 37px;
    line-height: 37px;
    -webkit-box-shadow: inset 0px 4px 2px -1px rgba(223, 224, 223, 0.5);
    -moz-box-shadow: inset 0px 4px 2px -1px rgba(223, 224, 223, 0.5);
    box-shadow: inset 2px 4px 2px 0px rgba(223, 224, 223, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#ffffff', GradientType=0);
}

#order .green-button a, #order .green-button-big a {
    color: white;
    display: inline-block;
    width: 100%;
    max-width: 425px;
    border: solid #236b0a 1px;
    border-radius: 5px;
    height: 52px;
    line-height: 40px;
    font-size: 22px;
    padding: 5px 15px;
    font-family: 'Oswald', Arial, serif;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    background: #238b00; /* Old browsers */
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#269700), to(#238b00));
    background: -moz-linear-gradient(top, #269700, #238b00);
    background: -ms-linear-gradient(top, #238b00 0%, #269700 100%); /* IE10+ */
    -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#269700, endColorStr=#238b00);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#269700, endColorStr=#238b00);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 2px #b3b3b3, inset 0px 1px 0px 0px #3ea11c;
    -moz-box-shadow: 1px 1px 2px #b3b3b3, inset 0px 1px 0px 0px #3ea11c;
    box-shadow: 1px 1px 2px #b3b3b3, inset 0px 1px 0px 0px #3ea11c;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);

}

#order .green-button a:hover, #order .green-button-big a:hover {
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#238b00), to(#269700));
    background: -moz-linear-gradient(top, #238b00 5%, #269700 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#238b00', endColorstr='#269700');
}

#order .green-button-big a {
    height: 75px !important;
    font-size: 26px;
    line-height: 50px;
    margin: -20px 0 0;
}

#order .green-button-big span {
    font-family: 'Oswald', Arial, serif;
    font-weight: 400;
    color: #155200;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 5px;
}

#order .cards {
    display: inline-block;
    background: url('../img/sprite.png') no-repeat -5px -151px;
    width: 143px;
    height: 24px;
}

#order .cc {
    width: 172px;
}

#order .total {
    color: #999999;
    font-size: 12px;
    font-family: Helvetica, Arial, serif;
    font-weight: 400;
    text-decoration: none;
    margin: -10px 0 0 0;
    display: block;
}

#order .price {
    color: #269700;
    font-family: 'Oswald', Arial, serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    display: block;
    position: relative;
    top: -35px;
    left: 370px;
}

#order .dropdown select {
    max-width: 425px;
    display: inline-block;
    vertical-align: top;
    margin-right: 0 !important;
}

#order input[name=cvv] {
    max-width: 60px !important;
}

#order form .half-size {
    max-width: 208px;
    margin-right: 5px
}

#order form .three-size {
    max-width: 148px;
    margin-right: 5px
}

#order form .eight-size {
    max-width: 50px;
    margin-right: 5px;
    padding-left: 10px;
}

#order form .state-select {
    max-width: 124px;
    margin-right: 5px;
    vertical-align: top;
}

#order form .zip-input {
    max-width: 75px;
}

#order form .seven-size {
    max-width: 90px;
    margin-right: 5px
}

#order form .form-elem {
    margin-bottom: 10px;
}

#steps {
    min-height: 300px
}

#steps .step {
    width: 100%;
}

#order .step .left {
    float: left;
    width: 440px;
    display: block;
    padding-right: 10px;
}

#order .step .right {
    width: 248px;
    float: right;
    padding: 0 0 0 10px;
    border-left: 1px solid #f3f4f6;
    height: auto;
    display: block;
}

#order .step h2 {
    color: #9999a5;
    font-family: 'Oswald', Arial, serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    margin: 15px 0 10px;
    text-align: left;
}

#order .step h2:first-of-type {
    margin-top: 0;
}

#order .step h3 {
    color: #6bb327;
    font-family: 'Oswald', Arial, serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 15px;
    margin: 0;
}

#steps .right .info {
    display: block;
    width: 240px;
    float: left;
    white-space: normal;
}

#steps .info a {
    color: #cccccc;
    font-size: 15px;
    font-family: Helvetica, Arial, serif;
    font-weight: 400;
    text-decoration: underline;
}

#order .verified1 {
    background: url('../img/sprite.png') no-repeat -7px -103px;
    width: 113px;
    height: 45px;
    display: inline-block;
}

#order .verified2 {
    background: url('../img/sprite.png') no-repeat no-repeat -6px -51px;
    width: 114px;
    height: 45px;
    display: inline-block;
    margin-left: 10px;
}

#order .info p {
    width: 245px;
    display: block;
    color: #808080;
    word-wrap: break-word;
    text-align: left;
    font-size: 13px;
    padding: 0 0 0 40px;
    letter-spacing: -0.3pt;
    margin: -7px 0 20px 0;
}

#order .money {
    background: url('../img/sprite.png') no-repeat -4px -2px;
    width: 33px;
    height: 33px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    vertical-align: text-top;
}

#order .shield {
    background: url('../img/sprite.png') no-repeat -114px -3px;
    width: 33px;
    height: 33px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    vertical-align: text-top;
}

#order .lock {
    background: url('../img/sprite.png') no-repeat -41px -3px;
    width: 32px;
    height: 31px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    vertical-align: text-top;
}

#order .support {
    background: url('../img/sprite.png') no-repeat -78px -3px;
    width: 33px;
    height: 42px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    vertical-align: text-top;
}

.loading-wrapper {
    display: none;
    background: url('../img/loading.gif') no-repeat center left;
    padding-left: 27px;
    height: 27px;
    color: #000;
}

.loading-wrapper p {
    margin: 0;
    line-height: 27px;
}

.badges img {
    display: inline-block;
    max-width: 118px;
}

.secure {
    background: #F6F6F6;
    border: 1px solid #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 2px 2px #113767;
    height: 48px;
    margin: 15px 0 0;
    width: 256px;
}

.secure-icon {
    border-right: 1px solid #E1E1E1;
    float: left;
    height: 47px;
    padding: 7px 0 0;
    text-align: center;
    width: 50px;
}

.secure-text {
    color: #111111;
    float: left;
    font-family: "ProximaNova-Regular", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: normal;
    padding: 5px 0 0 13px;
    text-align: left;
    width: 192px;
}

.secure-text span {
    display: block;
    font-weight: bold;
}

.has-error {
	border: 1px solid red !important;
}

.modal-content {
	margin-top: 115px;
}