
/* 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. */
.support-panels {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 100%;
    text-align: center;
    /* background: red; */
}

.support-panel {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 50%;
    float: left;
    min-width: 200px;
    text-align: left;
    /* background: lightsalmon; */
}

.support-inner-container {
    margin: 2rem;
    /* border: 1px solid black; */
}


#right-panel {
    margin-top: 2rem;
}


/* 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) {
    .support-panel {
        margin-left: auto;
        margin-right: auto;
        float: none;
        width: 100%;
        /* background: lightgreen; */
    }
    #right-panel {
        margin-top: 1rem;  /* move up closer to panel above */
    }
}



.support-panel-h1 {
    font-size: 1.7rem;
    font-weight: normal;
    margin: 0 0 0.75rem 0;
}

.support-panel h2 {
    font-size: 1.0rem;
    font-weight: 600;
    margin: 2rem 0 0.4rem 0;
}

.support-panel-ul {
    margin: 0.4rem 0;
    padding-left: 2rem; 
}

.support-panel-li{
    padding: 0.2rem 0;
}


.support-panel-ol {
    margin: 0.3rem 0;
    padding-left: 2rem; 
}

.support-panel-olli{
    padding: 0.2rem 0;
}


  /* ---------- Support Form  -------------*/

.support-form {
    margin: 1.1rem 0; 
    padding: 1rem 2rem; 
    background: lightyellow;
    border: 1px solid gray;
    border-radius: 10px;;        
}

.support-form h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.5rem 0 0.8rem 0;
}

.support-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.8rem 0;
}

.support-form-label-paren {
    font-weight: normal;
    color: red;
}

.support-form label {
    /* font-weight: 600; */
    margin-top: 0.9rem;
    margin-bottom: 0.3rem;
}

.support-form textarea {
    width: 100%;
}

.support-form input {
    margin-bottom: 0.5rem;
    height: 1.8rem;
}

.support-form label,
.support-form input {
    display: block;
    width: 100%;
}

.support-form input:focus {
    outline: none;
    /* background: lightskyblue; */
    border-color: lightskyblue;
}

.support-form input.invalid,
.support-form :invalid {
    /* border-color: red !important; */
    background: white;
}

.support-form button[type="submit"] {
    display: block;
    margin-top: 1.7rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.support-form-code-label {
    font-weight: 600;
}

.support-appeal {
    font-weight: 600;
    color: red;
}

.support-form-footer {
    margin: 2rem 0 2rem 0;    
}



.support-spacer {
    clear: both;
    height: 1rem;
}




.regcode-box {
    padding: 0.5rem;
    font-size: 0.95rem;
    border: 1px solid lightgray;
    border-radius:8px;
}

