
/* Margins an padding do not play well with the allowing the */
/* panels to sit side by side and then collapse for mobile */
/* configuration. If you need to offset the content the panel */
/* container then add a div inside of the panel and use it */
/* set margins and padding. */
.sales-panels {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 100%;
    text-align: center;
    /* background: red; */
}

.sales-panel {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 50%;
    float: left;
    min-width: 200px;
    text-align: left;
    /* background: lightsalmon; */
}

.sales-inner-container {
    margin: 2rem;
    /* border: 1px solid black; */
}


#right-panel {
    margin-top: 7rem;
}


/* MOBILE configuration - stack the panels*/
/* When we bet to a mobile configuration, we turn off the float */
/* makes each panel just stack vertically. We also expant the */
/* horizontal margins so that we can use the entire width of the */
/* mobile screen. */
@media (max-width: 500px) {
    .sales-panel {
        margin-left: auto;
        margin-right: auto;
        float: none;
        width: 100%;
        /* background: lightgreen; */
    }
    #right-panel {
        margin-top: 1rem;  /* move up closer to panel above */
    }
}



.sales-panel h1 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}


.sales-form {
    margin: 1.1rem 0; 
    padding: 1rem 2rem; 
    background: lightcyan;
    border: 1px solid #00b7ff;
    border-radius: 10px;;        
}

.sales-form label {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.sales-form textarea {
    width: 100%;
}

.sales-form input {
    margin-bottom: 0.5rem;
    height: 2rem;
}

.sales-form label,
.sales-form input {
    display: block;
    width: 100%;
}

.sales-form input:focus {
    outline: none;
    /* background: lightskyblue; */
    border-color: lightskyblue;
}

.sales-form input.invalid,
.sales-form :invalid {
    /* border-color: red !important; */
    background: white;
}

.sales-form button[type="submit"] {
    display: block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}


.sales-support-heading {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.2;
    color: red;
}


.sales-spacer {
    clear: both;
    height: 2rem;
}


/* =================== newer catalog form ============== */
/* =================== newer catalog form ============== */
/* =================== newer catalog form ============== */
.cat-form {
    margin: 1.1rem 0; 
    padding: 1rem 2rem; 
    font-family: "lato", Arial, Helvetica, sans-serif;
    /* background: lightcyan; */
    /* border: 1px solid #00b7ff; */
    /* border-radius: 10px;;         */
}

.cat-form__label {
    display: block;
    width: 100%;
    font-weight: normal;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

.cat-form__input {
    display: block;
    width: 50%;
    padding: 0.25rem;
}

.cat-form__label-chk {
    font-weight: normal;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
}

