/* 
    Document   : shoppingCart.css
    Created on : 30/Aug/2013
    Author     : Paulo
    Description:
        Purpose of the stylesheet follows.
*/



div.shopping_cart_title {
    padding-top: 32px;
    color: rgb(46,46,46);
}

div.shopping_cart_title h1 {
    font-size: 24px;
}


.shopping_cart_table {
    color: rgb(46,46,46);
    font-size: 13px;
}

/*******************************************
*   Imagens do Produto no Cart
********************************************/
img.cart_img {
    width: 70px;
    height: 52px;
}


tr.shopping_cart_table_titles {
    border-style: solid;
    border-width: 1px;
    background-color: #4F4F4F;
    color: #FFFFFF;
    height: 40px;
    
}

tr.shopping_cart_table_titles th {
    padding: 5px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    vertical-align: middle;
    
}

tr.shopping_cart_table_items {
    border-bottom-style: solid;
    border-color: rgb(164,164,164);
    border-bottom-width: 1px;

}


tr.shopping_cart_table_items td {
    padding: 30px 5px 5px 5px;
}

td.shopping_cart_table_quantity_input input {
    width: 58px;
    height: 25px;
    border: 1px solid rgb(214, 212, 200);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    margin: 0px;
}

td.shopping_cart_table_quantity_update input {
    /*width: 100px;*/
    height: 27px;
    margin-top: 5px;
    background-color: rgb(0,170,221);
    border: none;
    box-shadow: none;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
}

td.shopping_cart_table_quantity_update input:hover {
    /*width: 100px;*/
    height: 27px;
    margin-top: 5px;
    background-color: #00799B;
    border: none;
    box-shadow: none;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
}


table.cart_img_table td {
    padding: 0px;
}

div.shopping_cart_table_remove_item {
    background-color: rgb(0,170,221);
    width: 20px;
}

div.shopping_cart_table_remove_item:hover {
    background-color: #00799B;
    width: 20px;
}

div.shopping_cart_table_remove_item a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    display: block;
}



.tooltip{
    display: inline;
    position: relative;
}

.shopping_cart_table_product_link a {
    text-decoration: none;
    color: rgb(150,150,150);
}

.shopping_cart_table_product_name {
    font-weight: bold;
    /*font-size: 14px;*/
}

div.checkout_bottom {
   /* float: right;*/
    width: 210px;
    height: 50px;
    line-height: 50px;
    background-color: rgb(0,170,221);
    font-weight: bold;
    /*cursor: pointer;*/
    text-align: center;
    vertical-align: middle;
    margin: 10px 0px 50px 270px;
}

div.checkout_bottom:hover {
   /* float: right;*/
    width: 210px;
    height: 50px;
    line-height: 50px;
    background-color: #00799B;
    font-weight: bold;
    /*cursor: pointer;*/
    text-align: center;
    vertical-align: middle;
    margin: 10px 0px 50px 270px;
}

div.checkout_bottom a {
    width: 210px;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    display: block;
    color: #FFFFFF;
    font-size: 1.2em;
    text-transform: uppercase;
}

div.continueShoppingButton {
    float: right;
    padding: 0px 10px 0px 10px;
    /*height: 40px;*/
    background-color: rgb(0,170,221);
    font-weight: bold;
    /*cursor: pointer;*/
    text-align: center;
    vertical-align: middle;
    margin-right: 15px;
    
}

div.continueShoppingButton a {
    text-decoration: none;
    display: block;
    color: #FFFFFF;
    line-height: 30px;
}