﻿
#estimateCharges {
    display: inline-block;
}

#subTotal {
    display:inline-block;
    float:right;
    font-weight:bold;
    margin-right:64px;
}

#cartLeft {
    float:left;
}

#cartRight {
    float: right;
}

#freightDialog {
    display: none;
    padding-top:10px;
    font-size:12px;
}

    #freightDialog label.label {
        display:inline-block;
        width:75px;
    } 

    #freightDialog input[type=text]{
        height:20px;
        padding:2px;
    }

#zipLabel {
    display:inline-block;
    width:110px;
}

#txtState {
    background-color:#eee;
    color:#000;
    border:1px solid #ccc;
    width:30px;
}

#txtZip {
    width:52px;
}

#freightError {
    display: none;
    color: #ff0000;
    font-weight: bold;
}

#freightOutput {
    display: none;
}

#freightOptions {
    border-collapse:collapse;
}

    #freightOptions td {
        height: 40px;
        padding:4px;
    }

    #freightOptions thead td {
        border-bottom: 1px solid black;
        font-weight:bold;
    }

    #freightOptions td.spacer {
        width:50px;
    }

    #freightOptions tbody td.method {
        width: 300px;
        border-left: 1px solid black;
        border-right: 1px solid black;
    }

    #freightOptions td.charges {
        width:100px;
        text-align:right;
    }

    #freightOptions thead td.charges{
        text-align:center;
    }

    #freightOptions tfoot td {
        border-top: 1px solid black;
        height: 20px;
    }

#freightNotice {
    text-align:center;
}

input.button{
    font-size:13px;
}

#hazardous {
    display: none;
    font-weight: bold;
    color: red;
    width: 275px;
    margin: auto;
    text-align: center;
}

@media(min-width:1260px) {
    input.button {
        font-size: 15px;
    }

    input[type=text] {
        font-size: 15px;
    }

    #subTotal {
        margin-right: 77px;
    }

    #freightDialog {
        font-size: 14px;
    }

        #freightDialog input[type=text] {
            height:25px;
            font-size: 14px;
        }

    #txtZip {
        width: 60px;
    }

    span.ui-button-text {
        font-size: 13px !important;
    }
}