﻿#leftColumn, #rightColumn{
    float: left;
    
}
#leftColumn {
    width: 860px;
    padding-right: 40px;
}
#rightColumn {
    width: 320px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    background-color: #F5F5F5;
}
#frmDetails{
    width: 900px; /* same as #leftColumn */
    margin: auto;
    padding-top: 30px;
}


#overallFormTitle, .formTitle, #buttonContainer > button { /* based on breadcrumb */
    line-height: 60px;
    font-size: 28px;
    text-transform: uppercase;
}

#overallFormTitle, #thankYouLeftColumn {
    text-align: center;
}

.formTitle { /* based on breadcrumb */
    border-bottom: 1px solid black;
    padding-top: 10px;
    margin-bottom: 30px;
}

.formContainer {
    padding-bottom: 30px;
    border-bottom: 1px solid black;
    margin-bottom: 30px;
}

/* Field style based on the configurator */
select, input[type=number], input[type=text], input[type=email], input[type=date] {
    width: 100%;
    font-size: 16px;
    border: 1px solid #E2E2E2;
    padding: 2px;
}

input[type=date] {
    height: 21px; /* need less here just to be equal to the text field */
}

input[type=number] {
    padding-left: 6px; /* need extra here just to be equal to the select */
    width: 100px !important;
    margin-right: 31px !important;
}

input[type=number]:last-child {
    margin-right: 0 !important;
}

.componentselector {
    padding-top: 10px;
    padding-bottom: 30px;
    float: left;
    width: 400px; /* half of #leftColumn*/
}

.componentselector:nth-child(odd){
    padding-right: 60px;
}
.componentselector:nth-child(even) {
    width: 400px;
}

#detailsSubmitButton {
    padding-top: 10px;
    padding-bottom: 30px;
    float: left;
    width: 900px; /* same as #frmDetails */
    text-align: center;
}

.componentTitle, button, .cartItemTitle, noItemsMessage, input[type=submit] {
    font-family: "pragmatica-web",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.componentTitle {
    padding-bottom: 20px;
}

button, input[type=submit] {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: white;
    border: 1px solid #E2E2E2;
    cursor: pointer;
}

#buttonContainer{
    height: 250px;
    padding-left: 230px;
    padding-top: 150px;
}
#buttonContainer > button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: normal;
    font-size: 20px;
    margin-left: 30px;
}

button.inactive {
    color: #E2E2E2;
    cursor: default;
}

button.warning{
    background-color: grey;
    color: white;
    float: right;
}

.componentselector:first-child, .componentselector:nth-child(2) {
    padding-top: 0;
}

input.otherField {
    width: 390px !important; /* to line up with left edge of the drop-down list field above it */
    padding-left: 6px !important; /* to line up with the text in the drop-down list field above it */
}
.dimensionDropdown{
    width: 130px;
}
#txtTopLength, #txtTopWidth, #txtTopHeight{
    width: 120px !important;
    margin-right: 0px !important;
}
#topDimensions{
    position: relative; /* required to set the absolute positioned fields that follow to be positioned relative to this container */
}
#txtTopWidth {
    position: absolute;
    left: 133px;
    top: 30px;
}
#txtTopHeight {
    position: absolute;
    left: 266px;
    top: 30px;
}
.otherField, .otherLabel {
    display: none;
}
.doorLayoutDropdown {
    width: 300px;
}
.doorLayoutDropdown select{
    width: auto;
}
.errorMessage {
    color: red;
}

/* Cart */
#cartItems {
    min-height: 270px;
}

#noItemsMessage{
    display:none;
    color: grey;
}

.cartItem {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E2E2E2;
}
.cartItem:last-child{
    border: none;
}
.cartItem .btnEditItem{
    float: right;
}

.cartItemTitle{
    padding-top: 12px;
    padding-bottom: 20px;
}

.cartItemDetailsLabel, .cartItemDetailsValue {
    
}

.cartItemDetailsLabel {
    color: #686868;
}

.cartItemDetailsValue {
}
/* hide the forms to start */
#frmTable, #frmCabinet {
    display: none;
}

/* dialogs */

.popupdialog {
    display: none;
}

    .popupdialog label, .popupdialog input {
        display: block;
    }

    .popupdialog input, .popupdialog textarea {
        margin-bottom: 12px;
        width: 95%;
        padding: .4em;
    }

    .popupdialog textarea {
        resize: none;
    }

    .popupdialog fieldset {
        padding: 0;
        border: 0;
        margin-top: 25px;
    }
#comments{
    height: 63px; /* shows 3 rows cleanly */
}



.ui-dialog .ui-state-error {
    padding: .3em;
}

.validateTips {
    border: 1px solid transparent;
    padding: 0.3em;
}

.ui-widget, .ui-widget input, .ui-widget button, .ui-widget textarea {
    font-family: "futura-pt",sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
}

    .ui-widget input {
        font-size: 14px; /* for some reason needs to be smaller than the other text just to appear the same size; Chrome issue? */
    }

.ui-dialog-title, .ui-button-text {
    font-family: "pragmatica-web",sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.validateTips{
    color: red;
}