
/* Turn off the sub-menu bar as ProCalc does not have one */
/* need to fix this later */
.header-backdrop {
    top: 0;
    height: 70px;
}


.pcc-title-h1{
    font-size: 1.8rem;
    font-weight: 500;
    margin: 1.0rem 0 0.3rem 0;
}

.pcc-title-h2{
    font-size: 1.1rem;
    font-weight: normal;
    margin: 0.3rem 0 0.3rem 0;
}

.pcc-title-em {
    font-size: 1.5rem;
    font-weight: normal;
    text-shadow: 0.2rem 0.2rem 0.2rem ltgrey;
    color: blue;
}

.pcc-title-ul {
    margin: 0.4rem 0;
    padding-left: 2rem; 
    font-size: 1.2rem;
    font-weight: bold;
    color: #003366; 
}

.pcc-title-li{
    padding: 0.15rem 0;
}


.pcc-border {
    padding: 1rem;
    border: 1px solid blue;
    border-radius: 20px;
    background: lightcyan
}


.pcc-free-calc-box {
    text-align: center;
    background:lightcyan;
    border: 1px solid blue;
    border-radius: 10px;
}

.pcc-free-calc-h2 {
    font-size: 1.1rem;
}







/* 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. */
.pcc-panels {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 100%;
    text-align: center;
    /* background: red; */
}

.pcc-panel {
    margin: 0;   /* do not change */
    padding: 0;  /* do not change */
    width: 50%;
    float: left;
    min-width: 200px;
    text-align: left;
    /* background: lightsalmon; */
}

.pcc-inner-container {
    margin: 2rem;
    /* border: 1px solid black; */
}

#pcc-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) {
    .pcc-panel {
        margin-left: auto;
        margin-right: auto;
        float: none;
        width: 100%;
        /* background: lightgreen; */
    }
    #pcc-right-panel {
        margin-top: 1rem;  /* move up closer to panel above */
    }
}



.pcc-panel h1 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}


.pcc-form {
    margin: 1.1rem 0; 
    padding: 1rem 2rem; 
    background: lightcyan;
    border: 1px solid #00b7ff;
    border-radius: 10px;;        
}

.pcc-form label {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.pcc-form textarea {
    width: 100%;
}

.pcc-form input {
    margin-bottom: 0.5rem;
    height: 2rem;
}

.pcc-form label,
.pcc-form input {
    display: block;
    width: 100%;
}

.pcc-form input:focus {
    outline: none;
    /* background: lightskyblue; */
    border-color: lightskyblue;
}

.pcc-form input.invalid,
.pcc-form :invalid {
    /* border-color: red !important; */
    background: white;
}

.pcc-form button[type="submit"] {
    display: block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}



.pcc-form input[type="checkbox"] {
    display: inline-block;
    width: auto;
    vertical-align: bottom;
}

.pcc-form input[type="checkbox"] {
    border: 1px solid #ccc;
    background: white;
    width: 1rem;
    height: 1rem;
    margin-bottom: 0;
    margin-top: 1.2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pcc-form input[type="checkbox"]:checked {
    background: gray;
    border: #140e4f;
}








.pcc-support-heading {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.2;
    color: red;
}


.pcc-spacer {
    clear: both;
    height: 2rem;
}



