.loadingSpinner {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: .25rem solid rgba(0,149,48,0.2);
    border-top-color: rgb(0,149,48);
    animation: spin 1s infinite linear;
    margin: auto;
}

.loadingSpinnerContainer {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    background: black;
    opacity: .5;
    /*  border: 1px solid rgba(0,149,48,0.2);
   border-radius: 5px;
   */
 /* //   left: 222px; */
}
.loadingSpinnerBrowserError {
    border-radius: 0%;
    width: fit-content;
    height: fit-content;
}

.loadingSpinnerContainerBrowserError {
    display: flex;
    align-items: center;
    margin: 200px;
}

#loadingSpinnerBrowserErrorImg {
    display:none;
    width:100%;
    max-width:300px;
}

div.loadingModal {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    align-items: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    overflow: hidden;
    /* margin: 0px 200px; */
}

div.modal-info-dialog {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

div.modal-info-dialog.hide{
    display: none;
}

div.modal-info-dialog-contents {
    display: flex;
    background: white;
    opacity: 1;
    height: 500px;
    width: auto;
}

div.modalDialog-content div.dialogHeader{
    padding: 20px;
}

div.modalDialog-content div.dialogBody {
    height: 100px;
    padding: 20px;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

    div.modalDialog-content div.dialogBody div.dialog-info-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 1.5em;
    }

        div.modalDialog-content div.dialogBody div.dialog-info-container div {
            padding-bottom: 5px;
        }

div.newLine {
    white-space: pre;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



div.dialogContainer {
    /*background:black !important; */
    color: white;
    display: none;
    overflow: initial !important;
}

div.dialogHeader {
    height: 60px;
    padding: 0 20px 20px 20px;
    background: white;
    color: #3DCD58;
    border-bottom: 5px solid rgb(61, 205, 88);
}

div.dialogHeaderLogoDiv {
    float: left;
    height: 100%;
    margin-right: 20px;
    max-width: 60px;
}

    div.dialogHeaderLogoDiv img {
        height: 100%;
    }

div.dialogWarningDiv {
    float: left;
    height: 100%;
    margin-right: 20px;
    max-width: 60px;
}

    div.dialogWarningDiv img {
        width: 60px;
    }

div.dialogHeaderTextDiv {
    float: left;
    height: 100%;
}

div.dialogHeaderLogoNameDiv {
    height: 70%;
    width: 100%;
    font-size: 28px;
    display: flex;
    align-items: flex-start;
}

div.dialogHeaderLogoDescDiv {
    height: 30%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    font-size: 18px;
}

.ui-dialog-titlebar.ui-widget-header .ui-icon {
    background-image: url(images/ui-icons_9FA0A4_256x240.png);
}

div.dialogBody {
    background: #fff;
    display: block;
    overflow: auto;
    color: #626469;
}

    div.dialogBody.db1 {
        height: -webkit-calc(100% - 210px);
        height: -moz-calc(100% - 210px);
        height: calc(100% - 210px);
    }

    div.dialogBody.db2 {
        height: -webkit-calc(100% - 170px);
        height: -moz-calc(100% - 170px);
        height: calc(100% - 170px);
    }

.dialogBody input,
.dialogBody select,
.dialogBody textarea {
    border-radius: 0px;
    color: #696969;
    border: solid 1px #9FA0A4;
    /*border: solid 1px #009530;*/
    background: #eaeaea;
    border-color: #eaeaea;
}

    .dialogBody input.expertAccessInput,
    .dialogBody select.expertAccessSelect,
    .dialogBody textarea.expertAccessInput {
        box-sizing: border-box;
        padding-left: 4px;
    }

    .dialogBody input.expertAccessInput.empty,
    .dialogBody select.expertAccessSelect.empty,
    .dialogBody textarea.expertAccessInput.empty {
        border: none;
        border-left: solid 5px red;
    }

div.dialogFooterDiv {
    background: #ffffff;
    height: 100px;
    position: relative;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

div.dialogFooterButtonsDiv {
    height: 80px;
    width: 250px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

a.dialogFooterButtons {
    background: #42B4E6;
    padding: 5px 10px;
    height: 20px;
    line-height: 20px;
    width: 100px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

    a.dialogFooterButtons.right {
        margin-left: auto;
    }

    a.dialogFooterButtons:hover {
        background-color: #42b4e6;
        background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#59bde9),color-stop(100% #42b4e6));
        background-image: -webkit-linear-gradient(top,#59bde9 0,#42b4e6 100%);
        background-image: -moz-linear-gradient(top,#59bde9 0,#42b4e6 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff59bde9',endColorstr='#ff42b4e6',GradientType=0);
        -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff59bde9',endColorstr='#ff42b4e6',GradientType=0);
        background-image: -ms-linear-gradient(top,#59bde9 0,#42b4e6 100%);
        background-image: -o-linear-gradient(top,#59bde9 0,#42b4e6 100%);
        background-image: linear-gradient(top,#59bde9 0,#42b4e6 100%);
    }

    a.dialogFooterButtons:active {
        background-color: #3DCD58;
        background-image: none;
        filter: none;
    }


    a.dialogFooterButtons.disable{
        pointer-events: none;
        background-color: #626469;
        opacity: .35;
        background-image: none;
        filter: none;
    }

.dialogContainer2 {
    display: none;
    padding: 0;
    overflow: initial !important;
}

.ui-dialog.ui-widget {
    z-index: 100000; /*!important;*/
    border-radius: 0;
    padding: 0;
    -webkit-box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.5);
}

.no-close .ui-dialog-titlebar-close {
    display: none;
}

.hide {
    display: none;
}

.redAsterisk {
    color: #B10043;
    margin-left: 5px;
}

.lioSchneiderFooter {
    width: 240px;
}

/* philmodified */
.ui-dialog .ui-dialog-titlebar.ui-widget-header {
    /*padding: 0 !important;*/
}

/*pertains to login dialog*/
#dialog-login {
    overflow: initial;
}

#loginBodyDiv {
    padding: 20px;
}

#nameEmailDiv {
    width: 100%;
    height: 100px;
}

#emailDiv,
#passwordDiv {
    display: flex;
    height: 24px;
    margin-bottom: 10px;
}

#emailDivLabel,
#passwordDivLabel {
    width: 160px;
    display: table-cell;
}

#loginEmail,
#loginPassword {
    width: -webkit-calc(100% - 165px);
    width: -moz-calc(100% - 165px);
    width: calc(100% - 165px);
    display: table-cell;
    padding-left: 5px;
}

#signedInDiv {
    display: flex;
}

#signedInDivLabel {
    width: 30%;
    display: table-cell;
}

#keep {
    display: table-cell;
    margin-top: 3px;
    margin-right: 5px;
}


/*pertains to reset-password dialog*/
#dialog-resetPassword {
    overflow: initial;
}

#resetPasswordBodyDiv {
    padding: 20px;
}

#resetPasswordNameEmailDiv {
    width: 100%;
    height: 100px;
}

#resetPasswordEmailDiv,
#resetPasswordNotesDiv {
    display: flex;
    height: 24px;
    margin-bottom: 10px;
}

#resetPasswordEmailDivLabel {
    width: 30%;
    display: table-cell;
}

#resetPsswdEmail,
#resetPasswordNotes {
    width: -webkit-calc(70% - 5px);
    width: -moz-calc(70% - 5px);
    width: calc(70% - 5px);
    display: table-cell;
    padding-left: 5px;
}

#signedInDiv {
    display: flex;
}

#signedInDivLabel {
    width: 30%;
    display: table-cell;
}

#keep {
    display: table-cell;
    margin-top: 3px;
    margin-right: 5px;
}

#resetPasswordReset {
    background: #009530;
}


/*pertains to expertAccess dialog*/
#dialog-expertAccess {
    overflow: initial;
}

#expertAccessBodyDiv {
    padding: 20px 20px 0 20px;
    height: -webkit-calc(100% - 200px);
    height: -moz-calc(100% - 200px);
    height: calc(100% - 200px);
}

#expAccLeftDiv {
    min-width: 540px;
    height: 100%;
    float: left;
    margin-right: 20px;
}

#expAccLayoutFDiv {
    height: 60px;
}

#expertAccReqInfoDiv {
    width: 100%;
}

.expAccInfoDivs {
    display: flex;
    margin-bottom: 10px;
    min-height: 24px;
}

#expAccDescriptionDiv {
    height: 80px;
}

.expAccInfoDivs label {
    width: 160px;
    display: table-cell;
}

.expAccInfoDivs input,
.expAccInfoDivs textarea {
    width: -webkit-calc(100% - 165px);
    width: -moz-calc(100% - 165px);
    width: calc(100% - 165px);
    padding-left: 5px;
    display: table-cell;
}

.expAccInfoDivs select {
    width: -webkit-calc(100% - 165px);
    width: -moz-calc(100% - 165px);
    width: calc(100% - 165px);
    display: table-cell;
    color: #696969;
}

#expAccPhoneDiv span.select2 span.selection span.select2-selection {
    border-radius: 0;
    padding-left: 5px;
    border: none;
    background: #eaeaea;
}

    #expAccPhoneDiv span.select2 span.selection span.select2-selection.empty {
        border-left: solid 5px red;
    }

#select2-expAccPhone-container {
    padding-left: 0px;
    color: #696969;
}

/*pertains to editProfile dialog*/
#dialog-editProfile {
}

#editProfileBodyDiv {
    padding: 20px;
}

#editProfileUserAvatarDiv {
    float: right;
    height: 80px;
    width: 120px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.editProfileFields{

}

    .editProfileFields.required.empty {
        /*border: solid 2px red;*/
        border: solid 1px rgb(169, 169, 169);
        border-left: solid 5px red;
    }

.requiredIndicator {
    float: right;
    border: solid 1px rgb(169, 169, 169);
    border-left: solid 5px red;
    padding: 4px;
}

#profilePicture {
    height: 60px;
    width: 60px;
    background: black;
    margin: 0 30px;
}

#editProfileButton {
    color: #E47F00;
    text-align: center;
    cursor: pointer;
    background: none;
    padding: 0;
    border: none;
    white-space: inherit;
}

#openWindowsExplorerFile {
    display: none;
}

#editProfileReqInfoDiv {
}

.editProfReqInfoDivsOuter {
    display: flex;
    margin: 0 24px 10px 0;
}

.editProfReqInfoDivsInner1 {
    width: calc(100% - 100px);
    width: calc(100% - 100px);
    width: calc(100% - 100px);
    display: table-cell;
}

.editProfReqInfoDivsInner2 {
    width: 90px;
    display: flex;
}

.editProfReqInfoDivs {
    display: flex;
    margin: 0 24px 10px 0;
    min-height: 24px;
    overflow: hidden;
}

    .editProfReqInfoDivs.finalRow {
        margin-bottom: 0;
    }

        .editProfReqInfoDivsCheckMarks {
        display: flex;
        margin-bottom: 10px;
        height: 24px;
    }

.editProfReqInfoDivs label {
    display: flex;
    align-items: center;
    padding-right: 5px;
    box-sizing: border-box;
}


.checkMarkContainer {
    width: 24px;
}

    .checkMarkContainer img.invalid {
        opacity: 0;
    }

    .checkMarkContainer img.valid {
        opacity: 1;
    }

.reqInfoLabel30 {
    min-width: 160px;
    width: 160px;
    display: table-cell;
}

.reqInfoInput70 {
    width: -webkit-calc(100% - 160px);
    width: -moz-calc(100% - 160px);
    width: calc(100% - 160px);
    padding-left: 5px;
    display: table-cell;
}

    .reqInfoInput70.edit-profile-psswd {
        width: -webkit-calc(100% - 189px);
        width: -moz-calc(100% - 189px);
        width: calc(100% - 189px);
    }

.reqInfoInput35 {
    width: -webkit-calc(50% - 125px);
    width: -moz-calc(50% - 125px);
    width: calc(50% - 125px);
    padding-left: 5px;
    display: table-cell;
}

.reqInfoSelect70 {
    width: -webkit-calc(100% - 160px);
    width: -moz-calc(100% - 160px);
    width: calc(100% - 160px);
    display: table-cell;
}

.reqInfoSelect35 {
    width: -webkit-calc(50% - 80px);
    width: -moz-calc(50% - 80px);
    width: calc(50% - 80px);
    display: table-cell;
}

.reqInfoLabel60 {
    width: 60%;
    display: table-cell;
}

.reqInfoSelect40 {
    width: 40%;
    display: table-cell;
}

.reqInfoLabel25,
.reqInfoSelect25 {
    width: 25%;
}

.reqInfoInput100,
.reqInfoSelect100 {
    width: 100px;
    box-sizing: border-box;
    padding-left: 5px;
}

.reqInfoInput120,
.reqInfoSelect120 {
    width: 120px;
    box-sizing: border-box;
    padding-left: 5px;
}

.reqInfoSelect125,
.reqInfoInput125 {
    width: -webkit-calc(50% - 125px);
    width: -moz-calc(50% - 125px);
    width: calc(50% - 125px);
    box-sizing: border-box;
    padding-left: 5px;
}

.reqInfoInput275 {
    width: -webkit-calc(100% - 275px);
    width: -moz-calc(100% - 275px);
    width: calc(100% - 275px);
    box-sizing: border-box;
    padding-left: 5px;
}

a#editProfileCancelButton {
    background: #626469;
}

a#profileChangePassword {
    cursor: pointer;
    color: #E47F00;
}

.updateProfileLinkDivs {
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    display: none;
}

    .updateProfileLinkDivs.active {
        display: flex;
    }

.homeTabButtons {
    background: #42B4E6;
    width: 100px;
    height: 13px;
    padding: 14px;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    margin: 5px 5px 4px 0;
}

.homeTabButtons.disable{
    pointer-events: none;
    background: #626469;
    opacity: .35;
}

.homeTabChangePasswordButton {
    height: 28px;
    padding: 5px 10px;
}

.homeTabCancelButton {
    background: #626469;
}

.passwordDiv.hideElem {
    display: none;
}

.editProfReqInfoDivs.flexLayout {
    display: flex;
    justify-content: space-between;
}

.bldgTypes-button {
    background: #626469;
    padding: 5px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    opacity: .35;
    width: 120px;
    border: solid 3px #626469;
}

    .bldgTypes-button.active {
        background: #42B4E6;
        opacity: 1;
        border: solid 3px #42B4E6;
    }

        .bldgTypes-button.active.required.empty {
            border: solid 3px red;
        }

        .bldgTypes-button.active:hover, #homeOpenUpdateProfileButton:hover, .homeTabButtons:hover {
            background-color: #42b4e6;
            background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#59bde9),color-stop(100% #42b4e6));
            background-image: -webkit-linear-gradient(top,#59bde9 0,#42b4e6 100%);
            background-image: -moz-linear-gradient(top,#59bde9 0,#42b4e6 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff59bde9',endColorstr='#ff42b4e6',GradientType=0);
            -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff59bde9',endColorstr='#ff42b4e6',GradientType=0);
            background-image: -ms-linear-gradient(top,#59bde9 0,#42b4e6 100%);
            background-image: -o-linear-gradient(top,#59bde9 0,#42b4e6 100%);
            background-image: linear-gradient(top,#59bde9 0,#42b4e6 100%);
        }

        .bldgTypes-button.active:active,
        #homeOpenUpdateProfileButton:active,
        .homeTabButtons:active {
            background-color: #3DCD58;
            background-image: none;
            filter: none;
        }

/*pertains to disclaimer dialog*/
#dialog-disclaimer {
    overflow: initial;
}

#disclaimerBodyDiv {
    padding: 20px 0;
}

#disclaimerReqInfoDiv {
    height: 100%;
    overflow: auto;
    text-align: justify;
    padding: 0 20px;
}

.disclaimerInfoDivs {
    margin-bottom: 20px;
}

/*  upgraderevitPlugin  */
#dialog-upgraderevitPlugin {
    overflow: initial;
}

#upgraderevitPluginBodyDiv {
    padding: 20px 0;
}

#upgraderevitPluginReqInfoDiv {
    height: 100%;
    overflow: auto;
    text-align: justify;
    padding: 0 20px;
}

.upgraderevitPluginInfoDivs {
    margin-bottom: 14px;
}

/*  errorBrowserIncompatible  */
#dialog-errorBrowserIncompatible {
    overflow: initial;
}

#errorBrowserIncompatibleBodyDiv {
    padding: 20px 0;
}

#errorBrowserIncompatibleReqInfoDiv {
    height: 100%;
    overflow: auto;
    text-align: justify;
    padding: 0 20px;
}

.errorBrowserIncompatibleInfoDivs {
    margin-bottom: 14px;
}

/*pertains to the welcome dialog*/
#welcomeContainer {
    padding: 20px;
    box-sizing: border-box;
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
}

.welcomeHeading {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.welcomeSection {
    padding: 10px 0;
    box-sizing: border-box;
    display: inline-flex;
}

a.welcomeContinueLink {
    color: #42B4E6;
    font-weight: bold;
}

/*pertains to feedback dialog*/
#dialog-feedback {
    overflow: initial;
}

#feedbackBodyDiv {
    padding: 20px;
}

#feedbackReqInfoDiv {
    width: 100%;
}

#feedback-prod-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

select#feedback-prod-select,
textarea#feedbackDescription {
    color: #626469;
}

#feedbackRatingDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 25px;
    margin-bottom: 10px;
}

#feedbackDiv {
    display: flex;
    height: 125px;
    margin-bottom: 10px;
}

/*pertains to recent dialog*/
#dialog-recent {
}

#recentHeadings {
    width: 100%;
    height: 20px;
    border-bottom: solid #626469 1px;
}

#recentCatalogHead {
    width: 30%;
    float: left;
}

#recentDescriptionHead {
    width: 70%;
    float: left;
}

/*pertains to send dialog*/
#dialog-send {
    overflow: initial;
    /* min-height: 410px !important;*/
}

#sendContainer {
    height: 100%;
    width: 100%;
}

#sendHeadings {
    width: 100%;
    height: 30px;
    background: #009530;
}

#nameHead {
    width: 175px;
    float: left;
    color: white;
    padding: 5px 0px 5px 10px;
    border-right: solid 1px #9FA0A4;
    height: 20px;
}

#infoSection {
    height: 180px;
    border-bottom: solid 1px #9FA0A4;
    background: #ffffff;
}

#infoSectionLeft {
    float: left;
    width: 175px;
    height: 100%;
    overflow: auto;
    padding-left: 10px;
    border-right: solid 1px #9FA0A4;
}

#nameListing {
    width: 100%;
    height: 100%;
    text-align: left;
    overflow: auto;
    border: none;
    outline: none;
}

    #nameListing option {
        padding: 0 0 1px 0;
    }

#addNewPersonDiv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#addPersonText {
    float: left;
    width: 100px;
}

#addPersonInput {
    float: left;
    width: 220px;
    padding: 7px 5px;
    border: solid 1px #009530;
    border-radius: 4px;
}

#addPersonSendButtonDiv {
    float: left;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*pertains to favorites dialog*/
#favoritesDialogTabsDiv {
    /*height: 29px;*/
    height: 24px;
    border: none;
    /*border-bottom: solid 3px #42B4E6;*/
    border-radius: 0;
    margin-bottom: 10px;
    /*padding-bottom: 3px;*/
}

#favoritesDialogTabs {
    padding: 0;
    height: 100%;
    margin-top: 0;
    border-bottom: solid 3px #42B4E6;
}

#favoritesDialogTrashButton {
    width: 35px;
    top: 88px;
    right: 60px;
    position: absolute;
}

#favoritesDialogEditButton {
    width: 35px;
    top: 88px;
    right: 18px;
    position: absolute;
    cursor: pointer;
}

.favoritesDialogLi {
    float: left;
    text-align: center;
    list-style: none;
    /* border: solid 1px #9FA0A4;*/
    border-bottom: none;
    margin-right: 8px !important;
    background: #9FA0A4 !important;
    margin: 0px .2em 0 0;
    height: 24px;
}

    .favoritesDialogLi.dialogBold {
        background: #42B4E6 !important;
        border-color: #42B4E6 !important;
        /*margin-bottom: -1px;
        padding-bottom: 1px;
        height: 31px !important;*/
    }

.favoritesDialogTabsLinks {
    padding: 5px 10px;
    display: block;
    font-weight: normal;
    line-height: 14px;
    cursor: pointer;
}

#favoritesContainer {
    background: #ffffff;
    padding: 20px 5px 0 5px;
    height: -webkit-calc(100% - 200px);
    height: -moz-calc(100% - 200px);
    height: calc(100% - 200px);
    overflow: auto;
}

#favoritesDialogEntriesDiv {
    height: -webkit-calc(100% - 34px);
    height: -moz-calc(100% - 34px);
    height: calc(100% - 34px);
    overflow: auto;
    overflow-x: hidden;
}

.recentConfigTable {
    width: 100%;
    border-collapse: collapse;
    color: #626469;
    text-align: left;
}

    .recentConfigTable th {
        padding: 0 0 3px 0;
    }

    .recentConfigTable td {
        border: 1px solid #626469;
        padding: 4px;
    }

    .recentConfigTable tr:nth-child(even) {
        background: #f2f2f2;
    }

    .recentConfigTable td.checkbox {
        background-color: #fff;
        border: 0;
        padding-right: 5px;
        padding-left: 0;
    }

    .recentConfigTable td.catNumber {
        color: #3DCD58;
        min-width: 90px;
        text-decoration: none;
        cursor: pointer;
    }

/*pertains to saveFavorite, saveCart, saveSolution & cartInfo dialogs*/
#dialog-saveFavorite,
#dialog-saveSolution,
#dialog-saveCart {
    overflow: initial;
}

#dialog-cartInfo {
}

#saveFavoriteContainer,
#saveSolutionContainer,
#saveCartContainer,
#cartInfoContainer {
    background-color: #fff;
    height: -webkit-calc(100% - 170px);
    height: -moz-calc(100% - 170px);
    height: calc(100% - 170px);
    display: flex;
    align-items: center;
}

#saveCartContainer {
    display: block;
}

#cartInfoContainer {
    display: block;
    height: -webkit-calc(100% - 170px);
    height: -moz-calc(100% - 170px);
    height: calc(100% - 170px);
}

.cartInfo-topContainer {
    height: 130px;
    width: 100%;
}

.cartInfo-topSections {
    width: 50%;
    float: left;
    height: 100%;
}

.cartInfoDivs {
    padding: 10px 20px;
}

.cartInfoCommentsDiv {
    height: -webkit-calc(100% - 130px);
    height: -moz-calc(100% - 130px);
    height: calc(100% - 130px);
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#cartInfoComments {
    background-color: #ededed;
    outline: none;
    border: none;
    width: -webkit-calc(100% - 12px);
    width: -moz-calc(100% - 12px);
    width: calc(100% - 12px);
    padding: 5px;
    height: 100px;
    margin-top: 5px;
}

.cartInfoText {
    margin-right: 10px;
}

.cartSaveDiv{
   padding: 10px 20px 0px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.cartSaveDiv label{
    width: 100px;
}

.cartSaveDiv input, .cartSaveDiv input:focus{
    box-sizing: border-box;
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    border: none;
    padding: 6px;
    outline: none;
    background-color: #ededed;
}

.cartSaveDiv select, .cartSaveDiv select:focus{
    box-sizing: border-box;
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    border: none;
    padding: 6px;
    outline: none;
    background-color: #ededed;
}

#cartCommentsDiv {
    display: block;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    padding: 20px;
}

textarea#cartComments, textarea#cartComments:active {
    width: 100%;
    display: table-cell;
    height: 100px;
    overflow: auto;
    box-sizing: border-box;
    margin-top: 5px;
    background-color: #ededed;
    outline: none;
    border: none;
    padding: 6px;
}

#favNameDiv,
#solNameDiv {
    padding: 0 20px;
    width: 100%;
}

#saveFavDiv,
#saveSolDiv,
#cartSaveSolDiv {
    padding: 10px 20px 20px 20px;
}

#favNameInput,
#solNameInput,
#insertEquipDesigInput {
    border: solid 1px #009530;
    border-radius: 4px;
    width: -webkit-calc(100% - 12px);
    width: -moz-calc(100% - 12px);
    width: calc(100% - 12px);
    padding: 5px;
}

#saveFavButton,
#saveSolButton,
#cartSaveSolButton {
    border: solid 1px #009530;
    border-radius: 4px;
    padding: 5px 5px;
    background: white;
    width: 100%;
}

#saveFavoriteFooterButtonDiv,
#saveSolutionFooterButtonDiv,
#cartSaveSolutionFooterButtonDiv {
    width: 100px;
}

/*pertains to BOM dialog*/
#dialog-BOM {
    overflow: initial;
}

#BOM-content {
    background: #ffffff;
    width: 100%;
}

#catalogSection {
    width: 100%;
    height: 75px;
    padding-top: 5px;
}

#BOMProject-Table {
    background: #ffffff;
    border: solid black 1px;
    width: 100%;
    padding-top: 10px;
}

.ui-dialog .ui-dialog-buttonpane {
    margin-top: 0;
    padding: .8em 1em .5em .4em;
}

/*pertains to countries-required dialog*/
#dialog-countries-required {
    overflow: initial !important;
    height: 90%;
}

#countriesRequiredContainer {
    background: #ffffff;
    color: #626469;
    padding: 20px;
    border-bottom: solid 1px #626469;
    box-sizing: border-box;
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
}

table#countriesRequiredTable tr,
table#countriesRequiredTable tr td {
    height: 40px;
    padding: 0 20px 0 0;
    display: flex;
    align-items: center;
}

.flagsCheckbox {
    /*width: 20px;
    height: 20px;*/
}

label.region-child-label.default-country{
    border: solid 1px #626469;
    pointer-events: none;
}

label.region-child-label.default-country::after{
    content: "  (home country)";
    margin-left: 4px;
}

/*pertains to change-password dialog*/
#changePasswordBodyDiv {
    padding: 20px;
}

.chgPsswdEmail {
    width: -webkit-calc(100% - 165px);
    width: -moz-calc(100% - 165px);
    width: calc(100% - 165px);
    padding-left: 5px;
    display: table-cell;
}

.chgPsswdInput {
    width: -webkit-calc(100% - 189px);
    width: -moz-calc(100% - 189px);
    width: calc(100% - 189px);
    padding-left: 5px;
    display: table-cell;
}

/* pertains to addCartToProject Dailog*/
#addCartContainer {
    padding: 20px;
    box-sizing: border-box;
}

.addCartInfoSections {
    margin-bottom: 20px;
}

.addCartInfoInputs {
    width: 100%;
    padding: 3px 4px;
    box-sizing: border-box;
}

/* pertains to add-new-featured-item dialog*/
#addNewFeaturedContainer {
    padding: 20px;
    box-sizing: border-box;
}

.addNewFeatured-topContainer {
    height: 220px;
    width: 100%;
}

.addNewFeatured-halfWidth {
    height: 60px;
    width: 50%;
    float: left;
}

.current-new-featured-products {
    height: -webkit-calc(100% - 15px);
    height: -moz-calc(100% - 15px);
    height: calc(100% - 15px);
    overflow: auto;
}

.feat-new-list-div {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

a.feat-new-list-removal {
    color: red;
}

img.feat-new-list-image {
    height: 20px;
    width: 20px;
    margin: 0 auto 0 30px;
}

#addNewFeatured-image-Div {
    display: flex;
    align-items: center;
}

#addNewFeatured-image {
    height: 60px;
    border: solid 1px #626469;
    margin-left: 10px;
}

.current-addNewFeatured {
    width: 100%;
    height: 50%;
    float: left;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.addNew-radioGroup-div {
    display: flex;
    align-items: center;
    margin: 5px;
}

.current-new-featured-products-label {
    display: block;
    border-bottom: solid 1px #626469;
}

.addNew-radioGroup-label {
    margin-left: 5px;
}

.addNewFeatured-bottomContainer {
    height: -webkit-calc(100% - 220px);
    height: -moz-calc(100% - 220px);
    height: calc(100% - 220px);
    overflow: auto;
}

.new-featured-inputs-divs {
    margin: 10px 0;
}

    .new-featured-inputs-divs.hide {
        display: none;
    }

label.fullLength {
    width: 100%;
}

span.addNewFeatured-required {
    color: #B10043;
    margin-left: 3px;
}

textarea.new-featured-comments {
    width: 100%;
    height: 42px;
    resize: vertical;
}

input.new-featured-short-input {
    margin-left: 5px;
}

input.new-featured-full-length-input {
    width: 100%;
    margin-top: 5px;
}

#dialog-addNewFeatured .new-featured-inputs {
    border-color: #eaeaea;
    background: #eaeaea;
    box-sizing: border-box;
}

#dialog-addNewFeatured label {
    font-weight: bold;
    height: 15px;
}

/* pertains to the chat dialog*/
div#chatBodyDiv.dialogBody.db2 {
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
}

.chatFrame {
    border: none;
    height: 99%;
    width: 100%;
}

/* pertains to myLinks dialog*/
div#myLinksBodyDiv.dialogBody.db2 {
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
}

.myLinks-table {
    width: 100%;
    height: 100%;
}

.links-headers {
    font-size: 18px;
    font-weight: bold;
    height: 20px;
    margin-bottom: 10px;
}

.addLinkLabel {
    display: block;
    width: 100%;
    padding: 5px 0 0 0;
}

/* pertains to building types dialog*/
#buildingTypesContainer.dialogBody.db2 {
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
}

.bldg-types-category {
    margin-left: 25px;
    margin: 20px 25px;
    display: block;
    color: #42B4E6;
    font-weight: bold;
}

div#buildingTypesContainer div#commercial-bldg-types div.regionsBody {
    flex-direction: column;
    max-height: 1800px;
}

div#buildingTypesContainer div#civil-bldg-types ul.region-list {
    width: 100%;
}

#commercial-bldg-types {
    width: 75%;
    height: 100%;
    float: left;
}

#civil-bldg-types {
    width: 25%;
    height: 100%;
    float: left;
}

ul li input.bldg-type-parent-input {
    visibility: initial;
    left: 10px;
}

ul li input.bldg-type-child-input {
    width: 20px;
    visibility: initial;
    left: 4px;
}

/*  pertains to add-bldg-type dialog*/
.addLinkDiv.add-bldg-type-dialogBody{
    height: -webkit-calc(100% - 184px);
    height: -moz-calc(100% - 184px);
    height: calc(100% - 184px);
    width: 100%;
}

.addBldgType-dialog-input-container{
    height: 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#addBldgType-dialog-input{
    width: 100%;
    padding: 3px 5px;
    box-sizing: border-box;
    border-radius: 4px;
}

.ui-dialog.ui-widget.resetZIndex{
    z-index: 0 !important;
}



/* pertains to duplicate-equipment-designation dialog*/
div#dciBodyDiv.dialogBody.db2{
    height: -webkit-calc(100% - 180px);
    height: -moz-calc(100% - 180px);
    height: calc(100% - 180px);
    box-sizing: border-box;
    padding: 20px;
}

div.dci-div{
    padding-bottom: 20px;
}

/* pertains to addTagDialog*/
#addTagButtonDiv.hide,
#addTagInputDiv.hide,
#addTagSubmitDiv.hide{
    display: none;
}

#dialog-info-body {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    font-weight: bold;
}

div.dialog-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div.dialog-info-1{
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    /*  format dialog boxes for smaller  screens*/
    .ui-dialog {
        max-height: 80%;
        max-width: 80%;
        top: 5% !important;
        left: 10% !important;
        font-size: .75em;
    }

    .dialogContainer {
        width: 100% !important;
    }

    div#loginLeftDiv {
        width: 100%;
        height: 80%;
    }

    div#loginRightDiv {
        width: 100%;
        height: 20%;
    }

    div#greenLogoDiv,
    div#topRightLoginDiv {
        display: none;
    }

    div#emailDiv,
    div#passwordDiv {
        display: block;
    }

        div#emailDiv label,
        div#emailDiv input,
        div#passwordDiv label,
        div#passwordDiv input {
            display: block;
            width: 100%;
        }

    #signedInDivLabel {
        width: 0%;
    }

    div#loginLeftDiv {
        min-width: 200px;
    }

    div#bottomRightLoginDiv {
        height: 100%;
        margin: 0;
    }

    span#bottomRightLoginDivSpan {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 700px) {
    .ui-dialog {
        max-height: 100%;
        max-width: 100%;
        top: 0 !important;
        left: 0 !important;
    }

    div#editProfileUserAvatarDiv {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    #addPersonInput {
        width: -webkit-calc(100% - 120px);
        width: -moz-calc(100% - 120px);
        width: calc(100% - 120px);
    }

    #addNewPersonDiv {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 450px) {
    .lioSchneiderFooter.hasFooterButtons {
        display: none;
    }
}
