/*
 * styling for Reconyx cart
 */

/** editable cart **/

.no-cart-items {
    font-size: 16px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}

/** addresses **/

.sky-form select:disabled {
    background: #eee;
    color: #888;
}

/** receipt **/

 .item-list .child-items {
    margin-left: 25px;
    font-style: italic;
    margin-bottom: 0;
 }

 .table-heading {
    background: #f5f5f5;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Open Sans', Arial, sans-serif;
 }

 .table.order-summary td {
    border-style: none;
    padding: 4px;
 }

 .table .grand-total td {
    border-top: 1px solid #ddd;
 }

/* styling for shopping cart rows - overrides shop.style.css */
.shopping-cart .product-it-in {
    align-items: center; 
    justify-content: center;
 }

 .shopping-cart .product-in-table img {
    padding:2px 0 0 0;
 }

 .shopping-cart .table > thead > tr > th, .shopping-cart .table > tbody > tr > td {
    padding: 8px; /* overrides 15px */
 }
/* END styling for shopping cart rows - overrides shop.style.css */

/* cart row delete item button */
.shopping-cart button.close {
    font-size:1.6em;
    margin-top:-2px
}
/* END cart row delete item button */

/* cart items layout */
div.cart-item:nth-of-type(even) {
    background: #f9f9f9;
}
div.cart-item:last-of-type {
    border-bottom:1px solid #eee;
}
div.cart-item, div.cart-item-header {
    padding:8px;
    border-top:1px solid #eee;
    border-left:1px solid #eee;
    border-right:1px solid #eee;
}
/* END cart items layout */

/* styling for receipt - overrides shop.style.css */
 .receipt .product-in-table span {
    display:block;
    margin-left: 25px;
    font-style: italic;
    margin-bottom: 0;
 }
 /* END styling for receipt - overrides shop.style.css */

/* override shop.style.css for shipping table in shopping cart */
.shopping-cart .shipping .table > thead > tr > th, .shopping-cart .shipping .table > tbody > tr > td {
    text-align:left;
}

/* override custom-jquery.steps.css */
.wizard > .content > .body .input-small-field input {
    min-width: 65px;
}

/* auth.net styling does not highlight error fields well enough. Add some styling of our own */
.state-error input {
    background-color: #fff0f0;
} 

#authnet input {
    border:1px solid grey;
}
#card-type > li > i {
    padding : 4px;
}

/* Accessibility-specific styling */

/* Allow room for link outline to show */
.product-it-in a {
    display: inline-block;
    height: 85%;
    position: relative;
    top: 3px;
}
.wizard > .steps {
    top: 3px;
}
.wizard > .steps > ul > li:first-child {
    left: 3px;
}
.wizard > .actions > ul {
    position: relative;
    right: 3px;
}