﻿/* 
    02/06/09 - The cart page does not yet conform to the faux-absolute
    positioning that the rest of the site uses, so there will be some
    CSS styles that are overwrote to make the cart look correct.
*/

/* OVERWRITES img in deliverymaps-styles.css Needed to corrent display images */
img  { display: inline; }

/* This is a container that encpsulates the cart. */
.dataGrid { border: 0; }

/*-------------- ADD-ONS --------------*/
    /* Examples: Mark-It Dots, Supply Pack, Valance, Magnetic Push Pins */
    .add-on-selection { font-size: 11px; }

    /* Mark It Dots */
    .markitdot
    {
        position: relative;
        top: -4px;
        font-size: 11px;
    }

    /* Valances */
    .valance
    {
        position: relative;
        top: -2px;
    }

    /* 'Add to Cart' text link that appears with the Add-Ons */
    div.addToCartLink
    {
        float: left;
        width: 100px;
    }

    /* 'Add to Cart' text link that appears with the Add-Ons */
    div.addToCartLink a
    {
        color: #428eef;
        font-size: 14px;
        text-decoration: none;
    }

    /* 'Add to Cart' arrow image link that appears with the Add-Ons */
    div.addToCartLink a img
    {
        border-width: 0px;
    }

    /* 'Continue Shopping' that appears under the Checkout button */
    a.cartLink
    {
        color: #428eef;
        font-size: 12px;
        text-decoration: none;
    }

    /* The circular blue button that accompanies the 'Continue Shopping' */
    a.cartLink img
    {
        border-width: 0px;
    }

    /* The light grey area that encapsulates the rest of the cart */
    .CartContainer
    {
        background-color: #e6e6e6;
        border: solid 1px #868686;
        font-family: Arial;
        margin: 15px;
        padding: 15px;
        margin-top: 3px;
        text-align: left;
    }

    /* Contains the top checkout button and the continue shopping link */
    .TopCheckoutButton
    {
        color: #428eef;
        float: right;
        font-size: 13px;
        text-align: right;
    }

    /* The items name, QTY, and Price */
    .CartItemHeader {
        background-color: #a6a6a6;
        border: solid 1px #868686;
        color: #ffffff;
        font-size: 13px;
        font-weight: bold;
        height: 15px;
        padding: 10px 5px 5px 5px;
        width: 726px;
    }
        .CartItemHeaderItemName
        {
            float: left;
            width: 589px;
        }
        .CartItemHeaderQty
        {
            float: left;
            padding-left: 5px;
            width: 70px;
        }
        .CartItemHeaderPrice
        {
            float: right;
        }
    .CartItemDescription
    {
        background-color: #ffffff;
        border: solid 1px #868686;
        border-top-width: 0px;
        height: 147px;
        margin-bottom: 5px;
        width: 736px;   
    }
        .CartItemDescriptionImage
        {
            float: left;
            padding: 5px 5px 5px 5px;
            width: 187px;
        }
        .CartItemDescriptionText
        {
            border-right: solid 1px #868686;
            float: left;
            height: 137px;
            padding: 5px 5px 5px 5px;
            width: 386px;
        }
        .CartItemDescriptionProductName
        {
            font-size: 13px;
            font-weight: bold;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            /*width: 300px;*/
        }
.breadcrumbline .breadcrumblinks  
{
    margin-left: -955px;
    width: 784px;
    margin-top: 5px;
    margin-bottom: 3px;
    }
    
.OdysseyQuoterLink
{
    background-color: #ededed;
    border: 1px solid #ababab;
    font-family: Arial;
    font-size: 12px;
    left: 5px;
    line-height: 20px;
    height: 20px;
    padding: 10px;
    position: fixed;
    top: 5px;
}

.OdysseyQuoterLink a
{
    color: #000000;
    text-decoration: none;
}

.OdysseyQuoterLink a:hover
{
    text-decoration: underline;
}
        
.applycodebutton:hover
{
    cursor:pointer;
}

.cursorpointer {
    cursor: pointer;
}
.chckout-btn {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 122px;
    height: 24px;
    background-color: #418e30;
    background-image: linear-gradient( 175deg,#a3df93,#418e30);
    border: 1px solid #418e30;
    border-radius: 15px;
    color: #fff;
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin: 0 0 0 auto;
}
.chckout-btn::before {
    content: url(/images/cart/lock-icon.png);
    padding-left: 3px;
}
.chckout-btn::after {
    content: url(/images/cart/arrow-icon.png);
}