.page-cart h1{
    border-bottom: 3px solid #F3F0EB;
}
.page-cart ul{
    list-style: none;
    padding: 0;
}
.page-cart .order_products {
    border:5px solid #d9d9d9;
    padding:10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom:20px;
    font-size: 1.2em;
}
.page-cart .order_products table thead tr td {
    padding:0 20px 0 20px;
    text-align: center;
}

.page-cart  .order_products table tbody tr td {
    vertical-align:top;
    padding:20px;
}

.page-cart .order_products .plus, .page-cart .order_products .minus {
    font-size:20px;
    font-weight:bold;
    color:#1a477d;
    background-color: transparent;
    cursor: pointer;
}

.page-cart .order_products input.count {
    border:1px solid #90b3c9;
    border-bottom-color:#e5f2f9;
    width:28px;
    height:25px;
    font-weight:bold;
    text-align:center;
    padding:3px;
    margin:0 5px 0 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.page-cart .order_products .price {
    font-weight: bold;
    font-size: 18px;
}
.page-cart .order_products table tbody tr td {
    /*border-bottom:1px solid silver;*/
    text-align: center;
}
.page-cart .order_products table tbody tr td small{
    font-size: 0.8em;
}
.page-cart .order_products table tbody tr td.product-name{
    text-align: left;
    padding-left: 0;
}
.page-cart .order_products table tbody tr.accessory th, .page-cart .order_products table tbody tr.accessory td{
    border: 0px;
    text-align: left;
    font-size: 0.8em;
    padding: 0px;
}
.page-cart .order_products table tbody tr.accessory.last td{
    padding-bottom: 20px;
}
.page-cart .order_products table tbody tr.accessory td.product-name a{
    color: #000000;
}
.page-cart .order_products table tbody tr.accessory td.product-price{
    text-align: center;
}
.page-cart .order_products table tbody tr.accessory td.product-price span{
    background-color: #E9E9E9;
    border-radius: 3px;
    padding: 1px 5px;
    min-width: 50px;
    display: inline-block;
}
.page-cart .order_products table tbody tr.accessory td.product-price input{
    border-radius: 2px;
    border: 1px solid #04B0E9;
    background-color: #5dc6e9;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#5dc6e9 17%), to(#0ebbf3));
    background-image: -webkit-linear-gradient(top, #5dc6e9 17%, #0ebbf3 66%, #5dc6e9);
    background-image: -moz-linear-gradient(top, #5dc6e9 17%, #0ebbf3 66%, #5dc6e9);
    background-image: -o-linear-gradient(top, #5dc6e9 17%, #0ebbf3 66%, #5dc6e9);
    background-image: -ms-linear-gradient(top, #5dc6e9 17%, #0ebbf3 66%, #5dc6e9);
    background-image: linear-gradient(to bottom, #5dc6e9 17%, #0ebbf3 66%, #5dc6e9);

    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    padding: 1px 5px;
    margin: 1px;

    font-size: 0.8em;
}
.page-cart .order_products table tbody tr.accessory td.product-price input:hover{
    background-color: #04b0e9;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#04b0e9 63%), to(#0ebbf3));
    background-image: -webkit-linear-gradient(top, #04b0e9 33%, #0ebbf3 83%, #04b0e9);
    background-image: -moz-linear-gradient(top, #04b0e9 33%, #0ebbf3 83%, #04b0e9);
    background-image: -o-linear-gradient(top, #04b0e9 33%, #0ebbf3 83%, #04b0e9);
    background-image: -ms-linear-gradient(top, #04b0e9 33%, #0ebbf3 83%, #04b0e9);
    background-image: linear-gradient(to bottom, #04b0e9 33%, #0ebbf3 83%, #04b0e9);
}
.page-cart .order_products table tbody tr td.delimeter{
    border-bottom: 1px solid #c0c0c0;
    padding: 0;
}
.page-cart .order_products table tbody tr.total td{
    border-bottom: none;
    padding: 10px 10px 5px;
}
.page-cart .discount-box{
    text-align: left !important;
    position: relative;
}
.page-cart .discount-box .coupon-link {
    display: inline-block;
    position: relative;
}
.page-cart .discount-box .coupon-link b{
    color: #1a477d;
    width: auto;
    display: inline;
    font-size: 1em;
}
.page-cart .discount-box .coupon-code {
    background-color: #f0f0f0;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.35);
    padding: 5px 8px;
    position: absolute;
    top: 200%;
    left: 50%;
    margin: 8px 0 0 -120px;
    opacity: 0;
    visibility: hidden;
    transition:all 0.2s ease 0.2s;
}
.page-cart .discount-box .coupon-link a{
    text-decoration: none;
    border-bottom: 1px dotted #349fe3;
}
.page-cart .discount-box .coupon-link.active .coupon-code{
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.page-cart .discount-box .coupon-code:before {
    border-color: transparent transparent #d9d9d9;
    border-style: solid;
    border-width: 0 9px 9px;
    content: "";
    display: inline-block;
    height: 2px;
    left: 50%;
    margin-left: -7px;
    margin-top: -12px;
    position: absolute;
    top: 0;
    width: 0;
}
.page-cart .discount-box .coupon-code:after {
    border-color: transparent transparent #f0f0f0;
    border-style: solid;
    border-width: 0 8px 8px;
    content: "";
    display: inline-block;
    height: 2px;
    left: 50%;
    margin-left: -6px;
    margin-top: -10px;
    position: absolute;
    top: 0;
    width: 0;
}
.page-cart .discount-box .coupon-code .coupon-input {
    background-color: #1a477d;
    border: 2px solid #1a477d;
    border-radius: 4px;
    font-size: 1.2em;
    position: relative;
}
.page-cart .discount-box .coupon-code .coupon-input input[type="text"] {
    border: medium none;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    font-size: 1.1em;
    margin: 0 80px 0 0;
    padding: 3px 5px;
    width: 140px;
}
.page-cart .discount-box .coupon-code .coupon-input input[type="submit"] {
    background-color: transparent;
    background-image: none;
    border: none;
    box-shadow: none;
    padding: 0;
    bottom: 0;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
}
.order_products .total .order-line span{
    /*width: 100px;*/
    text-align: right;
    display: block;
    font-size:18px;
    color:#000;
}
.order_products .total .order-line b{
    width: 100px;
    text-align: center;
    display: inline-block;
    font-size:24px;
    font-weight:bold;
    color:#000;
}
.page-cart .remove{
/*    display: none;*/
}
.page-cart tr .remove{
    display: block;
    background: url(../images/sprite.png) no-repeat -5px -82px;
    width: 15px;
    height: 15px;
    text-decoration: none;
    display: block;
}
.page-cart tr:hover .remove:hover{
    background-position: -5px -104px;
}

.page-cart .new-product{
}
.page-cart .new-product.hide{
    display: none;
}
.page-cart .new-product .w-input{
    font-size: 1em;
}
.page-cart .new-product .w-input input, .page-cart .new-product .w-input label{
    font-size: 1em;
}
.page-cart .link-add-product td{
    text-align: left !important;
}
.page-cart .link-add-product.hide{
    display: none;
}

.order_data .left{
    float: left;
    width: 49%;
}
.order_data .delivery li{
    padding: 5px;
    border-radius: 5px;
}
.order_data .delivery li.active{
    background: #f3f6ff;
    border: 1px solid #83DEFC;
}
.order_data .delivery li.active label span{
    /*text-decoration: underline;*/
}
.order_data .delivery li p{
    padding: 0 5px 0 20px;
}
.order_data .payment li{
    padding: 5px;
    border-radius: 5px;
}
.order_data .payment li.active{
    background: #f3f6ff;
    border: 1px solid #83DEFC;
}
.order_data .payment li.active label span{
    /*text-decoration: underline;*/
}
.order_data .payment li p{
    padding: 0 5px 0 20px;
}

.order_data .user_data{
    float: right;
    width: 49%;
}
.order_data .user_data .form {
    margin-bottom: 15px;
}
.delivery label, .payment label{
    font-size: 18px;
}
.delivery label span, .payment label span{
    color: #349FE3;
    cursor: pointer;
}
.delivery label span:hover, .payment label span:hover{
    text-decoration: underline;
}
.delivery-configuration{
    padding-bottom: 10px;
}
.delivery-configuration label{
    padding-right: 10px;
    display: inline-block;
    text-align: left;
}
.delivery-configuration input, .delivery-configuration select{
    background-color: #FFFFFF;
    position: relative;
    display: inline-block;
    border: 2px solid #02AEE7;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 rgba(255, 255, 255, 0.65);
    font-size: 1.2em;
    -moz-user-select:-moz-none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    user-select:none;
    font-size: 1.2em;
    padding: 5px;
    height: auto;
}
#cart-form{
    position: relative;
    z-index: 1;
}
#cart-form .loader
{
    position: absolute;
    left:0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../images/loader.gif") center no-repeat;
    z-index: 100;
}
#cart-form .loader:after
{
    content: "";
    position: absolute;
    left:0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background: url("../images/loader.gif") center no-repeat #FFFFFF;
    z-index: 99;
}
.total-price{
/*    float: right;*/
    font-size:24px;
}
.total-price input[type="submit"]{
    font-size: 24px;
    line-height: 28px;
    padding: 5px 15px;
}

#cartRegionSwitcher{
    height: 28px;
    line-height: 28px;
}
#cartRegionSwitcher .region-switcher-link{
    font-size: 1.2em;
}

/*****/
.order-view{
    margin: 5px 0;
}
h2.order-title small{
    font-weight: normal;
    font-size: 0.7em;
    color: #9A9A9A;
}


.order-view .order-info{
    border: 5px solid #D9D9D9;
    border-radius: 5px;
    padding: 5px;
}
.order-products{
    width: 100%;
}
.order-view s, .order-view i{
    color: #d1d0d0;
}
.order-view .order-products td{
    vertical-align: top;
    border-bottom: 1px solid silver;
    padding: 3px;
}
.order-view .order-products td.product-image{
    width: 70px;
}
.order-view .order-products td.product-name{
    font-size: 1.2em;
}
.order-view .order-products td.product-count{
    width:200px;
    text-align: right;
}
.order-view .order-products td.product-price{
    width:100px;
    text-align: right;
}
.order-view .order-total{
    float: right;
    text-align: right;
}
.order-view .order-total table{
    width: 100%;
}
.order-view .order-total .total td,
.order-view .order-total .total th
{
    border-top: 1px solid #c0c0c0;
}
.order-view .order-total th{
    text-align: right;
}
.order-view .order-total th span{
    font-weight: normal;
}
.order-view .order-total td{
    width: 100px;
    text-align: right;
    padding: 4px 0 4px 4px;
    white-space: nowrap;
}

.order-view .delivery-info th{
    min-width: 100px;
    text-align: right;
}
.order-view .delivery-info td{
    padding-left: 10px;
}
.order-row{
}
.order-row .order-info{
    max-height: 0;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    overflow: hidden;
}
.order-row.collapsed .order-info{
    max-height: 500px;
}
.order-row.even .order-title{
    background-color: #F0F0F0;
}
.order-row .order-title{
    font-size: 1.6em;
    text-decoration: none;
    border-bottom: 1px dotted #9A9A9A;
    padding: 5px 0 5px 24px;
    display: block;
    position: relative;
}
.order-row .order-title:before{
    content:"";
    border-top: 8px solid transparent;
    border-left: 8px solid #0081C2;
    border-bottom: 8px solid transparent;
    border-right: 0;
    position: absolute;
    left: 10px;
    top: 6px;

}
.order-row .order-title:after{
    content:"";
    border-top: 6px solid transparent;
    border-left: 6px solid #FFFFFF;
    border-bottom: 6px solid transparent;
    border-right: 0;
    position: absolute;
    left: 10px;
    top: 8px;
}
.order-row.even .order-title:after{
    border-left: 6px solid #F0F0F0;
}

.order-row.collapsed .order-title:before{
    content:"";
    border-top: 8px solid #0081C2;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0;
    position: absolute;
    left: 6px;
    top: 10px;

}
.order-row.collapsed .order-title:after{
    content:"";
    border-top: 6px solid #FFFFFF;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0;
    position: absolute;
    left: 8px;
    top: 10px;
}
.order-row.even.collapsed .order-title:after{
    border-top: 6px solid #F0F0F0;
}

.order-row .order-title small{
    font-weight: normal;
    font-size: 0.7em;
    color: #9A9A9A;
}
.button-payment{
    display: inline;
    display: inline-block;
}
.button-payment input[type="submit"]{
    padding: 5px 40px;
}
@media print {
    body > * {display: none; }
    body > .printed { display: block; }
    .no-printed { display: none; }
}

.modal-discount{
    width: 300px;
}

.discount-row.discount-no span{
    cursor: pointer;
}
.discount-row.discount-ok{
    color: #008000;
}