/* Planmeca (Planmeca.plumgrove.us). Ported verbatim from its inline HEAD
   <style> (2026-09-22); R2 additions are at the end. Self-contained: this
   client does not load global/global.css (see loader.js). Open Sans is loaded
   by the HEAD snippet. */

html, body {
    height: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}


.planmeca-topper {
    height: 16px;
    width: 100%;
    background: url(https://www.planmeca.com/static/img/common/stripe.png) no-repeat center top;
    background-size: cover;
flex-shrink: 0;
}

.loginPage .loginForm {
    border: solid 1px #dadada;
    padding: 20px;
    border-radius: none;
}

.pgp-login-instruction {
    text-align: center;
    color: #565656;
}

a {
    color: #545454;
}

a:hover {
    color: #e6007e;
    text-decoration: none;
}



#top-nav .navbar-nav>li>a {
    border-left: solid 1px #eeeeee;
}

.prod-cat-item {
    border: solid 1px #dadada;
}

.prod-cat-item .img-wrap {
    border-bottom: solid 1px #dadada;
}

.product-name {
    margin-bottom: 20px;
}

.product-form>p:nth-of-type(1) {
    font-size: 2rem;
    color: #23408f;
    font-weight: bold;
}

.skinsetting-prod-caption-heading {
    font-weight: 400 !important;
    font-size: 20px;
}

.logo {
    margin-top: 10px;
}

#main-content {
    margin-bottom: 3rem;
}

.footer {
    margin-top: auto;
    padding-bottom: 2rem;
    background-color: #1a3e78;
}

.footer a:hover {
    color: #eeeeee;
}

.size-chart {
        margin: 30px 0;
        font-size: 13px;
    }

    .size-chart table {
        text-align: left;
        border-collapse: collapse;
        width: 100%;
    }

    .size-chart tr {
        border-bottom: solid 1px #aaaaaa;
        transition-duration: 1s;
    }

    .size-chart thead th {
        background: #c2c2c2;
    }

    .size-chart caption {
        text-align: left;
        font-size: 16px;
        padding: 6px;
        color: #ffffff;
        background: linear-gradient(10deg, #252525, #787878);
        /*border: solid 1px #102426;*/
    }

    .size-chart th {
        font-weight: bold;
        text-align: left;
        color: #121212;
        /*background: #C2C3BE;*/
    }

    .size-chart th,
    .size-chart td {
        padding: 2px 5px;
    }

    .size-chart tr:nth-of-type(even) {
        background: #eaeaea;
    }

    .size-chart tr:nth-of-type(odd) {
        background: #f5f5f5;
    }

    .size-chart tr:hover {
        background: lightgoldenrodyellow;
        transition-duration: 1s;
    }

    .custom-apparel-notice {
        border: solid 1px orange;
        padding: 1rem;
        margin: 2rem 0;
    }

/* ---- R2 additions (not in the legacy inline <style>) ---- */

/* The flex-column body sizes Bootstrap's centred .container to its content,
   so one wide child (Kendo's Settings TabStrip, a product carousel) widened
   the whole page on phones. Cap it at the viewport; pages that fit are unchanged. */
body > .container {
    max-width: 100%;
}

/* Top stripe, drawn here instead of the <div class="planmeca-topper"> in the
   body-start admin field. While that div is still on the page it draws the
   stripe and this rule stays off, so the two edits can land in either order. */
body:not(:has(> .planmeca-topper))::before {
    content: "";
    display: block;
    height: 16px;
    width: 100%;
    background: url(https://www.planmeca.com/static/img/common/stripe.png) no-repeat center top;
    background-size: cover;
    flex-shrink: 0;
}
