/* TailorGeorge Design System — source CSS publique unique. */
/* source: public/assets/css/tokens.css */
:root {
    --color-primary: #123f36;
    --color-primary-hover: #0b3029;
    --color-secondary: #e9e2d7;
    --color-accent: #c59b68;
    --color-background: #f6f5f2;
    --color-surface: #ffffff;
    --color-surface-soft: #f0eee9;
    --color-surface-dark: #142420;
    --color-text: #17201e;
    --color-text-muted: #6c7471;
    --color-text-light: #f7f5ef;
    --color-border: #deded8;
    --color-border-strong: #c8cbc5;
    --color-success: #26735d;
    --color-success-soft: #e3f2ec;
    --color-warning: #9f6d20;
    --color-warning-soft: #f8ecd5;
    --color-danger: #a44444;
    --color-danger-soft: #fae8e6;
    --color-info: #314e75;
    --color-info-soft: #e7edf5;
    --color-white: #ffffff;
    --color-black: #0c1110;
    --color-overlay: rgb(12 17 16 / 45%);
    --color-white-06: rgb(255 255 255 / 6%);
    --color-white-10: rgb(255 255 255 / 10%);
    --color-white-12: rgb(255 255 255 / 12%);
    --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-family-display: Georgia, "Times New Roman", serif;
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: clamp(2.25rem, 5vw, 4.8rem);
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --radius-sm: .35rem;
    --radius-md: .65rem;
    --radius-lg: 1rem;
    --radius-round: 999px;
    --shadow-sm: 0 1px 2px rgb(15 23 20 / 5%);
    --shadow-md: 0 14px 40px rgb(15 23 20 / 9%);
    --shadow-lg: 0 28px 70px rgb(15 23 20 / 15%);
    --container-width: 1240px;
    --sidebar-width: 260px;
    --transition-fast: 150ms ease;
    --transition-normal: 280ms ease;
    --z-header: 50;
    --z-modal: 100;
    --tg-production-header-height: 70px;
    --tg-production-content-width: 1360px;
    --tg-production-home-image: url("/assets/design-system/production/img/banner.jpg");
    --tg-production-home-image-mobile: url("/assets/design-system/production/img/banner-mobile.webp");
    --tg-production-hero-title-width: 405px;
    --tg-production-hero-title-width-mobile: 320px;
    --tg-production-cart-icon-width: 27px;
    --tg-production-cart-icon-height: 24px;
    --tg-production-product-gallery-column: minmax(0, 7fr);
    --tg-production-product-details-column: minmax(360px, 5fr);
}

/* Navigation commune aux parcours Perfect Fit français. */
.tg-production-page .tg-perfect-fit-container {
    margin-inline: auto;
    max-width: 1200px;
    padding: 20px;
    width: 100%;
}
.tg-production-page .tg-perfect-fit-tabs {
    border-bottom: 1px solid var(--color-border-strong);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}
.tg-production-page .tg-perfect-fit-tab {
    color: var(--color-text);
    cursor: pointer;
    font-size: 16px;
    padding: 12px 10px;
    position: relative;
}
.tg-production-page .tg-perfect-fit-tab.active { font-weight: 700; }
.tg-production-page .tg-perfect-fit-tab.active::after {
    background: var(--color-primary);
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}
.tg-production-page .tg-perfect-fit-unit-container { margin-block: 25px 40px; }
.tg-production-page .mesure-smartfit {
    background-image: url("/assets/design-system/production/img/MODE_SMARTFIT.jpg");
}
@media (max-width: 991px) {
    .tg-production-page .tg-perfect-fit-container {
        margin: 20px;
        max-width: calc(100vw - 40px);
        overflow: hidden;
        padding: 0;
        width: calc(100vw - 40px);
    }
    .tg-production-page .tg-perfect-fit-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tg-production-page .tg-perfect-fit-tab {
        font-size: 11px;
        text-align: center;
    }
}

/* Bloc SmartFit actuel injecté après le hero de l’accueil français. */
.tg-production-page .tg-home-smartfit { padding-block: 70px; }
.tg-production-page .tg-home-smartfit .section-title {
    display: block;
    font-family: var(--font-family-oswald);
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    margin: 30px 0 70px;
    text-align: center;
}
.tg-production-page .tg-home-smartfit .section-title span { color: var(--color-primary); }
.tg-production-page .tg-home-smartfit .video-section {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: flex-start;
}
.tg-production-page .tg-home-smartfit .video-carousel {
    display: flex;
    gap: 15px;
}
.tg-production-page .tg-home-smartfit .product-video {
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: block;
    height: 450px;
    object-fit: cover;
    width: 220px;
}
.tg-production-page .tg-home-smartfit .smartcut {
    margin: 40px auto 0;
    max-width: 30%;
}
.tg-production-page .tg-home-smartfit .smartcut-intro {
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 30px;
}
.tg-production-page .tg-home-smartfit .smartcut-item {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.tg-production-page .tg-home-smartfit .smartcut-item img {
    height: auto;
    min-width: 50px;
    width: 50px;
}
.tg-production-page .tg-home-smartfit .smartcut-item span {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
}
.tg-production-page .tg-home-smartfit .cta-div {
    align-items: center;
    background: #005539;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 300px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.tg-production-page .tg-home-smartfit .cta {
    align-items: center;
    background: #005539;
    border: 0;
    color: #fff;
    display: inline-flex;
    font-family: var(--font-family-regular);
    font-weight: 800;
    gap: 2px;
    height: 56px;
    justify-content: center;
    line-height: 1;
    padding: 0 40px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.tg-production-page .tg-home-smartfit .cta svg {
    color: #fff;
    display: block;
    flex: none;
    height: 16px;
    width: 10px;
}
.tg-production-page .tg-home-smartfit .cta::after {
    background: #fff;
    bottom: 15px;
    content: "";
    height: 3px;
    left: 40px;
    position: absolute;
    transition: width .3s ease;
    width: 0;
}
.tg-production-page .tg-home-smartfit .cta:hover::after { width: calc(100% - 80px); }
@media (max-width: 768px) {
    .tg-production-page .tg-home-smartfit { padding-block: 30px; }
    .tg-production-page .tg-home-smartfit .section-title {
        font-size: 24px;
        line-height: 25px;
        margin: 30px 0;
    }
    .tg-production-page .tg-home-smartfit .video-section {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .tg-production-page .tg-home-smartfit .video-carousel { gap: 13px; }
    .tg-production-page .tg-home-smartfit .product-video {
        height: 250px;
        width: 31%;
    }
    .tg-production-page .tg-home-smartfit .smartcut {
        margin: 20px auto 0;
        max-width: 100%;
        padding: 10px;
    }
}


/* source: public/assets/css/reset.css */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
body { min-height: 100vh; }
ul[role="list"], ol[role="list"] { list-style: none; }
img, picture { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; border-spacing: 0; }


/* source: public/assets/css/base.css */
body {
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-family-display); font-weight: 400; line-height: 1.08; }
h1 { font-size: var(--font-size-3xl); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: var(--font-size-xl); }
.container { width: min(calc(100% - 2.5rem), var(--container-width)); margin-inline: auto; }
.section { padding-block: var(--space-20); }
.section--soft { background: var(--color-surface-soft); }
.eyebrow { color: var(--color-primary); font-size: var(--font-size-xs); font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow--light { color: var(--color-secondary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: var(--space-4); top: -100px; z-index: var(--z-modal); padding: var(--space-3) var(--space-4); background: var(--color-surface); }
.skip-link:focus { top: var(--space-4); }
code, kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }


/* source: public/assets/css/components/components.css */
.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    display: inline-flex;
    font-size: var(--font-size-sm);
    font-weight: 700;
    gap: var(--space-2);
    justify-content: center;
    min-height: 42px;
    padding: .7rem 1.15rem;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--color-primary); color: var(--color-white); }
.button--primary:hover { background: var(--color-primary-hover); }
.button--secondary { background: var(--color-surface); border-color: var(--color-border); color: var(--color-text); }
.button--secondary:hover { border-color: var(--color-border-strong); }
.button--dark { background: var(--color-surface-dark); color: var(--color-white); }
.button--light { background: var(--color-white); color: var(--color-primary); }
.button--outline { border-color: var(--color-primary); color: var(--color-primary); }
.button--danger { background: var(--color-danger); color: var(--color-white); }
.button--small { min-height: 36px; padding: .5rem .9rem; }
.button--large { min-height: 52px; padding: .9rem 1.4rem; }
.button--full { width: 100%; }
.text-link { align-items: center; display: inline-flex; font-size: var(--font-size-sm); font-weight: 700; gap: var(--space-2); }
.text-link span { transition: transform var(--transition-fast); }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--color-white); }
.field { display: grid; gap: var(--space-2); }
.field > span { font-size: var(--font-size-sm); font-weight: 650; }
.field input, .field select, .field textarea, select {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    min-height: 44px;
    padding: .7rem .8rem;
}
.field input:focus, .field select:focus, .field textarea:focus, select:focus {
    border-color: var(--color-primary);
    outline: 3px solid var(--color-success-soft);
}
.alert { border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); }
.alert--danger { background: var(--color-danger-soft); color: var(--color-danger); }
.alert--success { background: var(--color-success-soft); color: var(--color-success); }
.alert--warning { background: var(--color-warning-soft); color: var(--color-warning); }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.check-field { align-items: start; display: flex; font-size: var(--font-size-sm); gap: var(--space-3); }
.check-field input { margin-top: .35rem; }
.badge { align-items: center; border-radius: var(--radius-round); display: inline-flex; font-size: var(--font-size-xs); font-weight: 700; gap: .4rem; padding: .3rem .6rem; white-space: nowrap; }
.badge i { border-radius: 50%; display: block; height: 6px; width: 6px; }
.badge--success { background: var(--color-success-soft); color: var(--color-success); }
.badge--success i { background: var(--color-success); }
.badge--warning { background: var(--color-warning-soft); color: var(--color-warning); }
.badge--warning i { background: var(--color-warning); }
.empty-state { align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); display: flex; flex-direction: column; padding: var(--space-20); text-align: center; }
.empty-state__icon { color: var(--color-primary); font-size: 3rem; }
.empty-state h2 { margin: var(--space-4) 0 var(--space-2); }
.empty-state p { color: var(--color-text-muted); }


/* styles de page dédupliqués: 0bf95b359416 */
.tg-page-css-0bf95b359416 img{border:0px}.tg-page-css-0bf95b359416 body{margin:0px}.tg-page-css-0bf95b359416 .col-xs-12,.tg-page-css-0bf95b359416 .col-xs-6{float:left}html.tg-page-css-0bf95b359416{font-family:sans-serif}.tg-page-css-0bf95b359416 footer{display:block}.tg-page-css-0bf95b359416 [hidden]{display:none}.tg-page-css-0bf95b359416 a{background-color:transparent}.tg-page-css-0bf95b359416 b{font-weight:700}.tg-page-css-0bf95b359416 h1{margin:0.67em 0px}.tg-page-css-0bf95b359416 img{vertical-align:middle}.tg-page-css-0bf95b359416 button,.tg-page-css-0bf95b359416 input,.tg-page-css-0bf95b359416 select{color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;margin:0px}.tg-page-css-0bf95b359416 button{overflow:visible}.tg-page-css-0bf95b359416 button,.tg-page-css-0bf95b359416 select{text-transform:none}.tg-page-css-0bf95b359416 button{-webkit-appearance:button}.tg-page-css-0bf95b359416 body{background-color:rgb(255,255,255)}.tg-page-css-0bf95b359416 *,.tg-page-css-0bf95b359416 ::after,.tg-page-css-0bf95b359416 ::before{box-sizing:border-box}html.tg-page-css-0bf95b359416{font-size:10px}.tg-page-css-0bf95b359416 body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:rgb(51,51,51)}.tg-page-css-0bf95b359416 button,.tg-page-css-0bf95b359416 input,.tg-page-css-0bf95b359416 select{font-family:inherit;font-size:inherit;line-height:inherit}.tg-page-css-0bf95b359416 a{color:rgb(51,122,183);text-decoration:none}.tg-page-css-0bf95b359416 h1,.tg-page-css-0bf95b359416 h2{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-page-css-0bf95b359416 h1,.tg-page-css-0bf95b359416 h2{margin-top:20px;margin-bottom:10px}.tg-page-css-0bf95b359416 h1{font-size:36px}.tg-page-css-0bf95b359416 h2{font-size:30px}.tg-page-css-0bf95b359416 p{margin:0px 0px 10px}.tg-page-css-0bf95b359416 ul{margin-top:0px}.tg-page-css-0bf95b359416 ul ul{margin-bottom:0px}.tg-page-css-0bf95b359416 ul{margin-bottom:10px}@media (min-width:768px){.tg-page-css-0bf95b359416 .container{width:740px}}.tg-page-css-0bf95b359416 .container,.tg-page-css-0bf95b359416 .container-fluid{margin-right:auto;margin-left:auto}.tg-page-css-0bf95b359416 .container,.tg-page-css-0bf95b359416 .container-fluid{padding-left:10px;padding-right:10px}@media (min-width:992px){.tg-page-css-0bf95b359416 .container{width:960px}}@media (min-width:1200px){.tg-page-css-0bf95b359416 .container{width:1160px}}.tg-page-css-0bf95b359416 .row{margin-left:-10px;margin-right:-10px}.tg-page-css-0bf95b359416 .col-lg-6,.tg-page-css-0bf95b359416 .col-md-3,.tg-page-css-0bf95b359416 .col-md-6,.tg-page-css-0bf95b359416 .col-md-8,.tg-page-css-0bf95b359416 .col-sm-10,.tg-page-css-0bf95b359416 .col-sm-3,.tg-page-css-0bf95b359416 .col-sm-5,.tg-page-css-0bf95b359416 .col-sm-6,.tg-page-css-0bf95b359416 .col-xs-12,.tg-page-css-0bf95b359416 .col-xs-6{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-page-css-0bf95b359416 .col-xs-12{width:100%}.tg-page-css-0bf95b359416 .col-xs-6{width:50%}@media (min-width:768px){.tg-page-css-0bf95b359416 .col-sm-10,.tg-page-css-0bf95b359416 .col-sm-3,.tg-page-css-0bf95b359416 .col-sm-5,.tg-page-css-0bf95b359416 .col-sm-6{float:left}.tg-page-css-0bf95b359416 .col-sm-10{width:83.33333333%}.tg-page-css-0bf95b359416 .col-sm-6{width:50%}.tg-page-css-0bf95b359416 .col-sm-5{width:41.66666667%}.tg-page-css-0bf95b359416 .col-sm-3{width:25%}.tg-page-css-0bf95b359416 .col-sm-offset-1{margin-left:8.33333333%}}@media (min-width:992px){.tg-page-css-0bf95b359416 .col-md-3,.tg-page-css-0bf95b359416 .col-md-6,.tg-page-css-0bf95b359416 .col-md-8{float:left}.tg-page-css-0bf95b359416 .col-md-8{width:66.66666667%}.tg-page-css-0bf95b359416 .col-md-6{width:50%}.tg-page-css-0bf95b359416 .col-md-3{width:25%}.tg-page-css-0bf95b359416 .col-md-offset-2{margin-left:16.66666667%}}@media (min-width:1200px){.tg-page-css-0bf95b359416 .col-lg-6{float:left}.tg-page-css-0bf95b359416 .col-lg-6{width:50%}}.tg-page-css-0bf95b359416 .navbar-brand{float:left;padding:15px 10px;font-size:18px;line-height:20px;height:50px}.tg-page-css-0bf95b359416 .container-fluid::after,.tg-page-css-0bf95b359416 .container-fluid::before,.tg-page-css-0bf95b359416 .container::after,.tg-page-css-0bf95b359416 .container::before,.tg-page-css-0bf95b359416 .row::after,.tg-page-css-0bf95b359416 .row::before{content:' ';display:table}.tg-page-css-0bf95b359416 .container-fluid::after,.tg-page-css-0bf95b359416 .container::after,.tg-page-css-0bf95b359416 .row::after{clear:both}.tg-page-css-0bf95b359416 .oswald-regular{font-family:Lato,sans-serif;font-weight:400}.tg-page-css-0bf95b359416 .roboto-regular{font-family:Lato,sans-serif;font-weight:400}.tg-page-css-0bf95b359416 .hide-text{display:none}html.tg-page-css-0bf95b359416,.tg-page-css-0bf95b359416 body,.tg-page-css-0bf95b359416 div,.tg-page-css-0bf95b359416 span,.tg-page-css-0bf95b359416 h1,.tg-page-css-0bf95b359416 h2,.tg-page-css-0bf95b359416 p,.tg-page-css-0bf95b359416 a,.tg-page-css-0bf95b359416 img,.tg-page-css-0bf95b359416 b,.tg-page-css-0bf95b359416 ul,.tg-page-css-0bf95b359416 li,.tg-page-css-0bf95b359416 footer,.tg-page-css-0bf95b359416 input{box-sizing:border-box;margin:0px;padding:0px;border:0px;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit}.tg-page-css-0bf95b359416 h1{box-sizing:border-box;margin:0px 0px 10px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;line-height:inherit;font-family:Lato,sans-serif;font-size:31px;font-weight:400}html.tg-page-css-0bf95b359416,.tg-page-css-0bf95b359416 body{min-height:100%;font-family:Lato,sans-serif;font-size:17px;font-weight:400}.tg-page-css-0bf95b359416 footer{display:block}.tg-page-css-0bf95b359416 body{font-size:17px;line-height:1;background-color:rgb(255,255,255);font-family:Lato,sans-serif;padding-top:70px;font-weight:400}.tg-page-css-0bf95b359416 ul{list-style:none}.tg-page-css-0bf95b359416 a{text-decoration:none;color:inherit;outline:rgb(0,0,0)}.tg-page-css-0bf95b359416 .info-livraison{background-color:rgb(33,48,78);position:fixed;top:0px;left:0px;width:100%;z-index:1500;padding:10px 0px;color:rgb(255,255,255);text-align:center;font-size:13px}.tg-page-css-0bf95b359416 .info-livraison-container{height:50px;display:-webkit-box;-webkit-box-pack:justify;-webkit-box-align:center}.tg-page-css-0bf95b359416 .info-livraison-container p{color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em}.tg-page-css-0bf95b359416 .menu-lateral-container{display:none;position:fixed;z-index:99999;top:0px;bottom:0px;left:20px;right:0px;background-color:transparent;padding:0px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .menu-lateral{max-width:90%;height:100%;background-color:rgb(255,255,255);display:-webkit-box;overflow:auto;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .menu-top{width:100%}.tg-page-css-0bf95b359416 .menu-top-welcome{line-height:24px;font-size:1em;padding:30px 10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-0bf95b359416 .menu-top-welcome a{text-decoration:underline}.tg-page-css-0bf95b359416 .menu-bot{width:100%;overflow:auto}.tg-page-css-0bf95b359416 .menu-categorie{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-0bf95b359416 .menu-categorie > li{font-size:1em}.tg-page-css-0bf95b359416 .menu-categorie > li a{display:block;padding:10px;text-overflow:unset;overflow:unset;white-space:unset}.tg-page-css-0bf95b359416 .menu-footer{width:100%;text-align:left;font-size:1em;border-top-width:1px;border-top-style:solid;border-top-color:rgb(230,230,230);padding:25px 15px}.tg-page-css-0bf95b359416 .contact-rapide{margin-bottom:10px;float:left;width:100%}.tg-page-css-0bf95b359416 .langue{display:inline-block;float:left;padding:12px 0px;margin-right:10px}.tg-page-css-0bf95b359416 .contact-rapide span{display:block;margin-top:5px;color:rgb(24,136,115);text-decoration:underline}.tg-page-css-0bf95b359416 .logo{max-width:120%}.tg-page-css-0bf95b359416 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:absolute;left:calc(50% - 570px);padding-top:25px}.tg-page-css-0bf95b359416 .header-home .contenu span{display:block;font-size:1.5rem}.tg-page-css-0bf95b359416 .btn-rose{display:inline-block;padding:10px 30px;font-size:1em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:100%;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .btn-rose-home{display:inline-block;padding:10px;font-size:1em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:50px;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .filtres-catalogue-container-tissus-home{height:100px;width:100%;position:relative;z-index:10;margin-top:20px;margin-bottom:50px;background-color:rgb(24,136,115);background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .masquer-span{display:none}.tg-page-css-0bf95b359416 .filtres-catalogue-mobile{line-height:38px;text-align:center;font-size:1em;background-color:rgb(24,136,115);color:rgb(255,255,255);background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .filtres-catalogue-home{display:none;min-width:90%;padding:10px 20px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span{display:block;width:100%;margin-bottom:20px;color:rgb(155,155,155);padding-right:40px}.tg-page-css-0bf95b359416 .filtre-menu-deroulant{margin-bottom:20px}.tg-page-css-0bf95b359416 .filtre-menu-deroulant li{font-size:1em;line-height:2.2em;padding-left:32px;color:rgb(85,85,85);background-position:10px 50%;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .couleur-blanc{background-image:url("/assets/design-system/production/img/icon-couleur-blanc.svg")}.tg-page-css-0bf95b359416 .couleur-noir{background-image:url("/assets/design-system/production/img/icon-couleur-noir.svg")}.tg-page-css-0bf95b359416 .couleur-bleu{background-image:url("/assets/design-system/production/img/icon-couleur-bleu.svg")}.tg-page-css-0bf95b359416 .couleur-rouge{background-image:url("/assets/design-system/production/img/icon-couleur-rouge.svg")}.tg-page-css-0bf95b359416 .couleur-rose{background-image:url("/assets/design-system/production/img/icon-couleur-rose.svg")}.tg-page-css-0bf95b359416 .couleur-marron{background-image:url("/assets/design-system/production/img/icon-couleur-marron.svg")}.tg-page-css-0bf95b359416 .couleur-vert{background-image:url("/assets/design-system/production/img/icon-couleur-vert.svg")}.tg-page-css-0bf95b359416 .couleur-gris{background-image:url("/assets/design-system/production/img/icon-couleur-gris.svg")}.tg-page-css-0bf95b359416 .couleur-violet{background-image:url("/assets/design-system/production/img/icon-couleur-violet.svg")}.tg-page-css-0bf95b359416 .couleur-jaune{background-image:url("/assets/design-system/production/img/icon-couleur-jaune.svg")}.tg-page-css-0bf95b359416 .couleur-orange{background-image:url("/assets/design-system/production/img/icon-couleur-orange.svg")}.tg-page-css-0bf95b359416 .couleur-beige{background-image:url("/assets/design-system/production/img/icon-couleur-beige.svg")}.tg-page-css-0bf95b359416 .couleur-toutes{background-image:url("/assets/design-system/production/img/icon-couleur-toutes.svg")}.tg-page-css-0bf95b359416 .chemise-catalogue{height:100%;margin-bottom:75px;border:1px solid transparent;width:100%;max-width:362px;float:none}.tg-page-css-0bf95b359416 .chemise-catalogue-photo{height:283px;width:100%;max-width:361px;overflow:hidden;padding:0px;text-align:center}.tg-page-css-0bf95b359416 .margin95{margin-top:95px}.tg-page-css-0bf95b359416 .margin20{margin-bottom:20px}.tg-page-css-0bf95b359416 .margin-top-20{margin-top:40px}.tg-page-css-0bf95b359416 .chemise-catalogue-photo img{max-height:200%}.tg-page-css-0bf95b359416 .prix-catalogue{font-size:19px;line-height:1.4em;}.tg-page-css-0bf95b359416 .modele-cataloguee{font-size:15px;line-height:1.4em;margin-bottom:10px;width:100%;padding-top:0px;text-align:center;font-family:Lato}.tg-page-css-0bf95b359416 .catalogue-details{max-height:160px;overflow:hidden;text-align:left;color:rgb(51,51,51);display:-webkit-box;padding-left:5px}.tg-page-css-0bf95b359416 .fin-apercu-catalogue{text-align:center;margin-bottom:100px}.tg-page-css-0bf95b359416 .desc-modele{text-align:left;font-size:15px;font-family:Lato}.tg-page-css-0bf95b359416 .logo-tisseur{display:-webkit-box;-webkit-box-pack:center;margin-bottom:20px}.tg-page-css-0bf95b359416 .logo-tisseur img{margin:5px}.tg-page-css-0bf95b359416 .temoignages-container{padding:50px 25px;margin-bottom:50px;border:5px solid transparent;border-image-source:url("/assets/design-system/production/img/bgk-border-motif.svg");border-image-slice:8;border-image-repeat:repeat}.tg-page-css-0bf95b359416 .temoignages-titre{text-align:center;font-size:31px;text-transform:uppercase;line-height:1.4em;margin-bottom:50px}.tg-page-css-0bf95b359416 .temoignages-love{margin-bottom:10px}.tg-page-css-0bf95b359416 .temoignages-content{margin-bottom:30px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-0bf95b359416 .temoignages-content:last-child{margin-bottom:0px;border-bottom-style:none}.tg-page-css-0bf95b359416 .temoignage-client{font-size:17px;margin-bottom:10px}.tg-page-css-0bf95b359416 .temoignage-nom-client{font-size:0.8em;line-height:1.4em;color:rgb(119,119,119);margin-bottom:30px}.tg-page-css-0bf95b359416 .hamburger{width:130px;height:70px;display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;color:inherit;text-transform:none;background-color:transparent;border:0px;margin:0px;overflow:visible}.tg-page-css-0bf95b359416 .hamburger-box{width:40px;height:24px;display:inline-block;position:relative}.tg-page-css-0bf95b359416 .hamburger-inner{display:block;top:50%;margin-top:-2px}.tg-page-css-0bf95b359416 .hamburger-inner,.tg-page-css-0bf95b359416 .hamburger-inner::before,.tg-page-css-0bf95b359416 .hamburger-inner::after{width:35px;height:2px;background-color:rgb(0,0,0);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;position:absolute}.tg-page-css-0bf95b359416 .hamburger-inner::before,.tg-page-css-0bf95b359416 .hamburger-inner::after{content:'';display:block}.tg-page-css-0bf95b359416 .hamburger-inner::before{top:-10px}.tg-page-css-0bf95b359416 .hamburger-inner::after{bottom:-10px}.tg-page-css-0bf95b359416 .hamburger--spring .hamburger-inner{top:9px}.tg-page-css-0bf95b359416 .hamburger--spring .hamburger-inner::before{top:10px}.tg-page-css-0bf95b359416 .hamburger--spring .hamburger-inner::after{top:20px}.tg-page-css-0bf95b359416 .imglangue{width:15px;height:auto}.tg-page-css-0bf95b359416 #fermelang{position:absolute;top:10px;right:10px;width:30px}.tg-page-css-0bf95b359416 .fermer-popup{width:30px;margin-left:5px;position:absolute;top:15px;right:15px;z-index:999}.tg-page-css-0bf95b359416 .nb-chemises-hover{text-align:left;padding-left:25px;width:100%;margin-top:30px;padding-bottom:10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230);margin-bottom:20px}.tg-page-css-0bf95b359416 .total-hover{text-align:center;width:100%;margin-top:15px;margin-bottom:15px;font-size:15px}@media screen and (min-width:1200px){.tg-page-css-0bf95b359416 .catalogue{width:1360px}}@media screen and (min-width:768px){.tg-page-css-0bf95b359416 .img-categorie{padding:0px}.tg-page-css-0bf95b359416 #header{top:30px}.tg-page-css-0bf95b359416 .title-modele{font-size:26px;margin-bottom:30px;font-family:Lato,sans-serif;line-height:30px}.tg-page-css-0bf95b359416 .height_2{height:438px}.tg-page-css-0bf95b359416 .text-categorie{padding:40px;background-color:rgb(238,238,238);width:281px;height:339px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .divheader{display:inline-block;float:right;position:relative;right:25px;height:70px;z-index:999}.tg-page-css-0bf95b359416 .step{width:5px;margin-left:0px;display:inline-block;height:30px;top:8px}.tg-page-css-0bf95b359416 .menu-hide{margin-left:-5px;margin-top:-5px;display:inline-block !important}.tg-page-css-0bf95b359416 .border-top{border-top-width:1px;border-top-style:solid;border-top-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-bottom{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-right{border-right-width:1px;border-right-style:solid;border-right-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-left{border-right-width:1px;border-right-style:solid;border-right-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .partenaires{width:100%;margin:auto}.tg-page-css-0bf95b359416 .partenaires div{padding:10px 0px;text-align:center;float:left;height:88px}.tg-page-css-0bf95b359416 .home{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .home div{display:table-row;line-height:1.4em;font-size:16px;white-space:nowrap}.tg-page-css-0bf95b359416 .home p{font-size:inherit;overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed;color:rgb(0,0,0);font-weight:500;font-family:Lato}.tg-page-css-0bf95b359416 .home span.spacer{display:table-cell}.tg-page-css-0bf95b359416 .home p{padding:0px 10px}.tg-page-css-0bf95b359416 .home span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(214,214,214);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .tophome{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .tophome div{display:table-row;text-align:center;text-transform:uppercase;font-size:31px;line-height:1.4em;font-family:Lato;font-weight:700;white-space:nowrap;color:rgb(0,0,0)}.tg-page-css-0bf95b359416 .tophome p{font-size:inherit;overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed}.tg-page-css-0bf95b359416 .tophome span.spacer{display:table-cell}.tg-page-css-0bf95b359416 .tophome p{padding:0px 10px}.tg-page-css-0bf95b359416 .tophome span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;border-top-width:1px;border-top-style:dotted;border-top-color:rgb(0,0,0);color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home{display:-webkit-box;-webkit-box-pack:center;height:655px;padding:12px;background-image:url("/assets/design-system/production/img/Chemise_sur_mesure_home_1.jpg");background-size:cover;text-align:center;color:rgb(255,255,255);margin-bottom:50px;background-position:50% 0%;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .header-home .contenu{width:100%;height:100%;border:1px dashed rgb(179,179,179);padding-top:300px}.tg-page-css-0bf95b359416 .topslide{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .topslide div{display:table-row;text-align:center;white-space:nowrap}.tg-page-css-0bf95b359416 .topslide p{overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed;text-transform:uppercase;font-size:2rem;line-height:1.4em;font-weight:bold;margin-bottom:10px;text-shadow:rgba(0,0,0,0.498039) 0px 0px 10px}.tg-page-css-0bf95b359416 .topslide span.spacer,.tg-page-css-0bf95b359416 .topslide span.space{display:table-cell}.tg-page-css-0bf95b359416 .topslide p{padding:0px 20px}.tg-page-css-0bf95b359416 .topslide span.spacer::after{display:inline-block;width:50%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:right;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .topslide span.space::after{display:inline-block;width:50%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:left;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home .contenu span{font-size:1.5rem;margin-bottom:20px}.tg-page-css-0bf95b359416 .header-home .contenu .prix{display:block;font-size:4rem;margin-bottom:30px}.tg-page-css-0bf95b359416 .btn-rose-home{padding:10px 100px !important}.tg-page-css-0bf95b359416 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 #background5{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .menu-lateral{max-width:400px;max-height:620px}.tg-page-css-0bf95b359416 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:25px;top:20px;z-index:101;left:0px !important}.tg-page-css-0bf95b359416 .panier-btn-img{display:block;margin-right:10px;width:25%}.tg-page-css-0bf95b359416 .hide-text{display:block}.tg-page-css-0bf95b359416 .header-home h1{font-size:40px}.tg-page-css-0bf95b359416 .filtres-catalogue-mobile{display:none}.tg-page-css-0bf95b359416 .filtres-catalogue-home{display:-webkit-box;-webkit-box-pack:justify;-webkit-box-align:center;height:100px;border:none;overflow:visible;padding:0px;margin-bottom:0px;background-color:rgb(24,136,115);background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li{height:30px;line-height:30px;-webkit-box-flex:1;text-align:center;font-size:1em;position:relative;background-color:rgb(255,255,255);margin-right:10px;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;border-bottom-left-radius:5px;max-width:220px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span{margin-bottom:0px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span span{background-color:rgb(6,105,95);width:40px;height:31px;position:absolute;top:0px;right:0px;border-top-left-radius:0px;border-top-right-radius:5px;border-bottom-right-radius:5px;border-bottom-left-radius:0px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span span::after{content:'';display:block;height:11px;width:14px;background-image:url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png");position:absolute;top:8px;left:12px;background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .filtre-menu-deroulant{display:none;overflow:overlay;position:absolute;top:30px;left:0px;background-color:rgb(255,255,255);width:100%;text-align:left;border:1px solid rgb(230,230,230);box-shadow:rgba(0,0,0,0.0470588) 0px 10px 30px 0px;-webkit-box-shadow:rgba(0,0,0,0.0470588) 0px 10px 30px 0px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .filtre-menu-deroulant li{font-size:1em;padding-left:10px;background-position:85% 50%}.tg-page-css-0bf95b359416 .logo-tisseur{-webkit-box-pack:justify}}@media screen and (max-width:767px){.tg-page-css-0bf95b359416 .text-categorie{padding:40px;background-color:rgb(238,238,238);width:100%;height:100%;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 #header{top:45px}.tg-page-css-0bf95b359416 .title-modele{font-size:18px;margin-bottom:10px;font-family:Lato,sans-serif;line-height:25px}.tg-page-css-0bf95b359416 .height_2{height:300px}.tg-page-css-0bf95b359416 .margin95{margin-top:40px !important}.tg-page-css-0bf95b359416 .img-categorie{margin-top:-20px}.tg-page-css-0bf95b359416 .img-categorie img{width:100%}.tg-page-css-0bf95b359416 .info-cookie{padding:20px 0px}.tg-page-css-0bf95b359416 #barre{padding-top:20px;padding-bottom:20px}.tg-page-css-0bf95b359416 .divheader{display:inline-block;float:right;position:relative;right:10px;height:70px;z-index:999}.tg-page-css-0bf95b359416 .chemise-catalogue-photo img{width:auto;height:100%}.tg-page-css-0bf95b359416 .chemise-catalogue-photo{height:180px;padding:0px}.tg-page-css-0bf95b359416 .modele-cataloguee{font-size:14px}.tg-page-css-0bf95b359416 .chemise-catalogue{height:100% !important;margin:20px auto !important}.tg-page-css-0bf95b359416 .border-top{border-top-width:1px;border-top-style:solid;border-top-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214);border-right-width:1px;border-right-style:solid;border-right-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-bottom{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214);border-right-width:1px;border-right-style:solid;border-right-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-right{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .filtres-catalogue-container-tissus-home{height:100%;width:100%;position:relative;z-index:10;margin-top:20px;margin-bottom:50px}.tg-page-css-0bf95b359416 .partenaires{width:100%}.tg-page-css-0bf95b359416 .partenaires div{padding:10px 0px;text-align:center;float:left;height:88px}.tg-page-css-0bf95b359416 .home{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .home div{display:table-row;line-height:1.4em;font-size:16px;white-space:nowrap}.tg-page-css-0bf95b359416 .home p{font-size:inherit;overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed;color:rgb(0,0,0);font-weight:500;font-family:Lato}.tg-page-css-0bf95b359416 .home span.spacer{display:table-cell}.tg-page-css-0bf95b359416 .home p{padding:0px 10px}.tg-page-css-0bf95b359416 .home span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(214,214,214);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .tophome{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .tophome div{display:table-row;text-align:center;text-transform:uppercase;font-size:31px;line-height:1.4em;font-family:Lato;font-weight:700;white-space:nowrap;color:rgb(0,0,0)}.tg-page-css-0bf95b359416 .tophome p{font-size:inherit;overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed}.tg-page-css-0bf95b359416 .tophome span.spacer{display:table-cell}.tg-page-css-0bf95b359416 .tophome p{padding:0px 10px}.tg-page-css-0bf95b359416 .tophome span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;border-top-width:1px;border-top-style:dotted;border-top-color:rgb(0,0,0);color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home{display:-webkit-box;-webkit-box-pack:center;height:455px;padding:12px;background-image:url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg");background-size:cover;text-align:center;color:rgb(255,255,255);margin-bottom:50px;background-position:50% 0%;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .header-home .contenu{width:100%;height:100%;border:1px dashed rgb(179,179,179);padding-top:150px}.tg-page-css-0bf95b359416 .topslide{display:table;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .topslide div{display:table-row;text-align:center;white-space:nowrap}.tg-page-css-0bf95b359416 .topslide p{overflow:hidden;display:table-cell;vertical-align:middle;width:1px;table-layout:fixed;text-transform:uppercase;font-size:2.8rem;line-height:1.4em;font-weight:bold;margin-bottom:10px;text-shadow:rgba(0,0,0,0.498039) 0px 0px 10px}.tg-page-css-0bf95b359416 .topslide span.spacer,.tg-page-css-0bf95b359416 .topslide span.space{display:table-cell}.tg-page-css-0bf95b359416 .topslide p{padding:0px 20px}.tg-page-css-0bf95b359416 .topslide span.spacer::after{display:inline-block;width:50%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:right;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .topslide span.space::after{display:inline-block;width:50%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:left;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home .contenu span{font-size:1rem;margin-bottom:20px}.tg-page-css-0bf95b359416 .header-home .contenu .prix{display:block;font-size:3rem;margin-bottom:30px}.tg-page-css-0bf95b359416 .btn-rose-home{padding:10px 100px !important}.tg-page-css-0bf95b359416 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .btn-rose{font-size:15px !important}.tg-page-css-0bf95b359416 .hamburger{padding-left:0px !important}.tg-page-css-0bf95b359416 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:0px;top:21px;z-index:101;margin-right:0px !important}.tg-page-css-0bf95b359416 .panier-btn-img{display:block}.tg-page-css-0bf95b359416 .hide-text{display:none}.tg-page-css-0bf95b359416 .filtres-catalogue-home{background-color:rgb(255,255,255)}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li{padding:10px 0px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span{color:rgb(85,85,85);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221,221,221);height:30px}.tg-page-css-0bf95b359416 .filtres-catalogue-home > li span span{background-color:rgb(255,255,255);width:40px;height:30px;position:relative;float:left;margin-left:calc(100% - 30px);margin-top:-25px;right:0px;border:none}.tg-page-css-0bf95b359416 #sptis::after,.tg-page-css-0bf95b359416 #spmot::after{content:'';display:block;height:12px;width:19px;background-image:url("/assets/design-system/production/img/arrow_down.png");position:absolute;top:10px;left:45px;background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .filtre-menu-deroulant{display:none}.tg-page-css-0bf95b359416 .fermer-popup{display:none}}@media screen and (min-width:992px){.tg-page-css-0bf95b359416 .border-top{border-top-width:1px;border-top-style:solid;border-top-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-bottom{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(214,214,214);border-left-width:1px;border-left-style:solid;border-left-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-right{border-right-width:1px;border-right-style:solid;border-right-color:rgb(214,214,214)}.tg-page-css-0bf95b359416 .border-left{border-right-width:0px}.tg-page-css-0bf95b359416 .info-livraison-container p{font-size:1em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}.tg-page-css-0bf95b359416 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-0bf95b359416 .header-home h1{font-size:40px}.tg-page-css-0bf95b359416 .filtre-menu-deroulant li{font-size:1em}.tg-page-css-0bf95b359416 .burger-menu{width:130px;display:-webkit-box;-webkit-box-align:center;height:70px;position:relative;left:1%;padding-top:3px}.tg-page-css-0bf95b359416 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;left:87%;top:25px;z-index:101}}@media screen and (max-width:991px){.tg-page-css-0bf95b359416 .panier-content-hover{display:none}.tg-page-css-0bf95b359416 .info-livraison-container p{font-size:1em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}.tg-page-css-0bf95b359416 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:relative;left:10px;padding-top:35px}.tg-page-css-0bf95b359416 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-0bf95b359416 .header-home h1{font-size:40px}.tg-page-css-0bf95b359416 .filtre-menu-deroulant li{font-size:1em}}.tg-page-css-0bf95b359416 #header{position:fixed;left:0px;width:100%;z-index:1030;height:70px;background-color:white;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .search{font-size:16px;color:rgb(255,255,255);margin-right:10px;width:20%}.tg-page-css-0bf95b359416 footer{position:relative;bottom:0px;width:100%;margin-top:40px}.tg-page-css-0bf95b359416 #footer-main{background-color:rgb(46,62,87)}.tg-page-css-0bf95b359416 #footer-main ul{list-style:none}.tg-page-css-0bf95b359416 #footer-main ul li{text-decoration:none;margin-top:25px;text-align:center}.tg-page-css-0bf95b359416 #footer-main ul li img{max-width:70px}.tg-page-css-0bf95b359416 .footer-help{border:1px solid rgb(255,255,255);padding:10px;margin:10px 0px}.tg-page-css-0bf95b359416 .footer-help a{font-size:17px;color:rgb(255,255,255)}.tg-page-css-0bf95b359416 #background3{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.3;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 #footer-main{min-height:100px;padding-top:5px;padding-bottom:20px}.tg-page-css-0bf95b359416 .cwhite{color:rgb(255,255,255)}.tg-page-css-0bf95b359416 .fsize17{font-size:17px}.tg-page-css-0bf95b359416 .fsize21{font-size:21px}.tg-page-css-0bf95b359416 .tcenter{text-align:center}.tg-page-css-0bf95b359416 .tjustify{text-align:justify}.tg-page-css-0bf95b359416 .mb25{margin-bottom:25px}.tg-page-css-0bf95b359416 .ml0{margin-left:0px}.tg-page-css-0bf95b359416 .w100p{width:100%}.tg-page-css-0bf95b359416 .z1500{z-index:1500}.tg-page-css-0bf95b359416 .bbnone{border-bottom-style:none}.tg-page-css-0bf95b359416 .style0007{color:rgb(255,255,255);font-size:17px;display:table;margin:25px auto}@media screen and (max-width:860px){.tg-page-css-0bf95b359416 .panier-btn-img{width:100% !important}.tg-page-css-0bf95b359416 .hide-text{display:none !important}}@media screen and (max-width:245px){.tg-page-css-0bf95b359416 .btn-rose{display:inline-block;padding:10px;font-size:0.7em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:50px;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .info-livraison-container p{font-size:0.7em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}}@media screen and (max-width:568px){.tg-page-css-0bf95b359416 .topslide{display:block;width:100%;max-width:100%;margin:0px !important}.tg-page-css-0bf95b359416 .topslide div{display:block;text-align:center;white-space:normal}.tg-page-css-0bf95b359416 .topslide p{overflow:hidden;display:block;vertical-align:middle;width:100%;table-layout:fixed;text-transform:uppercase;font-size:1.2rem;line-height:1.4em;font-weight:bold;margin-bottom:10px;text-shadow:rgba(0,0,0,0.498039) 0px 0px 10px}.tg-page-css-0bf95b359416 .topslide span.spacer,.tg-page-css-0bf95b359416 .topslide span.space{display:none}.tg-page-css-0bf95b359416 .topslide p{padding:0px 20px}.tg-page-css-0bf95b359416 .topslide span.spacer::after{display:inline-block;width:0%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:right;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .topslide span.space::after{display:inline-block;width:0%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:35px;float:left;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 h2{font-size:25px}.tg-page-css-0bf95b359416 .tophome{display:block;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .tophome div{display:block;text-align:center;text-transform:uppercase;font-size:24px;line-height:1.4em;font-family:Lato;font-weight:700;white-space:normal;color:rgb(0,0,0)}.tg-page-css-0bf95b359416 .tophome p{font-size:inherit;overflow:hidden;display:block;vertical-align:middle;width:100%}.tg-page-css-0bf95b359416 .tophome span.spacer{display:none}.tg-page-css-0bf95b359416 .tophome p{padding:0px 10px}.tg-page-css-0bf95b359416 .tophome span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;border-top-width:1px;border-top-style:dotted;border-top-color:rgb(0,0,0);color:transparent;height:1px;background-color:rgb(255,255,255);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .home{display:block;width:100%;max-width:100%;margin:20px 0px}.tg-page-css-0bf95b359416 .home div{display:block;line-height:1.4em;font-size:16px}.tg-page-css-0bf95b359416 .home p{font-size:inherit;overflow:hidden;display:block;vertical-align:middle;text-align:center;white-space:normal;width:100%;color:rgb(0,0,0);font-weight:500;font-family:Lato}.tg-page-css-0bf95b359416 .home span.spacer{display:none}.tg-page-css-0bf95b359416 .home p{padding:0px}.tg-page-css-0bf95b359416 .home span.spacer::after{display:inline-block;width:100%;content:'.';font-size:0px;color:transparent;height:1px;background-color:rgb(214,214,214);vertical-align:middle;position:relative;top:-1px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home{display:-webkit-box;-webkit-box-pack:center;height:455px;padding:12px;background-image:url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg");background-size:cover;text-align:center;color:rgb(255,255,255);margin-bottom:20px;background-position:50% 0%;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .header-home .contenu{width:100%;height:100%;border:1px dashed rgb(179,179,179);padding-top:200px}.tg-page-css-0bf95b359416 .header-home .contenu h1{text-transform:none;font-size:0.8rem;line-height:1.4em;width:100%;font-weight:normal;margin-bottom:10px;text-shadow:rgba(0,0,0,0.498039) 0px 0px 10px}.tg-page-css-0bf95b359416 .header-home .contenu h1::before,.tg-page-css-0bf95b359416 .header-home .contenu h1::after{display:inline-block;content:'';height:1px;background-color:rgb(255,255,255);width:1.2rem;margin:0px 0.2rem;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .header-home .contenu span{font-size:0.8rem;margin-bottom:20px}.tg-page-css-0bf95b359416 .header-home .contenu .prix{display:block;font-size:2.5rem;margin-bottom:30px}.tg-page-css-0bf95b359416 .btn-rose{padding:10px;width:90%;height:100%}.tg-page-css-0bf95b359416 .btn-rose-home{padding:10px 50px !important}.tg-page-css-0bf95b359416 .panier-btn-img{width:100% !important}.tg-page-css-0bf95b359416 .hide-text{display:none}}@media only screen and (min-width:1023px){.tg-page-css-0bf95b359416 .panier-btn{left:86.5%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:50%;position:absolute;display:none;right:calc(53% - 501px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1280px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 596px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1472px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 597px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1440px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 599px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1600px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 602px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1680px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:32%;position:absolute;display:none;right:calc(52% - 604px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1920px){.tg-page-css-0bf95b359416 .panier-btn{left:88.6%}.tg-page-css-0bf95b359416 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 609px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (max-width:500px){.tg-page-css-0bf95b359416 #stripe{width:65px !important;margin-top:-6px !important}.tg-page-css-0bf95b359416 .footer-help a{font-size:15px !important}}.tg-page-css-0bf95b359416 .custom-dropdown_select{font-size:inherit;padding:0.5em;margin:0px}.tg-page-css-0bf95b359416 .custom-dropdown_select--white{background-color:rgb(24,136,115);color:rgb(255,255,255)}.tg-page-css-0bf95b359416 #footer_language_list{margin-top:12px;text-align:left;float:left}.tg-page-css-0bf95b359416 #menu_language_list{text-align:left;float:left}.tg-page-css-0bf95b359416 #footer_language_list ul{list-style:none;margin:0px;padding:0px}.tg-page-css-0bf95b359416 #footer_language_list ul li{display:inline-block;margin:0px 7px;padding:0px;color:rgb(153,153,153);font-size:15px}.tg-page-css-0bf95b359416 #footer_language_list ul li:first-child{margin-left:0px;margin-right:7px}.tg-page-css-0bf95b359416 #footer_language_list ul li img{margin-top:-3px}.tg-page-css-0bf95b359416 #country-indicator{color:rgb(255,255,255);margin-top:10px}.tg-page-css-0bf95b359416 #country-indicator > span::after{content:'';display:inline-block;height:13px;width:14px;background-image:url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png");position:relative;top:-2px;left:12px;background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-0bf95b359416 .flag.country[data-locale$="FR"]::before{background-image:url("/assets/design-system/production/img/FR.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="DE"]::before{background-image:url("/assets/design-system/production/img/DE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="NL"]::before{background-image:url("/assets/design-system/production/img/NL.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="ES"]::before{background-image:url("/assets/design-system/production/img/ES.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="IT"]::before{background-image:url("/assets/design-system/production/img/IT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="GB"]::before{background-image:url("/assets/design-system/production/img/GB.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="BE"]::before{background-image:url("/assets/design-system/production/img/BE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="CH"]::before{background-image:url("/assets/design-system/production/img/CH.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="US"]::before{background-image:url("/assets/design-system/production/img/US.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="AT"]::before{background-image:url("/assets/design-system/production/img/AT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag.country[data-locale$="LU"]::before{background-image:url("/assets/design-system/production/img/LU.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-0bf95b359416 .flag::before{display:inline-block;margin-top:5px;content:'';width:19px;height:13px;margin-right:0.6em}.tg-page-css-0bf95b359416 .info-cookie{background-color:rgb(33,48,78);position:fixed;bottom:-50px;left:0px;width:100%;z-index:1500}.tg-page-css-0bf95b359416 .zindex{z-index:9999}.tg-page-css-0bf95b359416 .badge{display: inline-block;min-width: 10px;
    padding: 3px 7px;
    ont-size: 12px;
    color: #fff;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}
@media (min-width: 992px)
.col-md-4{
    width: 33.33333333%;
}
@media (min-width: 992px)
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9{
    float: left;
}
@media (min-width: 768px)
.col-sm-4{
    width: 33.33333333%;
}
.tg-page-css-0bf95b359416 #footer-main ul li{
    text-decoration: none;
    margin-top: 20px;
    text-align: left !important;
    font-size: 14px;
}
.tg-page-css-0bf95b359416 .footer-col ul li a{
color: rgb(255,255,255,0.8);
	}
.tg-page-css-0bf95b359416 .footer-col ul li a:hover{
text-decoration: underline;
	}
.tg-page-css-0bf95b359416 #footer-main h5{
	font-size: 18px;
	font-weight: 600;
	margin-bottom:40px;
}
.tg-page-css-0bf95b359416 #footer-main .icons img{
    max-width: 50px;
    height: auto;
}
.tg-page-css-0bf95b359416 .style0007{
    color: #FFF;
    font-size: 17px;
    display: table;
    margin: 25px 0px; */
}
.tg-page-css-0bf95b359416 #country-indicator{
    color: #fff;
    font-size: 16px;
    margin-top: 0px;
}
.tg-page-css-0bf95b359416 .LanguageSwitcher{
    border: 1px solid #188873;
    white-space: nowrap;
    right: 0%;
    left: inherit;
    transform: translate(-0%, 0) !important;
    width: 1000px;
    bottom: 30%;
}
.tg-page-css-0bf95b359416 .cont{margin:30px auto 60px auto}
.tg-page-css-0bf95b359416 .bordere{border-right:1px solid #C6C6C6;}
.tg-page-css-0bf95b359416 .height-dv{height: 93px}
.tg-page-css-0bf95b359416 .picto{padding:20px;display:block;width:100px;height:100px;border: 1px dashed #C6C6C6;border-radius: 100%;}
.tg-page-css-0bf95b359416 .picto img{width:55px;height:auto;}
.tg-page-css-0bf95b359416 .pi-text{padding:10px;display: block;width:70%;line-height:24px;font-size:18px; margin-left:120px;}
.tg-page-css-0bf95b359416 .mrg-1{margin-top: -100px}
.tg-page-css-0bf95b359416 .mrg-2{margin-top: -90px;}
.tg-page-css-0bf95b359416 .dv{padding-left:10px}
@media screen and (max-width:768px){
.tg-page-css-0bf95b359416 .catalogue{
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, minmax(176px, 1fr));
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        gap:0.8rem 0.8rem;
        -ms-grid-row-align: stretch;
        align-self: stretch;
        -ms-flex-wrap: wrap;
    }
.tg-page-css-0bf95b359416 .line-product{
    display: flex;
    min-width: 176px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    flex: 1 0 0px;
}
.tg-page-css-0bf95b359416 .LanguageSwitcher{
    border: 1px solid #188873;
    white-space: nowrap;
    right: 0%;
    left: inherit;
    transform: translate(-0%, 0) !important;
    width: 100%;
    bottom: 30%;
}

.tg-page-css-0bf95b359416 .categorie-link:hover{color:#000 !important}
.tg-page-css-0bf95b359416 #footer-main{padding: 20px 50px}
.tg-page-css-0bf95b359416 .footer-col ul li a{
line-height: 20px;
	}
.tg-page-css-0bf95b359416 .footer-col{margin-bottom: 30px;}
.tg-page-css-0bf95b359416 #stripe{
    width: 65px !important;
    margin-top:-8px !important;
}
.tg-page-css-0bf95b359416 #footer-main ul li{

    margin-top:15px;

}
.tg-page-css-0bf95b359416 #footer-main h5{
	margin-bottom: 30px;
}

.tg-page-css-0bf95b359416 .disnone{
	display: none;
}
.tg-page-css-0bf95b359416 .disblock{
	display: block;
}
.tg-page-css-0bf95b359416 .height-dv{
    height: 118px;
    margin-bottom: 20px;
}
.tg-page-css-0bf95b359416 .bordere{border: none}
.tg-page-css-0bf95b359416 .pi-text{
	margin-left: 100px !important;font-size: 16px !important
}
.tg-page-css-0bf95b359416 .dv{padding-left: 0px !important}
.tg-page-css-0bf95b359416 strong{font-weight: 700;font-size:18px !important}
}
@media screen and (min-width: 769px){
	.tg-page-css-0bf95b359416 body{padding-top:0px !important}
.tg-page-css-0bf95b359416 .line-product{
    display: flex;
    min-width: 176px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    flex: 1 0 0px;
}
    .tg-page-css-0bf95b359416 .catalogue{width:100%;    display: grid;
    grid-template-columns: repeat(2, minmax(176px, 1fr));
    align-items: flex-start;
    align-content: flex-start;
    align-self: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem calc(8rem / 2);}
.tg-page-css-0bf95b359416 .header__icon--close{display: none}
.tg-page-css-0bf95b359416 .col-lg-4{
    width: 33.33333333%;
}.tg-page-css-0bf95b359416 .col-lg-5{
    width: 41.66666667%;

}.tg-page-css-0bf95b359416 .col-lg-3{
    width: 25%;
}.tg-page-css-0bf95b359416 .col-lg-1,.tg-page-css-0bf95b359416 .col-lg-10,.tg-page-css-0bf95b359416 .col-lg-11,.tg-page-css-0bf95b359416 .col-lg-12,.tg-page-css-0bf95b359416 .col-lg-2,.tg-page-css-0bf95b359416 .col-lg-3,.tg-page-css-0bf95b359416 .col-lg-4,.tg-page-css-0bf95b359416 .col-lg-5,.tg-page-css-0bf95b359416 .col-lg-6,.tg-page-css-0bf95b359416 .col-lg-7,.tg-page-css-0bf95b359416 .col-lg-8,.tg-page-css-0bf95b359416 .col-lg-9{
    float: left;
}
.tg-page-css-0bf95b359416 .header-home{background:rgb(0,0,0,0.1);height:550px !important;padding:0px !important}
 .tg-page-css-0bf95b359416 .burger-menu{display:none !important}
 .tg-page-css-0bf95b359416 #openMenu{width:130px !important}
 .tg-page-css-0bf95b359416 .hamburger{width:130px}
 .tg-page-css-0bf95b359416 .header-home{margin-top:30px}
 .tg-page-css-0bf95b359416 .contenu{flex-direction:row}
 .tg-page-css-0bf95b359416 .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
 .tg-page-css-0bf95b359416 .div2{width:54%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;}
}
.tg-page-css-0bf95b359416 .temoignages-titre h2{font-family:var(--font-family-h);font-weight: 800;}
.tg-page-css-0bf95b359416 .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-page-css-0bf95b359416 strong{font-weight: 900 !important;font-size:20px}
.tg-page-css-0bf95b359416 .menu2{display:flex;align-items:center;margin-left:15px}.tg-page-css-0bf95b359416 .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items: center;}.tg-page-css-0bf95b359416 .menu2 a{font-weight:900;font-family:var(--font-family-regular);position:relative}
.tg-page-css-0bf95b359416 .menu2 a:hover{color:#000}
.tg-page-css-0bf95b359416 .divheader a{font-family: var(--font-family-regular);font-weight: 500;font-size: 0.8rem;}.tg-page-css-0bf95b359416 p{font-family:var(--font-family-regular);font-weight:400}
.tg-page-css-0bf95b359416 .menu2 li img{height:10px;margin-left:8px}
.tg-page-css-0bf95b359416 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 51px;
top: 180px;
z-index: 99;
}
@media screen and (max-width: 768px){
	.tg-page-css-0bf95b359416 body{padding-top:70px !important}
.tg-page-css-0bf95b359416 .menu-lateral-container{transform: translate(0);left:-100% !important;-webkit-transition: all 0.8s;
    transition: all 0.8s;}
.tg-page-css-0bf95b359416 .header-home .contenu h1::before,.tg-page-css-0bf95b359416 .header-home .contenu h1::after{display:none !important}
.tg-page-css-0bf95b359416 .header-home{background:transparent;height:100% !important;padding:0px !important}
.tg-page-css-0bf95b359416 .burger-menu{display:block}
.tg-page-css-0bf95b359416 .header-home{margin-top:0px}
.tg-page-css-0bf95b359416 .menu2{display:none}
.tg-page-css-0bf95b359416 .divheader,.tg-page-css-0bf95b359416 #connect{display:none}
.tg-page-css-0bf95b359416 #openMenu{width:90px !important}
.tg-page-css-0bf95b359416 .hamburger{width:90px !important}
.tg-page-css-0bf95b359416 .header-home{margin-top:0px}
.tg-page-css-0bf95b359416 .contenu{flex-direction:column}
.tg-page-css-0bf95b359416 .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-page-css-0bf95b359416 .div2{width:100%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-page-css-0bf95b359416 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}
.tg-page-css-0bf95b359416 .divheader{align-items:center}
.tg-page-css-0bf95b359416 .navbar-brand a img{width:160px}
.tg-page-css-0bf95b359416 .menu2 .link-1::after,.tg-page-css-0bf95b359416 .menu2 .link-2::after{
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-page-css-0bf95b359416 .menu2 .link-1::after{width:100%}
.tg-page-css-0bf95b359416 .menu2 .link-2:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-0bf95b359416 .link-b{margin-top:30px;}
.tg-page-css-0bf95b359416 .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-page-css-0bf95b359416 .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background-color: #fff;}
.tg-page-css-0bf95b359416 .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-0bf95b359416 .link-b a:hover{color:#fff}
.tg-page-css-0bf95b359416 .categorie-link{
background-color: #transparent;
color: #000;
padding: 1rem 1.625rem;
display: inline-block;
margin: 7px 5px 7px 0;
display: inline-block;
font-family:var(--font-family-regular);
font-size: 18px;
font-weight: 600;
}
.tg-page-css-0bf95b359416 .line-with-dots{
display: flex;
align-items: center;
color: #2f3c55; /* Couleur du texte */
font-weight: bold;
font-size: 18px;
font-family:var(--font-family-regular);
font-weight:800;
margin:30px auto;
}

.tg-page-css-0bf95b359416 .line-with-dots::after{
content: '---------------------------------------------------------------------------------------------------------------------------------------';
flex-grow: 1;
margin-left: 10px;
}
.tg-page-css-0bf95b359416 .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-page-css-0bf95b359416 .scrollenone{overflow: hidden !important;}
.tg-page-css-0bf95b359416 .header__icon--close{
    width: 1rem;
    position: fixed;
    top: .8rem;
    right:20px;
    opacity: 1;
    z-index: 4;
    color: #000;
    background-color: #fff;
}
.tg-page-css-0bf95b359416 #background3{z-index:9999 !important}
.tg-page-css-0bf95b359416 .visible{
    display: block !important;
}
.tg-page-css-0bf95b359416 .rotate{
  transform: rotate(90deg);
}
.tg-page-css-0bf95b359416 .modele-cataloguee{text-transform:uppercase}
.tg-page-css-0bf95b359416 .link-3:hover{color:#fff !important ;}

/* styles de page dédupliqués: 328522de8146 */
.tg-page-css-328522de8146{--font-family-h:'Gotham-Medium', sans-serif;--font-family-regular: 'Gotham-book',sans-serif}
.tg-page-css-328522de8146 img{border:0px}.tg-page-css-328522de8146 body{margin:0px}.tg-page-css-328522de8146 .col-xs-12{float:left}html.tg-page-css-328522de8146{font-family:sans-serif}.tg-page-css-328522de8146 footer{display:block}.tg-page-css-328522de8146 [hidden]{display:none}.tg-page-css-328522de8146 a{background-color:transparent}.tg-page-css-328522de8146 b{font-weight:700}.tg-page-css-328522de8146 h1{margin:0.67em 0px}.tg-page-css-328522de8146 img{vertical-align:middle}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 input,.tg-page-css-328522de8146 select{color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;margin:0px}.tg-page-css-328522de8146 button{overflow:visible}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 select{text-transform:none}.tg-page-css-328522de8146 button{-webkit-appearance:button}.tg-page-css-328522de8146 table{border-collapse:collapse;border-spacing:0px}.tg-page-css-328522de8146 td{padding:0px}.tg-page-css-328522de8146 body{background-color:rgb(255,255,255)}.tg-page-css-328522de8146 *,.tg-page-css-328522de8146 ::after,.tg-page-css-328522de8146 ::before{box-sizing:border-box}html.tg-page-css-328522de8146{font-size:10px}.tg-page-css-328522de8146 body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:rgb(51,51,51)}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 input,.tg-page-css-328522de8146 select{font-family:inherit;font-size:inherit;line-height:inherit}.tg-page-css-328522de8146 a{color:rgb(51,122,183);text-decoration:none}.tg-page-css-328522de8146 .carousel-inner > .item > img,.tg-page-css-328522de8146 .thumbnail > img{display:block;max-width:100%;height:auto}.tg-page-css-328522de8146 h1,.tg-page-css-328522de8146 h2{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-page-css-328522de8146 h1,.tg-page-css-328522de8146 h2{margin-top:20px;margin-bottom:10px}.tg-page-css-328522de8146 h1{font-size:36px}.tg-page-css-328522de8146 h2{font-size:30px}.tg-page-css-328522de8146 p{margin:0px 0px 10px}.tg-page-css-328522de8146 table{background-color:transparent}.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul{margin-top:0px}.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul{margin-bottom:10px}@media (min-width:768px){.tg-page-css-328522de8146 .row-info{margin-bottom:20px;margin-top:20px;}.tg-page-css-328522de8146 .container{width:740px}}.tg-page-css-328522de8146 .container,.tg-page-css-328522de8146 .container-fluid{margin-right:auto;margin-left:auto}.tg-page-css-328522de8146 .container,.tg-page-css-328522de8146 .container-fluid{padding-left:10px;padding-right:10px}@media (min-width:992px){.tg-page-css-328522de8146 .container{width:960px}}@media (min-width:1200px){.tg-page-css-328522de8146 .container{width:1160px}}.tg-page-css-328522de8146 .row{margin-left:0px !important;margin-right:0px !important}.tg-page-css-328522de8146 .col-lg-6,.tg-page-css-328522de8146 .col-md-2,.tg-page-css-328522de8146 .col-md-5,.tg-page-css-328522de8146 .col-md-6,.tg-page-css-328522de8146 .col-sm-12,.tg-page-css-328522de8146 .col-sm-6,.tg-page-css-328522de8146 .col-xs-12{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-page-css-328522de8146 .col-xs-12{width:100%}@media (min-width:768px){.tg-page-css-328522de8146 .col-sm-12,.tg-page-css-328522de8146 .col-sm-6{float:left}.tg-page-css-328522de8146 .col-sm-12{width:100%}.tg-page-css-328522de8146 .col-sm-6{width:50%}}@media (min-width:992px){.tg-page-css-328522de8146 .col-md-2,.tg-page-css-328522de8146 .col-md-5,.tg-page-css-328522de8146 .col-md-6{float:left}.tg-page-css-328522de8146 .col-md-6{width:50%}.tg-page-css-328522de8146 .col-md-5{width:41.66666667%}.tg-page-css-328522de8146 .col-md-2{width:16.66666667%}}@media (min-width:1200px){.tg-page-css-328522de8146 .col-lg-6{float:left}.tg-page-css-328522de8146 .col-lg-6{width:50%}}.tg-page-css-328522de8146 .navbar-brand{float:left;padding:10px 10px;font-size:18px;line-height:20px;height:50px}.tg-page-css-328522de8146 .thumbnail{display:block}.tg-page-css-328522de8146 .thumbnail{margin-bottom:20px}.tg-page-css-328522de8146 .thumbnail{padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);border:1px solid rgb(221,221,221);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.tg-page-css-328522de8146 .thumbnail > img{margin-left:auto;margin-right:auto}.tg-page-css-328522de8146 .carousel,.tg-page-css-328522de8146 .carousel-inner{position:relative}.tg-page-css-328522de8146 .carousel-inner{overflow:hidden;width:100%}.tg-page-css-328522de8146 .carousel-inner > .item{display:none;position:relative}.tg-page-css-328522de8146 .carousel-inner > .item > img{line-height:1}@media not all,(-webkit-transform-3d){.tg-page-css-328522de8146 .carousel-inner > .item{-webkit-backface-visibility:hidden;-webkit-perspective:1000px}.tg-page-css-328522de8146 .carousel-inner > .item.active{-webkit-transform:translate3d(0px,0px,0px);left:0px}}.tg-page-css-328522de8146 .carousel-inner > .active{display:block}.tg-page-css-328522de8146 .carousel-inner > .active{left:0px}.tg-page-css-328522de8146 .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0px;list-style:none;text-align:center}.tg-page-css-328522de8146 .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid rgb(255,255,255);border-top-left-radius:10px;border-top-right-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px;background-color:rgba(0,0,0,0)}.tg-page-css-328522de8146 .carousel-indicators .active{margin:0px;width:12px;height:12px;background-color:rgb(255,255,255)}@media screen and (min-width:768px){.tg-page-css-328522de8146 .carousel-indicators{bottom:20px}}.tg-page-css-328522de8146 .container-fluid::after,.tg-page-css-328522de8146 .container-fluid::before,.tg-page-css-328522de8146 .container::after,.tg-page-css-328522de8146 .container::before,.tg-page-css-328522de8146 .row::after,.tg-page-css-328522de8146 .row::before{content:' ';display:table}.tg-page-css-328522de8146 .container-fluid::after,.tg-page-css-328522de8146 .container::after,.tg-page-css-328522de8146 .row::after{clear:both}.tg-page-css-328522de8146 img{border:0px}.tg-page-css-328522de8146 body{margin:0px}.tg-page-css-328522de8146 .col-xs-12{float:left}html.tg-page-css-328522de8146{font-family:sans-serif}.tg-page-css-328522de8146 footer{display:block}.tg-page-css-328522de8146 [hidden]{display:none}.tg-page-css-328522de8146 a{background-color:transparent}.tg-page-css-328522de8146 b{font-weight:700}.tg-page-css-328522de8146 h1{margin:0.67em 0px}.tg-page-css-328522de8146 img{vertical-align:middle}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 input,.tg-page-css-328522de8146 select{color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;margin:0px}.tg-page-css-328522de8146 button{overflow:visible}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 select{text-transform:none}.tg-page-css-328522de8146 button{-webkit-appearance:button}.tg-page-css-328522de8146 table{border-collapse:collapse;border-spacing:0px}.tg-page-css-328522de8146 td{padding:0px}.tg-page-css-328522de8146 body{background-color:rgb(255,255,255)}.tg-page-css-328522de8146 *,.tg-page-css-328522de8146 ::after,.tg-page-css-328522de8146 ::before{box-sizing:border-box}html.tg-page-css-328522de8146{font-size:10px}.tg-page-css-328522de8146 body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:rgb(51,51,51)}.tg-page-css-328522de8146 button,.tg-page-css-328522de8146 input,.tg-page-css-328522de8146 select{font-family:inherit;font-size:inherit;line-height:inherit}.tg-page-css-328522de8146 a{color:rgb(51,122,183);text-decoration:none}.tg-page-css-328522de8146 .carousel-inner > .item > img,.tg-page-css-328522de8146 .thumbnail > img{display:block;max-width:100%;height:auto}.tg-page-css-328522de8146 h1,.tg-page-css-328522de8146 h2{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-page-css-328522de8146 h1,.tg-page-css-328522de8146 h2{margin-top:20px;margin-bottom:10px}.tg-page-css-328522de8146 h1{font-size:36px}.tg-page-css-328522de8146 h2{font-size:30px}.tg-page-css-328522de8146 p{margin:0px 0px 10px}.tg-page-css-328522de8146 table{background-color:transparent}.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul{margin-top:0px}.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul{margin-bottom:10px}@media (min-width:768px){.tg-page-css-328522de8146 .container{width:740px}}.tg-page-css-328522de8146 .container,.tg-page-css-328522de8146 .container-fluid{margin-right:auto;margin-left:auto}.tg-page-css-328522de8146 .container,.tg-page-css-328522de8146 .container-fluid{padding-left:10px;padding-right:10px}@media (min-width:992px){.tg-page-css-328522de8146 .container{width:960px}}@media (min-width:1200px){.tg-page-css-328522de8146 .container{width:1160px}}.tg-page-css-328522de8146 .row{margin-left:-10px;margin-right:-10px}.tg-page-css-328522de8146 .col-lg-6,.tg-page-css-328522de8146 .col-md-2,.tg-page-css-328522de8146 .col-md-5,.tg-page-css-328522de8146 .col-md-6,.tg-page-css-328522de8146 .col-sm-12,.tg-page-css-328522de8146 .col-sm-6,.tg-page-css-328522de8146 .col-xs-12{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-page-css-328522de8146 .col-xs-12{width:100%}@media (min-width:768px){.tg-page-css-328522de8146 .col-sm-12,.tg-page-css-328522de8146 .col-sm-6{float:left}.tg-page-css-328522de8146 .col-sm-12{width:100%}.tg-page-css-328522de8146 .col-sm-6{width:50%}}@media (min-width:992px){.tg-page-css-328522de8146 .col-md-2,.tg-page-css-328522de8146 .col-md-5,.tg-page-css-328522de8146 .col-md-6{float:left}.tg-page-css-328522de8146 .col-md-6{width:50%}.tg-page-css-328522de8146 .col-md-5{width:41.66666667%}.tg-page-css-328522de8146 .col-md-2{width:16.66666667%}}@media (min-width:1200px){.tg-page-css-328522de8146 .col-lg-6{float:left}.tg-page-css-328522de8146 .col-lg-6{width:50%}}.tg-page-css-328522de8146 .navbar-brand{float:left;padding:15px 10px;font-size:18px;line-height:20px;height:50px}.tg-page-css-328522de8146 .thumbnail{display:block}.tg-page-css-328522de8146 .thumbnail{margin-bottom:20px}.tg-page-css-328522de8146 .thumbnail{padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);border:1px solid rgb(221,221,221);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.tg-page-css-328522de8146 .thumbnail > img{margin-left:auto;margin-right:auto}.tg-page-css-328522de8146 .carousel,.tg-page-css-328522de8146 .carousel-inner{position:relative}.tg-page-css-328522de8146 .carousel-inner{overflow:hidden;width:100%}.tg-page-css-328522de8146 .carousel-inner > .item{display:none;position:relative}.tg-page-css-328522de8146 .carousel-inner > .item > img{line-height:1}@media not all,(-webkit-transform-3d){.tg-page-css-328522de8146 .carousel-inner > .item{-webkit-backface-visibility:hidden;-webkit-perspective:1000px}.tg-page-css-328522de8146 .carousel-inner > .item.active{-webkit-transform:translate3d(0px,0px,0px);left:0px}}.tg-page-css-328522de8146 .carousel-inner > .active{display:block}.tg-page-css-328522de8146 .carousel-inner > .active{left:0px}.tg-page-css-328522de8146 .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0px;list-style:none;text-align:center}.tg-page-css-328522de8146 .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid rgb(255,255,255);border-top-left-radius:10px;border-top-right-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px;background-color:rgba(0,0,0,0)}.tg-page-css-328522de8146 .carousel-indicators .active{margin:0px;width:12px;height:12px;background-color:rgb(255,255,255)}@media screen and (min-width:768px){.tg-page-css-328522de8146 .carousel-indicators{bottom:20px}}.tg-page-css-328522de8146 .container-fluid::after,.tg-page-css-328522de8146 .container-fluid::before,.tg-page-css-328522de8146 .container::after,.tg-page-css-328522de8146 .container::before,.tg-page-css-328522de8146 .row::after,.tg-page-css-328522de8146 .row::before{content:' ';display:table}.tg-page-css-328522de8146 .container-fluid::after,.tg-page-css-328522de8146 .container::after,.tg-page-css-328522de8146 .row::after{clear:both}@font-face{font-family:Gotham-book;src:url("/assets/design-system/production/fonts/Gotham-Book.otf");font-style:normal}@font-face{font-family:Gotham-Medium;src:url("/assets/design-system/production/fonts/Gotham-Medium.otf")}.tg-page-css-328522de8146 .dinpro-medium{font-family:Gotham-Book,sans-serif;font-weight:700}.tg-page-css-328522de8146 .roboto-regular{font-family:Gotham-Book,sans-serif;font-weight:400}.tg-page-css-328522de8146 .roboto-medium{font-family:Gotham-Book,sans-serif;font-weight:700}.tg-page-css-328522de8146 .hide-text{display:none}html.tg-page-css-328522de8146,.tg-page-css-328522de8146 body,.tg-page-css-328522de8146 div,.tg-page-css-328522de8146 span,.tg-page-css-328522de8146 h1,.tg-page-css-328522de8146 h2,.tg-page-css-328522de8146 p,.tg-page-css-328522de8146 a,.tg-page-css-328522de8146 img,.tg-page-css-328522de8146 b,.tg-page-css-328522de8146 u,.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul,.tg-page-css-328522de8146 li,.tg-page-css-328522de8146 form,.tg-page-css-328522de8146 table,.tg-page-css-328522de8146 tbody,.tg-page-css-328522de8146 tr,.tg-page-css-328522de8146 td,.tg-page-css-328522de8146 footer,.tg-page-css-328522de8146 input{box-sizing:border-box;margin:0px;padding:0px;border:0px;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit}.tg-page-css-328522de8146 h1{box-sizing:border-box;margin:0px 0px 10px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;line-height:inherit;font-family:Gotham-Book,sans-serif;font-size:31px;font-weight:400}html.tg-page-css-328522de8146,.tg-page-css-328522de8146 body{height:100%;font-family:Gotham-Book,sans-serif;font-size:17px;font-weight:400}.tg-page-css-328522de8146 footer{display:block}.tg-page-css-328522de8146 body{font-size:17px;line-height:1;background-color:rgb(255,255,255);font-family:Gotham-Book,sans-serif;padding-top:70px;font-weight:400}.tg-page-css-328522de8146 ol,.tg-page-css-328522de8146 ul{list-style:none}.tg-page-css-328522de8146 table{border-collapse:collapse;border-spacing:0px}.tg-page-css-328522de8146 a{text-decoration:none;color:inherit;outline:rgb(0,0,0)}.tg-page-css-328522de8146 .info-livraison{background-color:rgb(33,48,78);position:fixed;top:0px;left:0px;width:100%;z-index:1500;padding:10px 0px;color:rgb(255,255,255);text-align:center;font-size:13px}.tg-page-css-328522de8146 .menu-lateral-container{display:none;position:fixed;z-index:99999;top:0px;bottom:0px;left:20px;right:0px;background-color:transparent;padding:0px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .menu-lateral{max-width:90%;height:100%;background-color:rgb(255,255,255);display:-webkit-box;overflow:auto;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .menu-top{width:100%}.tg-page-css-328522de8146 .menu-top-welcome{line-height:24px;font-size:1em;padding:30px 10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-328522de8146 .menu-top-welcome a{text-decoration:underline}.tg-page-css-328522de8146 .menu-bot{width:100%;overflow:auto}.tg-page-css-328522de8146 .menu-categorie{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-328522de8146 .menu-categorie > li{font-size:1em}.tg-page-css-328522de8146 .menu-categorie > li a{display:block;padding:10px;text-overflow:ellipsis;overflow:hidden;}.tg-page-css-328522de8146 .menu-footer{width:100%;text-align:left;font-size:1em;border-top-width:1px;border-top-style:solid;border-top-color:rgb(230,230,230);padding:25px 15px}.tg-page-css-328522de8146 .contact-rapide{margin-bottom:10px;float:left;width:100%}.tg-page-css-328522de8146 .langue{display:inline-block;float:left;padding:12px 0px;margin-right:10px}.tg-page-css-328522de8146 .contact-rapide span{display:block;margin-top:5px;color:rgb(24,136,115);text-decoration:underline}.tg-page-css-328522de8146 .logo{max-width:120%}.tg-page-css-328522de8146 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:absolute;left:calc(50% - 570px);padding-top:25px}.tg-page-css-328522de8146 .btn-rose{display:inline-block;padding:10px 30px;font-size:1em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .h2-tissu{font-size:21px;text-align:center;font-family:Gotham-Medium,sans-serif;font-weight:bold;margin-bottom:30px}.tg-page-css-328522de8146 .h1-chemise{font-family:Gotham-Book,sans-serif;font-weight:normal;font-size:24px;margin:20px 10px 10px 0px}.tg-page-css-328522de8146 .hamburger{width:130px;height:70px;display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;color:inherit;text-transform:none;background-color:transparent;border:0px;margin:0px;overflow:visible}.tg-page-css-328522de8146 .hamburger-box{width:40px;height:24px;display:inline-block;position:relative}.tg-page-css-328522de8146 .hamburger-inner{display:block;top:50%;margin-top:-2px}.tg-page-css-328522de8146 .hamburger-inner,.tg-page-css-328522de8146 .hamburger-inner::before,.tg-page-css-328522de8146 .hamburger-inner::after{width:35px;height:2px;background-color:rgb(0,0,0);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;position:absolute}.tg-page-css-328522de8146 .hamburger-inner::before,.tg-page-css-328522de8146 .hamburger-inner::after{content:'';display:block}.tg-page-css-328522de8146 .hamburger-inner::before{top:-10px}.tg-page-css-328522de8146 .hamburger-inner::after{bottom:-10px}.tg-page-css-328522de8146 .hamburger--spring .hamburger-inner{top:9px}.tg-page-css-328522de8146 .hamburger--spring .hamburger-inner::before{top:10px}.tg-page-css-328522de8146 .hamburger--spring .hamburger-inner::after{top:20px}.tg-page-css-328522de8146 .description-container{background-color:rgb(255,255,255);text-align:left;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 form{text-align:left;padding-top:30px}.tg-page-css-328522de8146 .imglangue{width:15px;height:auto}.tg-page-css-328522de8146 #fermelang{position:absolute;top:10px;right:10px;width:30px}.tg-page-css-328522de8146 .fermer-popup{width:30px;margin-left:5px;position:absolute;top:15px;right:15px;z-index:999}.tg-page-css-328522de8146 .nb-chemises-hover{text-align:left;padding-left:25px;width:100%;margin-top:30px;padding-bottom:10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230);margin-bottom:20px}.tg-page-css-328522de8146 .total-hover{text-align:center;width:100%;margin-top:15px;margin-bottom:15px;font-size:15px}.tg-page-css-328522de8146 .quantity{text-align:center;font-size:17px;height:35px !important;width:35px !important}@media screen and (min-width:768px){.tg-page-css-328522de8146 #header{top:30px}.tg-page-css-328522de8146 .text_option{margin-left:30px;margin-top:0px !important}.tg-page-css-328522de8146 .btn_vert{font-family:Gotham-Book,sans-serif;line-height:30px;margin-top:30px;text-align:center;margin-bottom:20px}.tg-page-css-328522de8146 .text_desc{margin-top:10px;font-size:16px;line-height:20px}.tg-page-css-328522de8146 .blok{padding-left:100px;padding-right:100px;margin-top:30px}.tg-page-css-328522de8146 .blok1{margin-left:0px;margin-right:0px;background-color:rgb(255,255,255);padding:50px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .description-container ul li span{font-size:17px;color:rgb(102,102,102);display:inline-block;font-weight:700}.tg-page-css-328522de8146 .divheader{display:inline-block;float:right;position:relative;right:25px;height:70px;z-index:999}.tg-page-css-328522de8146 .step{width:5px;margin-left:0px;display:inline-block;height:30px;top:8px}.tg-page-css-328522de8146 .menu-hide{margin-left:-5px;margin-top:-5px;display:inline-block !important}.tg-page-css-328522de8146 .carousel-indicators{display:none}.tg-page-css-328522de8146 .pictures_eyes_in img{width:100%;max-width:1500px;height:auto}.tg-page-css-328522de8146 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 #background5{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .menu-lateral{max-width:400px;max-height:620px}.tg-page-css-328522de8146 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:25px;top:20px;z-index:101;left:0px !important}.tg-page-css-328522de8146 .panier-btn-img{display:block;margin-right:10px;width:25%}.tg-page-css-328522de8146 .hide-text{display:block}.tg-page-css-328522de8146 .description-container{text-align:left;margin-bottom:50px}.tg-page-css-328522de8146 .description-container ul li span{font-size:17px;color:rgb(167,167,167);display:inline-block;font-weight:100}.tg-page-css-328522de8146 .mz-hint-message{display:inline-block;background-color:rgba(49,51,61,0.701961);border-top-left-radius:2em;border-top-right-radius:2em;border-bottom-right-radius:2em;border-bottom-left-radius:2em;padding:0.7em 1.1em;font-size:11px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .mz-hint{bottom:30px;left:0px;right:0px;padding:0px 10%;background-color:transparent;color:rgb(255,255,255);text-decoration:none;text-align:center;direction:ltr;display:inline-block;margin:0px;position:absolute;z-index:1000;-webkit-font-smoothing:antialiased}.tg-page-css-328522de8146 .field-wrapper{width:88px;height:48px;position:relative}.tg-page-css-328522de8146 .field-wrapper::after{content:'';width:0px;height:0px;position:absolute;top:19px;right:12px;border-right-width:7px;border-right-style:solid;border-right-color:transparent;border-left-width:7px;border-left-style:solid;border-left-color:transparent;border-top-width:7px;border-top-style:solid;border-top-color:rgb(0,21,57)}.tg-page-css-328522de8146 .field-wrapper select{padding:9px 16px 9px calc(50% - 5px);line-height:20px;height:48px;border:1px solid rgb(201,202,206);border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;width:88px;-webkit-appearance:none;background-color:rgb(255,255,255);text-align:center;font-size:16px !important;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .mz-hint-message::before{content:'\02295';font-family:serif;font-size:1.5em;speak:none;text-align:center;vertical-align:-2px;margin-right:6px}.tg-page-css-328522de8146 .description-container h1{font-family:Gotham-Medium,sans-serif;font-weight:bold;font-size:24px;margin:20px 10px 10px 0px}.tg-page-css-328522de8146 .description-container ul li.text{margin-top:8px;line-height:1.3em;text-align:left;font-size:16px !important}}@media screen and (max-width:767px){.tg-page-css-328522de8146 .row-info{margin-top:30px;margin-bottom: 60px}.tg-page-css-328522de8146 #header{top:45px}.tg-page-css-328522de8146 .field-wrapper select{padding:9px 16px 9px calc(50% - 15px);line-height:20px;height:48px;border:1px solid rgb(201,202,206);border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;width:88px;-webkit-appearance:none;background-color:rgb(255,255,255);text-align:center;font-size:16px !important;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .field-wrapper{position:relative}.tg-page-css-328522de8146 .field-wrapper::after{content:'';width:0px;height:0px;position:absolute;top:19px;right:12px;border-right-width:7px;border-right-style:solid;border-right-color:transparent;border-left-width:7px;border-left-style:solid;border-left-color:transparent;border-top-width:7px;border-top-style:solid;border-top-color:rgb(0,21,57)}.tg-page-css-328522de8146 .mz-hint-message{display:inline-block;background-color:rgba(49,51,61,0.701961);border-top-left-radius:2em;border-top-right-radius:2em;border-bottom-right-radius:2em;border-bottom-left-radius:2em;padding:0.7em 1.1em;font-size:11px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .mz-hint-message::before{content:'\02295';font-family:serif;font-size:1.5em;speak:none;text-align:center;vertical-align:-2px;margin-right:6px}.tg-page-css-328522de8146 .mz-hint{bottom:30px;left:0px;right:0px;padding:0px 10%;background-color:transparent;color:rgb(255,255,255);text-decoration:none;text-align:center;direction:ltr;display:inline-block;margin:0px;position:absolute;z-index:1000;-webkit-font-smoothing:antialiased}.tg-page-css-328522de8146 .text_option{margin-left:0px !important}.tg-page-css-328522de8146 .delivery{line-height:20px;padding-left:10px !important;}.tg-page-css-328522de8146 .padding_2{padding-left:10px}.tg-page-css-328522de8146 .blok{padding-left:10px;padding-right:10px;margin-top:30px}.tg-page-css-328522de8146 .blok1{margin-left:0px;margin-right:0px;background-color:rgb(255,255,255);padding:10px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .padding_3{padding-left:0px !important}.tg-page-css-328522de8146 .delivery a{font-size:15px !important}.tg-page-css-328522de8146 .btn_vert{font-family:Gotham-Book,sans-serif;line-height:20px;margin-top:30px;text-align:center;margin-bottom:20px}.tg-page-css-328522de8146 .margin_1{margin-top:20px}.tg-page-css-328522de8146 .description-container ul li span{font-size:17px;color:rgb(102,102,102);display:inline-block;font-weight:700}.tg-page-css-328522de8146 .menu-lateral-container{left:0px !important}.tg-page-css-328522de8146 .text_desc{margin-top:10px;font-size:16px;line-height:20px}.tg-page-css-328522de8146 .divheader{display:inline-block;float:right;position:relative;right:10px;height:70px;z-index:999}.tg-page-css-328522de8146 #slider-thumbs{display:none}.tg-page-css-328522de8146 .pictures_eyes_header{background-color:transparent !important;background-position:initial initial !important;background-repeat:initial initial !important}.tg-page-css-328522de8146 .carousel-indicators{display:block}.tg-page-css-328522de8146 .pictures_eyes_in .prev,.tg-page-css-328522de8146 .pictures_eyes_in .next{display:none}.tg-page-css-328522de8146 .pictures_eyes_in{margin-top:0px !important}.tg-page-css-328522de8146 .pictures_eyes_close{position:fixed;top:20px;right:20px;width:40px;height:40px;z-index:1237;background-color:rgb(238,238,238);border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;padding:5px;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .pictures_eyes_title{display:none !important}.tg-page-css-328522de8146 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .btn-rose{font-size:15px !important}.tg-page-css-328522de8146 .hamburger{padding-left:0px !important}.tg-page-css-328522de8146 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:0px;top:21px;z-index:101;margin-right:0px !important}.tg-page-css-328522de8146 .panier-btn-img{display:block}.tg-page-css-328522de8146 .hide-text{display:none}.tg-page-css-328522de8146 .fermer-popup{display:none}}@media screen and (min-width:992px){.tg-page-css-328522de8146 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-328522de8146 .description-container{padding-left:30px}.tg-page-css-328522de8146 .burger-menu{width:130px;display:-webkit-box;-webkit-box-align:center;height:70px;position:relative;left:1%;padding-top:3px}.tg-page-css-328522de8146 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;left:87%;top:25px;z-index:101}}@media screen and (max-width:991px){.tg-page-css-328522de8146 .panier-content-hover{display:none}.tg-page-css-328522de8146 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:relative;left:10px;padding-top:35px}.tg-page-css-328522de8146 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-328522de8146 .description-container{padding-left:0px}}.tg-page-css-328522de8146 #header{position:fixed;left:0px;width:100%;z-index:1030;height:70px;background-color:white;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 footer{position:relative;bottom:0px;width:100%;margin-top:40px}.tg-page-css-328522de8146 #footer-main{background-color:rgb(46,62,87)}.tg-page-css-328522de8146 #footer-main ul{list-style:none}.tg-page-css-328522de8146 #footer-main ul li{text-decoration:none;margin-top:25px;text-align:center}.tg-page-css-328522de8146 #footer-main ul li img{max-width:70px}.tg-page-css-328522de8146 .footer-help{border:1px solid rgb(255,255,255);padding:10px;margin:10px 0px}.tg-page-css-328522de8146 .footer-help a{font-size:17px;color:rgb(255,255,255)}.tg-page-css-328522de8146 #background3{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 #footer-main{min-height:100px;padding-top:5px;padding-bottom:20px}.tg-page-css-328522de8146 .cwhite{color:rgb(255,255,255)}.tg-page-css-328522de8146 .fsize17{font-size:17px}.tg-page-css-328522de8146 .fsize21{font-size:21px}.tg-page-css-328522de8146 .tcenter{text-align:center}.tg-page-css-328522de8146 .mb25{margin-bottom:25px}.tg-page-css-328522de8146 .ml0{margin-left:0px}.tg-page-css-328522de8146 .w100p{width:100%}.tg-page-css-328522de8146 .z1500{z-index:1500}.tg-page-css-328522de8146 .bbnone{border-bottom-style:none}.tg-page-css-328522de8146 .style0007{color:rgb(255,255,255);font-size:17px;display:table;margin:25px auto}@media screen and (max-width:860px){.tg-page-css-328522de8146 .panier-btn-img{width:100% !important}.tg-page-css-328522de8146 .hide-text{display:none !important}}@media screen and (max-width:245px){.tg-page-css-328522de8146 .navbar-brand a img{width:150px;position:absolute;left:calc(50% - 50px);top:18px}.tg-page-css-328522de8146 .btn-rose{display:inline-block;padding:10px;font-size:0.7em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:50px;line-height:30px;background-position:initial initial;background-repeat:initial initial}}@media screen and (max-width:568px){.tg-page-css-328522de8146 h2{font-size:25px}.tg-page-css-328522de8146 .btn-rose{padding:10px;width:90%;height:100%}.tg-page-css-328522de8146 .panier-btn-img{width:100% !important}.tg-page-css-328522de8146 .hide-text{display:none}}@media only screen and (min-width:1023px){.tg-page-css-328522de8146 .panier-btn{left:86.5%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:50%;position:absolute;display:none;right:calc(53% - 501px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1280px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 596px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1472px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 597px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1440px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 599px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1600px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 602px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1680px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:32%;position:absolute;display:none;right:calc(52% - 604px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1920px){.tg-page-css-328522de8146 .panier-btn{left:88.6%}.tg-page-css-328522de8146 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 609px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (max-width:500px){.tg-page-css-328522de8146 #stripe{width:65px !important;margin-top:-6px !important}.tg-page-css-328522de8146 .footer-help a{font-size:15px !important}}.tg-page-css-328522de8146 .custom-dropdown__select{font-size:inherit;padding:0.5em;margin:0px}.tg-page-css-328522de8146 .custom-dropdown__select--white{background-color:rgb(24,136,115);color:rgb(255,255,255)}.tg-page-css-328522de8146 #footer_language_list{margin-top:12px;text-align:left;float:left}.tg-page-css-328522de8146 #menu_language_list{text-align:left;float:left}.tg-page-css-328522de8146 #footer_language_list ul{list-style:none;margin:0px;padding:0px}.tg-page-css-328522de8146 #footer_language_list ul li{display:inline-block;margin:0px 7px;padding:0px;color:rgb(153,153,153);font-size:15px}.tg-page-css-328522de8146 #footer_language_list ul li:first-child{margin-left:0px;margin-right:7px}.tg-page-css-328522de8146 #footer_language_list ul li img{margin-top:-3px}.tg-page-css-328522de8146 #country-indicator{color:rgb(255,255,255);margin-top:10px}.tg-page-css-328522de8146 #country-indicator > span::after{content:'';display:inline-block;height:13px;width:14px;background-image:url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png");position:relative;top:-2px;left:12px;background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-328522de8146 .flag.country[data-locale$="FR"]::before{background-image:url("/assets/design-system/production/img/FR.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="DE"]::before{background-image:url("/assets/design-system/production/img/DE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="NL"]::before{background-image:url("/assets/design-system/production/img/NL.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="ES"]::before{background-image:url("/assets/design-system/production/img/ES.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="IT"]::before{background-image:url("/assets/design-system/production/img/IT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="GB"]::before{background-image:url("/assets/design-system/production/img/GB.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="BE"]::before{background-image:url("/assets/design-system/production/img/BE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="CH"]::before{background-image:url("/assets/design-system/production/img/CH.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="US"]::before{background-image:url("/assets/design-system/production/img/US.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="AT"]::before{background-image:url("/assets/design-system/production/img/AT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag.country[data-locale$="LU"]::before{background-image:url("/assets/design-system/production/img/LU.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .flag::before{display:inline-block;margin-top:5px;content:'';width:19px;height:13px;margin-right:0.6em}.tg-page-css-328522de8146 .zindex{z-index:9999}html.tg-page-css-328522de8146,.tg-page-css-328522de8146 body{min-height:100%}.tg-page-css-328522de8146 .picshade{position:fixed;left:0px;top:0px;width:100%;height:100%;background-color:rgb(0,0,0);opacity:0.91;z-index:1031;display:none}.tg-page-css-328522de8146 .pictures_eyes_close{position:fixed;top:20px;right:20px;width:40px;height:40px;z-index:1237;display:none}.tg-page-css-328522de8146 .pictures_eyes_title{position:fixed;top:30px;display:none;z-index:1238;font-size:18px;text-transform:uppercase;color:rgb(34,34,34);text-align:center;left:50%}.tg-page-css-328522de8146 .pictures_eyes{position:fixed;z-index:1035;display:none;right:0px;bottom:0px;overflow-x:auto;overflow-y:scroll;min-height:100%;left:0px !important;top:0px !important}.tg-page-css-328522de8146 .pictures_eyes_in{position:relative;text-align:center}.tg-page-css-328522de8146 .pictures_eyes_header{position:fixed;width:100%;z-index:2135;display:none;height:80px;background-color:rgb(255,255,255);left:0px !important;top:0px !important;background-position:initial initial;background-repeat:initial initial}.tg-page-css-328522de8146 .pictures_eyes_in .prev,.tg-page-css-328522de8146 .pictures_eyes_in .next{position:fixed;top:50%;width:76px;height:76px}.tg-page-css-328522de8146 .pictures_eyes_in .prev{left:35px;background-image:url("/assets/design-system/production/img/left.png");background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-328522de8146 .pictures_eyes_in .next{right:45px;background-image:url("/assets/design-system/production/img/right.png");background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-328522de8146 .pictures_eyes_indicators{position:fixed;left:0px;bottom:15px;width:100%;text-align:center;z-index:1200}.tg-page-css-328522de8146 .demo > li{float:left}.tg-page-css-328522de8146 .demo > li img{width:70px;margin:5px;border:2px solid rgb(255,255,255)}.tg-page-css-328522de8146 .hide-bullets{list-style:none}.tg-page-css-328522de8146 .thumbnail{padding:0px}.tg-page-css-328522de8146 .carousel-inner > .item > img{width:100%}.tg-page-css-328522de8146 .thumbnail{margin-bottom:0px;border:none !important}.tg-page-css-328522de8146 .carousel{background-color:rgb(255,255,255);margin-top:5px}.tg-page-css-328522de8146 .carousel-inner > .item.active{background-color:transparent}.tg-page-css-328522de8146 .col-md-2{width:9%}.tg-page-css-328522de8146 .delivery{float:left;display:block;top:17px;padding-left:10px}.tg-page-css-328522de8146 .delivery a{font-style:inherit;font-variant:inherit;line-height:inherit;font-weight:500;font-family:'Open Sans',sans-serif;color:rgb(51,51,51);font-size:18px;margin-top:20px}@media screen and (min-width:768px){}@media screen and (max-width:767px){.tg-page-css-328522de8146 .btn-rose{width:100%}}.tg-page-css-328522de8146 (max-width: 568px).badge-pill{left: -10px !important;}.tg-page-css-328522de8146 .badge-pill{background-color: #188873;left: 8px;top: 13px;position: absolute;border-radius: 0px;}.tg-page-css-328522de8146 .badge{display: inline-block;min-width: 10px;padding: 3px 7px;ont-size: 12px;color: #fff;vertical-align: middle;background-color: #777;border-radius: 10px;}.tg-page-css-328522de8146 .badge.label{font-weight: 700;line-height: 1;white-space: nowrap;text-align: center;}.tg-page-css-328522de8146 .bloc-text{background: #fff;/*border: 1px dashed #ccc;*/}.tg-page-css-328522de8146 .demo > li{float:left;}.tg-page-css-328522de8146 .demo > li img{ width:70px; margin:5px; cursor:pointer;border: 2px solid #fff;}.tg-page-css-328522de8146 .demo > li img:hover{border: 2px solid #cc;}
.tg-page-css-328522de8146 .hide-bullets{list-style:none;}.tg-page-css-328522de8146 .carousel-inner>.item{backface-visibility: visible !important;}.tg-page-css-328522de8146 .thumbnail{padding: 0;}.tg-page-css-328522de8146 .carousel-inner>.item>img,.tg-page-css-328522de8146 .carousel-inner>.item>a>img{ width: 100%;cursor: url("/assets/design-system/production/img/magnify.cur"),move; cursor: -moz-zoom-in;cursor: -webkit-zoom-in;}
.tg-page-css-328522de8146 .thumbnail{
border:none !important;
margin-bottom: 0px;
}

.tg-page-css-328522de8146 .carousel{
background-color: #fff;
margin-top: 5px;
}

.tg-page-css-328522de8146 .carousel-inner>.item.next.left,.tg-page-css-328522de8146 .carousel-inner>.item.prev.right,.tg-page-css-328522de8146 .carousel-inner>.item.active{
background-color: transparent;
}
.tg-page-css-328522de8146 .col-md-2{
width:9%;
}
.tg-page-css-328522de8146 .delivery{
float: left;
display: block;
top: 17px;
padding-left:0px !important;
}
.tg-page-css-328522de8146 .delivery a{
font: inherit;
color: inherit;
font-weight: 500;
font-family: var(--font-family-regular) !important;
color:#333;font-size:16px !important;margin-top:20px
}
.tg-page-css-328522de8146 .delivery a:hover{
text-decoration: underline;
}
.tg-page-css-328522de8146 .block-ico{margin-top:0px;display: flex;align-items: center;margin-bottom: 20px}
.tg-page-css-328522de8146 .pi-texte{
padding: 10px;
display: block;
line-height: 24px;
font-size: 16px;
margin-left:20px;
}
.tg-page-css-328522de8146 .pictos{
padding: 0px;
display: block;

}

.tg-page-css-328522de8146 .pictos img{
width: 45px;
height: auto;
}
.tg-page-css-328522de8146 .mrg-3{margin-top: -80px}
.tg-page-css-328522de8146 .clock{
width:35px !important;
height: auto !important;
margin-left:4px;
}
.tg-page-css-328522de8146 .bor-dash{border-bottom: 1px dashed #ccc;margin-top:0px}
.tg-page-css-328522de8146 #modal_retouche p,.tg-page-css-328522de8146 #modal_liv p{margin-bottom: 20px;
line-height: 24px;}
.tg-page-css-328522de8146 .position-r{;
position: relative !important;}
.tg-page-css-328522de8146 .header-pre{position: relative !important;display:block;top: inherit !important}
.tg-page-css-328522de8146 .cond-shirt{top: -30px !important;position: relative;}

@media (min-width: 769px){
.tg-page-css-328522de8146 .m-compte{
        margin-left: auto;
        display: flex;
        align-items: center;
    }
.tg-page-css-328522de8146 .header__icon--close{display: none}
	.tg-page-css-328522de8146 .h1-chemise{font-size:27px !important}
.tg-page-css-328522de8146 .picture{width: 100%;
    display: block;
    margin: auto;
    height:auto;
    padding: 10px;}}
    @media (max-width: 768px){
    .tg-page-css-328522de8146 .m-compte{
        display: none;
    }

.tg-page-css-328522de8146 .picture{width:100%;
    display: block;
    margin: auto;
    padding:0px;}
.tg-page-css-328522de8146 .h1-chemise{font-size: 22px !important;line-height:30px !important}
}

.tg-page-css-328522de8146 .disblock{
	display: block;
}
.tg-page-css-328522de8146 .height-dv{
    height: 118px;
    margin-bottom: 20px;
}
.tg-page-css-328522de8146 .bordere{border: none}
.tg-page-css-328522de8146 .pi-text{
	margin-left: 100px !important;font-size: 16px !important
}
.tg-page-css-328522de8146 .dv{padding-left: 0px !important}
.tg-page-css-328522de8146 strong{font-weight: 700;font-size:18px !important}
.tg-page-css-328522de8146 }

@media screen and (min-width: 769px){
.col-lg-4 {
    width: 33.33333333%;
}.col-lg-5 {
    width: 41.66666667%;
}.col-lg-3 {
    width: 25%;
}.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left;
}}
.tg-page-css-328522de8146 strong{font-weight: bold !important;font-size:20px}
@media screen and (min-width: 769px){
.tg-page-css-328522de8146 .margin-150{margin:100px auto}
.tg-page-css-328522de8146 .mrg-left{margin-left:30px !important}
.tg-page-css-328522de8146 .col-lg-4{
    width: 33.33333333%;
}.tg-page-css-328522de8146 .col-lg-5{
    width: 41.66666667%;

}.tg-page-css-328522de8146 .col-lg-3{
    width: 25%;
}.tg-page-css-328522de8146 .col-lg-1,.tg-page-css-328522de8146 .col-lg-10,.tg-page-css-328522de8146 .col-lg-11,.tg-page-css-328522de8146 .col-lg-12,.tg-page-css-328522de8146 .col-lg-2,.tg-page-css-328522de8146 .col-lg-3,.tg-page-css-328522de8146 .col-lg-4,.tg-page-css-328522de8146 .col-lg-5,.tg-page-css-328522de8146 .col-lg-6,.tg-page-css-328522de8146 .col-lg-7,.tg-page-css-328522de8146 .col-lg-8,.tg-page-css-328522de8146 .col-lg-9{
    float: left;
}
.tg-page-css-328522de8146 .header-home{background:#005539 !important;height:550px !important;padding:0px !important}
 .tg-page-css-328522de8146 .burger-menu{display:none !important}
 .tg-page-css-328522de8146 #openMenu{width:130px !important}
 .tg-page-css-328522de8146 .hamburger{width:130px}
 .tg-page-css-328522de8146 .header-home{margin-top:30px}
 .tg-page-css-328522de8146 .contenu{flex-direction:row}
 .tg-page-css-328522de8146 .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
 .tg-page-css-328522de8146 .div2{width:54%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;}
}
.tg-page-css-328522de8146 .temoignages-titre h2{font-family: var(--font-family-h);font-weight: 800;}
.tg-page-css-328522de8146 .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-page-css-328522de8146 strong{font-weight: 900 !important;font-size:20px}
.tg-page-css-328522de8146 .menu2{display:flex;align-items:center}.tg-page-css-328522de8146 .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items: center;}.tg-page-css-328522de8146 .menu2 a{font-weight:900;font-family:var(--font-family-regular);position:relative}
.tg-page-css-328522de8146 .menu2 a:hover{color:#000}
.tg-page-css-328522de8146 .divheader a{font-family: var(--font-family-regular),sans-serif;font-weight: 500;font-size: 0.8rem;}.tg-page-css-328522de8146 p{font-family:var(--font-family-regular),sans-serif;font-weight:400}
.tg-page-css-328522de8146 .menu2 li img{height:10px;margin-left:8px}
.tg-page-css-328522de8146 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 51px;
top: 180px;
z-index: 99;
}
@media screen and (max-width: 768px){
html.tg-page-css-328522de8146,.tg-page-css-328522de8146 body{overflow-x:hidden;}
.tg-page-css-328522de8146 .menu-lateral-container{transform: translate(0);left:-100% !important;-webkit-transition: all 0.8s;
    transition: all 0.8s;}
.tg-page-css-328522de8146 .margin-150{margin:50px auto}
.tg-page-css-328522de8146 .mrg-left{margin-left:0px !important}
.tg-page-css-328522de8146 .header-home .contenu h1::before,.tg-page-css-328522de8146 .header-home .contenu h1::after{display:none !important}
.tg-page-css-328522de8146 .header-home{background:#005539 !important;height:100% !important;padding:0px !important}
.tg-page-css-328522de8146 .burger-menu{display:block}
.tg-page-css-328522de8146 .header-home{margin-top:50px}
.tg-page-css-328522de8146 .menu2{display:none}
.tg-page-css-328522de8146 .divheader,.tg-page-css-328522de8146 #connect{display:none}
.tg-page-css-328522de8146 #openMenu{width:90px !important}
.tg-page-css-328522de8146 .hamburger{width:90px !important}
.tg-page-css-328522de8146 .header-home{margin-top:45px}
.tg-page-css-328522de8146 .contenu{flex-direction:column}
.tg-page-css-328522de8146 .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-page-css-328522de8146 .div2{width:100%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-page-css-328522de8146 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}
.tg-page-css-328522de8146 .divheader{align-items:center}
.tg-page-css-328522de8146 .navbar-brand a img{width:160px}
.tg-page-css-328522de8146 .menu2 a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height:3px;
    background-color: rgb(51,51,51);
}
.tg-page-css-328522de8146 .menu2 a:hover::after{
    width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-328522de8146 .link-b{margin-top:30px;}
.tg-page-css-328522de8146 .link-b a{display:flex;align-items: center;font-weight: 900;font-family: var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-page-css-328522de8146 .link-b a::after{content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #fff;}
    .tg-page-css-328522de8146 .link-b a:hover::after{
    width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-328522de8146 .link-b a:hover{color:#fff}
.tg-page-css-328522de8146 #navbar{border-bottom: 2px solid #f1f1f1; }
.tg-page-css-328522de8146 .h1-chemise{color: #000;
text-align: left;
line-height:33px;
font-family: var(--font-family-oswald) !important;
font-weight: 800 !important;
text-shadow: none;
margin-bottom: 10px !important;}
.tg-page-css-328522de8146 .ba-des{display: flex;
margin: 30px 0;
background: #F7F7F7;
border-radius: 10px;
padding: 20px;}
.tg-page-css-328522de8146 p,.tg-page-css-328522de8146 span,.tg-page-css-328522de8146 li,.tg-page-css-328522de8146 td{font-family:var(--font-family-regular) !important;}
.tg-page-css-328522de8146 .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-page-css-328522de8146 .scrollenone{overflow: hidden !important;}
.tg-page-css-328522de8146 .header__icon--close{
    width: 1rem;
    position: fixed;
    top: .8rem;
    right:20px;
    opacity: 1;
    z-index: 4;
    color: #000;
    background-color: #fff;
}
.tg-page-css-328522de8146 #header{background: #fff !important}

/* styles de page dédupliqués: 3652e1222fbf */
.tg-page-css-3652e1222fbf h2{font-size: 1.2em; margin-top: 40px; margin-bottom: 25px; font-weight: bold;}
            .tg-page-css-3652e1222fbf p{}
            .tg-page-css-3652e1222fbf .texte img{margin: 15px;}
            .tg-page-css-3652e1222fbf em{font-style: italic;}
            .tg-page-css-3652e1222fbf strong{font-weight: bold;}
            .tg-page-css-3652e1222fbf .texte a{text-decoration: underline;}

/* styles de page dédupliqués: 487cd7a179b9 */
.tg-page-css-487cd7a179b9 img{border:0px}.tg-page-css-487cd7a179b9 body{margin:0px}.tg-page-css-487cd7a179b9 .col-xs-12,.tg-page-css-487cd7a179b9 .col-xs-6{float:left}html.tg-page-css-487cd7a179b9{font-family:sans-serif}.tg-page-css-487cd7a179b9 aside,.tg-page-css-487cd7a179b9 footer{display:block}.tg-page-css-487cd7a179b9 [hidden]{display:none}.tg-page-css-487cd7a179b9 a{background-color:transparent}.tg-page-css-487cd7a179b9 b{font-weight:700}.tg-page-css-487cd7a179b9 h1{margin:0.67em 0px}.tg-page-css-487cd7a179b9 img{vertical-align:middle}.tg-page-css-487cd7a179b9 button,.tg-page-css-487cd7a179b9 input,.tg-page-css-487cd7a179b9 select{color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;margin:0px}.tg-page-css-487cd7a179b9 button{overflow:visible}.tg-page-css-487cd7a179b9 button,.tg-page-css-487cd7a179b9 select{text-transform:none}.tg-page-css-487cd7a179b9 button{-webkit-appearance:button}.tg-page-css-487cd7a179b9 body{background-color:rgb(255,255,255)}.tg-page-css-487cd7a179b9 *,.tg-page-css-487cd7a179b9 ::after,.tg-page-css-487cd7a179b9 ::before{box-sizing:border-box}html.tg-page-css-487cd7a179b9{font-size:10px}.tg-page-css-487cd7a179b9 body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:rgb(51,51,51)}.tg-page-css-487cd7a179b9 button,.tg-page-css-487cd7a179b9 input,.tg-page-css-487cd7a179b9 select{font-family:inherit;font-size:inherit;line-height:inherit}.tg-page-css-487cd7a179b9 a{color:rgb(51,122,183);text-decoration:none}.tg-page-css-487cd7a179b9 h1,.tg-page-css-487cd7a179b9 h5{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-page-css-487cd7a179b9 h1{margin-top:20px;margin-bottom:10px}.tg-page-css-487cd7a179b9 h5{margin-top:10px;margin-bottom:10px}.tg-page-css-487cd7a179b9 h1{font-size:36px}.tg-page-css-487cd7a179b9 h5{font-size:14px}.tg-page-css-487cd7a179b9 p{margin:0px 0px 10px}.tg-page-css-487cd7a179b9 ul{margin-top:0px}.tg-page-css-487cd7a179b9 ul{margin-bottom:10px}@media (min-width:768px){.tg-page-css-487cd7a179b9 .new{background-color: #21304e !important;color: #fff;padding: 10px 10px;font-size: 14px;position: absolute;left: 60px;top: 180px;z-index: 99;}.tg-page-css-487cd7a179b9 .container{width:740px}}.tg-page-css-487cd7a179b9 .container,.tg-page-css-487cd7a179b9 .container-fluid{margin-right:auto;margin-left:auto}@media (min-width:992px){.tg-page-css-487cd7a179b9 .container,.tg-page-css-487cd7a179b9 .container-fluid{padding-left:50px;padding-right:50px}.tg-page-css-487cd7a179b9 .container{width:1000px}}@media (min-width:1200px){.tg-page-css-487cd7a179b9 .container{width:1240px}}.tg-page-css-487cd7a179b9 .row{margin-left:-10px;margin-right:-10px}.tg-page-css-487cd7a179b9 .col-lg-12,.tg-page-css-487cd7a179b9 .col-lg-6,.tg-page-css-487cd7a179b9 .col-md-12,.tg-page-css-487cd7a179b9 .col-md-3,.tg-page-css-487cd7a179b9 .col-md-4,.tg-page-css-487cd7a179b9 .col-md-6,.tg-page-css-487cd7a179b9 .col-md-9,.tg-page-css-487cd7a179b9 .col-sm-4,.tg-page-css-487cd7a179b9 .col-sm-6,.tg-page-css-487cd7a179b9 .col-xs-12,.tg-page-css-487cd7a179b9 .col-xs-6{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-page-css-487cd7a179b9 .col-xs-12{width:100%}.tg-page-css-487cd7a179b9 .col-xs-6{width:50%}@media (min-width:768px){.tg-page-css-487cd7a179b9 .col-sm-4,.tg-page-css-487cd7a179b9 .col-sm-6{float:left}.tg-page-css-487cd7a179b9 .col-sm-6{width:50%}.tg-page-css-487cd7a179b9 .col-sm-4{width:33.33333333%}}@media (min-width:992px){.tg-page-css-487cd7a179b9 .col-md-12,.tg-page-css-487cd7a179b9 .col-md-3,.tg-page-css-487cd7a179b9 .col-md-4,.tg-page-css-487cd7a179b9 .col-md-6,.tg-page-css-487cd7a179b9 .col-md-9{float:left}.tg-page-css-487cd7a179b9 .col-md-12{width:100%}.tg-page-css-487cd7a179b9 .col-md-9{width:75%}.tg-page-css-487cd7a179b9 .col-md-6{width:50%}.tg-page-css-487cd7a179b9 .col-md-4{width:33.33333333%}.tg-page-css-487cd7a179b9 .col-md-3{width:25%}}@media (min-width:1200px){.tg-page-css-487cd7a179b9 .col-lg-12,.tg-page-css-487cd7a179b9 .col-lg-6{float:left}.tg-page-css-487cd7a179b9 .col-lg-12{width:100%}.tg-page-css-487cd7a179b9 .col-lg-6{width:50%}}.tg-page-css-487cd7a179b9 .navbar-brand{float:left;font-size:18px;line-height:20px;height:50px}.tg-page-css-487cd7a179b9 .container-fluid::after,.tg-page-css-487cd7a179b9 .container-fluid::before,.tg-page-css-487cd7a179b9 .container::after,.tg-page-css-487cd7a179b9 .container::before,.tg-page-css-487cd7a179b9 .row::after,.tg-page-css-487cd7a179b9 .row::before{content:' ';display:table}.tg-page-css-487cd7a179b9 .container-fluid::after,.tg-page-css-487cd7a179b9 .container::after,.tg-page-css-487cd7a179b9 .row::after{clear:both}@font-face{font-family:Gotham-book;src:url("/assets/design-system/production/fonts/Gotham-Book.otf");font-style:normal}.tg-page-css-487cd7a179b9 .dinpro-medium{font-family:Gotham-Book,sans-serif;font-weight:700}.tg-page-css-487cd7a179b9 .roboto-regular{font-family:Gotham-Book,sans-serif;font-weight:400}.tg-page-css-487cd7a179b9 .hide-text{display:none}.tg-page-css-487cd7a179b9 .a-fil{font-size:15px}.tg-page-css-487cd7a179b9 .filtere{position:relative;top:auto;bottom:auto;overflow:visible;background-color:rgb(255,255,255);width:100%;z-index:99;border-style:none solid none none;border-right-width:1px;border-right-color:rgb(221,221,221);box-shadow:none;display:block;float:left;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .filtere{-webkit-flex:0 0 16em;padding:0px 16px 16px 0px;border-right-width:1px;border-right-style:solid;border-right-color:rgb(221,221,221);background-color:rgb(255,255,255);background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .filtere h5 .clear-filter{float:right;margin:-2px 0px 0px 10px;height:auto;width:auto;color:rgb(117,117,117);background-color:rgb(238,238,238);padding:4px 5px 3px 6px;text-align:center;display:inline-block;border-top-left-radius:1px;border-top-right-radius:1px;border-bottom-right-radius:1px;border-bottom-left-radius:1px;text-transform:none;letter-spacing:0px;font-size:13px;font-weight:300;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .filtere h5{margin-bottom:1rem;font-size:13px;font-weight:bold;letter-spacing:1.4px;line-height:1.3;padding-left:0px;text-transform:uppercase}.tg-page-css-487cd7a179b9 .filtere .filter-panel{-webkit-transform:translate3d(0px,0px,0px);visibility:visible;opacity:1;display:block !important}.tg-page-css-487cd7a179b9 .header-filter{float:right;position:relative;top:-2px;margin-left:32px;font-size:14px;color:rgb(117,117,117)}.tg-page-css-487cd7a179b9 .header-filter a{color:rgb(117,117,117);display:block}.tg-page-css-487cd7a179b9 .filter-inner{padding:16px 8px 16px 16px}html.tg-page-css-487cd7a179b9,.tg-page-css-487cd7a179b9 body,.tg-page-css-487cd7a179b9 div,.tg-page-css-487cd7a179b9 span,.tg-page-css-487cd7a179b9 h1,.tg-page-css-487cd7a179b9 h5,.tg-page-css-487cd7a179b9 p,.tg-page-css-487cd7a179b9 a,.tg-page-css-487cd7a179b9 img,.tg-page-css-487cd7a179b9 b,.tg-page-css-487cd7a179b9 ul,.tg-page-css-487cd7a179b9 li,.tg-page-css-487cd7a179b9 form,.tg-page-css-487cd7a179b9 aside,.tg-page-css-487cd7a179b9 footer,.tg-page-css-487cd7a179b9 input{box-sizing:border-box;margin:0px;padding:0px;border:0px;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit}.tg-page-css-487cd7a179b9 h1{box-sizing:border-box;margin:0px 0px 10px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;line-height:inherit;font-family:Gotham-Book,sans-serif;font-size:31px;font-weight:400}html.tg-page-css-487cd7a179b9,.tg-page-css-487cd7a179b9 body{min-height:100%;font-family:Gotham-Book,sans-serif;font-size:17px;font-weight:400}.tg-page-css-487cd7a179b9 aside,.tg-page-css-487cd7a179b9 footer{display:block}.tg-page-css-487cd7a179b9 body{font-size:17px;line-height:1;background-color:rgb(255,255,255);font-family:Gotham-Book,sans-serif;padding-top:70px;font-weight:400}.tg-page-css-487cd7a179b9 ul{list-style:none}.tg-page-css-487cd7a179b9 a{text-decoration:none;color:inherit;outline:rgb(0,0,0)}.tg-page-css-487cd7a179b9 .info-livraison{ background-color: #21304e; position: fixed; top: 0px; left: 0px; width: 100%; z-index: 1500;padding:12px 5px; color:#fff;text-align: center;font-size:14px; line-height: 16px}.tg-page-css-487cd7a179b9 .info-livraison-container{height:50px;display:-webkit-box;-webkit-box-pack:justify;-webkit-box-align:center}.tg-page-css-487cd7a179b9 .info-livraison-container p{color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em}.tg-page-css-487cd7a179b9 .menu-lateral-container{display:none;position:fixed;z-index:99999;top:0px;bottom:0px;left:20px;right:0px;background-color:transparent;padding:0px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .menu-lateral{max-width:90%;height:100%;background-color:rgb(255,255,255);display:-webkit-box;overflow:auto;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .menu-top{width:100%}.tg-page-css-487cd7a179b9 .menu-top-welcome{line-height:24px;font-size:1em;padding:30px 10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-487cd7a179b9 .menu-top-welcome a{text-decoration:underline}.tg-page-css-487cd7a179b9 .menu-bot{width:100%;overflow:auto}.tg-page-css-487cd7a179b9 .menu-categorie{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230)}.tg-page-css-487cd7a179b9 .menu-categorie > li{font-size:1em}.tg-page-css-487cd7a179b9 .menu-categorie > li a{display:block;padding:10px;}.tg-page-css-487cd7a179b9 .menu-footer{width:100%;text-align:left;font-size:1em;border-top-width:1px;border-top-style:solid;border-top-color:rgb(230,230,230);padding:25px 15px}.tg-page-css-487cd7a179b9 .contact-rapide{margin-bottom:10px;float:left;width:100%}.tg-page-css-487cd7a179b9 .langue{display:inline-block;float:left;padding:12px 0px;margin-right:10px}.tg-page-css-487cd7a179b9 .contact-rapide span{display:block;margin-top:5px;color:rgb(24,136,115);text-decoration:underline}.tg-page-css-487cd7a179b9 .logo{max-width:120%}.tg-page-css-487cd7a179b9 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:absolute;left:calc(50% - 570px);padding-top:25px}.tg-page-css-487cd7a179b9 .btn-rose{display:inline-block;padding:10px 30px;font-size:1em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:100%;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .header-page{padding:20px 10px;text-align:center;color:rgb(255,255,255);margin-bottom:20px;background-position:50% 50%;background-repeat:no-repeat no-repeat}.tg-page-css-487cd7a179b9 .modele-find{font-size:1em}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant{margin-bottom:20px}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant li{font-size:1em;line-height:2.2em;padding-left:32px;color:rgb(85,85,85);background-position:10px 50%;background-repeat:no-repeat no-repeat}.tg-page-css-487cd7a179b9 .couleur-blanc{background-image:url("/assets/design-system/production/img/icon-couleur-blanc.svg")}.tg-page-css-487cd7a179b9 .couleur-noir{background-image:url("/assets/design-system/production/img/icon-couleur-noir.svg")}.tg-page-css-487cd7a179b9 .couleur-bleu{background-image:url("/assets/design-system/production/img/icon-couleur-bleu.svg")}.tg-page-css-487cd7a179b9 .couleur-rouge{background-image:url("/assets/design-system/production/img/icon-couleur-rouge.svg")}.tg-page-css-487cd7a179b9 .couleur-rose{background-image:url("/assets/design-system/production/img/icon-couleur-rose.svg")}.tg-page-css-487cd7a179b9 .couleur-marron{background-image:url("/assets/design-system/production/img/icon-couleur-marron.svg")}.tg-page-css-487cd7a179b9 .couleur-vert{background-image:url("/assets/design-system/production/img/icon-couleur-vert.svg")}.tg-page-css-487cd7a179b9 .couleur-gris{background-image:url("/assets/design-system/production/img/icon-couleur-gris.svg")}.tg-page-css-487cd7a179b9 .couleur-violet{background-image:url("/assets/design-system/production/img/icon-couleur-violet.svg")}.tg-page-css-487cd7a179b9 .couleur-jaune{background-image:url("/assets/design-system/production/img/icon-couleur-jaune.svg")}.tg-page-css-487cd7a179b9 .couleur-orange{background-image:url("/assets/design-system/production/img/icon-couleur-orange.svg")}.tg-page-css-487cd7a179b9 .couleur-beige{background-image:url("/assets/design-system/production/img/icon-couleur-beige.svg")}.tg-page-css-487cd7a179b9 .chemise-catalogue{height:100%;margin-bottom:75px;border:1px solid transparent;width:100%;max-width:362px;float:none}.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{height:283px;width:100%;max-width:361px;overflow:hidden;padding:0px;text-align:center}.tg-page-css-487cd7a179b9 .chemise-catalogue-photo img{max-height:200%}.tg-page-css-487cd7a179b9 .prix-catalogue{font-size:19px;line-height:1.4em;}.tg-page-css-487cd7a179b9 .modele-cataloguee{font-size:15px;line-height:1.4em;margin-bottom:10px;width:100%;padding-top:0px;text-align:center;font-family:Gotham-Book}.tg-page-css-487cd7a179b9 .catalogue-details{max-height:160px;overflow:hidden;text-align:left;color:rgb(51,51,51);display:-webkit-box;padding-left:5px}.tg-page-css-487cd7a179b9 .hamburger{width:130px;height:70px;display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-variant:inherit;font-weight:inherit;line-height:inherit;color:inherit;text-transform:none;background-color:transparent;border:0px;margin:0px;overflow:visible}.tg-page-css-487cd7a179b9 .hamburger-box{width:40px;height:24px;display:inline-block;position:relative}.tg-page-css-487cd7a179b9 .hamburger-inner{display:block;top:50%;margin-top:-2px}.tg-page-css-487cd7a179b9 .hamburger-inner,.tg-page-css-487cd7a179b9 .hamburger-inner::before,.tg-page-css-487cd7a179b9 .hamburger-inner::after{width:35px;height:2px;background-color:rgb(0,0,0);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;position:absolute}.tg-page-css-487cd7a179b9 .hamburger-inner::before,.tg-page-css-487cd7a179b9 .hamburger-inner::after{content:'';display:block}.tg-page-css-487cd7a179b9 .hamburger-inner::before{top:-10px}.tg-page-css-487cd7a179b9 .hamburger-inner::after{bottom:-10px}.tg-page-css-487cd7a179b9 .hamburger--spring .hamburger-inner{top:9px}.tg-page-css-487cd7a179b9 .hamburger--spring .hamburger-inner::before{top:10px}.tg-page-css-487cd7a179b9 .hamburger--spring .hamburger-inner::after{top:20px}.tg-page-css-487cd7a179b9 form{text-align:left;padding-top:30px}.tg-page-css-487cd7a179b9 .imglangue{width:15px;height:auto}.tg-page-css-487cd7a179b9 #fermelang{position:absolute;top:10px;right:10px;width:30px}.tg-page-css-487cd7a179b9 #back-to-top{position:fixed;bottom:40px;right:40px;z-index:99;width:60px;height:50px;text-align:center;line-height:35px;background-color:rgb(147,147,147);color:rgb(255,255,255);border:0px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;text-decoration:none;opacity:0;font-size:3em;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .fermer-popup{width:30px;margin-left:5px;position:absolute;top:15px;right:15px;z-index:999}.tg-page-css-487cd7a179b9 .nb-chemises-hover{text-align:left;padding-left:25px;width:100%;margin-top:30px;padding-bottom:10px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(230,230,230);margin-bottom:20px}.tg-page-css-487cd7a179b9 .total-hover{text-align:center;width:100%;margin-top:15px;margin-bottom:15px;font-size:15px}@media screen and (min-width:768px){.tg-page-css-487cd7a179b9 #header{top:40px}.tg-page-css-487cd7a179b9 .filter-icon{background-image:url("/assets/design-system/production/img/filter2.svg");background-color:transparent;background-size:32px;display:inline-block;width:30px;height:24px;position:relative;top:-5px;margin-right:10px;float:left;opacity:0.5;background-position:0% 50%;background-repeat:no-repeat no-repeat}.tg-page-css-487cd7a179b9 .display-yes{display:block}.tg-page-css-487cd7a179b9 .height_2{height:400px}.tg-page-css-487cd7a179b9 .divheader{display:inline-block;float:right;position:relative;right:25px;height:70px;z-index:999}.tg-page-css-487cd7a179b9 .step{width:5px;margin-left:0px;display:inline-block;height:30px;top:8px}.tg-page-css-487cd7a179b9 .menu-hide{margin-left:-5px;margin-top:-5px;display:inline-block !important}.tg-page-css-487cd7a179b9 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #background5{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .menu-lateral{max-width:400px;max-height:620px}.tg-page-css-487cd7a179b9 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:25px;top:20px;z-index:101;left:0px !important}.tg-page-css-487cd7a179b9 .panier-btn-img{display:block;margin-right:10px;width:25%}.tg-page-css-487cd7a179b9 .hide-text{display:block}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant{display:none;overflow:overlay;position:absolute;top:30px;left:0px;background-color:rgb(255,255,255);width:100%;text-align:left;border:1px solid rgb(230,230,230);box-shadow:rgba(0,0,0,0.0470588) 0px 10px 30px 0px;-webkit-box-shadow:rgba(0,0,0,0.0470588) 0px 10px 30px 0px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant li{font-size:1em;padding-left:10px;background-position:85% 50%}.tg-page-css-487cd7a179b9 .navbar-brand a img{position: relative;margin-left: 0px;margin-top: 5px;width:160px !important}.tg-page-css-487cd7a179b9 #popup{position:fixed;z-index:1501;width:100%;top:10px;display:none;font-family:Gotham-Book,sans-serif;font-weight:400}.tg-page-css-487cd7a179b9 #popup #photo_detail{width:726px;height:676px;position:absolute;margin:0px;overflow:hidden;background-color:rgb(255,255,255)}.tg-page-css-487cd7a179b9 .popup_description{margin-left:10px;width:479px}}@media screen and (max-width:767px){.tg-page-css-487cd7a179b9 .new{background-color: #21304e !important;color: #fff;padding: 10px 10px;font-size: 14px;position: absolute;left: 40px;top: 100px; z-index: 99;}.tg-page-css-487cd7a179b9 #header{top:45px}.tg-page-css-487cd7a179b9 .filter-icon{background-image:url("/assets/design-system/production/img/filter2.svg");background-color:transparent;background-size:32px;display:inline-block;width:30px;height:24px;position:relative;top:10px;margin-right:10px;opacity:0.5;background-position:0% 50%;background-repeat:no-repeat no-repeat}.tg-page-css-487cd7a179b9 .header-filter a{width:100px;margin:0px auto}.tg-page-css-487cd7a179b9 .display-yes{display:none}.tg-page-css-487cd7a179b9 .header-filter{float:right;text-align:center;position:relative;display:block;top:10px;width:100%;margin:10px auto;font-size:14px;color:rgb(117,117,117)}.tg-page-css-487cd7a179b9 .header-page{padding:10px !important}.tg-page-css-487cd7a179b9 .barss1{margin-top:30px !important}.tg-page-css-487cd7a179b9 .header-page{margin-top:45px;margin-bottom:0px !important}.tg-page-css-487cd7a179b9 .height_2{height:300px}.tg-page-css-487cd7a179b9 .delivery{line-height:20px;padding-left:10px !important}.tg-page-css-487cd7a179b9 .delivery a{font-size:15px !important}.tg-page-css-487cd7a179b9 .barss1{width:75%;background-color:rgb(238,238,238);height:1px;left:50%;margin-top:30px;position:relative;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .info-cookie{padding:20px 0px}.tg-page-css-487cd7a179b9 .menu-lateral-container{left:0px !important}.tg-page-css-487cd7a179b9 #barre{padding-top:20px;padding-bottom:20px}.tg-page-css-487cd7a179b9 .divheader{display:inline-block;float:right;position:relative;right:10px;height:70px;z-index:999}.tg-page-css-487cd7a179b9 .chemise-catalogue-photo img{width:auto;height:100%}.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{height:180px;padding:0px}.tg-page-css-487cd7a179b9 .modele-cataloguee{font-size:14px}.tg-page-css-487cd7a179b9 .chemise-catalogue{height:100% !important;margin:20px auto !important}.tg-page-css-487cd7a179b9 #background2{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .btn-rose{font-size:15px !important}.tg-page-css-487cd7a179b9 .hamburger{padding-left:0px !important}.tg-page-css-487cd7a179b9 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;right:0px;top:21px;z-index:101;margin-right:0px !important}.tg-page-css-487cd7a179b9 .panier-btn-img{display:block}.tg-page-css-487cd7a179b9 .hide-text{display:none}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant{display:none}.tg-page-css-487cd7a179b9 .popup_description{position:absolute;top:0px;right:0px;left:0px;padding-left:0px;padding-right:0px}.tg-page-css-487cd7a179b9 #popup{width:100%;z-index:2000;height:auto;left:0px;bottom:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;display:none;box-shadow:none;padding-bottom:20px;margin-top:0px !important;top:0px !important}.tg-page-css-487cd7a179b9 .fermer-popup{display:none}.tg-page-css-487cd7a179b9 #popup #detail{width:100%;top:0px;margin:0px;overflow-y:scroll;overflow-x:hidden;text-align:left;left:0px;right:0px;bottom:0px;position:fixed !important;height:100% !important}.tg-page-css-487cd7a179b9 #popup #detail::-webkit-scrollbar{width:0px;background-color:transparent;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #popup #photo_detail{width:100%;height:449px;position:absolute;margin:0px 0px 0px -20px;overflow:auto}}@media screen and (min-width:992px){.tg-page-css-487cd7a179b9 .info-livraison-container p{font-size:1em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}.tg-page-css-487cd7a179b9 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-487cd7a179b9 .header-page{padding:50px 10px}.tg-page-css-487cd7a179b9 .modele-find{font-size:0.9em;line-height:24px}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant li{font-size:1em}.tg-page-css-487cd7a179b9 .burger-menu{width:130px;display:-webkit-box;-webkit-box-align:center;height:70px;position:relative;left:1%;padding-top:3px}.tg-page-css-487cd7a179b9 .panier-btn{display:-webkit-box;-webkit-box-align:center;position:relative;left:87%;top:25px;z-index:101}.tg-page-css-487cd7a179b9 #popup{position:fixed;z-index:1501;width:100%;top:10px;display:none;font-family:Gotham-Book,sans-serif;font-weight:400}}@media screen and (max-width:991px){.tg-page-css-487cd7a179b9 .panier-content-hover{display:none}.tg-page-css-487cd7a179b9 .info-livraison-container p{font-size:1em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}.tg-page-css-487cd7a179b9 .burger-menu{display:-webkit-box;-webkit-box-align:center;height:20px;position:relative;left:10px;padding-top:35px}.tg-page-css-487cd7a179b9 .right-navigation{display:-webkit-box;-webkit-box-align:center}.tg-page-css-487cd7a179b9 .header-page{padding:50px 10px}.tg-page-css-487cd7a179b9 .modele-find{font-size:1em}.tg-page-css-487cd7a179b9 .filtre-menu-deroulant li{font-size:1em}.tg-page-css-487cd7a179b9 #popup{background-color:rgb(255,255,255);position:fixed;z-index:9999;width:100%;height:100%;display:none;font-family:Gotham-Book,sans-serif;font-weight:400;background-position:initial initial;background-repeat:initial initial}}.tg-page-css-487cd7a179b9 #header{position:fixed;left:0px;width:100%;z-index:1030;height:70px;background-color:white;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 footer{position:relative;bottom:0px;width:100%;margin-top:40px}.tg-page-css-487cd7a179b9 #footer-main{background-color:rgb(46,62,87)}.tg-page-css-487cd7a179b9 #footer-main ul{list-style:none}.tg-page-css-487cd7a179b9 #footer-main ul li{text-decoration:none;margin-top:25px;text-align:center}.tg-page-css-487cd7a179b9 #footer-main ul li img{max-width:70px}.tg-page-css-487cd7a179b9 .footer-help{border:1px solid rgb(255,255,255);padding:10px;margin:10px 0px}.tg-page-css-487cd7a179b9 .footer-help a{font-size:17px;color:rgb(255,255,255)}.tg-page-css-487cd7a179b9 #popup #detail{width:100%;position:relative;height:100%;margin:0px;background-color:rgb(255,255,255);background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #detail{width:100%;position:relative;height:auto;margin:0px;background-color:rgb(255,255,255);background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #background{position:absolute;z-index:1500;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #background3{position:absolute;z-index:999;top:0px;left:0px;background-color:rgb(0,0,0);opacity:0.5;width:100%;display:none;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 #footer-main{min-height:100px;padding-top:5px;padding-bottom:20px}.tg-page-css-487cd7a179b9 .cwhite{color:rgb(255,255,255)}.tg-page-css-487cd7a179b9 .fsize17{font-size:17px}.tg-page-css-487cd7a179b9 .fsize21{font-size:21px}.tg-page-css-487cd7a179b9 .tcenter{text-align:center}.tg-page-css-487cd7a179b9 .mb25{margin-bottom:25px}.tg-page-css-487cd7a179b9 .ml0{margin-left:0px}.tg-page-css-487cd7a179b9 .w100p{width:100%}.tg-page-css-487cd7a179b9 .z1500{z-index:1500}.tg-page-css-487cd7a179b9 .bbnone{border-bottom-style:none}.tg-page-css-487cd7a179b9 .style0007{color:rgb(255,255,255);font-size:17px;display:table;margin:25px auto}@media screen and (max-width:860px){.tg-page-css-487cd7a179b9 .panier-btn-img{width:100% !important}.tg-page-css-487cd7a179b9 .hide-text{display:none !important}}@media screen and (max-width:245px){.tg-page-css-487cd7a179b9 .btn-rose{display:inline-block;padding:10px;font-size:0.7em;background-color:rgb(24,136,115);color:rgb(255,255,255);text-align:center;height:50px;line-height:30px;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .info-livraison-container p{font-size:0.7em;color:rgb(255,255,255);text-transform:uppercase;line-height:1.4em;text-align:center;width:100%}}@media screen and (max-width:568px){.tg-page-css-487cd7a179b9 .btn-rose{padding:10px;width:90%;height:100%}.tg-page-css-487cd7a179b9 .panier-btn-img{width:100% !important}.tg-page-css-487cd7a179b9 .hide-text{display:none}}@media only screen and (min-width:1023px){.tg-page-css-487cd7a179b9 .panier-btn{left:86.5%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:50%;position:absolute;display:none;right:calc(53% - 501px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1280px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 596px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1472px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 597px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1440px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 599px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1600px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 602px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1680px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:32%;position:absolute;display:none;right:calc(52% - 604px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (min-width:1920px){.tg-page-css-487cd7a179b9 .panier-btn{left:88.6%}.tg-page-css-487cd7a179b9 .panier-content-hover{top:70px;z-index:99;background-color:white;border:0.5px solid rgb(230,230,230);width:40%;position:absolute;display:none;right:calc(52% - 609px) !important;background-position:initial initial;background-repeat:initial initial}}@media only screen and (max-width:500px){.tg-page-css-487cd7a179b9 #stripe{width:65px !important;margin-top:-6px !important}.tg-page-css-487cd7a179b9 .footer-help a{font-size:15px !important}}.tg-page-css-487cd7a179b9 .custom-dropdown__select{font-size:inherit;padding:0.5em;margin:0px}.tg-page-css-487cd7a179b9 .custom-dropdown__select--white{background-color:rgb(24,136,115);color:rgb(255,255,255)}.tg-page-css-487cd7a179b9 #footer_language_list{margin-top:12px;text-align:left;float:left}.tg-page-css-487cd7a179b9 #menu_language_list{text-align:left;float:left}.tg-page-css-487cd7a179b9 #footer_language_list ul{list-style:none;margin:0px;padding:0px}.tg-page-css-487cd7a179b9 #footer_language_list ul li{display:inline-block;margin:0px 7px;padding:0px;color:rgb(153,153,153);font-size:15px}.tg-page-css-487cd7a179b9 #footer_language_list ul li:first-child{margin-left:0px;margin-right:7px}.tg-page-css-487cd7a179b9 #footer_language_list ul li img{margin-top:-3px}.tg-page-css-487cd7a179b9 #country-indicator{color:rgb(255,255,255);margin-top:10px}.tg-page-css-487cd7a179b9 #country-indicator > span::after{content:'';display:inline-block;height:13px;width:14px;background-image:url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png");position:relative;top:-2px;left:12px;background-position:initial initial;background-repeat:no-repeat no-repeat}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="FR"]::before{background-image:url("/assets/design-system/production/img/FR.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="DE"]::before{background-image:url("/assets/design-system/production/img/DE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="NL"]::before{background-image:url("/assets/design-system/production/img/NL.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="ES"]::before{background-image:url("/assets/design-system/production/img/ES.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="IT"]::before{background-image:url("/assets/design-system/production/img/IT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="GB"]::before{background-image:url("/assets/design-system/production/img/GB.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="BE"]::before{background-image:url("/assets/design-system/production/img/BE.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="CH"]::before{background-image:url("/assets/design-system/production/img/CH.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="US"]::before{background-image:url("/assets/design-system/production/img/US.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="AT"]::before{background-image:url("/assets/design-system/production/img/AT.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag.country[data-locale$="LU"]::before{background-image:url("/assets/design-system/production/img/LU.svg");background-size:contain;background-position:initial initial;background-repeat:initial initial}.tg-page-css-487cd7a179b9 .flag::before{display:inline-block;margin-top:5px;content:'';width:19px;height:13px;margin-right:0.6em}.tg-page-css-487cd7a179b9 .info-cookie{background-color:rgb(33,48,78);position:fixed;bottom:-50px;left:0px;width:100%;z-index:1500}.tg-page-css-487cd7a179b9 .zindex{z-index:9999}.tg-page-css-487cd7a179b9 (max-width: 568px).badge-pill{left: -10px !important;}.tg-page-css-487cd7a179b9 .badge-pill{background-color: #188873;left: 8px;top: 13px;position: absolute;border-radius: 0px;}.tg-page-css-487cd7a179b9 .badge{display: inline-block;min-width: 10px;padding: 3px 7px;ont-size: 12px;color: #fff;vertical-align: middle;background-color: #777;border-radius: 10px;}.tg-page-css-487cd7a179b9 .badge.label{font-weight: 700;line-height: 1;white-space: nowrap;text-align: center;}
.tg-page-css-487cd7a179b9 .link-3{
position: relative;
margin-right: 25px;
}
@media screen and (min-width: 769px){
.tg-page-css-487cd7a179b9 .m-compte{
margin-left: auto;
display: flex;
align-items: center;
}

.tg-page-css-487cd7a179b9 .hide-link{display: none}
.tg-page-css-487cd7a179b9 .display-link{display: flex}
.tg-page-css-487cd7a179b9 .top-info{margin-top:40px}
.tg-page-css-487cd7a179b9 .col-lg-4{
width: 33.33333333%;
}
.tg-page-css-487cd7a179b9 .col-lg-8{
width: 66.66666666%;
}.tg-page-css-487cd7a179b9 .col-lg-5{
width: 41.66666667%;
}.tg-page-css-487cd7a179b9 .col-lg-7{width: 58.33333333%}

.tg-page-css-487cd7a179b9 .col-lg-3{
width: 25%;
}.tg-page-css-487cd7a179b9 .col-lg-1,.tg-page-css-487cd7a179b9 .col-lg-10,.tg-page-css-487cd7a179b9 .col-lg-11,.tg-page-css-487cd7a179b9 .col-lg-12,.tg-page-css-487cd7a179b9 .col-lg-2,.tg-page-css-487cd7a179b9 .col-lg-3,.tg-page-css-487cd7a179b9 .col-lg-4,.tg-page-css-487cd7a179b9 .col-lg-5,.tg-page-css-487cd7a179b9 .col-lg-6,.tg-page-css-487cd7a179b9 .col-lg-7,.tg-page-css-487cd7a179b9 .col-lg-8,.tg-page-css-487cd7a179b9 .col-lg-9{
float: left;
}

.tg-page-css-487cd7a179b9 .text-categorie{
padding: 60px 60px !important;
background: #f8f8f8 !important;
width: 375px !important;
height: 339px;
}
.tg-page-css-487cd7a179b9 .myp{font-weight: 700;color: #666;font-size: 15px;line-height: 20px;margin-left: 10px;margin-bottom: 50px;text-align: center;background:#f1f1f1;padding: 20px 40px;font-family:var(--font-family-regular);font-weight: 400;}
.tg-page-css-487cd7a179b9 .title-bar{display: flex;justify-content: space-between;align-items: center;padding:10px 0px;flex-direction: row;margin-bottom: 50px}
.tg-page-css-487cd7a179b9 .burger-menu{display: none !important}
.tg-page-css-487cd7a179b9 .h1-catalogue{text-transform:uppercase;color: #000;text-align: left;line-height: 40px;font-family:'Gotham-Medium', sans-serif;font-weight: 800;text-shadow: none;font-size: 35px;max-width: 100%;margin-bottom: 0px !important}
}

@media screen and (min-width:769px){
.tg-page-css-487cd7a179b9 .filter-fixed{position: fixed !important;
z-index: 9999;
right:0 !important ;
top: 0;
bottom:0;
padding: 0px;
width: 30% !important;overflow-y: auto;
height: 100%;
background-color: #fff;
transform: translateX(100%);
-webkit-transition: all 0.8s;
transition: all 0.8s;
}
.tg-page-css-487cd7a179b9 .line-product{
display: flex;
min-width: 352px;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
height: 100%;
flex: 1 0 0px;
}
.tg-page-css-487cd7a179b9 .catalogue{width:100%;    display: grid;
grid-template-columns: repeat(4, minmax(0, 354px));
align-items: flex-start;
align-content: flex-start;
justify-content: space-between;
gap: 0;
align-self: stretch;}
.tg-page-css-487cd7a179b9 .line-product,
.tg-page-css-487cd7a179b9 .chemise-catalogue,
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{
flex: 0 1 354px;
height: auto;
max-width: 354px;
min-width: 0;
width: 100%;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo > a,
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo picture{
display: block;
width: 100%;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{
height: 472px !important;
max-width: 354px !important;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo img{
height: 472px !important;
max-height: none !important;
max-width: 354px !important;
object-fit: cover;
width: 100% !important;
}
}
@media screen and (max-width:768px){
.tg-page-css-487cd7a179b9 .navbar-brand{
padding: 10px !important;
}
.tg-page-css-487cd7a179b9 .m-compte{
display: none;
}
.tg-page-css-487cd7a179b9 .display-link{display: none}
.tg-page-css-487cd7a179b9 .catalogue{
width:100%;
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:20px 12px;
justify-content:stretch;
}
.tg-page-css-487cd7a179b9 .line-product{
display: flex;
min-width: 0;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
height: 100%;
flex: 1 1 auto;
width: 100%;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue,
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{
max-width:none;
width:100%;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo{
aspect-ratio: 354 / 472;
height:auto !important;
}
.tg-page-css-487cd7a179b9 .chemise-catalogue-photo img{
width:100% !important;
aspect-ratio: 354 / 472;
height:auto !important;
max-width:none !important;
object-fit:contain;
}
.tg-page-css-487cd7a179b9 .text-categorie{
padding: 60px 60px !important;
background: #f8f8f8 !important;
width: 100% !important;
height: 339px;
}
.tg-page-css-487cd7a179b9 .img-categorie img{
height: auto;
}
.tg-page-css-487cd7a179b9 .myp{font-weight: 700;color: #666;font-size: 15px;line-height: 20px;margin-bottom:30px;margin-top:0px;text-align: left;;background: transparent;font-family:var(--font-family-regular),sans-serif;
padding:0px;}
}
.tg-page-css-487cd7a179b9 .grise{color:#666;font-size:15px;float:left}

.tg-page-css-487cd7a179b9 .myh{font-size:15px;display: inline-block;font-weight:700}
.tg-page-css-487cd7a179b9 .btt{color:#fff;background: #188873;display: inline-block;width:20%;margin-left:10px;padding:7px;cursor:pointer;font-weight: bold;border:none;}
.tg-page-css-487cd7a179b9 .progressbar-wrapper{
background: #fff;
width: 200px;
padding-top: 10px;
padding-bottom: 25px;
display: block;
float: left;
}

.tg-page-css-487cd7a179b9 .progressbar li{
list-style-type: none;
width:16%;
float: left;
height: 10px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
border:1px solid #000;
background:#fff;
margin:0px 1px;
cursor: pointer;
}
.tg-page-css-487cd7a179b9 .progressbar li:first-child:after{
content: none;
}
.tg-page-css-487cd7a179b9 .progressbar li.active{
background-color: #21304e;
}
.tg-page-css-487cd7a179b9 .header-home{background:#005539 !important;height:550px !important;padding:0px !important}
.tg-page-css-487cd7a179b9 .hamburger{width:130px}
.tg-page-css-487cd7a179b9 .header-home{margin-top:30px}
.tg-page-css-487cd7a179b9 .contenu{flex-direction:row}
.tg-page-css-487cd7a179b9 .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
.tg-page-css-487cd7a179b9 .div2{width:54%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;}
.tg-page-css-487cd7a179b9 }
.temoignages-titre h2{font-family: var(--font-family-h);font-weight: 800;}
.tg-page-css-487cd7a179b9 .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-page-css-487cd7a179b9 strong{font-weight: 900 !important;font-size:20px}
.tg-page-css-487cd7a179b9 .menu2{display:flex;align-items:center;margin-left:15px}.tg-page-css-487cd7a179b9 .menu2 li{    padding: 15px;
font-size: 0.8rem;
display: flex;
align-items: center;
justify-content: center;}
.tg-page-css-487cd7a179b9 .menu2 a{display: inline-flex;
align-items: center;
font-weight: 900;
font-family: var(--font-family-regular);
position: relative;}
.tg-page-css-487cd7a179b9 .menu2 a:hover{color:#000}
.tg-page-css-487cd7a179b9 .divheader a{font-family:var(--font-family-regular),sans-serif;font-weight: 500;font-size: 0.8rem;}.tg-page-css-487cd7a179b9 p{font-family:var(--font-family-regular),sans-serif;font-weight:400}
.tg-page-css-487cd7a179b9 .menu2 li img{height:10px;margin-left:8px}
.tg-page-css-487cd7a179b9 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 60px;
top: 180px;
z-index: 99;
}

@media screen and (max-width: 768px){
.tg-page-css-487cd7a179b9 .filter-fixed{position: fixed !important;
z-index: 9999;
right:0 !important ;
top: 0;
bottom:0;
padding: 0px;
width: 90% !important;overflow-y: auto;
height: 100%;
background-color: #fff;
transform: translateX(100%);
-webkit-transition: all 0.8s;
transition: all 0.8s;
}
.tg-page-css-487cd7a179b9 .catalogue{
display: -ms-grid;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
justify-content: stretch;
gap: 20px 12px;
-ms-grid-row-align: stretch;
align-self: stretch;
-ms-flex-wrap: wrap;

}
.tg-page-css-487cd7a179b9 .menu-lateral-container{transform: translate(0);left:-100% !important;-webkit-transition: all 0.8s;
transition: all 0.8s;}
.tg-page-css-487cd7a179b9 .hide-link{display: block}
.tg-page-css-487cd7a179b9 .top-info{margin-top:30px}
.tg-page-css-487cd7a179b9 .h1-catalogue{color: #000;text-align: left;line-height: 30px;font-family: var(--font-family-h);font-weight: 800;text-shadow: none;font-size: 23px;max-width: 100%;text-transform: uppercase;}
.tg-page-css-487cd7a179b9 .title-bar{display: flex;justify-content: space-between;align-items:flex-start;padding:10px 10px;flex-direction: column;}
.tg-page-css-487cd7a179b9 .margin-150{margin:50px auto}
.tg-page-css-487cd7a179b9 .mrg-left{margin-left:0px !important}
.tg-page-css-487cd7a179b9 .header-home .contenu h1::before,.tg-page-css-487cd7a179b9 .header-home .contenu h1::after{display:none !important}
.tg-page-css-487cd7a179b9 .header-home{background:#005539 !important;height:100% !important;padding:0px !important}
.tg-page-css-487cd7a179b9 .burger-menu{display:block}
.tg-page-css-487cd7a179b9 .header-home{margin-top:50px}
.tg-page-css-487cd7a179b9 .menu2{display:none}
.tg-page-css-487cd7a179b9 .divheader,.tg-page-css-487cd7a179b9 #connect{display:none}
.tg-page-css-487cd7a179b9 #openMenu{width:90px !important}
.tg-page-css-487cd7a179b9 .hamburger{width:90px !important}
.tg-page-css-487cd7a179b9 .header-home{margin-top:45px}
.tg-page-css-487cd7a179b9 .contenu{flex-direction:column}
.tg-page-css-487cd7a179b9 .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-page-css-487cd7a179b9 .div2{width:100%;background: url("/assets/design-system/production/img/flanelle_monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-page-css-487cd7a179b9 .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}

.tg-page-css-487cd7a179b9 .divheader{align-items:center}
.tg-page-css-487cd7a179b9 .navbar-brand a img{width:160px}
.tg-page-css-487cd7a179b9 .menu2 a::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-page-css-487cd7a179b9 .menu2 a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-487cd7a179b9 .link-b{margin-top:30px;}
.tg-page-css-487cd7a179b9 .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-page-css-487cd7a179b9 .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background-color: #fff;}
.tg-page-css-487cd7a179b9 .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-page-css-487cd7a179b9 .link-b a:hover{color:#fff}
.tg-page-css-487cd7a179b9 #navbar{border-bottom: 2px solid #f1f1f1;
display: flex;
align-items: center;
justify-content: center;
height: 100%;        margin-left: 0px !important;
margin-right: 0px !important;
}
.tg-page-css-487cd7a179b9 .h1-chemise{color: #000;
text-align: left;
line-height: 45px;
font-family:var(--font-family-h) !important;
font-weight: 800 !important;
text-shadow: none;
font-size: 35px !important;
text-transform: uppercase;
margin-bottom: 30px !important;text-transform: uppercase;}
.tg-page-css-487cd7a179b9 .ba-des{display: flex;
margin: 30px 0;
background: #f1f1f1;
border-radius: 10px;
padding: 20px;}
.tg-page-css-487cd7a179b9 .filtere h5,.tg-page-css-487cd7a179b9 .filtere.h5{text-transform: uppercase;
font-family: var(--font-family-oswald);
font-weight: 900 !important;}
.tg-page-css-487cd7a179b9 p,.tg-page-css-487cd7a179b9 span,.tg-page-css-487cd7a179b9 li,.tg-page-css-487cd7a179b9 td{font-family:var(--font-family-regular),sans-serif !important;}
.tg-page-css-487cd7a179b9 .categorie-link{
background-color:transparent;
color: #000;
padding: 5px;
display: inline-block;
margin: 7px 40px 7px 5px;
display: block;
font-family:var(--font-family-regular);
font-size: 14px;
font-weight: 600;
width: 100%;
}
.tg-page-css-487cd7a179b9 .categorie-link:hover{text-decoration: underline;color:#000 !important}
.tg-page-css-487cd7a179b9 .lk{padding:5px 5px !important;font-size:0.8em !important;color:#555;font-weight: normal !important}
.tg-page-css-487cd7a179b9 .filtere h6{margin-bottom: 1rem;
font-size: 15px;
font-weight: 600;
letter-spacing: 1.4px;
line-height: 1.3;
display: block;
padding-left: 10px;
justify-content: space-between;
align-items: flex-start;
flex-wrap: nowrap;
text-transform: uppercase;
font-family: var(--font-family-h);cursor: pointer}
.tg-page-css-487cd7a179b9 .filtere h6:hover{text-decoration: underline;}
.tg-page-css-487cd7a179b9 .filtre-menu-deroulant li:hover{text-decoration: underline;background-color: transparent !important;}
.tg-page-css-487cd7a179b9 #tissage{
margin-top: 10px;
transition: max-height 0.3s ease, opacity 0.3s ease;
overflow: hidden;
}
.tg-page-css-487cd7a179b9 .hidden{
display: none !important;
}
.tg-page-css-487cd7a179b9 #toggle-icon{
transition: transform 0.3s ease;
}
.tg-page-css-487cd7a179b9 .visible{
display: block !important;
}
.tg-page-css-487cd7a179b9 .rotate{
transform: rotate(90deg);
}
.tg-page-css-487cd7a179b9 .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-page-css-487cd7a179b9 .scrollenone{overflow: hidden !important;}
.tg-page-css-487cd7a179b9 .header__icon--close{
width: 1rem;
position: fixed;
top: .8rem;
right:20px;
opacity: 1;
z-index: 4;
color: #000;
background-color: #fff;
}
.tg-page-css-487cd7a179b9 #background3{z-index:9999 !important}
.tg-page-css-487cd7a179b9 .catalogue-details a:hover{text-decoration: underline;color:#333 !important}
.tg-page-css-487cd7a179b9 .filter-toggle:hover{text-decoration: underline;}
.tg-page-css-487cd7a179b9 .st{color:#000;font-weight: bold;}
.tg-page-css-487cd7a179b9 #header-container{
height: 100%;
}

/* styles de page dédupliqués: 862bd706a6ff */
.tg-page-css-862bd706a6ff strong{font-weight: bold}
                            .tg-page-css-862bd706a6ff .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-page-css-862bd706a6ff .table_tissage img{float: left; margin-right: 10px;}
                            .tg-page-css-862bd706a6ff #img_titrage{float:left;margin:0 10px 10px 50px;}


/* production historique isolée */
/* source: public/assets/design-system/production/css/bootstrap.min.css */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=59185f0c6fb8dd0cf5b7daac18038944)
 * Config saved to config.json and https://gist.github.com/59185f0c6fb8dd0cf5b7daac18038944
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.tg-production-page .label,.tg-production-page sub,.tg-production-page sup{vertical-align:baseline}.tg-production-page hr,.tg-production-page img{border:0}.tg-production-page body,.tg-production-page figure{margin:0}.tg-production-page .btn-group>.btn-group,.tg-production-page .btn-toolbar .btn,.tg-production-page .btn-toolbar .btn-group,.tg-production-page .btn-toolbar .input-group,.tg-production-page .col-xs-1,.tg-production-page .col-xs-10,.tg-production-page .col-xs-11,.tg-production-page .col-xs-12,.tg-production-page .col-xs-2,.tg-production-page .col-xs-3,.tg-production-page .col-xs-4,.tg-production-page .col-xs-5,.tg-production-page .col-xs-6,.tg-production-page .col-xs-7,.tg-production-page .col-xs-8,.tg-production-page .col-xs-9,.tg-production-page .dropdown-menu{float:left}.tg-production-page .navbar-fixed-bottom .navbar-collapse,.tg-production-page .navbar-fixed-top .navbar-collapse,.tg-production-page .pre-scrollable{max-height:340px}html.tg-production-page{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.tg-production-page article,.tg-production-page aside,.tg-production-page details,.tg-production-page figcaption,.tg-production-page figure,.tg-production-page footer,.tg-production-page header,.tg-production-page hgroup,.tg-production-page main,.tg-production-page menu,.tg-production-page nav,.tg-production-page section,.tg-production-page summary{display:block}.tg-production-page audio,.tg-production-page canvas,.tg-production-page progress,.tg-production-page video{display:inline-block;vertical-align:baseline}.tg-production-page audio:not([controls]){display:none;height:0}.tg-production-page [hidden],.tg-production-page template{display:none}.tg-production-page a{background-color:transparent}.tg-production-page a:active,.tg-production-page a:hover{outline:0}.tg-production-page b,.tg-production-page optgroup,.tg-production-page strong{font-weight:700}.tg-production-page dfn{font-style:italic}.tg-production-page h1{margin:.67em 0}.tg-production-page mark{background:#ff0;color:#000}.tg-production-page sub,.tg-production-page sup{font-size:75%;line-height:0;position:relative}.tg-production-page sup{top:-.5em}.tg-production-page sub{bottom:-.25em}.tg-production-page img{vertical-align:middle}.tg-production-page svg:not(:root){overflow:hidden}.tg-production-page hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.tg-production-page pre,.tg-production-page textarea{overflow:auto}.tg-production-page code,.tg-production-page kbd,.tg-production-page pre,.tg-production-page samp{font-size:1em}.tg-production-page button,.tg-production-page input,.tg-production-page optgroup,.tg-production-page select,.tg-production-page textarea{color:inherit;font:inherit;margin:0}.tg-production-page .glyphicon,.tg-production-page address{font-style:normal}.tg-production-page button{overflow:visible}.tg-production-page button,.tg-production-page select{text-transform:none}.tg-production-page button,html.tg-production-page input[type=button],.tg-production-page input[type=reset],.tg-production-page input[type=submit]{-webkit-appearance:button;cursor:pointer}.tg-production-page button[disabled],html.tg-production-page input[disabled]{cursor:default}.tg-production-page button::-moz-focus-inner,.tg-production-page input::-moz-focus-inner{border:0;padding:0}.tg-production-page input[type=checkbox],.tg-production-page input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.tg-production-page input[type=number]::-webkit-inner-spin-button,.tg-production-page input[type=number]::-webkit-outer-spin-button{height:auto}.tg-production-page input[type=search]::-webkit-search-cancel-button,.tg-production-page input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.tg-production-page table{border-collapse:collapse;border-spacing:0}.tg-production-page td,.tg-production-page th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{.tg-production-page blockquote,.tg-production-page img,.tg-production-page pre,.tg-production-page tr{page-break-inside:avoid}.tg-production-page *,.tg-production-page :after,.tg-production-page :before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}.tg-production-page a,.tg-production-page a:visited{text-decoration:underline}.tg-production-page a[href]:after{content:" (" attr(href) ")"}.tg-production-page abbr[title]:after{content:" (" attr(title) ")"}.tg-production-page a[href^="javascript:"]:after,.tg-production-page a[href^="#"]:after{content:""}.tg-production-page blockquote,.tg-production-page pre{border:1px solid #999}.tg-production-page thead{display:table-header-group}.tg-production-page img{max-width:100%!important}.tg-production-page h2,.tg-production-page h3,.tg-production-page p{orphans:3;widows:3}.tg-production-page h2,.tg-production-page h3{page-break-after:avoid}.tg-production-page .navbar{display:none}.tg-production-page .btn>.caret,.tg-production-page .dropup>.btn>.caret{border-top-color:#000!important}.tg-production-page .label{border:1px solid #000}.tg-production-page .table{border-collapse:collapse!important}.tg-production-page .table td,.tg-production-page .table th{background-color:#fff!important}.tg-production-page .table-bordered td,.tg-production-page .table-bordered th{border:1px solid #ddd!important}}.tg-production-page .dropdown-menu,.tg-production-page .modal-content{-webkit-background-clip:padding-box}.tg-production-page .btn,.tg-production-page .btn-danger.active,.tg-production-page .btn-danger:active,.tg-production-page .btn-default.active,.tg-production-page .btn-default:active,.tg-production-page .btn-info.active,.tg-production-page .btn-info:active,.tg-production-page .btn-primary.active,.tg-production-page .btn-primary:active,.tg-production-page .btn-warning.active,.tg-production-page .btn-warning:active,.tg-production-page .btn.active,.tg-production-page .btn:active,.tg-production-page .dropdown-menu>.disabled>a:focus,.tg-production-page .dropdown-menu>.disabled>a:hover,.tg-production-page .form-control,.tg-production-page .navbar-toggle,.tg-production-page .open>.dropdown-toggle.btn-danger,.tg-production-page .open>.dropdown-toggle.btn-default,.tg-production-page .open>.dropdown-toggle.btn-info,.tg-production-page .open>.dropdown-toggle.btn-primary,.tg-production-page .open>.dropdown-toggle.btn-warning{background-image:none}.tg-production-page .img-thumbnail,.tg-production-page body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url("/assets/design-system/production/fonts/glyphicons-halflings-regular.eot");src:url("/assets/design-system/production/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.woff2") format('woff2'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg')}.tg-production-page .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tg-production-page .glyphicon-asterisk:before{content:"\002a"}.tg-production-page .glyphicon-plus:before{content:"\002b"}.tg-production-page .glyphicon-eur:before,.tg-production-page .glyphicon-euro:before{content:"\20ac"}.tg-production-page .glyphicon-minus:before{content:"\2212"}.tg-production-page .glyphicon-cloud:before{content:"\2601"}.tg-production-page .glyphicon-envelope:before{content:"\2709"}.tg-production-page .glyphicon-pencil:before{content:"\270f"}.tg-production-page .glyphicon-glass:before{content:"\e001"}.tg-production-page .glyphicon-music:before{content:"\e002"}.tg-production-page .glyphicon-search:before{content:"\e003"}.tg-production-page .glyphicon-heart:before{content:"\e005"}.tg-production-page .glyphicon-star:before{content:"\e006"}.tg-production-page .glyphicon-star-empty:before{content:"\e007"}.tg-production-page .glyphicon-user:before{content:"\e008"}.tg-production-page .glyphicon-film:before{content:"\e009"}.tg-production-page .glyphicon-th-large:before{content:"\e010"}.tg-production-page .glyphicon-th:before{content:"\e011"}.tg-production-page .glyphicon-th-list:before{content:"\e012"}.tg-production-page .glyphicon-ok:before{content:"\e013"}.tg-production-page .glyphicon-remove:before{content:"\e014"}.tg-production-page .glyphicon-zoom-in:before{content:"\e015"}.tg-production-page .glyphicon-zoom-out:before{content:"\e016"}.tg-production-page .glyphicon-off:before{content:"\e017"}.tg-production-page .glyphicon-signal:before{content:"\e018"}.tg-production-page .glyphicon-cog:before{content:"\e019"}.tg-production-page .glyphicon-trash:before{content:"\e020"}.tg-production-page .glyphicon-home:before{content:"\e021"}.tg-production-page .glyphicon-file:before{content:"\e022"}.tg-production-page .glyphicon-time:before{content:"\e023"}.tg-production-page .glyphicon-road:before{content:"\e024"}.tg-production-page .glyphicon-download-alt:before{content:"\e025"}.tg-production-page .glyphicon-download:before{content:"\e026"}.tg-production-page .glyphicon-upload:before{content:"\e027"}.tg-production-page .glyphicon-inbox:before{content:"\e028"}.tg-production-page .glyphicon-play-circle:before{content:"\e029"}.tg-production-page .glyphicon-repeat:before{content:"\e030"}.tg-production-page .glyphicon-refresh:before{content:"\e031"}.tg-production-page .glyphicon-list-alt:before{content:"\e032"}.tg-production-page .glyphicon-lock:before{content:"\e033"}.tg-production-page .glyphicon-flag:before{content:"\e034"}.tg-production-page .glyphicon-headphones:before{content:"\e035"}.tg-production-page .glyphicon-volume-off:before{content:"\e036"}.tg-production-page .glyphicon-volume-down:before{content:"\e037"}.tg-production-page .glyphicon-volume-up:before{content:"\e038"}.tg-production-page .glyphicon-qrcode:before{content:"\e039"}.tg-production-page .glyphicon-barcode:before{content:"\e040"}.tg-production-page .glyphicon-tag:before{content:"\e041"}.tg-production-page .glyphicon-tags:before{content:"\e042"}.tg-production-page .glyphicon-book:before{content:"\e043"}.tg-production-page .glyphicon-bookmark:before{content:"\e044"}.tg-production-page .glyphicon-print:before{content:"\e045"}.tg-production-page .glyphicon-camera:before{content:"\e046"}.tg-production-page .glyphicon-font:before{content:"\e047"}.tg-production-page .glyphicon-bold:before{content:"\e048"}.tg-production-page .glyphicon-italic:before{content:"\e049"}.tg-production-page .glyphicon-text-height:before{content:"\e050"}.tg-production-page .glyphicon-text-width:before{content:"\e051"}.tg-production-page .glyphicon-align-left:before{content:"\e052"}.tg-production-page .glyphicon-align-center:before{content:"\e053"}.tg-production-page .glyphicon-align-right:before{content:"\e054"}.tg-production-page .glyphicon-align-justify:before{content:"\e055"}.tg-production-page .glyphicon-list:before{content:"\e056"}.tg-production-page .glyphicon-indent-left:before{content:"\e057"}.tg-production-page .glyphicon-indent-right:before{content:"\e058"}.tg-production-page .glyphicon-facetime-video:before{content:"\e059"}.tg-production-page .glyphicon-picture:before{content:"\e060"}.tg-production-page .glyphicon-map-marker:before{content:"\e062"}.tg-production-page .glyphicon-adjust:before{content:"\e063"}.tg-production-page .glyphicon-tint:before{content:"\e064"}.tg-production-page .glyphicon-edit:before{content:"\e065"}.tg-production-page .glyphicon-share:before{content:"\e066"}.tg-production-page .glyphicon-check:before{content:"\e067"}.tg-production-page .glyphicon-move:before{content:"\e068"}.tg-production-page .glyphicon-step-backward:before{content:"\e069"}.tg-production-page .glyphicon-fast-backward:before{content:"\e070"}.tg-production-page .glyphicon-backward:before{content:"\e071"}.tg-production-page .glyphicon-play:before{content:"\e072"}.tg-production-page .glyphicon-pause:before{content:"\e073"}.tg-production-page .glyphicon-stop:before{content:"\e074"}.tg-production-page .glyphicon-forward:before{content:"\e075"}.tg-production-page .glyphicon-fast-forward:before{content:"\e076"}.tg-production-page .glyphicon-step-forward:before{content:"\e077"}.tg-production-page .glyphicon-eject:before{content:"\e078"}.tg-production-page .glyphicon-chevron-left:before{content:"\e079"}.tg-production-page .glyphicon-chevron-right:before{content:"\e080"}.tg-production-page .glyphicon-plus-sign:before{content:"\e081"}.tg-production-page .glyphicon-minus-sign:before{content:"\e082"}.tg-production-page .glyphicon-remove-sign:before{content:"\e083"}.tg-production-page .glyphicon-ok-sign:before{content:"\e084"}.tg-production-page .glyphicon-question-sign:before{content:"\e085"}.tg-production-page .glyphicon-info-sign:before{content:"\e086"}.tg-production-page .glyphicon-screenshot:before{content:"\e087"}.tg-production-page .glyphicon-remove-circle:before{content:"\e088"}.tg-production-page .glyphicon-ok-circle:before{content:"\e089"}.tg-production-page .glyphicon-ban-circle:before{content:"\e090"}.tg-production-page .glyphicon-arrow-left:before{content:"\e091"}.tg-production-page .glyphicon-arrow-right:before{content:"\e092"}.tg-production-page .glyphicon-arrow-up:before{content:"\e093"}.tg-production-page .glyphicon-arrow-down:before{content:"\e094"}.tg-production-page .glyphicon-share-alt:before{content:"\e095"}.tg-production-page .glyphicon-resize-full:before{content:"\e096"}.tg-production-page .glyphicon-resize-small:before{content:"\e097"}.tg-production-page .glyphicon-exclamation-sign:before{content:"\e101"}.tg-production-page .glyphicon-gift:before{content:"\e102"}.tg-production-page .glyphicon-leaf:before{content:"\e103"}.tg-production-page .glyphicon-fire:before{content:"\e104"}.tg-production-page .glyphicon-eye-open:before{content:"\e105"}.tg-production-page .glyphicon-eye-close:before{content:"\e106"}.tg-production-page .glyphicon-warning-sign:before{content:"\e107"}.tg-production-page .glyphicon-plane:before{content:"\e108"}.tg-production-page .glyphicon-calendar:before{content:"\e109"}.tg-production-page .glyphicon-random:before{content:"\e110"}.tg-production-page .glyphicon-comment:before{content:"\e111"}.tg-production-page .glyphicon-magnet:before{content:"\e112"}.tg-production-page .glyphicon-chevron-up:before{content:"\e113"}.tg-production-page .glyphicon-chevron-down:before{content:"\e114"}.tg-production-page .glyphicon-retweet:before{content:"\e115"}.tg-production-page .glyphicon-shopping-cart:before{content:"\e116"}.tg-production-page .glyphicon-folder-close:before{content:"\e117"}.tg-production-page .glyphicon-folder-open:before{content:"\e118"}.tg-production-page .glyphicon-resize-vertical:before{content:"\e119"}.tg-production-page .glyphicon-resize-horizontal:before{content:"\e120"}.tg-production-page .glyphicon-hdd:before{content:"\e121"}.tg-production-page .glyphicon-bullhorn:before{content:"\e122"}.tg-production-page .glyphicon-bell:before{content:"\e123"}.tg-production-page .glyphicon-certificate:before{content:"\e124"}.tg-production-page .glyphicon-thumbs-up:before{content:"\e125"}.tg-production-page .glyphicon-thumbs-down:before{content:"\e126"}.tg-production-page .glyphicon-hand-right:before{content:"\e127"}.tg-production-page .glyphicon-hand-left:before{content:"\e128"}.tg-production-page .glyphicon-hand-up:before{content:"\e129"}.tg-production-page .glyphicon-hand-down:before{content:"\e130"}.tg-production-page .glyphicon-circle-arrow-right:before{content:"\e131"}.tg-production-page .glyphicon-circle-arrow-left:before{content:"\e132"}.tg-production-page .glyphicon-circle-arrow-up:before{content:"\e133"}.tg-production-page .glyphicon-circle-arrow-down:before{content:"\e134"}.tg-production-page .glyphicon-globe:before{content:"\e135"}.tg-production-page .glyphicon-wrench:before{content:"\e136"}.tg-production-page .glyphicon-tasks:before{content:"\e137"}.tg-production-page .glyphicon-filter:before{content:"\e138"}.tg-production-page .glyphicon-briefcase:before{content:"\e139"}.tg-production-page .glyphicon-fullscreen:before{content:"\e140"}.tg-production-page .glyphicon-dashboard:before{content:"\e141"}.tg-production-page .glyphicon-paperclip:before{content:"\e142"}.tg-production-page .glyphicon-heart-empty:before{content:"\e143"}.tg-production-page .glyphicon-link:before{content:"\e144"}.tg-production-page .glyphicon-phone:before{content:"\e145"}.tg-production-page .glyphicon-pushpin:before{content:"\e146"}.tg-production-page .glyphicon-usd:before{content:"\e148"}.tg-production-page .glyphicon-gbp:before{content:"\e149"}.tg-production-page .glyphicon-sort:before{content:"\e150"}.tg-production-page .glyphicon-sort-by-alphabet:before{content:"\e151"}.tg-production-page .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.tg-production-page .glyphicon-sort-by-order:before{content:"\e153"}.tg-production-page .glyphicon-sort-by-order-alt:before{content:"\e154"}.tg-production-page .glyphicon-sort-by-attributes:before{content:"\e155"}.tg-production-page .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.tg-production-page .glyphicon-unchecked:before{content:"\e157"}.tg-production-page .glyphicon-expand:before{content:"\e158"}.tg-production-page .glyphicon-collapse-down:before{content:"\e159"}.tg-production-page .glyphicon-collapse-up:before{content:"\e160"}.tg-production-page .glyphicon-log-in:before{content:"\e161"}.tg-production-page .glyphicon-flash:before{content:"\e162"}.tg-production-page .glyphicon-log-out:before{content:"\e163"}.tg-production-page .glyphicon-new-window:before{content:"\e164"}.tg-production-page .glyphicon-record:before{content:"\e165"}.tg-production-page .glyphicon-save:before{content:"\e166"}.tg-production-page .glyphicon-open:before{content:"\e167"}.tg-production-page .glyphicon-saved:before{content:"\e168"}.tg-production-page .glyphicon-import:before{content:"\e169"}.tg-production-page .glyphicon-export:before{content:"\e170"}.tg-production-page .glyphicon-send:before{content:"\e171"}.tg-production-page .glyphicon-floppy-disk:before{content:"\e172"}.tg-production-page .glyphicon-floppy-saved:before{content:"\e173"}.tg-production-page .glyphicon-floppy-remove:before{content:"\e174"}.tg-production-page .glyphicon-floppy-save:before{content:"\e175"}.tg-production-page .glyphicon-floppy-open:before{content:"\e176"}.tg-production-page .glyphicon-credit-card:before{content:"\e177"}.tg-production-page .glyphicon-transfer:before{content:"\e178"}.tg-production-page .glyphicon-cutlery:before{content:"\e179"}.tg-production-page .glyphicon-header:before{content:"\e180"}.tg-production-page .glyphicon-compressed:before{content:"\e181"}.tg-production-page .glyphicon-earphone:before{content:"\e182"}.tg-production-page .glyphicon-phone-alt:before{content:"\e183"}.tg-production-page .glyphicon-tower:before{content:"\e184"}.tg-production-page .glyphicon-stats:before{content:"\e185"}.tg-production-page .glyphicon-sd-video:before{content:"\e186"}.tg-production-page .glyphicon-hd-video:before{content:"\e187"}.tg-production-page .glyphicon-subtitles:before{content:"\e188"}.tg-production-page .glyphicon-sound-stereo:before{content:"\e189"}.tg-production-page .glyphicon-sound-dolby:before{content:"\e190"}.tg-production-page .glyphicon-sound-5-1:before{content:"\e191"}.tg-production-page .glyphicon-sound-6-1:before{content:"\e192"}.tg-production-page .glyphicon-sound-7-1:before{content:"\e193"}.tg-production-page .glyphicon-copyright-mark:before{content:"\e194"}.tg-production-page .glyphicon-registration-mark:before{content:"\e195"}.tg-production-page .glyphicon-cloud-download:before{content:"\e197"}.tg-production-page .glyphicon-cloud-upload:before{content:"\e198"}.tg-production-page .glyphicon-tree-conifer:before{content:"\e199"}.tg-production-page .glyphicon-tree-deciduous:before{content:"\e200"}.tg-production-page .glyphicon-cd:before{content:"\e201"}.tg-production-page .glyphicon-save-file:before{content:"\e202"}.tg-production-page .glyphicon-open-file:before{content:"\e203"}.tg-production-page .glyphicon-level-up:before{content:"\e204"}.tg-production-page .glyphicon-copy:before{content:"\e205"}.tg-production-page .glyphicon-paste:before{content:"\e206"}.tg-production-page .glyphicon-alert:before{content:"\e209"}.tg-production-page .glyphicon-equalizer:before{content:"\e210"}.tg-production-page .glyphicon-king:before{content:"\e211"}.tg-production-page .glyphicon-queen:before{content:"\e212"}.tg-production-page .glyphicon-pawn:before{content:"\e213"}.tg-production-page .glyphicon-bishop:before{content:"\e214"}.tg-production-page .glyphicon-knight:before{content:"\e215"}.tg-production-page .glyphicon-baby-formula:before{content:"\e216"}.tg-production-page .glyphicon-tent:before{content:"\26fa"}.tg-production-page .glyphicon-blackboard:before{content:"\e218"}.tg-production-page .glyphicon-bed:before{content:"\e219"}.tg-production-page .glyphicon-apple:before{content:"\f8ff"}.tg-production-page .glyphicon-erase:before{content:"\e221"}.tg-production-page .glyphicon-hourglass:before{content:"\231b"}.tg-production-page .glyphicon-lamp:before{content:"\e223"}.tg-production-page .glyphicon-duplicate:before{content:"\e224"}.tg-production-page .glyphicon-piggy-bank:before{content:"\e225"}.tg-production-page .glyphicon-scissors:before{content:"\e226"}.tg-production-page .glyphicon-bitcoin:before,.tg-production-page .glyphicon-btc:before,.tg-production-page .glyphicon-xbt:before{content:"\e227"}.tg-production-page .glyphicon-jpy:before,.tg-production-page .glyphicon-yen:before{content:"\00a5"}.tg-production-page .glyphicon-rub:before,.tg-production-page .glyphicon-ruble:before{content:"\20bd"}.tg-production-page .glyphicon-scale:before{content:"\e230"}.tg-production-page .glyphicon-ice-lolly:before{content:"\e231"}.tg-production-page .glyphicon-ice-lolly-tasted:before{content:"\e232"}.tg-production-page .glyphicon-education:before{content:"\e233"}.tg-production-page .glyphicon-option-horizontal:before{content:"\e234"}.tg-production-page .glyphicon-option-vertical:before{content:"\e235"}.tg-production-page .glyphicon-menu-hamburger:before{content:"\e236"}.tg-production-page .glyphicon-modal-window:before{content:"\e237"}.tg-production-page .glyphicon-oil:before{content:"\e238"}.tg-production-page .glyphicon-grain:before{content:"\e239"}.tg-production-page .glyphicon-sunglasses:before{content:"\e240"}.tg-production-page .glyphicon-text-size:before{content:"\e241"}.tg-production-page .glyphicon-text-color:before{content:"\e242"}.tg-production-page .glyphicon-text-background:before{content:"\e243"}.tg-production-page .glyphicon-object-align-top:before{content:"\e244"}.tg-production-page .glyphicon-object-align-bottom:before{content:"\e245"}.tg-production-page .glyphicon-object-align-horizontal:before{content:"\e246"}.tg-production-page .glyphicon-object-align-left:before{content:"\e247"}.tg-production-page .glyphicon-object-align-vertical:before{content:"\e248"}.tg-production-page .glyphicon-object-align-right:before{content:"\e249"}.tg-production-page .glyphicon-triangle-right:before{content:"\e250"}.tg-production-page .glyphicon-triangle-left:before{content:"\e251"}.tg-production-page .glyphicon-triangle-bottom:before{content:"\e252"}.tg-production-page .glyphicon-triangle-top:before{content:"\e253"}.tg-production-page .glyphicon-console:before{content:"\e254"}.tg-production-page .glyphicon-superscript:before{content:"\e255"}.tg-production-page .glyphicon-subscript:before{content:"\e256"}.tg-production-page .glyphicon-menu-left:before{content:"\e257"}.tg-production-page .glyphicon-menu-right:before{content:"\e258"}.tg-production-page .glyphicon-menu-down:before{content:"\e259"}.tg-production-page .glyphicon-menu-up:before{content:"\e260"}.tg-production-page *,.tg-production-page :after,.tg-production-page :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html.tg-production-page{font-size:10px;-webkit-tap-highlight-color:transparent}.tg-production-page body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333}.tg-production-page button,.tg-production-page input,.tg-production-page select,.tg-production-page textarea{font-family:inherit;font-size:inherit;line-height:inherit}.tg-production-page a{color:#337ab7;text-decoration:none}.tg-production-page a:focus,.tg-production-page a:hover{color:#23527c;text-decoration:underline}.tg-production-page a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-production-page .carousel-inner>.item>a>img,.tg-production-page .carousel-inner>.item>img,.tg-production-page .img-responsive,.tg-production-page .thumbnail a>img,.tg-production-page .thumbnail>img{display:block;max-width:100%;height:auto}.tg-production-page .img-rounded{border-radius:6px}.tg-production-page .img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.tg-production-page .img-circle{border-radius:50%}.tg-production-page hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.tg-production-page .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.tg-production-page .sr-only-focusable:active,.tg-production-page .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.tg-production-page [role=button]{cursor:pointer}.tg-production-page .h1,.tg-production-page .h2,.tg-production-page .h3,.tg-production-page .h4,.tg-production-page .h5,.tg-production-page .h6,.tg-production-page h1,.tg-production-page h2,.tg-production-page h3,.tg-production-page h4,.tg-production-page h5,.tg-production-page h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-production-page .h1 .small,.tg-production-page .h1 small,.tg-production-page .h2 .small,.tg-production-page .h2 small,.tg-production-page .h3 .small,.tg-production-page .h3 small,.tg-production-page .h4 .small,.tg-production-page .h4 small,.tg-production-page .h5 .small,.tg-production-page .h5 small,.tg-production-page .h6 .small,.tg-production-page .h6 small,.tg-production-page h1 .small,.tg-production-page h1 small,.tg-production-page h2 .small,.tg-production-page h2 small,.tg-production-page h3 .small,.tg-production-page h3 small,.tg-production-page h4 .small,.tg-production-page h4 small,.tg-production-page h5 .small,.tg-production-page h5 small,.tg-production-page h6 .small,.tg-production-page h6 small{font-weight:400;line-height:1;color:#777}.tg-production-page .h1,.tg-production-page .h2,.tg-production-page .h3,.tg-production-page h1,.tg-production-page h2,.tg-production-page h3{margin-top:20px;margin-bottom:10px}.tg-production-page .h1 .small,.tg-production-page .h1 small,.tg-production-page .h2 .small,.tg-production-page .h2 small,.tg-production-page .h3 .small,.tg-production-page .h3 small,.tg-production-page h1 .small,.tg-production-page h1 small,.tg-production-page h2 .small,.tg-production-page h2 small,.tg-production-page h3 .small,.tg-production-page h3 small{font-size:65%}.tg-production-page .h4,.tg-production-page .h5,.tg-production-page .h6,.tg-production-page h4,.tg-production-page h5,.tg-production-page h6{margin-top:10px;margin-bottom:10px}.tg-production-page .h4 .small,.tg-production-page .h4 small,.tg-production-page .h5 .small,.tg-production-page .h5 small,.tg-production-page .h6 .small,.tg-production-page .h6 small,.tg-production-page h4 .small,.tg-production-page h4 small,.tg-production-page h5 .small,.tg-production-page h5 small,.tg-production-page h6 .small,.tg-production-page h6 small{font-size:75%}.tg-production-page .h1,.tg-production-page h1{font-size:36px}.tg-production-page .h2,.tg-production-page h2{font-size:30px}.tg-production-page .h3,.tg-production-page h3{font-size:24px}.tg-production-page .h4,.tg-production-page h4{font-size:18px}.tg-production-page .h5,.tg-production-page h5{font-size:14px}.tg-production-page .h6,.tg-production-page h6{font-size:12px}.tg-production-page p{margin:0 0 10px}.tg-production-page .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}.tg-production-page dt,.tg-production-page kbd kbd,.tg-production-page label{font-weight:700}.tg-production-page address,.tg-production-page blockquote .small,.tg-production-page blockquote footer,.tg-production-page blockquote small,.tg-production-page dd,.tg-production-page dt,.tg-production-page pre{line-height:1.42857143}@media (min-width:768px){.tg-production-page .lead{font-size:21px}}.tg-production-page .small,.tg-production-page small{font-size:85%}.tg-production-page .mark,.tg-production-page mark{background-color:#fcf8e3;padding:.2em}.tg-production-page .list-inline,.tg-production-page .list-unstyled{padding-left:0;list-style:none}.tg-production-page .text-left{text-align:left}.tg-production-page .text-right{text-align:right}.tg-production-page .text-center{text-align:center}.tg-production-page .text-justify{text-align:justify}.tg-production-page .text-nowrap{white-space:nowrap}.tg-production-page .text-lowercase{text-transform:lowercase}.tg-production-page .text-uppercase{text-transform:uppercase}.tg-production-page .text-capitalize{text-transform:capitalize}.tg-production-page .text-muted{color:#777}.tg-production-page .text-primary{color:#337ab7}.tg-production-page a.text-primary:focus,.tg-production-page a.text-primary:hover{color:#286090}.tg-production-page .text-success{color:#3c763d}.tg-production-page a.text-success:focus,.tg-production-page a.text-success:hover{color:#2b542c}.tg-production-page .text-info{color:#31708f}.tg-production-page a.text-info:focus,.tg-production-page a.text-info:hover{color:#245269}.tg-production-page .text-warning{color:#8a6d3b}.tg-production-page a.text-warning:focus,.tg-production-page a.text-warning:hover{color:#66512c}.tg-production-page .text-danger{color:#a94442}.tg-production-page a.text-danger:focus,.tg-production-page a.text-danger:hover{color:#843534}.tg-production-page .bg-primary{color:#fff;background-color:#337ab7}.tg-production-page a.bg-primary:focus,.tg-production-page a.bg-primary:hover{background-color:#286090}.tg-production-page .bg-success{background-color:#dff0d8}.tg-production-page a.bg-success:focus,.tg-production-page a.bg-success:hover{background-color:#c1e2b3}.tg-production-page .bg-info{background-color:#d9edf7}.tg-production-page a.bg-info:focus,.tg-production-page a.bg-info:hover{background-color:#afd9ee}.tg-production-page .bg-warning{background-color:#fcf8e3}.tg-production-page a.bg-warning:focus,.tg-production-page a.bg-warning:hover{background-color:#f7ecb5}.tg-production-page .bg-danger{background-color:#f2dede}.tg-production-page a.bg-danger:focus,.tg-production-page a.bg-danger:hover{background-color:#e4b9b9}.tg-production-page pre code,.tg-production-page table{background-color:transparent}.tg-production-page .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.tg-production-page dl,.tg-production-page ol,.tg-production-page ul{margin-top:0}.tg-production-page blockquote ol:last-child,.tg-production-page blockquote p:last-child,.tg-production-page blockquote ul:last-child,.tg-production-page ol ol,.tg-production-page ol ul,.tg-production-page ul ol,.tg-production-page ul ul{margin-bottom:0}.tg-production-page address,.tg-production-page dl{margin-bottom:20px}.tg-production-page ol,.tg-production-page ul{margin-bottom:10px}.tg-production-page .list-inline{margin-left:-5px}.tg-production-page .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.tg-production-page dd{margin-left:0}@media (min-width:768px){.tg-production-page .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tg-production-page .dl-horizontal dd{margin-left:180px}.tg-production-page .container{width:740px}}.tg-production-page abbr[data-original-title],.tg-production-page abbr[title]{cursor:help;border-bottom:1px dotted #777}.tg-production-page .initialism{font-size:90%;text-transform:uppercase}.tg-production-page blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}.tg-production-page blockquote .small,.tg-production-page blockquote footer,.tg-production-page blockquote small{display:block;font-size:80%;color:#777}.tg-production-page legend,.tg-production-page pre{display:block;color:#333}.tg-production-page blockquote .small:before,.tg-production-page blockquote footer:before,.tg-production-page blockquote small:before{content:'\2014 \00A0'}.tg-production-page .blockquote-reverse,.tg-production-page blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.tg-production-page code,.tg-production-page kbd{padding:2px 4px;font-size:90%}.tg-production-page caption,.tg-production-page th{text-align:left}.tg-production-page .blockquote-reverse .small:before,.tg-production-page .blockquote-reverse footer:before,.tg-production-page .blockquote-reverse small:before,.tg-production-page blockquote.pull-right .small:before,.tg-production-page blockquote.pull-right footer:before,.tg-production-page blockquote.pull-right small:before{content:''}.tg-production-page .blockquote-reverse .small:after,.tg-production-page .blockquote-reverse footer:after,.tg-production-page .blockquote-reverse small:after,.tg-production-page blockquote.pull-right .small:after,.tg-production-page blockquote.pull-right footer:after,.tg-production-page blockquote.pull-right small:after{content:'\00A0 \2014'}.tg-production-page code,.tg-production-page kbd,.tg-production-page pre,.tg-production-page samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}.tg-production-page code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}.tg-production-page kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}.tg-production-page kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}.tg-production-page pre{padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.tg-production-page .container,.tg-production-page .container-fluid{margin-right:auto;margin-left:auto}.tg-production-page pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.tg-production-page .container,.tg-production-page .container-fluid{padding-left:10px;padding-right:10px}.tg-production-page .pre-scrollable{overflow-y:scroll}@media (min-width:992px){.tg-production-page .container{width:960px}}@media (min-width:1200px){.tg-production-page .container{width:1160px}}.tg-production-page .row{margin-left:-10px;margin-right:-10px}.tg-production-page .col-lg-1,.tg-production-page .col-lg-10,.tg-production-page .col-lg-11,.tg-production-page .col-lg-12,.tg-production-page .col-lg-2,.tg-production-page .col-lg-3,.tg-production-page .col-lg-4,.tg-production-page .col-lg-5,.tg-production-page .col-lg-6,.tg-production-page .col-lg-7,.tg-production-page .col-lg-8,.tg-production-page .col-lg-9,.tg-production-page .col-md-1,.tg-production-page .col-md-10,.tg-production-page .col-md-11,.tg-production-page .col-md-12,.tg-production-page .col-md-2,.tg-production-page .col-md-3,.tg-production-page .col-md-4,.tg-production-page .col-md-5,.tg-production-page .col-md-6,.tg-production-page .col-md-7,.tg-production-page .col-md-8,.tg-production-page .col-md-9,.tg-production-page .col-sm-1,.tg-production-page .col-sm-10,.tg-production-page .col-sm-11,.tg-production-page .col-sm-12,.tg-production-page .col-sm-2,.tg-production-page .col-sm-3,.tg-production-page .col-sm-4,.tg-production-page .col-sm-5,.tg-production-page .col-sm-6,.tg-production-page .col-sm-7,.tg-production-page .col-sm-8,.tg-production-page .col-sm-9,.tg-production-page .col-xs-1,.tg-production-page .col-xs-10,.tg-production-page .col-xs-11,.tg-production-page .col-xs-12,.tg-production-page .col-xs-2,.tg-production-page .col-xs-3,.tg-production-page .col-xs-4,.tg-production-page .col-xs-5,.tg-production-page .col-xs-6,.tg-production-page .col-xs-7,.tg-production-page .col-xs-8,.tg-production-page .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-production-page .col-xs-12{width:100%}.tg-production-page .col-xs-11{width:91.66666667%}.tg-production-page .col-xs-10{width:83.33333333%}.tg-production-page .col-xs-9{width:75%}.tg-production-page .col-xs-8{width:66.66666667%}.tg-production-page .col-xs-7{width:58.33333333%}.tg-production-page .col-xs-6{width:50%}.tg-production-page .col-xs-5{width:41.66666667%}.tg-production-page .col-xs-4{width:33.33333333%}.tg-production-page .col-xs-3{width:25%}.tg-production-page .col-xs-2{width:16.66666667%}.tg-production-page .col-xs-1{width:8.33333333%}.tg-production-page .col-xs-pull-12{right:100%}.tg-production-page .col-xs-pull-11{right:91.66666667%}.tg-production-page .col-xs-pull-10{right:83.33333333%}.tg-production-page .col-xs-pull-9{right:75%}.tg-production-page .col-xs-pull-8{right:66.66666667%}.tg-production-page .col-xs-pull-7{right:58.33333333%}.tg-production-page .col-xs-pull-6{right:50%}.tg-production-page .col-xs-pull-5{right:41.66666667%}.tg-production-page .col-xs-pull-4{right:33.33333333%}.tg-production-page .col-xs-pull-3{right:25%}.tg-production-page .col-xs-pull-2{right:16.66666667%}.tg-production-page .col-xs-pull-1{right:8.33333333%}.tg-production-page .col-xs-pull-0{right:auto}.tg-production-page .col-xs-push-12{left:100%}.tg-production-page .col-xs-push-11{left:91.66666667%}.tg-production-page .col-xs-push-10{left:83.33333333%}.tg-production-page .col-xs-push-9{left:75%}.tg-production-page .col-xs-push-8{left:66.66666667%}.tg-production-page .col-xs-push-7{left:58.33333333%}.tg-production-page .col-xs-push-6{left:50%}.tg-production-page .col-xs-push-5{left:41.66666667%}.tg-production-page .col-xs-push-4{left:33.33333333%}.tg-production-page .col-xs-push-3{left:25%}.tg-production-page .col-xs-push-2{left:16.66666667%}.tg-production-page .col-xs-push-1{left:8.33333333%}.tg-production-page .col-xs-push-0{left:auto}.tg-production-page .col-xs-offset-12{margin-left:100%}.tg-production-page .col-xs-offset-11{margin-left:91.66666667%}.tg-production-page .col-xs-offset-10{margin-left:83.33333333%}.tg-production-page .col-xs-offset-9{margin-left:75%}.tg-production-page .col-xs-offset-8{margin-left:66.66666667%}.tg-production-page .col-xs-offset-7{margin-left:58.33333333%}.tg-production-page .col-xs-offset-6{margin-left:50%}.tg-production-page .col-xs-offset-5{margin-left:41.66666667%}.tg-production-page .col-xs-offset-4{margin-left:33.33333333%}.tg-production-page .col-xs-offset-3{margin-left:25%}.tg-production-page .col-xs-offset-2{margin-left:16.66666667%}.tg-production-page .col-xs-offset-1{margin-left:8.33333333%}.tg-production-page .col-xs-offset-0{margin-left:0}@media (min-width:768px){.tg-production-page .col-sm-1,.tg-production-page .col-sm-10,.tg-production-page .col-sm-11,.tg-production-page .col-sm-12,.tg-production-page .col-sm-2,.tg-production-page .col-sm-3,.tg-production-page .col-sm-4,.tg-production-page .col-sm-5,.tg-production-page .col-sm-6,.tg-production-page .col-sm-7,.tg-production-page .col-sm-8,.tg-production-page .col-sm-9{float:left}.tg-production-page .col-sm-12{width:100%}.tg-production-page .col-sm-11{width:91.66666667%}.tg-production-page .col-sm-10{width:83.33333333%}.tg-production-page .col-sm-9{width:75%}.tg-production-page .col-sm-8{width:66.66666667%}.tg-production-page .col-sm-7{width:58.33333333%}.tg-production-page .col-sm-6{width:50%}.tg-production-page .col-sm-5{width:41.66666667%}.tg-production-page .col-sm-4{width:33.33333333%}.tg-production-page .col-sm-3{width:25%}.tg-production-page .col-sm-2{width:16.66666667%}.tg-production-page .col-sm-1{width:8.33333333%}.tg-production-page .col-sm-pull-12{right:100%}.tg-production-page .col-sm-pull-11{right:91.66666667%}.tg-production-page .col-sm-pull-10{right:83.33333333%}.tg-production-page .col-sm-pull-9{right:75%}.tg-production-page .col-sm-pull-8{right:66.66666667%}.tg-production-page .col-sm-pull-7{right:58.33333333%}.tg-production-page .col-sm-pull-6{right:50%}.tg-production-page .col-sm-pull-5{right:41.66666667%}.tg-production-page .col-sm-pull-4{right:33.33333333%}.tg-production-page .col-sm-pull-3{right:25%}.tg-production-page .col-sm-pull-2{right:16.66666667%}.tg-production-page .col-sm-pull-1{right:8.33333333%}.tg-production-page .col-sm-pull-0{right:auto}.tg-production-page .col-sm-push-12{left:100%}.tg-production-page .col-sm-push-11{left:91.66666667%}.tg-production-page .col-sm-push-10{left:83.33333333%}.tg-production-page .col-sm-push-9{left:75%}.tg-production-page .col-sm-push-8{left:66.66666667%}.tg-production-page .col-sm-push-7{left:58.33333333%}.tg-production-page .col-sm-push-6{left:50%}.tg-production-page .col-sm-push-5{left:41.66666667%}.tg-production-page .col-sm-push-4{left:33.33333333%}.tg-production-page .col-sm-push-3{left:25%}.tg-production-page .col-sm-push-2{left:16.66666667%}.tg-production-page .col-sm-push-1{left:8.33333333%}.tg-production-page .col-sm-push-0{left:auto}.tg-production-page .col-sm-offset-12{margin-left:100%}.tg-production-page .col-sm-offset-11{margin-left:91.66666667%}.tg-production-page .col-sm-offset-10{margin-left:83.33333333%}.tg-production-page .col-sm-offset-9{margin-left:75%}.tg-production-page .col-sm-offset-8{margin-left:66.66666667%}.tg-production-page .col-sm-offset-7{margin-left:58.33333333%}.tg-production-page .col-sm-offset-6{margin-left:50%}.tg-production-page .col-sm-offset-5{margin-left:41.66666667%}.tg-production-page .col-sm-offset-4{margin-left:33.33333333%}.tg-production-page .col-sm-offset-3{margin-left:25%}.tg-production-page .col-sm-offset-2{margin-left:16.66666667%}.tg-production-page .col-sm-offset-1{margin-left:8.33333333%}.tg-production-page .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.tg-production-page .col-md-1,.tg-production-page .col-md-10,.tg-production-page .col-md-11,.tg-production-page .col-md-12,.tg-production-page .col-md-2,.tg-production-page .col-md-3,.tg-production-page .col-md-4,.tg-production-page .col-md-5,.tg-production-page .col-md-6,.tg-production-page .col-md-7,.tg-production-page .col-md-8,.tg-production-page .col-md-9{float:left}.tg-production-page .col-md-12{width:100%}.tg-production-page .col-md-11{width:91.66666667%}.tg-production-page .col-md-10{width:83.33333333%}.tg-production-page .col-md-9{width:75%}.tg-production-page .col-md-8{width:66.66666667%}.tg-production-page .col-md-7{width:58.33333333%}.tg-production-page .col-md-6{width:50%}.tg-production-page .col-md-5{width:41.66666667%}.tg-production-page .col-md-4{width:33.33333333%}.tg-production-page .col-md-3{width:25%}.tg-production-page .col-md-2{width:16.66666667%}.tg-production-page .col-md-1{width:8.33333333%}.tg-production-page .col-md-pull-12{right:100%}.tg-production-page .col-md-pull-11{right:91.66666667%}.tg-production-page .col-md-pull-10{right:83.33333333%}.tg-production-page .col-md-pull-9{right:75%}.tg-production-page .col-md-pull-8{right:66.66666667%}.tg-production-page .col-md-pull-7{right:58.33333333%}.tg-production-page .col-md-pull-6{right:50%}.tg-production-page .col-md-pull-5{right:41.66666667%}.tg-production-page .col-md-pull-4{right:33.33333333%}.tg-production-page .col-md-pull-3{right:25%}.tg-production-page .col-md-pull-2{right:16.66666667%}.tg-production-page .col-md-pull-1{right:8.33333333%}.tg-production-page .col-md-pull-0{right:auto}.tg-production-page .col-md-push-12{left:100%}.tg-production-page .col-md-push-11{left:91.66666667%}.tg-production-page .col-md-push-10{left:83.33333333%}.tg-production-page .col-md-push-9{left:75%}.tg-production-page .col-md-push-8{left:66.66666667%}.tg-production-page .col-md-push-7{left:58.33333333%}.tg-production-page .col-md-push-6{left:50%}.tg-production-page .col-md-push-5{left:41.66666667%}.tg-production-page .col-md-push-4{left:33.33333333%}.tg-production-page .col-md-push-3{left:25%}.tg-production-page .col-md-push-2{left:16.66666667%}.tg-production-page .col-md-push-1{left:8.33333333%}.tg-production-page .col-md-push-0{left:auto}.tg-production-page .col-md-offset-12{margin-left:100%}.tg-production-page .col-md-offset-11{margin-left:91.66666667%}.tg-production-page .col-md-offset-10{margin-left:83.33333333%}.tg-production-page .col-md-offset-9{margin-left:75%}.tg-production-page .col-md-offset-8{margin-left:66.66666667%}.tg-production-page .col-md-offset-7{margin-left:58.33333333%}.tg-production-page .col-md-offset-6{margin-left:50%}.tg-production-page .col-md-offset-5{margin-left:41.66666667%}.tg-production-page .col-md-offset-4{margin-left:33.33333333%}.tg-production-page .col-md-offset-3{margin-left:25%}.tg-production-page .col-md-offset-2{margin-left:16.66666667%}.tg-production-page .col-md-offset-1{margin-left:8.33333333%}.tg-production-page .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.tg-production-page .col-lg-1,.tg-production-page .col-lg-10,.tg-production-page .col-lg-11,.tg-production-page .col-lg-12,.tg-production-page .col-lg-2,.tg-production-page .col-lg-3,.tg-production-page .col-lg-4,.tg-production-page .col-lg-5,.tg-production-page .col-lg-6,.tg-production-page .col-lg-7,.tg-production-page .col-lg-8,.tg-production-page .col-lg-9{float:left}.tg-production-page .col-lg-12{width:100%}.tg-production-page .col-lg-11{width:91.66666667%}.tg-production-page .col-lg-10{width:83.33333333%}.tg-production-page .col-lg-9{width:75%}.tg-production-page .col-lg-8{width:66.66666667%}.tg-production-page .col-lg-7{width:58.33333333%}.tg-production-page .col-lg-6{width:50%}.tg-production-page .col-lg-5{width:41.66666667%}.tg-production-page .col-lg-4{width:33.33333333%}.tg-production-page .col-lg-3{width:25%}.tg-production-page .col-lg-2{width:16.66666667%}.tg-production-page .col-lg-1{width:8.33333333%}.tg-production-page .col-lg-pull-12{right:100%}.tg-production-page .col-lg-pull-11{right:91.66666667%}.tg-production-page .col-lg-pull-10{right:83.33333333%}.tg-production-page .col-lg-pull-9{right:75%}.tg-production-page .col-lg-pull-8{right:66.66666667%}.tg-production-page .col-lg-pull-7{right:58.33333333%}.tg-production-page .col-lg-pull-6{right:50%}.tg-production-page .col-lg-pull-5{right:41.66666667%}.tg-production-page .col-lg-pull-4{right:33.33333333%}.tg-production-page .col-lg-pull-3{right:25%}.tg-production-page .col-lg-pull-2{right:16.66666667%}.tg-production-page .col-lg-pull-1{right:8.33333333%}.tg-production-page .col-lg-pull-0{right:auto}.tg-production-page .col-lg-push-12{left:100%}.tg-production-page .col-lg-push-11{left:91.66666667%}.tg-production-page .col-lg-push-10{left:83.33333333%}.tg-production-page .col-lg-push-9{left:75%}.tg-production-page .col-lg-push-8{left:66.66666667%}.tg-production-page .col-lg-push-7{left:58.33333333%}.tg-production-page .col-lg-push-6{left:50%}.tg-production-page .col-lg-push-5{left:41.66666667%}.tg-production-page .col-lg-push-4{left:33.33333333%}.tg-production-page .col-lg-push-3{left:25%}.tg-production-page .col-lg-push-2{left:16.66666667%}.tg-production-page .col-lg-push-1{left:8.33333333%}.tg-production-page .col-lg-push-0{left:auto}.tg-production-page .col-lg-offset-12{margin-left:100%}.tg-production-page .col-lg-offset-11{margin-left:91.66666667%}.tg-production-page .col-lg-offset-10{margin-left:83.33333333%}.tg-production-page .col-lg-offset-9{margin-left:75%}.tg-production-page .col-lg-offset-8{margin-left:66.66666667%}.tg-production-page .col-lg-offset-7{margin-left:58.33333333%}.tg-production-page .col-lg-offset-6{margin-left:50%}.tg-production-page .col-lg-offset-5{margin-left:41.66666667%}.tg-production-page .col-lg-offset-4{margin-left:33.33333333%}.tg-production-page .col-lg-offset-3{margin-left:25%}.tg-production-page .col-lg-offset-2{margin-left:16.66666667%}.tg-production-page .col-lg-offset-1{margin-left:8.33333333%}.tg-production-page .col-lg-offset-0{margin-left:0}}.tg-production-page caption{padding-top:8px;padding-bottom:8px;color:#777}.tg-production-page .table{width:100%;max-width:100%;margin-bottom:20px}.tg-production-page .table>tbody>tr>td,.tg-production-page .table>tbody>tr>th,.tg-production-page .table>tfoot>tr>td,.tg-production-page .table>tfoot>tr>th,.tg-production-page .table>thead>tr>td,.tg-production-page .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.tg-production-page .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.tg-production-page .table>caption+thead>tr:first-child>td,.tg-production-page .table>caption+thead>tr:first-child>th,.tg-production-page .table>colgroup+thead>tr:first-child>td,.tg-production-page .table>colgroup+thead>tr:first-child>th,.tg-production-page .table>thead:first-child>tr:first-child>td,.tg-production-page .table>thead:first-child>tr:first-child>th{border-top:0}.tg-production-page .table>tbody+tbody{border-top:2px solid #ddd}.tg-production-page .table .table{background-color:#fff}.tg-production-page .table-condensed>tbody>tr>td,.tg-production-page .table-condensed>tbody>tr>th,.tg-production-page .table-condensed>tfoot>tr>td,.tg-production-page .table-condensed>tfoot>tr>th,.tg-production-page .table-condensed>thead>tr>td,.tg-production-page .table-condensed>thead>tr>th{padding:5px}.tg-production-page .table-bordered,.tg-production-page .table-bordered>tbody>tr>td,.tg-production-page .table-bordered>tbody>tr>th,.tg-production-page .table-bordered>tfoot>tr>td,.tg-production-page .table-bordered>tfoot>tr>th,.tg-production-page .table-bordered>thead>tr>td,.tg-production-page .table-bordered>thead>tr>th{border:1px solid #ddd}.tg-production-page .table-bordered>thead>tr>td,.tg-production-page .table-bordered>thead>tr>th{border-bottom-width:2px}.tg-production-page .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.tg-production-page .table-hover>tbody>tr:hover,.tg-production-page .table>tbody>tr.active>td,.tg-production-page .table>tbody>tr.active>th,.tg-production-page .table>tbody>tr>td.active,.tg-production-page .table>tbody>tr>th.active,.tg-production-page .table>tfoot>tr.active>td,.tg-production-page .table>tfoot>tr.active>th,.tg-production-page .table>tfoot>tr>td.active,.tg-production-page .table>tfoot>tr>th.active,.tg-production-page .table>thead>tr.active>td,.tg-production-page .table>thead>tr.active>th,.tg-production-page .table>thead>tr>td.active,.tg-production-page .table>thead>tr>th.active{background-color:#f5f5f5}.tg-production-page table col[class*=col-]{position:static;float:none;display:table-column}.tg-production-page table td[class*=col-],.tg-production-page table th[class*=col-]{position:static;float:none;display:table-cell}.tg-production-page .table-hover>tbody>tr.active:hover>td,.tg-production-page .table-hover>tbody>tr.active:hover>th,.tg-production-page .table-hover>tbody>tr:hover>.active,.tg-production-page .table-hover>tbody>tr>td.active:hover,.tg-production-page .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.tg-production-page .table>tbody>tr.success>td,.tg-production-page .table>tbody>tr.success>th,.tg-production-page .table>tbody>tr>td.success,.tg-production-page .table>tbody>tr>th.success,.tg-production-page .table>tfoot>tr.success>td,.tg-production-page .table>tfoot>tr.success>th,.tg-production-page .table>tfoot>tr>td.success,.tg-production-page .table>tfoot>tr>th.success,.tg-production-page .table>thead>tr.success>td,.tg-production-page .table>thead>tr.success>th,.tg-production-page .table>thead>tr>td.success,.tg-production-page .table>thead>tr>th.success{background-color:#dff0d8}.tg-production-page .table-hover>tbody>tr.success:hover>td,.tg-production-page .table-hover>tbody>tr.success:hover>th,.tg-production-page .table-hover>tbody>tr:hover>.success,.tg-production-page .table-hover>tbody>tr>td.success:hover,.tg-production-page .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.tg-production-page .table>tbody>tr.info>td,.tg-production-page .table>tbody>tr.info>th,.tg-production-page .table>tbody>tr>td.info,.tg-production-page .table>tbody>tr>th.info,.tg-production-page .table>tfoot>tr.info>td,.tg-production-page .table>tfoot>tr.info>th,.tg-production-page .table>tfoot>tr>td.info,.tg-production-page .table>tfoot>tr>th.info,.tg-production-page .table>thead>tr.info>td,.tg-production-page .table>thead>tr.info>th,.tg-production-page .table>thead>tr>td.info,.tg-production-page .table>thead>tr>th.info{background-color:#d9edf7}.tg-production-page .table-hover>tbody>tr.info:hover>td,.tg-production-page .table-hover>tbody>tr.info:hover>th,.tg-production-page .table-hover>tbody>tr:hover>.info,.tg-production-page .table-hover>tbody>tr>td.info:hover,.tg-production-page .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.tg-production-page .table>tbody>tr.warning>td,.tg-production-page .table>tbody>tr.warning>th,.tg-production-page .table>tbody>tr>td.warning,.tg-production-page .table>tbody>tr>th.warning,.tg-production-page .table>tfoot>tr.warning>td,.tg-production-page .table>tfoot>tr.warning>th,.tg-production-page .table>tfoot>tr>td.warning,.tg-production-page .table>tfoot>tr>th.warning,.tg-production-page .table>thead>tr.warning>td,.tg-production-page .table>thead>tr.warning>th,.tg-production-page .table>thead>tr>td.warning,.tg-production-page .table>thead>tr>th.warning{background-color:#fcf8e3}.tg-production-page .table-hover>tbody>tr.warning:hover>td,.tg-production-page .table-hover>tbody>tr.warning:hover>th,.tg-production-page .table-hover>tbody>tr:hover>.warning,.tg-production-page .table-hover>tbody>tr>td.warning:hover,.tg-production-page .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.tg-production-page .table>tbody>tr.danger>td,.tg-production-page .table>tbody>tr.danger>th,.tg-production-page .table>tbody>tr>td.danger,.tg-production-page .table>tbody>tr>th.danger,.tg-production-page .table>tfoot>tr.danger>td,.tg-production-page .table>tfoot>tr.danger>th,.tg-production-page .table>tfoot>tr>td.danger,.tg-production-page .table>tfoot>tr>th.danger,.tg-production-page .table>thead>tr.danger>td,.tg-production-page .table>thead>tr.danger>th,.tg-production-page .table>thead>tr>td.danger,.tg-production-page .table>thead>tr>th.danger{background-color:#f2dede}.tg-production-page .table-hover>tbody>tr.danger:hover>td,.tg-production-page .table-hover>tbody>tr.danger:hover>th,.tg-production-page .table-hover>tbody>tr:hover>.danger,.tg-production-page .table-hover>tbody>tr>td.danger:hover,.tg-production-page .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.tg-production-page .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.tg-production-page .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.tg-production-page .table-responsive>.table{margin-bottom:0}.tg-production-page .table-responsive>.table>tbody>tr>td,.tg-production-page .table-responsive>.table>tbody>tr>th,.tg-production-page .table-responsive>.table>tfoot>tr>td,.tg-production-page .table-responsive>.table>tfoot>tr>th,.tg-production-page .table-responsive>.table>thead>tr>td,.tg-production-page .table-responsive>.table>thead>tr>th{white-space:nowrap}.tg-production-page .table-responsive>.table-bordered{border:0}.tg-production-page .table-responsive>.table-bordered>tbody>tr>td:first-child,.tg-production-page .table-responsive>.table-bordered>tbody>tr>th:first-child,.tg-production-page .table-responsive>.table-bordered>tfoot>tr>td:first-child,.tg-production-page .table-responsive>.table-bordered>tfoot>tr>th:first-child,.tg-production-page .table-responsive>.table-bordered>thead>tr>td:first-child,.tg-production-page .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.tg-production-page .table-responsive>.table-bordered>tbody>tr>td:last-child,.tg-production-page .table-responsive>.table-bordered>tbody>tr>th:last-child,.tg-production-page .table-responsive>.table-bordered>tfoot>tr>td:last-child,.tg-production-page .table-responsive>.table-bordered>tfoot>tr>th:last-child,.tg-production-page .table-responsive>.table-bordered>thead>tr>td:last-child,.tg-production-page .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.tg-production-page .table-responsive>.table-bordered>tbody>tr:last-child>td,.tg-production-page .table-responsive>.table-bordered>tbody>tr:last-child>th,.tg-production-page .table-responsive>.table-bordered>tfoot>tr:last-child>td,.tg-production-page .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.tg-production-page fieldset,.tg-production-page legend{padding:0;border:0}.tg-production-page fieldset{margin:0;min-width:0}.tg-production-page legend{width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}.tg-production-page label{display:inline-block;max-width:100%;margin-bottom:5px}.tg-production-page input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}.tg-production-page input[type=checkbox],.tg-production-page input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.tg-production-page .form-control,.tg-production-page output{font-size:14px;line-height:1.42857143;color:#555;display:block}.tg-production-page input[type=file]{display:block}.tg-production-page input[type=range]{display:block;width:100%}.tg-production-page select[multiple],.tg-production-page select[size]{height:auto}.tg-production-page input[type=file]:focus,.tg-production-page input[type=checkbox]:focus,.tg-production-page input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-production-page output{padding-top:7px}.tg-production-page .form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.tg-production-page .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.tg-production-page .form-control::-moz-placeholder{color:#999;opacity:1}.tg-production-page .form-control:-ms-input-placeholder{color:#999}.tg-production-page .form-control::-webkit-input-placeholder{color:#999}.tg-production-page .has-success .checkbox,.tg-production-page .has-success .checkbox-inline,.tg-production-page .has-success .control-label,.tg-production-page .has-success .form-control-feedback,.tg-production-page .has-success .help-block,.tg-production-page .has-success .radio,.tg-production-page .has-success .radio-inline,.tg-production-page .has-success.checkbox label,.tg-production-page .has-success.checkbox-inline label,.tg-production-page .has-success.radio label,.tg-production-page .has-success.radio-inline label{color:#3c763d}.tg-production-page .form-control::-ms-expand{border:0;background-color:transparent}.tg-production-page .form-control[disabled],.tg-production-page .form-control[readonly],.tg-production-page fieldset[disabled] .form-control{background-color:#eee;opacity:1}.tg-production-page .form-control[disabled],.tg-production-page fieldset[disabled] .form-control{cursor:not-allowed}.tg-production-page textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){.tg-production-page input[type=date].form-control,.tg-production-page input[type=time].form-control,.tg-production-page input[type=datetime-local].form-control,.tg-production-page input[type=month].form-control{line-height:34px}.tg-production-page .input-group-sm input[type=date],.tg-production-page .input-group-sm input[type=time],.tg-production-page .input-group-sm input[type=datetime-local],.tg-production-page .input-group-sm input[type=month],.tg-production-page input[type=date].input-sm,.tg-production-page input[type=time].input-sm,.tg-production-page input[type=datetime-local].input-sm,.tg-production-page input[type=month].input-sm{line-height:30px}.tg-production-page .input-group-lg input[type=date],.tg-production-page .input-group-lg input[type=time],.tg-production-page .input-group-lg input[type=datetime-local],.tg-production-page .input-group-lg input[type=month],.tg-production-page input[type=date].input-lg,.tg-production-page input[type=time].input-lg,.tg-production-page input[type=datetime-local].input-lg,.tg-production-page input[type=month].input-lg{line-height:46px}}.tg-production-page .form-group{margin-bottom:15px}.tg-production-page .checkbox,.tg-production-page .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.tg-production-page .checkbox label,.tg-production-page .radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.tg-production-page .checkbox input[type=checkbox],.tg-production-page .checkbox-inline input[type=checkbox],.tg-production-page .radio input[type=radio],.tg-production-page .radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.tg-production-page .checkbox+.checkbox,.tg-production-page .radio+.radio{margin-top:-5px}.tg-production-page .checkbox-inline,.tg-production-page .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.tg-production-page .checkbox-inline+.checkbox-inline,.tg-production-page .radio-inline+.radio-inline{margin-top:0;margin-left:10px}.tg-production-page .checkbox-inline.disabled,.tg-production-page .checkbox.disabled label,.tg-production-page .radio-inline.disabled,.tg-production-page .radio.disabled label,.tg-production-page fieldset[disabled] .checkbox label,.tg-production-page fieldset[disabled] .checkbox-inline,.tg-production-page fieldset[disabled] .radio label,.tg-production-page fieldset[disabled] .radio-inline,.tg-production-page fieldset[disabled] input[type=checkbox],.tg-production-page fieldset[disabled] input[type=radio],.tg-production-page input[type=checkbox].disabled,.tg-production-page input[type=checkbox][disabled],.tg-production-page input[type=radio].disabled,.tg-production-page input[type=radio][disabled]{cursor:not-allowed}.tg-production-page .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.tg-production-page .form-control-static.input-lg,.tg-production-page .form-control-static.input-sm{padding-left:0;padding-right:0}.tg-production-page .form-group-sm .form-control,.tg-production-page .input-sm{padding:5px 10px;border-radius:3px;font-size:12px}.tg-production-page .input-sm{height:30px;line-height:1.5}.tg-production-page select.input-sm{height:30px;line-height:30px}.tg-production-page select[multiple].input-sm,.tg-production-page textarea.input-sm{height:auto}.tg-production-page .form-group-sm .form-control{height:30px;line-height:1.5}.tg-production-page .form-group-lg .form-control,.tg-production-page .input-lg{border-radius:6px;padding:10px 16px;font-size:18px}.tg-production-page .form-group-sm select.form-control{height:30px;line-height:30px}.tg-production-page .form-group-sm select[multiple].form-control,.tg-production-page .form-group-sm textarea.form-control{height:auto}.tg-production-page .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.tg-production-page .input-lg{height:46px;line-height:1.3333333}.tg-production-page select.input-lg{height:46px;line-height:46px}.tg-production-page select[multiple].input-lg,.tg-production-page textarea.input-lg{height:auto}.tg-production-page .form-group-lg .form-control{height:46px;line-height:1.3333333}.tg-production-page .form-group-lg select.form-control{height:46px;line-height:46px}.tg-production-page .form-group-lg select[multiple].form-control,.tg-production-page .form-group-lg textarea.form-control{height:auto}.tg-production-page .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.tg-production-page .has-feedback{position:relative}.tg-production-page .has-feedback .form-control{padding-right:42.5px}.tg-production-page .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.tg-production-page .collapsing,.tg-production-page .dropdown,.tg-production-page .dropup{position:relative}.tg-production-page .form-group-lg .form-control+.form-control-feedback,.tg-production-page .input-group-lg+.form-control-feedback,.tg-production-page .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.tg-production-page .form-group-sm .form-control+.form-control-feedback,.tg-production-page .input-group-sm+.form-control-feedback,.tg-production-page .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.tg-production-page .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-production-page .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.tg-production-page .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.tg-production-page .has-warning .checkbox,.tg-production-page .has-warning .checkbox-inline,.tg-production-page .has-warning .control-label,.tg-production-page .has-warning .form-control-feedback,.tg-production-page .has-warning .help-block,.tg-production-page .has-warning .radio,.tg-production-page .has-warning .radio-inline,.tg-production-page .has-warning.checkbox label,.tg-production-page .has-warning.checkbox-inline label,.tg-production-page .has-warning.radio label,.tg-production-page .has-warning.radio-inline label{color:#8a6d3b}.tg-production-page .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-production-page .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.tg-production-page .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.tg-production-page .has-error .checkbox,.tg-production-page .has-error .checkbox-inline,.tg-production-page .has-error .control-label,.tg-production-page .has-error .form-control-feedback,.tg-production-page .has-error .help-block,.tg-production-page .has-error .radio,.tg-production-page .has-error .radio-inline,.tg-production-page .has-error.checkbox label,.tg-production-page .has-error.checkbox-inline label,.tg-production-page .has-error.radio label,.tg-production-page .has-error.radio-inline label{color:#a94442}.tg-production-page .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-production-page .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.tg-production-page .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.tg-production-page .has-feedback label~.form-control-feedback{top:25px}.tg-production-page .has-feedback label.sr-only~.form-control-feedback{top:0}.tg-production-page .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.tg-production-page .form-inline .form-control-static,.tg-production-page .form-inline .form-group{display:inline-block}.tg-production-page .form-inline .control-label,.tg-production-page .form-inline .form-group{margin-bottom:0;vertical-align:middle}.tg-production-page .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.tg-production-page .form-inline .input-group{display:inline-table;vertical-align:middle}.tg-production-page .form-inline .input-group .form-control,.tg-production-page .form-inline .input-group .input-group-addon,.tg-production-page .form-inline .input-group .input-group-btn{width:auto}.tg-production-page .form-inline .input-group>.form-control{width:100%}.tg-production-page .form-inline .checkbox,.tg-production-page .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.tg-production-page .form-inline .checkbox label,.tg-production-page .form-inline .radio label{padding-left:0}.tg-production-page .form-inline .checkbox input[type=checkbox],.tg-production-page .form-inline .radio input[type=radio]{position:relative;margin-left:0}.tg-production-page .form-inline .has-feedback .form-control-feedback{top:0}.tg-production-page .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.tg-production-page .form-horizontal .checkbox,.tg-production-page .form-horizontal .checkbox-inline,.tg-production-page .form-horizontal .radio,.tg-production-page .form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.tg-production-page .form-horizontal .checkbox,.tg-production-page .form-horizontal .radio{min-height:27px}.tg-production-page .form-horizontal .form-group{margin-left:-10px;margin-right:-10px}.tg-production-page .form-horizontal .has-feedback .form-control-feedback{right:10px}@media (min-width:768px){.tg-production-page .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.tg-production-page .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.tg-production-page .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tg-production-page .btn.active.focus,.tg-production-page .btn.active:focus,.tg-production-page .btn.focus,.tg-production-page .btn:active.focus,.tg-production-page .btn:active:focus,.tg-production-page .btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-production-page .btn.focus,.tg-production-page .btn:focus,.tg-production-page .btn:hover{color:#333;text-decoration:none}.tg-production-page .btn.active,.tg-production-page .btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.tg-production-page .btn.disabled,.tg-production-page .btn[disabled],.tg-production-page fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.tg-production-page a.btn.disabled,.tg-production-page fieldset[disabled] a.btn{pointer-events:none}.tg-production-page .btn-default{color:#333;background-color:#fff;border-color:#ccc}.tg-production-page .btn-default.focus,.tg-production-page .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.tg-production-page .btn-default.active,.tg-production-page .btn-default:active,.tg-production-page .btn-default:hover,.tg-production-page .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.tg-production-page .btn-default.active.focus,.tg-production-page .btn-default.active:focus,.tg-production-page .btn-default.active:hover,.tg-production-page .btn-default:active.focus,.tg-production-page .btn-default:active:focus,.tg-production-page .btn-default:active:hover,.tg-production-page .open>.dropdown-toggle.btn-default.focus,.tg-production-page .open>.dropdown-toggle.btn-default:focus,.tg-production-page .open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.tg-production-page .btn-default.disabled.focus,.tg-production-page .btn-default.disabled:focus,.tg-production-page .btn-default.disabled:hover,.tg-production-page .btn-default[disabled].focus,.tg-production-page .btn-default[disabled]:focus,.tg-production-page .btn-default[disabled]:hover,.tg-production-page fieldset[disabled] .btn-default.focus,.tg-production-page fieldset[disabled] .btn-default:focus,.tg-production-page fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.tg-production-page .btn-default .badge{color:#fff;background-color:#333}.tg-production-page .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.tg-production-page .btn-primary.focus,.tg-production-page .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.tg-production-page .btn-primary.active,.tg-production-page .btn-primary:active,.tg-production-page .btn-primary:hover,.tg-production-page .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.tg-production-page .btn-primary.active.focus,.tg-production-page .btn-primary.active:focus,.tg-production-page .btn-primary.active:hover,.tg-production-page .btn-primary:active.focus,.tg-production-page .btn-primary:active:focus,.tg-production-page .btn-primary:active:hover,.tg-production-page .open>.dropdown-toggle.btn-primary.focus,.tg-production-page .open>.dropdown-toggle.btn-primary:focus,.tg-production-page .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.tg-production-page .btn-primary.disabled.focus,.tg-production-page .btn-primary.disabled:focus,.tg-production-page .btn-primary.disabled:hover,.tg-production-page .btn-primary[disabled].focus,.tg-production-page .btn-primary[disabled]:focus,.tg-production-page .btn-primary[disabled]:hover,.tg-production-page fieldset[disabled] .btn-primary.focus,.tg-production-page fieldset[disabled] .btn-primary:focus,.tg-production-page fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.tg-production-page .btn-primary .badge{color:#337ab7;background-color:#fff}.tg-production-page .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.tg-production-page .btn-success.focus,.tg-production-page .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.tg-production-page .btn-success.active,.tg-production-page .btn-success:active,.tg-production-page .btn-success:hover,.tg-production-page .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.tg-production-page .btn-success.active.focus,.tg-production-page .btn-success.active:focus,.tg-production-page .btn-success.active:hover,.tg-production-page .btn-success:active.focus,.tg-production-page .btn-success:active:focus,.tg-production-page .btn-success:active:hover,.tg-production-page .open>.dropdown-toggle.btn-success.focus,.tg-production-page .open>.dropdown-toggle.btn-success:focus,.tg-production-page .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.tg-production-page .btn-success.active,.tg-production-page .btn-success:active,.tg-production-page .open>.dropdown-toggle.btn-success{background-image:none}.tg-production-page .btn-success.disabled.focus,.tg-production-page .btn-success.disabled:focus,.tg-production-page .btn-success.disabled:hover,.tg-production-page .btn-success[disabled].focus,.tg-production-page .btn-success[disabled]:focus,.tg-production-page .btn-success[disabled]:hover,.tg-production-page fieldset[disabled] .btn-success.focus,.tg-production-page fieldset[disabled] .btn-success:focus,.tg-production-page fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.tg-production-page .btn-success .badge{color:#5cb85c;background-color:#fff}.tg-production-page .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.tg-production-page .btn-info.focus,.tg-production-page .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.tg-production-page .btn-info.active,.tg-production-page .btn-info:active,.tg-production-page .btn-info:hover,.tg-production-page .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.tg-production-page .btn-info.active.focus,.tg-production-page .btn-info.active:focus,.tg-production-page .btn-info.active:hover,.tg-production-page .btn-info:active.focus,.tg-production-page .btn-info:active:focus,.tg-production-page .btn-info:active:hover,.tg-production-page .open>.dropdown-toggle.btn-info.focus,.tg-production-page .open>.dropdown-toggle.btn-info:focus,.tg-production-page .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.tg-production-page .btn-info.disabled.focus,.tg-production-page .btn-info.disabled:focus,.tg-production-page .btn-info.disabled:hover,.tg-production-page .btn-info[disabled].focus,.tg-production-page .btn-info[disabled]:focus,.tg-production-page .btn-info[disabled]:hover,.tg-production-page fieldset[disabled] .btn-info.focus,.tg-production-page fieldset[disabled] .btn-info:focus,.tg-production-page fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.tg-production-page .btn-info .badge{color:#5bc0de;background-color:#fff}.tg-production-page .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.tg-production-page .btn-warning.focus,.tg-production-page .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.tg-production-page .btn-warning.active,.tg-production-page .btn-warning:active,.tg-production-page .btn-warning:hover,.tg-production-page .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.tg-production-page .btn-warning.active.focus,.tg-production-page .btn-warning.active:focus,.tg-production-page .btn-warning.active:hover,.tg-production-page .btn-warning:active.focus,.tg-production-page .btn-warning:active:focus,.tg-production-page .btn-warning:active:hover,.tg-production-page .open>.dropdown-toggle.btn-warning.focus,.tg-production-page .open>.dropdown-toggle.btn-warning:focus,.tg-production-page .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.tg-production-page .btn-warning.disabled.focus,.tg-production-page .btn-warning.disabled:focus,.tg-production-page .btn-warning.disabled:hover,.tg-production-page .btn-warning[disabled].focus,.tg-production-page .btn-warning[disabled]:focus,.tg-production-page .btn-warning[disabled]:hover,.tg-production-page fieldset[disabled] .btn-warning.focus,.tg-production-page fieldset[disabled] .btn-warning:focus,.tg-production-page fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.tg-production-page .btn-warning .badge{color:#f0ad4e;background-color:#fff}.tg-production-page .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.tg-production-page .btn-danger.focus,.tg-production-page .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.tg-production-page .btn-danger.active,.tg-production-page .btn-danger:active,.tg-production-page .btn-danger:hover,.tg-production-page .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.tg-production-page .btn-danger.active.focus,.tg-production-page .btn-danger.active:focus,.tg-production-page .btn-danger.active:hover,.tg-production-page .btn-danger:active.focus,.tg-production-page .btn-danger:active:focus,.tg-production-page .btn-danger:active:hover,.tg-production-page .open>.dropdown-toggle.btn-danger.focus,.tg-production-page .open>.dropdown-toggle.btn-danger:focus,.tg-production-page .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.tg-production-page .btn-danger.disabled.focus,.tg-production-page .btn-danger.disabled:focus,.tg-production-page .btn-danger.disabled:hover,.tg-production-page .btn-danger[disabled].focus,.tg-production-page .btn-danger[disabled]:focus,.tg-production-page .btn-danger[disabled]:hover,.tg-production-page fieldset[disabled] .btn-danger.focus,.tg-production-page fieldset[disabled] .btn-danger:focus,.tg-production-page fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.tg-production-page .btn-danger .badge{color:#d9534f;background-color:#fff}.tg-production-page .btn-link{color:#337ab7;font-weight:400;border-radius:0}.tg-production-page .btn-link,.tg-production-page .btn-link.active,.tg-production-page .btn-link:active,.tg-production-page .btn-link[disabled],.tg-production-page fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.tg-production-page .btn-link,.tg-production-page .btn-link:active,.tg-production-page .btn-link:focus,.tg-production-page .btn-link:hover{border-color:transparent}.tg-production-page .btn-link:focus,.tg-production-page .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.tg-production-page .btn-link[disabled]:focus,.tg-production-page .btn-link[disabled]:hover,.tg-production-page fieldset[disabled] .btn-link:focus,.tg-production-page fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.tg-production-page .btn-group-lg>.btn,.tg-production-page .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.tg-production-page .btn-group-sm>.btn,.tg-production-page .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.tg-production-page .btn-group-xs>.btn,.tg-production-page .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.tg-production-page .btn-block{display:block;width:100%}.tg-production-page .btn-block+.btn-block{margin-top:5px}.tg-production-page input[type=button].btn-block,.tg-production-page input[type=reset].btn-block,.tg-production-page input[type=submit].btn-block{width:100%}.tg-production-page .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.tg-production-page .fade.in{opacity:1}.tg-production-page .collapse{display:none}.tg-production-page .collapse.in{display:block}.tg-production-page tr.collapse.in{display:table-row}.tg-production-page tbody.collapse.in{display:table-row-group}.tg-production-page .collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.tg-production-page .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.tg-production-page .dropdown-toggle:focus{outline:0}.tg-production-page .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.tg-production-page .dropdown-menu-right,.tg-production-page .dropdown-menu.pull-right{left:auto;right:0}.tg-production-page .dropdown-header,.tg-production-page .dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.tg-production-page .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.tg-production-page .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.tg-production-page .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.tg-production-page .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.tg-production-page .btn-group>.btn:last-child:not(:first-child),.tg-production-page .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.tg-production-page .btn-group-vertical>.btn:not(:first-child):not(:last-child),.tg-production-page .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.tg-production-page .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.tg-production-page .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.tg-production-page .dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.tg-production-page .dropdown-menu>li>a:focus,.tg-production-page .dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.tg-production-page .dropdown-menu>.active>a,.tg-production-page .dropdown-menu>.active>a:focus,.tg-production-page .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.tg-production-page .dropdown-menu>.disabled>a,.tg-production-page .dropdown-menu>.disabled>a:focus,.tg-production-page .dropdown-menu>.disabled>a:hover{color:#777}.tg-production-page .dropdown-menu>.disabled>a:focus,.tg-production-page .dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.tg-production-page .open>.dropdown-menu{display:block}.tg-production-page .open>a{outline:0}.tg-production-page .dropdown-menu-left{left:0;right:auto}.tg-production-page .dropdown-header{font-size:12px;color:#777}.tg-production-page .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.tg-production-page .nav-justified>.dropdown .dropdown-menu,.tg-production-page .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.tg-production-page .pull-right>.dropdown-menu{right:0;left:auto}.tg-production-page .dropup .caret,.tg-production-page .navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.tg-production-page .dropup .dropdown-menu,.tg-production-page .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.tg-production-page .navbar-right .dropdown-menu{left:auto;right:0}.tg-production-page .navbar-right .dropdown-menu-left{left:0;right:auto}}.tg-production-page .btn-group,.tg-production-page .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.tg-production-page .btn-group-vertical>.btn,.tg-production-page .btn-group>.btn{position:relative;float:left}.tg-production-page .btn-group-vertical>.btn.active,.tg-production-page .btn-group-vertical>.btn:active,.tg-production-page .btn-group-vertical>.btn:focus,.tg-production-page .btn-group-vertical>.btn:hover,.tg-production-page .btn-group>.btn.active,.tg-production-page .btn-group>.btn:active,.tg-production-page .btn-group>.btn:focus,.tg-production-page .btn-group>.btn:hover{z-index:2}.tg-production-page .btn-group .btn+.btn,.tg-production-page .btn-group .btn+.btn-group,.tg-production-page .btn-group .btn-group+.btn,.tg-production-page .btn-group .btn-group+.btn-group{margin-left:-1px}.tg-production-page .btn-toolbar{margin-left:-5px}.tg-production-page .btn-toolbar>.btn,.tg-production-page .btn-toolbar>.btn-group,.tg-production-page .btn-toolbar>.input-group{margin-left:5px}.tg-production-page .btn .caret,.tg-production-page .btn-group>.btn:first-child{margin-left:0}.tg-production-page .btn-group .dropdown-toggle:active,.tg-production-page .btn-group.open .dropdown-toggle{outline:0}.tg-production-page .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.tg-production-page .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.tg-production-page .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.tg-production-page .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.tg-production-page .btn-lg .caret{border-width:5px 5px 0}.tg-production-page .dropup .btn-lg .caret{border-width:0 5px 5px}.tg-production-page .btn-group-vertical>.btn,.tg-production-page .btn-group-vertical>.btn-group,.tg-production-page .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.tg-production-page .btn-group-vertical>.btn-group>.btn{float:none}.tg-production-page .btn-group-vertical>.btn+.btn,.tg-production-page .btn-group-vertical>.btn+.btn-group,.tg-production-page .btn-group-vertical>.btn-group+.btn,.tg-production-page .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.tg-production-page .btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.tg-production-page .btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.tg-production-page .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.tg-production-page .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.tg-production-page .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.tg-production-page .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.tg-production-page .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.tg-production-page .btn-group-justified>.btn,.tg-production-page .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.tg-production-page .btn-group-justified>.btn-group .btn{width:100%}.tg-production-page .btn-group-justified>.btn-group .dropdown-menu{left:auto}.tg-production-page [data-toggle=buttons]>.btn input[type=checkbox],.tg-production-page [data-toggle=buttons]>.btn input[type=radio],.tg-production-page [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.tg-production-page [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.tg-production-page .input-group{position:relative;display:table;border-collapse:separate}.tg-production-page .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.tg-production-page .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.tg-production-page .input-group .form-control:focus{z-index:3}.tg-production-page .input-group-lg>.form-control,.tg-production-page .input-group-lg>.input-group-addon,.tg-production-page .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.tg-production-page select.input-group-lg>.form-control,.tg-production-page select.input-group-lg>.input-group-addon,.tg-production-page select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}.tg-production-page select[multiple].input-group-lg>.form-control,.tg-production-page select[multiple].input-group-lg>.input-group-addon,.tg-production-page select[multiple].input-group-lg>.input-group-btn>.btn,.tg-production-page textarea.input-group-lg>.form-control,.tg-production-page textarea.input-group-lg>.input-group-addon,.tg-production-page textarea.input-group-lg>.input-group-btn>.btn{height:auto}.tg-production-page .input-group-sm>.form-control,.tg-production-page .input-group-sm>.input-group-addon,.tg-production-page .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.tg-production-page select.input-group-sm>.form-control,.tg-production-page select.input-group-sm>.input-group-addon,.tg-production-page select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}.tg-production-page select[multiple].input-group-sm>.form-control,.tg-production-page select[multiple].input-group-sm>.input-group-addon,.tg-production-page select[multiple].input-group-sm>.input-group-btn>.btn,.tg-production-page textarea.input-group-sm>.form-control,.tg-production-page textarea.input-group-sm>.input-group-addon,.tg-production-page textarea.input-group-sm>.input-group-btn>.btn{height:auto}.tg-production-page .input-group .form-control,.tg-production-page .input-group-addon,.tg-production-page .input-group-btn{display:table-cell}.tg-production-page .nav>li,.tg-production-page .nav>li>a{display:block;position:relative}.tg-production-page .input-group .form-control:not(:first-child):not(:last-child),.tg-production-page .input-group-addon:not(:first-child):not(:last-child),.tg-production-page .input-group-btn:not(:first-child):not(:last-child){border-radius:0}.tg-production-page .input-group-addon,.tg-production-page .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.tg-production-page .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.tg-production-page .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.tg-production-page .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.tg-production-page .input-group-addon input[type=checkbox],.tg-production-page .input-group-addon input[type=radio]{margin-top:0}.tg-production-page .input-group .form-control:first-child,.tg-production-page .input-group-addon:first-child,.tg-production-page .input-group-btn:first-child>.btn,.tg-production-page .input-group-btn:first-child>.btn-group>.btn,.tg-production-page .input-group-btn:first-child>.dropdown-toggle,.tg-production-page .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.tg-production-page .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.tg-production-page .input-group-addon:first-child{border-right:0}.tg-production-page .input-group .form-control:last-child,.tg-production-page .input-group-addon:last-child,.tg-production-page .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.tg-production-page .input-group-btn:first-child>.btn:not(:first-child),.tg-production-page .input-group-btn:last-child>.btn,.tg-production-page .input-group-btn:last-child>.btn-group>.btn,.tg-production-page .input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.tg-production-page .input-group-addon:last-child{border-left:0}.tg-production-page .input-group-btn{position:relative;font-size:0;white-space:nowrap}.tg-production-page .input-group-btn>.btn{position:relative}.tg-production-page .input-group-btn>.btn+.btn{margin-left:-1px}.tg-production-page .input-group-btn>.btn:active,.tg-production-page .input-group-btn>.btn:focus,.tg-production-page .input-group-btn>.btn:hover{z-index:2}.tg-production-page .input-group-btn:first-child>.btn,.tg-production-page .input-group-btn:first-child>.btn-group{margin-right:-1px}.tg-production-page .input-group-btn:last-child>.btn,.tg-production-page .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.tg-production-page .nav{margin-bottom:0;padding-left:0;list-style:none}.tg-production-page .nav>li>a{padding:10px 15px}.tg-production-page .nav>li>a:focus,.tg-production-page .nav>li>a:hover{text-decoration:none;background-color:#eee}.tg-production-page .nav>li.disabled>a{color:#777}.tg-production-page .nav>li.disabled>a:focus,.tg-production-page .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.tg-production-page .nav .open>a,.tg-production-page .nav .open>a:focus,.tg-production-page .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.tg-production-page .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.tg-production-page .nav>li>a>img{max-width:none}.tg-production-page .nav-tabs{border-bottom:1px solid #ddd}.tg-production-page .nav-tabs>li{float:left;margin-bottom:-1px}.tg-production-page .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.tg-production-page .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.tg-production-page .nav-tabs>li.active>a,.tg-production-page .nav-tabs>li.active>a:focus,.tg-production-page .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.tg-production-page .nav-tabs.nav-justified{width:100%;border-bottom:0}.tg-production-page .nav-tabs.nav-justified>li{float:none}.tg-production-page .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:4px}.tg-production-page .nav-tabs.nav-justified>.active>a,.tg-production-page .nav-tabs.nav-justified>.active>a:focus,.tg-production-page .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.tg-production-page .nav-tabs.nav-justified>li{display:table-cell;width:1%}.tg-production-page .nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.tg-production-page .nav-tabs.nav-justified>.active>a,.tg-production-page .nav-tabs.nav-justified>.active>a:focus,.tg-production-page .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tg-production-page .nav-pills>li{float:left}.tg-production-page .nav-justified>li,.tg-production-page .nav-stacked>li{float:none}.tg-production-page .nav-pills>li>a{border-radius:4px}.tg-production-page .nav-pills>li+li{margin-left:2px}.tg-production-page .nav-pills>li.active>a,.tg-production-page .nav-pills>li.active>a:focus,.tg-production-page .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.tg-production-page .nav-stacked>li+li{margin-top:2px;margin-left:0}.tg-production-page .nav-justified{width:100%}.tg-production-page .nav-justified>li>a{text-align:center;margin-bottom:5px}.tg-production-page .nav-tabs-justified{border-bottom:0}.tg-production-page .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.tg-production-page .nav-tabs-justified>.active>a,.tg-production-page .nav-tabs-justified>.active>a:focus,.tg-production-page .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.tg-production-page .nav-justified>li{display:table-cell;width:1%}.tg-production-page .nav-justified>li>a{margin-bottom:0}.tg-production-page .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.tg-production-page .nav-tabs-justified>.active>a,.tg-production-page .nav-tabs-justified>.active>a:focus,.tg-production-page .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tg-production-page .tab-content>.tab-pane{display:none}.tg-production-page .tab-content>.active{display:block}.tg-production-page .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.tg-production-page .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.tg-production-page .navbar-collapse{overflow-x:visible;padding-right:10px;padding-left:10px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.tg-production-page .navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.tg-production-page .navbar{border-radius:4px}.tg-production-page .navbar-header{float:left}.tg-production-page .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.tg-production-page .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.tg-production-page .navbar-collapse.in{overflow-y:visible}.tg-production-page .navbar-fixed-bottom .navbar-collapse,.tg-production-page .navbar-fixed-top .navbar-collapse,.tg-production-page .navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.tg-production-page .embed-responsive,.tg-production-page .modal,.tg-production-page .modal-open,.tg-production-page .progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.tg-production-page .navbar-fixed-bottom .navbar-collapse,.tg-production-page .navbar-fixed-top .navbar-collapse{max-height:200px}}.tg-production-page .container-fluid>.navbar-collapse,.tg-production-page .container-fluid>.navbar-header,.tg-production-page .container>.navbar-collapse,.tg-production-page .container>.navbar-header{margin-right:-10px;margin-left:-10px}.tg-production-page .navbar-static-top{z-index:1000;border-width:0 0 1px}.tg-production-page .navbar-fixed-bottom,.tg-production-page .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.tg-production-page .navbar-fixed-top{top:0;border-width:0 0 1px}.tg-production-page .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.tg-production-page .navbar-brand{float:left;padding:15px 10px;font-size:18px;line-height:20px;height:50px}.tg-production-page .navbar-brand:focus,.tg-production-page .navbar-brand:hover{text-decoration:none}.tg-production-page .navbar-brand>img{display:block}@media (min-width:768px){.tg-production-page .container-fluid>.navbar-collapse,.tg-production-page .container-fluid>.navbar-header,.tg-production-page .container>.navbar-collapse,.tg-production-page .container>.navbar-header{margin-right:0;margin-left:0}.tg-production-page .navbar-fixed-bottom,.tg-production-page .navbar-fixed-top,.tg-production-page .navbar-static-top{border-radius:0}.tg-production-page .navbar>.container .navbar-brand,.tg-production-page .navbar>.container-fluid .navbar-brand{margin-left:-10px}}.tg-production-page .navbar-toggle{position:relative;float:right;margin-right:10px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.tg-production-page .navbar-toggle:focus{outline:0}.tg-production-page .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.tg-production-page .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.tg-production-page .navbar-nav{margin:7.5px -10px}.tg-production-page .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.tg-production-page .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.tg-production-page .navbar-nav .open .dropdown-menu .dropdown-header,.tg-production-page .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.tg-production-page .navbar-nav .open .dropdown-menu>li>a{line-height:20px}.tg-production-page .navbar-nav .open .dropdown-menu>li>a:focus,.tg-production-page .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.tg-production-page .progress-bar-striped,.tg-production-page .progress-striped .progress-bar,.tg-production-page .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.tg-production-page .navbar-toggle{display:none}.tg-production-page .navbar-nav{float:left;margin:0}.tg-production-page .navbar-nav>li{float:left}.tg-production-page .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.tg-production-page .navbar-form{padding:10px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -10px}@media (min-width:768px){.tg-production-page .navbar-form .form-control-static,.tg-production-page .navbar-form .form-group{display:inline-block}.tg-production-page .navbar-form .control-label,.tg-production-page .navbar-form .form-group{margin-bottom:0;vertical-align:middle}.tg-production-page .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.tg-production-page .navbar-form .input-group{display:inline-table;vertical-align:middle}.tg-production-page .navbar-form .input-group .form-control,.tg-production-page .navbar-form .input-group .input-group-addon,.tg-production-page .navbar-form .input-group .input-group-btn{width:auto}.tg-production-page .navbar-form .input-group>.form-control{width:100%}.tg-production-page .navbar-form .checkbox,.tg-production-page .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.tg-production-page .navbar-form .checkbox label,.tg-production-page .navbar-form .radio label{padding-left:0}.tg-production-page .navbar-form .checkbox input[type=checkbox],.tg-production-page .navbar-form .radio input[type=radio]{position:relative;margin-left:0}.tg-production-page .navbar-form .has-feedback .form-control-feedback{top:0}.tg-production-page .navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.tg-production-page .breadcrumb>li,.tg-production-page .pagination{display:inline-block}.tg-production-page .btn .badge,.tg-production-page .btn .label{top:-1px;position:relative}@media (max-width:767px){.tg-production-page .navbar-form .form-group{margin-bottom:5px}.tg-production-page .navbar-form .form-group:last-child{margin-bottom:0}}.tg-production-page .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.tg-production-page .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.tg-production-page .navbar-btn{margin-top:8px;margin-bottom:8px}.tg-production-page .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.tg-production-page .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.tg-production-page .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.tg-production-page .navbar-text{float:left;margin-left:10px;margin-right:10px}.tg-production-page .navbar-left{float:left!important}.tg-production-page .navbar-right{float:right!important;margin-right:-10px}.tg-production-page .navbar-right~.navbar-right{margin-right:0}}.tg-production-page .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.tg-production-page .navbar-default .navbar-brand{color:#777}.tg-production-page .navbar-default .navbar-brand:focus,.tg-production-page .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.tg-production-page .navbar-default .navbar-nav>li>a,.tg-production-page .navbar-default .navbar-text{color:#777}.tg-production-page .navbar-default .navbar-nav>li>a:focus,.tg-production-page .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.tg-production-page .navbar-default .navbar-nav>.active>a,.tg-production-page .navbar-default .navbar-nav>.active>a:focus,.tg-production-page .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.tg-production-page .navbar-default .navbar-nav>.disabled>a,.tg-production-page .navbar-default .navbar-nav>.disabled>a:focus,.tg-production-page .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.tg-production-page .navbar-default .navbar-toggle{border-color:#ddd}.tg-production-page .navbar-default .navbar-toggle:focus,.tg-production-page .navbar-default .navbar-toggle:hover{background-color:#ddd}.tg-production-page .navbar-default .navbar-toggle .icon-bar{background-color:#888}.tg-production-page .navbar-default .navbar-collapse,.tg-production-page .navbar-default .navbar-form{border-color:#e7e7e7}.tg-production-page .navbar-default .navbar-nav>.open>a,.tg-production-page .navbar-default .navbar-nav>.open>a:focus,.tg-production-page .navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.tg-production-page .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.tg-production-page .navbar-default .navbar-link{color:#777}.tg-production-page .navbar-default .navbar-link:hover{color:#333}.tg-production-page .navbar-default .btn-link{color:#777}.tg-production-page .navbar-default .btn-link:focus,.tg-production-page .navbar-default .btn-link:hover{color:#333}.tg-production-page .navbar-default .btn-link[disabled]:focus,.tg-production-page .navbar-default .btn-link[disabled]:hover,.tg-production-page fieldset[disabled] .navbar-default .btn-link:focus,.tg-production-page fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.tg-production-page .navbar-inverse{background-color:#222;border-color:#080808}.tg-production-page .navbar-inverse .navbar-brand{color:#9d9d9d}.tg-production-page .navbar-inverse .navbar-brand:focus,.tg-production-page .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.tg-production-page .navbar-inverse .navbar-nav>li>a,.tg-production-page .navbar-inverse .navbar-text{color:#9d9d9d}.tg-production-page .navbar-inverse .navbar-nav>li>a:focus,.tg-production-page .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.tg-production-page .navbar-inverse .navbar-nav>.active>a,.tg-production-page .navbar-inverse .navbar-nav>.active>a:focus,.tg-production-page .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.tg-production-page .navbar-inverse .navbar-nav>.disabled>a,.tg-production-page .navbar-inverse .navbar-nav>.disabled>a:focus,.tg-production-page .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.tg-production-page .navbar-inverse .navbar-toggle{border-color:#333}.tg-production-page .navbar-inverse .navbar-toggle:focus,.tg-production-page .navbar-inverse .navbar-toggle:hover{background-color:#333}.tg-production-page .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.tg-production-page .navbar-inverse .navbar-collapse,.tg-production-page .navbar-inverse .navbar-form{border-color:#101010}.tg-production-page .navbar-inverse .navbar-nav>.open>a,.tg-production-page .navbar-inverse .navbar-nav>.open>a:focus,.tg-production-page .navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.tg-production-page .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.tg-production-page .navbar-inverse .navbar-link{color:#9d9d9d}.tg-production-page .navbar-inverse .navbar-link:hover{color:#fff}.tg-production-page .navbar-inverse .btn-link{color:#9d9d9d}.tg-production-page .navbar-inverse .btn-link:focus,.tg-production-page .navbar-inverse .btn-link:hover{color:#fff}.tg-production-page .navbar-inverse .btn-link[disabled]:focus,.tg-production-page .navbar-inverse .btn-link[disabled]:hover,.tg-production-page fieldset[disabled] .navbar-inverse .btn-link:focus,.tg-production-page fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.tg-production-page .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.tg-production-page .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.tg-production-page .breadcrumb>.active{color:#777}.tg-production-page .pagination{padding-left:0;margin:20px 0;border-radius:4px}.tg-production-page .pager li,.tg-production-page .pagination>li{display:inline}.tg-production-page .pagination>li>a,.tg-production-page .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.tg-production-page .pagination>li:first-child>a,.tg-production-page .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.tg-production-page .pagination>li:last-child>a,.tg-production-page .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.tg-production-page .pagination>li>a:focus,.tg-production-page .pagination>li>a:hover,.tg-production-page .pagination>li>span:focus,.tg-production-page .pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.tg-production-page .pagination>.active>a,.tg-production-page .pagination>.active>a:focus,.tg-production-page .pagination>.active>a:hover,.tg-production-page .pagination>.active>span,.tg-production-page .pagination>.active>span:focus,.tg-production-page .pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.tg-production-page .pagination>.disabled>a,.tg-production-page .pagination>.disabled>a:focus,.tg-production-page .pagination>.disabled>a:hover,.tg-production-page .pagination>.disabled>span,.tg-production-page .pagination>.disabled>span:focus,.tg-production-page .pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.tg-production-page .pagination-lg>li>a,.tg-production-page .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.tg-production-page .pagination-lg>li:first-child>a,.tg-production-page .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.tg-production-page .pagination-lg>li:last-child>a,.tg-production-page .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.tg-production-page .pagination-sm>li>a,.tg-production-page .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.tg-production-page .badge,.tg-production-page .label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.tg-production-page .pagination-sm>li:first-child>a,.tg-production-page .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.tg-production-page .pagination-sm>li:last-child>a,.tg-production-page .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.tg-production-page .pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.tg-production-page .pager li>a,.tg-production-page .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.tg-production-page .pager li>a:focus,.tg-production-page .pager li>a:hover{text-decoration:none;background-color:#eee}.tg-production-page .pager .next>a,.tg-production-page .pager .next>span{float:right}.tg-production-page .pager .previous>a,.tg-production-page .pager .previous>span{float:left}.tg-production-page .pager .disabled>a,.tg-production-page .pager .disabled>a:focus,.tg-production-page .pager .disabled>a:hover,.tg-production-page .pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.tg-production-page a.badge:focus,.tg-production-page a.badge:hover,.tg-production-page a.label:focus,.tg-production-page a.label:hover{color:#fff;cursor:pointer;text-decoration:none}.tg-production-page .label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.tg-production-page .label:empty{display:none}.tg-production-page .label-default{background-color:#777}.tg-production-page .label-default[href]:focus,.tg-production-page .label-default[href]:hover{background-color:#5e5e5e}.tg-production-page .label-primary{background-color:#337ab7}.tg-production-page .label-primary[href]:focus,.tg-production-page .label-primary[href]:hover{background-color:#286090}.tg-production-page .label-success{background-color:#5cb85c}.tg-production-page .label-success[href]:focus,.tg-production-page .label-success[href]:hover{background-color:#449d44}.tg-production-page .label-info{background-color:#5bc0de}.tg-production-page .label-info[href]:focus,.tg-production-page .label-info[href]:hover{background-color:#31b0d5}.tg-production-page .label-warning{background-color:#f0ad4e}.tg-production-page .label-warning[href]:focus,.tg-production-page .label-warning[href]:hover{background-color:#ec971f}.tg-production-page .label-danger{background-color:#d9534f}.tg-production-page .label-danger[href]:focus,.tg-production-page .label-danger[href]:hover{background-color:#c9302c}.tg-production-page .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.tg-production-page .badge:empty{display:none}.tg-production-page .media-object,.tg-production-page .thumbnail{display:block}.tg-production-page .btn-group-xs>.btn .badge,.tg-production-page .btn-xs .badge{top:0;padding:1px 5px}.tg-production-page .list-group-item.active>.badge,.tg-production-page .nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.tg-production-page .jumbotron,.tg-production-page .jumbotron .h1,.tg-production-page .jumbotron h1{color:inherit}.tg-production-page .list-group-item>.badge{float:right}.tg-production-page .list-group-item>.badge+.badge{margin-right:5px}.tg-production-page .nav-pills>li>a>.badge{margin-left:3px}.tg-production-page .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.tg-production-page .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.tg-production-page .alert,.tg-production-page .thumbnail{margin-bottom:20px}.tg-production-page .alert .alert-link,.tg-production-page .close{font-weight:700}.tg-production-page .jumbotron>hr{border-top-color:#d5d5d5}.tg-production-page .container .jumbotron,.tg-production-page .container-fluid .jumbotron{border-radius:6px;padding-left:10px;padding-right:10px}.tg-production-page .jumbotron .container{max-width:100%}@media screen and (min-width:768px){.tg-production-page .jumbotron{padding-top:48px;padding-bottom:48px}.tg-production-page .container .jumbotron,.tg-production-page .container-fluid .jumbotron{padding-left:60px;padding-right:60px}.tg-production-page .jumbotron .h1,.tg-production-page .jumbotron h1{font-size:63px}}.tg-production-page .thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.tg-production-page .thumbnail a>img,.tg-production-page .thumbnail>img{margin-left:auto;margin-right:auto}.tg-production-page a.thumbnail.active,.tg-production-page a.thumbnail:focus,.tg-production-page a.thumbnail:hover{border-color:#337ab7}.tg-production-page .thumbnail .caption{padding:9px;color:#333}.tg-production-page .alert{padding:15px;border:1px solid transparent;border-radius:4px}.tg-production-page .alert h4{margin-top:0;color:inherit}.tg-production-page .alert>p,.tg-production-page .alert>ul{margin-bottom:0}.tg-production-page .alert>p+p{margin-top:5px}.tg-production-page .alert-dismissable,.tg-production-page .alert-dismissible{padding-right:35px}.tg-production-page .alert-dismissable .close,.tg-production-page .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.tg-production-page .modal,.tg-production-page .modal-backdrop{top:0;right:0;bottom:0;left:0}.tg-production-page .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.tg-production-page .alert-success hr{border-top-color:#c9e2b3}.tg-production-page .alert-success .alert-link{color:#2b542c}.tg-production-page .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.tg-production-page .alert-info hr{border-top-color:#a6e1ec}.tg-production-page .alert-info .alert-link{color:#245269}.tg-production-page .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.tg-production-page .alert-warning hr{border-top-color:#f7e1b5}.tg-production-page .alert-warning .alert-link{color:#66512c}.tg-production-page .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.tg-production-page .alert-danger hr{border-top-color:#e4b9c0}.tg-production-page .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.tg-production-page .progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.tg-production-page .progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.tg-production-page .progress-bar-striped,.tg-production-page .progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.tg-production-page .progress-bar.active,.tg-production-page .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.tg-production-page .progress-bar-success{background-color:#5cb85c}.tg-production-page .progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-production-page .progress-striped .progress-bar-info,.tg-production-page .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-production-page .progress-bar-info{background-color:#5bc0de}.tg-production-page .progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-production-page .progress-bar-warning{background-color:#f0ad4e}.tg-production-page .progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-production-page .progress-bar-danger{background-color:#d9534f}.tg-production-page .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-production-page .media{margin-top:15px}.tg-production-page .media:first-child{margin-top:0}.tg-production-page .media,.tg-production-page .media-body{zoom:1;overflow:hidden}.tg-production-page .media-body{width:10000px}.tg-production-page .media-object.img-thumbnail{max-width:none}.tg-production-page .media-right,.tg-production-page .media>.pull-right{padding-left:10px}.tg-production-page .media-left,.tg-production-page .media>.pull-left{padding-right:10px}.tg-production-page .media-body,.tg-production-page .media-left,.tg-production-page .media-right{display:table-cell;vertical-align:top}.tg-production-page .media-middle{vertical-align:middle}.tg-production-page .media-bottom{vertical-align:bottom}.tg-production-page .media-heading{margin-top:0;margin-bottom:5px}.tg-production-page .media-list{padding-left:0;list-style:none}.tg-production-page .list-group{margin-bottom:20px;padding-left:0}.tg-production-page .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.tg-production-page .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.tg-production-page .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.tg-production-page a.list-group-item,.tg-production-page button.list-group-item{color:#555}.tg-production-page a.list-group-item .list-group-item-heading,.tg-production-page button.list-group-item .list-group-item-heading{color:#333}.tg-production-page a.list-group-item:focus,.tg-production-page a.list-group-item:hover,.tg-production-page button.list-group-item:focus,.tg-production-page button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}.tg-production-page button.list-group-item{width:100%;text-align:left}.tg-production-page .list-group-item.disabled,.tg-production-page .list-group-item.disabled:focus,.tg-production-page .list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.tg-production-page .list-group-item.disabled .list-group-item-heading,.tg-production-page .list-group-item.disabled:focus .list-group-item-heading,.tg-production-page .list-group-item.disabled:hover .list-group-item-heading{color:inherit}.tg-production-page .list-group-item.disabled .list-group-item-text,.tg-production-page .list-group-item.disabled:focus .list-group-item-text,.tg-production-page .list-group-item.disabled:hover .list-group-item-text{color:#777}.tg-production-page .list-group-item.active,.tg-production-page .list-group-item.active:focus,.tg-production-page .list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.tg-production-page .list-group-item.active .list-group-item-heading,.tg-production-page .list-group-item.active .list-group-item-heading>.small,.tg-production-page .list-group-item.active .list-group-item-heading>small,.tg-production-page .list-group-item.active:focus .list-group-item-heading,.tg-production-page .list-group-item.active:focus .list-group-item-heading>.small,.tg-production-page .list-group-item.active:focus .list-group-item-heading>small,.tg-production-page .list-group-item.active:hover .list-group-item-heading,.tg-production-page .list-group-item.active:hover .list-group-item-heading>.small,.tg-production-page .list-group-item.active:hover .list-group-item-heading>small{color:inherit}.tg-production-page .list-group-item.active .list-group-item-text,.tg-production-page .list-group-item.active:focus .list-group-item-text,.tg-production-page .list-group-item.active:hover .list-group-item-text{color:#c7ddef}.tg-production-page .list-group-item-success{color:#3c763d;background-color:#dff0d8}.tg-production-page a.list-group-item-success,.tg-production-page button.list-group-item-success{color:#3c763d}.tg-production-page a.list-group-item-success .list-group-item-heading,.tg-production-page button.list-group-item-success .list-group-item-heading{color:inherit}.tg-production-page a.list-group-item-success:focus,.tg-production-page a.list-group-item-success:hover,.tg-production-page button.list-group-item-success:focus,.tg-production-page button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}.tg-production-page a.list-group-item-success.active,.tg-production-page a.list-group-item-success.active:focus,.tg-production-page a.list-group-item-success.active:hover,.tg-production-page button.list-group-item-success.active,.tg-production-page button.list-group-item-success.active:focus,.tg-production-page button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.tg-production-page .list-group-item-info{color:#31708f;background-color:#d9edf7}.tg-production-page a.list-group-item-info,.tg-production-page button.list-group-item-info{color:#31708f}.tg-production-page a.list-group-item-info .list-group-item-heading,.tg-production-page button.list-group-item-info .list-group-item-heading{color:inherit}.tg-production-page a.list-group-item-info:focus,.tg-production-page a.list-group-item-info:hover,.tg-production-page button.list-group-item-info:focus,.tg-production-page button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}.tg-production-page a.list-group-item-info.active,.tg-production-page a.list-group-item-info.active:focus,.tg-production-page a.list-group-item-info.active:hover,.tg-production-page button.list-group-item-info.active,.tg-production-page button.list-group-item-info.active:focus,.tg-production-page button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.tg-production-page .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}.tg-production-page a.list-group-item-warning,.tg-production-page button.list-group-item-warning{color:#8a6d3b}.tg-production-page a.list-group-item-warning .list-group-item-heading,.tg-production-page button.list-group-item-warning .list-group-item-heading{color:inherit}.tg-production-page a.list-group-item-warning:focus,.tg-production-page a.list-group-item-warning:hover,.tg-production-page button.list-group-item-warning:focus,.tg-production-page button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}.tg-production-page a.list-group-item-warning.active,.tg-production-page a.list-group-item-warning.active:focus,.tg-production-page a.list-group-item-warning.active:hover,.tg-production-page button.list-group-item-warning.active,.tg-production-page button.list-group-item-warning.active:focus,.tg-production-page button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.tg-production-page .list-group-item-danger{color:#a94442;background-color:#f2dede}.tg-production-page a.list-group-item-danger,.tg-production-page button.list-group-item-danger{color:#a94442}.tg-production-page a.list-group-item-danger .list-group-item-heading,.tg-production-page button.list-group-item-danger .list-group-item-heading{color:inherit}.tg-production-page a.list-group-item-danger:focus,.tg-production-page a.list-group-item-danger:hover,.tg-production-page button.list-group-item-danger:focus,.tg-production-page button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}.tg-production-page a.list-group-item-danger.active,.tg-production-page a.list-group-item-danger.active:focus,.tg-production-page a.list-group-item-danger.active:hover,.tg-production-page button.list-group-item-danger.active,.tg-production-page button.list-group-item-danger.active:focus,.tg-production-page button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.tg-production-page .panel-heading>.dropdown .dropdown-toggle,.tg-production-page .panel-title,.tg-production-page .panel-title>.small,.tg-production-page .panel-title>.small>a,.tg-production-page .panel-title>a,.tg-production-page .panel-title>small,.tg-production-page .panel-title>small>a{color:inherit}.tg-production-page .list-group-item-heading{margin-top:0;margin-bottom:5px}.tg-production-page .list-group-item-text{margin-bottom:0;line-height:1.3}.tg-production-page .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.tg-production-page .panel-title,.tg-production-page .panel>.list-group,.tg-production-page .panel>.panel-collapse>.list-group,.tg-production-page .panel>.panel-collapse>.table,.tg-production-page .panel>.table,.tg-production-page .panel>.table-responsive>.table{margin-bottom:0}.tg-production-page .panel-body{padding:15px}.tg-production-page .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.tg-production-page .panel-title{margin-top:0;font-size:16px}.tg-production-page .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.tg-production-page .panel>.list-group .list-group-item,.tg-production-page .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.tg-production-page .panel-group .panel-heading,.tg-production-page .panel>.table-bordered>tbody>tr:first-child>td,.tg-production-page .panel>.table-bordered>tbody>tr:first-child>th,.tg-production-page .panel>.table-bordered>tbody>tr:last-child>td,.tg-production-page .panel>.table-bordered>tbody>tr:last-child>th,.tg-production-page .panel>.table-bordered>tfoot>tr:last-child>td,.tg-production-page .panel>.table-bordered>tfoot>tr:last-child>th,.tg-production-page .panel>.table-bordered>thead>tr:first-child>td,.tg-production-page .panel>.table-bordered>thead>tr:first-child>th,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.tg-production-page .panel>.table-responsive:last-child>.table:last-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.tg-production-page .panel>.table:last-child,.tg-production-page .panel>.table:last-child>tbody:last-child>tr:last-child,.tg-production-page .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.tg-production-page .panel>.list-group:first-child .list-group-item:first-child,.tg-production-page .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.tg-production-page .panel>.list-group:last-child .list-group-item:last-child,.tg-production-page .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.tg-production-page .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.tg-production-page .panel>.table-responsive:first-child>.table:first-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.tg-production-page .panel>.table:first-child,.tg-production-page .panel>.table:first-child>tbody:first-child>tr:first-child,.tg-production-page .panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.tg-production-page .list-group+.panel-footer,.tg-production-page .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.tg-production-page .panel>.panel-collapse>.table caption,.tg-production-page .panel>.table caption,.tg-production-page .panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.tg-production-page .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.tg-production-page .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.tg-production-page .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.tg-production-page .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.tg-production-page .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.tg-production-page .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.tg-production-page .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.tg-production-page .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.tg-production-page .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.tg-production-page .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.tg-production-page .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.tg-production-page .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.tg-production-page .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.tg-production-page .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.tg-production-page .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.tg-production-page .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.tg-production-page .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.tg-production-page .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.tg-production-page .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.tg-production-page .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.tg-production-page .panel>.panel-body+.table,.tg-production-page .panel>.panel-body+.table-responsive,.tg-production-page .panel>.table+.panel-body,.tg-production-page .panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.tg-production-page .panel>.table>tbody:first-child>tr:first-child td,.tg-production-page .panel>.table>tbody:first-child>tr:first-child th{border-top:0}.tg-production-page .panel>.table-bordered,.tg-production-page .panel>.table-responsive>.table-bordered{border:0}.tg-production-page .panel>.table-bordered>tbody>tr>td:first-child,.tg-production-page .panel>.table-bordered>tbody>tr>th:first-child,.tg-production-page .panel>.table-bordered>tfoot>tr>td:first-child,.tg-production-page .panel>.table-bordered>tfoot>tr>th:first-child,.tg-production-page .panel>.table-bordered>thead>tr>td:first-child,.tg-production-page .panel>.table-bordered>thead>tr>th:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.tg-production-page .panel>.table-bordered>tbody>tr>td:last-child,.tg-production-page .panel>.table-bordered>tbody>tr>th:last-child,.tg-production-page .panel>.table-bordered>tfoot>tr>td:last-child,.tg-production-page .panel>.table-bordered>tfoot>tr>th:last-child,.tg-production-page .panel>.table-bordered>thead>tr>td:last-child,.tg-production-page .panel>.table-bordered>thead>tr>th:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.tg-production-page .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.tg-production-page .panel>.table-responsive{border:0;margin-bottom:0}.tg-production-page .panel-group{margin-bottom:20px}.tg-production-page .panel-group .panel{margin-bottom:0;border-radius:4px}.tg-production-page .panel-group .panel+.panel{margin-top:5px}.tg-production-page .panel-group .panel-heading+.panel-collapse>.list-group,.tg-production-page .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.tg-production-page .panel-group .panel-footer{border-top:0}.tg-production-page .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.tg-production-page .panel-default{border-color:#ddd}.tg-production-page .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.tg-production-page .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.tg-production-page .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.tg-production-page .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.tg-production-page .panel-primary{border-color:#337ab7}.tg-production-page .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.tg-production-page .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.tg-production-page .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.tg-production-page .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.tg-production-page .panel-success{border-color:#d6e9c6}.tg-production-page .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.tg-production-page .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.tg-production-page .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.tg-production-page .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.tg-production-page .panel-info{border-color:#bce8f1}.tg-production-page .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.tg-production-page .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.tg-production-page .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.tg-production-page .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.tg-production-page .panel-warning{border-color:#faebcc}.tg-production-page .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.tg-production-page .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.tg-production-page .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.tg-production-page .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.tg-production-page .panel-danger{border-color:#ebccd1}.tg-production-page .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.tg-production-page .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.tg-production-page .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.tg-production-page .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.tg-production-page .embed-responsive{position:relative;display:block;height:0;padding:0}.tg-production-page .embed-responsive .embed-responsive-item,.tg-production-page .embed-responsive embed,.tg-production-page .embed-responsive iframe,.tg-production-page .embed-responsive object,.tg-production-page .embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.tg-production-page .embed-responsive-16by9{padding-bottom:56.25%}.tg-production-page .embed-responsive-4by3{padding-bottom:75%}.tg-production-page .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.tg-production-page .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.tg-production-page .well-lg{padding:24px;border-radius:6px}.tg-production-page .well-sm{padding:9px;border-radius:3px}.tg-production-page .close{float:right;font-size:40px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.8;filter:alpha(opacity=20)}.tg-production-page .popover,.tg-production-page .tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.tg-production-page .close:focus,.tg-production-page .close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.tg-production-page button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.tg-production-page .modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.tg-production-page .modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.tg-production-page .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.tg-production-page .modal-open .modal{overflow-x:hidden;overflow-y:auto}.tg-production-page .modal-dialog{position:relative;width:auto;margin:10px}.tg-production-page .modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.tg-production-page .modal-backdrop{position:fixed;z-index:1040;background-color:#000}.tg-production-page .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.tg-production-page .modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.tg-production-page .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.tg-production-page .modal-header .close{margin-top:-2px}.tg-production-page .modal-title{margin:0;line-height:1.42857143}.tg-production-page .modal-body{position:relative;padding:15px}.tg-production-page .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.tg-production-page .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.tg-production-page .modal-footer .btn-group .btn+.btn{margin-left:-1px}.tg-production-page .modal-footer .btn-block+.btn-block{margin-left:0}.tg-production-page .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.tg-production-page .modal-dialog{width:600px;margin:30px auto}.tg-production-page .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.tg-production-page .modal-sm{width:300px}}@media (min-width:992px){.tg-production-page .modal-lg{width:900px}}.tg-production-page .tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tg-production-page .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tg-production-page .tooltip.top{margin-top:-3px;padding:5px 0}.tg-production-page .tooltip.right{margin-left:3px;padding:0 5px}.tg-production-page .tooltip.bottom{margin-top:3px;padding:5px 0}.tg-production-page .tooltip.left{margin-left:-3px;padding:0 5px}.tg-production-page .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tg-production-page .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tg-production-page .tooltip.top .tooltip-arrow,.tg-production-page .tooltip.top-left .tooltip-arrow,.tg-production-page .tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tg-production-page .tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tg-production-page .tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tg-production-page .tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tg-production-page .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tg-production-page .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tg-production-page .tooltip.bottom .tooltip-arrow,.tg-production-page .tooltip.bottom-left .tooltip-arrow,.tg-production-page .tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tg-production-page .tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tg-production-page .tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tg-production-page .tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.tg-production-page .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.tg-production-page .carousel-caption,.tg-production-page .carousel-control{color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.tg-production-page .popover.top{margin-top:-10px}.tg-production-page .popover.right{margin-left:10px}.tg-production-page .popover.bottom{margin-top:10px}.tg-production-page .popover.left{margin-left:-10px}.tg-production-page .popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.tg-production-page .popover-content{padding:9px 14px}.tg-production-page .popover>.arrow,.tg-production-page .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.tg-production-page .carousel,.tg-production-page .carousel-inner{position:relative}.tg-production-page .popover>.arrow{border-width:11px}.tg-production-page .popover>.arrow:after{border-width:10px;content:""}.tg-production-page .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.tg-production-page .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.tg-production-page .popover.left>.arrow:after,.tg-production-page .popover.right>.arrow:after{content:" ";bottom:-10px}.tg-production-page .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.tg-production-page .popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.tg-production-page .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.tg-production-page .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.tg-production-page .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.tg-production-page .popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.tg-production-page .carousel-inner{overflow:hidden;width:100%}.tg-production-page .carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.tg-production-page .carousel-inner>.item>a>img,.tg-production-page .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.tg-production-page .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.tg-production-page .carousel-inner>.item.active.right,.tg-production-page .carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.tg-production-page .carousel-inner>.item.active.left,.tg-production-page .carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.tg-production-page .carousel-inner>.item.active,.tg-production-page .carousel-inner>.item.next.left,.tg-production-page .carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.tg-production-page .carousel-inner>.active,.tg-production-page .carousel-inner>.next,.tg-production-page .carousel-inner>.prev{display:block}.tg-production-page .carousel-inner>.active{left:0}.tg-production-page .carousel-inner>.next,.tg-production-page .carousel-inner>.prev{position:absolute;top:0;width:100%}.tg-production-page .carousel-inner>.next{left:100%}.tg-production-page .carousel-inner>.prev{left:-100%}.tg-production-page .carousel-inner>.next.left,.tg-production-page .carousel-inner>.prev.right{left:0}.tg-production-page .carousel-inner>.active.left{left:-100%}.tg-production-page .carousel-inner>.active.right{left:100%}.tg-production-page .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:rgba(0,0,0,0)}.tg-production-page .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.tg-production-page .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.tg-production-page .carousel-control:focus,.tg-production-page .carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.tg-production-page .carousel-control .glyphicon-chevron-left,.tg-production-page .carousel-control .glyphicon-chevron-right,.tg-production-page .carousel-control .icon-next,.tg-production-page .carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.tg-production-page .carousel-control .glyphicon-chevron-left,.tg-production-page .carousel-control .icon-prev{left:50%;margin-left:-10px}.tg-production-page .carousel-control .glyphicon-chevron-right,.tg-production-page .carousel-control .icon-next{right:50%;margin-right:-10px}.tg-production-page .carousel-control .icon-next,.tg-production-page .carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.tg-production-page .carousel-control .icon-prev:before{content:'\2039'}.tg-production-page .carousel-control .icon-next:before{content:'\203a'}.tg-production-page .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.tg-production-page .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.tg-production-page .carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.tg-production-page .carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.tg-production-page .carousel-caption .btn,.tg-production-page .text-hide{text-shadow:none}@media screen and (min-width:768px){.tg-production-page .carousel-control .glyphicon-chevron-left,.tg-production-page .carousel-control .glyphicon-chevron-right,.tg-production-page .carousel-control .icon-next,.tg-production-page .carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.tg-production-page .carousel-control .glyphicon-chevron-left,.tg-production-page .carousel-control .icon-prev{margin-left:-10px}.tg-production-page .carousel-control .glyphicon-chevron-right,.tg-production-page .carousel-control .icon-next{margin-right:-10px}.tg-production-page .carousel-caption{left:20%;right:20%;padding-bottom:30px}.tg-production-page .carousel-indicators{bottom:20px}}.tg-production-page .btn-group-vertical>.btn-group:after,.tg-production-page .btn-group-vertical>.btn-group:before,.tg-production-page .btn-toolbar:after,.tg-production-page .btn-toolbar:before,.tg-production-page .clearfix:after,.tg-production-page .clearfix:before,.tg-production-page .container-fluid:after,.tg-production-page .container-fluid:before,.tg-production-page .container:after,.tg-production-page .container:before,.tg-production-page .dl-horizontal dd:after,.tg-production-page .dl-horizontal dd:before,.tg-production-page .form-horizontal .form-group:after,.tg-production-page .form-horizontal .form-group:before,.tg-production-page .modal-footer:after,.tg-production-page .modal-footer:before,.tg-production-page .modal-header:after,.tg-production-page .modal-header:before,.tg-production-page .nav:after,.tg-production-page .nav:before,.tg-production-page .navbar-collapse:after,.tg-production-page .navbar-collapse:before,.tg-production-page .navbar-header:after,.tg-production-page .navbar-header:before,.tg-production-page .navbar:after,.tg-production-page .navbar:before,.tg-production-page .pager:after,.tg-production-page .pager:before,.tg-production-page .panel-body:after,.tg-production-page .panel-body:before,.tg-production-page .row:after,.tg-production-page .row:before{content:" ";display:table}.tg-production-page .btn-group-vertical>.btn-group:after,.tg-production-page .btn-toolbar:after,.tg-production-page .clearfix:after,.tg-production-page .container-fluid:after,.tg-production-page .container:after,.tg-production-page .dl-horizontal dd:after,.tg-production-page .form-horizontal .form-group:after,.tg-production-page .modal-footer:after,.tg-production-page .modal-header:after,.tg-production-page .nav:after,.tg-production-page .navbar-collapse:after,.tg-production-page .navbar-header:after,.tg-production-page .navbar:after,.tg-production-page .pager:after,.tg-production-page .panel-body:after,.tg-production-page .row:after{clear:both}.tg-production-page .center-block{display:block;margin-left:auto;margin-right:auto}.tg-production-page .pull-right{float:right!important}.tg-production-page .pull-left{float:left!important}.tg-production-page .hide{display:none!important}.tg-production-page .show{display:block!important}.tg-production-page .hidden,.tg-production-page .visible-lg,.tg-production-page .visible-lg-block,.tg-production-page .visible-lg-inline,.tg-production-page .visible-lg-inline-block,.tg-production-page .visible-md,.tg-production-page .visible-md-block,.tg-production-page .visible-md-inline,.tg-production-page .visible-md-inline-block,.tg-production-page .visible-sm,.tg-production-page .visible-sm-block,.tg-production-page .visible-sm-inline,.tg-production-page .visible-sm-inline-block,.tg-production-page .visible-xs,.tg-production-page .visible-xs-block,.tg-production-page .visible-xs-inline,.tg-production-page .visible-xs-inline-block{display:none!important}.tg-production-page .invisible{visibility:hidden}.tg-production-page .text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.tg-production-page .affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.tg-production-page .visible-xs{display:block!important}.tg-production-page table.visible-xs{display:table!important}.tg-production-page tr.visible-xs{display:table-row!important}.tg-production-page td.visible-xs,.tg-production-page th.visible-xs{display:table-cell!important}.tg-production-page .visible-xs-block{display:block!important}.tg-production-page .visible-xs-inline{display:inline!important}.tg-production-page .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.tg-production-page .visible-sm{display:block!important}.tg-production-page table.visible-sm{display:table!important}.tg-production-page tr.visible-sm{display:table-row!important}.tg-production-page td.visible-sm,.tg-production-page th.visible-sm{display:table-cell!important}.tg-production-page .visible-sm-block{display:block!important}.tg-production-page .visible-sm-inline{display:inline!important}.tg-production-page .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.tg-production-page .visible-md{display:block!important}.tg-production-page table.visible-md{display:table!important}.tg-production-page tr.visible-md{display:table-row!important}.tg-production-page td.visible-md,.tg-production-page th.visible-md{display:table-cell!important}.tg-production-page .visible-md-block{display:block!important}.tg-production-page .visible-md-inline{display:inline!important}.tg-production-page .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.tg-production-page .visible-lg{display:block!important}.tg-production-page table.visible-lg{display:table!important}.tg-production-page tr.visible-lg{display:table-row!important}.tg-production-page td.visible-lg,.tg-production-page th.visible-lg{display:table-cell!important}.tg-production-page .visible-lg-block{display:block!important}.tg-production-page .visible-lg-inline{display:inline!important}.tg-production-page .visible-lg-inline-block{display:inline-block!important}.tg-production-page .hidden-lg{display:none!important}}@media (max-width:767px){.tg-production-page .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.tg-production-page .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.tg-production-page .hidden-md{display:none!important}}.tg-production-page .visible-print{display:none!important}@media print{.tg-production-page .visible-print{display:block!important}.tg-production-page table.visible-print{display:table!important}.tg-production-page tr.visible-print{display:table-row!important}.tg-production-page td.visible-print,.tg-production-page th.visible-print{display:table-cell!important}}.tg-production-page .visible-print-block{display:none!important}@media print{.tg-production-page .visible-print-block{display:block!important}}.tg-production-page .visible-print-inline{display:none!important}@media print{.tg-production-page .visible-print-inline{display:inline!important}}.tg-production-page .visible-print-inline-block{display:none!important}@media print{.tg-production-page .visible-print-inline-block{display:inline-block!important}.tg-production-page .hidden-print{display:none!important}}
/* source: public/assets/design-system/production/css/main.css */
/*:root{--font-family-h:'Gotham-Medium', sans-serif;--font-family-regular: 'Gotham-book',sans-serif}*/
.tg-production-page{--font-family-h:'HelveticaNeueBold', sans-serif;--font-family-regular: 'HelveticaNeue-Roman',sans-serif;--font-family-oswald:'Oswald-Bold'}
.tg-production-page .row{
    margin-left: -10px;
    margin-right: -10px;
}
.tg-production-page .container,.tg-production-page .container-fluid{
    margin-right: auto;
    margin-left: auto;
}
.tg-production-page input[type="text"]:focus,.tg-production-page .uneditable-input:focus{
border-color: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
    border: 1px solid #eee;
}

 .tg-production-page .is-hidden{display: none !important}
@font-face{font-family:Gotham-book;src:url("/assets/design-system/production/fonts/Gotham-Book.otf");font-style:normal}.tg-production-page .dinpro-medium{font-family:Gotham-Book,sans-serif;font-weight:700}.tg-production-page .roboto-regular{font-family:Gotham-Book,sans-serif;font-weight:400}
@font-face{
  font-family: 'Gotham-Medium';
  src:url("/assets/design-system/production/fonts/Gotham-Medium.otf") ;
  font-display: swap;
 }
 @font-face{font-family:America-Standard-Bold;src:url("/assets/design-system/production/fonts/GT-America-Standard-Bold-Trial.otf");font-style:normal}
 @font-face{font-family:America-Standard-Medium;src:url("/assets/design-system/production/fonts/GT-America-Standard-Medium-Trial.otf");font-style:normal}
  @font-face{font-family:America-Standard-Regular;src:url("/assets/design-system/production/fonts/GT-America-Standard-Regular-Trial.otf");font-style:normal}
@font-face{
  font-family: 'Gotham-Light';
  src:url("/assets/design-system/production/fonts/Gotham-Light.otf") ;
  font-display: swap;
}
@font-face{
  font-family: 'Gotham-thin';
  src: url("/assets/design-system/production/fonts/Gotham-Thin.otf"); /* IE9 Compat Modes */
  font-display: swap;
 }
 @font-face{
  font-family: 'Gotham-Italic';
  src: url("/assets/design-system/production/fonts/Gotham-XLightItalic.otf"); /* IE9 Compat Modes */
  font-display: swap;
 }
  @font-face{
  font-family: 'HelveticaNeue-Roman';
  src: url("/assets/design-system/production/fonts/HelveticaNeueRoman.otf"); /* IE9 Compat Modes */
 font-style:normal;
 }
 @font-face{
  font-family: 'HelveticaNeueBold';
  src: url("/assets/design-system/production/fonts/HelveticaNeueBold.ttf"); /* IE9 Compat Modes */
 font-style:normal;
 }
 @font-face{
  font-family: 'Anton-Regular';
  src: url("/assets/design-system/production/fonts/Anton-Regular.ttf"); /* IE9 Compat Modes */
 font-style:normal;
 }
  @font-face{
  font-family: 'Oswald-Bold';
  src: url("/assets/design-system/production/fonts/Oswald-Bold.ttf"); /* IE9 Compat Modes */
 font-style:normal;
 }
.tg-production-page .info-left{text-align:left;margin-bottom: 30px;}
.tg-production-page .m-b{margin-bottom: 30px;}
.tg-production-page .f-w6{font-weight:600;}
.tg-production-page .back-green{background-color: #003E34;}
.tg-production-page .dinpro-regular{ font-family: 'Lato', sans-serif; font-weight: 400;}
.tg-production-page .dinpro-medium{ font-family: 'Lato', sans-serif; font-weight: 700;}
.tg-production-page .oswald-regular{ font-family: var(--font-family-oswald), sans-serif; font-weight: 400; }
.tg-production-page .oswald-bold{ font-family: var(--font-family-regular), sans-serif; font-weight: 700; }
.tg-production-page .roboto-regular{ font-family: 'Lato', sans-serif; font-weight: 400; }
.tg-production-page .sans-condensed{font-family: 'Lato'; font-weight: 700; }
.tg-production-page .roboto-medium{ font-family: 'Lato', sans-serif; font-weight: 700;}
.tg-production-page .hide-text{ display: none; }
.tg-production-page .text-center{text-align:center;}
.tg-production-page .p-search{margin-bottom: 20px;font-size:15px;font-family: var(--font-family-regular) !important;color:#555}
.tg-production-page .mrg-0{
  padding-top:0px !important;
}
.tg-production-page .a-fil{
    font-size:15px;
}
.tg-production-page .a-fil:hover{
    font-weight: 600;
}
.tg-production-page .filtere{
    position: relative;
    top: auto;
    bottom: auto;
    overflow: visible;
    background: #FFF;
    width: 100%;
    z-index: 99;
    border: none;
    border-right: none;
    box-shadow: none;
    display: block;
    float: left;
}
.tg-production-page .filtere{
    -webkit-flex: 0 0 16em;
    -moz-flex: 0 0 16em;
    -ms-flex: 0 0 16em;
    flex: 0 0 16em;
    padding: 70px 16px 40px 40px;

    background: #fff;

}
.tg-production-page .filtere h5 .clear-filter{
    float: right;
    margin: -2px 0 0 10px;
    height: auto;
    width: auto;
    color: #757575;
    background: #eee;
    padding: 4px 5px 3px 6px;
    text-align: center;
    display: inline-block;
    border-radius: 1px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    -webkit-transition: .15s ease;
    transition: .15s ease}

.tg-production-page .filtere .filter-panel{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
    display: block!important;
}

.tg-production-page .header-filter button{
    color: #757575;
    display: block;
    background:transparent;
    border:none;
}
.tg-production-page .filtre-toggle button:hover,.tg-production-page .header-filter button:active,.tg-production-page .header-filter button:focus,.tg-production-page .header-filter button:visited{

    border:none !important;
   -webkit-appearance:none;
   box-shadow: none;

}
.tg-production-page .header-filter{
    float: right;
    position: relative;
    top: -2px;
    margin-left: 32px;
    font-size: 14px;
    color: #757575;
    -webkit-transition: .4s cubic-bezier(.3, .3, .05, 1);
    transition: .4s cubic-bezier(.3, .3, .05, 1);
}
.tg-production-page .header-filter a{
    color: #757575;
    display: block;
}
.tg-production-page .filter{
    -webkit-flex: 0 0 16em;
    -moz-flex: 0 0 16em;
    -ms-flex: 0 0 16em;
    flex: 0 0 16em;
    padding: 0 16px 16px 0;
    border-right: 1px solid #ddd;
    position: fixed;
    top:190px;
    right:20px;
    bottom: 5%;
    overflow-y: scroll;
    background: #fff;
    padding: 0;
    width: 230px;
    z-index: 999;
    border-right: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transform: translateZ(0);
}
.tg-production-page .fixed-header-modele{
     padding: 15px 5px;
    position: fixed;
    top:100px;
    border-top: 1px solid #eee;
    z-index: 9999999;
    background: #fff;
    width:1010px;
}
.tg-production-page .no-box{
    box-shadow: none !important;
}
.tg-production-page .top-filter{
    top:100px !important;
}
.tg-production-page .filter h5,.tg-production-page .filter .h5{
    margin-bottom: 1rem;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.4px;
    line-height: 1.3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    text-transform: uppercase;
}
.tg-production-page .filter .filter-group{
    margin-bottom: 25px;
    margin-left: 0px;
    text-align: left;
}
.tg-production-page .filter .filter-group .control{
    display: block;
    padding-left: 2.5rem;
    margin-left: -2.5rem;
}
.tg-production-page .filter .filter-group .control input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.tg-production-page .filter .filter-group .control-indicator{
    position: absolute;
    top: .15rem;
    left: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 1rem;
    font-size: 100%;
    color: #eee;
    text-align: center;
    background-color: transparent;
    background-size: 50% 50%;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0);
}
.tg-production-page .filter .filter-panel{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
    display: block!important;
}
 .tg-production-page .filter-inner{
    padding: 16px 8px 50px 0px;
}
/* http://meyerweb.com/eric/tools/assets/design-system/production/css/reset/v2.0 | 20110126 License: none (public domain) */
html.tg-production-page,.tg-production-page body,.tg-production-page div,.tg-production-page span,.tg-production-page applet,.tg-production-page object,.tg-production-page iframe,.tg-production-page h1,.tg-production-page h2,.tg-production-page h3,.tg-production-page h4,.tg-production-page h5,.tg-production-page h6,.tg-production-page p,.tg-production-page blockquote,.tg-production-page pre,.tg-production-page a,.tg-production-page abbr,.tg-production-page acronym,.tg-production-page address,.tg-production-page big,.tg-production-page cite,.tg-production-page code,.tg-production-page del,.tg-production-page dfn,.tg-production-page em,.tg-production-page img,.tg-production-page ins,.tg-production-page kbd,.tg-production-page q,.tg-production-page s,.tg-production-page samp,.tg-production-page small,.tg-production-page strike,.tg-production-page strong,.tg-production-page sub,.tg-production-page sup,.tg-production-page tt,.tg-production-page var,.tg-production-page b,.tg-production-page u,.tg-production-page i,.tg-production-page center,.tg-production-page dl,.tg-production-page dt,.tg-production-page dd,.tg-production-page ol,.tg-production-page ul,.tg-production-page li,.tg-production-page fieldset,.tg-production-page form,.tg-production-page label,.tg-production-page legend,.tg-production-page table,.tg-production-page caption,.tg-production-page tbody,.tg-production-page tfoot,.tg-production-page thead,.tg-production-page tr,.tg-production-page th,.tg-production-page td,.tg-production-page article,.tg-production-page aside,.tg-production-page canvas,.tg-production-page details,.tg-production-page embed,.tg-production-page figure,.tg-production-page figcaption,.tg-production-page footer,.tg-production-page header,.tg-production-page hgroup,.tg-production-page menu,.tg-production-page nav,.tg-production-page output,.tg-production-page ruby,.tg-production-page section,.tg-production-page summary,.tg-production-page time,.tg-production-page mark,.tg-production-page audio,.tg-production-page video,.tg-production-page input,.tg-production-page textarea{ box-sizing: border-box; margin: 0; padding: 0; border: 0; font: inherit; }
.tg-production-page h1{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
    margin-bottom: 10px;
        text-align: left;
    line-height: 40px;
    font-family: var(--font-family-oswald);
    font-weight: 800;
    text-shadow: none;
    font-size: 35px;
}
html.tg-production-page,.tg-production-page body{ min-height: 100%; font-family: var(--font-family-regular), sans-serif; font-size: 17px; font-weight: 400;position:relative; }
.tg-production-page article,.tg-production-page aside,.tg-production-page details,.tg-production-page figcaption,.tg-production-page figure,.tg-production-page footer,.tg-production-page header,.tg-production-page hgroup,.tg-production-page menu,.tg-production-page nav,.tg-production-page section{ display: block; }
.tg-production-page body{ font-size: 17px; line-height: 1; background-color: #fff; font-family:var(--font-family-regular);  font-weight: 400;}
.tg-production-page ol,.tg-production-page ul{ list-style: none; }
.tg-production-page blockquote,.tg-production-page q{ quotes: none; }
.tg-production-page blockquote:before,.tg-production-page blockquote:after,.tg-production-page q:before,.tg-production-page q:after{ content: ''; content: none; }
.tg-production-page table{ border-collapse: collapse; border-spacing: 0; }
.tg-production-page a{ text-decoration: none; color: inherit; cursor: pointer; outline: 0; }
.tg-production-page a:active,.tg-production-page a:focus{ outline: 0; color: inherit; text-decoration: none; }
.tg-production-page a:hover{ color: #6b6b6b; text-decoration: none;}
.tg-production-page .modal-op{
overflow-x:hidden;
overflow-y:hidden;
min-height: 100%;

}
.tg-production-page .modal-opp{
overflow-x:hidden;
overflow-y:hidden;
position: absolute;
width: 100%;
height: 100%;
margin:0px ;
margin-right: 10px !important;
padding:0px;
}
.tg-production-page ::placeholder{ /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9b9b9b;
    opacity: 1; /* Firefox */
    font-size:15px;
      font-family: var(--font-family-regular) !important;
}

.tg-production-page :-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #9b9b9b;
}

.tg-production-page ::-ms-input-placeholder{ /* Microsoft Edge */
    color: #9b9b9b;
}
.tg-production-page .part-popup:hover{
background:#eee;
}

/* INFO-LIVRAISON */
.tg-production-page .info-guide{ margin-bottom: 20px; border-bottom: 1px solid #2222;max-width: 992px;margin-left: auto;margin-right: auto;}
.tg-production-page .info-livraison{ background-color: #21304e; position: fixed; top: 0px; left: 0px; width: 100%; z-index: 1500;padding:12px 5px; color:#fff;text-align: center;font-size:14px; line-height: 16px}
.tg-production-page .info-livraison-container{ height: 60px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.tg-production-page .info-livraison-container p{ color: #FFF; text-transform: uppercase; line-height: 1.4em; }
.tg-production-page .info-livraison-container img:hover{ cursor: pointer; }
.tg-production-page .fermer-info{ display: none; }
/* MENU LATERAL */
.tg-production-page .menu-lateral-container{ display: block; position: fixed; z-index: 99999; top: 0px; bottom: 0; left:-100%; right: 0; background: transparent; padding: 0; pointer-events: none; }
.tg-production-page .mlc-open{ /*background: rgba(0,0,0,0.8);*/ pointer-events:auto; top:100px;left:0px !important;transform: translate(0);
    visibility: visible;-webkit-transition: all 0.8s;
    transition: all 0.8s;}
.tg-production-page .menu-lateral{ max-width: 90%; height: 100%; background: #FFF; /*margin-left: -90*/ -webkit-transition: all 0.0s; transition: all 0.0s; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: justify; align-content: space-between; overflow: auto; }
.tg-production-page .ml-open{margin-left: 0; /*box-shadow: 2px 5px 15px 0px #6b6969cc; -webkit-box-shadow:2px 5px 15px 0px #6b6969cc; -moz-box-shadow: 2px 0px 15px 0px #6b6969cc;*/ -webkit-transition: all 0.6s; transition: all 0.6s;     border: .5px solid #e6e6e6; }
.tg-production-page .ml-upper{text-transform: uppercase;}
.tg-production-page .menu-top{ width: 100%; }
.tg-production-page .menu-top-titre-croix{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; -ms-flex-line-pack: center; align-content: center; padding: 20px 20px 0 20px; width: 30%;}
.tg-production-page .titre-content{ font-size: 1em; }
.tg-production-page .icon-croix{ display: -webkit-box; display: -ms-flexbox; display: flex; width: 20px; height: 20px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; margin-left: 5px;}
.tg-production-page .icon-croix span{ display: block; width: 20px; height: 2px; background: #21304e; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.tg-production-page .icon-croix span:before{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.tg-production-page .menu-top-welcome{ line-height:24px;font-size: 1em; padding: 30px 10px; border-bottom: 1px solid #e6e6e6; }
.tg-production-page .menu-top-welcome a{ text-decoration: underline; }
.tg-production-page .menu-bot{ width: 100%; overflow: auto; }
.tg-production-page .menu-categorie{ border-bottom: none !important; }
.tg-production-page .menu-categorie > li{ font-size: 1em; cursor: pointer;margin:20px ;}
.tg-production-page .arrow{width: 14px;height: 14px;margin-right: 5px;margin-top:-5px}
.tg-production-page .menu-categorie > li a{display: flex;align-items: center;justify-content: space-between; padding: 10px 10px; cursor: pointer;width:100%;font-family: var(--font-family-h);font-weight: bold; }
.tg-production-page .menu-categorie > li span{max-width:100%;line-height: 20px;font-family: var(--font-family-oswald) !important;font-size:20px;text-transform: uppercase;}
.tg-production-page .menu-categorie > li:hover{ }
.tg-production-page .menu-categorie > li a:hover,.tg-production-page .menu-categorie > li a:active{color:#000 }
.tg-production-page .menu-categorie li img{ display: inline-block; margin-left: 10px; height: 6px; }
.tg-production-page .guide-menu-deroulant{ height: 0; overflow: hidden; -webkit-transition: all 0.2s; transition: all 0.2s; padding: 0 15px 0 10px; background-color: #f6f6f6; }
.tg-production-page .open-guide{ height: auto; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .menu-footer{ width: 100%; text-align: left; font-size: 1em; border-top: none !important; padding: 25px 15px; }
.tg-production-page .icon{
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }

    .tg-production-page .menu-item{
      display: inline-flex;
      align-items: center;
      color: #333;
      text-decoration: none;
      margin:10px 15px;
    }
    .tg-production-page .icon-user{border: 2px solid #fff;color:#fff;
    border-radius: 50%;
    padding: 1px;}
    .tg-production-page .fixed-theme .icon-user{border:2px solid; #333;color:#333}
    .tg-production-page .menu-item:hover{text-decoration: underline;}
    .tg-production-page .p-greeting{margin: 0px 15px;font-family: var(--font-family-h) !important;font-weight: bold;color:#fff}
.tg-production-page .contact-rapide{  margin-bottom: 10px;float:left;width:100%; }
.tg-production-page .langue{display:inline-block;float:left;padding: 12px 0px;margin-right:10px;}
.tg-production-page .contact-rapide span{ display: block; margin-top: 5px; color: #005539; text-decoration: underline; }
.tg-production-page .choix-langue{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.tg-production-page .drapeau-langue{ margin-left: 5px; width: 20px; height: 14px; margin-top: 2px;}
.tg-production-page .bouton_cm{width:141px;height:41px;margin: 0 auto;display:block;background-image: url("/assets/design-system/production/img/bouton_cm.png"); }
.tg-production-page .bouton_in{width:141px;height:41px;margin: 0 auto;display:block;background-image: url("/assets/design-system/production/img/bouton_in.png"); }
/* NAVIGATION MOBILE/FIXE */
.tg-production-page .navigation-fixe{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 10px; height: 80px; }
.tg-production-page .logo-container{ /*width: 20%;  display: -webkit-box;  display: -ms-flexbox;  display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;*/ position: absolute; left: calc(45%); left: -moz-calc(45%);}
.tg-production-page .logo-container > img{ display: none; }
.tg-production-page .logo{ max-width: 120%; }
.tg-production-page .logo img{ /*max-width: 120%;*/ }
.tg-production-page .burger-menu{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; height: 100%; position: absolute; left: calc(50% - 570px); left: -moz-calc(50% - 570px); padding-top: 25px}
.tg-production-page .icon-burger{ display: block; width: 20px; height: 2px; background: #21304e; position: relative;}
.tg-production-page .icon-burger:before{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; position: absolute; top: 0; left: 0; -webkit-transform: translateY(-7px); transform: translateY(-7px); -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .icon-burger:after{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; position: absolute; top: 0; left: 0; -webkit-transform: translateY(7px); transform: translateY(7px); -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .compte-btn{ display: none; }
.tg-production-page .panier-btn{ cursor: pointer;}

/*HEADER HOME */

.tg-production-page .header-home .contenu span{display: block;font-size:1.5rem; }
.tg-production-page .btn-rose{margin:0 auto;display: flex;align-items: center; justify-content: center; padding: 0px 50px !important; font-size: 1em; background: #005539; color: #FFF;text-transform: uppercase; text-align: center; height:50px; }
.tg-production-page .btn-rose:hover{ text-decoration: underline; background: #1a6a4b; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .btn-rose-home{ display: inline-block; padding: 10px 10px; font-size: 1em; line-height: 1.4em; background: #005539; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; text-align: center; height: 50px; line-height: 30px;}
.tg-production-page .btn-rose-home:hover{ text-decoration: underline; background: #1a6a4b; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .btn-style{display:flex;align-items: center; justify-content: center; padding: 0px 30px; height:50px;font-size: 1em; background:transparent; color:#21304e; text-align: center;border:2px solid #eee; width: 100%;margin-bottom: 20px;text-transform: uppercase;font-weight: 800; width: 100% !important;font-size: 17px;font-family: var(--font-family-regular);}
.tg-production-page input[type=submit]{margin:30px auto}
.tg-production-page .tcenter a{max-width:300px !important;margin:0 auto !important}
.tg-production-page .fin-apercu-cataloguee a{position:relative;max-width: 400px;margin:30px auto;text-transform: uppercase;color:#000;    font-weight: 900;font-family: var(--font-family-regular);font-size: 0.9rem;}
.tg-production-page .fin-apercu-cataloguee img{height:10px;margin-left:8px;margin-top:-2px}
.tg-production-page .fin-apercu-cataloguee a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #000;}
.tg-production-page .fin-apercu-cataloguee a:hover::after{width:0px !important}
.tg-production-page .big-btn{ padding:0px !important;max-width:400px }
.tg-production-page .btn-style:hover{text-decoration: underline;}
/* HEADER CATALOGUE */
.tg-production-page .header-page{ padding: 20px 10px; background-repeat: no-repeat; /*background-size: cover;*/ background-position: center center; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-production-page .header-page-tissu{ padding: 20px 10px; background-repeat: no-repeat; /*background-size: cover;*/ background-position: center center; text-align: center; color: #FFF; margin-bottom: 5px; }
.tg-production-page .bgk-catalogue-chemise{ background-image: url("/assets/design-system/production/img/avis-clients.jpg");     padding: 100px 10px !important;}
.tg-production-page .bgk-catalogue-tissu{ background-image: url("/assets/design-system/production/img/AMBIANCE_catalogue_tissu_1920_352.jpg"); }
.tg-production-page .bgk-guide{ background-image: url("/assets/design-system/production/img/guide-mesure.jpg"); }
.tg-production-page .bgk-b2b{ background-image: url("/assets/design-system/production/img/photo_chemise_entreprise_logo.jpg"); padding: 100px 10px;}
.tg-production-page .fil-arianne{ font-size: 1em; text-transform: uppercase; margin-bottom: 5px; }
.tg-production-page .fil-arianne a{ opacity: 0.7; }
.tg-production-page .fil-arianne a:hover{ opacity: 1; }
.tg-production-page .fil-arianne-activ{ /*font-size: 2em;*/ text-transform: uppercase; line-height: 1em; margin-bottom: 10px;text-align:center; }
.tg-production-page .modele-find{ font-size: 1em; }

/* FILTRES CATALOGUE */

.tg-production-page .filtres-catalogue-container{ height: 40px; width: 100%; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow:0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); position: relative; z-index: 10; background-color: white; }
.tg-production-page .filtres-catalogue-container-tissus{ height: 20px; width: 100%; position: relative; z-index: 10;}
.tg-production-page .filtres-catalogue-container-tissus-home{ height: 100px; width: 100%; position: relative; z-index: 10;margin-top:20px;margin-bottom:50px;background:#005539}
.tg-production-page .masquer-span{ display: none; }
.tg-production-page .filtres-catalogue-mobile{ line-height: 38px; text-align: center; font-size: 1em; cursor: pointer; -webkit-transition: all 0.2s; transition: all 0.2s; background: #005539; color: #fff; /*box-shadow: 0 0 7px #005539; -webkit-box-shadow: 0 0 7px #005539; -moz-box-shadow: 0 0 7px #005539;*/ }
.tg-production-page .filtres-catalogue-mobile:hover{ -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .filtres-catalogue{ display: none; min-width:90% ;height: 100vh; padding: 50px 20px; /*background-color: #FFF; overflow: auto;*/ /*border: 1px solid #e6e6e6;  /*box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);*/}
.tg-production-page .filtres-catalogue-home{ display: none; min-width:90% ; padding: 10px 20px; /*background-color: #FFF; overflow: auto;*/ /*border: 1px solid #e6e6e6;  /*box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);*/}
/*.filtres-catalogue { display: none; min-width:90% ; max-height: 300px; padding: 25px 20px; background-color: #21304e; overflow: auto; border: 1px solid #e6e6e6;  box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);}*/
.tg-production-page .filtres-catalogue > li span{ display: block; width: 100%; /*font-size: 2em;*/ margin-bottom: 20px; color: #9b9b9b; padding-right: 40px;height:31px;} /*color: #243455;*/
.tg-production-page .filtres-catalogue-home > li span{ display: block; width: 100%; /*font-size: 2em;*/ margin-bottom: 20px; color: #9b9b9b; padding-right: 40px;} /*color: #243455;*/
.tg-production-page .filtre-menu-deroulant{ margin-bottom: 20px; }
.tg-production-page .filtre-menu-deroulant li{font-family: var(--font-family-regular); font-size: 15px; line-height: 2.2em; cursor: pointer; padding-left: 32px; background-repeat: no-repeat; background-position: 10px center; color: #555; }
.tg-production-page .filtre-menu-deroulant li:hover{ background-color: #f6f6f6; }
.tg-production-page .couleur-blanc{ background-image: url("/assets/design-system/production/img/icon-couleur-blanc.svg"); }
.tg-production-page .couleur-noir{ background-image: url("/assets/design-system/production/img/icon-couleur-noir.svg"); }
.tg-production-page .couleur-bleu{ background-image: url("/assets/design-system/production/img/icon-couleur-bleu.svg"); }
.tg-production-page .couleur-rouge{ background-image: url("/assets/design-system/production/img/icon-couleur-rouge.svg"); }
.tg-production-page .couleur-rose{ background-image: url("/assets/design-system/production/img/icon-couleur-rose.svg"); }
.tg-production-page .couleur-marron{ background-image: url("/assets/design-system/production/img/icon-couleur-marron.svg"); }
.tg-production-page .couleur-vert{ background-image: url("/assets/design-system/production/img/icon-couleur-vert.svg"); }
.tg-production-page .couleur-gris{ background-image: url("/assets/design-system/production/img/icon-couleur-gris.svg"); }
.tg-production-page .couleur-violet{ background-image: url("/assets/design-system/production/img/icon-couleur-violet.svg"); }
.tg-production-page .couleur-jaune{ background-image: url("/assets/design-system/production/img/icon-couleur-jaune.svg"); }
.tg-production-page .couleur-orange{ background-image: url("/assets/design-system/production/img/icon-couleur-orange.svg"); }
.tg-production-page .couleur-beige{ background-image: url("/assets/design-system/production/img/icon-couleur-beige.svg"); }
.tg-production-page .couleur-toutes{ background-image: url("/assets/design-system/production/img/icon-couleur-toutes.svg"); }
.tg-production-page .open-filtres{ display: block; }

/* CATALOGUE */


.tg-production-page .chemise-catalogue-marge{margin: 15px}
.tg-production-page .chemise-catalogue-photo{ height: 367px;width:100%;max-width:361px; overflow: hidden;padding:0px;text-align:center;position: relative;margin:0 auto;}
.tg-production-page .denim{background:url("/assets/design-system/production/img/denim.jpg") no-repeat !important;}
.tg-production-page .denim:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/denim.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
/*.chemise-catalogue-photo:hover{ background: linear-gradient( rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),url("/assets/design-system/production/img/thomas.jpg");background-size:cover;background-repeat:no-repeat;}*/
.tg-production-page .lin{background:url("/assets/design-system/production/img/lin.jpg") no-repeat !important;}
.tg-production-page .lin:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/lin.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .flanelle{background:url("/assets/design-system/production/img/flanelle.jpg") no-repeat !important;}
.tg-production-page .flanelle:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .monti{background:url("/assets/design-system/production/img/flanelle_monti.jpg") no-repeat !important;}
.tg-production-page .monti:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle_monti.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .induo{background:url("/assets/design-system/production/img/induo_home.jpg") no-repeat !important;}
.tg-production-page .induo:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/induo_home.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .twill{background:url("/assets/design-system/production/img/twill-carreaux-mileta.jpg") no-repeat !important;}
.tg-production-page .twill:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/twill-carreaux-mileta.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .canclini{background:url("/assets/design-system/production/img/canclini.jpg") no-repeat !important;}
.tg-production-page .canclini:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/canclini.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-production-page .margin95{
  margin-top:95px;
}
.tg-production-page .margin20{
  margin-bottom: 20px;
}
.tg-production-page .margin-top-20{
  margin-top: 40px;
}
.tg-production-page .navbar-brand{float:left;font-size:18px;line-height:20px;height:50px}
.tg-production-page .chemise-catalogue-photo .content{display:block;width:100%;border:1px dashed #e6e6e6;height:100%;position:relative;}
.tg-production-page .chemise-catalogue-photo .content .prix-catalogue-home{display:block;position:absolute;bottom:30px;left: 30px; background:#fff;border-radius:50%;width:60px;height:60px;text-align:center;line-height:60px;font-weight:bold;}
.tg-production-page .chemise-catalogue-photo .content:hover{border:1px dashed #e6e6e6;}
.tg-production-page .chemise-catalogue-photo img{ max-height: 200%;-webkit-transition: all 0.0s; transition: all 0.0s; }
.tg-production-page .modele-catalogue{ font-size: 16px; line-height: 1.4em; margin-bottom: 10px; width: 100%; padding-top: 10px;}
.tg-production-page .modele-catalogue-hover:hover{    text-decoration: underline;}
.tg-production-page .prix-catalogue{ font-size: 15px; line-height: 1.4em;  /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ }
.tg-production-page .modele-cataloguee{ font-size: 16px; line-height: 1.4em; margin-bottom: 0px; width: 100%; padding-top:0px;text-align: left;font-family: var(--font-family-oswald) !important;}
.tg-production-page .modele-cataloguee-hover:hover{    text-decoration: underline;}
.tg-production-page .prix-cataloguee{ font-family:var(--font-family-regular);font-size: 17px; line-height: 1.4em; width: 100%;text-align:center; font-weight: bold;}
.tg-production-page .catalogue-details-home{ max-height: 200px; overflow: hidden; text-align: center; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; padding-left: 5px; }
.tg-production-page .catalogue-details-home a{padding:0px 50px !important;margin:0 auto;    height: 40px;line-height: 40px;}
.tg-production-page .catalogue-details{max-width:275px;margin:10px auto;max-height:220px;overflow: hidden; text-align: left; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; padding-left: 5px;gap:5px }
.tg-production-page .catalogue-details a:hover{ text-decoration: underline !important}
.tg-production-page .modele-catalogue-home{ font-size: 24px; line-height: 1.4em; margin-bottom: 20px; width: 100%; padding-top: 10px;font-family:var(--font-family-oswald);font-weight:700}
.tg-production-page .modele-catalogue-home-hover:hover{    text-decoration: underline;}
.tg-production-page .text-catalogue{ cursor:text !important; font-size: 16px; line-height: 1.4em; width: 100%;height:70px;color:#000;margin-bottom:30px; /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ font-weight: normal;font-family:var(--font-family-regular)}
.tg-production-page .text-cataloguee{font-size: 17px; line-height: 1.4em; width: 100%;color:#000;margin-bottom:20px; /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ font-weight: normal;font-family:var(--font-family-regular)}
.tg-production-page .border-motif{ border: 5px solid transparent; -o-border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; padding: 30px 20px; }
.tg-production-page .border-motif-texte{ text-align: center; font-size: 1em; line-height: 1.4em; }
.tg-production-page .fin-apercu-catalogue{ text-align: center; margin:20px auto;padding:0 5px }
.tg-production-page .fin-apercu-cataloguee{ text-align: center; margin:60px auto;padding:0 5px }
.tg-production-page .tissu-catalogue{ width: 100%; margin-bottom: 30px; margin-top: 0px; border: 2px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; overflow: hidden;}
/*.tissu-catalogue:hover { border: 2px solid #e6e6e6; -webkit-transition: all 0.2s; transition: all 0.2s; }*/
.tg-production-page .sans-padding{ padding-left: 0; padding-right: 0;}
.tg-production-page .sans-marge{ margin-left: 0;  margin-right: 0;}

.tg-production-page .h2-tissu{
  font-size:21px;font-family:'Gotham-Medium', sans-serif;font-weight:bold;margin-bottom:30px;
}
.tg-production-page .h1-chemise{
font-family: var(--font-family-h), sans-serif;font-weight: normal; font-size: 24px; margin: 20px 10px 10px 0px;
}
.tg-production-page .desc-modele{
  text-align:left;font-size:15px;font-family:var(--font-family-regular);
}

/* BANDEAU TISSU */
.tg-production-page .bandeau-tissu{ padding: 50px 10px; background: url("/assets/design-system/production/img/bgk-catalogue-chemise.jpg") no-repeat center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-production-page .bandeau-tissu-top{ font-size: 31px; text-transform: uppercase; color: #005539; margin-bottom: 10px; }
.tg-production-page .bandeau-tissu-content{ font-size: 31px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 10px; }
.tg-production-page .bandeau-tissu-bot{ font-size: 31px; text-transform: uppercase; }
.tg-production-page .logo-tisseur{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-line-pack: center; align-content: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 20px; }
.tg-production-page .logo-tisseur img{ margin: 5px; }

/* TEMOIGNAGES */
.tg-production-page .temoignages-container{ padding: 50px 25px; margin-bottom: 50px; border: 5px solid transparent; -o-border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; }
.tg-production-page .temoignages-titre{ text-align: center; font-size: 31px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 50px; }
.tg-production-page .temoignages-titree{ text-align: left; font-size: 28px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 10px; }
.tg-production-page .temoignages-love{ margin-bottom: 10px; }
.tg-production-page .temoignages-content{ margin-bottom: 30px; border-bottom: 1px solid #e6e6e6; }
.tg-production-page .temoignages-content:last-child{ margin-bottom: 0; border-bottom: none; }
.tg-production-page .temoignage-client{ font-size: 17px; margin-bottom: 10px; }
.tg-production-page .temoignage-nom-client{ font-size: 0.8em; line-height: 1.4em; color: #777777; margin-bottom: 30px; }

/* HEADER CONNEXION */
.tg-production-page .bgk-connexion{ background-image: url("/assets/design-system/production/img/bgk-connexion.jpg"); }
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.tg-production-page .hamburger{
  width:130px;
  height:70px;
 /* padding: 10px 10px 15px;*/
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .tg-production-page .hamburger:hover{
    opacity: 0.7; }

.tg-production-page .hamburger-box{
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.tg-production-page .hamburger-inner{
  display: block;
  top: 50%;
  margin-top: -2px; }
  .tg-production-page .hamburger-inner,.tg-production-page .hamburger-inner::before,.tg-production-page .hamburger-inner::after{
    width: 35px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .tg-production-page .hamburger-inner::before,.tg-production-page .hamburger-inner::after{
    content: "";
    display: block; }
  .tg-production-page .hamburger-inner::before{
    top: -10px; }
  .tg-production-page .hamburger-inner::after{
    bottom: -10px; }

/*
   * 3DX
   */
.tg-production-page .hamburger--3dx .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dx .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dx .hamburger-inner::before,.tg-production-page .hamburger--3dx .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .tg-production-page .onglets{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
}
.tg-production-page .h-onglet{
    font-family: inherit;
    font-size: 15px !important;
    text-align:center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 15px 10px 15px;
    text-transform: uppercase;
}
 .tg-production-page .onglet.active{
    background-color: #005539;
    color: #FFF;
    border: 1px solid #005539;
    border-radius: 3px;
}
.tg-production-page .part-deroulant:hover{
background: #eee;}
 .tg-production-page .onglet{
    width: 90px;
    font-size: 12px;
    padding: 12px 0px 12px 0px;
    text-align: center;
    margin: 0 2px 5px 2px;
    background-color: #FFF;
    cursor: pointer;
    border: 1px solid #005539;
    border-radius: 3px;
    font-weight: 600;
}

.tg-production-page .activve{
  border:3px solid #005539 !important;
}
.tg-production-page .parts{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: left;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #FFF;
    margin-bottom: 20px;
}
.tg-production-page .parts1{
  width:850px;
  margin: 20px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: left;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #FFF;

}
.tg-production-page .part-center{
  -webkit-box-pack: justify;
    -webkit-justify-content: center !important;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center !important;
}
.tg-production-page .h2-chemise{
    padding: 15px 20px;
    font-family: "Gotham-Medium";
    width: 250px;
    font-weight: normal;
    margin: 0 auto;
    font-size: 32px;
}
.tg-production-page .contain{
  padding-left: 0px; padding-right: 0px;width:850px;margin-bottom:120px;
}

.tg-production-page .part{
  margin:10px 0;
}
.tg-production-page .part1{
  margin:10px 0;
}
.tg-production-page .part1 .img{
    width: 100%;
    height: 80px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-production-page .part .img{
    width: 95px;
    height: 55px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-production-page .part-popup1:hover{
  background:#eee;
  border:2px solid #d6d6d6;
}
.tg-production-page .part-popup1 .product-info{
      position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    display: block;
    text-align: center;
    height: 20px;
    padding:2px;
    cursor: pointer;
    background:#a6a6a6;
    color:#fff;
    border-radius: 100%;
}
.tg-production-page .part .img img{
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.tg-production-page .parts .part .name{
    padding-left: 2.5px;
    padding-right: 2.5px;
    cursor: pointer;
    width: 90px;
    margin: auto;
    margin-top: 10px;
    text-align: center;
}
.tg-production-page .parts1 .part1 .name{
    padding-left: 2.5px;
    padding-right: 2.5px;
    cursor: pointer;
    width: 100%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    font-family: var(--font-family-regular);
    font-size:16px;
}
.tg-production-page .hamburger--3dx.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateY(180deg); }
  .tg-production-page .hamburger--3dx.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dx.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.tg-production-page .hamburger--3dx-r .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dx-r .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dx-r .hamburger-inner::before,.tg-production-page .hamburger--3dx-r .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-production-page .hamburger--3dx-r.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateY(-180deg); }
  .tg-production-page .hamburger--3dx-r.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dx-r.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.tg-production-page .hamburger--3dy .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dy .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dy .hamburger-inner::before,.tg-production-page .hamburger--3dy .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-production-page .hamburger--3dy.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateX(-180deg); }
  .tg-production-page .hamburger--3dy.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dy.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.tg-production-page .hamburger--3dy-r .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dy-r .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dy-r .hamburger-inner::before,.tg-production-page .hamburger--3dy-r .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-production-page .hamburger--3dy-r.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateX(180deg); }
  .tg-production-page .hamburger--3dy-r.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dy-r.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.tg-production-page .hamburger--3dxy .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dxy .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dxy .hamburger-inner::before,.tg-production-page .hamburger--3dxy .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-production-page .hamburger--3dxy.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg); }
  .tg-production-page .hamburger--3dxy.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dxy.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.tg-production-page .hamburger--3dxy-r .hamburger-box{
  perspective: 80px; }

.tg-production-page .hamburger--3dxy-r .hamburger-inner{
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .tg-production-page .hamburger--3dxy-r .hamburger-inner::before,.tg-production-page .hamburger--3dxy-r .hamburger-inner::after{
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-production-page .hamburger--3dxy-r.is-active .hamburger-inner{
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .tg-production-page .hamburger--3dxy-r.is-active .hamburger-inner::before{
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--3dxy-r.is-active .hamburger-inner::after{
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.tg-production-page .hamburger--arrow.is-active .hamburger-inner::before{
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.tg-production-page .hamburger--arrow.is-active .hamburger-inner::after{
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.tg-production-page .hamburger--arrow-r.is-active .hamburger-inner::before{
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.tg-production-page .hamburger--arrow-r.is-active .hamburger-inner::after{
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.tg-production-page .hamburger--arrowalt .hamburger-inner::before{
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-production-page .hamburger--arrowalt .hamburger-inner::after{
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-production-page .hamburger--arrowalt.is-active .hamburger-inner::before{
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.tg-production-page .hamburger--arrowalt.is-active .hamburger-inner::after{
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.tg-production-page .hamburger--arrowalt-r .hamburger-inner::before{
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-production-page .hamburger--arrowalt-r .hamburger-inner::after{
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-production-page .hamburger--arrowalt-r.is-active .hamburger-inner::before{
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.tg-production-page .hamburger--arrowalt-r.is-active .hamburger-inner::after{
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Turn
 */
.tg-production-page .hamburger--arrowturn.is-active .hamburger-inner{
  transform: rotate(-180deg); }
  .tg-production-page .hamburger--arrowturn.is-active .hamburger-inner::before{
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .tg-production-page .hamburger--arrowturn.is-active .hamburger-inner::after{
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.tg-production-page .hamburger--arrowturn-r.is-active .hamburger-inner{
  transform: rotate(-180deg); }
  .tg-production-page .hamburger--arrowturn-r.is-active .hamburger-inner::before{
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .tg-production-page .hamburger--arrowturn-r.is-active .hamburger-inner::after{
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.tg-production-page .hamburger--boring .hamburger-inner,.tg-production-page .hamburger--boring .hamburger-inner::before,.tg-production-page .hamburger--boring .hamburger-inner::after{
  transition-property: none; }

.tg-production-page .hamburger--boring.is-active .hamburger-inner{
  transform: rotate(45deg); }
  .tg-production-page .hamburger--boring.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0; }
  .tg-production-page .hamburger--boring.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.tg-production-page .hamburger--collapse .hamburger-inner{
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--collapse .hamburger-inner::after{
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .tg-production-page .hamburger--collapse .hamburger-inner::before{
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--collapse.is-active .hamburger-inner{
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--collapse.is-active .hamburger-inner::after{
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .tg-production-page .hamburger--collapse.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.tg-production-page .hamburger--collapse-r .hamburger-inner{
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--collapse-r .hamburger-inner::after{
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .tg-production-page .hamburger--collapse-r .hamburger-inner::before{
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--collapse-r.is-active .hamburger-inner{
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--collapse-r.is-active .hamburger-inner::after{
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .tg-production-page .hamburger--collapse-r.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.tg-production-page .hamburger--elastic .hamburger-inner{
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .tg-production-page .hamburger--elastic .hamburger-inner::before{
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .tg-production-page .hamburger--elastic .hamburger-inner::after{
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.tg-production-page .hamburger--elastic.is-active .hamburger-inner{
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .tg-production-page .hamburger--elastic.is-active .hamburger-inner::before{
    transition-delay: 0s;
    opacity: 0; }
  .tg-production-page .hamburger--elastic.is-active .hamburger-inner::after{
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.tg-production-page .hamburger--elastic-r .hamburger-inner{
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .tg-production-page .hamburger--elastic-r .hamburger-inner::before{
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .tg-production-page .hamburger--elastic-r .hamburger-inner::after{
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.tg-production-page .hamburger--elastic-r.is-active .hamburger-inner{
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .tg-production-page .hamburger--elastic-r.is-active .hamburger-inner::before{
    transition-delay: 0s;
    opacity: 0; }
  .tg-production-page .hamburger--elastic-r.is-active .hamburger-inner::after{
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.tg-production-page .hamburger--emphatic{
  overflow: hidden; }
  .tg-production-page .hamburger--emphatic .hamburger-inner{
    transition: background-color 0.125s 0.175s ease-in; }
    .tg-production-page .hamburger--emphatic .hamburger-inner::before{
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .tg-production-page .hamburger--emphatic .hamburger-inner::after{
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .tg-production-page .hamburger--emphatic.is-active .hamburger-inner{
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .tg-production-page .hamburger--emphatic.is-active .hamburger-inner::before{
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .tg-production-page .hamburger--emphatic.is-active .hamburger-inner::after{
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.tg-production-page .hamburger--emphatic-r{
  overflow: hidden; }
  .tg-production-page .hamburger--emphatic-r .hamburger-inner{
    transition: background-color 0.125s 0.175s ease-in; }
    .tg-production-page .hamburger--emphatic-r .hamburger-inner::before{
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .tg-production-page .hamburger--emphatic-r .hamburger-inner::after{
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .tg-production-page .hamburger--emphatic-r.is-active .hamburger-inner{
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .tg-production-page .hamburger--emphatic-r.is-active .hamburger-inner::before{
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .tg-production-page .hamburger--emphatic-r.is-active .hamburger-inner::after{
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.tg-production-page .hamburger--minus .hamburger-inner::before,.tg-production-page .hamburger--minus .hamburger-inner::after{
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.tg-production-page .hamburger--minus.is-active .hamburger-inner::before,.tg-production-page .hamburger--minus.is-active .hamburger-inner::after{
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.tg-production-page .hamburger--minus.is-active .hamburger-inner::before{
  top: 0; }

.tg-production-page .hamburger--minus.is-active .hamburger-inner::after{
  bottom: 0; }

/*
   * Slider
   */
.tg-production-page .hamburger--slider .hamburger-inner{
  top: 2px; }
  .tg-production-page .hamburger--slider .hamburger-inner::before{
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .tg-production-page .hamburger--slider .hamburger-inner::after{
    top: 20px; }

.tg-production-page .hamburger--slider.is-active .hamburger-inner{
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--slider.is-active .hamburger-inner::before{
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .tg-production-page .hamburger--slider.is-active .hamburger-inner::after{
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.tg-production-page .hamburger--slider-r .hamburger-inner{
  top: 2px; }
  .tg-production-page .hamburger--slider-r .hamburger-inner::before{
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .tg-production-page .hamburger--slider-r .hamburger-inner::after{
    top: 20px; }

.tg-production-page .hamburger--slider-r.is-active .hamburger-inner{
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .tg-production-page .hamburger--slider-r.is-active .hamburger-inner::before{
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .tg-production-page .hamburger--slider-r.is-active .hamburger-inner::after{
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.tg-production-page .hamburger--spin .hamburger-inner{
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--spin .hamburger-inner::before{
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .tg-production-page .hamburger--spin .hamburger-inner::after{
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--spin.is-active .hamburger-inner{
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--spin.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .tg-production-page .hamburger--spin.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.tg-production-page .hamburger--spin-r .hamburger-inner{
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--spin-r .hamburger-inner::before{
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .tg-production-page .hamburger--spin-r .hamburger-inner::after{
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--spin-r.is-active .hamburger-inner{
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--spin-r.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .tg-production-page .hamburger--spin-r.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.tg-production-page .hamburger--spring .hamburger-inner{
  top: 9px;
  transition: background-color 0s 0.13s linear; }
  .tg-production-page .hamburger--spring .hamburger-inner::before{
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--spring .hamburger-inner::after{
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--spring.is-active .hamburger-inner{
  transition-delay: 0.22s;
  background-color: transparent; }
  .tg-production-page .hamburger--spring.is-active .hamburger-inner::before{
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .tg-production-page .hamburger--spring.is-active .hamburger-inner::after{
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.tg-production-page .hamburger--spring-r .hamburger-inner{
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--spring-r .hamburger-inner::after{
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .tg-production-page .hamburger--spring-r .hamburger-inner::before{
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--spring-r.is-active .hamburger-inner{
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--spring-r.is-active .hamburger-inner::after{
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .tg-production-page .hamburger--spring-r.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.tg-production-page .hamburger--stand .hamburger-inner{
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .tg-production-page .hamburger--stand .hamburger-inner::before{
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--stand .hamburger-inner::after{
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--stand.is-active .hamburger-inner{
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .tg-production-page .hamburger--stand.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--stand.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.tg-production-page .hamburger--stand-r .hamburger-inner{
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .tg-production-page .hamburger--stand-r .hamburger-inner::before{
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--stand-r .hamburger-inner::after{
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--stand-r.is-active .hamburger-inner{
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .tg-production-page .hamburger--stand-r.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--stand-r.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.tg-production-page .hamburger--squeeze .hamburger-inner{
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .tg-production-page .hamburger--squeeze .hamburger-inner::before{
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .tg-production-page .hamburger--squeeze .hamburger-inner::after{
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-production-page .hamburger--squeeze.is-active .hamburger-inner{
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .tg-production-page .hamburger--squeeze.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .tg-production-page .hamburger--squeeze.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.tg-production-page .hamburger--vortex .hamburger-inner{
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .tg-production-page .hamburger--vortex .hamburger-inner::before,.tg-production-page .hamburger--vortex .hamburger-inner::after{
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .tg-production-page .hamburger--vortex .hamburger-inner::before{
    transition-property: top, opacity; }
  .tg-production-page .hamburger--vortex .hamburger-inner::after{
    transition-property: bottom, transform; }

.tg-production-page .hamburger--vortex.is-active .hamburger-inner{
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .tg-production-page .hamburger--vortex.is-active .hamburger-inner::before,.tg-production-page .hamburger--vortex.is-active .hamburger-inner::after{
    transition-delay: 0s; }
  .tg-production-page .hamburger--vortex.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0; }
  .tg-production-page .hamburger--vortex.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.tg-production-page .hamburger--vortex-r .hamburger-inner{
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .tg-production-page .hamburger--vortex-r .hamburger-inner::before,.tg-production-page .hamburger--vortex-r .hamburger-inner::after{
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .tg-production-page .hamburger--vortex-r .hamburger-inner::before{
    transition-property: top, opacity; }
  .tg-production-page .hamburger--vortex-r .hamburger-inner::after{
    transition-property: bottom, transform; }

.tg-production-page .hamburger--vortex-r.is-active .hamburger-inner{
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .tg-production-page .hamburger--vortex-r.is-active .hamburger-inner::before,.tg-production-page .hamburger--vortex-r.is-active .hamburger-inner::after{
    transition-delay: 0s; }
  .tg-production-page .hamburger--vortex-r.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0; }
  .tg-production-page .hamburger--vortex-r.is-active .hamburger-inner::after{
    bottom: 0;
    transform: rotate(-90deg); }

/* HEADER PAGE PRODUIT */
.tg-production-page .header-page-produit{ border-top: 2px solid #f4f6f7; padding-top: 20px; text-align: center; margin-bottom: 20px; }
.tg-production-page .lien-retour-catalogue{ display: inline-block; font-size: 1em; line-height: 24px; }

/* ARTICLE + DESCRIPTION */
.tg-production-page .article-container{ height: 400px; overflow: hidden; text-align: left; margin-bottom: 40px; }
.tg-production-page .article-container img{ max-height: 100%; margin-left: -35px; }
.tg-production-page .description-container{ background: #FFF; text-align: left;display:flex;flex-direction:column; }
.tg-production-page .description-titre{ font-size: 3em; line-height: 1em; text-transform: uppercase; margin-bottom: 20px; text-align: left; }
.tg-production-page .description-content{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; text-align: left; }
.tg-production-page .options-chemise{ list-style: circle; text-align: left; padding: 0 20px; margin-bottom: 20px; }
.tg-production-page .option-description{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; }
.tg-production-page .ajouter-monogramme{ font-size: 1em; display: inline-block; height: 44px; line-height: 25px; margin-bottom: 20px; text-decoration: underline; }
.tg-production-page .description-prix{ font-size: 5em; text-align: center; line-height: 1em; }
.tg-production-page .description-prix-info-livraison{ display: block; font-size: 0.3em; margin-bottom: 20px; }
.tg-production-page .modifier-chemise{ display: inline-block; font-size: 1em; color: #005539; margin-top: 20px; line-height: 1.4em; text-decoration: underline; padding: 0 20px; margin-bottom: 50px; }
.tg-production-page .autres-modeles-titre{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; text-align: left; }

/* HEADER PANIER */
.tg-production-page .header-panier{ margin-top:30px;height: 80px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap;-ms-flex-line-pack: center;align-content: center; margin-bottom: 30px; }
.tg-production-page .header-panier li{ margin-bottom: 10px; }
.tg-production-page .header-panier-lien{ font-size: 1em; line-height: 1.4em; text-transform: uppercase; color: #bfbfbf; }
.tg-production-page .header-panier-lien:hover{ color: #21304e; }
.tg-production-page .lien-actif{ color: #005539; }

/* PANIER */
.tg-production-page .display{ display: block !important; }
.tg-production-page .display-none{ display: none; }
.tg-production-page .article-panier{ display: -webkit-box; display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #e6e6e6;margin-bottom:10px !important; }
.tg-production-page .photo-article-panier{ height: 110px; min-width: 110px; overflow: hidden; margin-right: 10px; }
.tg-production-page .photo-article-panier img{ max-height: 100%; margin-left: 5px; }
.tg-production-page .description-article-panier{ display: flex; flex-direction: column; justify-content: space-around; flex-wrap: nowrap; width:100% !important;}
.tg-production-page .description-top{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content:flex-start; }
.tg-production-page .nom-article-panier{ font-size: 21px; line-height: 1.4em; text-transform: uppercase; }
.tg-production-page .nom-article-panier-hover{ font-size: 15px; margin-right: 0px; width: 70%; height: 60px; }
.tg-production-page .prix-article-panier{ font-size: 21px; }
.tg-production-page .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }
.tg-production-page .option-article{ text-decoration: underline; }
.tg-production-page .option-supprimer{ color: #005539; }
.tg-production-page .prix-panier-container{ margin-bottom: 50px; }
.tg-production-page .prix-panier{ margin-bottom: 20px; }
.tg-production-page .prix-panier li{ display: flex; justify-content: space-between; font-size: 1em; line-height: 44px; height: 44px; border-bottom: 1px dashed #BFBFBF; }
.tg-production-page .btn-block{ display: block; text-align: center; height:auto;}
.tg-production-page .livraison-info{ font-size: 1em; line-height: 1.4em; margin-bottom: 30px; }

/* CONNEXION DEJA CLIENT / NOUVEAU CLIENT CONTAINER */
.tg-production-page .connexion-container{ text-align: center; padding: 30px; margin-bottom: 50px; }
.tg-production-page .deja-client{ border-top: 1px solid #e6e6e6; }
.tg-production-page .h2-connexion{ font-size: 2em; text-transform: uppercase; margin-bottom: 20px; }
.tg-production-page .p-connexion{ font-size: 1em; line-height: 1.4em; }
.tg-production-page .p-connexion span{ display: block; font-size: 1em; text-transform: uppercase; margin-top: 10px; margin-bottom: 40px; }
.tg-production-page .connexion-container a{ width: 100%; }
.tg-production-page form{ text-align: left; padding-top: 30px; }
.tg-production-page .input-group{ position: relative; width: 100%; margin-bottom: 20px;display:block }
.tg-production-page .no-margin-bottom{ margin-bottom: 0; }
.tg-production-page .label{ font-size: 1em; color: #495369; position: absolute; top: 0px;z-index:9; left: 0px;; background-color: #FFF; -webkit-transform: translateY(-50%); transform: translateY(-50%); pointer-events: none; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .label-icone{ left: 15%; }
.tg-production-page .label-activ{ top: 0; left: 5px; color:#495369;font-size:14px; background-color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .input.valid{
    border: 2px solid #16a34a;
    background-color: #f0fdf4;
}
.tg-production-page .input.error{
    border:2px solid #dc2626;
    background-color: #fef2f2;
}
.tg-production-page .error-message-mail,.tg-production-page .error-message-mdp{
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}
.tg-production-page .icon-error{
    position: absolute;
    right: 14px;
    top:35%;
    transform: translateY(-50%);
    color: #e11d48;
    font-size: 16px;
    display: none;
}
/* Icône */
.tg-production-page .check-icon{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #16a34a;
    display: none;
}

/* Montrer l’icône quand valide */
.tg-production-page .input.valid + .check-icon{
    display: block;
}
/* Montrer l’icône quand valide */
.tg-production-page .input.error ~ .error-message-mail{
    display: block;
}/* Montrer l’icône quand valide */

.tg-production-page .input.error ~ .icon-error{
    display: block;
}

.tg-production-page .input.error ~ .error-message-mdp{
    display: block;
}
.tg-production-page .input-wrapper{
    position: relative;
}



/* Etat erreur */
.tg-production-page .input-wrapper.error input{
    border-color: #e11d48;
    background: #fff1f2;
}

/* Etat valide */
.tg-production-page .input-wrapper.valid input{
    border-color: #16a34a;
    background: #f0fdf4;
}
.tg-production-page .isfocused{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    width: calc(40% - 6px);background: transparent !important;font-weight: normal;    text-align: left !important;}
.tg-production-page .is-focused-1{
    position: absolute;
    top: 50%;
    left:2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    width: calc(40% - 6px);background: transparent !important;font-weight: normal;    text-align: left !important;}
.tg-production-page .error-text{
    color: #e11d48;
    font-size: 13px;
    margin-top: 5px;
    display: none;

}

.tg-production-page .input-wrapper.error .error-text{
    display: block;
}

/* Règles */
.tg-production-page .password-rules{
    margin-top: 10px;
    font-size: 14px;
    display: flex;
    gap:5px;
}

.tg-production-page .password-rules div{
    color: #777;
}

.tg-production-page .password-rules .ok{
    color: #16a34a;
}
.tg-production-page .input{outline-style: none;box-shadow: none;border-color: transparent; font-size: 1em; width: 100%; height: 44px; padding-left: 20px; border: 1px solid #e6e6e6; box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; background-repeat: no-repeat; background-position: 5% center; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .input:focus{ outline: none !important; border:2px solid #007bff !important; }

.tg-production-page .mdp-oublie{ font-size: 1em; margin-bottom: 40px; text-align: right; }

/* CHOIX TYPE DE MESURE */
.tg-production-page .choix-methode-mesure{text-align: center; font-size: 1em; line-height: 1.4em; margin-bottom: 30px; margin-top:70px; }
.tg-production-page .methode-mesure{ padding: 30px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 50px; }
.tg-production-page .methode-mesure_1{flex:1;height:300px; padding: 10px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 0px; }
.tg-production-page .methode-titre{ font-size: 18px !important; margin-bottom: 5px; line-height: 1.4em; text-align: center; }
.tg-production-page .duree-methode{ text-transform: uppercase; color: #005539; font-size: 1em; margin-bottom: 30px; }
.tg-production-page .methode-mesure-img{ height: 150px; width: 100%; background-position: center; background-repeat: no-repeat; margin-bottom: 30px; background-size: contain; }
.tg-production-page .big{ height: 150px; }
.tg-production-page .choix-mesure{ background-image: url("/assets/design-system/production/img/dupliquer.svg"); }
.tg-production-page .choix-modif-mesure{ background-image: url("/assets/design-system/production/img/modifier-mesures.svg"); }
.tg-production-page .mesure-rapide{ background-image: url("/assets/design-system/production/img/mesure-rapide.svg"); }
.tg-production-page .mesure-vous{ background-image: url("/assets/design-system/production/img/mesure-corps.svg"); }
.tg-production-page .mesure-chemise{ background-image: url("/assets/design-system/production/img/mesure-chemise.svg"); }
.tg-production-page .mesure-rapide-taille{ background-image: url("/assets/design-system/production/img/mesure-rapide-1.svg"); }
.tg-production-page .mesure-rapide-col{ background-image: url("/assets/design-system/production/img/mesure-rapide-2.svg"); }
.tg-production-page .mesure-rapide-bras{ background-image: url("/assets/design-system/production/img/mesure-rapide-3.svg"); }
.tg-production-page .aisance-coupe{ background-image: url("/assets/design-system/production/img/mesure-rapide-4.svg"); }
.tg-production-page .mesure-chemise-col{ background-image: url("/assets/design-system/production/img/col.svg"); }
.tg-production-page .mesure-chemise-poignet{ background-image: url("/assets/design-system/production/img/poignet.svg"); }
.tg-production-page .mesure-chemise-manche{ background-image: url("/assets/design-system/production/img/manche.svg"); }
.tg-production-page .mesure-chemise-demi-poitrine{ background-image: url("/assets/design-system/production/img/demi-poitrine.svg"); }
.tg-production-page .mesure-chemise-demi-taille{ background-image: url("/assets/design-system/production/img/demi-taille.svg"); }
.tg-production-page .mesure-chemise-dos{ background-image: url("/assets/design-system/production/img/dos.svg"); }
.tg-production-page .mesure-chemise-carrure{ background-image: url("/assets/design-system/production/img/carrure.svg"); }
.tg-production-page .mesure-chemise-epaule{ background-image: url("/assets/design-system/production/img/epaule.svg"); }
.tg-production-page .mesurez-vous-cou{ background-image: url("/assets/design-system/production/img/corps_cou.gif"); }
.tg-production-page .mesurez-vous-poitrine{ background-image: url("/assets/design-system/production/img/corps_poitrine.gif"); }
.tg-production-page .mesurez-vous-ceinture{ background-image: url("/assets/design-system/production/img/corps_ceinture.gif"); }
.tg-production-page .mesurez-vous-carrure{ background-image: url("/assets/design-system/production/img/corps_carrure.gif"); }
.tg-production-page .mesurez-vous-dos{ background-image: url("/assets/design-system/production/img/corps_dos.gif"); }
.tg-production-page .mesurez-vous-poignet{ background-image: url("/assets/design-system/production/img/corps_poignet.gif"); }
.tg-production-page .mesurez-vous-bras{ background-image: url("/assets/design-system/production/img/corps_bras.gif"); }
.tg-production-page .methode-content{ font-size: 17px; line-height: 1.4em; margin-bottom: 30px; }
.tg-production-page .methode-content_1{ font-size: 16px; line-height: 1.4em; margin-bottom: 10px; }
.tg-production-page .methode-mesure a{ width: 80%; }
.tg-production-page .imglangue{width:15px;height:auto;}
.tg-production-page .fermeX{font-size:24px;margin-left:20px;}
.tg-production-page #fermelang{position:absolute;top:10px;right:10px;width:30px}
/* MESURE RAPIDE */
.tg-production-page .methode-mesure-rapide{ padding: 30px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 30px; }
.tg-production-page .select-mesure{ font-size: 1em; line-height: 1.4em; padding: 10px 10px; width: 80%; border-color: #e6e6e6; }
.tg-production-page .mesure-conseil{ min-height:140px; padding-top: 20px; font-size: 17px; line-height: 1.4em; }
.tg-production-page .textarea{ font-size: 1em; width: 100%; height: 200px; line-height: 1.4em; padding: 20px; border: 1px solid #e6e6e6; box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; resize: none; }
.tg-production-page .textarea:focus{ outline: none; border: 1px solid #005539; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-production-page .submit-container{ text-align: center; margin-bottom: 150px; }
.tg-production-page .select-mesure{
        -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("/assets/design-system/production/img/arrowd.png") no-repeat 96% center;
}




/* MODIF MESURE */
.tg-production-page .modif-mesure-container{ padding-top: 50px; }
.tg-production-page .modif-mesure-chemise{ height: 480px; background: no-repeat center; margin-bottom: 30px; position: relative; }
.tg-production-page .chemise-face{ background-image: url("/assets/design-system/production/img/modif-mesure-chemise.jpg"); }
.tg-production-page .chemise-dos{ background-image: url("/assets/design-system/production/img/modif-mesure-chemise-dos.jpg"); }
.tg-production-page .ajustement-container{ display: flex; align-items: center; justify-content: space-around; width: 180px; height: 54px; background-color: #21304e; position: absolute; }
.tg-production-page .ajustement-btn{ font-size: 3em; color: #FFF; text-align: center; width: 24px; margin-top: -5px; cursor: pointer; }
.tg-production-page .ajustement-btn:hover{ cursor: pointer; }
.tg-production-page .ajustement-input{ height: 34px; text-align: center; font-size: 1em; }
.tg-production-page .ajustement-col{ top: -44px; left: 50%; transform: translateX(-55%); }
.tg-production-page .ajustement-poitrine{ top: 110px; left: 50%; transform: translateX(-53%); }
.tg-production-page .ajustement-taille{ top: 225px; left: 50%; transform: translateX(-52%); }
.tg-production-page .ajustement-epaule{ top: 64px; left: 50%; transform: translateX(-10%); }
.tg-production-page .ajustement-bras{ top: 200px; left: 50%; transform: translateX(-90%); }
.tg-production-page .ajustement-dos{ top: 350px; left: 50%; transform: translateX(-52%); }

/* RECAPITULATIF */
.tg-production-page .titre-coordonnee-recap{ font-size: 1em; margin-bottom: 20px; }
.tg-production-page .ul-recap li{ font-size: 1em; line-height: 1.4em; }

/* ESPACE CLIENT */
.tg-production-page .espace-client-sous-nav{ text-align: center; margin-bottom: 20px; }
.tg-production-page .espace-client-sous-nav li{ display: inline-block; margin: 0 10px; }
.tg-production-page .espace-client-sous-nav li a{ font-size: 1em; line-height: 44px; }
.tg-production-page .espace-client-sous-nav li a.sous-nav-actif{ color: #005539; }
.tg-production-page .modifier-info-compte{ font-size: 1em; text-decoration: underline; }

.tg-production-page .mag_img.petite_droite{
    width: 150px;
    float: right;
    margin-left: 40px;
}
.tg-production-page .mag_img.moyenne_droite{
    width: 320px;
    float: right;
    margin-left: 40px;
}
.tg-production-page .mag_img.moyenne_gauche{
    width: 320px;
    float: left;
    margin-right: 40px;
}
.tg-production-page .mag_img.petite_gauche{
    width: 150px;
    float: left;
    margin-right: 40px;
}
.tg-production-page .separator{
    color: #000;
    border-top: 2px solid #f4f6f7;
}
.tg-production-page #back-to-top{
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    width: 60px;
    height: 50px;
    text-align: center;
    line-height: 35px;
    background: #939393;
    color: #FFF;
    cursor: pointer;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    font-size: 3em;
}

.tg-production-page #back-to-top.show{
    opacity: 0.5;
}
.tg-production-page #back-to-top.show:hover{
    opacity: 1;
}
.tg-production-page #content{
    height: 2000px;
}
.tg-production-page .change-view{
	box-sizing: border-box;
	border: 2px solid #fff;
}
.tg-production-page .change-view:hover{
	border: 2px solid #ccc;
}
.tg-production-page .fermer-popup{
    width: 30px;
    margin-left: 5px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
	    z-index: 999;
}
.tg-production-page .fermer-popup:hover{
    opacity: .5;
}
.tg-production-page .filtres-catalogue > li span .ok-filtre{
	background-color: #005539;
	width: 40px;
	height: 30px;
	line-height:32px;
	text-align:center;
	position: absolute;
	display:inline-block;
	float:left;
	margin-left:180px;
	margin-top: 0px;
	right: 0px;
	border-radius: 0px 5px 5px 0px;
	color: #FFF;
	font-size: 14px;
}
.tg-production-page .filtres-catalogue > li span input{
	float:left;
	display:inline-block;
}
.tg-production-page .ok-filtre:hover{
	background-color: #06695F;
	}
.tg-production-page .nb-chemises-hover{
	text-align: left;
	padding-left:25px;
	width: 100%;
	margin-top: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
}
.tg-production-page .quantite-hover{
	width: 100%;
     margin-top: -20px;
     margin-bottom: 5px;
     font-size: 15px;
     color: #c4c4c4;
}
.tg-production-page .total-hover{
	text-align: center;
     width: 100%;
     margin-top: 15px;
     margin-bottom: 15px;
     font-size: 15px;
}
.tg-production-page .badge-pill{
	background-color: #005539;left: 15px;top:40px;position: absolute;border-radius: 0px;
}
.tg-production-page .img-panier{
	width: 20px;
	margin-right: 5px;
	opacity: 0.6;
	margin-top:-3px;
}
.tg-production-page .add-quantity{
	height: 35px !important;
    width: 35px !important;
    background-color: #005539;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    cursor: pointer;
}
.tg-production-page .quantity{
	height: 35px !important;
    width: 35px !important;
    text-align: center;
    font-size: 17px;
}
.tg-production-page .add-quantity:hover{
    background-color: #1294AF;
}
.tg-production-page .panier-img{
	width: 320px; left: -50px; transform: translate(-70px); overflow: hidden;
}
/* MEDIA QUERIES */
@media screen and (min-width:1200px){
.tg-production-page .catalogues{
  width:1360px;
  position: relative;
  top:20px;
  margin:0 auto;
}
}
@media screen and (min-width:768px){
  .tg-production-page .rules{flex-direction: row;}
.tg-production-page .input-email{ background-image: url("/assets/design-system/production/img/icon-email.svg"); padding-left: 10%; }
.tg-production-page .input-password{ background-image: url("/assets/design-system/production/img/icon-key.svg"); padding-left: 10%; }
.tg-production-page .isfocused{left:8%}
.tg-production-page .more-colors{
  width:20px;
  height:28px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#757575;
  margin-left:3px;
}
.tg-production-page .colors-list{ display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
  gap: 5px;
  width: 100%;
  box-sizing: border-box;}
.tg-production-page .ban-home{background: url("/assets/design-system/production/img/banner.jpg");background-size: cover;background-position: center;max-width: 2500px;margin-left:auto;margin-right:auto}
.tg-production-page .filter-bar h1{
  font-size: clamp(16px, 2.5vw, 24px);
   white-space: nowrap;
  flex-shrink: 0;
}
.tg-production-page .title-bar{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        padding-bottom: 10px;
        flex-direction: row;
        margin-bottom: 20px;
    }
}

.tg-production-page .bar-left{width:73%}
.tg-production-page .steps{
  display: flex;
  align-items: center;

  margin-bottom: 20px;
  width:50%;
}
.tg-production-page .steps .text{ font-family:var(--font-family-regular) !important;
  font-size: 19px;}
.tg-production-page .stepe{
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tg-production-page .circle{
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 6px;
}

.tg-production-page .line{
  flex: 1;
  border-bottom: 1px dotted #000;
  margin: 0 12px;min-width: 50px;
}

    .tg-production-page .price-div{display: flex;align-items: center;}
.tg-production-page .chemise-catalogue{ height: 100%; margin-bottom:0px; border: 1px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; width: 100%; max-width:362px; float: none;}
.tg-production-page .divider{
  width: 1px;
  height: 50px;
  background-color: #ccc;    /* couleur de la ligne verticale */
}
.tg-production-page .div-f{display: flex;flex-direction: row;align-items: center;justify-content: space-between;margin:40px 0 20px 0;width:100%}
.tg-production-page .mrg-33{margin-top:20px}
.tg-production-page .m-compte{margin-left:auto;display:flex;align-items: center;}
.tg-production-page .m-compte a:hover{color:#333}
.tg-production-page #btn_suivant{width:400px}
.tg-production-page .height-dv{width:32% }
.tg-production-page .con{
  display: flex;
  justify-content: space-between;   /* centre horizontalement les éléments */
  align-items: center;       /* centre verticalement les éléments */
margin:0px;           /* espace entre les items */
}
 .tg-production-page .con> *:not(:last-child){
  margin-right: 40px; /* espace uniquement entre les éléments */
}
.tg-production-page .span-fab{margin-left:0px;font-weight: normal !important;color:#000 !important}
 .tg-production-page .text_option_li{display: flex; align-items: flex-start;justify-content: left;margin:20px 0}
.tg-production-page .span-fabric{   font-size: 16px;
    color: #222 !important;
    display: inline-block;
    font-weight: 800 !important;
    font-family: var(--font-family-h) !important;width: 130px;
        flex-shrink: 0;}
    .tg-production-page .h2-tissu{text-align: left};
    .tg-production-page .div-qte{width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;}
    .tg-production-page .img-conf{width:80%;height:auto}
.tg-production-page .filtere h5,.tg-production-page .filtere.h5{
    margin-bottom: 1rem;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.4px;
    line-height: 1.3;
    display: flex;
    padding-left:0px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    text-transform: uppercase;
}
.tg-production-page .neww{left:5px !important}
.tg-production-page .h1-catalogue{text-transform:uppercase;color: #000;text-align: left;line-height: 30px;font-family: var(--font-family-oswald);font-weight: normal;text-shadow: none;font-size:44px;max-width: 100%;margin-bottom: 0px !important}
.tg-production-page .p_y{background:#fdffce;text-align:center;padding:10px 10px;margin-left:10px;margin-bottom: 0px;margin-top:4px}
.tg-production-page .mrg-20{margin-left:20px !important}
.tg-production-page .second{font-size: 139px !important;font-family: var(--font-family-h);font-weight: 800}
.tg-production-page #carousel-bounding-box{padding-left: 0px}
.tg-production-page .footer-p{padding:50px 50px !important; color:#fff}
.tg-production-page #shirt{padding-left: 0px; padding-right: 0px;margin-top:30px}
.tg-production-page .pd{margin-left:-15px !important;margin-right:-15px !important }
.tg-production-page .navbar-brand a img{position: relative;margin-left: 0px;margin-top:8px;width:160px !important}
    .tg-production-page .navbar-brand a img:hover{opacity: 0.8}
.tg-production-page .demo > li img{width: 100px !important;height: auto;}
    .tg-production-page .carousel-control .glyphicon-chevron-left,.tg-production-page .carousel-control .glyphicon-chevron-right,.tg-production-page .carousel-control .icon-next,.tg-production-page .carousel-control .icon-prev{
        width: 80px !important;
        height: 80px !important;
        margin-top: -10px;
        font-size: 30px;
    }
    .tg-production-page body{padding-top:70px;overflow-x: hidden}
    .tg-production-page #header.fixed-theme{
    background-color: #fff;
    box-shadow: #ccc 0 2px 15px;
    position: fixed !important;
    top:0px;
    left: 0;
    width: 100%;
    z-index: 1030;
    -webkit-transition: max-height 0s;
    -moz-transition: max-height 0s;
    transition: max-height 0s;
}
.tg-production-page .img-categorie{
padding:0px;
}
.tg-production-page .header-prd{
   padding-right: 16px !important;
   position: relative !important;
   top: 0px !important;

}
.tg-production-page #header{top:0px;}
.tg-production-page #header-container{height:100%}
.tg-production-page #navbar{display: flex;align-items: center;justify-content: center;height:100%;border-bottom:none;margin-left: 10px !important;
        margin-right: 10px !important;border-bottom: none !important}
.tg-production-page .navbar-brand{padding: 0px !important}
.tg-production-page .filter-icon{
    background: transparent url("/assets/design-system/production/img/filter2.svg") no-repeat left center;
    background-size: 32px;
        display: inline-block;
    width: 30px;
    height: 24px;
    position: relative;
    top:5px;
    margin-left: 10px;
    float: left;
    opacity: .5;
}
  .tg-production-page .mrg-60{
  margin-bottom: 120px;
  }

.tg-production-page .display-yes{
  display: block;
}
.tg-production-page .prt{
 display: inline-block;width:48%;
}
.tg-production-page .mrg-lft{
    margin-left:100px;
}
.tg-production-page .title-modele{
    font-size: 26px;
    margin-bottom: 30px;
    font-family:var(--font-family-regular);
    line-height: 30px;
}
.tg-production-page .part-popup1{
  position:relative;
    margin: 5px 10px !important;
    width: 150px;
    height: 144px !important;
    padding: 10px !important;
    border: 2px solid #eee;
    background: #fcfcfc;
    display: inline-block;
}
.tg-production-page .modal-dialog{
    max-width: 900px;
    min-width: 700px;
    margin-top: 100px !important;
}
.tg-production-page .mobody{
padding: 0px 100px 30px 100px;
}
.tg-production-page .h-modal{
  text-align:center;font-size:20px;margin-top:20px;
}
.tg-production-page .part-popup{
    margin: 5px 10px !important;
    width: 100px;
    height: 125px !important;
    padding: 5px !important;
    display: inline-block;
}
.tg-production-page .height_2{
  height:420px;
}
.tg-production-page .text_option{
  margin-left:0px;
  margin-top:0px !important;
}
.tg-production-page .btn_vert{
  font-family: var(--font-family-regular);
  line-height: 30px;
margin-top: 20px;text-align:center;margin-bottom:20px;
}
.tg-production-page .text-categorie{
  padding: 40px 40px;
    background: #eee;
    width: 281px;
    height: 339px;
}
    .tg-production-page .text_desc{
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .tg-production-page .blok{
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 30px;
}
.tg-production-page .blok1{
    margin-left: 0px;
    margin-right: 0px;
    background: #fff;
    padding: 10px;
}
.tg-production-page .mrg-top-20{margin-top:20px}
.tg-production-page .description-container ul li span{
    font-size: 16px;
    color: #666;
    display: inline-block;
    font-weight: 400;
}
  .tg-production-page .centered-area-displayedd{
    width: 30%;position: relative; top: -85px;left:13px;
  }
  .tg-production-page .divheader{
    display: inline-block;float:right;position: relative;right:0px;height:70px;z-index:999;
  }
.tg-production-page .LanguageSwitcher{
    position: absolute;
}
  .tg-production-page .LanguageSwitcher .Wrapper.continents{
    display: inline-block;
    vertical-align: top;
}
.tg-production-page .LanguageSwitcher .Wrapper.continents:not(:last-child){
    margin-right: 8em;
}
.tg-production-page .LanguageSwitcher .Wrapper.continents:first-child{
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 8em;
    -moz-column-gap: 8em;
    column-gap: 8em;
}
  .tg-production-page #openMenu{
 display:block;width:135px;height:70px;
 padding:10px 15px;
  }
  .tg-production-page .step{
    width:5px;margin-left:0px;display: inline-block;height:30px;top:8px;
  }
  .tg-production-page .menu-hide{
    margin-left:-5px;display: inline-block !important;margin-top:-5px;
  }
  .tg-production-page .fleche_bulle1{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:49px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;
}
.tg-production-page .fleche_bulle2{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:48px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;"
}
.fleche_bulle{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:49px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;
}
.bars {
    width: 25%;
    background: #eee;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 30px;
    position: relative;
}
.barss {
    width: 25%;
    background: #eee;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 30px;
    position: relative;
}
.onglet_active{
  font-size: 1em;background-color:#005539;color:#fff !important;padding:10px 30px 10px 20px;width:340px;display:block;margin:0 auto;
}
.onglet_lien{font-size: 1em;border:2px solid #e6e6e6; padding:10px 30px 10px 20px;width:340px;display:block;margin:0 auto;}
.onglet_lien img{
  width:40px;height:40px;margin-right:10px;
}
.onglet_active img{  width:40px;height:40px;margin-right:10px;
}
.sens{
  text-align:center;
}
.carousel-indicators{
  display: none;
}
.pictures_eyes_in img { height:auto;width:100%;max-width: 1500px;height:auto; }
#centred-area-displayed:hover{
opacity:0.8;
}
  /*.left{
}
display:inline-block;width:50%;text-align:left;padding-left:10px;
  }
  .right{
   display:inline-block;width:50%;text-align:right;
  }*/
  .flane{
    border:none;background:url("/assets/design-system/production/img/flanelle_mileta_legere.jpg") no-repeat;background-position: calc(15% - 10px);
  }
.temoigne{padding: 50px 25px 35px  25px !important;}
.bar{width:60%;float:right;}
.bare{width:40%;float:right;}
.easy{position:absolute;top:160px; right:30px;}
.savoir{
padding:50px 200px;
}
.savoire{
padding:0px 80px;
}
.rosee{
padding: 10px 100px !important;
}
.border-top{
	border-top:1px solid #d6d6d6;
	border-left:1px solid #d6d6d6;
border-bottom:1px solid #d6d6d6;
}
.border-bottom{
	border-bottom:1px solid #d6d6d6;
	border-left:1px solid #d6d6d6;
}
.border-right{
	border-right:1px solid #d6d6d6;
}

.border-left{
	border-right:1px solid #d6d6d6;
}
.partenaires{width:100%;margin:auto;}
.partenaires div{flex: 1;padding:10px 0px;text-align:center;float:left;height:88px}
.home {
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.home div {
    display:table-row;
    line-height:1.4em;
    font-size:16px;
    white-space:nowrap;
}
.home p {
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.home span.spacer {
    display:table-cell;
}
.home p{
    padding:0 10px;
}
.home span.spacer:after {
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#d6d6d6;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.tophome {
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tophome div {
    display:table-row;
    text-align: center; text-transform: uppercase; font-size: 31px; line-height: 1.4em;font-family: var(--font-family-regular);
    font-weight: 700;
    white-space:nowrap;
	color:#000;
}
.tophome p {
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;

}
.tophome span.spacer {
    display:table-cell;
}
.tophome p{
    padding:0 10px;
}
.tophome span.spacer:after {
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
	border-top:1px dotted #000000;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.cont-info{position: relative;top:33px}
.header-home { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 655px; padding: 12px 12px; background-size: cover; text-align: center; color: #FFF; margin-bottom: 50px; }
.header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:300px}
/*.header-home .contenu h1 { text-transform: uppercase; font-size: 2.8rem; line-height: 1.4em; width:100%; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); }
.header-home .contenu h1::before,
.header-home .contenu h1::after {
    display: inline-block;
    content: "";
    height:1px;
	background:#fff;
    width: 5rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}*/
.topslide {
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.topslide div {
    display:table-row;
    text-align: center;
    white-space:nowrap;
}
.topslide p {
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;
	text-transform: uppercase; font-size: 2rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.topslide span.spacer,.topslide span.space {
    display:table-cell;
}
.topslide p{
    padding:0 20px;
}
.topslide span.spacer:after {
    display:inline-block;
    width:50%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:right;
}
.topslide span.space:after {
    display:inline-block;
    width:50%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:left;
}
.header-home .contenu span{
	font-size:1.5rem;
	margin-bottom:20px;
}
.header-home .contenu  .prix{
	display:block;
	font-size:4rem;
	margin-bottom:30px;
}
.btn-rose-home{
	padding:10px 100px !important;
}
	.tissu-catalogue-photo { width: 377px; height: 226px;margin:auto;margin-left: -15px;cursor:pointer;}
	#background2 {
    position: absolute;
    z-index: 999;
    top: 70px;
    left: 0;
    background: #000;
    opacity: 0.5;
    width: 100%;
    display: none;
}
  #background5 {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    width: 100%;
    display: none;
}
#popup #detail ul li {
    margin: 10px 0 0 10px;
}
#popup #detail h1 {
    font-family: var(--font-family-regular);
    font-weight: 600;
    font-size: 24px;
    margin: 20px 10px 10px 10px;
	/*text-transform: uppercase;*/
}
.bordered{
border:1px solid #005539;
border-radius:5px;
}
    /* MENU LATERAL */
    .menu-lateral { max-width: 400px; max-height: 620px}

    /* NAVIGATION MOBILE/FIXE */
    .icon-burger { margin-right: 10px; }
    .panier-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        right:25px;
        top : 20px;
        left:0px !important;
		    z-index: 101
    }
    .panier-btn-img { display: block; margin-right: 10px; width: 25%; }
    .hide-text { display: block; /*text-transform: uppercase; /*font-size: 1.6em;*/ }

    /* HEADER HOME */
    .header-home h1 { font-size:44px;line-height:55px;margin-bottom:30px;max-width:100%;margin-top:50%}

    /* FILTRES CATALOGUE */
    .filtres-catalogue-tissu { position: relative; top: -115px; }
    .filtres-catalogue-container { height: 62px; }
    .filtres-catalogue-mobile { display: none; }
    .filtres-catalogue
	{
		display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; -webkit-box-pack: justify; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; height: 60px; border: none; overflow: visible; padding: 0; margin-bottom: 0;
			    background-color: rgba(255,255,255,0.4);

	}

    .filtres-catalogue > li { height: 30px; line-height: 30px; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; /*border-left: 1px solid #e6e6e6;*/ text-align: center; font-size: 1em; cursor: pointer; position: relative; background-color: #FFF; margin-right: 10px; border-radius: 5px; max-width: 220px;}
    .filtres-catalogue > li span { margin-bottom: 0; }
    .filtres-catalogue > li span span { background-color: #005539; width: 40px; height: 31px; position: absolute; top: 0px; right: 0px; border-radius: 0px 5px 5px 0px; }
    .filtres-catalogue > li span span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png") no-repeat; position: absolute; top: 8px; left: 12px; }
	.filtres-catalogue > li span span:hover {background-color: #06695F;}
    .filtres-catalogue > li span input { width: 185px; text-align: center; border-radius: 7px; height: 30px; }
    /*.filtres-catalogue > li span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.svg") no-repeat; position: absolute; top: 40%; left: 75%; }*/
    .filtres-catalogue > li:first-child { border-left: none; }
    .filtres-catalogue > li:hover { /*background-color: #f6f6f6;*/ }
    .filtres-catalogue > li:hover > ul { display: block; }
    .filtres-catalogue-home
	{
		display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; -webkit-box-pack: justify; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; height:100px; border: none; overflow: visible; padding: 0; margin-bottom: 0;
			  background:#005539;

	}

    .filtres-catalogue-home  > li { height: 30px; line-height: 30px; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; /*border-left: 1px solid #e6e6e6;*/ text-align: center; font-size: 1em; cursor: pointer; position: relative; background-color: #FFF; margin-right: 10px; border-radius: 5px; max-width: 220px;}
    .filtres-catalogue-home  > li span { margin-bottom: 0; }
    .filtres-catalogue-home  > li span span { background-color: #06695F; width: 40px; height: 31px; position: absolute; top: 0px; right: 0px; border-radius: 0px 5px 5px 0px; }
    .filtres-catalogue-home  > li span span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png") no-repeat; position: absolute; top: 8px; left: 12px; }
	.filtres-catalogue-home  > li span span:hover {background-color: #033A35;}
    .filtres-catalogue-home  > li span input { width: 185px; text-align: center; border-radius: 7px; height: 30px; }
    /*.filtres-catalogue > li span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.svg") no-repeat; position: absolute; top: 40%; left: 75%; }*/
    .filtres-catalogue-home  > li:first-child { border-left: none; }
    .filtres-catalogue-home  > li:hover { /*background-color: #f6f6f6;*/ }
    .filtres-catalogue-home  > li:hover > ul { display: block; }
    /*.filtres-catalogue > li:before { content: ''; display: block; width: 1px; background: #e6e6e6; height: 50%; position: absolute; top: 25%; left: -1px; }*/
    .filtre-menu-deroulant {overflow: overlay; position: absolute; top: 30px; left: 0; background: #FFF; width: 100%; text-align: left; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); border-radius: 6px 6px 0 0;}
    .filtre-menu-deroulant li { font-size: 15px; padding-left: 0px; background-position: 85% center; }

    /* CATALOGUE */
    .chemise-catalogue-photo img { }
    .chemise-catalogue:hover .chemise-catalogue-photo img { max-height: 330%; -webkit-transition: all 0.0s; transition: all 0.0s; }
    /* BANDEAU TISSU */
    .bandeau-tissu-top { font-size: 1em; }
    .bandeau-tissu-content { font-size: 31px; }
    .bandeau-tissu-bot { font-size: 31px; }
    .logo-tisseur { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

    /* CONNEXION DEJA CLIENT / NOUVEAU CLIENT CONTAINER */
    .connexion-container { padding: 50px; }
    .deja-client { border-top: none; border-right: 1px solid #e6e6e6; }

    /* CHOIX TYPE DE MESURE */
    .methode-mesure { padding: 30px 20px; min-height: 450px; }
    .methode-small { min-height: 170px; }
    .methode-medium { min-height: 320px; }
    .methode-content { font-size: 1em; }
    .methode-mesure a { width: 90%; }

    /* MESURE RAPIDE */
    .methode-mesure-rapide { min-height: 540px; }

    /* HEADER PAGE PRODUIT */
    .header-page-produit { text-align: left; }

    /* ARTICLE + DESCRIPTION */
    .article-container { text-align: left; }
    .article-container img { margin-left: 0; }
    .description-container { text-align: left; margin-bottom: 0px; font-size: 20px;
        line-height: 30px;}
	.description-container ul li span{
		font-size: 16px;
    color: #232323;
    display: inline-block;
    font-weight: 100;
	}
.span-fabric{   font-size: 16px;
    color: #222 !important;
    display: inline-block;
    font-weight: 800 !important;
    font-family: var(--font-family-h) !important;}
  .select-wrapper {
    display: block;
    overflow: hidden;
    border: 1px solid #ccc;
    height: 50px;width:88px;
    cursor: pointer;
}
.select-wrapper select::hover {
border:1px solid #838383;
  }
  .mz-hint-message{display: inline-block;
    background: rgba(49,51,61,.7);
    border-radius: 2em;
    padding: .7em 1.1em;
        font-size: 11px;
        cursor:pointer;
}
.mz-hint {
    bottom:30px;
    left: 0;
    right: 0;
    padding: 0 10%;
    background-color: transparent;
    -webkit-transition: opacity .4s ease,z-index .4s ease;
    transition: opacity .4s ease,z-index .4s ease;
    color: #fff;
    text-decoration: none;
    text-align: center;
    direction: ltr;
    display: inline-block;
    margin: 0;
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}
.field-wrapper {
    width: 88px;
    height:48px;
    position: relative;
}
.field-wrapper:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;

    top: 19px;
    right: 12px;
    border-right:7px solid transparent;
    border-left: 7px solid transparent;
    border-top:7px solid #001539;
    pointer-events: none;
}
.field-wrapper select:hover {
border:1px solid #838383;
  }
.field-wrapper select {
    padding: 9px 16px 9px 8px;
    line-height: 20px;
    height: 48px;
    font-size: 16px!important;
        border: 1px solid #c9cace;
    border-radius: 0;
    width:88px;
        cursor: pointer;
    -webkit-appearance: none;
     background: #fff;
     text-align: left;padding-left: calc(50% - 5px);
}
.mz-hint-message:before {
    content: '\02295';
    font-family: serif;
    font-size: 1.5em;
    speak: none;
    text-align: center;
    vertical-align: -2px;
    margin-right: 6px;
}
.select-wrapper select {
 background: #fff;border: 0px !important;text-align: center;padding-left: calc(50% - 5px);
      -webkit-appearance: none;
    outline-style: none;
    white-space: nowrap;
     height: 50px;width:88px;
}
.select-wrapper::after{
  content: "\25BC";
    display: block;
    position: relative;
    float: right;
    top: -32px;
    right:8px;
    background-color: #fff;
    width:14px;
    height:7px;
    text-align: center;
    margin-bottom: -25px;
}
	.description-container h1 {
    font-family: 'Gotham-Medium', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin: 0px 10px 10px 0px;
    /* text-transform: uppercase; */
	}
	.description-container #btn_commande_tissu {
		margin: 20px 10px 15px 0px;
	}
    .p-ch{font-size: 16px;
    text-transform: lowercase;}
	.description-container ul li.text {
		margin-top: 8px;
		line-height: 1.5em;
		text-align: justify !important;
        font-size:16px !important;
	}
    .description-prix { text-align: left; }
    .modifier-chemise { padding-left: 0; }

    /* PANIER */
    .photo-article-panier { height: 200px; min-width: 200px; }
    .description-article-panier { justify-content: center; }
    .description-top { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content:flex-start; margin-bottom: 0px; align-items: center;}
    .description-bottom { display: flex; align-items: center; font-size: 1em; justify-content: space-between; }
    /* MENU FIXE */
    .filtre-fixed-top{
        position: fixed;
        left : 0px;
        right: 0px;
        z-index: 888;
        top:70px;
        background-color: #fff;
        min-height: 60px;
	    width: 100%;
        padding-left: 0px;
        padding-right: 0px;

    }



    .cols {
        width: 20%;
    }
    .image_col div.pointeur {
        width: 24%;
        max-width: 24%;
        height: 100%;
        position: relative;
        background: #fff;
        opacity: 0;
        z-index: 9997;
        float: left;
    }
    .image_col div.pointeur.gauche {
        margin-left: 0px;
    }
    .image_col div.pointeur.centre {
        margin-left: 0px;
    }
    .image_col div.pointeur.droit {
        margin-left: 0px;
    }
    .logo-container {
        position: absolute;
        left: calc(50% - 60px);
        left: -moz-calc(50% - 60px);
    }
    .close-detail { display: none;}
    #close-detail-img { display: none; }
    #close-detail-span { display: none; }
    #popup {
    /*background: #fff;*/
        position: fixed;
        z-index: 1501;
        width: 100%;
        /*height: 449px;*/
        top: 10px;
        /*left: 50%;
        /*margin-top: -225px;
        margin-left: -450px;*/
        /*text-align: left;*/
        display: none;
        /*box-shadow: 0 0 20px #333;*/
        font-family: var(--font-family-regular);
        font-weight: 400;
    }
    #popup #photo_detail {
        width: 726px;
        height: 676px;
        position: absolute;
        margin: 0 0 0 0;
        overflow: hidden;
		background-color:#fff;
    }
    .popup_description {
        margin-left: 10px;
	   width: 479px;
    }
    .fixed {
        margin-top: 150px;
    }
    .fixed-tissu {
        margin-top: 20px;
    }
}

.filtere{padding: 100px 16px 40px 40px !important;border:none}
@media screen and (max-width:767px) {
  .text-categorie{
  padding: 40px 40px;
    background: #eee;
    width: 100%;
    height: 100%;
}

.mrg-20{margin-left:0px !important}
#header{height:70px !important}
#header,#header.fixed-theme {top:0px }
.cont-info{position: relative;top:46px}
.fixed-header-modele{
    width:100% !important;
}
.filter-icon {
    background: transparent url("/assets/design-system/production/img/filter2.svg") no-repeat left center;
    background-size: 32px;
        display: inline-block;
    width: 30px;
    height: 24px;
    position: relative;
    top:5px;
    margin-left: 10px;
    opacity:1;
}
.mrg-lft{
    margin-left:0px;
}
.header-filter a {
      width: 100px;
    margin: 0 auto;
}
.display-no{
  display: block !important;
}
.display-yes{
  display: none;
}
.title-modele {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-family-regular);
    line-height: 25px;
    }

.header-filter {
    float: right;
    text-align: center;
    position: relative;
    display: none;
    top:10px;
    width: 100%;
    margin: 10px auto;
    font-size: 14px;
    color: #757575;
    -webkit-transition: .4s cubic-bezier(.3, .3, .05, 1);
    transition: .4s cubic-bezier(.3, .3, .05, 1);
}
.header-page { padding: 10px 10px !important; }
.filter .filter-panel .filter-inner {
    position: absolute;
    bottom: 0;
    padding: 30px;
    max-width: 440px;
    margin: 0 auto;
    -webkit-transition: .6s cubic-bezier(.19, 1, .22, 1);
    transition: .6s cubic-bezier(.19, 1, .22, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-overflow-scrolling: touch;
}
.barss{
      margin-top: 50px !important;
}
.barss1{
      margin-top: 30px !important;
}
.field-wrapper select {
    padding: 9px 16px 9px 8px;
    line-height: 20px;
    height: 48px;
    font-size: 16px!important;
    border: 1px solid #c9cace;
    border-radius: 0;
    width: 88px;
    cursor: pointer;
    -webkit-appearance: none;
    background: #fff;
    text-align: center;
    padding-left: calc(50% - 15px);
}
.field-wrapper{position: relative;}
.field-wrapper:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 19px;
    right: 12px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 7px solid #001539;
    pointer-events: none;
}
.filter {
    -webkit-flex: 0 0 16em;
    -moz-flex: 0 0 16em;
    -ms-flex: 0 0 16em;
    flex: 0 0 16em;
    padding: 0 16px 16px 0;
    position: fixed;
    top: 215px;
    left:0;
    width: 100%;
    bottom:0;
    overflow-y: scroll;
    background: #fff;
    padding: 0;
    z-index: 999;
    border-right: none;
    border: 1px solid #ddd;
}
.header-page{
    margin-top:0px;
  margin-bottom: 0px !important;

}
.select-wrapper select {
 background: #fff;border: 0px !important;text-align: center;padding-left: calc(50% - 5px);
      -webkit-appearance: none;
    outline-style: none;
    white-space: nowrap;
     height: 50px;width:88px;
}
.select-wrapper::after{
  content: "\25BC";
    display: block;
    position: relative;
    float: right;
    top: -32px;
    right:8px;
    background-color: #fff;
    width:14px;
    height:7px;
    text-align: center;
    margin-bottom: -25px;
}
  .mz-hint-message{display: inline-block;
    background: rgba(49,51,61,.7);
    border-radius: 2em;
    padding: .7em 1.1em;
        font-size: 11px;
}
.mz-hint-message:before {
    content: '\02295';
    font-family: serif;
    font-size: 1.5em;
    speak: none;
    text-align: center;
    vertical-align: -2px;
    margin-right: 6px;
}
.mz-hint {
    bottom:30px;
    left: 0;
    right: 0;
    padding: 0 10%;
    background-color: transparent;
    -webkit-transition: opacity .4s ease,z-index .4s ease;
    transition: opacity .4s ease,z-index .4s ease;
    color: #fff;
    text-decoration: none;
    text-align: center;
    direction: ltr;
    display: none;
    margin: 0;
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}
.prt{
 display: inline-block;width:100%;
}
.part-popup1 {
  position:relative;
    margin: 5px 5px !important;
    width: 130px;
    height: 155px !important;
    padding: 10px !important;
    border: 2px solid #eee;
        background: #fcfcfc;
    display: inline-block;
}
.parts1 {
  width:100% !important;
      padding: 0 25px;
  }
  .contain{
    width:100% !important;
    padding:0 10px;
    margin-bottom: 60px !important;
  }
  .mrg-60{
  margin-bottom: 60px;
  }
.modal-dialog{
    max-width: 100%;
        width: 100%;
        min-width: 100%;
        margin: 0px !important;
        height:100vh;
}
.modal,.modal-content{height:100vh}
.mobody{
padding: 0px 20px 30px 20px;
}
.h-modal{
  text-align:center;font-size: 16px;margin-top:20px;
}
.part-popup {
    margin: 5px 10px !important;
    width: 40%;
    height: 115px !important;
    padding: 5px !important;
    display: inline-block;
}
.height_2{
height: 380px;
}
.margin95{
  margin-top:40px !important;
}
.text_option{
  margin-left:0px !important;
}
.delivery{
  padding-left:0px !important;
}
.padding_2{
  padding-left:0px !important;
}
.img-categorie{
  margin-top:-20px;
}
.img-categorie img{
  width:100%;
  height: auto;
  }
  .fil-arianne-activ{
    font-size:24px;
  }
  .blok {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 30px;
}
.blok1 {
    margin-left: 0px;
    margin-right: 0px;
    background: #fff;
    padding: 10px;
}
.padding_3{
  padding-left:0px !important;
}
.delivery a{
  font-size:15px !important;
}
.btn_vert{
  font-family: var(--font-family-regular);
  line-height: 20px;
margin-top: 15px;text-align:center;margin-bottom:20px;
}
.margin_1{
  margin-top:20px;
}
.description-container ul li span {
    font-size: 16px;
    color: #666;
    display: inline-block;

    font-weight: 400;
}
  .bars {
    width: 75%;
    background: #eee;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 30px;
    position: relative;
}
.barss,.barss1 {
    width: 75%;
    background: #eee;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 30px;
    position: relative;
}
    #openMenu{
 display:block;width:130px;height:70px;
 padding:18px 0px;
  }
  .label {
font-size:0.7em !important;
  }
    .info-cookie{
      padding:20px 0px;
    }

  .text_desc{
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
  }
.LanguageSwitcher {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding:1em !important;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    z-index: 99999 !important;
}
#barre{
  padding-top:20px;
  padding-bottom:20px;
}
.LanguageSwitcher .Wrapper.continent {
    max-width: 100%;
    margin: 0 auto;
}
.LanguageSwitcher .Wrapper.contin767ents:not(:last-child) {
    margin-bottom: 2em;
}
    .divheader{
    display: inline-block;float:right;position: relative;right:10px;height:70px;z-index:999;
  }
  .fleche_bulle1{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:49px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;"
}
.tg-production-page .fleche_bulle2{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:48px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;"
}
.fleche_bulle{
  position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid;margin-top:49px;
    left: 50%;
    transform: translate(-50%, 0);
  color:#005539;"
}
.tg-production-page .onglet_active{
  font-size: 1em;background-color:#005539;color:#fff !important; padding:10px 10px 10px 5px;width:280px;display:block;margin:0 auto;
}
.tg-production-page .onglet_lien{font-size: 1em;border:2px solid #e6e6e6; padding:10px 10px 10px 5px;width:280px;display:block;margin:0 auto;}
.tg-production-page .onglet_lien img{
  width:40px;height:40px;margin-right:10px;
}
.tg-production-page .onglet_active img{  width:40px;height:40px;margin-right:10px;
}
  .tg-production-page #slider-thumbs{
    display: block;
  }
  .tg-production-page .pictures_eyes_header{
    background:transparent !important;
  }
  .tg-production-page .carousel-indicators{
    display: block;
  }
.tg-production-page .pictures_eyes_in .prev,.tg-production-page .pictures_eyes_in .next{
  display:none;
}
  .tg-production-page .pictures_eyes_in{
    margin-top:0px !important;
  }
  .tg-production-page .pictures_eyes_close{
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    z-index: 1237;
    background: #eee;
    border-radius: 50%;
    padding: 5px;
    display: none;
}
  .tg-production-page .pictures_eyes_title{    display: none !important;}
  .tg-production-page .lineh{line-height: 35px !important;}
	.tg-production-page .top-compte{
		padding-top:0px;
	}
	.tg-production-page .top-compte p{
		line-height:20px;
		font-size:15px;
	}
	.tg-production-page .bot-compte{
	width:100%;
	}
	.tg-production-page .bot-compte p{
		line-height:20px;
		font-size:15px;

	}
    .tg-production-page .methode-titre{
      text-align:center;
    }
  .tg-production-page .methode-mesure{
    /*padding-left:5px !important;*/
    text-align:center;
    padding:20px;
  }
  .tg-production-page .mesure-left{
    padding-left:5px !important;
  }
.tg-production-page .panier-img{
    width: 320px;
    left: -10px;
    transform: translate(-20px);
    overflow: hidden;
}
.tg-production-page .chemise-catalogue-photo img{
    width: 100%;
    height: auto;margin:0 auto}
.tg-production-page .chemise-catalogue-photo{
    height: 200px;
    padding: 0px;
}
.tg-production-page .modele-cataloguee{
    font-size: 14px;
   line-height: 15px;
}

/*.left{
display:inline-block;width:65%;text-align:left;padding-left:10px;
  }
  .right{
   display:inline-block;width:35%;text-align:left;
  }*/
  .tg-production-page .wf{
    width:80% !important;
  }
  .tg-production-page .wr{
    width:20% !important;
  }
  .tg-production-page .wrd{
    width:50% !important;
  }
  .tg-production-page .sens{text-align:left;}
  .tg-production-page .flane{
    border:none;background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle_mileta_legere.jpg") no-repeat;background-position: calc(15% - 10px);
  }
.tg-production-page .temoigne{padding: 0px 7px 0px  7px !important;}

.tg-production-page .lino{line-height:35px !important;}
.tg-production-page .text-cataloguee{line-height:1.4em !important;}
.tg-production-page .easy{position:absolute;top:110px; right:30px;}
.tg-production-page .bar{width:100%;float:left;}
.tg-production-page .bare{width:100%;float:left;text-align:left;padding:70px 30px;}
.tg-production-page .image_col{height:130px !important;}
.tg-production-page .pl50{padding-left: 0px !important; */
}
.tg-production-page .pr50{
padding-right:0px !important;
}
.tg-production-page .fsize19{font-size: 16px !important;}
.tg-production-page .text-catalogue{
height:100% !important;
}
.tg-production-page .chemise-catalogue{
height:100% !important;
margin:0px auto !important;
}
.tg-production-page .savoir{
padding:50px 50px;
}
.tg-production-page .savoire{
padding:0px 10px;
}
.tg-production-page .rosee{
padding: 10px 50px !important;
}

	.tg-production-page .border-top{
	border-top:1px solid #d6d6d6;
	border-left:1px solid #d6d6d6;
	border-right:1px solid #d6d6d6;
}
.tg-production-page .border-bottom{
	border-bottom:1px solid #d6d6d6;
	border-left:1px solid #d6d6d6;
	border-right:1px solid #d6d6d6;
}
.tg-production-page .border-right{
	border-bottom:1px solid #d6d6d6;
}
.tg-production-page .filtres-catalogue-container-tissus-home{height: 100%; width: 100%; position: relative; z-index: 10;margin-top:20px;margin-bottom:50px;}
.tg-production-page .partenaires{width:100%}
.tg-production-page .partenaires div{padding:10px 0px;text-align:center;float:left;height:88px}
.tg-production-page .home{
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tg-production-page .home div{
    display:table-row;
    line-height:1.4em;
    font-size:16px;
    white-space:nowrap;
}
.tg-production-page .home p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.tg-production-page .home span.spacer{
    display:table-cell;
}
.tg-production-page .home p{
    padding:0 10px;
}
.tg-production-page .home span.spacer:after{
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#d6d6d6;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.tg-production-page .tophome{
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tg-production-page .tophome div{
    display:table-row;
    text-align: center; text-transform: uppercase; font-size: 31px; line-height: 1.4em;font-family: var(--font-family-regular);
    font-weight: 700;
    white-space:nowrap;
	color:#000;
}
.tg-production-page .tophome p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;

}
.tg-production-page .tophome span.spacer{
    display:table-cell;
}
.tg-production-page .tophome p{
    padding:0 10px;
}
.tg-production-page .tophome span.spacer:after{
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
	border-top:1px dotted #000000;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.tg-production-page .header-home{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 455px; padding: 12px 12px; background: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") no-repeat top center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 50px; }
.tg-production-page .header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:150px}
.tg-production-page .topslide{
    display:table;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tg-production-page .topslide div{
    display:table-row;
    text-align: center;
    white-space:nowrap;
}
.tg-production-page .topslide p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    width:1px;
    table-layout:fixed;
	text-transform: uppercase; font-size: 2.8rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.tg-production-page .topslide span.spacer,.tg-production-page .topslide span.space{
    display:table-cell;
}
.tg-production-page .topslide p{
    padding:0 20px;
}
.tg-production-page .topslide span.spacer:after{
    display:inline-block;
    width:50%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:right;
}
.tg-production-page .topslide span.space:after{
    display:inline-block;
    width:50%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:left;
}
.tg-production-page .header-home .contenu span{
	font-size:1rem;
	margin-bottom:20px;
}
.tg-production-page .header-home .contenu  .prix{
	display:block;
	font-size:3rem;
	margin-bottom:30px;
}
.tg-production-page .btn-rose-home{
	padding:10px 100px !important;
}
	.tg-production-page #detailpanier{
		width:100% !important;
		margin-left:20px !important;
	}
	.tg-production-page .h2_texte{
    font-size: 1.2em !important;
    margin: 0 20px 20px 20px !important;
    line-height: 30px !important;
}
.tg-production-page .texte{
    font-size: 17px;
    margin: 0 20px 20px 20px !important;
}
	.tg-production-page .centered-area-displayedd{
    position: absolute !important;
    top: 120px !important;
    left:12px;
    width:30%;
}
	.tg-production-page .tissu-catalogue-photo{ width: 100%; height: auto;margin:auto;margin-left: 0px;}
	.tg-production-page .description-bottom{
 display: block !important;
    /* align-items: center; */
    font-size: 1em;
    justify-content: inherit !important;
    float: left;
    text-align: left;
}
.tg-production-page .description-bottom div{
	width: 100% !important;
    margin-bottom: 10px;
    height: 20px;
    float: left;
    text-align: left;
}
.tg-production-page .description-bottom p{
    float: left !important;
    text-align: left;
}
	.tg-production-page #filtre_container_tissu.fixed-theme{
		background:#fff !important;
	}
	.tg-production-page #background2{
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    background: #000;
    opacity:0;
    width: 100%;
    display: none;
    height:100%;
}
	.tg-production-page .filtres-catalogue > li span .ok-filtre{
	margin-top: -5px !important;
	right: 20px !important;

}
.tg-production-page #popup #detail ul li span,.tg-production-page #detail ul li span{
	font-size:15px !important;
}

.tg-production-page .btn-rose{
	font-size:14px !important;
    line-height: 20px;
}
.tg-production-page #popup #detail ul li,.tg-production-page #detail ul li{
    margin: 10px 10px 0 10px ;
    font-size: 14px !important;
	line-height:18px !important;
}
.tg-production-page #popup #detail h1,.tg-production-page #detail h1{
    font-family: var(--font-family-regular);
    font-weight: 600;
    font-size: 18px !important;
    margin: 10px 10px 10px 10px;
    /* text-transform: uppercase; */
}
.tg-production-page .description-titre{
font-size: 2em !important;
}

.tg-production-page .bordered{
border:none;
border-radius:0px;
}
.tg-production-page .description-prix{
font-size: 3em !important;
}
.tg-production-page .modele-catalogue-home{
	font-size:24px;
}
.tg-production-page .reference{
	padding-right:0px;font-size: 14px; line-height: 1.2em; margin-bottom: 10px; padding-top: 0px !important; text-align: left !important; color: #7f7f7f;
}
	.tg-production-page .hamburger{
		padding-left:0px !important;
	}
	.tg-production-page .catalogue-details-home{ max-height: 200px; overflow: hidden; text-align: center; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; width:100%;margin:auto;}
	.tg-production-page .filtres-catalogue-tissu{ position: relative; top: -115px; }

	.tg-production-page .scoll-filtre{
	height: 100%;
  overflow-y: scroll;
	overflow-x:hidden;

	}
	.tg-production-page .posfix{
	position: fixed;
    z-index: 99;
	width:100%;
	}
	.tg-production-page .filtre-scroll{
	position: fixed;
	right: 0px;
	left: 0;
  bottom:0px;
  top:0px !important;
	z-index: 9999;
	background: #fff;
	width:100%;
	padding-left:0px;
	padding-right:0px;
  min-height:100%;
  -webkit-overflow-scrolling: touch;
    }
    /* NAVIGATION MOBILE/FIXE */
    .tg-production-page .icon-burger{ margin-right: 10px; }
    .tg-production-page .panier-btn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        /*left: calc(100% - 35px);
        left: -moz-calc(100% - 35px);*/
        right: 0px;
        top:21px;
        margin-right:0px !important;
		z-index: 101
    }
    .tg-production-page .panier-btn-img{ display: block; /*margin-right: 10px;*/}
    .tg-production-page .hide-text{ display: none;}
    /* MENU FIXE */
    .tg-production-page .filtre-fixed-top{
        position: fixed;
        right: 0px;
        left: 0;
        z-index: 9999;
        top: 120px;
    }
    .tg-production-page .navbar-brand a img{
        width: 160px;
        position: relative;
        margin-top: 0px;
        margin-left:0px;
    }
    .tg-production-page .navbar-brand{
        padding:10px !important;
    }
    .tg-production-page .navbar-brand div img{
        position: relative;
        top: -1px;
        left: calc(50% + 80px);
        left: -moz-calc(50% + 80px);
        width: 20px;
    }
    .tg-production-page .navbar-brand.fixed-theme div img{
        /*position: absolute;
        top: calc(50%);
        left: calc(50%);*/
    }
    .tg-production-page .filtres-catalogue{ background-color: #FFF; }
	.tg-production-page .filtres-catalogue > li{ padding:10px 0px; }
    .tg-production-page .filtres-catalogue > li span{ color: #555;border-bottom:1px solid #ddd;height:30px;cursor: pointer; }
	.tg-production-page .filtres-catalogue > li span span{
    background-color: #fff;
    width: 40px;
    height: 30px;
    position: relative;
	float:left;
	margin-left:calc(100% - 30px);
    margin-top: -25px;
    right: 0px;
	border:none;
    /*border-radius: 0px 5px 5px 0px;*/
}
   .tg-production-page .filtres-catalogue-home{ background-color: #FFF; }
	.tg-production-page .filtres-catalogue-home > li{ padding:10px 0px; }
    .tg-production-page .filtres-catalogue-home > li span{ color: #555;border-bottom:1px solid #ddd;height:30px;cursor: pointer; }
	.tg-production-page .filtres-catalogue-home > li span span{
    background-color: #fff;
    width: 40px;
    height: 30px;
    position: relative;
	float:left;
	margin-left:calc(100% - 30px);
    margin-top: -25px;
    right: 0px;
	border:none;
    /*border-radius: 0px 5px 5px 0px;*/
}
.tg-production-page #sptis:after,.tg-production-page #spmot:after{
    content: '';
    display: block;
    height: 12px;
    width: 19px;
    background: url("/assets/design-system/production/img/arrow_down.png") no-repeat;
    position: absolute;
    top: 10px;
    left: 45px;
}
.tg-production-page #spcol.changed:after,.tg-production-page #sptis.changed:after,.tg-production-page #spmot.changed:after{
content: '';
    display: block;
    height: 12px;
    width: 19px;
    background: url("/assets/design-system/production/img/arrow_up.png") no-repeat;
    position: absolute;
    top: 10px;
    left: 45px;
}


    .tg-production-page .navbar-brand.fixed-theme a img{
        /*width: 15%;
        position: absolute;
        left: calc(33%);
        top: 15px;*/
    }
    .tg-production-page .cols{
        width: 50%;
    }
    .tg-production-page .chemise-catalogue-marge{margin: 0px}
    .tg-production-page .image_col div.pointeur{
        width: 30%;
        max-width: 30%;
        height: 40%;
        position: relative;
        background: #fff;
        opacity: 0;
        z-index: 9997;
        float: left;
    }
    .tg-production-page .image_col div.pointeur.gauche{
        margin-left: 0px;
    }
    .tg-production-page .image_col div.pointeur.centre{
        margin-left: 0px;
    }
    .tg-production-page .image_col div.pointeur.droit{
        margin-left: 0px;
    }
    .tg-production-page .logo-container{
        position: absolute;
        left: calc(50% - 29px);
        left: -moz-calc(50% - 29px);
    }
    .tg-production-page .close-detail{ width: 110px;height: 50px;background-color:  white;position:  absolute;top: 30px; left: 50%;
    transform: translate(-50%, 0);border-radius: 30px;cursor:pointer; z-index:99}
    .tg-production-page #close-detail-img{ width: 14px; position:  absolute; top: 18px; right: 15px; }
    .tg-production-page #close-detail-span{ color: #000 !important; position: absolute; top: 15px; left: 15px; font-size: 17px;height:20px;line-height:20px;font-weight:600 !important; }
    .tg-production-page .popup_description{
        position: absolute;
        top: 0;
        right: 0;
        left: 0px;
		padding-left:0px;
		padding-right:0px;

    }
    .tg-production-page #popup{
        width: 100%;
        z-index: 2000;
        height: auto;
        margin-top: 0px !important;
        left: 0;
        bottom: 0;
        margin: 0;
        display: none;
        box-shadow: none;
		padding-bottom:20px;
		top:0 !important;
    }
.tg-production-page .fermer-popup{display:none;}
.tg-production-page .fpopup{
  display: block !important
}
    .tg-production-page #popup #photo_detail #fois2{
        position: absolute;
        margin: 399px 0 0 10px;
    }
    .tg-production-page #popup #detail{
        width: 100%;
        position: fixed !important;
        top:0;
        margin: 0;
        height: 100% !important;
        overflow-y: scroll;
		overflow-x:hidden;
        text-align: left;
		left:0;
		right:0;
		bottom:0;
    }
	 .tg-production-page #popup #detail::-webkit-scrollbar{
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}
    .tg-production-page #popup #photo_detail{
        width: 100%;
        height: 449px;
        position: absolute;
        margin: 0 0 0 -20px;
        overflow: auto;
    }
    /*#popup #photo_detail img {
        width: 100%;
        height: auto;
        position: absolute;
    }*/
    .tg-production-page .fixed{
        margin-top: 130px;
    }
    .tg-production-page .fixed-tissu{
        margin-top: 20px;
    }
    .tg-production-page #centred-area-displayed{
        position: relative;
        left: 0;
    }
	.tg-production-page .popup-marque{
    position: absolute !important;
    top: calc(100% - 80px) !important;
    /*left: calc(30% - 70px);*/
    z-index: 9999;
	}
	.tg-production-page #popup #btn_commande_tissu{
    margin: 30px auto 15px auto;
	display: block;
    }
	/*#image-displayed {
		position: relative;
		left: calc(20vw - 220px);
		left: -moz-calc(25vw - 220px);
		height:400px;
	}*/
    .tg-production-page .sep-price{
        display: none;
    }
.tg-production-page }



@media screen and (min-width:992px){
.border-top{
border-top:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
border-bottom:1px solid #d6d6d6;
}
.border-bottom{
border-bottom:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
}
.border-right{
border-right:1px solid #d6d6d6;
}

.border-left{
	border-right:0px;
}
/* MEDIA QUERIES
    /* INFO-LIVRAISON */
    .info-livraison-container p { font-size: 1em; color: #FFF; text-transform: uppercase; line-height: 1.4em; text-align: center; width: 100%; }

    /* MENU LATERAL */
    .guide-menu-deroulant { background-color: transparent; }

    /* NAVIGATION MOBILE/FIXE */
    .logo-container > img { display: inline-block; margin-left: 15px; padding-top: 3px; }

    /* NAVIGATION MOBILE/FIXE */
    .right-navigation { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
    .compte-btn { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 20px; cursor: pointer; }
    .compte-btn-img { margin-right: 7px; }



    /* HEADER CATALOGUE CHEMISE */
    .header-page { padding: 50px 10px; background-size: cover;}
    .header-page-tissu { padding: 120px 10px; }
    .fil-arianne { font-size: 1em; }
    .fil-arianne-activ { /*font-size: 3em;*/ }
    .modele-find {    font-size: 0.9em;
    line-height: 24px; }
.modele-find:hover{color:#fff;}
    /* FILTRES CATALOGUE */
    .filtre-menu-deroulant li { font-size: 15px; }

    /* BANDEAU TISSU */
    .bandeau-tissu-top { font-size: 31px; }
    .bandeau-tissu-content { font-size: 31px; }
    .bandeau-tissu-bot { font-size: 31px; }

    /* CHOIX TYPE DE MESURE */
    .methode-mesure { padding: 30px; }
    .methode-content { font-size: 17px; }
    .methode-mesure a { width: 80%; }

    /* MESURE RAPIDE */
    .methode-mesure-rapide { padding-left: 15px; padding-right: 15px; }

    /* ARTICLE + DESCRIPTION */
    .article-container { height: 600px; margin-left: -50px; }
    .article-container img { margin-left: 0px; }
    .description-container { padding-left: 0px; }
    .option-description { float: left; width: 50%; }

    /* PANIER */
    .photo-article-panier { height: 300px; width: 300px; }
    .description-article-panier { justify-content: center;  }
    .description-top {display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-start; margin-bottom: 20px; }
    .top-compte{padding-top:30px;font-size:15px;line-height: 20px;text-align:left;}
    .bot-compte{padding-top:0px;font-size:15px;line-height: 20px;text-align:left;}
    .nom-article-panier { margin-right: 0px; }
    .description-bottom { display: flex; align-items: center; font-size: 1em; justify-content: space-between; }

    /* ESPACE CLIENT */
    .espace-client-sous-nav { text-align: left;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);padding:0px }
    .espace-client-sous-nav li { display: block; margin: 0;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6; }
    .espace-client-sous-nav li.actif{border-left:3px solid #005539;}
    .espace-client-sous-nav li:last-child {border-bottom:1px solid #e6e6e6;}
    .espace-client-sous-nav li a { font-size: 1em; line-height: 44px;padding-left:10px; }
    .espace-client-sous-nav li a.sous-nav-actif { color: #005539; }
    .modifier-info-compte { font-size: 1em; text-decoration: underline; color:#005539;}

    .burger-menu {
	width:130px;
	height:70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        left: 1%;
        padding-top: 3px;
    }
    .panier-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        left: 87%;
        top: 25px;
		z-index: 101
    }
    .cols {
        width: 20%;
    }
    .chemise-catalogue-marge {margin: 15px}
    #popup {
    /*background: #fff;*/
        position: fixed;
        z-index: 1501;
        width: 100%;
        /*height: 449px;*/
        top: 10px;
        /*left: 50%;
        /*margin-top: -225px;
        margin-left: -450px;*/
        /*text-align: left;*/
        display: none;
        /*box-shadow: 0 0 20px #333;*/
        font-family:var(--font-family-regular);
        font-weight: 400;
    }
}
@media screen and (max-width:991px){

.tg-production-page .panier-content-hover{
	display:none
}
/* MEDIA QUERIES
    /* INFO-LIVRAISON */
    .tg-production-page .info-livraison-container p{ font-size: 1em; color: #FFF; text-transform: uppercase; line-height: 1.4em; text-align: left; width: 100%; }

    /* MENU LATERAL */
    .tg-production-page .guide-menu-deroulant{ background-color: transparent; }

    /* NAVIGATION MOBILE/FIXE */
    .tg-production-page .logo-container > img{ display: inline-block; margin-left: 15px; padding-top: 3px; }

    /* NAVIGATION MOBILE/FIXE */
    .tg-production-page .burger-menu{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; height:100%; position: relative; left: 10px; padding-top: 0px}
    .tg-production-page .right-navigation{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
    .tg-production-page .compte-btn{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 20px; cursor: pointer; }
    .tg-production-page .compte-btn-img{ margin-right: 7px; }


    /* HEADER CATALOGUE CHEMISE */
    .tg-production-page .header-page{ padding: 50px 10px; }
    .tg-production-page .header-page-tissu{ padding: 120px 10px; }
    .tg-production-page .fil-arianne{ font-size: 1em; }
    .tg-production-page .fil-arianne-activ{ /*font-size: 2em;*/ }
    .tg-production-page .modele-find{ font-size: 1em; }

    /* FILTRES CATALOGUE */
    .tg-production-page .filtre-menu-deroulant li{ font-size: 15px; }

    /* BANDEAU TISSU */
    .tg-production-page .bandeau-tissu-top{ font-size: 31px; }
    .tg-production-page .bandeau-tissu-content{ font-size: 31px; }
    .tg-production-page .bandeau-tissu-bot{ font-size: 31px; }

    /* CHOIX TYPE DE MESURE */
    .tg-production-page .methode-mesure{ padding: 30px; }
    .tg-production-page .methode-content{ font-size: 17px; }
    .tg-production-page .methode-mesure a{ width: 100%; }

    /* MESURE RAPIDE */
    .tg-production-page .methode-mesure-rapide{ padding-left: 15px; padding-right: 15px; }

    /* ARTICLE + DESCRIPTION */
    .tg-production-page .article-container{ height: 600px; margin-left: -50px; }
    .tg-production-page .article-container img{ margin-left: calc(0% - 165px); }
    .tg-production-page .description-container{ padding-left: 0px; }
    .tg-production-page .option-description{ float: left; width: 50%; }

    /* PANIER */
    .tg-production-page .photo-article-panier{ height: 300px; width: 300px; }
    .tg-production-page .description-article-panier{ justify-content: center; }
    .tg-production-page .description-top{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 20px 0; }
    .tg-production-page .nom-article-panier{ margin-right: 10px; }
    .tg-production-page .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }

    /* ESPACE CLIENT */
    .tg-production-page .espace-client-sous-nav{ text-align: left; }
    .tg-production-page .espace-client-sous-nav li{padding-left:10px; display: block; margin: 0;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6; }
    .tg-production-page .espace-client-sous-nav li:last-child{border-bottom:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6;}
    .tg-production-page .espace-client-sous-nav li a{ font-size: 1em; line-height: 44px; }
    .tg-production-page .espace-client-sous-nav li.actif{border-left:3px solid #005539;}
    .tg-production-page .espace-client-sous-nav li a.sous-nav-actif{ color: #005539;}
    .tg-production-page .modifier-info-compte{ font-size: 1em; text-decoration: underline; color:#005539}
    .tg-production-page .chemise-catalogue-marge{margin: 0px}
    .tg-production-page #popup{
        background: #fff;
        position: fixed;
        z-index: 9999;
        width: 100%;
        height: 100%;
        /*top: 10px;*/
        /*left: 50%;
        /*margin-top: -225px;
        margin-left: -450px;*/
        /*text-align: left;*/
        display: none;
        /*box-shadow: 0 0 20px #333;*/
        font-family: var(--font-family-regular);
        font-weight: 400;
    }
    .tg-production-page .sep-price{
        display: none;
    }
}
@media screen and (max-width:1199px){
    .tg-production-page .sep-price{
        display: none;
    }
    .tg-production-page .centered-area-displayed{

    }
}
.tg-production-page .btn_plus{
    float: right;
    width: 27px;
    height: 18px;
    background-color: #005539;
    border-radius: 13%;
    text-align: center;
    color: white;
    vertical-align: baseline;
    cursor: pointer;
    font-size: 1em;
    margin-left: 5px;
}
.tg-production-page .btn_plus:hover{
    background: #ee3e53
}
.tg-production-page .btn_plus:active{
    background: #b61024
}


.tg-production-page .puce{
	margin-bottom:8px;
}
.tg-production-page .puce::before{
	content: "■ ";
  color: #005539;
  display: inline-block; width: 1em;
  margin-left: -1em;
}
.tg-production-page #info+#header{
    top: 50px;
}

.tg-production-page #header{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1030;
    height: 70px;
    background:transparent;
}

.tg-production-page .search{
font-size: 16px; color: #FFF; margin-right: 10px;width:20%;
}
/*.navbar-container {
    padding: 20px 0 0 10px;
}*/


.tg-production-page .position-fixed{position: fixed !important;}
.tg-production-page #infoe.fixed-theme{
display: none;

}
.tg-production-page #filtre_container_tissu.fixed-theme{
    background-color: #fff;
    box-shadow: #ccc 0 5px 5px;
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;

}
.tg-production-page .navbar-container.fixed-theme{
    height: 50px;
}

.tg-production-page .burger-menu.fixed-theme{
 height: 70px;
 padding-top:3px !important;
}
.tg-production-page .fixed-theme .menu2 a,.tg-production-page .fixed-theme .divheader a,.tg-production-page .fixed-theme .p-greeting{color:#333 !important}

.tg-production-page #header.fixed-theme{ transition-property: background-color, border-color, box-shadow, padding-top;
    transition: 0s;
    -webkit-transition:  0s;}
.tg-production-page footer{
    position: relative;
    bottom: 0px;
    width: 100%;
    margin-top: 40px;
}

.tg-production-page .footer-social{
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
}

.tg-production-page .footer-social-fb{
    border: 1px solid #fff;
    border-radius: 25px;
    background: url("/assets/design-system/production/img/fb.png") no-repeat;
    width: 44px;
    height: 44px;
    background-size: 43px;
    margin: 0px 10px 0px 0px;
    background-color: #fff;
}

.tg-production-page .footer-social-fb:hover{
    background: url("/assets/design-system/production/img/facebook.png") no-repeat;
    background-size: 43px;
    background-color: #fff;
}

.tg-production-page .footer-social-g-plus{
    border: 1px solid #fff;
    border-radius: 25px;
    background: url("/assets/design-system/production/img/gplus.png") no-repeat;
    width: 44px;
    height: 44px;
    background-size: 44px;
    margin: 0px 10px 0px 0px;
    background-color: #fff;
}

.tg-production-page .footer-social-g-plus:hover{
    background: url("/assets/design-system/production/img/google.png") no-repeat;
    background-size: 44px;
    background-color: #fff;
}

.tg-production-page .footer-social-pinterest{
    border: 1px solid #fff;
    border-radius: 25px;
    background: url("/assets/design-system/production/img/pint.png") no-repeat;
    width: 44px;
    height: 44px;
    background-size: 43px;
    background-color: #fff;
}

.tg-production-page .footer-social-pinterest:hover{
    background: url("/assets/design-system/production/img/pinterest.png") no-repeat;
    background-size: 43px;
    background-color: #fff;
}

.tg-production-page #footer-sub{
    background-color: #f3f7f8;
    border-top: 1px solid #dbdbdb;
}

.tg-production-page #footer-main{
    background-color: #fff;
}

.tg-production-page #footer-sub h5{
    color:#565656;
    margin-top: 25px;
}

.tg-production-page #footer-sub ul{
    list-style: none;
    margin-top: 20px;
}

.tg-production-page #footer-sub hr{
    margin: 5px;

}

.tg-production-page #footer-sub ul li{
    margin-left: -38px;
}

.tg-production-page .vertical-line{
    border-right: 1px solid #dbdbdb;
    margin: 8px;
    padding: 0px;
}

.tg-production-page .glyphicon{
    font-size: 31px;
    color:#6d6c6c;
}

.tg-production-page #sub-two{
    margin: 0px;
    padding: 0px;
}

.tg-production-page #sub-two .vertical-line h4{
    color:#6d6c6c;
}


.tg-production-page #footer-main ul{
    list-style: none;
}

.tg-production-page #footer-main ul li{

    text-decoration: none;
    margin-top: 25px;
    text-align: center;
}
.tg-production-page #footer-main ul li img{
max-width:70px;
}

.tg-production-page .footer-help{
    border: 1px solid #fff;
    padding: 10px;
    margin: 10px 0px 10px 0px;
}
.tg-production-page .footer-help a{
    font-size: 17px;
    color: #fff;
}
.tg-production-page .footer-help:hover{
    /*background-color: #fff;*/
    color: 2E3E57;
}
.tg-production-page .glyphicon-search{
    font-size: 20px;
}

.tg-production-page #social-menu{
    float: right;
    margin-right: 60px;
}

.tg-production-page #side-padding{
    padding: 0px;
    margin: 0px;
}




/* POPUP TISSUS*/

.tg-production-page #popup #fermer{
    position: absolute;
    height: 43px;
    width: 42px;
    background: url("/assets/design-system/production/img/close.png") no-repeat;
    background-size: 40px;
    cursor: pointer;
}

.tg-production-page #popup #waitpopup{
    position: absolute;
    margin: 207px 0 0 432px;
    display: none;
}

/*#popup #detail {
    width: 375px;
    position: absolute;
    margin: 0 0 0 525px;
}*/

.tg-production-page #popup #detail{
    width: 100%;
    position: relative;
	height:100%;
    margin: 0px 0 0 0px;
    background: #fff;
}

.tg-production-page #popup #detail .desc{
	width:100%;
	height:70%;
	position:relative;
	display:block;

}
 .tg-production-page #detail{
    width: 100%;
    position: relative;
	height:auto;
    margin: 0px 0 0 0px;
    background: #fff;
}

.tg-production-page #detail .desc{
	width:100%;
	height:70%;
	position:relative;
	display:block;

}
.tg-production-page .h1_texte{
    font-size: 31px;
    margin: 40px 0 30px 0;
}
 .tg-production-page #detail .fort{
    font-size: 17px;
    margin-top: 15px;
    margin: 15px 0 0 10px;
}

 .tg-production-page #detail .fort span{
    color: #999;
    font-size: 17px;
}

.tg-production-page #detail ul{
    list-style-type: none;
    margin: 0px 0 0 0;
}


 .tg-production-page #detail ul li span{
    font-size: 17px;
    color: #666;
    display: inline-block;
    width: 100px;
	font-weight:700;
}

 .tg-production-page #detail ul li.text{
    margin-top: 8px;
	line-height: 1.3em;
	text-align:left;
}

.tg-production-page #btn_commande_tissu{
    margin: 20px 10px 15px 10px
}
.tg-production-page #popup #detail .fort{
    font-size: 17px;
    margin-top: 15px;
    margin: 15px 0 0 10px;
}

.tg-production-page #popup #detail .fort span{
    color: #999;
    font-size: 17px;
}

.tg-production-page #popup #detail ul{
    list-style-type: none;
    margin: 0px 0 0 0;
}



.tg-production-page #popup #detail ul li span{
    font-size: 17px;
    color: #666;
    display: inline-block;
    width: 100px;
	font-weight:700;
}

.tg-production-page #popup #detail ul li.text{
    margin-top: 8px;
	line-height: 1.3em;
	text-align:left;
  font-size:16px;
}

.tg-production-page #popup #btn_commande_tissu{
    margin: 20px 10px 15px 10px
}

.tg-production-page #background{
    position: absolute;
    z-index: 1500;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    width: 100%;
    display: none;
}
.tg-production-page .backgroundfiltrage{
    background: #000;
    opacity: 0.5;
}
.tg-production-page #background3{
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.2;
    width: 100%;
    display: none;
}
.tg-production-page #popup #autres_tissus{
    position: absolute;
    margin: 385px 0 0 525px;
    border-top: 1px dotted #ccc;
    height: 40px;
    width: 365px;
    padding: 10px 0 0 10px;
}

.tg-production-page .bloc_col{
    background: #f2f2f2;
    border: 1px solid #e3e3e3;
    padding: 10px;
    float: left;
    margin: 0px 10px 10px 0px;
}
.tg-production-page .bloc_col img{
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.tg-production-page .image_col{
    height: 380px;
}

.tg-production-page .image_col img{
    position: absolute;
    z-index: 1;
}
.tg-production-page .image_col img:nth-child(1){
    z-index: 2;
}
.tg-production-page .texte{
    font-size: 17px;
    margin: 0 50px 20px 50px;
}
.tg-production-page .h2_texte{
    font-size: 1.8em;
    margin: 0 50px 20px 60px;
	line-height:30px;
}
.tg-production-page .h3_texte{
    font-size: 1.3em;
    margin: 0 50px 20px 50px;
}
.tg-production-page .header-page-guide{
    padding: 100px 10px;
}
.tg-production-page .colonne_menu{
    text-decoration: underline;
    font-size: 1em;
}

.tg-production-page .sublinkcart{
	color:#b6b4b4; font-size: 15px; cursor:pointer;
}
.tg-production-page .sublinkcart:hover{
	color:#918888;
}



.tg-production-page .cartArticle{
	max-height:240px;
	height:auto;
	overflow-y: auto;
	/*border-bottom: 1px solid #e6e6e6;*/
}
/* width */
.tg-production-page .cartArticle::-webkit-scrollbar{
    width: 10px;
}

/* Track */
.tg-production-page .cartArticle::-webkit-scrollbar-track{
    background: #f1f1f1;
}

/* Handle */
.tg-production-page .cartArticle::-webkit-scrollbar-thumb{
    background: #888;
}

/* Handle on hover */
.tg-production-page .cartArticle::-webkit-scrollbar-thumb:hover{
    background: #555;
}


.tg-production-page .article-panier-2{margin:0px;padding:0px;}

.tg-production-page .photo-article-panier-2{
width:25%;min-width:25% !important; height:100px;text-align:center;
}

.tg-production-page .description-article-panier-2{height:100px; width: 300px;}

.tg-production-page .prix-article-panier-2{font-size:21px;width:15%;height:60px;text-align: right;
    margin-right: 15px;}

.tg-production-page #footer-main{min-height: 100px; padding-top: 5px; padding-bottom: 20px;}

.tg-production-page .cwhite{color: #FFF;}

.tg-production-page .fsize16{font-size: 16px;}
.tg-production-page .fsize17{font-size: 17px;}
.tg-production-page .fsize19{font-size: 19px ;    color: #FFF;
    display: table;
    margin: 25px auto; }
.tg-production-page .fsize21{font-size: 21px;}
.tg-production-page .fsize18em{font-size: 1.8em;}
.tg-production-page .fsize12em{font-size: 1.2em;}

.tg-production-page .tcenter{ text-align: center; }
.tg-production-page .tjustify{text-align:justify;}
.tg-production-page .tleft{text-align:left;}
.tg-production-page .tright{text-align:right;}

.tg-production-page .tdunderline{text-decoration: underline;}
.tg-production-page .tunderline{text-decoration: underline;}

.tg-production-page .cursor{cursor: pointer;}

.tg-production-page .mb0{margin-bottom: 0px;}
.tg-production-page .mb20{margin-bottom: 20px;}
.tg-production-page .mb25{margin-bottom: 25px}
.tg-production-page .mb50{margin-bottom: 50px;}

.tg-production-page .ml20{margin-left: 20px}

.tg-production-page .ml0{margin-left: 0px;}

.tg-production-page .mt20{margin-top: 20px;}
.tg-production-page .mt44{margin-top: 44px;}
.tg-production-page .mt40{margin-top:40px;}

.tg-production-page .pl50{padding-left: 50px;}

.tg-production-page .pr50{padding-right: 50px;}

.tg-production-page .p10{padding:10px;}

.tg-production-page .vtop{vertical-align: top;}

.tg-production-page .mh405{min-height: 405px;}
.tg-production-page .mh155{min-height:155px;}
.tg-production-page .h200{height:200px;}
.tg-production-page .h155{height:155px;}
.tg-production-page .w100p{width:100%;}
.tg-production-page .w78{width:78px;}
.tg-production-page .w50p{width:50%;}



.tg-production-page .dBlock{display: inline-block;}
.tg-production-page .disBlock{display: block;}

.tg-production-page .z1500{z-index: 1500;}

.tg-production-page .fLeft{float : left;}
.tg-production-page .fRight{float : right;}
.tg-production-page .bbnone{border-bottom: none;}


.tg-production-page .cl{clear:left;}


.tg-production-page .style0001{float:none;margin-left: auto; margin-right: auto}
.tg-production-page .style0002{margin-bottom: 20px; text-align: center; font-size: 16px; line-height: 1.8em; padding-top: 20px;padding-bottom: 20px;}
.tg-production-page .style0003{background-size: 17px; padding: 0 10px 0 15px; display: inline-block; height: 17px; cursor: pointer; margin-left: 20px;}
.tg-production-page .style0004{background-size: 17px; padding: 0 10px 0 15px; display: inline-block; height: 17px; cursor: pointer; margin-left: 20px;}
.tg-production-page .style0005{margin-bottom: 20px; text-align: center; font-size: 16px; line-height: 1.8em; padding-top: 20px;padding-bottom: 20px;}
.tg-production-page .style0006{width: 100%; text-align: center;font-size: 16px;line-height: 1.8em}
.tg-production-page .style0007{color: #FFF; font-size: 17px; display: table; margin: 25px auto;}
.tg-production-page .style0008{margin-top: 12px;margin-left: 30px;line-height: 35px;list-style: circle;font-size:16px;}
.tg-production-page .style0009{text-align: left; line-height: 20px;}
.tg-production-page .style0010{float:right;margin:0 50px 20px 20px;}
.tg-production-page .style0011{background:#f2f2f2; margin-bottom: 25px;}
.tg-production-page .style0012{padding:10px; vertical-align: top; float:left; margin: 0 50px 20px 50px;}
.tg-production-page .style0013{margin: 0 50px 20px 50px;}
.tg-production-page .style0014{float:left;margin:10px 20px 20px 50px;}
.tg-production-page .style0015{margin: 10px 20px 20px 50px;}
.tg-production-page .style0016{font-size: 1.2em; width: 91%; margin-left: auto; margin-right: auto;}

@media screen and (max-width:860px){
	.tg-production-page .panier-btn-img{
	width:100% !important;
	}
	.tg-production-page .hide-text{
		display: none !important;
	}
}
@media screen and (max-width:321px){

}
@media screen and (max-width:245px){


.tg-production-page .btn-rose{
    display: flex;
    align-items: center;   /* Centre verticalement */
  justify-content: center;
    padding: 0px 10px;
    font-size: 0.7em;
    line-height: 1em;
    background: #005539;
    color: #FFF;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    text-align: center;
    height: 50px;
}
.tg-production-page .info-livraison-container p{
    font-size: 0.7em;
    color: #FFF;
    text-transform: uppercase;
    line-height: 1.4em;
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width:568px){
.tg-production-page .autres-modeles-titre{
	font-size:1em !important;
	}
.tg-production-page .topslide{
    display:block;
    width:100%;
    max-width:100%;
	margin:0px !important;
}
.tg-production-page .topslide div{
    display:block;
    text-align: center;
    white-space:normal;
}
.tg-production-page .topslide p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:block;
    vertical-align:middle;
    width:100%;
    table-layout:fixed;
	text-transform: uppercase; font-size: 1.2rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.tg-production-page .topslide span.spacer,.tg-production-page .topslide span.space{
    display:none;
}
.tg-production-page .topslide p{
    padding:0 20px;
}
.tg-production-page .topslide span.spacer:after{
    display:inline-block;
    width:0%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:right;
}
.tg-production-page .topslide span.space:after{
    display:inline-block;
    width:0%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:35px;
	float:left;
}
.tg-production-page h2{font-size:25px}
.tg-production-page .tophome{
    display:block;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tg-production-page .tophome div{
    display:block;
    text-align: center; text-transform: uppercase; font-size: 24px; line-height: 1.4em;font-family: var(--font-family-regular);
    font-weight: 700;
    white-space:normal;
	color:#000;
}
.tg-production-page .tophome p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:block;
    vertical-align:middle;
    width:100%;


}
.tg-production-page .tophome span.spacer{
    display:none;
}
.tg-production-page .tophome p{
    padding:0 10px;
}
.tg-production-page .tophome span.spacer:after{
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
	border-top:1px dotted #000000;
    color:transparent;
    height:1px;
    background:#fff;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.tg-production-page .home{
    display:block;
    width:100%;
    max-width:100%;
	margin:20px 0px;
}
.tg-production-page .home div{
    display:block;
    line-height:1.4em;
    font-size:16px;

}
.tg-production-page .home p{
    font-size:inherit; /* Change font-size in header */
    overflow:hidden;
    display:block;
    vertical-align:middle;
    text-align:center;
	white-space:normal;
	width:100%;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.tg-production-page .home span.spacer{
    display:none;
}
.tg-production-page .home p{
    padding:0 0px;
}
.tg-production-page .home span.spacer:after{
    display:inline-block;
    width:100%;
    content:".";
    font-size:0;
    color:transparent;
    height:1px;
    background:#d6d6d6;
    vertical-align:middle;
    position:relative;
    top:-1px;
}
.tg-production-page .header-home{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 455px; padding: 12px 12px; background: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") no-repeat top center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-production-page .header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:200px}
.tg-production-page .header-home .contenu h1{text-transform: none; font-size:30px; line-height:40px; width:100%; font-weight:bold; margin-bottom: 10px; text-shadow: none; }
.tg-production-page .header-home .contenu h1::before,.tg-production-page .header-home .contenu h1::after{
    display: inline-block;
    content: "";
    height:1px;
	  background:#ffffff;
    width: 1.2rem;
    margin: 0 .2rem;
    transform: translateY(-.3rem);
}
.tg-production-page .header-home .contenu span{
	font-size:.8rem;
	margin-bottom:20px;
}
.tg-production-page .header-home .contenu  .prix{
	display:block;
	font-size:2.5rem;
	margin-bottom:30px;
}
.tg-production-page .btn-rose{
	padding:0px 10px;
  width:100%;
  height: 50px;
}
.tg-production-page #btn_suivant{
		padding:10px 30px !important;
}
.tg-production-page .btn-rose-home{
	padding:10px 50px !important;
}
	.tg-production-page .centered-area-displayed{
	width:30% !important;
    }
	.tg-production-page .panier-btn-img{
	width:100% !important;
	}
	.tg-production-page .hide-text{
		display: none;
	}


	.tg-production-page .badge-pill{
		left:20px !important;
	}
	.tg-production-page .header-panier{
		margin-top:70px;
		margin-bottom:60px;
		padding-bottom:10px;
	}

	.tg-production-page .header-panier li{
	width: 100%;
    text-align: center;
    border-top: 1px solid #c7c7c7;
	border: 1px dashed #c7c7c7;
    padding:5px;
    margin-top: 5px;
	}
}






@media only screen and (min-width:1023px){
	.tg-production-page .panier-btn{left:86.5%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(53% - 636px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 50%;
		position: absolute;
		display: none;
	}
}
@media only screen and (min-width:1280px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 732px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}


@media only screen and (min-width:1472px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 733px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}

@media only screen and (min-width:1440px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 715px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}

@media only screen and (min-width:1600px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 738px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}

@media only screen and (min-width:1680px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 740px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 32%;
		position: absolute;
		display: none;
	}
}

@media only screen and (min-width:1920px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 745px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}
@media only screen and (min-width:2047px){
	.tg-production-page .panier-btn{left:88.6%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 745px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}
}
@media only screen and (min-width:2199px){
	.tg-production-page .panier-btn{left:89%;}
	.tg-production-page .panier-content-hover{
		top: 70px;
		right: calc(52% - 612px) !important;
		z-index: 99;
		background: white;
		border: .5px solid #e6e6e6;
		width: 40%;
		position: absolute;
		display: none;
	}


}
@media only screen and (max-width:500px){
.tg-production-page .w78{
    width: 68px;
}
.tg-production-page #stripe{
    width: 55px !important;
    margin-top: -6px !important;
}
.tg-production-page .footer-help a{
    font-size: 15px !important;
}
}

.tg-production-page .btn-grey:hover{background:#666666}
.tg-production-page .btn-grey{
	background:#8f8f8f;
}

.tg-production-page .footer-help a:hover{
color:#a5a4a4 !important ;
}

.tg-production-page .special-link a:hover,.tg-production-page .special-link:hover{
	background: #06695F !important;;
}
.tg-production-page .special-link{
	color:white !important;
	background:#005539 !important;
}
/************** Slider ***********************/
.tg-production-page .rslides{
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  }
.tg-production-page .rslides li{
	margin:0px !important;
}

.tg-production-page .rslides li{
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.tg-production-page .rslides li:first-child{
  position: relative;
  display: block;
  float: left;
  }

.tg-production-page .rslides img{
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }
.tg-production-page .rslides .popup-marque{
	width:35% !important;
    position: absolute !important;
    top: calc(100% - 80px) !important;
  }
  .tg-production-page .rslides{
  margin: 0 auto;
  }

.tg-production-page .rslides_container{
  margin-bottom: 20px;
  position: relative;
  float: left;
  width: 100%;
  }
.tg-production-page .rslides_nav{
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 50%;
  left: 0;
  z-index: 99;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("/assets/design-system/production/img/themes.gif") no-repeat left top;
  margin-top: -45px;
  }


.tg-production-page .rslides_nav:active{
  opacity: 1.0;
  }

.tg-production-page .rslides_nav.next{
  left: auto;
  background-position: right top;
  right: 0;
  }


.tg-production-page .rslides_nav:focus{
  outline: none;
  }

.tg-production-page .rslides_tabs{
  margin-top: 10px;
  text-align: center;
  }

.tg-production-page .rslides_tabs li{
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
  }

.tg-production-page .rslides_tabs a{
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #ccc;
  background: rgba(0,0,0, .2);
  display: inline-block;
  _display: block;
  *display: block;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  -moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  width: 9px;
  height: 9px;
  }

.tg-production-page .rslides_tabs .rslides_here a{
  background: #222;
  background: rgba(0,0,0, .8);
  }
/*******************************************/
.tg-production-page .reference{ padding-right:0px;font-size: 14px; line-height: 1.4em; margin-bottom: 10px; padding-top: 10px; text-align: right; color: #7f7f7f; }
.tg-production-page .languagepicker{
  background-color: #FFF;
  display: inline-block;
  padding: 0;
  height: 40px;
  overflow: hidden;
  transition: all .3s ease;
  margin: 0 50px 10px 0;
  vertical-align: top;
  /*float: left;*/
}



.tg-production-page .languagepicker a{
  color: #000;
  text-decoration: none;
}

.tg-production-page .languagepicker li{
  display: block;
  padding: 0px 20px;
  line-height: 40px;
  border-top: 1px solid #fff;
}

.tg-production-page .languagepicker li:hover{
  background-color: #fff;
}

.tg-production-page .languagepicker a:first-child li{
  border: none;
  background: #FFF !important;
}

.tg-production-page .languagepicker li img{
  margin-right: 5px;
}

.tg-production-page .roundborders{
  border-radius: 5px;
}

.tg-production-page .custom-dropdown--large{
    font-size: 1.5em;
}

.tg-production-page .custom-dropdown--small{
    font-size: .7em;
}

.tg-production-page .custom-dropdown__select{
    font-size: inherit; /* inherit size from .custom-dropdown */
    padding: .5em; /* add some space*/
    margin: 0; /* remove default margins */
}

.tg-production-page .custom-dropdown__select--white{
       background-color: #005539;
    color: #fff;
}

@supports (pointer-events: none) and
      ((-webkit-appearance: none) or
      (-moz-appearance: none) or
      (appearance: none)){

    .tg-production-page .custom-dropdown{
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin-left:20px;
    }

    .tg-production-page .custom-dropdown__select{
        padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */
        border: 0;
        border-radius: 3px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .tg-production-page .custom-dropdown::before,.tg-production-page .custom-dropdown::after{
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .tg-production-page .custom-dropdown::after{ /*  Custom dropdown arrow */
        content: "\25BC";
        height: 1em;
        font-size: .625em;
        line-height: 1;
        right: 1.2em;
        top: 50%; margin-top: -.5em;
    }

    .tg-production-page .custom-dropdown::before{ /*  Custom dropdown arrow cover */
        width: 2em;
        right: 0; top: 0; bottom: 0;
        border-radius: 0 3px 3px 0;
    }

    .tg-production-page .custom-dropdown__select[disabled]{
        color: rgba(0,0,0,.3);
    }

    .tg-production-page .custom-dropdown.custom-dropdown--disabled::after{
        color: rgba(0,0,0,.1);
    }

    /* White dropdown style */
    .tg-production-page .custom-dropdown--white::before{
        top: .5em; bottom: .5em;
        background-color: #005539;
        border-left: 1px solid rgba(255,255,255,0.7);
    }

    .tg-production-page .custom-dropdown--white::after{
        color: rgba(255,255,255,0.7);
    }

    /* FF only temp fix */
    @-moz-document url-prefix(){
        .tg-production-page .custom-dropdown__select{ padding-right: .9em }
        .tg-production-page .custom-dropdown--large .custom-dropdown__select{ padding-right: 1.3em }
        .tg-production-page .custom-dropdown--small .custom-dropdown__select{ padding-right: .5em }
    }
}
.tg-production-page #footer_language_list{
    margin-top:12px;
    text-align: left;
    float:left;
}
.tg-production-page #menu_language_list{

    text-align: left;
    float:left;
}
.tg-production-page #footer_language_list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.tg-production-page #footer_language_list ul li{
    display: inline-block;
    margin: 0 7px;
    padding: 0;
  color: #999;
  font-size: 15px;
}
.tg-production-page #footer_language_list ul li:first-child{
  margin-left: 0px;
  margin-right:7px;
  }
  .tg-production-page #footer_language_list ul li img{
  margin-top:-3px;
  }
.tg-production-page #footer_language_list ul li a:hover{
 text-decoration: underline;
  color: #222;
}
.tg-production-page #country-indicator{
    color: #2f3c55;
    margin-top:10px;
}
.tg-production-page .flag:hover{
    /*background-color: #fff;*/
    color:#999;
}
.tg-production-page #country-indicator,.tg-production-page #buttonLanguage{
    cursor: pointer;
}
.tg-production-page #country-indicator >span:after{
 content: '';
    display: inline-block;
    height: 13px;
    width: 14px;
    background: url("/assets/design-system/production/img/icon-fleche-menu-deroulante.png") no-repeat;
    position: relative;
margin-left:auto;
margin-right:10px;
}
.tg-production-page .open{
  color:#999;
}
.tg-production-page .open >span:after{
  background: url("/assets/design-system/production/img/icon_haut.png") no-repeat !important;
}
.tg-production-page .flag.country[data-locale$=FR]:before{
 background: url("/assets/design-system/production/img/FR.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=DE]:before{
 background: url("/assets/design-system/production/img/DE.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=NL]:before{
 background: url("/assets/design-system/production/img/NL.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=ES]:before{
 background: url("/assets/design-system/production/img/ES.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=IT]:before{
 background: url("/assets/design-system/production/img/IT.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=GB]:before{
 background: url("/assets/design-system/production/img/GB.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=BE]:before{
 background: url("/assets/design-system/production/img/BE.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=CH]:before{
 background: url("/assets/design-system/production/img/CH.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=US]:before{
 background: url("/assets/design-system/production/img/US.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=AT]:before{
 background: url("/assets/design-system/production/img/AT.svg");
 background-size: contain;
}
.tg-production-page .flag.country[data-locale$=LU]:before{
 background: url("/assets/design-system/production/img/LU.svg");
 background-size: contain;
}
.tg-production-page .flag:before{
    display: inline-block;
    /*vertical-align: middle;*/
    margin-top: 0px;
    content: '';
    width: 19px;
    height: 13px;
    margin-right: .6em;
}
.tg-production-page .LanguageSwitcher{
    border: 1px solid #005539;

    white-space: nowrap;
   left: 50%;
   transform: translate(-50%, 0);
  bottom: 30%;
}
 .tg-production-page .LanguageSwitcher .Label,.tg-production-page .LanguageSwitcher .Item{
    line-height: 3;
}
.tg-production-page .LanguageSwitcher .Label{
    font-weight: bold;
    display: block;
    width: 100%;
    line-height: 2;
    white-space: nowrap;
    margin: 0;
}
.tg-production-page .LanguageSwitcher .Item{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block !important;
    width: 100%;
    line-height: 2;
    white-space: nowrap;
    margin: 0;
}

.tg-production-page .LanguageSwitcher{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3em;
    background: white;
    text-align: left;
    font-size: 85%;
    color: initial;
    z-index: 999;
}
.tg-production-page .LanguageSwitcher .Item:hover{
text-decoration: underline;
  }
  .tg-production-page .info-cookie{

    background-color: #21304e;
    position: fixed;
    bottom:0px !important;
    left: 0px;
    width: 100%;
    z-index: 1500;
}
.tg-production-page .reorder{
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
    float:left;
}
.tg-production-page .reorder a{
  font-size: 14px;
  text-decoration: underline;
}
.tg-production-page .zindex{z-index: 9999;}
@media (min-width: 992px)
.col-md-4{
    width: 33.33333333%;
}
@media (min-width: 992px)
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9{
    float: left;
}
@media (min-width: 768px)
.col-sm-4{
    width: 33.33333333%;
}
.tg-production-page .title-filter{visibility: hidden;display: none}
.tg-production-page .margin_1{
  margin-top:20px;
}
 .tg-production-page .multi{display: flex;flex-direction: row;align-items: baseline;justify-content: left}
 .tg-production-page .multi-line{display: block;margin: 0 5px;color: #5e5e5e;}
 .tg-production-page .div3{    background: #005539;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 20%;
    text-align: center;margin-bottom: 100px}
.tg-production-page #footer-main ul li{
    text-decoration: none;
    margin-top: 20px;
    text-align: left !important;
    font-size: 14px;
}
.tg-production-page #footer-main{padding:50px 0}
.tg-production-page .mt{margin-top: 50px;}
.tg-production-page .footer-col ul li a{
color:#2f3c55;
    }
.tg-production-page .footer-col ul li a:hover{
text-decoration: underline;
    }
.tg-production-page #footer-main h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom:40px;
    color:#2f3c55;
}
.tg-production-page #footer-main .icons img{
    max-width: 50px;
    height: auto;
}
.tg-production-page .style0007{
    color: #FFF;
    font-size: 17px;
    display: table;
    margin: 25px 0px; */
}
.tg-production-page #country-indicator{
    color: #2f3c55;
    font-size: 16px;
    margin-top: 0px;
}
.tg-production-page .LanguageSwitcher{
    border: 1px solid #005539;
    white-space: nowrap;
    right: 0%;
    left: inherit;
    transform: translate(-0%, 0) !important;
    width: 1000px;
    bottom: 30%;
}
.tg-production-page .cont{margin:0px auto 60px auto}
.tg-production-page .bordere{border-right:1px solid #C6C6C6;}
.tg-production-page .height-dv{height: 93px}
.tg-production-page .picto{box-sizing: border-box; /* important pour garder la taille stable */
  flex-shrink: 0;padding:10px;display:flex;width:100px;height:100px;border: 1px dashed #C6C6C6;border-radius: 100%; justify-content: center;   /* centre horizontalement */
  align-items: center; }
.tg-production-page .picto img{width:100%;height:auto;}
.tg-production-page .pi-text{padding:0px;display: block;width:100%;line-height:24px;font-size:16px; margin-left:20px;}
.tg-production-page .mrg-1{margin-top: -100px}
.tg-production-page .mrg-2{margin-top: -90px;}
.tg-production-page .dv{padding-left:10px}
@media screen and (max-width:768px){
.tg-production-page .rules{flex-direction: column;}
.tg-production-page .input-email{ background-image: url("/assets/design-system/production/img/icon-email.svg"); padding-left: 15%; }
.tg-production-page .input-password{ background-image: url("/assets/design-system/production/img/icon-key.svg"); padding-left: 15%; }
.tg-production-page .isfocused{left:12%}
.tg-production-page .more-colors{
  width:20px;
  height:22px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#000;
  margin-left:0px;
}
.tg-production-page .colors-list{ display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  gap: 5px;
  width: 100%;
  box-sizing: border-box;}
.tg-production-page .ban-home{background: url("/assets/design-system/production/img/banner-mobile.webp");background-size: cover;background-position: bottom;}
.tg-production-page .filter-bar h1{
  font-size: 18px !important;
}
.tg-production-page .bar-left{width:100%}
.tg-production-page .steps{
  display: flex;
  align-items: center;
  flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  margin-bottom: 20px;
  width:100%;
  padding:10px 0px;
}
.tg-production-page .steps .text{ font-family:var(--font-family-regular) !important;
  font-size: 16px;}
.tg-production-page .stepe{
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  white-space: normal;
  padding-left: 22px;
}

.tg-production-page .circle{
  width: 16px;
  height:16px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:18px;
  margin-right: 6px;
      position: absolute;
    left: 0;
    top: 0;
}
.tg-production-page .circle::after{
    content: ".";
    position: absolute;
    right: -1px;
}

.tg-production-page .line{
  width: 1px;
    height: 10px;
    border-bottom: none;
    border-left: 1px dotted #000;
    margin: 0px 0 0px 10px;
    flex: none;
    display: none;
}
.tg-production-page .price-div{display: flex;align-items:flex-start;flex-direction: column;}
.tg-production-page .price-div p{margin-bottom: 15px}
.tg-production-page .chemise-catalogue{ height: 100%; margin-bottom:0px; border: 1px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; width: 100%; max-width:160px; float: none;}
.tg-production-page .title-filter{width:85% !important}
.tg-production-page .cont{
margin:0px auto 10px auto;
}
.tg-production-page .div-f{display: flex;flex-direction: row;align-items: center;justify-content: space-between;margin:0px 0;width:100%;padding:0px 10px}
.tg-production-page .mrg-33{margin-top:10px}
.tg-production-page #btn_suivant{width:100%}
.tg-production-page #customButton{height:100% !important}
.tg-production-page .height-dv{width:100%}
  .tg-production-page .divider{
 display: none;    /* couleur de la ligne verticale */
}
.tg-production-page .con{
  display: flex;
  justify-content: center;   /* centre horizontalement les éléments */
  align-items: flex-start;       /* centre verticalement les éléments */
  gap: 0px;
  flex-direction: column;
  padding:0px 10px;              /* espace entre les items */
}
.tg-production-page .catalogue-details{padding-left:0px !important}
.tg-production-page .div-f{width:100%;margin:30px 0 !important}
.tg-production-page .span-fab{margin-left:20px;font-weight: normal !important;color:#000 !important;flex: 1;
word-break: break-word;line-height: 25px;}
 .tg-production-page .h2-tissu{text-align: left}
 .tg-production-page .text_option_li{border-bottom: 1px solid #F5EFEF;padding-bottom: 10px;display: flex; align-items: center;justify-content: left;}
    .tg-production-page .div-qte{width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;        align-items: flex-start;}
    .tg-production-page .div-qte div{margin-bottom: 20px;}
.tg-production-page .img-conf{width:100%;height:auto;margin:0 auto}
.tg-production-page body,html.tg-production-page{max-width: 100%;}
.tg-production-page .h1-catalogue{
        color: #000;
        text-align: left;
        line-height:34px;
        font-family: var(--font-family-oswald);
        font-weight: 800;
        text-shadow: none;
        font-size: 33px;
        max-width: 100%;
        text-transform: uppercase;
    }
 .tg-production-page .multi{display: flex;flex-direction: row;align-items:baseline;justify-content: left;}
 .tg-production-page .multi-line{display: block;}
.tg-production-page .span-fabric{   font-size: 16px;
    color: #222 !important;
    display: inline-block;
    font-weight: 800 !important;
    font-family: var(--font-family-h) !important;margin:10px 0;width:120px;flex-shrink: 0; }
.tg-production-page .p_y{background:#fdffce;text-align:center;padding:10px;line-height: 20px}

.tg-production-page .second{font-size: 100px !important;font-family: var(--font-family-h);font-weight: 800}
.tg-production-page .link-b a::after{width:0 !important}
.tg-production-page .mt{margin-top: 20px;}
.tg-production-page .row{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.tg-production-page .container,.tg-production-page .container-fluid{
    padding-left:5px !important;
    padding-right:5px !important;width:100%;}
    .tg-production-page #shirt{padding-left:5px !important; padding-right:5px !important;margin-top:30px}
    .tg-production-page .pd{margin-left:-10px !important;margin-right:-10px !important }
    .tg-production-page .pde{margin-left:-10px !important;margin-right:-10px !important }
    .tg-production-page .pdd{padding-left:15px !important;padding-right: 15px !important}
    .tg-production-page .width-img{width:50px;height:auto;}
.tg-production-page .info-livraison-container{height:120px !important}
.tg-production-page .description-container ul li.text{
    margin-top: 25px !important;
    text-align: justify !important;
    line-height: 25px;
}
 .tg-production-page .div3{    background: #005539;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 5%;
    text-align: center;margin-bottom:50px}
.tg-production-page .div3 h1{
        text-transform: none;
        font-size: 30px;
        line-height: 40px;
        width: 100%;
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: none;
    }
    .tg-production-page .pbloc{font-size: 16px !important;text-align: justify !important;}
.tg-production-page #navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 10px !important;
    margin-right: 10px !important;}

.tg-production-page .h2-home{font-size:20px !important}
.tg-production-page body{padding-top: 70px;width:100%;overflow-y: auto;    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100%;
    margin: 0;overflow-x:hidden}
    .tg-production-page #header.fixed-theme{
    background-color: #fff;
    box-shadow: #ccc 0 2px 15px;
     position: fixed !important;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1030;;
}
.tg-production-page .LanguageSwitcher{
    border: 1px solid #005539;
    white-space: nowrap;
    right: 0%;
    left: inherit;
    transform: translate(-0%, 0) !important;
    width: 100%;
    bottom: 30%;
}

.tg-production-page #footer-main{padding: 20px 50px}
.tg-production-page .footer-col ul li a{
line-height: 20px;
    }
.tg-production-page .footer-col{margin-bottom: 5px;border-bottom:1px solid #eee}
.tg-production-page #stripe{
    width: 65px !important;
    margin-top:-8px !important;
}
.tg-production-page #footer-main ul li{

    margin-top:15px;

}
.tg-production-page #footer-main h5{
    margin:15px 0;
    text-transform: uppercase;
    font-size: 15px;
        font-weight: bold;
            font-family: var(--font-family-h);
            position: relative;
}
/*.ferme:after {
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    background: url("/assets/design-system/production/img/fleche-deroulante-footer.png") no-repeat;
    position: absolute;
    top:0px;
    right:0px !important;
}*/
.tg-production-page .disblock{margin:20px 0}
.tg-production-page .ouvert:after{
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    background: url("/assets/design-system/production/img/fleche-deroulante-footer-ouverte.png") no-repeat;
    position: absolute;
    top:0px;
    right: 0px;
}
.tg-production-page .disnone{
    display: none;
}
.tg-production-page .disblock{
    display: block;
}
.tg-production-page .height-dv{
    height: 118px;
    margin-bottom: 20px;

}
.tg-production-page .bordere{border: none}
.tg-production-page .pi-text{
    margin-left:20px !important;font-size: 16px !important
}
.tg-production-page .dv{padding-left: 0px !important}
.tg-production-page strong{font-weight: 700;font-size:18px !important}
}

@media screen and (min-width: 769px){
.tg-production-page .product-right-inner{padding-left:100px;}
.tg-production-page .btn-vert{    background: #005539 !important;
    padding: 15px;
    display: flex;
    min-width: 300px;
    align-items: center;
    justify-content: center;
    text-align: center;margin-top:30px !important}
.tg-production-page .col-lg-4{
    width: 33.33333333%;
}.tg-production-page .col-lg-5{
    width: 41.66666667%;
}.tg-production-page .col-lg-3{
    width: 25%;
}.tg-production-page .col-lg-1,.tg-production-page .col-lg-10,.tg-production-page .col-lg-11,.tg-production-page .col-lg-12,.tg-production-page .col-lg-2,.tg-production-page .col-lg-3,.tg-production-page .col-lg-4,.tg-production-page .col-lg-5,.tg-production-page .col-lg-6,.tg-production-page .col-lg-7,.tg-production-page .col-lg-8,.tg-production-page .col-lg-9{
    float: left;
}}
.tg-production-page strong{font-weight: bold !important;font-size:20px}
@media screen and (max-width:500px){

.tg-production-page #footer-main{
    padding: 0px 0px !important;
}
.tg-production-page #stripe{
    width: 55px !important;
    height: auto;
    margin-top:-8px !important;
}
}
@media screen and (min-width: 769px){
.tg-production-page .top-info{
        margin-top:90px;
        transition:0.3s ease;
    }
    .tg-production-page .myp{
        font-weight: 700;
        color: #666;
        font-size: 15px;
        line-height: 20px;
        margin-left: 10px;
        margin-bottom: 50px;
        text-align: center;
        background: #f1f1f1;
        padding: 20px 40px;
        width: 100%;
        font-family: var(--font-family-regular);
        font-weight: 400;
    }

.tg-production-page .header__icon--close{display: none}
.tg-production-page .col-lg-4{
    width: 33.33333333%;
}.tg-production-page .col-lg-5{
    width: 41.66666667%;

}.tg-production-page .col-lg-3{
    width: 25%;
}.tg-production-page .col-lg-1,.tg-production-page .col-lg-10,.tg-production-page .col-lg-11,.tg-production-page .col-lg-12,.tg-production-page .col-lg-2,.tg-production-page .col-lg-3,.tg-production-page .col-lg-4,.tg-production-page .col-lg-5,.tg-production-page .col-lg-6,.tg-production-page .col-lg-7,.tg-production-page .col-lg-8,.tg-production-page .col-lg-9{
    float: left;
}
.tg-production-page .header-home{height:100vh !important;padding:0px !important;}
 .tg-production-page .burger-menu{display:none !important}
 .tg-production-page #openMenu{width:130px !important}
 .tg-production-page .hamburger{width:130px}
 .tg-production-page .header-home{margin-top:0px}
 .tg-production-page .contenu{flex-direction:row}
 .tg-production-page .div1{width:50%;display:flex;flex-direction: column;align-items:center;justify-content: center;padding:0px 50px;margin:0 auto}
 .tg-production-page .div2{width:54%;background: url("/assets/design-system/production/img/b-header.jpg");background-position: center;background-size: cover;}
}
.tg-production-page .temoignages-titre h2{font-family:var(--font-family-h);font-weight: 800;}
.tg-production-page .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-production-page strong{font-weight: 900 !important;font-size:20px}
.tg-production-page .menu2{display:flex;align-items:center;margin-left:15px}
.tg-production-page .mrg-top{margin-top:20px}
.tg-production-page .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items:center;justify-content: center;}
.tg-production-page .menu2 a{color:#fff;display:inline-flex; align-items: center;font-weight:900;font-family:var(--font-family-oswald) !important;position:relative;font-size: 15px;text-transform: uppercase;}
.tg-production-page .menu2 a:hover{color:#000}
.tg-production-page .divheader a{color:#fff;font-family:var(--font-family-regular);font-weight: 500;font-size: 0.8rem;}.tg-production-page p{font-family:var(--font-family-regular);font-weight:400}
.tg-production-page .menu2 li img{height:9px;margin-left:8px;width:auto}
.tg-production-page .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left:7px;
top: 20px;
z-index: 9;
display: none;
}
@media screen and (max-width: 768px){
 .tg-production-page .is-filter-fixed .top-info{
  margin-top: 30px;
}
.tg-production-page .is-filter-fixed{padding-top:70px }
.tg-production-page .btn-vert{    background: #005539 !important;
    padding: 15px;
    display: flex;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;margin-top:20px !important}
.tg-production-page .m-compte{display:none;}
.tg-production-page .filtre-menu-deroulant li{padding-left:10px;font-family: var(--font-family-regular);}
.tg-production-page .filtere h5,.tg-production-page .filtere.h5{
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.4px;
    line-height: 1.3;
    display: flex;
    padding-left:10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    text-transform: uppercase;
}
.tg-production-page .mrg-10{margin-left:-10px !important;margin-right: -10px !important}
.tg-production-page .pictos{padding:20px 0 !important}
.tg-production-page #footer-main{
    padding:0px 0px !important;
}
.tg-production-page .footer-p{padding:10px 10px !important; color:#fff}
.tg-production-page .demo > li img{width: 80px !important;height: auto;}
.tg-production-page .carousel-inner .item{
 max-width: 100% !important;
    }
.tg-production-page .containerguide{
    max-width: 1120px;
    margin: 0px auto;
    width: 100%;
    padding: 0 15px;
}
.tg-production-page .choix-methode-mesure{margin-top: 70px;
    color: #000;
    text-align: left;
    text-shadow: none;
    font-size: 1em;
    line-height: 1.4em;
    max-width: 100%;
    text-transform: uppercase;}
.tg-production-page .menu-lateral-container{transform: translate(0);left:-100% ;-webkit-transition: all 0.5s;
    transition: all 0.5s;-webkit-overflow-scrolling: touch;}
.tg-production-page .header-home .contenu h1::before,.tg-production-page .header-home .contenu h1::after{display:none !important}
.tg-production-page .header-home{height:100% !important;padding:0px !important}
.tg-production-page .burger-menu{display:block}
.tg-production-page .header-home{margin-top:0px}
.tg-production-page .menu2{display:none}
.tg-production-page .divheader,.tg-production-page #connect{display:none}
.tg-production-page #openMenu{width:90px !important}
.tg-production-page .hamburger{width:90px !important}
.tg-production-page .header-home{margin-top:0px}
.tg-production-page .contenu{flex-direction:column;justify-content: center;height:calc(100vh - 100px) !important}
.tg-production-page .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-production-page .div2{width:100%;background: url("/assets/design-system/production/img/b-header.jpg");background-position: center;background-size: cover;height:330px}
.tg-production-page .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left:0px;
top: 100px;
z-index: 99;
}
}
.tg-production-page .divheader{align-items:center}
.tg-production-page .menu2 .link-1::after,.tg-production-page .menu2 .link-2::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-production-page .link-3{position: relative;margin-right:25px}
.tg-production-page .link-3::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:2px;
background-color: #fff;
}

.tg-production-page #connect:hover{color:#000}
.tg-production-page .link-3:hover::after{width:100%}
.tg-production-page .menu2 .link-1::after{width:100%}
.tg-production-page .menu2 .link-2:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-production-page .link-b{margin-top:0px;}
.tg-production-page .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem;color:#fff}
.tg-production-page .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width:0;
height: 3px;
background-color: #fff;}
.tg-production-page .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-production-page .bb a::after{content: '';
position: absolute;
left: 0;
width: 100%;
bottom: 10px !important;
height: 3px;
background-color: #fff;}
.tg-production-page .bb a:hover::after{
width:0px; /* Étend la bordure sur toute la largeur au survol */
}
.tg-production-page .link-b a:hover{color:#fff}
.tg-production-page .categorie-link{
background-color: transparent;
color: #000;
position: relative;
padding: 1rem 0;
margin: 7px 10px 7px 5px;
display: inline-block;
font-family:var(--font-family-regular);
font-size: 16px;
font-weight: 600;

}
.tg-production-page .lk{padding:5px 5px !important;font-size:0.8em !important;color:#555;font-weight: normal !important}
.tg-production-page .kk{ border-bottom: 2px solid black;
  padding-bottom: 2px;color:#000 }
.tg-production-page .line-with-dots{
display: flex;
align-items: center;
color: #2f3c55; /* Couleur du texte */
font-weight: bold;
font-size: 18px;
font-family:var(--font-family-regular);
font-weight:800;
margin:30px auto;
}
.tg-production-page .line-with-dots::after{
content: '---------------------------------------------------------------------------------------------------------------------------------------';
flex-grow: 1;
margin-left: 10px;
}
.tg-production-page .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-production-page .scrollenone{overflow: hidden !important;width:100%;height:100%;position: fixed}
.tg-production-page .header__icon--close{
    width: 1rem;
    position: fixed;
    top: 1.2rem;
    right:35px;
    opacity: 1;
    z-index: 4;
    color: #000;
    background-color: #fff;
}
.tg-production-page #background3{z-index:999 !important}
.tg-production-page .mrg-50{margin-top: 50px}
.tg-production-page .h1-home{    color: #fff;
    text-align: center;
    line-height: 45px;
    font-family: var(--font-family-oswald);
    font-weight: 800;
    text-shadow: none;
    }
    .tg-production-page .p-home{color:#fff;font-size:16px;line-height:24px;margin:10px 0 0px 0;text-align:center;}
    .tg-production-page .p-home-1{color:#fff;font-size:19px;line-height:25px;margin:10px auto;text-align:center;max-width: 450px}
    .tg-production-page .link-b{margin-top: 10px;
    background: transparent;
    padding: 20px 0px;}
    .tg-production-page .h2-home{color:#000;
    text-align: left;
    line-height:30px;
    font-family: var(--font-family-oswald);
    font-weight: bold;
    text-shadow: none;
    font-size:24px;display: flex;margin:25px 0px;align-items: center;gap:0.6rem}

    .tg-production-page .text-cent{text-align: center !important}

    @media (min-width: 1200px){
    .tg-production-page .container{
        width: 1360px !important;
         padding:0px 0px !important;
    }
}

@media (min-width: 992px){
    .tg-production-page .container{
        width: 1000px;
        padding:0px 0px !important;
    }
}
.tg-production-page .btn-ok{background: transparent;
    padding: 10px 15px;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;}
.tg-production-page .btn-ok:hover{color:#21304e;background: #fff}
.tg-production-page .quantity-container{
  display: inline-flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  height:45px;
}

.tg-production-page .quantity-container button{
  background-color: transparent;
  border: none;
  padding: 12px 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.tg-production-page .quantity-container button:hover{
  background-color: #eee;
}

.tg-production-page .quantity-input{
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: bold;
  outline: none;
}
.tg-production-page .quantity-input:focus{
  outline: none;
  border: none;
  box-shadow: none;  }

.tg-production-page .retour-catalogue{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #333; /* ou autre selon ton design */
  font-weight: 900 !important;font-family:var(--font-family-regular) !important;position: relative;font-size: 0.8rem !important;margin-top:0px !important
}

.tg-production-page .icon-fleche{
  margin-right: 5px;
  width:auto;
  height: 11px;
}
.tg-production-page .icon-fleche-top{
  margin-left: 5px;
  width: 15px;
  height: 15px;
  color:#fff;
}
.tg-production-page .custom-list{position: relative;margin-top: 5px;}
.tg-production-page .custom-list span{  margin-left:20px;color:#333 !important;font-size: 16px;}
.tg-production-page .custom-list::before{
  content: "•";             /* symbole coche */
  position: absolute;
  left: 0;
  top: 0;
  color: #000;           /* bleu (comme sur ton image) */
  font-weight: bold;
  font-size: 16px;
}
.tg-production-page .price-home{color:#fff76f;margin-top:10px}
.tg-production-page .one{font-size:44px !important;font-family: var(--font-family-h);font-weight: 400;text-align: left;margin-bottom: 0px !important}
.tg-production-page .product-image-hover{position: absolute;
    top: 0;
    left: 0;
    opacity: 0;width:100%}
    .tg-production-page .chemise-catalogue-photo a:hover .product-image-hover{
opacity: 1;
}
  .tg-production-page .chemise-catalogue-photo a:hover .new,.tg-production-page .chemise-catalogue-photo a:hover .neww{
display: block;
  }
.tg-production-page .chemise-catalogue-photo a:hover .product-image{
opacity: 0;
}
.tg-production-page .old-price::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px; /* épaisseur de la ligne */
  background: #222; /* couleur de la ligne */
}
.tg-production-page .fz-14{font-size: 13px}
.tg-production-page #couleur1 li{padding-left:30px !important}

.tg-production-page .a-f{font-size:16px;font-family: var(--font-family-oswald);font-weight: 900;margin-top: 0px;text-align: center;margin-bottom: 0px;text-transform: uppercase;display: flex;align-items:flex-end;}
.tg-production-page .p_achat{text-align: justify;
    font-size: 15px;
    line-height: 20px;font-family: var(--font-family-regular)!important;}
    .tg-production-page .height-dv{    display: flex;
     justify-content: center;   /* centre horizontalement */
  align-items: center; gap: 10px;}
.tg-production-page .shell{
position: relative;
line-height: 1; }
.tg-production-page .shell span{
position: absolute;
left: 3px;
top: 1px;
color: #ccc;
pointer-events: none;
z-index: -1; }
.tg-production-page .shell span i{
font-style: normal;
/* any of these 3 will work */
color: transparent;
opacity: 0;
visibility: hidden; }

.tg-production-page input.masked,.tg-production-page .shell span{
font-size: 16px;
font-family: monospace;
padding-right: 10px;
background-color: transparent;
text-transform: uppercase; }
.tg-production-page .btn-loader{
  position: absolute;
  top: 50%;
  left: 50%;
  width:30px;
  height:30px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-60%, -50%);
  display: none;
}

@keyframes spin{
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.tg-production-page .btn-payer{
  position: relative;
}

.tg-production-page .btn-payer:disabled{
  opacity: 0.8;
  cursor: not-allowed;
}
.tg-production-page .lab-ja{background: #fdffce;
    padding: 3px;
    font-size: 1em;
    line-height: 31px;
    height: 35px;
    margin-top: 4px;
    margin-left: 10px;}
    .tg-production-page .price-home-1{color:#333;background: rgb(255,255,255, 0.8);display: flex;flex-direction: column;padding:20px;margin-bottom: 10px;width:100%;text-align:center}
.tg-production-page .one1{font-size:19px !important;text-transform: uppercase;margin-bottom: 10px !important}
.tg-production-page .second1{font-size:24px !important;color:#333;text-align:center;margin-bottom: 0px !important}
.tg-production-page .title-filter{
    position:fixed;right:15px;top:0px;z-index:99999;background: #fff;width:29%;visibility: hidden;
    display: flex !important;align-items:center ;justify-content: space-between;padding-top:20px;text-align: left;margin-bottom: 30px;padding-left:60px;border-bottom: 1px solid rgb(85,85,85);padding-bottom: 10px;
}
.tg-production-page .title-filter p{font-size:18px;font-family:var(--font-family-regular),sans-serif;font-weight: 900;display: block !important;}
.tg-production-page .display-no{
  display: block !important;
}
.tg-production-page .contente,.tg-production-page .contentee{
  display:none;
  margin-top:20px;
}

.tg-production-page .desc{
  opacity:.8;
}

/* Cartes */

.tg-production-page .tab-icon,.tg-production-page .tab-icone{
  font-size:22px;
  transition:.3s;
}
.tg-production-page .tab,.tg-production-page .tabe{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 2px;
  background: transparent;
  border-bottom: 1px dashed #ccc;
  color: #000;
  cursor: pointer;
  width: 100%; margin-top:0px;
}

/* Titre */
.tg-production-page .tab-title{
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Bouton + */
.tg-production-page .tab-plus{
  font-size: 20px;
  font-weight: bold;
}

.tg-production-page .label-card{font-size: 15px;
font-weight: 700;}
.tg-production-page .phot{display: -ms-grid;
display: grid;
height: 100%;
grid-gap:.5rem;}
.tg-production-page .product-right-inner{
position: sticky;
top: 100px;
}
.tg-production-page .text-offer{background: #fdffce;
    padding: 5px;font-size:16px}
.tg-production-page .color-item{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;padding:1px;border:1px solid #eee;cursor:pointer;
  ;border-radius: 50%;display: flex;align-items: center;
}
.tg-production-page .color-item img{
    width:100%;
    height:100%;
    border-radius: 50%;
}
.tg-production-page .color-item.active{
    border: 2px solid #ccc;
}
.tg-production-page .filter-bar{
  position: fixed;
  top: 0;
  left:0;
  right:0;
  background: white;
  padding:12px 0 !important;
  z-index: 99;
  margin-bottom: 0px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width:100% !important;
}
.tg-production-page .bar-left{display: none;flex-direction: row;align-items: flex-end;justify-content: space-between;}
.tg-production-page .top-menu{
  display: flex;
  gap: 30px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.tg-production-page .menu-link{
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.tg-production-page .menu-link.active{
  border-bottom: 2px solid #000;
}

.tg-production-page .menu-content{
  background: #fff;
  padding: 0px 40px;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  display: none;
  z-index:99999;
  height:357px;
  align-items: center;
}
.tg-production-page .menu-content.showe{
  display: flex;
}
.tg-production-page .menu-panel{
  display: none;
  width: 1200px;
  margin: auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap:20px;
}

.tg-production-page .menu-panel.active{
  display: flex;
}

.tg-production-page .menu-panel h2{
  font-size: 32px;
  margin-bottom: 10px;
      font-family: 'Oswald-Bold';
      line-height: 40px;
      text-transform: uppercase;
}
.tg-production-page .methode-mesure2{border:none !important;box-shadow: none !important;    display: flex;
    flex-direction: column;
    align-items: center;}
    .tg-production-page .btn-rose-1{text-align: left;
    width: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;font-size:16px;font-weight: normal;}
.tg-production-page .div-mesure-1{display: flex;flex-direction: column;width:30%}
.tg-production-page .div-mesure-2{display: flex;flex-direction: row;width:70%;gap:10px}
.tg-production-page .menu-panel span{
  font-weight: 700;
}
.tg-production-page .menu-panel p{line-height: 20px;font-size: 16px}
.tg-production-page .menu-panel ul{
  margin-top: 20px;
  columns: 2;
  list-style: none;
  padding: 0;
}
.tg-production-page .menu-panel li{
  margin-bottom: 10px;
  cursor: pointer;
}
.tg-production-page .fixed-menu{
    background-color: #fff;
    box-shadow: #ccc 0 2px 15px;
    position: fixed !important;
    top:0px;
    left: 0;
    width: 100%;
    z-index: 1030;
    -webkit-transition: max-height 0s;
    -moz-transition: max-height 0s;
    transition: max-height 0s;
}
/* ----- Hover zoom ----- */
.tg-production-page .product-image-zoom{
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.tg-production-page .product-image-zoom img{
  width: 100%;
  transition: transform 0.4s ease;
}



/* ----- Popup fullscreen ----- */
.tg-production-page .zoom-popup{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  cursor: zoom-out;
}

.tg-production-page .zoom-popup.active{
  display: block;
}

/* Images vertical scroll */
.tg-production-page .popup-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tg-production-page .popup-content img{
  width: 100%;
  max-width: 900px;
  margin-bottom: 30px;
}
/* icône zoom */
.tg-production-page .zoom-icon{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  cursor: pointer;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  pointer-events: auto;
  transform: scale(0.85);
  transition: all .25s ease;
  font-size: 18px;
}
.tg-production-page .zoom-icon-mobile{
  position: absolute;
  top: 15px;
  left: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  cursor: pointer;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  pointer-events: auto;
  transform: scale(0.85);
  transition: all .25s ease;
  font-size: 18px;
}
.tg-production-page .product-image-zoome{position: relative;}
.tg-production-page .slider-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:20px;
    margin-top:20px;
}
.tg-production-page .slider-button{
    color: rgba(50,50,50, .75);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tg-production-page .svg-wrapper{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}.tg-production-page .slider-button--prev .icon{
    transform: rotate(90deg);
}
.tg-production-page .slider-button .icon{
    height: .6rem;
}
.tg-production-page .slider-button--next .icon{
    transform: rotate(-90deg);
}
.tg-production-page .slider-counter{
    display: flex;
    justify-content: center;
    min-width: 4.4rem;
    font-size:13px;
}

/* hover desktop */
.tg-production-page .product-image-zoom:hover .zoom-icon{
  opacity: 1;
  transform: scale(1);
}
/* Close button */
.tg-production-page .close-popup{
  position: fixed;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

/* Mobile */
@media (max-width: 768px){
  .tg-production-page .popup-content img{
    max-width: 100%;
  }
}
.tg-production-page .slider-mobile{width:100%;position: relative;display: block}
.tg-production-page .slider-gallery{position: relative;
flex-wrap: inherit;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
scroll-padding-left: 1.5rem;
-webkit-overflow-scrolling: touch;
margin-bottom: 1rem;list-style: none;
display: flex;
flex-direction: row;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: 10px;
row-gap: 10px;width:100%;margin:0}
.tg-production-page .item-slider{width: calc(100% - 3rem - 4px);max-width: 100%;display: flex;    scroll-snap-align: start;
        align-items: center;flex-grow: 1;
    flex-shrink: 0;}
    .tg-production-page #catalogue a:hover{text-decoration: underline;color:#555}
    .tg-production-page .menu-panel li a{color:#555;font-size:15px}

    .tg-production-page .slider-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.tg-production-page .slider-dots button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.tg-production-page .slider-dots button.active{
  background: #000;
  transform: scale(1.2);
}
.tg-production-page .flag{display: flex;
    align-items: center}
    .tg-production-page .hidden-color{
    display: none;
}

.tg-production-page .more-colors a:hover{text-decoration: none !important}
.tg-production-page .color-label{color:#757575;font-size:15px;margin-bottom: 0px}
.tg-production-page .frere{display:flex;flex-direction: column;width:100%;gap:15px}
.tg-production-page .catalogue-home{width:100%;margin-top:20px}
.tg-production-page .catalogue-home .row{margin-left:0px;margin-right:0px}
.tg-production-page #filterbartop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 999;
}

.tg-production-page #filterbartop.show{
    transform: translateY(0);
    opacity: 1;
}

.tg-production-page #header{
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tg-production-page #header.is-hidden{
    opacity: 0;
    transform: translateY(-20px);
}


.tg-production-page .input-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border:none;
  border-radius: 12px;
  padding:0px;
  transition: 0.3s;
}
.tg-production-page .input-wrapper.error{
  border-color: red;
}
.tg-production-page .actions{
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right:5%;
}
.tg-production-page .error-icon{
  width: 22px;
  height: 22px;
  border: 2px solid red;
  color: red;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 18px;
  display: none;
}
.tg-production-page .iti{
    width: 100%;
    position: relative;
}

.tg-production-page .iti__country-list{
    top: 0 !important;   /* place la liste sous l'input */
    left: 0 !important;
    width: 100%;
    position: relative !important;
    max-height: 450px;
    overflow-y: auto;
    z-index: 9999;
}
.tg-production-page .iti-mobile .iti--container{
    top: 50px !important;
    bottom: 0px !important;
    left: 0px !important;
    right: 0px !important;
    position: absolute !important;
    height: 500px;
    z-index: 999;
}
.tg-production-page #toggleBtn{border:none;background: transparent;font-weight: bold;display: none}
.tg-production-page .error-text{
  color: red;
  margin-top: 8px;
  display: none;
  text-align: left;
}
.tg-production-page .rules{
  display: flex;
  gap: 15px;
  margin-top: 30px;
  font-size: 14px;
}

.tg-production-page .rules div{
  color: gray;
  transition: 0.3s;
}

.tg-production-page .rules div.valid{
  color: green;
  font-weight: 600;
}

.tg-production-page .wrapper-register{margin-left: auto; margin-right: auto;margin-bottom:10px}
.tg-production-page .bloc-register{    display: flex;
    flex-direction: column;
    align-items: center;}



/* variante historique: main3.css */
.tg-production-main3 .oswald-regular1{ font-family: 'Open Sans', sans-serif;font-size:45px;font-weight: bold;text-transform: uppercase; }
.tg-production-main3 .oswald-bold1{ font-family: 'Open Sans', sans-serif; font-weight: 700;font-size:30px;text-transform: uppercase;}
.tg-production-main3 .roboto-regular1{ font-family: 'Open Sans', sans-serif; font-weight: 400;font-size:16px;text-decoration: none; }
.tg-production-main3 .temoignages-container1{ padding: 20px 25px;}
.tg-production-main3 .temoignages-container2{border:1px solid #DDDDDD;padding:10px 25px; padding: 20px;max-width: 600px;margin-left: auto;margin-right: auto;margin-bottom: 20px;/*text-transform: lowercase;*/}
.tg-production-main3 .temoignages-container3{ padding: 50px 25px; }
.tg-production-main3 .h1guide{margin-left: auto;margin-right: auto;text-align: center;font-size:30px; font-weight:700;Line-Height: 40px;}
.tg-production-main3 .modele-catalogue-home1{font-style:italic;font-size: 17px;}
.tg-production-main3 .modele-catalogue-home2{    font-size: 18px;    line-height: 1em;    margin-bottom: 15px;    width: 100%;    padding-top: 10px;    font-family: 'Open Sans Condensed';    font-weight: 700;}
.tg-production-main3 .bottom{
  height: 280px;color: white;
  vertical-align: bottom;display: table-cell;
  padding: 30px;
  text-shadow: black 0.1em 0.1em 0.2em
}
.tg-production-main3 .epaisseur-background{ width: 100%;height: 280px; margin-bottom:30px;margin-top:30px}
.tg-production-main3 .img_fournisseur{/*padding: 20px 0px 20px 0px;*/ margin-bottom:10px;margin-top:10px; width:220px}
.tg-production-main3 .boutonguide{margin-bottom:50px;margin-top:70px; text-align:center}
.tg-production-main3 .boutontissu{border: 1px solid #DDDDDD; padding: 15px 15px;     max-width: 200px; margin-right:15px;margin-bottom: 15px; float: left; position: relative;}
.tg-production-main3 .modele-catalogue-home{margin-top: 40px;}
.tg-production-main3 .containerguide{

    margin:50px auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px){
.tg-production-main3 .containerguide{
    width: 740px;
}
}
@media (min-width: 992px){
.tg-production-main3 .containerguide{
    width: 750px;
}
}
@media (min-width: 1200px){
.tg-production-main3 .containerguide{
    width: 790px;
}
}
/*.containerguide{width: 750px;}*/
@media screen and (min-width: 768px){
.tg-production-main3 .rosee{
    padding: 10px 40px !important;
}
}

/* variante historique: light.css */

html.tg-production-light,.tg-production-light body{
  min-height: 100%;
}
.tg-production-light .clearfix:before,.tg-production-light .clearfix:after{
  content: "";
  display: table;
}

.tg-production-light .clearfix:after{ clear: both; }

.tg-production-light .clearfix{ zoom: 1; }

/*jquery.picEyes*/

.tg-production-light .picshade{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.91;
  filter: alpha(opacity=91);
  z-index: 1031;
  display: none;
}

.tg-production-light .pictures_eyes_close{
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;

  z-index: 1237;
  display: none;
}
.tg-production-light .pictures_eyes_close:hover{
    opacity: .5;
}

.tg-production-light .pictures_eyes_title{
  position: fixed;
  top: 30px;
  left: 30px;
  display: none;
  z-index: 1238;
  font-size:16px;
  text-transform: none;
  color:#222;
  text-align:center;
  left: 50%;
    transform: translate(-50%, 0);
}
.tg-production-light .pictures_eyes{
  position: fixed;

  left: 0 !important;
  top: 0 !important;
  z-index: 1035;
  display: none;
  right:0;
  bottom:0;
  overflow:auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  min-height:100%;

}

.tg-production-light .pictures_eyes_in{
  position: relative;
  text-align: center;
  /*margin-top:100px;*/
}
.tg-production-light .pictures_eyes_header{
  position: fixed;
  width: 100%;
  left: 0 !important;
  top: 0 !important;
  z-index: 2135;
  display: none;
  height:80px;
background:#fff;
}

.tg-production-light .pictures_eyes_in .prev,.tg-production-light .pictures_eyes_in .next{
  position: fixed;
  top: 50%;
  width: 76px;
  height: 76px;
  cursor: pointer;
}

.tg-production-light .pictures_eyes_in .prev{
  left: 35px;
  background: url("/assets/design-system/production/img/left.png") no-repeat;
}

.tg-production-light .pictures_eyes_in .next{
  right: 45px;
  background: url("/assets/design-system/production/img/right.png") no-repeat;
}
.tg-production-light .pictures_eyes_in .prev:hover{
  left: 35px;
  width: 76px;
  height: 76px;
  background: url("/assets/design-system/production/img/left-01.png") no-repeat;
}

.tg-production-light .pictures_eyes_in .next:hover{
  right: 45px;
  width: 76px;
  height: 76px;
  background: url("/assets/design-system/production/img/right-01.png") no-repeat;
}

.tg-production-light .pictures_eyes_indicators{
  position: fixed;
  left: 0;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 1200;
}

.tg-production-light .pictures_eyes_indicators a{
  display: inline-block;
  width: 57px;
  height: 64px;
  margin: 6px 3px 0 3px;
  border: 2px solid #FFFFFF99;
  border-radius: 0px;
  box-shadow: 0 0 2px #000;;
  overflow: hidden;
}

.tg-production-light .pictures_eyes_indicators img{ height:64px; }

.tg-production-light .pictures_eyes_indicators .current{
  filter: alpha(opacity=100);
  opacity: 1;
  border: 2px solid #fff;
}
    .tg-production-light #more-options{
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #F8F8F8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    color: #222;
}
.tg-production-light #more-options .img,.tg-production-light #less-options .img{
    width: 65px;
    height: 35px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-production-light #more-options img{
    display: block;
    width: 40px;
    height: auto;
    margin-top: -3px;
}
.tg-production-light #less-options{
    height: 35px;
    line-height:35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #F8F8F8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    color: #222;
    border: 1px solid #f1f1f1;
}
.tg-production-light #less-options img{
    display: block;
    width: 40px;
    height: auto;
}
    .tg-production-light section#configurator .sommaires{
    position:relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    margin-top:10px;
}
.tg-production-light section#configurator .sommaires .sommaire .name{
    padding-left: 10px;
    line-height: 65px;
}
.tg-production-light section#configurator .sommaires .part{
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #FFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}
.tg-production-light section#configurator .parts .part .name{
        /*padding-left: 2.5px;
        padding-right:2.5px;*/
        cursor:pointer;
        width: 90px;
        margin: auto;
        font-size:14px;
    }

.tg-production-light section#configurator .part .img{
    width: 65px;
    height: 35px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-production-light section#configurator #step-0 .part img{
    width: 35px;
}
.tg-production-light .demo > li{float:left;}
.tg-production-light .demo > li img{ width:70px; margin:5px; cursor:pointer;border: 2px solid #fff;}
.tg-production-light .demo > li img:hover{border: 2px solid #ccc;}

 .tg-production-light .hide-bullets{
    list-style:none;

}
.tg-production-light .carousel-inner>.item{
    backface-visibility: visible !important;

}
.tg-production-light .thumbnail{
    padding: 0;
}

.tg-production-light .carousel-inner>.item>img,.tg-production-light .carousel-inner>.item>a>img{
    width: 100%;
    cursor: url("/assets/design-system/production/img/magnify.cur"),move;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;

}
.tg-production-light .thumbnail{
    border:none !important;
    margin-bottom: 0px;
}

.tg-production-light .carousel{
background-color: #fff;
    margin-top: 5px;
}

.tg-production-light .carousel-inner>.item.next.left,.tg-production-light .carousel-inner>.item.prev.right,.tg-production-light .carousel-inner>.item.active{
background-color: transparent;
    }
.tg-production-light .col-md-2{
width:9%;
}
.tg-production-light .delivery{
    float: left;
    display: block;
    top: 17px;
    padding-left: 10px;
}
 .tg-production-light .delivery a{
    font: inherit;
    color: inherit;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    color:#333;font-size:18px;margin-top:20px
}
 .tg-production-light .delivery a:hover{
text-decoration: underline;
    }
.tg-production-light .bordered{
    border: 1px solid #ccc;
}
.tg-production-light .selecte{
    display: inline-block;
    width: 70%;
    position: relative;
    margin-bottom: 20px;
    color: #9b9b9b;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
.tg-production-light #configurator .parts_broderie{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}
.tg-production-light .menu-deroulant-couleur,.tg-production-light .menu-deroulant-style{
    display: none;
    overflow: auto;
    position: absolute;
    z-index: 99;
    top: 40px;
    left: 0;
    background: #FFF;
    width: 100%;
    text-align: left;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    padding: 10px;
    height: 200px;
}
.tg-production-light .part-deroulant{
    width: 100% !important;
    height: 40px !important;
    text-align: center;
    margin: 0 0px 0px 0;
    display: block;
    padding: 0 !important;
      line-height: 30px;
}
.tg-production-light .part-deroulant .name{
width:100% !important;
  }
.tg-production-light .selecte span{
    background-color: #188873 !important;
    width: 38px !important;
    height: 38px !important;
    position: absolute;
    line-height: 38px;
    padding: 0px !important;
    border-radius: 0px !important;
    top: 0px;
    right: 0px;
    border-radius: 0px !important;
}
.tg-production-light .okk{
    padding: 10px 10px 10px 10px;
    margin: 0;
    background: #188873;
    border: none;
    border-radius: 3px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    outline: none;
    color: white;
      margin-bottom: 20px !important;
    width: 50% !important;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
.tg-production-light .ok{
    padding: 10px 10px 10px 10px;
    margin: 0;
    background: #188873;
    border: none;
    border-radius: 3px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    outline: none;
    color: white;
      margin-bottom: 20px !important;
    width: 180px !important;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
.tg-production-light .part.active{
    /* opacity: 1; */
    color:#fff;
    background-color: #188873;
}
.tg-production-light .mobody h2{
    font-family: inherit;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    margin: 15px 15px 10px 15px;
    text-transform: uppercase;
}
.tg-production-light .okk:hover{
    background: #06695F;
}
.tg-production-light .part-deroulant .img{
    width: 40% !important;
    height: 40px !important;
    float: left;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: inline-block !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 40px !important;
    cursor: pointer;
}
.tg-production-light .selecte span:after{
    content: '';
    display: block;
    height: 11px;
    width: 14px;
    background: url("/assets/design-system/production/configurateur/img/icon-fleche-menu-deroulant.png") no-repeat;
    position: absolute;
    top: 12px;
    left: 12px;
}
@media screen and (min-width:768px){
.tg-production-light #more-options,.tg-production-light #less-options,.tg-production-light section#configurator .sommaires .part{
width:400px;
}
.tg-production-light .btn-rose{
  width:400px;
}
}

@media screen and (max-width:767px){
.tg-production-light #more-options,.tg-production-light #less-options,.tg-production-light section#configurator .sommaires .part{
width:100%;
}
.tg-production-light section#configurator .sommaires .part .name{
  line-height:55px;
  text-align:left;
}
.tg-production-light section#configurator .part .img{
width:65px !important;
  }
  .tg-production-light .btn-rose{
  width:100%;
}
}

/* anciens attributs style dédupliqués */
html.tg-production-page .tg-inline-00cc26e0e6b7.tg-inline-00cc26e0e6b7.tg-inline-00cc26e0e6b7{padding-left:90px !important;padding-right: 90px !important}
html.tg-production-page .tg-inline-01054493d635.tg-inline-01054493d635.tg-inline-01054493d635{padding:0px !important;border:none !important;display: flex !important}
html.tg-production-page .tg-inline-023f279b8cb4.tg-inline-023f279b8cb4.tg-inline-023f279b8cb4{width:30% !important;height:auto !important}
html.tg-production-page .tg-inline-0278d8b554eb.tg-inline-0278d8b554eb.tg-inline-0278d8b554eb{vertical-align: middle !important;display: table-cell !important;height: 315px !important;padding-left: 30px !important;width:335px !important}
html.tg-production-page .tg-inline-03117e870e59.tg-inline-03117e870e59.tg-inline-03117e870e59{width:100% !important}
html.tg-production-page .tg-inline-036e4dc76d4c.tg-inline-036e4dc76d4c.tg-inline-036e4dc76d4c{max-width: 100% !important}
html.tg-production-page .tg-inline-03740d9c0b74.tg-inline-03740d9c0b74.tg-inline-03740d9c0b74{width:100% !important;height :auto !important;margin:0px auto !important;margin-bottom: 20px !important}
html.tg-production-page .tg-inline-03f8846454aa.tg-inline-03f8846454aa.tg-inline-03f8846454aa{display:flex !important;flex-direction: column !important;gap:10px !important}
html.tg-production-page .tg-inline-04c4b52283c2.tg-inline-04c4b52283c2.tg-inline-04c4b52283c2{width:70% !important;padding:5px 10px !important;border:1px solid #eee !important}
html.tg-production-page .tg-inline-05dc9ee7c14b.tg-inline-05dc9ee7c14b.tg-inline-05dc9ee7c14b{margin-bottom:70px !important}
html.tg-production-page .tg-inline-0622a16e8ac2.tg-inline-0622a16e8ac2.tg-inline-0622a16e8ac2{padding: 25px 0px 25px 25px !important;top: 0 !important;color:#000 !important}
html.tg-production-page .tg-inline-06a56c5d711c.tg-inline-06a56c5d711c.tg-inline-06a56c5d711c{color:red !important}
html.tg-production-page .tg-inline-07ad1be52633.tg-inline-07ad1be52633.tg-inline-07ad1be52633{background-image: url("/assets/design-system/production/img/TG_pages_fonctionnement_site.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-07ef11846c95.tg-inline-07ef11846c95.tg-inline-07ef11846c95{border: none !important;box-shadow:none !important;position:relative !important;top:0px !important;font-size:0.8em !important}
html.tg-production-page .tg-inline-083b3ec45c39.tg-inline-083b3ec45c39.tg-inline-083b3ec45c39{padding:0px !important}
html.tg-production-page .tg-inline-08909b73cbba.tg-inline-08909b73cbba.tg-inline-08909b73cbba{background:url("/assets/design-system/production/img/lin.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-08d7941c3be6.tg-inline-08d7941c3be6.tg-inline-08d7941c3be6{margin-bottom:70px !important;background:#f5f5f5 !important}
html.tg-production-page .tg-inline-09b46ec04c29.tg-inline-09b46ec04c29.tg-inline-09b46ec04c29{color: #000 !important;font-weight: bold !important;background-color: #f6f6f6 !important}
html.tg-production-page .tg-inline-0a6a7f5be69d.tg-inline-0a6a7f5be69d.tg-inline-0a6a7f5be69d{text-align:left !important;width: 100% !important}
html.tg-production-page .tg-inline-0ccc88506129.tg-inline-0ccc88506129.tg-inline-0ccc88506129{margin-top:-20px !important}
html.tg-production-page .tg-inline-0d436be19cc6.tg-inline-0d436be19cc6.tg-inline-0d436be19cc6{width:30px !important;height:auto !important;margin-top:-10px !important}
html.tg-production-page .tg-inline-0deb01647255.tg-inline-0deb01647255.tg-inline-0deb01647255{color:#2f3c55 !important}
html.tg-production-page .tg-inline-0fe744818f5d.tg-inline-0fe744818f5d.tg-inline-0fe744818f5d{clear:both !important}
html.tg-production-page .tg-inline-10d425ee8636.tg-inline-10d425ee8636.tg-inline-10d425ee8636{line-height: 20px !important}
html.tg-production-page .tg-inline-1181059a3dfa.tg-inline-1181059a3dfa.tg-inline-1181059a3dfa{border-radius: 0px !important}
html.tg-production-page .tg-inline-127b564b4845.tg-inline-127b564b4845.tg-inline-127b564b4845{text-decoration:underline !important}
html.tg-production-page .tg-inline-12d85ae778bd.tg-inline-12d85ae778bd.tg-inline-12d85ae778bd{background-image: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-13bd32ebe3f8.tg-inline-13bd32ebe3f8.tg-inline-13bd32ebe3f8{text-align: center !important;margin-bottom: 20px !important}
html.tg-production-page .tg-inline-157e4d06140d.tg-inline-157e4d06140d.tg-inline-157e4d06140d{background-image: url("/assets/design-system/production/img/TG_pages_tissus.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-175c7c29824e.tg-inline-175c7c29824e.tg-inline-175c7c29824e{padding-left:0px !important;padding-right:0px !important}
html.tg-production-page .tg-inline-181ad372c39f.tg-inline-181ad372c39f.tg-inline-181ad372c39f{margin-left: 0px !important;margin-right: 0px !important}
html.tg-production-page .tg-inline-184c6081040d.tg-inline-184c6081040d.tg-inline-184c6081040d{margin:50px 0 !important}
html.tg-production-page .tg-inline-1a6786e3f817.tg-inline-1a6786e3f817.tg-inline-1a6786e3f817{border-radius:0px !important;text-transform: none !important;border-color: #fff !important}
html.tg-production-page .tg-inline-1dd12b11ffad.tg-inline-1dd12b11ffad.tg-inline-1dd12b11ffad{margin-top:100px !important}
html.tg-production-page .tg-inline-1e3621b9bcb0.tg-inline-1e3621b9bcb0.tg-inline-1e3621b9bcb0{cursor:pointer !important;font-size: 15px !important}
html.tg-production-page .tg-inline-1e76cee9f195.tg-inline-1e76cee9f195.tg-inline-1e76cee9f195{text-transform: none !important}
html.tg-production-page .tg-inline-1f1df5d2686f.tg-inline-1f1df5d2686f.tg-inline-1f1df5d2686f{padding-top:0px !important}
html.tg-production-page .tg-inline-1fd7187b3bb4.tg-inline-1fd7187b3bb4.tg-inline-1fd7187b3bb4{font-size:24px !important;text-align:center !important;font-family:'sans-serif' !important;font-weight:500 !important;margin-bottom:30px !important}
html.tg-production-page .tg-inline-20ae16361338.tg-inline-20ae16361338.tg-inline-20ae16361338{margin-bottom: 10px !important}
html.tg-production-page .tg-inline-27074eee532d.tg-inline-27074eee532d.tg-inline-27074eee532d{display:flex !important;flex-direction: column !important;width:100% !important}
html.tg-production-page .tg-inline-2a284c1193a9.tg-inline-2a284c1193a9.tg-inline-2a284c1193a9{display: none !important;opacity: 0.7 !important}
html.tg-production-page .tg-inline-2af116911ce9.tg-inline-2af116911ce9.tg-inline-2af116911ce9{color:red !important;text-align:left !important;font-weight:bold !important}
html.tg-production-page .tg-inline-2f2054891c14.tg-inline-2f2054891c14.tg-inline-2f2054891c14{padding-top:50px !important}
html.tg-production-page .tg-inline-301647f5065e.tg-inline-301647f5065e.tg-inline-301647f5065e{margin-top:6px !important}
html.tg-production-page .tg-inline-3040ee45f26b.tg-inline-3040ee45f26b.tg-inline-3040ee45f26b{background:url("/assets/design-system/production/img/Chevrons.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-3211eaddc96e.tg-inline-3211eaddc96e.tg-inline-3211eaddc96e{background-image: url("/assets/design-system/production/img/TG_pages_confection.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-3652d24c50d1.tg-inline-3652d24c50d1.tg-inline-3652d24c50d1{width:20px !important}
html.tg-production-page .tg-inline-37539c093d8c.tg-inline-37539c093d8c.tg-inline-37539c093d8c{padding: 25px 0px 25px 25px !important;top: 0 !important}
html.tg-production-page .tg-inline-391f179ad838.tg-inline-391f179ad838.tg-inline-391f179ad838{background-image: url("/assets/design-system/production/img/TG_pages_fonctionnement_site.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-3a5cf77f16c5.tg-inline-3a5cf77f16c5.tg-inline-3a5cf77f16c5{background:url("/assets/design-system/production/img/Popeline.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-3b6fad0b298d.tg-inline-3b6fad0b298d.tg-inline-3b6fad0b298d{margin-top: 10px !important}
html.tg-production-page .tg-inline-3b9ef28f9b60.tg-inline-3b9ef28f9b60.tg-inline-3b9ef28f9b60{line-height: 1.5em !important;text-align: justify !important}
html.tg-production-page .tg-inline-3bffb44de0ce.tg-inline-3bffb44de0ce.tg-inline-3bffb44de0ce{font-size: 1em !important;text-align:right !important}
html.tg-production-page .tg-inline-3c4c079c072e.tg-inline-3c4c079c072e.tg-inline-3c4c079c072e{font-size: 1em !important;text-align:right !important}
html.tg-production-page .tg-inline-3c703aa835d3.tg-inline-3c703aa835d3.tg-inline-3c703aa835d3{margin-top: 25px !important;width: 70% !important;margin-right: auto !important;margin-left: auto !important}
html.tg-production-page .tg-inline-3ccf7e38ad6f.tg-inline-3ccf7e38ad6f.tg-inline-3ccf7e38ad6f{margin-bottom: 200px !important}
html.tg-production-page .tg-inline-3d4427e64b1b.tg-inline-3d4427e64b1b.tg-inline-3d4427e64b1b{text-decoration: underline !important;padding-buttom:10px !important}
html.tg-production-page .tg-inline-3e0e7f8b34d4.tg-inline-3e0e7f8b34d4.tg-inline-3e0e7f8b34d4{font-weight: bold !important;font-size:20px !important;margin-bottom:30px !important}
html.tg-production-page .tg-inline-3fb1964dfbd0.tg-inline-3fb1964dfbd0.tg-inline-3fb1964dfbd0{background:#eee !important;padding:20px !important}
html.tg-production-page .tg-inline-40bbdb9f8d5f.tg-inline-40bbdb9f8d5f.tg-inline-40bbdb9f8d5f{font-weight: 600 !important;font-size: 23px !important}
html.tg-production-page .tg-inline-419056afb030.tg-inline-419056afb030.tg-inline-419056afb030{margin:40px auto !important;padding:0px 20px !important}
html.tg-production-page .tg-inline-41b0dd6a5b38.tg-inline-41b0dd6a5b38.tg-inline-41b0dd6a5b38{background:url("/assets/design-system/production/img/Level2.jpg") !important;background-size: 790px 280px !important}
html.tg-production-page .tg-inline-43af437fa6ec.tg-inline-43af437fa6ec.tg-inline-43af437fa6ec{font-size:16px !important;font-weight:normal !important;color:red !important}
html.tg-production-page .tg-inline-4555334f9590.tg-inline-4555334f9590.tg-inline-4555334f9590{text-align: left !important}
html.tg-production-page .tg-inline-46295e8b65fc.tg-inline-46295e8b65fc.tg-inline-46295e8b65fc{text-align: justify !important}
html.tg-production-page .tg-inline-477f1a0d3e83.tg-inline-477f1a0d3e83.tg-inline-477f1a0d3e83{width:80% !important;font-size:16px !important}
html.tg-production-page .tg-inline-47893478dab7.tg-inline-47893478dab7.tg-inline-47893478dab7{font-size: 24px !important;font-weight:700 !important}
html.tg-production-page .tg-inline-497fa6d98f60.tg-inline-497fa6d98f60.tg-inline-497fa6d98f60{font-size: 1.5em !important;position:relative !important;padding-bottom:15% !important;height:0 !important;text-align: center !important}
html.tg-production-page .tg-inline-4ce5d042480c.tg-inline-4ce5d042480c.tg-inline-4ce5d042480c{font-size:60px !important}
html.tg-production-page .tg-inline-4d9fa15b8e12.tg-inline-4d9fa15b8e12.tg-inline-4d9fa15b8e12{background:url("/assets/design-system/production/img/Filafil.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-4fa00029d5b1.tg-inline-4fa00029d5b1.tg-inline-4fa00029d5b1{position: relative !important}
html.tg-production-page .tg-inline-4fd071677b4c.tg-inline-4fd071677b4c.tg-inline-4fd071677b4c{max-width: 100% !important;height: auto !important}
html.tg-production-page .tg-inline-56c114699758.tg-inline-56c114699758.tg-inline-56c114699758{margin-left:0px !important;margin-right:0px !important}
html.tg-production-page .tg-inline-56fef0501b2e.tg-inline-56fef0501b2e.tg-inline-56fef0501b2e{margin-right:5px !important}
html.tg-production-page .tg-inline-5817ecb9923d.tg-inline-5817ecb9923d.tg-inline-5817ecb9923d{text-decoration: underline !important}
html.tg-production-page .tg-inline-5ac4b6da1639.tg-inline-5ac4b6da1639.tg-inline-5ac4b6da1639{background: #F7F7F7 !important;padding: 50px 15px !important}
html.tg-production-page .tg-inline-5d15cd06a00e.tg-inline-5d15cd06a00e.tg-inline-5d15cd06a00e{font-weight:bold !important;margin-bottom:20px !important}
html.tg-production-page .tg-inline-5dbe95b0cb14.tg-inline-5dbe95b0cb14.tg-inline-5dbe95b0cb14{float:right !important}
html.tg-production-page .tg-inline-5e855f89490e.tg-inline-5e855f89490e.tg-inline-5e855f89490e{z-index:888 !important}
html.tg-production-page .tg-inline-6053888e40af.tg-inline-6053888e40af.tg-inline-6053888e40af{clear:both !important}
html.tg-production-page .tg-inline-61373d92e9b5.tg-inline-61373d92e9b5.tg-inline-61373d92e9b5{border:none !important;text-transform: uppercase !important;font-weight:800 !important;width:100% !important;font-size:17px !important;font-family: var(--font-family-regular) !important}
html.tg-production-page .tg-inline-616e674ad21d.tg-inline-616e674ad21d.tg-inline-616e674ad21d{border-bottom: none !important}
html.tg-production-page .tg-inline-6256511ccdbd.tg-inline-6256511ccdbd.tg-inline-6256511ccdbd{float: right !important;width:100% !important}
html.tg-production-page .tg-inline-63dbf5319ae5.tg-inline-63dbf5319ae5.tg-inline-63dbf5319ae5{text-align: center !important}
html.tg-production-page .tg-inline-65d1f1c3d796.tg-inline-65d1f1c3d796.tg-inline-65d1f1c3d796{display: none !important}
html.tg-production-page .tg-inline-678b2879669b.tg-inline-678b2879669b.tg-inline-678b2879669b{font-size: 18px !important;margin-top:20px !important}
html.tg-production-page .tg-inline-67db841f90e8.tg-inline-67db841f90e8.tg-inline-67db841f90e8{margin-top:0px !important;margin-bottom:30px !important;border:2px solid #2f3c55 !important;padding:15px 20px !important}
html.tg-production-page .tg-inline-6a64331a7c61.tg-inline-6a64331a7c61.tg-inline-6a64331a7c61{margin-top: 25px !important}
html.tg-production-page .tg-inline-6a8366a4c8b4.tg-inline-6a8366a4c8b4.tg-inline-6a8366a4c8b4{margin-bottom: 0px !important}
html.tg-production-page .tg-inline-6aa34d7432e7.tg-inline-6aa34d7432e7.tg-inline-6aa34d7432e7{display:none !important}
html.tg-production-page .tg-inline-6b960bd054cf.tg-inline-6b960bd054cf.tg-inline-6b960bd054cf{border-radius:0px !important;width:105px !important;height:41px !important;padding:inherit !important;text-transform: none !important;border-color: #fff !important}
html.tg-production-page .tg-inline-6d5226615095.tg-inline-6d5226615095.tg-inline-6d5226615095{font-weight: 600 !important;color: #232323 !important}
html.tg-production-page .tg-inline-6df56bdad715.tg-inline-6df56bdad715.tg-inline-6df56bdad715{cursor:pointer !important;display: block !important}
html.tg-production-page .tg-inline-6e22c58a7a6a.tg-inline-6e22c58a7a6a.tg-inline-6e22c58a7a6a{display: none !important}
html.tg-production-page .tg-inline-6e850ccab2d4.tg-inline-6e850ccab2d4.tg-inline-6e850ccab2d4{margin-top:-7px !important}
html.tg-production-page .tg-inline-7035cbc84ab5.tg-inline-7035cbc84ab5.tg-inline-7035cbc84ab5{float:right !important;margin-left:20px !important;margin-bottom: 20px !important;width:100% !important;height:auto !important}
html.tg-production-page .tg-inline-711d50907121.tg-inline-711d50907121.tg-inline-711d50907121{min-height:135px !important}
html.tg-production-page .tg-inline-732c0f0258f9.tg-inline-732c0f0258f9.tg-inline-732c0f0258f9{margin-top:50px !important}
html.tg-production-page .tg-inline-7451c0f87576.tg-inline-7451c0f87576.tg-inline-7451c0f87576{float:left !important;margin-right:10px !important}
html.tg-production-page .tg-inline-7646e355e5b7.tg-inline-7646e355e5b7.tg-inline-7646e355e5b7{width: 25px !important}
html.tg-production-page .tg-inline-7661e29063fb.tg-inline-7661e29063fb.tg-inline-7661e29063fb{height:10px !important;margin-left:8px !important}
html.tg-production-page .tg-inline-7812892510c1.tg-inline-7812892510c1.tg-inline-7812892510c1{width:5px !important;margin-left:5px !important}
html.tg-production-page .tg-inline-79dd0306b966.tg-inline-79dd0306b966.tg-inline-79dd0306b966{margin-left:auto !important;display:flex !important;align-items: center !important}
html.tg-production-page .tg-inline-7ad02d94b9d0.tg-inline-7ad02d94b9d0.tg-inline-7ad02d94b9d0{line-height: 1.3em !important}
html.tg-production-page .tg-inline-7bf7826be92f.tg-inline-7bf7826be92f.tg-inline-7bf7826be92f{background:url("/assets/design-system/production/img/denim.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-7c0f86ab5456.tg-inline-7c0f86ab5456.tg-inline-7c0f86ab5456{cursor: pointer !important}
html.tg-production-page .tg-inline-7cda7e1bbfae.tg-inline-7cda7e1bbfae.tg-inline-7cda7e1bbfae{text-align:left !important;font-weight:bold !important}
html.tg-production-page .tg-inline-7d966935916e.tg-inline-7d966935916e.tg-inline-7d966935916e{z-index: 99 !important}
html.tg-production-page .tg-inline-7da474869c96.tg-inline-7da474869c96.tg-inline-7da474869c96{margin-bottom: 50px !important}
html.tg-production-page .tg-inline-7e85d7e73dae.tg-inline-7e85d7e73dae.tg-inline-7e85d7e73dae{min-height: 63px !important}
html.tg-production-page .tg-inline-7eaecc77d074.tg-inline-7eaecc77d074.tg-inline-7eaecc77d074{width:50% !important}
html.tg-production-page .tg-inline-7f4b3e73460a.tg-inline-7f4b3e73460a.tg-inline-7f4b3e73460a{width:20% !important;text-align:center !important}
html.tg-production-page .tg-inline-80b794a61ab2.tg-inline-80b794a61ab2.tg-inline-80b794a61ab2{background:url("/assets/design-system/production/img/Level3.jpg") !important;background-size: 790px 280px !important}
html.tg-production-page .tg-inline-8178dc0743f9.tg-inline-8178dc0743f9.tg-inline-8178dc0743f9{background-image: url("/assets/design-system/production/img/TG_pages_tissus.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-81a5b9ceb742.tg-inline-81a5b9ceb742.tg-inline-81a5b9ceb742{line-height:30px !important;font-size:16px !important}
html.tg-production-page .tg-inline-868e86a3ffd6.tg-inline-868e86a3ffd6.tg-inline-868e86a3ffd6{text-align:center !important;margin:10px 0 30px 0 !important;font-size:16px !important}
html.tg-production-page .tg-inline-8753ce310456.tg-inline-8753ce310456.tg-inline-8753ce310456{background:url("/assets/design-system/production/img/Twill.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-8914d26e8fd8.tg-inline-8914d26e8fd8.tg-inline-8914d26e8fd8{margin-top: 40px !important}
html.tg-production-page .tg-inline-8b016c954200.tg-inline-8b016c954200.tg-inline-8b016c954200{float:left !important;margin-right:0px !important}
html.tg-production-page .tg-inline-8b083613affa.tg-inline-8b083613affa.tg-inline-8b083613affa{margin-top:70px !important;cursor: pointer !important}
html.tg-production-page .tg-inline-8c782f40b63c.tg-inline-8c782f40b63c.tg-inline-8c782f40b63c{background:url("/assets/design-system/production/img/flanelle.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-8cb11f15647f.tg-inline-8cb11f15647f.tg-inline-8cb11f15647f{padding-top:30px !important}
html.tg-production-page .tg-inline-905008530ca9.tg-inline-905008530ca9.tg-inline-905008530ca9{text-align:center !important}
html.tg-production-page .tg-inline-9060a4bd6f1e.tg-inline-9060a4bd6f1e.tg-inline-9060a4bd6f1e{font-size: 1.5em !important;margin: 0 50px 20px 0px !important;line-height: 30px !important}
html.tg-production-page .tg-inline-91cd25fc59f1.tg-inline-91cd25fc59f1.tg-inline-91cd25fc59f1{max-width: 100% !important;margin-bottom: 25px !important}
html.tg-production-page .tg-inline-942ae682abc2.tg-inline-942ae682abc2.tg-inline-942ae682abc2{float: left !important;margin: 0 40px 0 0px !important;width:100% !important;max-width: 300px !important}
html.tg-production-page .tg-inline-9662635ee0a9.tg-inline-9662635ee0a9.tg-inline-9662635ee0a9{background-image: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-97a7b0d69ab0.tg-inline-97a7b0d69ab0.tg-inline-97a7b0d69ab0{background: white !important;padding:15px !important;font-size:18px !important;font-weight:800 !important;color:#000 !important;text-align:left !important;width:90% !important;line-height:24px !important;font-family:var(--font-family-regular) !important}
html.tg-production-page .tg-inline-97b0b9df699d.tg-inline-97b0b9df699d.tg-inline-97b0b9df699d{padding-left: 0px !important;padding-right: 0px !important}
html.tg-production-page .tg-inline-97fb14a9b09d.tg-inline-97fb14a9b09d.tg-inline-97fb14a9b09d{color:#000 !important}
html.tg-production-page .tg-inline-989f1b8e4641.tg-inline-989f1b8e4641.tg-inline-989f1b8e4641{display: inline !important}
html.tg-production-page .tg-inline-99b3b5e1164e.tg-inline-99b3b5e1164e.tg-inline-99b3b5e1164e{text-align: justify !important;color:red !important}
html.tg-production-page .tg-inline-9a3532edd15c.tg-inline-9a3532edd15c.tg-inline-9a3532edd15c{display: flex !important}
html.tg-production-page .tg-inline-9b69c182250b.tg-inline-9b69c182250b.tg-inline-9b69c182250b{z-index: 1501 !important}
html.tg-production-page .tg-inline-9feceffefd8c.tg-inline-9feceffefd8c.tg-inline-9feceffefd8c{margin-top:50px !important;margin-bottom:50px !important;text-align:center !important}
html.tg-production-page .tg-inline-a0fc2e0b3904.tg-inline-a0fc2e0b3904.tg-inline-a0fc2e0b3904{margin-top:7px !important}
html.tg-production-page .tg-inline-a109f3289f3c.tg-inline-a109f3289f3c.tg-inline-a109f3289f3c{text-transform:lowercase !important}
html.tg-production-page .tg-inline-a28c7225df8f.tg-inline-a28c7225df8f.tg-inline-a28c7225df8f{background:url("/assets/design-system/production/img/Oxford.jpg") !important;background-size: 790px 308px !important}
html.tg-production-page .tg-inline-a32745c27adb.tg-inline-a32745c27adb.tg-inline-a32745c27adb{list-style-type: circle !important}
html.tg-production-page .tg-inline-a3a492225fd5.tg-inline-a3a492225fd5.tg-inline-a3a492225fd5{text-align: center !important;width: 100% !important;margin-bottom: 20px !important}
html.tg-production-page .tg-inline-a588188ebce0.tg-inline-a588188ebce0.tg-inline-a588188ebce0{font-size: 1em !important}
html.tg-production-page .tg-inline-a612e8d2176b.tg-inline-a612e8d2176b.tg-inline-a612e8d2176b{margin-bottom:30px !important}
html.tg-production-page .tg-inline-a62871833104.tg-inline-a62871833104.tg-inline-a62871833104{margin-left:2px !important}
html.tg-production-page .tg-inline-a708c0347344.tg-inline-a708c0347344.tg-inline-a708c0347344{margin-bottom:20px !important;margin-top:30px !important;float: right !important;margin: 0 0px 0 40px !important;width:100% !important;max-width: 300px !important}
html.tg-production-page .tg-inline-a869eed8c5ee.tg-inline-a869eed8c5ee.tg-inline-a869eed8c5ee{text-align: left !important;padding:10px 20px !important}
html.tg-production-page .tg-inline-aa92e707e938.tg-inline-aa92e707e938.tg-inline-aa92e707e938{background: #F8F8F8 !important;text-align: center !important;padding:50px !important;border-top:1px dashed #c6c6c6 !important}
html.tg-production-page .tg-inline-ac0bd97b4efb.tg-inline-ac0bd97b4efb.tg-inline-ac0bd97b4efb{text-align:center !important;margin:10px 0 30px 0 !important;font-size:15px !important}
html.tg-production-page .tg-inline-ad6c58839039.tg-inline-ad6c58839039.tg-inline-ad6c58839039{min-height:90px !important}
html.tg-production-page .tg-inline-af2e8f43a8a5.tg-inline-af2e8f43a8a5.tg-inline-af2e8f43a8a5{text-transform: uppercase !important}
html.tg-production-page .tg-inline-af4d29a1cffe.tg-inline-af4d29a1cffe.tg-inline-af4d29a1cffe{text-align: right !important;line-height: 20px !important}
html.tg-production-page .tg-inline-afccd1dd2e98.tg-inline-afccd1dd2e98.tg-inline-afccd1dd2e98{font-style:italic !important}
html.tg-production-page .tg-inline-b39a6b99e115.tg-inline-b39a6b99e115.tg-inline-b39a6b99e115{text-decoration: none !important}
html.tg-production-page .tg-inline-b49adc743b2b.tg-inline-b49adc743b2b.tg-inline-b49adc743b2b{border: none !important;box-shadow:none !important;position:relative !important;top:10px !important;font-size:0.8em !important}
html.tg-production-page .tg-inline-b4a318ac4412.tg-inline-b4a318ac4412.tg-inline-b4a318ac4412{padding:30px !important;border-bottom: none !important}
html.tg-production-page .tg-inline-b4ce816b6822.tg-inline-b4ce816b6822.tg-inline-b4ce816b6822{max-width: 100% !important}
html.tg-production-page .tg-inline-b608a8a9817a.tg-inline-b608a8a9817a.tg-inline-b608a8a9817a{min-height:62px !important}
html.tg-production-page .tg-inline-b69f1f3b6af4.tg-inline-b69f1f3b6af4.tg-inline-b69f1f3b6af4{float:right !important;margin-left:20px !important;max-width:346px !important;height:auto !important;width: 100% !important}
html.tg-production-page .tg-inline-b77e398f81c3.tg-inline-b77e398f81c3.tg-inline-b77e398f81c3{text-align: center !important;margin-bottom: 30px !important;margin-top:30px !important}
html.tg-production-page .tg-inline-b7aa1ec0049d.tg-inline-b7aa1ec0049d.tg-inline-b7aa1ec0049d{width:100% !important}
html.tg-production-page .tg-inline-b84e3df017fc.tg-inline-b84e3df017fc.tg-inline-b84e3df017fc{text-align:center !important;color:#188873 !important;font-weight:bold !important}
html.tg-production-page .tg-inline-b8b7f0c72296.tg-inline-b8b7f0c72296.tg-inline-b8b7f0c72296{background:url("/assets/design-system/production/img/Level1.jpg") !important;background-size: 790px 280px !important}
html.tg-production-page .tg-inline-b934f6425a43.tg-inline-b934f6425a43.tg-inline-b934f6425a43{text-align: center !important;line-height: 25px !important}
html.tg-production-page .tg-inline-ba44f6c5a0fa.tg-inline-ba44f6c5a0fa.tg-inline-ba44f6c5a0fa{margin:30px auto !important}
html.tg-production-page .tg-inline-bac6c67b94c0.tg-inline-bac6c67b94c0.tg-inline-bac6c67b94c0{text-align: center !important;padding:10px !important;color:#2f3c55 !important}
html.tg-production-page .tg-inline-bb1375d1db7f.tg-inline-bb1375d1db7f.tg-inline-bb1375d1db7f{font-weight: bold !important}
html.tg-production-page .tg-inline-bb721e6281ca.tg-inline-bb721e6281ca.tg-inline-bb721e6281ca{max-width: 726px !important;min-width: 726px !important}
html.tg-production-page .tg-inline-bdb188269d21.tg-inline-bdb188269d21.tg-inline-bdb188269d21{background: white !important;min-height: 676px !important;max-height: 100% !important;float: right !important;overflow: auto !important}
html.tg-production-page .tg-inline-be85ecc0ecbb.tg-inline-be85ecc0ecbb.tg-inline-be85ecc0ecbb{max-width:300px !important;width:100% !important}
html.tg-production-page .tg-inline-c0744ab21faa.tg-inline-c0744ab21faa.tg-inline-c0744ab21faa{opacity: 0.4 !important}
html.tg-production-page .tg-inline-c0d5d3e8b041.tg-inline-c0d5d3e8b041.tg-inline-c0d5d3e8b041{display: none !important}
html.tg-production-page .tg-inline-c11b05465851.tg-inline-c11b05465851.tg-inline-c11b05465851{position:absolute !important;right:-1px !important;top:-70px !important;height:70px !important;width:125px !important;background-color: white !important;border-width: .5px !important;border-style: solid !important;border-color: rgb(238, 238, 238) rgb(238, 238, 238) rgb(255, 255, 255) !important}
html.tg-production-page .tg-inline-c454abb83e45.tg-inline-c454abb83e45.tg-inline-c454abb83e45{height:10px !important;margin-left:8px !important;margin-top:-5px !important}
html.tg-production-page .tg-inline-c6fa01b3f145.tg-inline-c6fa01b3f145.tg-inline-c6fa01b3f145{font-weight:700 !important}
html.tg-production-page .tg-inline-c9ffea80a395.tg-inline-c9ffea80a395.tg-inline-c9ffea80a395{float: right !important;margin: 0 0px 0 40px !important;width:100% !important;max-width: 300px !important}
html.tg-production-page .tg-inline-cb295f4b06e0.tg-inline-cb295f4b06e0.tg-inline-cb295f4b06e0{padding:50px 0 !important}
html.tg-production-page .tg-inline-cf4554e75f78.tg-inline-cf4554e75f78.tg-inline-cf4554e75f78{margin-bottom: 25px !important;font-size: 21px !important}
html.tg-production-page .tg-inline-d07cc829f861.tg-inline-d07cc829f861.tg-inline-d07cc829f861{background:#eee !important}
html.tg-production-page .tg-inline-d1109d0e2157.tg-inline-d1109d0e2157.tg-inline-d1109d0e2157{margin:20px !important;font-size:14px !important;text-align: center !important;color: red !important}
html.tg-production-page .tg-inline-d170af68e845.tg-inline-d170af68e845.tg-inline-d170af68e845{height:135px !important;overflow: hidden !important;font-size: 15px !important}
html.tg-production-page .tg-inline-d64c8cb3359e.tg-inline-d64c8cb3359e.tg-inline-d64c8cb3359e{font-size:18px !important}
html.tg-production-page .tg-inline-d6694ec44de4.tg-inline-d6694ec44de4.tg-inline-d6694ec44de4{top:0 !important}
html.tg-production-page .tg-inline-d8fc114b7521.tg-inline-d8fc114b7521.tg-inline-d8fc114b7521{min-height:70px !important}
html.tg-production-page .tg-inline-da3c3e4241e2.tg-inline-da3c3e4241e2.tg-inline-da3c3e4241e2{background-image: url("/assets/design-system/production/img/TG_pages_col.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-da3f8db2b13f.tg-inline-da3f8db2b13f.tg-inline-da3f8db2b13f{font-weight:bold !important}
html.tg-production-page .tg-inline-dbe752fa7f4f.tg-inline-dbe752fa7f4f.tg-inline-dbe752fa7f4f{text-decoration: underline !important}
html.tg-production-page .tg-inline-de1924344eb3.tg-inline-de1924344eb3.tg-inline-de1924344eb3{margin-bottom: 30px !important}
html.tg-production-page .tg-inline-df6b746c93c8.tg-inline-df6b746c93c8.tg-inline-df6b746c93c8{position: absolute !important}
html.tg-production-page .tg-inline-df8ec398e631.tg-inline-df8ec398e631.tg-inline-df8ec398e631{color:#000 !important;margin-top: 3px !important}
html.tg-production-page .tg-inline-dfcb6c64abf5.tg-inline-dfcb6c64abf5.tg-inline-dfcb6c64abf5{background-image: url("/assets/design-system/production/img/TG_pages_confection.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-production-page .tg-inline-e0c071289aba.tg-inline-e0c071289aba.tg-inline-e0c071289aba{text-align: left !important;line-height: 20px !important}
html.tg-production-page .tg-inline-e5add33729a8.tg-inline-e5add33729a8.tg-inline-e5add33729a8{min-height:0px !important}
html.tg-production-page .tg-inline-e6b59cf3dc34.tg-inline-e6b59cf3dc34.tg-inline-e6b59cf3dc34{display: flex !important;flex-direction: column !important;width:40% !important}
html.tg-production-page .tg-inline-e6f2d1d0ad8b.tg-inline-e6f2d1d0ad8b.tg-inline-e6f2d1d0ad8b{padding-left:0px !important;padding-right:0px !important}
html.tg-production-page .tg-inline-e7de435a1d84.tg-inline-e7de435a1d84.tg-inline-e7de435a1d84{margin: auto !important;min-height: 676px !important}
html.tg-production-page .tg-inline-e88229471805.tg-inline-e88229471805.tg-inline-e88229471805{text-align: center !important;display: flex !important;width: 50% !important;margin: 0 auto !important}
html.tg-production-page .tg-inline-e976371e9906.tg-inline-e976371e9906.tg-inline-e976371e9906{height:100% !important;overflow: auto !important}
html.tg-production-page .tg-inline-ea5fada68c39.tg-inline-ea5fada68c39.tg-inline-ea5fada68c39{text-align: left !important}
html.tg-production-page .tg-inline-ec7ae998ebd7.tg-inline-ec7ae998ebd7.tg-inline-ec7ae998ebd7{display: none !important;opacity: 0.4 !important}
html.tg-production-page .tg-inline-ecfbb78629d7.tg-inline-ecfbb78629d7.tg-inline-ecfbb78629d7{cursor: pointer !important}
html.tg-production-page .tg-inline-edcaeebb440b.tg-inline-edcaeebb440b.tg-inline-edcaeebb440b{height:50px !important;justify-content: center !important}
html.tg-production-page .tg-inline-ee77297ba3f7.tg-inline-ee77297ba3f7.tg-inline-ee77297ba3f7{margin:20px !important;font-size:14px !important;display: none !important}
html.tg-production-page .tg-inline-eee3f850c9f4.tg-inline-eee3f850c9f4.tg-inline-eee3f850c9f4{margin-top:20px !important}
html.tg-production-page .tg-inline-f1ff77e5ddbb.tg-inline-f1ff77e5ddbb.tg-inline-f1ff77e5ddbb{color:red !important}
html.tg-production-page .tg-inline-f2835880c5da.tg-inline-f2835880c5da.tg-inline-f2835880c5da{margin-top: 10px !important}
html.tg-production-page .tg-inline-f2d0c36e4766.tg-inline-f2d0c36e4766.tg-inline-f2d0c36e4766{background:url("/assets/design-system/production/img/Level5.jpg") !important;background-size: 790px 280px !important}
html.tg-production-page .tg-inline-f2e85fc11ca1.tg-inline-f2e85fc11ca1.tg-inline-f2e85fc11ca1{height:70px !important;margin-bottom: 0px !important}
html.tg-production-page .tg-inline-f31b59343b99.tg-inline-f31b59343b99.tg-inline-f31b59343b99{clear:left !important}
html.tg-production-page .tg-inline-f3a7d6335983.tg-inline-f3a7d6335983.tg-inline-f3a7d6335983{background:url("/assets/design-system/production/img/Level4.jpg") !important;background-size: 790px 280px !important}
html.tg-production-page .tg-inline-f4561649741d.tg-inline-f4561649741d.tg-inline-f4561649741d{margin-top:2px !important}
html.tg-production-page .tg-inline-f4c9fbbfff1f.tg-inline-f4c9fbbfff1f.tg-inline-f4c9fbbfff1f{margin-top: 10px !important;text-align: left !important;margin-bottom: 10px !important}
html.tg-production-page .tg-inline-f6279acc7326.tg-inline-f6279acc7326.tg-inline-f6279acc7326{margin-bottom: 20px !important}
html.tg-production-page .tg-inline-faa0915ae525.tg-inline-faa0915ae525.tg-inline-faa0915ae525{text-align:center !important;width: 100% !important}
html.tg-production-page .tg-inline-fb5ec070f2bf.tg-inline-fb5ec070f2bf.tg-inline-fb5ec070f2bf{text-align: center !important}
html.tg-production-page .tg-inline-fc423ef7889d.tg-inline-fc423ef7889d.tg-inline-fc423ef7889d{font-size:13px !important;color:#5e5e5e !important;margin:10px 0 !important;text-transform:capitalize!important}
html.tg-production-page .tg-inline-fc9c1b211263.tg-inline-fc9c1b211263.tg-inline-fc9c1b211263{width:90% !important}
html.tg-production-page .tg-inline-fdc7368dc306.tg-inline-fdc7368dc306.tg-inline-fdc7368dc306{color:red !important;border-bottom: 2px solid red !important;padding-bottom: 2px !important}
html.tg-production-page .tg-inline-feb52d5390f6.tg-inline-feb52d5390f6.tg-inline-feb52d5390f6{width:35px !important}
html.tg-production-page .tg-inline-ff3cdb5a80d5.tg-inline-ff3cdb5a80d5.tg-inline-ff3cdb5a80d5{margin-bottom:30px !important;margin-top:30px !important}

/* échelle responsive du Studio — aucune valeur CSS inline dans le HTML */
.tg-space-desktop-0{--tg-space-desktop:0px}
.tg-space-desktop-1{--tg-space-desktop:1px}
.tg-space-desktop-2{--tg-space-desktop:2px}
.tg-space-desktop-3{--tg-space-desktop:3px}
.tg-space-desktop-4{--tg-space-desktop:4px}
.tg-space-desktop-5{--tg-space-desktop:5px}
.tg-space-desktop-6{--tg-space-desktop:6px}
.tg-space-desktop-7{--tg-space-desktop:7px}
.tg-space-desktop-8{--tg-space-desktop:8px}
.tg-space-desktop-9{--tg-space-desktop:9px}
.tg-space-desktop-10{--tg-space-desktop:10px}
.tg-space-desktop-11{--tg-space-desktop:11px}
.tg-space-desktop-12{--tg-space-desktop:12px}
.tg-space-desktop-13{--tg-space-desktop:13px}
.tg-space-desktop-14{--tg-space-desktop:14px}
.tg-space-desktop-15{--tg-space-desktop:15px}
.tg-space-desktop-16{--tg-space-desktop:16px}
.tg-space-desktop-17{--tg-space-desktop:17px}
.tg-space-desktop-18{--tg-space-desktop:18px}
.tg-space-desktop-19{--tg-space-desktop:19px}
.tg-space-desktop-20{--tg-space-desktop:20px}
.tg-space-desktop-21{--tg-space-desktop:21px}
.tg-space-desktop-22{--tg-space-desktop:22px}
.tg-space-desktop-23{--tg-space-desktop:23px}
.tg-space-desktop-24{--tg-space-desktop:24px}
.tg-space-desktop-25{--tg-space-desktop:25px}
.tg-space-desktop-26{--tg-space-desktop:26px}
.tg-space-desktop-27{--tg-space-desktop:27px}
.tg-space-desktop-28{--tg-space-desktop:28px}
.tg-space-desktop-29{--tg-space-desktop:29px}
.tg-space-desktop-30{--tg-space-desktop:30px}
.tg-space-desktop-31{--tg-space-desktop:31px}
.tg-space-desktop-32{--tg-space-desktop:32px}
.tg-space-desktop-33{--tg-space-desktop:33px}
.tg-space-desktop-34{--tg-space-desktop:34px}
.tg-space-desktop-35{--tg-space-desktop:35px}
.tg-space-desktop-36{--tg-space-desktop:36px}
.tg-space-desktop-37{--tg-space-desktop:37px}
.tg-space-desktop-38{--tg-space-desktop:38px}
.tg-space-desktop-39{--tg-space-desktop:39px}
.tg-space-desktop-40{--tg-space-desktop:40px}
.tg-space-desktop-41{--tg-space-desktop:41px}
.tg-space-desktop-42{--tg-space-desktop:42px}
.tg-space-desktop-43{--tg-space-desktop:43px}
.tg-space-desktop-44{--tg-space-desktop:44px}
.tg-space-desktop-45{--tg-space-desktop:45px}
.tg-space-desktop-46{--tg-space-desktop:46px}
.tg-space-desktop-47{--tg-space-desktop:47px}
.tg-space-desktop-48{--tg-space-desktop:48px}
.tg-space-desktop-49{--tg-space-desktop:49px}
.tg-space-desktop-50{--tg-space-desktop:50px}
.tg-space-desktop-51{--tg-space-desktop:51px}
.tg-space-desktop-52{--tg-space-desktop:52px}
.tg-space-desktop-53{--tg-space-desktop:53px}
.tg-space-desktop-54{--tg-space-desktop:54px}
.tg-space-desktop-55{--tg-space-desktop:55px}
.tg-space-desktop-56{--tg-space-desktop:56px}
.tg-space-desktop-57{--tg-space-desktop:57px}
.tg-space-desktop-58{--tg-space-desktop:58px}
.tg-space-desktop-59{--tg-space-desktop:59px}
.tg-space-desktop-60{--tg-space-desktop:60px}
.tg-space-desktop-61{--tg-space-desktop:61px}
.tg-space-desktop-62{--tg-space-desktop:62px}
.tg-space-desktop-63{--tg-space-desktop:63px}
.tg-space-desktop-64{--tg-space-desktop:64px}
.tg-space-desktop-65{--tg-space-desktop:65px}
.tg-space-desktop-66{--tg-space-desktop:66px}
.tg-space-desktop-67{--tg-space-desktop:67px}
.tg-space-desktop-68{--tg-space-desktop:68px}
.tg-space-desktop-69{--tg-space-desktop:69px}
.tg-space-desktop-70{--tg-space-desktop:70px}
.tg-space-desktop-71{--tg-space-desktop:71px}
.tg-space-desktop-72{--tg-space-desktop:72px}
.tg-space-desktop-73{--tg-space-desktop:73px}
.tg-space-desktop-74{--tg-space-desktop:74px}
.tg-space-desktop-75{--tg-space-desktop:75px}
.tg-space-desktop-76{--tg-space-desktop:76px}
.tg-space-desktop-77{--tg-space-desktop:77px}
.tg-space-desktop-78{--tg-space-desktop:78px}
.tg-space-desktop-79{--tg-space-desktop:79px}
.tg-space-desktop-80{--tg-space-desktop:80px}
.tg-space-desktop-81{--tg-space-desktop:81px}
.tg-space-desktop-82{--tg-space-desktop:82px}
.tg-space-desktop-83{--tg-space-desktop:83px}
.tg-space-desktop-84{--tg-space-desktop:84px}
.tg-space-desktop-85{--tg-space-desktop:85px}
.tg-space-desktop-86{--tg-space-desktop:86px}
.tg-space-desktop-87{--tg-space-desktop:87px}
.tg-space-desktop-88{--tg-space-desktop:88px}
.tg-space-desktop-89{--tg-space-desktop:89px}
.tg-space-desktop-90{--tg-space-desktop:90px}
.tg-space-desktop-91{--tg-space-desktop:91px}
.tg-space-desktop-92{--tg-space-desktop:92px}
.tg-space-desktop-93{--tg-space-desktop:93px}
.tg-space-desktop-94{--tg-space-desktop:94px}
.tg-space-desktop-95{--tg-space-desktop:95px}
.tg-space-desktop-96{--tg-space-desktop:96px}
.tg-space-desktop-97{--tg-space-desktop:97px}
.tg-space-desktop-98{--tg-space-desktop:98px}
.tg-space-desktop-99{--tg-space-desktop:99px}
.tg-space-desktop-100{--tg-space-desktop:100px}
.tg-space-desktop-101{--tg-space-desktop:101px}
.tg-space-desktop-102{--tg-space-desktop:102px}
.tg-space-desktop-103{--tg-space-desktop:103px}
.tg-space-desktop-104{--tg-space-desktop:104px}
.tg-space-desktop-105{--tg-space-desktop:105px}
.tg-space-desktop-106{--tg-space-desktop:106px}
.tg-space-desktop-107{--tg-space-desktop:107px}
.tg-space-desktop-108{--tg-space-desktop:108px}
.tg-space-desktop-109{--tg-space-desktop:109px}
.tg-space-desktop-110{--tg-space-desktop:110px}
.tg-space-desktop-111{--tg-space-desktop:111px}
.tg-space-desktop-112{--tg-space-desktop:112px}
.tg-space-desktop-113{--tg-space-desktop:113px}
.tg-space-desktop-114{--tg-space-desktop:114px}
.tg-space-desktop-115{--tg-space-desktop:115px}
.tg-space-desktop-116{--tg-space-desktop:116px}
.tg-space-desktop-117{--tg-space-desktop:117px}
.tg-space-desktop-118{--tg-space-desktop:118px}
.tg-space-desktop-119{--tg-space-desktop:119px}
.tg-space-desktop-120{--tg-space-desktop:120px}
.tg-space-desktop-121{--tg-space-desktop:121px}
.tg-space-desktop-122{--tg-space-desktop:122px}
.tg-space-desktop-123{--tg-space-desktop:123px}
.tg-space-desktop-124{--tg-space-desktop:124px}
.tg-space-desktop-125{--tg-space-desktop:125px}
.tg-space-desktop-126{--tg-space-desktop:126px}
.tg-space-desktop-127{--tg-space-desktop:127px}
.tg-space-desktop-128{--tg-space-desktop:128px}
.tg-space-desktop-129{--tg-space-desktop:129px}
.tg-space-desktop-130{--tg-space-desktop:130px}
.tg-space-desktop-131{--tg-space-desktop:131px}
.tg-space-desktop-132{--tg-space-desktop:132px}
.tg-space-desktop-133{--tg-space-desktop:133px}
.tg-space-desktop-134{--tg-space-desktop:134px}
.tg-space-desktop-135{--tg-space-desktop:135px}
.tg-space-desktop-136{--tg-space-desktop:136px}
.tg-space-desktop-137{--tg-space-desktop:137px}
.tg-space-desktop-138{--tg-space-desktop:138px}
.tg-space-desktop-139{--tg-space-desktop:139px}
.tg-space-desktop-140{--tg-space-desktop:140px}
.tg-space-desktop-141{--tg-space-desktop:141px}
.tg-space-desktop-142{--tg-space-desktop:142px}
.tg-space-desktop-143{--tg-space-desktop:143px}
.tg-space-desktop-144{--tg-space-desktop:144px}
.tg-space-desktop-145{--tg-space-desktop:145px}
.tg-space-desktop-146{--tg-space-desktop:146px}
.tg-space-desktop-147{--tg-space-desktop:147px}
.tg-space-desktop-148{--tg-space-desktop:148px}
.tg-space-desktop-149{--tg-space-desktop:149px}
.tg-space-desktop-150{--tg-space-desktop:150px}
.tg-space-desktop-151{--tg-space-desktop:151px}
.tg-space-desktop-152{--tg-space-desktop:152px}
.tg-space-desktop-153{--tg-space-desktop:153px}
.tg-space-desktop-154{--tg-space-desktop:154px}
.tg-space-desktop-155{--tg-space-desktop:155px}
.tg-space-desktop-156{--tg-space-desktop:156px}
.tg-space-desktop-157{--tg-space-desktop:157px}
.tg-space-desktop-158{--tg-space-desktop:158px}
.tg-space-desktop-159{--tg-space-desktop:159px}
.tg-space-desktop-160{--tg-space-desktop:160px}
.tg-space-tablet-0{--tg-space-tablet:0px}
.tg-space-tablet-1{--tg-space-tablet:1px}
.tg-space-tablet-2{--tg-space-tablet:2px}
.tg-space-tablet-3{--tg-space-tablet:3px}
.tg-space-tablet-4{--tg-space-tablet:4px}
.tg-space-tablet-5{--tg-space-tablet:5px}
.tg-space-tablet-6{--tg-space-tablet:6px}
.tg-space-tablet-7{--tg-space-tablet:7px}
.tg-space-tablet-8{--tg-space-tablet:8px}
.tg-space-tablet-9{--tg-space-tablet:9px}
.tg-space-tablet-10{--tg-space-tablet:10px}
.tg-space-tablet-11{--tg-space-tablet:11px}
.tg-space-tablet-12{--tg-space-tablet:12px}
.tg-space-tablet-13{--tg-space-tablet:13px}
.tg-space-tablet-14{--tg-space-tablet:14px}
.tg-space-tablet-15{--tg-space-tablet:15px}
.tg-space-tablet-16{--tg-space-tablet:16px}
.tg-space-tablet-17{--tg-space-tablet:17px}
.tg-space-tablet-18{--tg-space-tablet:18px}
.tg-space-tablet-19{--tg-space-tablet:19px}
.tg-space-tablet-20{--tg-space-tablet:20px}
.tg-space-tablet-21{--tg-space-tablet:21px}
.tg-space-tablet-22{--tg-space-tablet:22px}
.tg-space-tablet-23{--tg-space-tablet:23px}
.tg-space-tablet-24{--tg-space-tablet:24px}
.tg-space-tablet-25{--tg-space-tablet:25px}
.tg-space-tablet-26{--tg-space-tablet:26px}
.tg-space-tablet-27{--tg-space-tablet:27px}
.tg-space-tablet-28{--tg-space-tablet:28px}
.tg-space-tablet-29{--tg-space-tablet:29px}
.tg-space-tablet-30{--tg-space-tablet:30px}
.tg-space-tablet-31{--tg-space-tablet:31px}
.tg-space-tablet-32{--tg-space-tablet:32px}
.tg-space-tablet-33{--tg-space-tablet:33px}
.tg-space-tablet-34{--tg-space-tablet:34px}
.tg-space-tablet-35{--tg-space-tablet:35px}
.tg-space-tablet-36{--tg-space-tablet:36px}
.tg-space-tablet-37{--tg-space-tablet:37px}
.tg-space-tablet-38{--tg-space-tablet:38px}
.tg-space-tablet-39{--tg-space-tablet:39px}
.tg-space-tablet-40{--tg-space-tablet:40px}
.tg-space-tablet-41{--tg-space-tablet:41px}
.tg-space-tablet-42{--tg-space-tablet:42px}
.tg-space-tablet-43{--tg-space-tablet:43px}
.tg-space-tablet-44{--tg-space-tablet:44px}
.tg-space-tablet-45{--tg-space-tablet:45px}
.tg-space-tablet-46{--tg-space-tablet:46px}
.tg-space-tablet-47{--tg-space-tablet:47px}
.tg-space-tablet-48{--tg-space-tablet:48px}
.tg-space-tablet-49{--tg-space-tablet:49px}
.tg-space-tablet-50{--tg-space-tablet:50px}
.tg-space-tablet-51{--tg-space-tablet:51px}
.tg-space-tablet-52{--tg-space-tablet:52px}
.tg-space-tablet-53{--tg-space-tablet:53px}
.tg-space-tablet-54{--tg-space-tablet:54px}
.tg-space-tablet-55{--tg-space-tablet:55px}
.tg-space-tablet-56{--tg-space-tablet:56px}
.tg-space-tablet-57{--tg-space-tablet:57px}
.tg-space-tablet-58{--tg-space-tablet:58px}
.tg-space-tablet-59{--tg-space-tablet:59px}
.tg-space-tablet-60{--tg-space-tablet:60px}
.tg-space-tablet-61{--tg-space-tablet:61px}
.tg-space-tablet-62{--tg-space-tablet:62px}
.tg-space-tablet-63{--tg-space-tablet:63px}
.tg-space-tablet-64{--tg-space-tablet:64px}
.tg-space-tablet-65{--tg-space-tablet:65px}
.tg-space-tablet-66{--tg-space-tablet:66px}
.tg-space-tablet-67{--tg-space-tablet:67px}
.tg-space-tablet-68{--tg-space-tablet:68px}
.tg-space-tablet-69{--tg-space-tablet:69px}
.tg-space-tablet-70{--tg-space-tablet:70px}
.tg-space-tablet-71{--tg-space-tablet:71px}
.tg-space-tablet-72{--tg-space-tablet:72px}
.tg-space-tablet-73{--tg-space-tablet:73px}
.tg-space-tablet-74{--tg-space-tablet:74px}
.tg-space-tablet-75{--tg-space-tablet:75px}
.tg-space-tablet-76{--tg-space-tablet:76px}
.tg-space-tablet-77{--tg-space-tablet:77px}
.tg-space-tablet-78{--tg-space-tablet:78px}
.tg-space-tablet-79{--tg-space-tablet:79px}
.tg-space-tablet-80{--tg-space-tablet:80px}
.tg-space-tablet-81{--tg-space-tablet:81px}
.tg-space-tablet-82{--tg-space-tablet:82px}
.tg-space-tablet-83{--tg-space-tablet:83px}
.tg-space-tablet-84{--tg-space-tablet:84px}
.tg-space-tablet-85{--tg-space-tablet:85px}
.tg-space-tablet-86{--tg-space-tablet:86px}
.tg-space-tablet-87{--tg-space-tablet:87px}
.tg-space-tablet-88{--tg-space-tablet:88px}
.tg-space-tablet-89{--tg-space-tablet:89px}
.tg-space-tablet-90{--tg-space-tablet:90px}
.tg-space-tablet-91{--tg-space-tablet:91px}
.tg-space-tablet-92{--tg-space-tablet:92px}
.tg-space-tablet-93{--tg-space-tablet:93px}
.tg-space-tablet-94{--tg-space-tablet:94px}
.tg-space-tablet-95{--tg-space-tablet:95px}
.tg-space-tablet-96{--tg-space-tablet:96px}
.tg-space-tablet-97{--tg-space-tablet:97px}
.tg-space-tablet-98{--tg-space-tablet:98px}
.tg-space-tablet-99{--tg-space-tablet:99px}
.tg-space-tablet-100{--tg-space-tablet:100px}
.tg-space-tablet-101{--tg-space-tablet:101px}
.tg-space-tablet-102{--tg-space-tablet:102px}
.tg-space-tablet-103{--tg-space-tablet:103px}
.tg-space-tablet-104{--tg-space-tablet:104px}
.tg-space-tablet-105{--tg-space-tablet:105px}
.tg-space-tablet-106{--tg-space-tablet:106px}
.tg-space-tablet-107{--tg-space-tablet:107px}
.tg-space-tablet-108{--tg-space-tablet:108px}
.tg-space-tablet-109{--tg-space-tablet:109px}
.tg-space-tablet-110{--tg-space-tablet:110px}
.tg-space-tablet-111{--tg-space-tablet:111px}
.tg-space-tablet-112{--tg-space-tablet:112px}
.tg-space-tablet-113{--tg-space-tablet:113px}
.tg-space-tablet-114{--tg-space-tablet:114px}
.tg-space-tablet-115{--tg-space-tablet:115px}
.tg-space-tablet-116{--tg-space-tablet:116px}
.tg-space-tablet-117{--tg-space-tablet:117px}
.tg-space-tablet-118{--tg-space-tablet:118px}
.tg-space-tablet-119{--tg-space-tablet:119px}
.tg-space-tablet-120{--tg-space-tablet:120px}
.tg-space-tablet-121{--tg-space-tablet:121px}
.tg-space-tablet-122{--tg-space-tablet:122px}
.tg-space-tablet-123{--tg-space-tablet:123px}
.tg-space-tablet-124{--tg-space-tablet:124px}
.tg-space-tablet-125{--tg-space-tablet:125px}
.tg-space-tablet-126{--tg-space-tablet:126px}
.tg-space-tablet-127{--tg-space-tablet:127px}
.tg-space-tablet-128{--tg-space-tablet:128px}
.tg-space-tablet-129{--tg-space-tablet:129px}
.tg-space-tablet-130{--tg-space-tablet:130px}
.tg-space-tablet-131{--tg-space-tablet:131px}
.tg-space-tablet-132{--tg-space-tablet:132px}
.tg-space-tablet-133{--tg-space-tablet:133px}
.tg-space-tablet-134{--tg-space-tablet:134px}
.tg-space-tablet-135{--tg-space-tablet:135px}
.tg-space-tablet-136{--tg-space-tablet:136px}
.tg-space-tablet-137{--tg-space-tablet:137px}
.tg-space-tablet-138{--tg-space-tablet:138px}
.tg-space-tablet-139{--tg-space-tablet:139px}
.tg-space-tablet-140{--tg-space-tablet:140px}
.tg-space-tablet-141{--tg-space-tablet:141px}
.tg-space-tablet-142{--tg-space-tablet:142px}
.tg-space-tablet-143{--tg-space-tablet:143px}
.tg-space-tablet-144{--tg-space-tablet:144px}
.tg-space-tablet-145{--tg-space-tablet:145px}
.tg-space-tablet-146{--tg-space-tablet:146px}
.tg-space-tablet-147{--tg-space-tablet:147px}
.tg-space-tablet-148{--tg-space-tablet:148px}
.tg-space-tablet-149{--tg-space-tablet:149px}
.tg-space-tablet-150{--tg-space-tablet:150px}
.tg-space-tablet-151{--tg-space-tablet:151px}
.tg-space-tablet-152{--tg-space-tablet:152px}
.tg-space-tablet-153{--tg-space-tablet:153px}
.tg-space-tablet-154{--tg-space-tablet:154px}
.tg-space-tablet-155{--tg-space-tablet:155px}
.tg-space-tablet-156{--tg-space-tablet:156px}
.tg-space-tablet-157{--tg-space-tablet:157px}
.tg-space-tablet-158{--tg-space-tablet:158px}
.tg-space-tablet-159{--tg-space-tablet:159px}
.tg-space-tablet-160{--tg-space-tablet:160px}
.tg-space-mobile-0{--tg-space-mobile:0px}
.tg-space-mobile-1{--tg-space-mobile:1px}
.tg-space-mobile-2{--tg-space-mobile:2px}
.tg-space-mobile-3{--tg-space-mobile:3px}
.tg-space-mobile-4{--tg-space-mobile:4px}
.tg-space-mobile-5{--tg-space-mobile:5px}
.tg-space-mobile-6{--tg-space-mobile:6px}
.tg-space-mobile-7{--tg-space-mobile:7px}
.tg-space-mobile-8{--tg-space-mobile:8px}
.tg-space-mobile-9{--tg-space-mobile:9px}
.tg-space-mobile-10{--tg-space-mobile:10px}
.tg-space-mobile-11{--tg-space-mobile:11px}
.tg-space-mobile-12{--tg-space-mobile:12px}
.tg-space-mobile-13{--tg-space-mobile:13px}
.tg-space-mobile-14{--tg-space-mobile:14px}
.tg-space-mobile-15{--tg-space-mobile:15px}
.tg-space-mobile-16{--tg-space-mobile:16px}
.tg-space-mobile-17{--tg-space-mobile:17px}
.tg-space-mobile-18{--tg-space-mobile:18px}
.tg-space-mobile-19{--tg-space-mobile:19px}
.tg-space-mobile-20{--tg-space-mobile:20px}
.tg-space-mobile-21{--tg-space-mobile:21px}
.tg-space-mobile-22{--tg-space-mobile:22px}
.tg-space-mobile-23{--tg-space-mobile:23px}
.tg-space-mobile-24{--tg-space-mobile:24px}
.tg-space-mobile-25{--tg-space-mobile:25px}
.tg-space-mobile-26{--tg-space-mobile:26px}
.tg-space-mobile-27{--tg-space-mobile:27px}
.tg-space-mobile-28{--tg-space-mobile:28px}
.tg-space-mobile-29{--tg-space-mobile:29px}
.tg-space-mobile-30{--tg-space-mobile:30px}
.tg-space-mobile-31{--tg-space-mobile:31px}
.tg-space-mobile-32{--tg-space-mobile:32px}
.tg-space-mobile-33{--tg-space-mobile:33px}
.tg-space-mobile-34{--tg-space-mobile:34px}
.tg-space-mobile-35{--tg-space-mobile:35px}
.tg-space-mobile-36{--tg-space-mobile:36px}
.tg-space-mobile-37{--tg-space-mobile:37px}
.tg-space-mobile-38{--tg-space-mobile:38px}
.tg-space-mobile-39{--tg-space-mobile:39px}
.tg-space-mobile-40{--tg-space-mobile:40px}
.tg-space-mobile-41{--tg-space-mobile:41px}
.tg-space-mobile-42{--tg-space-mobile:42px}
.tg-space-mobile-43{--tg-space-mobile:43px}
.tg-space-mobile-44{--tg-space-mobile:44px}
.tg-space-mobile-45{--tg-space-mobile:45px}
.tg-space-mobile-46{--tg-space-mobile:46px}
.tg-space-mobile-47{--tg-space-mobile:47px}
.tg-space-mobile-48{--tg-space-mobile:48px}
.tg-space-mobile-49{--tg-space-mobile:49px}
.tg-space-mobile-50{--tg-space-mobile:50px}
.tg-space-mobile-51{--tg-space-mobile:51px}
.tg-space-mobile-52{--tg-space-mobile:52px}
.tg-space-mobile-53{--tg-space-mobile:53px}
.tg-space-mobile-54{--tg-space-mobile:54px}
.tg-space-mobile-55{--tg-space-mobile:55px}
.tg-space-mobile-56{--tg-space-mobile:56px}
.tg-space-mobile-57{--tg-space-mobile:57px}
.tg-space-mobile-58{--tg-space-mobile:58px}
.tg-space-mobile-59{--tg-space-mobile:59px}
.tg-space-mobile-60{--tg-space-mobile:60px}
.tg-space-mobile-61{--tg-space-mobile:61px}
.tg-space-mobile-62{--tg-space-mobile:62px}
.tg-space-mobile-63{--tg-space-mobile:63px}
.tg-space-mobile-64{--tg-space-mobile:64px}
.tg-space-mobile-65{--tg-space-mobile:65px}
.tg-space-mobile-66{--tg-space-mobile:66px}
.tg-space-mobile-67{--tg-space-mobile:67px}
.tg-space-mobile-68{--tg-space-mobile:68px}
.tg-space-mobile-69{--tg-space-mobile:69px}
.tg-space-mobile-70{--tg-space-mobile:70px}
.tg-space-mobile-71{--tg-space-mobile:71px}
.tg-space-mobile-72{--tg-space-mobile:72px}
.tg-space-mobile-73{--tg-space-mobile:73px}
.tg-space-mobile-74{--tg-space-mobile:74px}
.tg-space-mobile-75{--tg-space-mobile:75px}
.tg-space-mobile-76{--tg-space-mobile:76px}
.tg-space-mobile-77{--tg-space-mobile:77px}
.tg-space-mobile-78{--tg-space-mobile:78px}
.tg-space-mobile-79{--tg-space-mobile:79px}
.tg-space-mobile-80{--tg-space-mobile:80px}
.tg-space-mobile-81{--tg-space-mobile:81px}
.tg-space-mobile-82{--tg-space-mobile:82px}
.tg-space-mobile-83{--tg-space-mobile:83px}
.tg-space-mobile-84{--tg-space-mobile:84px}
.tg-space-mobile-85{--tg-space-mobile:85px}
.tg-space-mobile-86{--tg-space-mobile:86px}
.tg-space-mobile-87{--tg-space-mobile:87px}
.tg-space-mobile-88{--tg-space-mobile:88px}
.tg-space-mobile-89{--tg-space-mobile:89px}
.tg-space-mobile-90{--tg-space-mobile:90px}
.tg-space-mobile-91{--tg-space-mobile:91px}
.tg-space-mobile-92{--tg-space-mobile:92px}
.tg-space-mobile-93{--tg-space-mobile:93px}
.tg-space-mobile-94{--tg-space-mobile:94px}
.tg-space-mobile-95{--tg-space-mobile:95px}
.tg-space-mobile-96{--tg-space-mobile:96px}
.tg-space-mobile-97{--tg-space-mobile:97px}
.tg-space-mobile-98{--tg-space-mobile:98px}
.tg-space-mobile-99{--tg-space-mobile:99px}
.tg-space-mobile-100{--tg-space-mobile:100px}
.tg-space-mobile-101{--tg-space-mobile:101px}
.tg-space-mobile-102{--tg-space-mobile:102px}
.tg-space-mobile-103{--tg-space-mobile:103px}
.tg-space-mobile-104{--tg-space-mobile:104px}
.tg-space-mobile-105{--tg-space-mobile:105px}
.tg-space-mobile-106{--tg-space-mobile:106px}
.tg-space-mobile-107{--tg-space-mobile:107px}
.tg-space-mobile-108{--tg-space-mobile:108px}
.tg-space-mobile-109{--tg-space-mobile:109px}
.tg-space-mobile-110{--tg-space-mobile:110px}
.tg-space-mobile-111{--tg-space-mobile:111px}
.tg-space-mobile-112{--tg-space-mobile:112px}
.tg-space-mobile-113{--tg-space-mobile:113px}
.tg-space-mobile-114{--tg-space-mobile:114px}
.tg-space-mobile-115{--tg-space-mobile:115px}
.tg-space-mobile-116{--tg-space-mobile:116px}
.tg-space-mobile-117{--tg-space-mobile:117px}
.tg-space-mobile-118{--tg-space-mobile:118px}
.tg-space-mobile-119{--tg-space-mobile:119px}
.tg-space-mobile-120{--tg-space-mobile:120px}
.tg-space-mobile-121{--tg-space-mobile:121px}
.tg-space-mobile-122{--tg-space-mobile:122px}
.tg-space-mobile-123{--tg-space-mobile:123px}
.tg-space-mobile-124{--tg-space-mobile:124px}
.tg-space-mobile-125{--tg-space-mobile:125px}
.tg-space-mobile-126{--tg-space-mobile:126px}
.tg-space-mobile-127{--tg-space-mobile:127px}
.tg-space-mobile-128{--tg-space-mobile:128px}
.tg-space-mobile-129{--tg-space-mobile:129px}
.tg-space-mobile-130{--tg-space-mobile:130px}
.tg-space-mobile-131{--tg-space-mobile:131px}
.tg-space-mobile-132{--tg-space-mobile:132px}
.tg-space-mobile-133{--tg-space-mobile:133px}
.tg-space-mobile-134{--tg-space-mobile:134px}
.tg-space-mobile-135{--tg-space-mobile:135px}
.tg-space-mobile-136{--tg-space-mobile:136px}
.tg-space-mobile-137{--tg-space-mobile:137px}
.tg-space-mobile-138{--tg-space-mobile:138px}
.tg-space-mobile-139{--tg-space-mobile:139px}
.tg-space-mobile-140{--tg-space-mobile:140px}
.tg-space-mobile-141{--tg-space-mobile:141px}
.tg-space-mobile-142{--tg-space-mobile:142px}
.tg-space-mobile-143{--tg-space-mobile:143px}
.tg-space-mobile-144{--tg-space-mobile:144px}
.tg-space-mobile-145{--tg-space-mobile:145px}
.tg-space-mobile-146{--tg-space-mobile:146px}
.tg-space-mobile-147{--tg-space-mobile:147px}
.tg-space-mobile-148{--tg-space-mobile:148px}
.tg-space-mobile-149{--tg-space-mobile:149px}
.tg-space-mobile-150{--tg-space-mobile:150px}
.tg-space-mobile-151{--tg-space-mobile:151px}
.tg-space-mobile-152{--tg-space-mobile:152px}
.tg-space-mobile-153{--tg-space-mobile:153px}
.tg-space-mobile-154{--tg-space-mobile:154px}
.tg-space-mobile-155{--tg-space-mobile:155px}
.tg-space-mobile-156{--tg-space-mobile:156px}
.tg-space-mobile-157{--tg-space-mobile:157px}
.tg-space-mobile-158{--tg-space-mobile:158px}
.tg-space-mobile-159{--tg-space-mobile:159px}
.tg-space-mobile-160{--tg-space-mobile:160px}

/* source: public/assets/css/store.css */
.store { background: var(--color-surface); }
.announcement { background: var(--color-primary); color: var(--color-white); font-size: var(--font-size-xs); letter-spacing: .05em; padding: .45rem; text-align: center; }
.store-header { background: var(--color-surface); border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: var(--z-header); }
.store-header__inner { align-items: center; display: grid; grid-template-columns: 1fr auto 1fr; min-height: 76px; }
.brand { align-items: center; display: inline-flex; gap: var(--space-3); width: fit-content; }
.brand__mark { align-items: center; border: 1px solid var(--color-primary); display: inline-flex; font-family: var(--font-family-display); font-size: var(--font-size-sm); height: 34px; justify-content: center; width: 34px; }
.brand__name { font-size: .82rem; font-weight: 800; letter-spacing: .15em; }
.store-nav { display: flex; font-size: var(--font-size-sm); font-weight: 600; gap: var(--space-8); }
.store-nav a, .store-action { position: relative; }
.store-nav a::after { background: var(--color-primary); bottom: -.5rem; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform var(--transition-fast); width: 100%; }
.store-nav a:hover::after { transform: scaleX(1); }
.store-actions { align-items: center; display: flex; gap: var(--space-5); justify-content: flex-end; }
.cart-link { align-items: center; display: inline-flex; font-size: var(--font-size-sm); font-weight: 700; gap: var(--space-2); }
.cart-link__count { align-items: center; background: var(--color-primary); border-radius: var(--radius-round); color: var(--color-white); display: inline-flex; font-size: var(--font-size-xs); height: 24px; justify-content: center; min-width: 24px; padding-inline: var(--space-1); }
.store-action { font-size: var(--font-size-sm); font-weight: 650; }
.hero { background: var(--color-primary); color: var(--color-white); min-height: 680px; overflow: hidden; position: relative; }
.hero__media { background: linear-gradient(90deg, var(--color-primary) 0%, transparent 68%), url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") center/cover; inset: 0; opacity: .82; position: absolute; }
.hero__content { align-items: flex-start; display: flex; flex-direction: column; justify-content: center; min-height: 680px; position: relative; }
.hero h1 { max-width: 800px; }
.hero__content > p:not(.eyebrow) { color: var(--color-text-light); font-size: var(--font-size-lg); margin-top: var(--space-6); max-width: 570px; }
.hero__actions { align-items: center; display: flex; gap: var(--space-6); margin-top: var(--space-8); }
.trust-strip { border-bottom: 1px solid var(--color-border); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { border-right: 1px solid var(--color-border); display: grid; grid-template-columns: auto 1fr; padding: var(--space-8) var(--space-6); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip span { color: var(--color-accent); font-family: var(--font-family-display); font-size: var(--font-size-xl); grid-row: span 2; padding-right: var(--space-4); }
.trust-strip strong { font-size: var(--font-size-sm); }
.trust-strip p { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.section-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: var(--space-10); }
.section-heading .eyebrow { margin-bottom: var(--space-3); }
.product-grid { display: grid; gap: var(--space-6); grid-template-columns: repeat(4, 1fr); }
.product-card__media { aspect-ratio: 3/4; background: var(--color-surface-soft); display: block; overflow: hidden; position: relative; }
.product-card__media img { height: 100%; object-fit: cover; transition: transform var(--transition-normal); width: 100%; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__quick { background: var(--color-surface); bottom: var(--space-3); font-size: var(--font-size-xs); font-weight: 700; left: 50%; opacity: 0; padding: .65rem 1rem; position: absolute; transform: translate(-50%, 8px); transition: opacity var(--transition-fast), transform var(--transition-fast); white-space: nowrap; }
.product-card:hover .product-card__quick { opacity: 1; transform: translate(-50%, 0); }
.product-card__placeholder { align-items: center; color: var(--color-border-strong); display: flex; font-family: var(--font-family-display); font-size: 4rem; height: 100%; justify-content: center; }
.product-card__body { align-items: start; display: flex; gap: var(--space-4); justify-content: space-between; padding-top: var(--space-4); }
.product-card h3 { font-family: var(--font-family); font-size: var(--font-size-md); font-weight: 650; line-height: 1.35; margin-top: var(--space-1); }
.product-card__price { font-weight: 750; white-space: nowrap; }
.craft { background: var(--color-surface-soft); display: grid; grid-template-columns: 1.1fr .9fr; min-height: 620px; }
.craft__image { background: url("/assets/design-system/production/img/TG_pages_confection.jpg") center/cover; }
.craft__content { align-items: flex-start; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vw, 8rem); }
.craft__content h2 { margin: var(--space-4) 0 var(--space-6); max-width: 560px; }
.craft__content p:not(.eyebrow) { color: var(--color-text-muted); margin-bottom: var(--space-8); max-width: 520px; }
.catalog-hero { background: var(--color-surface-soft); padding: var(--space-20) 0 var(--space-16); }
.catalog-hero h1 { margin: var(--space-3) 0 var(--space-5); }
.catalog-hero p:last-child { color: var(--color-text-muted); max-width: 600px; }
.section--catalog { padding-top: var(--space-10); }
.catalog-toolbar { align-items: center; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; margin-bottom: var(--space-8); padding-bottom: var(--space-5); }
.search-field { align-items: center; display: flex; max-width: 480px; width: 100%; }
.search-field svg { fill: none; height: 20px; margin-right: -28px; position: relative; stroke: currentColor; stroke-width: 1.7; width: 20px; z-index: 1; }
.search-field input { border: 0; border-bottom: 1px solid transparent; min-height: 42px; padding: .6rem .6rem .6rem 36px; width: 100%; }
.search-field input:focus { border-bottom-color: var(--color-primary); outline: 0; }
.catalog-count { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.catalog-count strong { color: var(--color-text); }
.product-grid--catalog { grid-template-columns: repeat(4, 1fr); row-gap: var(--space-12); }
.breadcrumb { color: var(--color-text-muted); display: flex; font-size: var(--font-size-xs); gap: var(--space-2); padding-block: var(--space-5); }
.product-detail { display: grid; gap: clamp(2rem, 6vw, 7rem); grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); padding-bottom: var(--space-20); }
.product-detail__gallery { background: var(--color-surface-soft); min-height: 620px; }
.product-detail__gallery img { height: 100%; max-height: 760px; object-fit: cover; width: 100%; }
.product-detail__placeholder { align-items: center; color: var(--color-border-strong); display: flex; font-family: var(--font-family-display); font-size: 6rem; height: 100%; justify-content: center; }
.product-detail__info { padding-top: var(--space-8); }
.product-detail__info h1 { font-size: clamp(2.2rem, 4vw, 4rem); margin: var(--space-4) 0; }
.product-detail__price { font-size: 21px; font-weight: 750; padding-bottom: var(--space-6); }
.product-detail__price span { color: var(--color-text-muted); font-size: 21px; font-weight: 400; }
.product-detail__lead { border-top: 1px solid var(--color-border); color: var(--color-text-muted); padding-top: var(--space-6); }
.product-detail__benefits { display: grid; gap: var(--space-3); margin: var(--space-8) 0; }
.product-detail__benefits div { align-items: center; display: flex; font-size: var(--font-size-sm); gap: var(--space-3); }
.product-detail__benefits span { align-items: center; background: var(--color-success-soft); border-radius: 50%; color: var(--color-success); display: inline-flex; height: 24px; justify-content: center; width: 24px; }
.product-detail__note { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-3); text-align: center; }
.add-to-cart { display: grid; gap: var(--space-3); grid-template-columns: 110px 1fr; }
.quantity-field { display: grid; gap: var(--space-1); }
.quantity-field span { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.quantity-field input { border: 1px solid var(--color-border); border-radius: var(--radius-sm); min-height: 52px; padding: var(--space-3); width: 100%; }
.page-hero--compact { padding-block: var(--space-12); }
.cart-alert { margin-bottom: var(--space-5); }
.cart-layout { align-items: start; display: grid; gap: var(--space-8); grid-template-columns: minmax(0, 1fr) 360px; }
.cart-items { border-top: 1px solid var(--color-border); }
.cart-item { align-items: center; border-bottom: 1px solid var(--color-border); display: grid; gap: var(--space-5); grid-template-columns: 100px minmax(0, 1fr) 120px 100px 28px; padding-block: var(--space-5); }
.cart-item__image { aspect-ratio: 3/4; background: var(--color-surface-soft); overflow: hidden; }
.cart-item__image img { height: 100%; object-fit: cover; width: 100%; }
.cart-item__image span { align-items: center; color: var(--color-border-strong); display: flex; height: 100%; justify-content: center; }
.cart-item__content h2 { font-family: var(--font-family); font-size: var(--font-size-md); font-weight: 700; margin-block: var(--space-1); }
.cart-item__content > p:last-child { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.cart-item__quantity { display: grid; gap: var(--space-2); }
.cart-item__quantity label { display: grid; gap: var(--space-1); }
.cart-item__quantity label span { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.cart-item__quantity input { border: 1px solid var(--color-border); border-radius: var(--radius-sm); max-width: 88px; min-height: 38px; padding: var(--space-2); }
.cart-item__quantity .text-link { background: transparent; border: 0; color: var(--color-primary); font-size: var(--font-size-xs); justify-content: flex-start; padding: 0; }
.cart-item__price { font-weight: 750; text-align: right; }
.cart-item__remove { background: transparent; border: 0; color: var(--color-text-muted); font-size: var(--font-size-xl); }
.cart-summary { background: var(--color-surface-soft); padding: var(--space-6); position: sticky; top: 100px; }
.cart-summary h2 { font-size: var(--font-size-2xl); margin: var(--space-2) 0 var(--space-6); }
.cart-summary dl { display: grid; gap: var(--space-3); margin: 0 0 var(--space-6); }
.cart-summary dl div { display: flex; font-size: var(--font-size-sm); justify-content: space-between; }
.cart-summary__total { border-top: 1px solid var(--color-border-strong); font-size: var(--font-size-md) !important; font-weight: 750; padding-top: var(--space-4); }
.cart-summary > p:last-child { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-3); text-align: center; }
.checkout-layout { align-items: start; display: grid; gap: var(--space-12); grid-template-columns: minmax(0, 1fr) 420px; max-width: 1060px; }
.checkout-form-card { background: var(--color-surface); border: 1px solid var(--color-border); padding: var(--space-8); }
.checkout-form-card h2 { font-size: var(--font-size-2xl); margin: var(--space-2) 0 var(--space-6); }
.checkout-form-card .alert { margin-bottom: var(--space-5); }
.secure-payment-note { align-items: center; border-top: 1px solid var(--color-border); display: flex; gap: var(--space-3); margin-top: var(--space-6); padding-top: var(--space-5); }
.secure-payment-note > span { align-items: center; background: var(--color-success-soft); border-radius: 50%; color: var(--color-success); display: flex; flex: 0 0 auto; height: 32px; justify-content: center; width: 32px; }
.secure-payment-note p { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.checkout-order { background: var(--color-surface-soft); padding: var(--space-6); }
.checkout-order__item { border-bottom: 1px solid var(--color-border); display: flex; font-size: var(--font-size-sm); gap: var(--space-4); justify-content: space-between; padding-block: var(--space-4); }
.checkout-order__item span { color: var(--color-text-muted); }
.checkout-order__totals { display: grid; gap: var(--space-3); padding-top: var(--space-5); }
.checkout-order__totals p { display: flex; font-size: var(--font-size-sm); justify-content: space-between; }
.checkout-order__total { border-top: 1px solid var(--color-border-strong); font-size: var(--font-size-md) !important; padding-top: var(--space-4); }
.checkout-result { align-items: center; display: flex; flex-direction: column; justify-content: center; min-height: 70vh; text-align: center; }
.checkout-result__icon { align-items: center; background: var(--color-surface-soft); border-radius: 50%; color: var(--color-primary); display: flex; font-size: var(--font-size-2xl); height: 78px; justify-content: center; margin-bottom: var(--space-6); width: 78px; }
.checkout-result__icon--success { background: var(--color-success-soft); color: var(--color-success); }
.checkout-result h1 { margin-block: var(--space-3); }
.checkout-result > p:not(.eyebrow) { color: var(--color-text-muted); margin-bottom: var(--space-6); max-width: 620px; }
.content-prose { max-width: 780px; }
.content-prose h2 { margin: var(--space-4) 0 var(--space-8); }
.content-prose h3 { margin: var(--space-8) 0 var(--space-3); }
.content-prose p { color: var(--color-text-muted); margin-bottom: var(--space-5); }
.page-hero { background: var(--color-primary); color: var(--color-white); padding: var(--space-20) 0; }
.page-hero__inner { align-items: end; display: flex; justify-content: space-between; }
.page-hero__inner > div { max-width: 760px; }
.page-hero .eyebrow { color: var(--color-secondary); }
.page-hero h1 { margin: var(--space-4) 0; }
.page-hero p:last-child { color: var(--color-text-light); }
.page-hero__number { color: var(--color-accent); font-family: var(--font-family-display); font-size: 8rem; line-height: .7; opacity: .5; }
.content-directory:nth-of-type(even) { background: var(--color-surface-soft); }
.directory-count { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.content-directory__grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); }
.content-directory__card { background: var(--color-surface); border: 1px solid var(--color-border); margin: -1px 0 0 -1px; min-height: 230px; padding: var(--space-6); position: relative; transition: background var(--transition-fast), transform var(--transition-fast); }
.content-directory__card:hover { background: var(--color-surface-soft); transform: translateY(-2px); z-index: 1; }
.content-directory__type { color: var(--color-accent); font-size: var(--font-size-xs); font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.content-directory__card h3 { font-size: var(--font-size-lg); margin: var(--space-5) 0 var(--space-3); }
.content-directory__card p { color: var(--color-text-muted); display: -webkit-box; font-size: var(--font-size-sm); -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.content-directory__arrow { bottom: var(--space-5); color: var(--color-primary); font-weight: 750; position: absolute; right: var(--space-6); }
.error-page { align-items: center; display: flex; flex-direction: column; min-height: 65vh; justify-content: center; text-align: center; }
.error-page__code { color: var(--color-accent); font-family: var(--font-family-display); font-size: 6rem; line-height: 1; }
.error-page h1 { margin: var(--space-4) 0; }
.error-page > p:not(.error-page__code) { color: var(--color-text-muted); margin-bottom: var(--space-6); }
.store-footer { background: var(--color-surface-dark); color: var(--color-text-light); padding: var(--space-16) 0 var(--space-6); }
.store-footer__grid { display: grid; gap: var(--space-12); grid-template-columns: 2fr 1fr 1.2fr; }
.brand--light .brand__mark { border-color: var(--color-secondary); }
.store-footer__grid > div { align-items: flex-start; display: flex; flex-direction: column; gap: var(--space-3); }
.store-footer p, .store-footer a { color: var(--color-border); font-size: var(--font-size-sm); }
.store-footer .footer-title { color: var(--color-white); font-weight: 700; }
.store-footer__bottom { border-top: 1px solid var(--color-white-12); color: var(--color-text-muted); display: flex; font-size: var(--font-size-xs); justify-content: space-between; margin-top: var(--space-12); padding-top: var(--space-5); }
@media (max-width: 900px) {
    .store-header__inner { grid-template-columns: 1fr auto; }
    .store-nav { display: none; }
    .product-grid, .product-grid--catalog { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid > div:nth-child(2) { border-right: 0; }
    .craft, .product-detail, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .content-directory__grid { grid-template-columns: repeat(2, 1fr); }
    .craft__image { min-height: 460px; }
    .product-detail__gallery { min-height: 420px; }
}

.product-detail__offer {
  background: var(--tg-color-highlight, #fff9bd);
  display: inline-block;
  margin: 0 0 16px;
  padding: 3px 7px;
}

.product-detail__colors {
  margin-bottom: 18px;
}

.product-detail__colors > strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail__colors .colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-specifications {
  border-top: 1px solid var(--tg-color-border, #deded8);
  margin-top: 32px;
}

.product-specifications > div {
  border-bottom: 1px solid var(--tg-color-border, #deded8);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  padding: 12px 0;
}

.product-specifications dt {
  font-weight: 700;
}

.product-specifications dd {
  margin: 0;
}
@media (max-width: 600px) {
    .container { width: min(calc(100% - 1.5rem), var(--container-width)); }
    .section { padding-block: var(--space-12); }
    .store-actions .store-action { display: none; }
    .hero, .hero__content { min-height: 600px; }
    .hero__actions, .section-heading, .catalog-toolbar { align-items: flex-start; flex-direction: column; }
    .trust-strip__grid, .product-grid, .product-grid--catalog, .store-footer__grid { grid-template-columns: 1fr; }
    .content-directory__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { border-bottom: 1px solid var(--color-border); border-right: 0; }
    .craft__content { padding: var(--space-12) var(--space-6); }
    .add-to-cart { grid-template-columns: 1fr; }
    .cart-item { align-items: start; grid-template-columns: 74px 1fr auto; }
    .cart-item__quantity { grid-column: 2; }
    .cart-item__price { grid-column: 3; grid-row: 1; }
    .cart-item > form:last-child { grid-column: 3; grid-row: 2; }
    .page-hero__number { display: none; }
}
.market-switcher { position: relative; }
.market-switcher summary { cursor: pointer; list-style: none; white-space: nowrap; }
.market-switcher__panel {
    position: absolute;
    z-index: var(--z-header);
    top: calc(100% + var(--space-3));
    right: 0;
    display: grid;
    width: min(360px, 86vw);
    max-height: 420px;
    overflow-y: auto;
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
}
.market-switcher__panel a { display: flex; justify-content: space-between; gap: var(--space-4); padding: var(--space-3); color: var(--color-text); text-decoration: none; }
.market-switcher__panel a:hover { background: var(--color-surface-soft); }
.market-switcher__panel small { color: var(--color-text-muted); }
.store-nav__group { position: relative; }
.store-nav__group summary { cursor: pointer; list-style: none; }
.store-nav__group > div {
    position: absolute;
    z-index: var(--z-header);
    top: calc(100% + var(--space-3));
    left: 0;
    display: grid;
    min-width: 220px;
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}
.store-nav__group > div a { padding: var(--space-2) var(--space-3); white-space: nowrap; }
.checkout-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.checkout-address-grid .editor-field--wide {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .checkout-address-grid {
        grid-template-columns: 1fr;
    }

    .checkout-address-grid .editor-field--wide {
        grid-column: auto;
    }
}

.tg-block { padding-block: var(--tg-space-desktop, 64px); }
.tg-block__inner { margin-inline: auto; padding-inline: var(--space-5); width: 100%; }
.tg-block--width-narrow .tg-block__inner { max-width: 760px; }
.tg-block--width-standard .tg-block__inner { max-width: 1160px; }
.tg-block--width-wide .tg-block__inner { max-width: 1380px; }
.tg-block--width-full .tg-block__inner { max-width: none; padding-inline: 0; }
.tg-block--theme-light { background: var(--color-surface); color: var(--color-text); }
.tg-block--theme-soft { background: var(--color-surface-soft); color: var(--color-text); }
.tg-block--theme-dark { background: var(--color-text); color: var(--color-surface); }
.tg-block--theme-brand { background: var(--color-primary); color: var(--color-white); }
.tg-block--align-center { text-align: center; }
.tg-block--align-right { text-align: right; }
.tg-block__eyebrow { font-size: var(--font-size-xs); font-weight: 700; letter-spacing: .12em; margin-bottom: var(--space-3); text-transform: uppercase; }
.tg-block h2 { font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1.05; margin-bottom: var(--space-5); }
.tg-block__body { font-size: var(--font-size-md); line-height: 1.7; white-space: pre-line; }
.tg-block__image { height: auto; margin-inline: auto; width: 100%; }
.tg-block__columns { align-items: center; display: grid; gap: var(--space-8); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tg-block__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.tg-block--align-center .tg-block__actions { justify-content: center; }
.tg-block--align-right .tg-block__actions { justify-content: flex-end; }
.tg-block__button { background: var(--color-text); color: var(--color-surface); display: inline-flex; font-weight: 700; padding: var(--space-4) var(--space-6); }
.tg-block--theme-dark .tg-block__button, .tg-block--theme-brand .tg-block__button { background: var(--color-surface); color: var(--color-text); }
.tg-block__button--secondary { background: transparent; border: 1px solid currentColor; color: inherit; }
.tg-managed-footer { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; padding: var(--space-6); }
.tg-managed-footer a { color: inherit; }
.menu2 > li { position: relative; }
.menu2 .tg-managed-submenu { background: var(--color-surface); box-shadow: var(--shadow-lg); display: none; left: 0; min-width: 260px; padding: var(--space-3); position: absolute; top: 100%; z-index: var(--z-header); }
.menu2 > li:hover .tg-managed-submenu, .menu2 > li:focus-within .tg-managed-submenu { display: grid; }
.menu2 .tg-managed-submenu a { display: block; padding: var(--space-3); white-space: nowrap; }
.tg-managed-mobile .filtre-menu-deroulant { display: grid; padding-left: var(--space-4); }
.tg-admin-model .main-shirt { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }

@media (max-width: 760px) {
    .tg-block { padding-block: var(--tg-space-mobile, 32px); }
    .tg-block__columns { grid-template-columns: 1fr; }
    .tg-hide-mobile { display: none; }
}

@media (min-width: 761px) and (max-width: 1024px) {
    .tg-block { padding-block: var(--tg-space-tablet, 48px); }
    .tg-hide-tablet { display: none; }
}

@media (min-width: 1025px) {
    .tg-hide-desktop { display: none; }
}


/* source: public/assets/css/admin.css */
.admin-shell { background: var(--color-background); min-height: 100vh; }
.sidebar { background: var(--color-surface-dark); color: var(--color-text-light); display: flex; flex-direction: column; height: 100vh; left: 0; padding: var(--space-5) var(--space-4); position: fixed; top: 0; width: var(--sidebar-width); z-index: var(--z-modal); }
.admin-brand { align-items: center; display: flex; gap: var(--space-3); padding: var(--space-2) var(--space-3) var(--space-8); }
.admin-brand__mark { align-items: center; border: 1px solid var(--color-accent); color: var(--color-accent); display: inline-flex; font-family: var(--font-family-display); height: 38px; justify-content: center; width: 38px; }
.admin-brand strong, .admin-brand small { display: block; }
.admin-brand strong { font-size: .75rem; letter-spacing: .15em; }
.admin-brand small { color: var(--color-text-muted); font-size: .65rem; margin-top: .15rem; }
.sidebar-nav { flex: 1; overflow-y: auto; }
.sidebar-label { color: var(--color-text-muted); font-size: .65rem; font-weight: 750; letter-spacing: .14em; padding: 0 var(--space-3) var(--space-2); text-transform: uppercase; }
.sidebar-label--spaced { margin-top: var(--space-6); }
.sidebar-link { align-items: center; border-radius: var(--radius-sm); color: var(--color-border); display: flex; font-size: .82rem; gap: var(--space-3); margin-bottom: var(--space-1); min-height: 42px; padding: .65rem .75rem; transition: background var(--transition-fast), color var(--transition-fast); }
.sidebar-link:hover { background: var(--color-white-06); color: var(--color-white); }
.sidebar-link.is-active { background: var(--color-primary); color: var(--color-white); }
.sidebar-icon { height: 17px; opacity: .8; position: relative; width: 17px; }
.sidebar-icon::before { border: 1.5px solid currentColor; border-radius: 2px; content: ""; inset: 2px; position: absolute; }
.sidebar-icon[data-icon="grid"]::after { border-left: 1.5px solid currentColor; border-top: 1.5px solid currentColor; content: ""; inset: 8px 2px 2px 8px; position: absolute; }
.sidebar-icon[data-icon="users"]::before { border-radius: 50%; inset: 1px 5px 8px; }
.sidebar-icon[data-icon="users"]::after { border: 1.5px solid currentColor; border-radius: 10px 10px 2px 2px; bottom: 1px; content: ""; height: 7px; left: 2px; position: absolute; right: 2px; }
.sidebar-badge { background: var(--color-accent); border-radius: var(--radius-round); color: var(--color-black); font-size: .65rem; margin-left: auto; min-width: 20px; padding: .1rem .4rem; text-align: center; }
.sidebar-footer { align-items: center; border-top: 1px solid var(--color-white-10); display: grid; gap: var(--space-2); grid-template-columns: auto 1fr auto; padding: var(--space-5) var(--space-2) 0; }
.admin-avatar { align-items: center; background: var(--color-secondary); border-radius: 50%; color: var(--color-primary); display: flex; font-size: .7rem; font-weight: 800; height: 34px; justify-content: center; width: 34px; }
.sidebar-footer strong, .sidebar-footer small { display: block; }
.sidebar-footer strong { font-size: .72rem; }
.sidebar-footer small { color: var(--color-text-muted); font-size: .6rem; max-width: 115px; overflow: hidden; text-overflow: ellipsis; }
.icon-button { background: transparent; border: 0; color: var(--color-text-muted); }
.admin-main { margin-left: var(--sidebar-width); min-height: 100vh; }
.admin-topbar { align-items: center; background: var(--color-surface); border-bottom: 1px solid var(--color-border); display: flex; height: 70px; justify-content: space-between; padding: 0 var(--space-8); position: sticky; top: 0; z-index: var(--z-header); }
.admin-search { align-items: center; display: flex; max-width: 440px; position: relative; width: 42%; }
.admin-search svg, .admin-list-search svg { fill: none; height: 18px; left: 0; position: absolute; stroke: var(--color-text-muted); stroke-width: 1.7; width: 18px; }
.admin-search input { border: 0; font-size: var(--font-size-sm); min-height: 42px; padding: 0 50px 0 28px; width: 100%; }
.admin-search input:focus { outline: 0; }
.admin-search kbd { background: var(--color-surface-soft); border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-text-muted); font-size: .65rem; padding: .18rem .4rem; position: absolute; right: 0; }
.topbar-actions { align-items: center; display: flex; gap: var(--space-6); }
.view-store { font-size: var(--font-size-xs); font-weight: 700; }
.notification-button { background: transparent; border: 0; color: var(--color-accent); font-size: .65rem; }
.menu-toggle { background: transparent; border: 0; display: none; }
.admin-content { margin: 0 auto; max-width: 1540px; padding: var(--space-8); }
.admin-page-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: var(--space-8); }
.admin-page-heading h1 { font-family: var(--font-family); font-size: var(--font-size-2xl); font-weight: 720; margin: .2rem 0; }
.admin-page-heading > div > p:last-child { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.heading-actions { display: flex; gap: var(--space-3); }
.stats-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(4, 1fr); margin-bottom: var(--space-5); }
.stat-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); min-height: 154px; overflow: hidden; padding: var(--space-5); position: relative; }
.stat-card::after { border-radius: 50%; content: ""; height: 80px; opacity: .65; position: absolute; right: -25px; top: -25px; width: 80px; }
.stat-card--navy::after { background: var(--color-info-soft); }
.stat-card--sand::after { background: var(--color-warning-soft); }
.stat-card--green::after { background: var(--color-success-soft); }
.stat-card--rose::after { background: var(--color-danger-soft); }
.stat-card__top { color: var(--color-text-muted); display: flex; font-size: var(--font-size-xs); justify-content: space-between; position: relative; z-index: 1; }
.stat-card__icon { align-items: center; border: 1px solid var(--color-border); border-radius: 50%; display: flex; height: 26px; justify-content: center; width: 26px; }
.stat-card > strong { display: block; font-size: 2rem; line-height: 1; margin: var(--space-5) 0 var(--space-2); }
.stat-card > p { color: var(--color-text-muted); font-size: .7rem; }
.dashboard-grid { display: grid; gap: var(--space-5); grid-template-columns: minmax(0, 2fr) minmax(300px, .8fr); margin-bottom: var(--space-5); }
.panel { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.panel-heading { align-items: start; display: flex; justify-content: space-between; padding: var(--space-5) var(--space-6); }
.panel-heading h2 { font-family: var(--font-family); font-size: var(--font-size-md); font-weight: 750; }
.panel-heading p { color: var(--color-text-muted); font-size: .7rem; margin-top: .15rem; }
.panel-heading select { font-size: .7rem; min-height: 34px; }
.chart { display: grid; grid-template-columns: 40px 1fr; height: 250px; padding: 0 var(--space-5) var(--space-5); }
.chart__labels { color: var(--color-text-muted); display: flex; flex-direction: column; font-size: .62rem; justify-content: space-between; padding: 0 0 23px; }
.chart__plot { color: var(--color-primary); position: relative; }
.chart__line { border-top: 1px dashed var(--color-border); left: 0; position: absolute; right: 0; }
.chart__line--1 { top: 0; }.chart__line--2 { top: 25%; }.chart__line--3 { top: 50%; }.chart__line--4 { top: 75%; }
.chart__plot svg { height: calc(100% - 23px); overflow: visible; position: relative; width: 100%; z-index: 1; }
.chart__area { fill: url("#area"); }
.chart__stroke { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart__days { bottom: 0; color: var(--color-text-muted); display: flex; font-size: .62rem; justify-content: space-between; left: 0; position: absolute; right: 0; }
.migration-panel { display: flex; flex-direction: column; }
.donut-wrap { align-items: center; display: flex; flex: 1; gap: var(--space-8); justify-content: center; padding: var(--space-4) var(--space-6) var(--space-8); }
.donut { align-items: center; background: conic-gradient(var(--color-primary) 0 100%, var(--color-border) 100%); border-radius: 50%; display: flex; height: 130px; justify-content: center; position: relative; width: 130px; }
.donut::after { background: var(--color-surface); border-radius: 50%; content: ""; height: 92px; position: absolute; width: 92px; }
.donut span { font-size: var(--font-size-xl); font-weight: 750; position: relative; z-index: 1; }
.donut small { font-size: var(--font-size-xs); }
.donut-legend { min-width: 130px; }
.donut-legend p { align-items: center; display: grid; font-size: .68rem; gap: var(--space-2); grid-template-columns: auto 1fr auto; margin-bottom: var(--space-3); }
.legend-dot { border-radius: 50%; height: 7px; width: 7px; }.legend-dot--green { background: var(--color-primary); }.legend-dot--sand { background: var(--color-accent); }.legend-dot--gray { background: var(--color-border-strong); }
.table-wrap { overflow-x: auto; }
.data-table { font-size: .72rem; width: 100%; }
.data-table th { background: var(--color-surface-soft); color: var(--color-text-muted); font-size: .63rem; letter-spacing: .04em; padding: .65rem 1rem; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { border-top: 1px solid var(--color-border); max-width: 290px; overflow: hidden; padding: .75rem 1rem; text-overflow: ellipsis; white-space: nowrap; }
.table-product { align-items: center; display: flex; gap: var(--space-3); }
.table-product img, .table-product > span { align-items: center; background: var(--color-surface-soft); border-radius: var(--radius-sm); display: flex; flex: 0 0 auto; height: 38px; justify-content: center; object-fit: cover; width: 34px; }
.table-product strong, .table-product small { display: block; }
.table-product strong { font-size: .72rem; max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
.table-product small { color: var(--color-text-muted); font-size: .62rem; margin-top: .1rem; }
.listing-panel { overflow: hidden; }
.listing-toolbar { align-items: center; display: flex; justify-content: space-between; padding: var(--space-4) var(--space-5); }
.admin-list-search { align-items: center; display: flex; max-width: 420px; position: relative; width: 48%; }
.admin-list-search svg { left: 10px; }
.admin-list-search input { border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: .72rem; min-height: 38px; padding: .5rem .75rem .5rem 35px; width: 100%; }
.toolbar-buttons { display: flex; gap: var(--space-2); }
.data-table--listing th:first-child, .data-table--listing td:first-child { padding-left: var(--space-5); width: 36px; }
.type-label { color: var(--color-text-muted); text-transform: capitalize; }
.row-action { background: transparent; border: 0; color: var(--color-text-muted); letter-spacing: .1em; }
.pagination-summary { border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: .65rem; padding: var(--space-4); text-align: center; }
.empty-admin { align-items: center; display: flex; flex-direction: column; min-height: 430px; justify-content: center; padding: var(--space-12); text-align: center; }
.empty-admin__icon { align-items: center; background: var(--color-success-soft); border-radius: 50%; color: var(--color-primary); display: flex; font-family: var(--font-family-display); height: 72px; justify-content: center; margin-bottom: var(--space-5); width: 72px; }
.empty-admin h2 { font-family: var(--font-family); font-size: var(--font-size-lg); font-weight: 720; }
.empty-admin p { color: var(--color-text-muted); font-size: var(--font-size-sm); margin: var(--space-2) 0 var(--space-6); }
.auth-shell { align-items: center; background: linear-gradient(135deg, var(--color-surface-dark), var(--color-primary)); display: flex; justify-content: center; padding: var(--space-5); }
.auth-card { background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 460px; padding: var(--space-10); width: 100%; }
.admin-brand--login { color: var(--color-text); padding: 0 0 var(--space-10); }
.auth-card__heading { margin-bottom: var(--space-8); }
.auth-card__heading h1 { font-size: 2.4rem; margin: var(--space-2) 0; }
.auth-card__heading > p:last-child { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.form-stack { display: grid; gap: var(--space-5); }
.auth-hint { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-6); text-align: center; }
.google-auth-button { gap: var(--space-3); justify-content: center; }
.google-auth-button__mark { align-items: center; border: 1px solid var(--color-border-strong); border-radius: 50%; display: inline-flex; font-weight: 800; height: 24px; justify-content: center; width: 24px; }
.auth-separator { align-items: center; color: var(--color-text-muted); display: flex; font-size: var(--font-size-xs); gap: var(--space-3); margin: var(--space-5) 0; text-transform: uppercase; }
.auth-separator::before, .auth-separator::after { border-top: 1px solid var(--color-border); content: ""; flex: 1; }
.auth-card .alert { margin-bottom: var(--space-5); }
.auth-card .alert span { display: block; margin-top: var(--space-1); }
.integration-grid { display: grid; gap: var(--space-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.integration-card { padding: var(--space-6); }
.integration-card__heading { align-items: flex-start; display: flex; gap: var(--space-4); justify-content: space-between; margin-bottom: var(--space-4); }
.integration-card__heading h2 { font-family: var(--font-family); font-size: var(--font-size-lg); }
.integration-card > p { color: var(--color-text-muted); font-size: var(--font-size-sm); margin-bottom: var(--space-5); }
.integration-status { border-radius: var(--radius-round); flex: 0 0 auto; font-size: var(--font-size-xs); font-weight: 750; padding: .35rem .65rem; }
.integration-status.is-ready { background: var(--color-success-soft); color: var(--color-success); }
.integration-status.is-pending { background: var(--color-warning-soft); color: var(--color-warning); }
.integration-checklist { border-top: 1px solid var(--color-border); margin-top: var(--space-5); }
.integration-checklist > div { align-items: center; border-bottom: 1px solid var(--color-border); display: flex; gap: var(--space-4); justify-content: space-between; padding: var(--space-3) 0; }
.integration-checklist dt, .integration-checklist dd { font-size: var(--font-size-xs); }
.integration-checklist dd { color: var(--color-text-muted); text-align: right; }
.integration-endpoint { background: var(--color-surface-soft); border-radius: var(--radius-sm); display: grid; gap: var(--space-2); margin-top: var(--space-5); padding: var(--space-4); }
.integration-endpoint span { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.integration-endpoint code { overflow-wrap: anywhere; }
.admin-alert { margin-bottom: var(--space-5); }
.admin-form-panel { margin-bottom: var(--space-6); padding: 0 var(--space-6) var(--space-6); }
.admin-user-form { align-items: end; display: grid; gap: var(--space-4); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-user-form .field small { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.admin-user-form--edit { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: var(--space-3) 0; }
.user-edit-row td { background: var(--color-surface-soft); padding-inline: var(--space-5) !important; }
.table-secondary { color: var(--color-text-muted); display: block; margin-top: var(--space-1); }
.roles-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: var(--space-6); }
.role-card { padding: var(--space-5); }
.role-card h2 { font-family: var(--font-family); font-size: var(--font-size-md); margin: var(--space-2) 0 var(--space-4); }
.role-card p, .role-card li { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.role-card ul { display: grid; gap: var(--space-2); padding-left: var(--space-5); }
.order-status-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: var(--space-5); }
.order-status-card { padding: var(--space-5); }
.order-status-card span, .order-status-card strong { display: block; }
.order-status-card span { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.order-status-card strong { font-size: var(--font-size-md); margin-top: var(--space-2); }
.order-admin-grid { align-items: start; display: grid; gap: var(--space-5); grid-template-columns: minmax(0, 1fr) 380px; }
.order-section { margin-bottom: var(--space-5); overflow: hidden; }
.order-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 var(--space-6) var(--space-6); }
.order-details div { border-bottom: 1px solid var(--color-border); padding: var(--space-3) 0; }
.order-details dt { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.order-details dd { font-size: var(--font-size-sm); margin-top: var(--space-1); overflow-wrap: anywhere; }
.order-actions-stack { display: grid; gap: var(--space-5); }
.order-action-card { padding: var(--space-5); }
.order-action-card h2 { font-family: var(--font-family); font-size: var(--font-size-lg); margin: var(--space-2) 0 var(--space-4); }
.order-action-card > p:not(.eyebrow) { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-bottom: var(--space-4); }
.order-action-card textarea { min-height: 90px; }
.refund-list { border-top: 1px solid var(--color-border); padding: 0 var(--space-6) var(--space-6); }
.refund-list article { border-bottom: 1px solid var(--color-border); padding: var(--space-4) 0; }
.refund-list article > div { align-items: center; display: flex; justify-content: space-between; }
.refund-list p { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-1); }
.order-timeline { display: grid; gap: var(--space-4); list-style: none; padding: 0 var(--space-6) var(--space-6); }
.order-timeline li { border-left: 2px solid var(--color-border-strong); padding-left: var(--space-4); }
.order-timeline strong, .order-timeline span { display: block; }
.order-timeline span, .order-timeline p { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-1); }
.audit-json { background: var(--color-surface-dark); color: var(--color-text-light); margin-top: var(--space-2); max-height: 220px; max-width: 520px; overflow: auto; padding: var(--space-3); white-space: pre-wrap; }
.content-editor { display: grid; gap: var(--space-5); }
.editor-section { padding: 0 var(--space-6) var(--space-6); }
.editor-grid { display: grid; gap: var(--space-4); }
.editor-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.editor-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.editor-field--wide { grid-column: 1 / -1; }
.editor-section .field textarea { line-height: 1.55; resize: vertical; }
.editor-section .field small { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.placement-grid, .destination-grid, .locale-selector, .market-picker-grid { display: grid; gap: var(--space-4); }
.placement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.destination-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: var(--space-6); }
.locale-selector { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: var(--space-6); }
.market-picker-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.market-choice {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
}
.market-choice:has(input:checked) { border-color: var(--color-primary); background: var(--color-success-soft); }
.market-choice strong, .market-choice small { display: block; }
.market-choice small { color: var(--color-text-muted); margin-top: var(--space-1); }
.placement-card, .destination-card, .locale-choice {
    align-items: flex-start;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
}
.placement-card:has(input:checked), .destination-card:has(input:checked), .locale-choice:has(input:checked) {
    background: var(--color-success-soft);
    border-color: var(--color-success);
}
.placement-card input, .destination-card input, .locale-choice input { flex: 0 0 auto; margin-top: var(--space-1); }
.placement-card strong, .placement-card small,
.destination-card strong, .destination-card small,
.locale-choice strong, .locale-choice small { display: block; }
.placement-card small, .destination-card small, .locale-choice small {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    margin-top: var(--space-1);
}

.market-admin-grid, .navigation-admin-grid {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.4fr);
    gap: var(--space-6);
    align-items: start;
}
.market-card-list, .menu-list, .menu-item-list { display: grid; gap: var(--space-3); }
.market-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}
.market-card:not(.is-active) { background: var(--color-surface-soft); }
.market-card__flag {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    color: var(--color-text-light);
    background: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: 800;
}
.market-card__content p, .market-card__content small { color: var(--color-text-muted); }
.market-card__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: var(--space-2); }
.market-card__actions form, .menu-row form, .menu-item-row form { margin: 0; }
.menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}
.menu-row.is-selected { border-color: var(--color-primary); background: var(--color-success-soft); }
.menu-row > a { color: var(--color-text); text-decoration: none; }
.menu-row > a strong, .menu-row > a span, .menu-item-row strong, .menu-item-row small { display: block; }
.menu-row > a span, .menu-item-row small { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.menu-item-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}
.menu-item-form { margin-top: var(--space-6); padding-top: var(--space-6); border-top: 1px solid var(--color-border); }
.field--button { justify-content: end; }
.check-stack { display: flex; align-items: center; gap: var(--space-4); }
.row-action--danger { color: var(--color-danger); }
.row-actions { display: flex; align-items: center; gap: var(--space-1); }
.row-actions form { margin: 0; }
.translation-locale-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-4); margin-bottom: var(--space-6); }
.translation-locale-card { padding: var(--space-5); }
.translation-locale-card > span { color: var(--color-text-muted); font-size: var(--font-size-xs); font-weight: 800; }
.translation-locale-card > strong { display: block; margin: var(--space-2) 0; font-size: var(--font-size-xl); }
.translation-locale-card p, .table-subline { color: var(--color-text-muted); font-size: var(--font-size-xs); }
.table-subline { display: block; max-width: 320px; overflow-wrap: anywhere; }
.translation-filters { display: flex; align-items: end; gap: var(--space-3); }
.translation-status-form { display: flex; align-items: center; gap: var(--space-2); margin: 0; }
.translation-status-form select { min-width: 110px; }
.placement-card--compact { min-height: 100%; }
.category-picker, .translation-panel { border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-top: var(--space-6); padding: var(--space-5); }
.category-picker legend, .translation-panel legend { font-weight: 750; padding: 0 var(--space-2); }
.category-picker > p { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-bottom: var(--space-4); }
.category-picker__grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(3, minmax(0, 1fr)); max-height: 340px; overflow-y: auto; }
.category-picker .check-field { background: var(--color-surface-soft); border-radius: var(--radius-sm); padding: var(--space-3); }
.category-picker .check-field span, .category-picker .check-field small { display: block; }
.category-picker .check-field small { color: var(--color-text-muted); font-size: .65rem; margin-top: var(--space-1); overflow-wrap: anywhere; }
.translation-panel + .translation-panel { margin-top: var(--space-5); }
.translation-panel[hidden] { display: none; }
.editor-actions { display: flex; gap: var(--space-3); justify-content: flex-end; padding-bottom: var(--space-8); }
.sidebar-overlay { display: none; }
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .integration-grid { grid-template-columns: 1fr; }
    .admin-user-form, .admin-user-form--edit { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .roles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .order-admin-grid { grid-template-columns: 1fr; }
    .editor-grid--three, .category-picker__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .translation-locale-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .destination-grid { grid-template-columns: 1fr; }
}

/* Fiche produit mobile : carrousel horizontal manipulable au doigt. */
.tg-product-gallery-pagination {
    display: none;
}

@media (max-width: 768px) {
    html.tg-production-page #shirt:has(.tg-product-panel) .phot {
        display: flex !important;
        flex-wrap: nowrap;
        grid-template-columns: none !important;
        margin: 0 !important;
        order: 1;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x pinch-zoom;
        width: 100%;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot::-webkit-scrollbar {
        display: none;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot > picture.product-image-zoom {
        display: block !important;
        flex: 0 0 100%;
        height: auto !important;
        margin: 0 !important;
        min-width: 100%;
        order: initial !important;
        overflow: hidden;
        padding: 0 !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100% !important;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot > picture.product-image-zoom > img {
        display: block;
        height: auto !important;
        max-width: none !important;
        pointer-events: none;
        user-select: none;
        width: 100% !important;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot .zoom-icon {
        opacity: 1;
        transform: scale(.86);
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .zoom-popup {
        flex: none;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .tg-product-gallery-pagination {
        align-items: center;
        display: flex;
        gap: 12px;
        justify-content: center;
        order: 1;
        padding: 12px 16px 14px;
        width: 100%;
    }
    html.tg-production-page .tg-product-gallery-pagination__dots {
        align-items: center;
        display: flex;
        gap: 7px;
    }
    html.tg-production-page .tg-product-gallery-pagination__dots button {
        background: #c9cfcc;
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        height: 7px;
        margin: 0;
        padding: 0;
        transition: background-color .18s ease, transform .18s ease;
        width: 7px;
    }
    html.tg-production-page .tg-product-gallery-pagination__dots button[aria-current="true"] {
        background: #175f47;
        transform: scale(1.35);
    }
    html.tg-production-page .tg-product-gallery-pagination__counter {
        color: #68716d;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 12px;
        line-height: 1;
        min-width: 30px;
    }
}
@media (max-width: 760px) {
    .sidebar { transform: translateX(-100%); transition: transform var(--transition-normal); }
    .admin-shell.sidebar-open .sidebar { transform: translateX(0); }
    .sidebar-overlay { background: var(--color-overlay); inset: 0; position: fixed; z-index: calc(var(--z-modal) - 1); }
    .admin-shell.sidebar-open .sidebar-overlay { display: block; }
    .admin-main { margin-left: 0; }
    .menu-toggle { display: block; }
    .admin-topbar { gap: var(--space-4); padding: 0 var(--space-4); }
    .admin-search { flex: 1; width: auto; }
    .admin-search kbd, .view-store { display: none; }
    .admin-content { padding: var(--space-5) var(--space-4); }
    .admin-page-heading { align-items: flex-start; flex-direction: column; gap: var(--space-4); }
    .stats-grid { grid-template-columns: 1fr; }
    .listing-toolbar { align-items: stretch; flex-direction: column; gap: var(--space-3); }
    .admin-list-search { max-width: none; width: 100%; }
    .admin-user-form, .admin-user-form--edit, .roles-grid { grid-template-columns: 1fr; }
    .order-status-grid, .order-details { grid-template-columns: 1fr; }
    .editor-section { padding-inline: var(--space-4); }
    .editor-grid--two, .editor-grid--three, .placement-grid, .locale-selector, .market-picker-grid, .category-picker__grid,
    .market-admin-grid, .navigation-admin-grid { grid-template-columns: 1fr; }
    .market-card { grid-template-columns: auto minmax(0, 1fr); }
    .market-card__actions { grid-column: 1 / -1; justify-content: flex-start; }
    .translation-locale-grid { grid-template-columns: 1fr; }
    .translation-filters { align-items: stretch; flex-direction: column; width: 100%; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .heading-actions { width: 100%; }
    .heading-actions .button { flex: 1; }
    .donut-wrap { align-items: flex-start; flex-direction: column; }
    .auth-card { padding: var(--space-6); }
}
.commerce-market-grid {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.market-commerce-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.market-commerce-card > header,
.market-commerce-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.market-commerce-card header small,
.media-admin-card small,
.media-admin-card code {
    display: block;
}

.media-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

.media-admin-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.media-admin-card img,
.media-admin-card__file {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: var(--color-surface-soft);
}

.media-admin-card > div {
    padding: 0.85rem;
}

@media (max-width: 720px) {
    .market-commerce-options,
    .market-commerce-card > header {
        align-items: flex-start;
        flex-direction: column;
    }
}
.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.compact-list {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-5);
}

.compact-list p {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
}

.compact-list__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.inline-form {
    display: flex;
    gap: var(--space-2);
}

.inline-form input {
    max-width: 100px;
}

.market-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-4);
    padding: var(--space-5);
}

.market-price-card {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.market-price-card small {
    display: block;
}

.bulk-toolbar,
.pagination {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
}

.translation-details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.translation-details summary {
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 900px) {
    .operations-grid {
        grid-template-columns: 1fr;
    }
}

.studio-toolbar { align-items: end; display: flex; gap: var(--space-4); justify-content: space-between; margin-bottom: var(--space-5); padding: var(--space-5); }
.studio-toolbar form:first-child { flex: 1; }
.studio-layout { align-items: start; display: grid; gap: var(--space-5); grid-template-columns: minmax(0, 1fr) 280px; }
.studio-canvas { display: grid; gap: var(--space-5); }
.studio-block { padding: var(--space-6); }
.studio-block-form { display: grid; gap: var(--space-4); }
.studio-block--new { border: 2px dashed var(--color-border); }
.studio-responsive-settings { background: var(--color-surface-soft); border-radius: var(--radius-md); padding: var(--space-4); }
.studio-responsive-settings summary { cursor: pointer; font-weight: 700; margin-bottom: var(--space-4); }
.check-stack--horizontal { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.studio-history { padding: var(--space-5); position: sticky; top: var(--space-5); }
.studio-history > p { color: var(--color-text-muted); margin: var(--space-2) 0 var(--space-5); }
.studio-revision { align-items: center; border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; padding: var(--space-3) 0; }
.studio-revision strong, .studio-revision small { display: block; }
.studio-revision small { color: var(--color-text-muted); font-size: var(--font-size-xs); margin-top: var(--space-1); }

@media (max-width: 1050px) {
    .studio-layout { grid-template-columns: 1fr; }
    .studio-history { position: static; }
}

@media (max-width: 680px) {
    .studio-toolbar { align-items: stretch; flex-direction: column; }
}

/* Corrections de parité du rendu historique dynamique. */
.tg-production-page .header-home.ban-home {
    background-image: var(--tg-production-home-image) !important;
    background-position: center !important;
    background-size: cover !important;
}

.tg-production-page .header-home.ban-home .h1-home {
    margin-inline: auto;
    max-width: var(--tg-production-hero-title-width);
    white-space: normal;
    width: 100%;
}

@media (min-width: 861px) {
    .tg-production-page .panier-btn .panier-btn-img {
        flex: 0 0 var(--tg-production-cart-icon-width);
        height: var(--tg-production-cart-icon-height);
        margin-right: 10px;
        width: var(--tg-production-cart-icon-width);
    }

    .tg-production-page .panier-btn .hide-text {
        display: block;
    }
}

.tg-production-page #shirt > .col-md-7,
.tg-production-page #shirt > .col-md-5 {
    min-width: 0;
}

.tg-production-page #shirt .product-image-zoom > img {
    display: block;
    height: auto;
    max-width: 100%;
}

@media (min-width: 992px) {
    .tg-production-page #shirt {
        align-items: start;
        display: grid;
        grid-template-columns:
            var(--tg-production-product-gallery-column)
            var(--tg-production-product-details-column);
    }

    .tg-production-page #shirt::before,
    .tg-production-page #shirt::after {
        content: none;
        display: none;
    }

    .tg-production-page #shirt > .col-md-7,
    .tg-production-page #shirt > .col-md-5 {
        float: none;
        width: 100% !important;
    }
}

@media (max-width: 991px) {
    .tg-production-page #shirt {
        display: block;
    }

    .tg-production-page #shirt .product-right-inner {
        padding-left: 10px;
        position: static;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .tg-production-page .header-home.ban-home {
        background-image: var(--tg-production-home-image-mobile) !important;
        background-position: bottom !important;
    }

    .tg-production-page .header-home.ban-home .h1-home {
        max-width: var(--tg-production-hero-title-width-mobile);
    }
}

/* Actions Admin suffisamment grandes pour rester identifiables dans les tableaux. */
.row-actions {
    gap: var(--space-2);
    justify-content: flex-end;
    min-width: max-content;
}

.row-action {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    display: inline-flex;
    flex: 0 0 32px;
    font-size: 1rem;
    font-weight: 750;
    height: 32px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    width: 32px;
}

.row-action:hover,
.row-action:focus-visible {
    background: var(--color-surface-soft);
    border-color: var(--color-border);
    color: var(--color-text);
}

.row-action--danger:hover,
.row-action--danger:focus-visible {
    background: var(--color-danger-soft);
    border-color: var(--color-danger);
    color: var(--color-danger);
}
.delete-dialog {
  width: min(520px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  border: 0;
}

.delete-dialog::backdrop {
  background: var(--color-overlay);
  backdrop-filter: blur(2px);
}

.delete-dialog__panel {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.delete-dialog__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--color-danger);
  font-size: 24px;
  font-weight: 800;
  background: var(--color-danger-soft);
  border-radius: 50%;
}

.delete-dialog h2 {
  margin: 4px 0 8px;
}

.delete-dialog p {
  margin-bottom: 0;
}

.delete-dialog__keyword,
.delete-dialog__actions {
  grid-column: 1 / -1;
}

.delete-dialog__keyword[hidden] {
  display: none;
}

.delete-dialog__keyword input {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.delete-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 560px) {
  .delete-dialog__panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .delete-dialog__keyword,
  .delete-dialog__actions {
    grid-column: auto;
  }

  .delete-dialog__actions {
    flex-direction: column-reverse;
  }
}
/* Product merchandising workbench */
.professional-callout {
  align-items: center;
  background: var(--admin-green-soft, #e5f3ee);
  border: 1px solid color-mix(in srgb, var(--admin-green, #0e5748) 25%, transparent);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.professional-callout span {
  color: var(--admin-muted, #6d746f);
  font-size: 13px;
}

.product-locale-stack {
  display: grid;
  gap: 12px;
}

.product-panel-language {
  border: 1px solid var(--admin-border, #deddd8);
  border-radius: 12px;
  margin: 0;
  padding: 0;
}

.product-panel-language > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 16px 18px;
}

.product-panel-language > summary::-webkit-details-marker {
  display: none;
}

.product-panel-language > summary strong,
.product-panel-language > summary small {
  display: block;
}

.product-panel-language > summary small {
  color: var(--admin-muted, #737a75);
  margin-top: 3px;
}

.product-panel-form {
  border-top: 1px solid var(--admin-border, #deddd8);
  padding: 20px;
}

.subsection-heading {
  border-top: 1px solid var(--admin-border, #deddd8);
  margin-top: 8px;
  padding-top: 18px;
}

.subsection-heading h3,
.subsection-heading p {
  margin: 0;
}

.subsection-heading p {
  color: var(--admin-muted, #737a75);
  font-size: 13px;
  margin-top: 4px;
}

.related-color-list {
  margin-top: 18px;
}

.related-color-row {
  align-items: center;
  border-top: 1px solid var(--admin-border, #deddd8);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  padding: 12px 0;
}

.related-color-row small {
  color: var(--admin-muted, #737a75);
  display: block;
  margin-top: 3px;
}

.related-color-row .inline-form input[type="number"] {
  max-width: 86px;
}

@media (max-width: 900px) {
  .professional-callout,
  .related-color-row {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }
}

/* TailorGeorge application interactions: cart drawer and configurator. */
body.tg-cart-open { overflow: hidden; }
.tg-cart-overlay {
  position: fixed; inset: 0; z-index: 99990; visibility: hidden; opacity: 0;
  background: rgba(16, 20, 24, .38); backdrop-filter: blur(3px);
  transition: opacity .22s ease, visibility .22s ease;
}
.tg-cart-overlay.is-active { visibility: visible; opacity: 1; }
.tg-cart-drawer {
  position: fixed; z-index: 99999; top: 0; right: 0; width: min(570px, 100vw); height: 100vh; height: 100dvh;
  display: flex; flex-direction: column; visibility: hidden; overflow: hidden;
  background: #fff; color: #252525; transform: translateX(100%);
  opacity: 0; box-shadow: -20px 0 50px rgba(0, 0, 0, .18);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, visibility .45s ease;
  font-family: Arial, Helvetica, sans-serif;
}
.tg-cart-drawer.is-active { visibility: visible; transform: translateX(0); opacity: 1; }
.tg-cart-drawer .carte-header { min-height: 70px; padding: 0 25px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e5e5e5; }
.tg-cart-drawer .carte-header h2 { margin: 0; font-size: 21px; line-height: 1; text-transform: uppercase; font-family: Arial, Helvetica, sans-serif; font-weight: 700; }
.tg-cart-drawer .carte-header h2 span { color: #777; font-weight: 400; }
.tg-cart-drawer .close-carte { width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: #f5f5f5; color: #333; font-size: 26px; line-height: 44px; cursor: pointer; }
.tg-cart-drawer .carte-body { flex: 1; min-height: 0; overflow-y: auto; padding: 22px 25px; }
.tg-cart-drawer .carte-body > p { margin: 0; font-size: 17px; }
.tg-cart-drawer .carte-item { display: flex; gap: 18px; padding: 0 0 25px; margin-bottom: 25px; border-bottom: 1px solid #e5e5e5; }
.tg-cart-drawer .carte-item__image { flex: 0 0 90px; align-self: flex-start; }
.tg-cart-drawer .carte-item__image img { display: block; width: 90px; height: 120px; object-fit: cover; object-position: top; background: #f7f7f7; }
.tg-cart-drawer .item-content { flex: 1; min-width: 0; }
.tg-cart-drawer .item-header { display: flex; justify-content: space-between; gap: 16px; }
.tg-cart-drawer .item-info { flex: 1; min-width: 0; }
.tg-cart-drawer .item-info h3 { margin: 2px 0 6px; max-width: 270px; font-size: 18px; line-height: 1.25; font-family: Arial, Helvetica, sans-serif; text-transform: none; }
.tg-cart-drawer .item-info h3 a { color: inherit; text-decoration: none; }
.tg-cart-drawer .item-info small { display: block; color: #999; font-size: 14px; }
.tg-cart-drawer .product-details { padding: 12px 0 0; margin: 0; list-style: none; color: #999; font-size: 13px; line-height: 1.55; }
.tg-cart-drawer .item-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; }
.tg-cart-drawer .item-footer form { margin: 0; }
.tg-cart-drawer .quantity-carte { width: 106px; height: 39px; display: flex; align-items: center; justify-content: space-around; border: 1px solid #ddd; border-radius: 20px; }
.tg-cart-drawer .quantity-carte button { width: 27px; height: 27px; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 50%; background: #fff; color: #333; font-size: 18px; cursor: pointer; }
.tg-cart-drawer .quantity-carte button:hover { background: #f2f2f2; color: #000; }
.tg-cart-drawer .quantity-carte span { min-width: 20px; text-align: center; font-weight: 700; }
.tg-cart-drawer .price-carte { flex: 0 0 auto; min-width: 92px; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tg-cart-drawer .price-line { display: flex; align-items: baseline; justify-content: flex-end; gap: 7px; white-space: nowrap; }
.tg-cart-drawer .old-price { color: #999; font-size: 14px; text-decoration: line-through; }
.tg-cart-drawer .new-price { color: #111; font-size: 18px; font-weight: 900; }
.tg-cart-drawer .multi-buy-badge { padding: 4px 7px; background: #e9f4ef; color: #006748; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.tg-cart-drawer .tg-cart-remove { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: none; color: #777; font-size: 14px; cursor: pointer; }
.tg-cart-drawer .tg-cart-remove:hover { color: #111; }
.tg-cart-drawer .trash-icon { width: 18px; height: 18px; }
.tg-cart-drawer .carte-footer { padding: 22px 25px 25px; border-top: 1px solid #e5e5e5; background: #fff; }
.tg-cart-drawer .total-carte { display: flex; justify-content: space-between; margin-bottom: 22px; font-size: 20px; font-weight: 700; }
.tg-cart-drawer .tg-cart-primary, .tg-cart-drawer .tg-cart-secondary { min-height: 57px; display: flex; align-items: center; justify-content: center; padding: 12px 20px; text-decoration: none; text-transform: uppercase; font-size: 16px; font-weight: 700; text-align: center; }
.tg-cart-drawer .tg-cart-primary { justify-content: space-between; background: #006748; color: #fff; }
.tg-cart-drawer .tg-cart-secondary { margin-top: 18px; border: 1px solid #006748; color: #006748; background: #fff; }
@media (max-width: 640px) {
  .tg-cart-drawer .carte-header { min-height: 64px; padding: 0 15px; }
  .tg-cart-drawer .carte-body { padding: 18px 15px; }
  .tg-cart-drawer .carte-item { gap: 12px; }
  .tg-cart-drawer .carte-item__image { flex-basis: 72px; }
  .tg-cart-drawer .carte-item__image img { width: 72px; height: 96px; }
  .tg-cart-drawer .item-header { display: block; }
  .tg-cart-drawer .price-carte { align-items: flex-start; margin-top: 10px; }
  .tg-cart-drawer .item-footer { align-items: flex-start; flex-direction: column; }
  .tg-cart-drawer .carte-footer { padding: 20px 15px; }
}

.tg-configurator-shell { background: #fff; color: #232323; font-family: Arial, Helvetica, sans-serif; }
.tg-preprod-header { position: sticky; z-index: 1000; top: 0; height: 70px; background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, .1); }
.tg-preprod-header__inner { width: min(1288px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; gap: 34px; }
.tg-preprod-header__logo img { display: block; width: 160px; height: auto; }
.tg-preprod-header nav { display: flex; align-items: center; gap: 34px; }
.tg-preprod-header nav a { color: #171717; text-decoration: none; text-transform: uppercase; font-family: 'Oswald', Impact, sans-serif; font-size: 15px; font-weight: 700; }
.tg-preprod-header nav a span { padding-left: 8px; font-size: 24px; vertical-align: -2px; }
.tg-preprod-header__actions { margin-left: auto; display: flex; align-items: center; gap: 19px; }
.tg-preprod-header__actions a { color: #222; text-decoration: none; font-size: 14px; }
.tg-preprod-header__actions .cart-link { display: flex; align-items: center; gap: 11px; }
.tg-basket-icon { position: relative; width: 20px; height: 15px; display: inline-block; border: 2px solid #132848; border-top: 0; border-radius: 0 0 4px 4px; }
.tg-basket-icon::before, .tg-basket-icon::after { content: ''; position: absolute; top: -6px; width: 8px; height: 2px; background: #132848; }
.tg-basket-icon::before { left: 0; transform: rotate(-55deg); }.tg-basket-icon::after { right: 0; transform: rotate(55deg); }
.tg-configurator { min-height: 100vh; padding: 82px 20px 120px; background: #fff; }
.tg-configurator__container { width: min(1120px, 100%); margin: auto; text-align: center; }
.tg-configurator h1, .tg-configurator legend { color: #242424; font-family: 'Oswald', Impact, sans-serif; font-weight: 700; }
.tg-configurator h1 { margin: 0 0 32px; font-size: clamp(34px, 3vw, 48px); }
.tg-configurator__product { width: min(680px, 100%); min-height: 258px; margin: 0 auto 130px; padding: 36px 46px; display: flex; align-items: center; gap: 42px; border: 2px solid #168b75; text-align: left; }
.tg-configurator__product img { width: 155px; height: 190px; object-fit: contain; }
.tg-configurator__product p { margin: 0 0 22px; font-size: 17px; }.tg-configurator__product p strong { font-size: 26px; font-weight: 400; }
.tg-configurator__product h2 { margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: 18px; text-transform: none; }
.tg-configurator__group { margin: 0 0 145px; padding: 0; border: 0; }
.tg-configurator__group legend { width: 100%; margin-bottom: 34px; font-size: 34px; }
.tg-configurator__choices { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 20px; }
.tg-configurator__choice { width: 150px; min-height: 144px; cursor: pointer; }
.tg-configurator__choice input { position: absolute; opacity: 0; pointer-events: none; }
.tg-configurator__choice span { height: 100%; min-height: 144px; padding: 17px 9px 13px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; border: 2px solid #eee; background: #fff; }
.tg-configurator__choice input:checked + span { border: 3px solid #006748; padding: 16px 8px 12px; }
.tg-configurator__choice img { width: 74px; height: 70px; object-fit: contain; filter: grayscale(1); }
.tg-configurator__choice em { color: #171717; font-style: normal; font-size: 16px; line-height: 1.2; }
.tg-configurator__submit { min-width: 300px; min-height: 58px; padding: 15px 35px; border: 0; background: #006748; color: #fff; text-transform: uppercase; font-size: 16px; font-weight: 700; cursor: pointer; }
.tg-configurator__empty { padding: 30px; border: 1px solid #ddd; }
.tg-configurator__group[hidden] { display: none; }
.tg-configurator__monogram label { width: min(440px, 100%); margin: auto; display: grid; gap: 10px; text-align: left; }
.tg-configurator__monogram input { min-height: 48px; padding: 10px 12px; border: 1px solid #aaa; font: inherit; }
@media (max-width: 820px) {
  .tg-preprod-header__inner { width: calc(100% - 24px); gap: 16px; }.tg-preprod-header nav { display: none; }.tg-preprod-header__logo img { width: 140px; }
  .tg-configurator { padding-top: 50px; }.tg-configurator__product { margin-bottom: 80px; padding: 25px; gap: 20px; }.tg-configurator__group { margin-bottom: 90px; }
}
@media (max-width: 520px) {
  .tg-preprod-header__actions > a:first-child { display: none; }.tg-configurator__product { flex-direction: column; text-align: center; }.tg-configurator__choice { width: calc(50% - 10px); }.tg-configurator__submit { min-width: 100%; }
}

/* PREPROD AUTHORITY:START */
@font-face{font-family:HelveticaNeue-Roman;src:url("/assets/design-system/production/fonts/HelveticaNeueRoman.otf") format("opentype");font-display:swap}
@font-face{font-family:HelveticaNeueBold;src:url("/assets/design-system/production/fonts/HelveticaNeueBold.ttf") format("truetype");font-display:swap}
@font-face{font-family:Oswald-Bold;src:url("/assets/design-system/production/fonts/Oswald-Bold.ttf") format("truetype");font-display:swap}
/* index.css; 1 pages */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .mrg-1{margin-top: -100px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .mrg-2{margin-top: -90px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .dv{padding-left:10px}
@media screen and (max-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue{
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, minmax(352px, 1fr));
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        gap:0.8rem 0.8rem;
        -ms-grid-row-align: stretch;
        align-self: stretch;
        -ms-flex-wrap: wrap;
    }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .line-product{
    display: flex;
    min-width: 352px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    flex: 1 0 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .LanguageSwitcher{
    border: 1px solid #188873;
    white-space: nowrap;
    right: 0%;
    left: inherit;
    transform: translate(-0%, 0) !important;
    width: 100%;
    bottom: 30%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .categorie-link:hover{color:#000 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #footer-main{padding: 20px 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .footer-col ul li a{
line-height: 20px;
	}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .footer-col{margin-bottom: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #stripe{
    width: 65px !important;
    margin-top:-8px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #footer-main ul li{

    margin-top:15px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #footer-main h5{
	margin-bottom: 30px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .disnone{
	display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .disblock{
	display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .height-dv{
    height: 118px;
    margin-bottom: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .bordere{border: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .pi-text{
	margin-left: 100px !important;font-size: 16px !important
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .dv{padding-left: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css strong{font-weight: 700;font-size:18px !important}
}
@media screen and (min-width: 769px){
	.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css body{padding-top:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .line-product{
    display: flex;
    min-width: 176px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    flex: 1 0 0px;
}
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue{width:100%;    display: grid;
    grid-template-columns: repeat(2, minmax(352px, 1fr));
    align-items: flex-start;
    align-content: flex-start;
    align-self: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem calc(8rem / 2);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header__icon--close{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-4{
    width: 33.33333333%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-5{
    width: 41.66666667%;

}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-3{
    width: 25%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .col-lg-9{
    float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home{background:rgb(0,0,0,0.1);height:550px !important;padding:0px !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .burger-menu{display:none !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #openMenu{width:130px !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .hamburger{width:130px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home{margin-top:30px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .contenu{flex-direction:row}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .div2{width:54%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .temoignages-titre h2{font-family:var(--font-family-h);font-weight: 800;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css strong{font-weight: 900 !important;font-size:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2{display:flex;align-items:center;margin-left:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items: center;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 a{font-weight:900;font-family:var(--font-family-regular);position:relative}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 a:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .divheader a{font-family: var(--font-family-regular);font-weight: 500;font-size: 0.8rem;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css p{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 li img{height:10px;margin-left:8px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 51px;
top: 180px;
z-index: 99;
}
@media screen and (max-width: 768px){
	.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css body{padding-top:70px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu-lateral-container{transform: translate(0);left:-100% !important;-webkit-transition: all 0.8s;
    transition: all 0.8s;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home .contenu h1::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home .contenu h1::after{display:none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home{background:transparent;height:100% !important;padding:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .burger-menu{display:block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .divheader,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #connect{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #openMenu{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .hamburger{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header-home{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .contenu{flex-direction:column}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .div2{width:100%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .divheader{align-items:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .navbar-brand a img{width:160px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 .link-1::after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 .link-2::after{
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 .link-1::after{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu2 .link-2:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-b{margin-top:30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background-color: #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-b a:hover{color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .categorie-link{
background-color: #transparent;
color: #000;
padding: 1rem 1.625rem;
display: inline-block;
margin: 7px 5px 7px 0;
display: inline-block;
font-family:var(--font-family-regular);
font-size: 18px;
font-weight: 600;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .line-with-dots{
display: flex;
align-items: center;
color: #2f3c55; /* Couleur du texte */
font-weight: bold;
font-size: 18px;
font-family:var(--font-family-regular);
font-weight:800;
margin:30px auto;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .line-with-dots::after{
content: '---------------------------------------------------------------------------------------------------------------------------------------';
flex-grow: 1;
margin-left: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .scrollenone{overflow: hidden !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .header__icon--close{
    width: 1rem;
    position: fixed;
    top: .8rem;
    right:20px;
    opacity: 1;
    z-index: 4;
    color: #000;
    background-color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css #background3{z-index:9999 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .visible{
    display: block !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .rotate{
  transform: rotate(90deg);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .modele-cataloguee{text-transform:uppercase}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .link-3:hover{color:#fff !important ;}
/* bootstrap.min.css; 349 pages */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=59185f0c6fb8dd0cf5b7daac18038944)
 * Config saved to config.json and https://gist.github.com/59185f0c6fb8dd0cf5b7daac18038944
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sub,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sup{vertical-align:baseline}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css hr,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css img{border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css body,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css figure{margin:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar .btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar .btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar .input-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-9,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pre-scrollable{max-height:340px}html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css article,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css aside,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css details,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css figcaption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css figure,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css hgroup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css main,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css nav,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css section,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css summary{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css audio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css canvas,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css progress,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css video{display:inline-block;vertical-align:baseline}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css audio:not([controls]){display:none;height:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [hidden],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css template{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a{background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:hover{outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css b,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css optgroup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css strong{font-weight:700}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dfn{font-style:italic}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1{margin:.67em 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css mark{background:#ff0;color:#000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sub,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sup{font-size:75%;line-height:0;position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sup{top:-.5em}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css sub{bottom:-.25em}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css img{vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css svg:not(:root){overflow:hidden}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea{overflow:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css code,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css samp{font-size:1em}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css optgroup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea{color:inherit;font:inherit;margin:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css address{font-style:normal}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button{overflow:visible}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select{text-transform:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button,html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=button],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=reset],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=submit]{-webkit-appearance:button;cursor:pointer}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button[disabled],html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[disabled]{cursor:default}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button::-moz-focus-inner,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input::-moz-focus-inner{border:0;padding:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=number]::-webkit-inner-spin-button,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=number]::-webkit-outer-spin-button{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=search]::-webkit-search-cancel-button,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table{border-collapse:collapse;border-spacing:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr{page-break-inside:avoid}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css *,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css :after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css :before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:visited{text-decoration:underline}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a[href]:after{content:" (" attr(href) ")"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css abbr[title]:after{content:" (" attr(title) ")"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a[href^="javascript:"]:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a[href^="#"]:after{content:""}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre{border:1px solid #999}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css thead{display:table-header-group}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css img{max-width:100%!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css p{orphans:3;widows:3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3{page-break-after:avoid}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn>.caret,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropup>.btn>.caret{border-top-color:#000!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label{border:1px solid #000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table{border-collapse:collapse!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table th{background-color:#fff!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered th{border:1px solid #ddd!important}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-content{-webkit-background-clip:padding-box}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-default,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-primary,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-warning{background-image:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .img-thumbnail,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url("/assets/design-system/production/fonts/glyphicons-halflings-regular.eot");src:url("/assets/design-system/production/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.woff2") format('woff2'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/assets/design-system/production/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg')}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-asterisk:before{content:"\002a"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-plus:before{content:"\002b"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-eur:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-euro:before{content:"\20ac"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-minus:before{content:"\2212"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cloud:before{content:"\2601"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-envelope:before{content:"\2709"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-pencil:before{content:"\270f"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-glass:before{content:"\e001"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-music:before{content:"\e002"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-search:before{content:"\e003"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-heart:before{content:"\e005"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-star:before{content:"\e006"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-star-empty:before{content:"\e007"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-user:before{content:"\e008"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-film:before{content:"\e009"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-th-large:before{content:"\e010"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-th:before{content:"\e011"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-th-list:before{content:"\e012"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ok:before{content:"\e013"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-remove:before{content:"\e014"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-zoom-in:before{content:"\e015"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-zoom-out:before{content:"\e016"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-off:before{content:"\e017"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-signal:before{content:"\e018"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cog:before{content:"\e019"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-trash:before{content:"\e020"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-home:before{content:"\e021"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-file:before{content:"\e022"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-time:before{content:"\e023"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-road:before{content:"\e024"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-download-alt:before{content:"\e025"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-download:before{content:"\e026"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-upload:before{content:"\e027"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-inbox:before{content:"\e028"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-play-circle:before{content:"\e029"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-repeat:before{content:"\e030"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-refresh:before{content:"\e031"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-list-alt:before{content:"\e032"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-lock:before{content:"\e033"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-flag:before{content:"\e034"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-headphones:before{content:"\e035"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-volume-off:before{content:"\e036"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-volume-down:before{content:"\e037"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-volume-up:before{content:"\e038"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-qrcode:before{content:"\e039"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-barcode:before{content:"\e040"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tag:before{content:"\e041"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tags:before{content:"\e042"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-book:before{content:"\e043"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bookmark:before{content:"\e044"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-print:before{content:"\e045"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-camera:before{content:"\e046"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-font:before{content:"\e047"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bold:before{content:"\e048"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-italic:before{content:"\e049"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-text-height:before{content:"\e050"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-text-width:before{content:"\e051"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-align-left:before{content:"\e052"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-align-center:before{content:"\e053"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-align-right:before{content:"\e054"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-align-justify:before{content:"\e055"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-list:before{content:"\e056"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-indent-left:before{content:"\e057"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-indent-right:before{content:"\e058"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-facetime-video:before{content:"\e059"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-picture:before{content:"\e060"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-map-marker:before{content:"\e062"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-adjust:before{content:"\e063"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tint:before{content:"\e064"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-edit:before{content:"\e065"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-share:before{content:"\e066"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-check:before{content:"\e067"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-move:before{content:"\e068"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-step-backward:before{content:"\e069"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-fast-backward:before{content:"\e070"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-backward:before{content:"\e071"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-play:before{content:"\e072"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-pause:before{content:"\e073"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-stop:before{content:"\e074"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-forward:before{content:"\e075"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-fast-forward:before{content:"\e076"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-step-forward:before{content:"\e077"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-eject:before{content:"\e078"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-chevron-left:before{content:"\e079"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-chevron-right:before{content:"\e080"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-plus-sign:before{content:"\e081"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-minus-sign:before{content:"\e082"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-remove-sign:before{content:"\e083"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ok-sign:before{content:"\e084"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-question-sign:before{content:"\e085"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-info-sign:before{content:"\e086"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-screenshot:before{content:"\e087"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-remove-circle:before{content:"\e088"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ok-circle:before{content:"\e089"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ban-circle:before{content:"\e090"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-arrow-left:before{content:"\e091"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-arrow-right:before{content:"\e092"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-arrow-up:before{content:"\e093"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-arrow-down:before{content:"\e094"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-share-alt:before{content:"\e095"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-resize-full:before{content:"\e096"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-resize-small:before{content:"\e097"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-exclamation-sign:before{content:"\e101"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-gift:before{content:"\e102"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-leaf:before{content:"\e103"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-fire:before{content:"\e104"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-eye-open:before{content:"\e105"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-eye-close:before{content:"\e106"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-warning-sign:before{content:"\e107"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-plane:before{content:"\e108"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-calendar:before{content:"\e109"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-random:before{content:"\e110"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-comment:before{content:"\e111"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-magnet:before{content:"\e112"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-chevron-up:before{content:"\e113"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-chevron-down:before{content:"\e114"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-retweet:before{content:"\e115"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-shopping-cart:before{content:"\e116"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-folder-close:before{content:"\e117"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-folder-open:before{content:"\e118"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-resize-vertical:before{content:"\e119"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-resize-horizontal:before{content:"\e120"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hdd:before{content:"\e121"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bullhorn:before{content:"\e122"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bell:before{content:"\e123"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-certificate:before{content:"\e124"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-thumbs-up:before{content:"\e125"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-thumbs-down:before{content:"\e126"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hand-right:before{content:"\e127"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hand-left:before{content:"\e128"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hand-up:before{content:"\e129"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hand-down:before{content:"\e130"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-circle-arrow-right:before{content:"\e131"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-circle-arrow-left:before{content:"\e132"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-circle-arrow-up:before{content:"\e133"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-circle-arrow-down:before{content:"\e134"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-globe:before{content:"\e135"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-wrench:before{content:"\e136"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tasks:before{content:"\e137"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-filter:before{content:"\e138"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-briefcase:before{content:"\e139"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-fullscreen:before{content:"\e140"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-dashboard:before{content:"\e141"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-paperclip:before{content:"\e142"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-heart-empty:before{content:"\e143"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-link:before{content:"\e144"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-phone:before{content:"\e145"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-pushpin:before{content:"\e146"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-usd:before{content:"\e148"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-gbp:before{content:"\e149"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort:before{content:"\e150"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-alphabet:before{content:"\e151"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-order:before{content:"\e153"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-order-alt:before{content:"\e154"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-attributes:before{content:"\e155"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-unchecked:before{content:"\e157"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-expand:before{content:"\e158"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-collapse-down:before{content:"\e159"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-collapse-up:before{content:"\e160"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-log-in:before{content:"\e161"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-flash:before{content:"\e162"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-log-out:before{content:"\e163"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-new-window:before{content:"\e164"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-record:before{content:"\e165"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-save:before{content:"\e166"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-open:before{content:"\e167"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-saved:before{content:"\e168"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-import:before{content:"\e169"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-export:before{content:"\e170"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-send:before{content:"\e171"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-floppy-disk:before{content:"\e172"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-floppy-saved:before{content:"\e173"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-floppy-remove:before{content:"\e174"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-floppy-save:before{content:"\e175"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-floppy-open:before{content:"\e176"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-credit-card:before{content:"\e177"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-transfer:before{content:"\e178"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cutlery:before{content:"\e179"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-header:before{content:"\e180"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-compressed:before{content:"\e181"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-earphone:before{content:"\e182"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-phone-alt:before{content:"\e183"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tower:before{content:"\e184"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-stats:before{content:"\e185"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sd-video:before{content:"\e186"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hd-video:before{content:"\e187"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-subtitles:before{content:"\e188"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sound-stereo:before{content:"\e189"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sound-dolby:before{content:"\e190"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sound-5-1:before{content:"\e191"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sound-6-1:before{content:"\e192"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sound-7-1:before{content:"\e193"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-copyright-mark:before{content:"\e194"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-registration-mark:before{content:"\e195"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cloud-download:before{content:"\e197"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cloud-upload:before{content:"\e198"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tree-conifer:before{content:"\e199"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tree-deciduous:before{content:"\e200"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-cd:before{content:"\e201"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-save-file:before{content:"\e202"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-open-file:before{content:"\e203"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-level-up:before{content:"\e204"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-copy:before{content:"\e205"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-paste:before{content:"\e206"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-alert:before{content:"\e209"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-equalizer:before{content:"\e210"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-king:before{content:"\e211"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-queen:before{content:"\e212"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-pawn:before{content:"\e213"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bishop:before{content:"\e214"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-knight:before{content:"\e215"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-baby-formula:before{content:"\e216"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-tent:before{content:"\26fa"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-blackboard:before{content:"\e218"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bed:before{content:"\e219"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-apple:before{content:"\f8ff"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-erase:before{content:"\e221"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-hourglass:before{content:"\231b"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-lamp:before{content:"\e223"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-duplicate:before{content:"\e224"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-piggy-bank:before{content:"\e225"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-scissors:before{content:"\e226"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-bitcoin:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-btc:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-xbt:before{content:"\e227"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-jpy:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-yen:before{content:"\00a5"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-rub:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ruble:before{content:"\20bd"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-scale:before{content:"\e230"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ice-lolly:before{content:"\e231"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-ice-lolly-tasted:before{content:"\e232"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-education:before{content:"\e233"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-option-horizontal:before{content:"\e234"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-option-vertical:before{content:"\e235"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-menu-hamburger:before{content:"\e236"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-modal-window:before{content:"\e237"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-oil:before{content:"\e238"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-grain:before{content:"\e239"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-sunglasses:before{content:"\e240"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-text-size:before{content:"\e241"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-text-color:before{content:"\e242"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-text-background:before{content:"\e243"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-top:before{content:"\e244"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-bottom:before{content:"\e245"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-horizontal:before{content:"\e246"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-left:before{content:"\e247"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-vertical:before{content:"\e248"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-object-align-right:before{content:"\e249"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-triangle-right:before{content:"\e250"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-triangle-left:before{content:"\e251"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-triangle-bottom:before{content:"\e252"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-triangle-top:before{content:"\e253"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-console:before{content:"\e254"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-superscript:before{content:"\e255"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-subscript:before{content:"\e256"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-menu-left:before{content:"\e257"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-menu-right:before{content:"\e258"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-menu-down:before{content:"\e259"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .glyphicon-menu-up:before{content:"\e260"}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css *,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css :after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css{font-size:10px;-webkit-tap-highlight-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea{font-family:inherit;font-size:inherit;line-height:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a{color:#337ab7;text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:hover{color:#23527c;text-decoration:underline}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item>a>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .img-responsive,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail a>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail>img{display:block;max-width:100%;height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .img-rounded{border-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .img-circle{border-radius:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .sr-only-focusable:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [role=button]{cursor:pointer}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6 small{font-weight:400;line-height:1;color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3{margin-top:20px;margin-bottom:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3 small{font-size:65%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6{margin-top:10px;margin-bottom:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5 small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6 .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6 small{font-size:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h1{font-size:36px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h2{font-size:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h3{font-size:24px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h4{font-size:18px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h5{font-size:14px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .h6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css h6{font-size:12px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css p{margin:0 0 10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dt,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd kbd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css label{font-weight:700}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css address,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dt,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre{line-height:1.42857143}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .lead{font-size:21px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css small{font-size:85%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .mark,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css mark{background-color:#fcf8e3;padding:.2em}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-unstyled{padding-left:0;list-style:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-left{text-align:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-right{text-align:right}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-center{text-align:center}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-justify{text-align:justify}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-nowrap{white-space:nowrap}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-lowercase{text-transform:lowercase}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-uppercase{text-transform:uppercase}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-capitalize{text-transform:capitalize}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-muted{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-primary{color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-primary:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-primary:hover{color:#286090}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-success{color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-success:hover{color:#2b542c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-info{color:#31708f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-info:hover{color:#245269}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-warning{color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-warning:hover{color:#66512c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-danger{color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.text-danger:hover{color:#843534}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .bg-primary{color:#fff;background-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-primary:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-primary:hover{background-color:#286090}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .bg-success{background-color:#dff0d8}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-success:hover{background-color:#c1e2b3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .bg-info{background-color:#d9edf7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-info:hover{background-color:#afd9ee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .bg-warning{background-color:#fcf8e3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-warning:hover{background-color:#f7ecb5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .bg-danger{background-color:#f2dede}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.bg-danger:hover{background-color:#e4b9b9}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre code,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table{background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dl,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ul{margin-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote ol:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote p:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote ul:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ol ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ol ul,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ul ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ul ul{margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css address,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dl{margin-bottom:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css ul{margin-bottom:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-inline{margin-left:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css dd{margin-left:0}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dl-horizontal dd{margin-left:180px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container{width:740px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css abbr[data-original-title],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css abbr[title]{cursor:help;border-bottom:1px dotted #777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .initialism{font-size:90%;text-transform:uppercase}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote .small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote small{display:block;font-size:80%;color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css legend,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre{display:block;color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote .small:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote footer:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote small:before{content:'\2014 \00A0'}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css code,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd{padding:2px 4px;font-size:90%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css caption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th{text-align:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse .small:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse footer:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse small:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right .small:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right footer:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right small:before{content:''}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse .small:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse footer:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .blockquote-reverse small:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right .small:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right footer:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css blockquote.pull-right small:after{content:'\00A0 \2014'}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css code,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre{padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid{margin-right:auto;margin-left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid{padding-left:10px;padding-right:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pre-scrollable{overflow-y:scroll}@media (min-width:992px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container{width:960px}}@media (min-width:1200px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container{width:1160px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .row{margin-left:-10px;margin-right:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-9,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-9,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-9,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-12{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-11{width:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-10{width:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-9{width:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-8{width:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-7{width:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-6{width:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-5{width:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-4{width:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-3{width:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-2{width:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-1{width:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-12{right:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-11{right:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-10{right:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-9{right:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-8{right:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-7{right:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-6{right:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-5{right:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-4{right:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-3{right:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-2{right:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-1{right:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-pull-0{right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-12{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-11{left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-10{left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-9{left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-8{left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-7{left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-6{left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-5{left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-4{left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-3{left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-2{left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-1{left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-push-0{left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-12{margin-left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-11{margin-left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-10{margin-left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-9{margin-left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-8{margin-left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-7{margin-left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-6{margin-left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-5{margin-left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-4{margin-left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-3{margin-left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-2{margin-left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-1{margin-left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-xs-offset-0{margin-left:0}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-9{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-12{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-11{width:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-10{width:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-9{width:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-8{width:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-7{width:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-6{width:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-5{width:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-4{width:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-3{width:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-2{width:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-1{width:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-12{right:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-11{right:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-10{right:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-9{right:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-8{right:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-7{right:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-6{right:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-5{right:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-4{right:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-3{right:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-2{right:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-1{right:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-pull-0{right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-12{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-11{left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-10{left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-9{left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-8{left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-7{left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-6{left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-5{left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-4{left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-3{left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-2{left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-1{left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-push-0{left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-12{margin-left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-11{margin-left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-10{margin-left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-9{margin-left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-8{margin-left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-7{margin-left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-6{margin-left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-5{margin-left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-4{margin-left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-3{margin-left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-2{margin-left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-1{margin-left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-9{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-12{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-11{width:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-10{width:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-9{width:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-8{width:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-7{width:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-6{width:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-5{width:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-4{width:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-3{width:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-2{width:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-1{width:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-12{right:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-11{right:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-10{right:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-9{right:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-8{right:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-7{right:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-6{right:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-5{right:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-4{right:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-3{right:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-2{right:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-1{right:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-pull-0{right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-12{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-11{left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-10{left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-9{left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-8{left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-7{left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-6{left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-5{left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-4{left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-3{left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-2{left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-1{left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-push-0{left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-12{margin-left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-11{margin-left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-10{margin-left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-9{margin-left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-8{margin-left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-7{margin-left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-6{margin-left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-5{margin-left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-4{margin-left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-3{margin-left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-2{margin-left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-1{margin-left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-9{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-12{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-11{width:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-10{width:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-9{width:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-8{width:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-7{width:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-6{width:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-5{width:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-4{width:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-3{width:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-2{width:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-1{width:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-12{right:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-11{right:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-10{right:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-9{right:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-8{right:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-7{right:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-6{right:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-5{right:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-4{right:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-3{right:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-2{right:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-1{right:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-pull-0{right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-12{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-11{left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-10{left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-9{left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-8{left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-7{left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-6{left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-5{left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-4{left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-3{left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-2{left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-1{left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-push-0{left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-12{margin-left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-11{margin-left:91.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-10{margin-left:83.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-9{margin-left:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-8{margin-left:66.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-7{margin-left:58.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-6{margin-left:50%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-5{margin-left:41.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-4{margin-left:33.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-3{margin-left:25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-2{margin-left:16.66666667%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-1{margin-left:8.33333333%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .col-lg-offset-0{margin-left:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css caption{padding-top:8px;padding-bottom:8px;color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table{width:100%;max-width:100%;margin-bottom:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>caption+thead>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>caption+thead>tr:first-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>colgroup+thead>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>colgroup+thead>tr:first-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead:first-child>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead:first-child>tr:first-child>th{border-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody+tbody{border-top:2px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table .table{background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>tbody>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>tbody>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>tfoot>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>tfoot>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>thead>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-condensed>thead>tr>th{padding:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>tbody>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>tbody>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>tfoot>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>tfoot>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>thead>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>thead>tr>th{border:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>thead>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-bordered>thead>tr>th{border-bottom-width:2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.active>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.active>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.active>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.active>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.active>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.active>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th.active{background-color:#f5f5f5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table col[class*=col-]{position:static;float:none;display:table-column}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table td[class*=col-],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table th[class*=col-]{position:static;float:none;display:table-cell}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.active:hover>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.active:hover>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover>.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>td.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.success>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.success>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.success>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.success>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.success>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.success>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th.success{background-color:#dff0d8}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.success:hover>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.success:hover>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover>.success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>td.success:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.info>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.info>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.info>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.info>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.info>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.info>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th.info{background-color:#d9edf7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.info:hover>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.info:hover>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover>.info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>td.info:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.warning>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.warning>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.warning>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.warning>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.warning>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.warning>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th.warning{background-color:#fcf8e3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.warning:hover>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.warning:hover>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover>.warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>td.warning:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.danger>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr.danger>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>td.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tbody>tr>th.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.danger>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr.danger>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>td.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>tfoot>tr>th.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.danger>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr.danger>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>td.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table>thead>tr>th.danger{background-color:#f2dede}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.danger:hover>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr.danger:hover>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr:hover>.danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>td.danger:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table{margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>tbody>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>tbody>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>tfoot>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>tfoot>tr>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>thead>tr>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table>thead>tr>th{white-space:nowrap}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered{border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>thead>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>thead>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tbody>tr:last-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css legend{padding:0;border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset{margin:0;min-width:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css legend{width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css label{display:inline-block;max-width:100%;margin-bottom:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css output{font-size:14px;line-height:1.42857143;color:#555;display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=file]{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=range]{display:block;width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[size]{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=file]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=checkbox]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css output{padding-top:7px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control::-moz-placeholder{color:#999;opacity:1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control:-ms-input-placeholder{color:#999}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control::-webkit-input-placeholder{color:#999}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .control-label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .help-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .radio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .radio-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success.checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success.checkbox-inline label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success.radio label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success.radio-inline label{color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control::-ms-expand{border:0;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control[disabled],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control[readonly],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .form-control{background-color:#eee;opacity:1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control[disabled],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .form-control{cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=date].form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=time].form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=datetime-local].form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=month].form-control{line-height:34px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm input[type=date],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm input[type=time],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm input[type=datetime-local],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm input[type=month],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=date].input-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=time].input-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=datetime-local].input-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=month].input-sm{line-height:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg input[type=date],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg input[type=time],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg input[type=datetime-local],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg input[type=month],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=date].input-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=time].input-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=datetime-local].input-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=month].input-lg{line-height:46px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group{margin-bottom:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox-inline input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio input[type=radio],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox+.checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio+.radio{margin-top:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox-inline+.checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio-inline+.radio-inline{margin-top:0;margin-left:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox-inline.disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .checkbox.disabled label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio-inline.disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .radio.disabled label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .radio label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .radio-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] input[type=radio],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=checkbox].disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=checkbox][disabled],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=radio].disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=radio][disabled]{cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control-static.input-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control-static.input-sm{padding-left:0;padding-right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-sm{padding:5px 10px;border-radius:3px;font-size:12px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-sm{height:30px;line-height:1.5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-sm{height:30px;line-height:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-sm{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm .form-control{height:30px;line-height:1.5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-lg{border-radius:6px;padding:10px 16px;font-size:18px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm select.form-control{height:30px;line-height:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm select[multiple].form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm textarea.form-control{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-lg{height:46px;line-height:1.3333333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-lg{height:46px;line-height:46px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-lg{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg .form-control{height:46px;line-height:1.3333333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg select.form-control{height:46px;line-height:46px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg select[multiple].form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg textarea.form-control{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-feedback{position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-feedback .form-control{padding-right:42.5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .collapsing,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropup{position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-lg .form-control+.form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg+.form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-group-sm .form-control+.form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm+.form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .control-label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .help-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .radio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .radio-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning.checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning.checkbox-inline label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning.radio label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning.radio-inline label{color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .control-label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .form-control-feedback,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .help-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .radio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .radio-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error.checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error.checkbox-inline label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error.radio label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error.radio-inline label{color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-feedback label~.form-control-feedback{top:25px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .has-feedback label.sr-only~.form-control-feedback{top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .form-control-static,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .form-group{display:inline-block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .control-label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .form-group{margin-bottom:0;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .input-group{display:inline-table;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .input-group .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .input-group .input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .input-group .input-group-btn{width:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .input-group>.form-control{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .radio label{padding-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .checkbox input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .radio input[type=radio]{position:relative;margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-inline .has-feedback .form-control-feedback{top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .checkbox-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .radio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .radio{min-height:27px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group{margin-left:-10px;margin-right:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .has-feedback .form-control-feedback{right:10px}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:hover{color:#333;text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn.disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn[disabled],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.btn.disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] a.btn{pointer-events:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default{color:#333;background-color:#fff;border-color:#ccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-default.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-default:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-default.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-default:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-default .badge{color:#fff;background-color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-primary.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-primary:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-primary.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-primary:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-primary .badge{color:#337ab7;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-success.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-success{background-image:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-success.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-success .badge{color:#5cb85c;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-info.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-info.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-info .badge{color:#5bc0de;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-warning.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-warning.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-warning .badge{color:#f0ad4e;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:active.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger:active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-danger.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.disabled.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger.disabled:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger[disabled].focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-danger.focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-danger .badge{color:#d9534f;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link{color:#337ab7;font-weight:400;border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link[disabled],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:hover{border-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-link[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-lg>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-sm>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-xs>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-block{display:block;width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-block+.btn-block{margin-top:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=button].btn-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=reset].btn-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css input[type=submit].btn-block{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .fade.in{opacity:1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .collapse{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .collapse.in{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.collapse.in{display:table-row}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tbody.collapse.in{display:table-row-group}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-toggle:focus{outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu.pull-right{left:auto;right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:last-child:not(:first-child),.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:not(:first-child):not(:last-child),.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:hover{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>.dropdown-menu{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .open>a{outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-menu-left{left:0;right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-header{font-size:12px;color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified>.dropdown .dropdown-menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pull-right>.dropdown-menu{right:0;left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropup .caret,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropup .dropdown-menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-right .dropdown-menu{left:auto;right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-right .dropdown-menu-left{left:0;right:auto}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn{position:relative;float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:hover{z-index:2}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group .btn+.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group .btn+.btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group .btn-group+.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group .btn-group+.btn-group{margin-left:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar{margin-left:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar>.btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar>.input-group{margin-left:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn .caret,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn:first-child{margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group .dropdown-toggle:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group.open .dropdown-toggle{outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-lg .caret{border-width:5px 5px 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dropup .btn-lg .caret{border-width:0 5px 5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group>.btn{float:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn+.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn+.btn-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group+.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-justified>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-justified>.btn-group .btn{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-justified>.btn-group .dropdown-menu{left:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [data-toggle=buttons]>.btn input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [data-toggle=buttons]>.btn input[type=radio],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group{position:relative;display:table;border-collapse:separate}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control:focus{z-index:3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-lg>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-lg>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-lg>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-lg>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-lg>.input-group-btn>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-lg>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-lg>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-lg>.input-group-btn>.btn{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-sm>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-sm>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-sm>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-sm>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css select[multiple].input-group-sm>.input-group-btn>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-sm>.form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-sm>.input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css textarea.input-group-sm>.input-group-btn>.btn{height:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn{display:table-cell}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li>a{display:block;position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control:not(:first-child):not(:last-child),.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon:not(:first-child):not(:last-child),.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:not(:first-child):not(:last-child){border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon input[type=radio]{margin-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn-group>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.dropdown-toggle,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon:first-child{border-right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group .form-control:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn:not(:first-child),.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn-group>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-addon:last-child{border-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn{position:relative;font-size:0;white-space:nowrap}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn>.btn{position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn>.btn+.btn{margin-left:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn>.btn:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn>.btn:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn>.btn:hover{z-index:2}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:first-child>.btn-group{margin-right:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav{margin-bottom:0;padding-left:0;list-style:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li>a{padding:10px 15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li>a:hover{text-decoration:none;background-color:#eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li.disabled>a{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav .open>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav .open>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav>li>a>img{max-width:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs{border-bottom:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li{float:left;margin-bottom:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified{width:100%;border-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>li{float:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>li{display:table-cell;width:1%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified>li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-stacked>li{float:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li>a{border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li+li{margin-left:2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-stacked>li+li{margin-top:2px;margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified>li>a{text-align:center;margin-bottom:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified{border-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified>li{display:table-cell;width:1%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-justified>li>a{margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tab-content>.tab-pane{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tab-content>.active{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse{overflow-x:visible;padding-right:10px;padding-left:10px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar{border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-header{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse.in{overflow-y:visible}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-open,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top .navbar-collapse{max-height:200px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid>.navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid>.navbar-header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container>.navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container>.navbar-header{margin-right:-10px;margin-left:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-static-top{z-index:1000;border-width:0 0 1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top{top:0;border-width:0 0 1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-brand{float:left;padding:15px 10px;font-size:18px;line-height:20px;height:50px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-brand:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-brand:hover{text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-brand>img{display:block}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid>.navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid>.navbar-header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container>.navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container>.navbar-header{margin-right:0;margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-top,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-static-top{border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar>.container .navbar-brand,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar>.container-fluid .navbar-brand{margin-left:-10px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle{position:relative;float:right;margin-right:10px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle:focus{outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav{margin:7.5px -10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu .dropdown-header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu>li>a{line-height:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-striped,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-toggle{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav{float:left;margin:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav>li{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form{padding:10px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -10px}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-control-static,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-group{display:inline-block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .control-label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-group{margin-bottom:0;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .input-group{display:inline-table;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .input-group .form-control,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .input-group .input-group-addon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .input-group .input-group-btn{width:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .input-group>.form-control{width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .checkbox,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .checkbox label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .radio label{padding-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .checkbox input[type=checkbox],.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .radio input[type=radio]{position:relative;margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .has-feedback .form-control-feedback{top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .breadcrumb>li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination{display:inline-block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn .badge,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn .label{top:-1px;position:relative}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-group{margin-bottom:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-form .form-group:last-child{margin-bottom:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-btn{margin-top:8px;margin-bottom:8px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-text{float:left;margin-left:10px;margin-right:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-left{float:left!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-right{float:right!important;margin-right:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-right~.navbar-right{margin-right:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-brand{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-brand:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-text{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-toggle{border-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-toggle:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-toggle:hover{background-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-toggle .icon-bar{background-color:#888}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-form{border-color:#e7e7e7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.open>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.open>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-link{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .navbar-link:hover{color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .btn-link{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .btn-link:hover{color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .btn-link[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-default .btn-link[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .navbar-default .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse{background-color:#222;border-color:#080808}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-brand{color:#9d9d9d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-brand:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-text{color:#9d9d9d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-toggle{border-color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-toggle:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-toggle:hover{background-color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-collapse,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-form{border-color:#101010}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.open>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.open>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-link{color:#9d9d9d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .navbar-link:hover{color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .btn-link{color:#9d9d9d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .btn-link:hover{color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .btn-link[disabled]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-inverse .btn-link[disabled]:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .navbar-inverse .btn-link:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .breadcrumb>.active{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination{padding-left:0;margin:20px 0;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li{display:inline}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li:first-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li:last-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>span:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>span:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>span:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li:first-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li:last-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .badge,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li:first-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li:last-child>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager li>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager li>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager li>a:hover{text-decoration:none;background-color:#eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .next>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .next>span{float:right}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .previous>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .previous>span{float:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .disabled>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .disabled>a:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .disabled>a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.badge:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.badge:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.label:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.label:hover{color:#fff;cursor:pointer;text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label:empty{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-default{background-color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-default[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-default[href]:hover{background-color:#5e5e5e}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-primary{background-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-primary[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-primary[href]:hover{background-color:#286090}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-success{background-color:#5cb85c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-success[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-success[href]:hover{background-color:#449d44}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-info{background-color:#5bc0de}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-info[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-info[href]:hover{background-color:#31b0d5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-warning{background-color:#f0ad4e}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-warning[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-warning[href]:hover{background-color:#ec971f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-danger{background-color:#d9534f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-danger[href]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .label-danger[href]:hover{background-color:#c9302c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .badge:empty{display:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-object,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-xs>.btn .badge,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-xs .badge{top:0;padding:1px 5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active>.badge,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron .h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron h1{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item>.badge{float:right}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item>.badge+.badge{margin-right:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav-pills>li>a>.badge{margin-left:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail{margin-bottom:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert .alert-link,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .close{font-weight:700}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron>hr{border-top-color:#d5d5d5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container .jumbotron,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid .jumbotron{border-radius:6px;padding-left:10px;padding-right:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron .container{max-width:100%}@media screen and (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron{padding-top:48px;padding-bottom:48px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container .jumbotron,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid .jumbotron{padding-left:60px;padding-right:60px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron .h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .jumbotron h1{font-size:63px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail a>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail>img{margin-left:auto;margin-right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.thumbnail.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.thumbnail:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.thumbnail:hover{border-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .thumbnail .caption{padding:9px;color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert{padding:15px;border:1px solid transparent;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert h4{margin-top:0;color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert>p,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert>ul{margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert>p+p{margin-top:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-dismissable,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-dismissible{padding-right:35px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-dismissable .close,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-backdrop{top:0;right:0;bottom:0;left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-success hr{border-top-color:#c9e2b3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-success .alert-link{color:#2b542c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-info hr{border-top-color:#a6e1ec}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-info .alert-link{color:#245269}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-warning hr{border-top-color:#f7e1b5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-warning .alert-link{color:#66512c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-danger hr{border-top-color:#e4b9c0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-striped,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-success{background-color:#5cb85c}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-info{background-color:#5bc0de}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-warning{background-color:#f0ad4e}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-bar-danger{background-color:#d9534f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media{margin-top:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media:first-child{margin-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-body{zoom:1;overflow:hidden}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-body{width:10000px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-object.img-thumbnail{max-width:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media>.pull-right{padding-left:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media>.pull-left{padding-right:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-body,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-right{display:table-cell;vertical-align:top}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-middle{vertical-align:middle}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-bottom{vertical-align:bottom}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-heading{margin-top:0;margin-bottom:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .media-list{padding-left:0;list-style:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group{margin-bottom:20px;padding-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item{color:#555}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item .list-group-item-heading{color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item{width:100%;text-align:left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:focus .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:hover .list-group-item-heading{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled .list-group-item-text,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:focus .list-group-item-text,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.disabled:hover .list-group-item-text{color:#777}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active .list-group-item-heading>.small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active .list-group-item-heading>small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:focus .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:focus .list-group-item-heading>.small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:focus .list-group-item-heading>small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:hover .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:hover .list-group-item-heading>.small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:hover .list-group-item-heading>small{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active .list-group-item-text,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:focus .list-group-item-text,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item.active:hover .list-group-item-text{color:#c7ddef}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-success{color:#3c763d;background-color:#dff0d8}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success{color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success .list-group-item-heading{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-success.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-info{color:#31708f;background-color:#d9edf7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info{color:#31708f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info .list-group-item-heading{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-info.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning{color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning .list-group-item-heading{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-warning.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-danger{color:#a94442;background-color:#f2dede}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger{color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger .list-group-item-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger .list-group-item-heading{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css a.list-group-item-danger.active:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger.active:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-heading>.dropdown .dropdown-toggle,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title>.small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title>.small>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title>a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title>small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title>small>a{color:inherit}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-heading{margin-top:0;margin-bottom:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group-item-text{margin-bottom:0;line-height:1.3}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.list-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.list-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.table,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table{margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-body{padding:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-title{margin-top:0;font-size:16px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.list-group .list-group-item,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel-heading,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr:first-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr:last-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr:last-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr:first-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tbody:last-child>tr:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.list-group:first-child .list-group-item:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.list-group:last-child .list-group-item:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>tbody:first-child>tr:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .list-group+.panel-footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-collapse>.table caption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table caption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-body+.table,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.panel-body+.table-responsive,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table+.panel-body,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table>tbody:first-child>tr:first-child td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table>tbody:first-child>tr:first-child th{border-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered{border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tbody>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>tfoot>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-bordered>thead>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel>.table-responsive{border:0;margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group{margin-bottom:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel{margin-bottom:0;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel+.panel{margin-top:5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel-heading+.panel-collapse>.list-group,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel-footer{border-top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-default{border-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-primary{border-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-success{border-color:#d6e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-info{border-color:#bce8f1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-warning{border-color:#faebcc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-danger{border-color:#ebccd1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive{position:relative;display:block;height:0;padding:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive .embed-responsive-item,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive embed,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive iframe,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive object,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive-16by9{padding-bottom:56.25%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .embed-responsive-4by3{padding-bottom:75%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .well-lg{padding:24px;border-radius:6px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .well-sm{padding:9px;border-radius:3px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .close{float:right;font-size:40px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.8;filter:alpha(opacity=20)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .close:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-open .modal{overflow-x:hidden;overflow-y:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-dialog{position:relative;width:auto;margin:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-backdrop{position:fixed;z-index:1040;background-color:#000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-header .close{margin-top:-2px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-title{margin:0;line-height:1.42857143}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-body{position:relative;padding:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer .btn-group .btn+.btn{margin-left:-1px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer .btn-block+.btn-block{margin-left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-dialog{width:600px;margin:30px auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-sm{width:300px}}@media (min-width:992px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-lg{width:900px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top{margin-top:-3px;padding:5px 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.right{margin-left:3px;padding:0 5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom{margin-top:3px;padding:5px 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.left{margin-left:-3px;padding:0 5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top .tooltip-arrow,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top-left .tooltip-arrow,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom .tooltip-arrow,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom-left .tooltip-arrow,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-caption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control{color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.top{margin-top:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.right{margin-left:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.bottom{margin-top:10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.left{margin-left:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover-content{padding:9px 14px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover>.arrow,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner{position:relative}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover>.arrow{border-width:11px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover>.arrow:after{border-width:10px;content:""}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.left>.arrow:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.right>.arrow:after{content:" ";bottom:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner{overflow:hidden;width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item>a>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.active.right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.active.left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.next.left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.prev{display:block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.active{left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.prev{position:absolute;top:0;width:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.next{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.prev{left:-100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.next.left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.prev.right{left:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.active.left{left:-100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-inner>.active.right{left:100%}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:rgba(0,0,0,0)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev{left:50%;margin-left:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next{right:50%;margin-right:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev:before{content:'\2039'}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next:before{content:'\203a'}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-caption .btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-hide{text-shadow:none}@media screen and (min-width:768px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-prev{margin-left:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .glyphicon-chevron-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-control .icon-next{margin-right:-10px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-caption{left:20%;right:20%;padding-bottom:30px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .carousel-indicators{bottom:20px}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .clearfix:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .clearfix:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dl-horizontal dd:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dl-horizontal dd:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-header:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-header:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-header:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-header:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-body:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-body:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .row:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .row:before{content:" ";display:table}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-group-vertical>.btn-group:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .btn-toolbar:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .clearfix:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container-fluid:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .container:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .dl-horizontal dd:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .form-horizontal .form-group:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-footer:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .modal-header:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .nav:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-collapse:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar-header:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .navbar:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pager:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .panel-body:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .row:after{clear:both}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .center-block{display:block;margin-left:auto;margin-right:auto}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pull-right{float:right!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .pull-left{float:left!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hide{display:none!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .show{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-inline-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-inline-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-inline-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-block,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-inline,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-inline-block{display:none!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .invisible{visibility:hidden}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table.visible-xs{display:table!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.visible-xs{display:table-row!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td.visible-xs,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th.visible-xs{display:table-cell!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-block{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-inline{display:inline!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table.visible-sm{display:table!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.visible-sm{display:table-row!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td.visible-sm,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th.visible-sm{display:table-cell!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-block{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-inline{display:inline!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table.visible-md{display:table!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.visible-md{display:table-row!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td.visible-md,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th.visible-md{display:table-cell!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-block{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-inline{display:inline!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table.visible-lg{display:table!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.visible-lg{display:table-row!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td.visible-lg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th.visible-lg{display:table-cell!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-block{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-inline{display:inline!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-lg-inline-block{display:inline-block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden-lg{display:none!important}}@media (max-width:767px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden-md{display:none!important}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print{display:none!important}@media print{.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print{display:block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css table.visible-print{display:table!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css tr.visible-print{display:table-row!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css td.visible-print,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css th.visible-print{display:table-cell!important}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-block{display:none!important}@media print{.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-block{display:block!important}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-inline{display:none!important}@media print{.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-inline{display:inline!important}}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-inline-block{display:none!important}@media print{.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .visible-print-inline-block{display:inline-block!important}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-bootstrap-css .hidden-print{display:none!important}}
/* main.css; 349 pages */
/*:root{--font-family-h:'Gotham-Medium', sans-serif;--font-family-regular: 'Gotham-book',sans-serif}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css{--font-family-h:'HelveticaNeueBold', sans-serif;--font-family-regular: 'HelveticaNeue-Roman',sans-serif;--font-family-oswald:'Oswald-Bold'}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .row{
margin-left: -10px;
margin-right: -10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container-fluid{
margin-right: auto;
margin-left: auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css input[type="text"]:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .uneditable-input:focus{
border-color: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
border: 1px solid #eee;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-hidden{display: none !important}
@font-face{
font-family: 'HelveticaNeue-Roman';
src: url("/assets/design-system/production/fonts/HelveticaNeueRoman.otf"); /* IE9 Compat Modes */
font-style:normal;
}
@font-face{
font-family: 'HelveticaNeueBold';
src: url("/assets/design-system/production/fonts/HelveticaNeueBold.ttf"); /* IE9 Compat Modes */
font-style:normal;
}
@font-face{
font-family: 'Oswald-Bold';
src: url("/assets/design-system/production/fonts/Oswald-Bold.ttf"); /* IE9 Compat Modes */
font-style:normal;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-left{text-align:left;margin-bottom: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .m-b{margin-bottom: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .f-w6{font-weight:600;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .back-green{background-color: #003E34;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .dinpro-regular{ font-family: 'Lato', sans-serif; font-weight: 400;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .dinpro-medium{ font-family: 'Lato', sans-serif; font-weight: 700;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .oswald-regular{ font-family: var(--font-family-oswald), sans-serif; font-weight: 400; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .oswald-bold{ font-family: var(--font-family-regular), sans-serif; font-weight: 700; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .roboto-regular{ font-family: 'Lato', sans-serif; font-weight: 400; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sans-condensed{font-family: 'Lato'; font-weight: 700; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .roboto-medium{ font-family: 'Lato', sans-serif; font-weight: 700;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hide-text{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-center{text-align:center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-search{margin-bottom: 20px;font-size:15px;font-family: var(--font-family-regular) !important;color:#555}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-0{
padding-top:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .a-fil{
font-size:15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .a-fil:hover{
font-weight: 600;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere{
position: relative;
top: auto;
bottom: auto;
overflow: visible;
background: #FFF;
width: 100%;
z-index: 99;
border: none;
border-right: none;
box-shadow: none;
display: block;
float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere{
-webkit-flex: 0 0 16em;
-moz-flex: 0 0 16em;
-ms-flex: 0 0 16em;
flex: 0 0 16em;
padding: 70px 16px 40px 40px;

background: #fff;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere h5 .clear-filter{
float: right;
margin: -2px 0 0 10px;
height: auto;
width: auto;
color: #757575;
background: #eee;
padding: 4px 5px 3px 6px;
text-align: center;
display: inline-block;
border-radius: 1px;
text-transform: none;
letter-spacing: 0;
font-size: 13px;
font-weight: 300;
cursor: pointer;
-webkit-transition: .15s ease;
transition: .15s ease}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere .filter-panel{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
opacity: 1;
display: block!important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter button{
color: #757575;
display: block;
background:transparent;
border:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-toggle button:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter button:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter button:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter button:visited{

border:none !important;
-webkit-appearance:none;
box-shadow: none;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter{
float: right;
position: relative;
top: -2px;
margin-left: 32px;
font-size: 14px;
color: #757575;
-webkit-transition: .4s cubic-bezier(.3, .3, .05, 1);
transition: .4s cubic-bezier(.3, .3, .05, 1);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter a{
color: #757575;
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter{
-webkit-flex: 0 0 16em;
-moz-flex: 0 0 16em;
-ms-flex: 0 0 16em;
flex: 0 0 16em;
padding: 0 16px 16px 0;
border-right: 1px solid #ddd;
position: fixed;
top:190px;
right:20px;
bottom: 5%;
overflow-y: scroll;
background: #fff;
padding: 0;
width: 230px;
z-index: 999;
border-right: none;
border: 1px solid #ddd;
border-radius: 3px;
box-shadow: 0 0 30px rgba(0,0,0,0.1);
transform: translateZ(0);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-header-modele{
padding: 15px 5px;
position: fixed;
top:100px;
border-top: 1px solid #eee;
z-index: 9999999;
background: #fff;
width:1010px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .no-box{
box-shadow: none !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-filter{
top:100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .h5{
margin-bottom: 1rem;
font-size: 13px;
font-weight: bold;
letter-spacing: 1.4px;
line-height: 1.3;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: nowrap;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-group{
margin-bottom: 25px;
margin-left: 0px;
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-group .control{
display: block;
padding-left: 2.5rem;
margin-left: -2.5rem;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-group .control input{
position: absolute;
opacity: 0;
z-index: -1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-group .control-indicator{
position: absolute;
top: .15rem;
left: 0;
display: block;
width: 2rem;
height: 2rem;
line-height: 1rem;
font-size: 100%;
color: #eee;
text-align: center;
background-color: transparent;
background-size: 50% 50%;
background-position: center center;
background-repeat: no-repeat;
transform: translate3d(0, 0, 0);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-panel{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
opacity: 1;
display: block!important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-inner{
padding: 16px 8px 50px 0px;
}
/* http://meyerweb.com/eric/tools/css/reset/v2.0 | 20110126 License: none (public domain) */
html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css div,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css applet,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css object,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css iframe,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css p,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css blockquote,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css pre,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css abbr,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css acronym,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css address,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css big,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css cite,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css code,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css del,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css dfn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css em,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ins,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css kbd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css q,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css s,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css samp,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css small,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css strike,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css strong,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css sub,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css sup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css tt,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css var,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css b,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css u,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css i,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css center,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css dl,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css dt,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css dd,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ul,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css fieldset,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css form,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css legend,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css table,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css caption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css tbody,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css tfoot,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css thead,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css tr,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css th,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css td,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css article,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css aside,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css canvas,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css details,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css embed,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css figure,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css figcaption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css hgroup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css nav,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css output,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ruby,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css section,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css summary,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css time,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css mark,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css audio,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css video,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css input,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css textarea{ box-sizing: border-box; margin: 0; padding: 0; border: 0; font: inherit; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h1{
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0;
margin-bottom: 10px;
text-align: left;
line-height: 40px;
font-family: var(--font-family-oswald);
font-weight: 800;
text-shadow: none;
font-size: 35px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body{ min-height: 100%; font-family: var(--font-family-regular), sans-serif; font-size: 17px; font-weight: 400;position:relative; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css article,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css aside,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css details,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css figcaption,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css figure,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css footer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css hgroup,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css menu,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css nav,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css section{ display: block; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body{ font-size: 17px; line-height: 1; background-color: #fff; font-family:var(--font-family-regular);  font-weight: 400;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ol,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ul{ list-style: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css blockquote,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css q{ quotes: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css blockquote:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css blockquote:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css q:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css q:after{ content: ''; content: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css table{ border-collapse: collapse; border-spacing: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css a{ text-decoration: none; color: inherit; cursor: pointer; outline: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css a:active,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css a:focus{ outline: 0; color: inherit; text-decoration: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css a:hover{text-decoration: none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modal-op{
overflow-x:hidden;
overflow-y:hidden;
min-height: 100%;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modal-opp{
overflow-x:hidden;
overflow-y:hidden;
position: absolute;
width: 100%;
height: 100%;
margin:0px ;
margin-right: 10px !important;
padding:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ::placeholder{ /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #9b9b9b;
opacity: 1; /* Firefox */
font-size:15px;
font-family: var(--font-family-regular) !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css :-ms-input-placeholder{ /* Internet Explorer 10-11 */
color: #9b9b9b;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css ::-ms-input-placeholder{ /* Microsoft Edge */
color: #9b9b9b;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup:hover{
background:#eee;
}

/* INFO-LIVRAISON */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-guide{ margin-bottom: 20px; border-bottom: 1px solid #2222;max-width: 992px;margin-left: auto;margin-right: auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison{ background-color: #21304e; position: fixed; top: 0px; left: 0px; width: 100%; z-index: 1500;padding:12px 5px; color:#fff;text-align: center;font-size:14px; line-height: 16px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container{ height: 60px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container p{ color: #FFF; text-transform: uppercase; line-height: 1.4em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container img:hover{ cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fermer-info{ display: none; }
/* MENU LATERAL */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-lateral-container{ display: block; position: fixed; z-index: 99999; top: 0px; bottom: 0; left:-100%; right: 0; background: transparent; padding: 0; pointer-events: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mlc-open{ /*background: rgba(0,0,0,0.8);*/ pointer-events:auto; top:100px;left:0px !important;transform: translate(0);
visibility: visible;-webkit-transition: all 0.8s;
transition: all 0.8s;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-lateral{ max-width: 90%; height: 100%; background: #FFF; /*margin-left: -90*/ -webkit-transition: all 0.0s; transition: all 0.0s; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: justify; align-content: space-between; overflow: auto; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ml-open{margin-left: 0; /*box-shadow: 2px 5px 15px 0px #6b6969cc; -webkit-box-shadow:2px 5px 15px 0px #6b6969cc; -moz-box-shadow: 2px 0px 15px 0px #6b6969cc;*/ -webkit-transition: all 0.6s; transition: all 0.6s;     border: .5px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ml-upper{text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-top{ width: 100%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-top-titre-croix{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; -ms-flex-line-pack: center; align-content: center; padding: 20px 20px 0 20px; width: 30%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .titre-content{ font-size: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-croix{ display: -webkit-box; display: -ms-flexbox; display: flex; width: 20px; height: 20px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; margin-left: 5px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-croix span{ display: block; width: 20px; height: 2px; background: #21304e; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-croix span:before{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-top-welcome{ line-height:24px;font-size: 1em; padding: 30px 10px; border-bottom: 1px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-top-welcome a{ text-decoration: underline; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-bot{ width: 100%; overflow: auto; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie{ border-bottom: none !important; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li{ font-size: 1em; cursor: pointer;margin:20px ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .arrow{width: 14px;height: 14px;margin-right: 5px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li a{display: flex;align-items: center;justify-content: space-between; padding: 10px 10px; cursor: pointer;width:100%;font-family: var(--font-family-h);font-weight: bold; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li span{max-width:100%;line-height: 20px;font-family: var(--font-family-oswald) !important;font-size:20px;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li:hover{ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie > li a:active{color:#000 }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-categorie li img{ display: inline-block; margin-left: 10px; height: 6px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .guide-menu-deroulant{ height: 0; overflow: hidden; -webkit-transition: all 0.2s; transition: all 0.2s; padding: 0 15px 0 10px; background-color: #f6f6f6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .open-guide{ height: auto; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-footer{ width: 100%; text-align: left; font-size: 1em; border-top: none !important; padding: 25px 15px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon{
width: 20px;
height: 20px;
margin-right: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-item{
display: inline-flex;
align-items: center;
color: #333;
text-decoration: none;
margin:10px 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-user{border: 2px solid #fff;color:#fff;
border-radius: 50%;
padding: 1px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-theme .icon-user{border:2px solid; #333;color:#333}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-item:hover{text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-greeting{margin: 2px 15px 1px 25px;font-size:0.9rem;font-family: var(--font-family-regular) !important;font-weight: bold;color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contact-rapide{  margin-bottom: 10px;float:left;width:100%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .langue{display:inline-block;float:left;padding: 12px 0px;margin-right:10px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contact-rapide span{ display: block; margin-top: 5px; color: #005539; text-decoration: underline; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix-langue{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .drapeau-langue{ margin-left: 5px; width: 20px; height: 14px; margin-top: 2px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bouton_cm{width:141px;height:41px;margin: 0 auto;display:block;background-image: url("/assets/design-system/production/img/bouton_cm.png"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bouton_in{width:141px;height:41px;margin: 0 auto;display:block;background-image: url("/assets/design-system/production/img/bouton_in.png"); }
/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navigation-fixe{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 10px; height: 80px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container{ /*width: 20%;  display: -webkit-box;  display: -ms-flexbox;  display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;*/ position: absolute; left: calc(45%); left: -moz-calc(45%);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container > img{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo{ max-width: 120%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo img{ /*max-width: 120%;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; height: 100%; position: absolute; left: calc(50% - 570px); left: -moz-calc(50% - 570px); padding-top: 25px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-burger{ display: block; width: 20px; height: 2px; background: #21304e; position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-burger:before{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; position: absolute; top: 0; left: 0; -webkit-transform: translateY(-7px); transform: translateY(-7px); -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-burger:after{ content: ''; display: block; width: 20px; height: 2px; background: #21304e; position: absolute; top: 0; left: 0; -webkit-transform: translateY(7px); transform: translateY(7px); -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .compte-btn{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{ cursor: pointer;}

/*HEADER HOME */


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose{font-weight: 800;border:none;margin:0 auto;display: flex;align-items: center; justify-content: center; padding: 0px 50px !important; font-size: 16px; background: #005539; color: #FFF;text-transform: uppercase; text-align: center; height:56px;border-radius:0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose:hover{box-shadow: 0 12px 24px rgba(0, 107, 79, 0.24);transform: translateY(-1px); text-decoration: underline; background: #1a6a4b; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-vert:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-button:hover{ background: #1a6a4b; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-home{ display: inline-block; padding: 10px 10px; font-size: 1em; line-height: 1.4em; background: #005539; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; text-align: center; height: 50px; line-height: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-home:hover{ text-decoration: underline; background: #1a6a4b; color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-style{display:flex;align-items: center; justify-content: center; padding: 0px 30px; height:50px;font-size: 1em; background:transparent; color:#21304e; text-align: center;border:2px solid #eee; width: 100%;margin-bottom: 20px;text-transform: uppercase;font-weight: 800; width: 100% !important;font-size: 17px;font-family: var(--font-family-regular);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css input[type=submit]{margin:30px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tcenter a{max-width:300px !important;margin:0 auto !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-cataloguee a{position:relative;max-width: 400px;margin:30px auto;text-transform: uppercase;color:#000;    font-weight: 900;font-family: var(--font-family-regular);font-size: 0.9rem;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-cataloguee img{height:10px;margin-left:8px;margin-top:-2px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-cataloguee a::after{
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 100%;
height: 3px;
background-color: #000;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-cataloguee a:hover::after{width:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .big-btn{ padding:0px !important;max-width:400px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-style:hover{text-decoration: underline;}
/* HEADER CATALOGUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page{ padding: 20px 10px; background-repeat: no-repeat; /*background-size: cover;*/ background-position: center center; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-tissu{ padding: 20px 10px; background-repeat: no-repeat; /*background-size: cover;*/ background-position: center center; text-align: center; color: #FFF; margin-bottom: 5px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bgk-catalogue-chemise{ background-image: url("/assets/design-system/production/img/avis-clients.jpg");     padding: 100px 10px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bgk-catalogue-tissu{ background-image: url("/assets/design-system/production/img/AMBIANCE_catalogue_tissu_1920_352.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bgk-guide{ background-image: url("/assets/design-system/production/img/guide-mesure.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bgk-b2b{ background-image: url("/assets/design-system/production/img/photo_chemise_entreprise_logo.jpg"); padding: 100px 10px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne{ font-size: 1em; text-transform: uppercase; margin-bottom: 5px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne a{ opacity: 0.7; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne a:hover{ opacity: 1; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne-activ{ /*font-size: 2em;*/ text-transform: uppercase; line-height: 1em; margin-bottom: 10px;text-align:center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-find{ font-size: 1em; }

/* FILTRES CATALOGUE */

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-container{ height: 40px; width: 100%; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow:0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); position: relative; z-index: 10; background-color: white; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-container-tissus{ height: 20px; width: 100%; position: relative; z-index: 10;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-container-tissus-home{ height: 100px; width: 100%; position: relative; z-index: 10;margin-top:20px;margin-bottom:50px;background:#005539}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .masquer-span{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-mobile{ line-height: 38px; text-align: center; font-size: 1em; cursor: pointer; -webkit-transition: all 0.2s; transition: all 0.2s; background: #005539; color: #fff; /*box-shadow: 0 0 7px #005539; -webkit-box-shadow: 0 0 7px #005539; -moz-box-shadow: 0 0 7px #005539;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-mobile:hover{ -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue{ display: none; min-width:90% ;height: 100vh; padding: 50px 20px; /*background-color: #FFF; overflow: auto;*/ /*border: 1px solid #e6e6e6;  /*box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);*/}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home{ display: none; min-width:90% ; padding: 10px 20px; /*background-color: #FFF; overflow: auto;*/ /*border: 1px solid #e6e6e6;  /*box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);*/}
/*.filtres-catalogue { display: none; min-width:90% ; max-height: 300px; padding: 25px 20px; background-color: #21304e; overflow: auto; border: 1px solid #e6e6e6;  box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow:  0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span{ display: block; width: 100%; /*font-size: 2em;*/ margin-bottom: 20px; color: #9b9b9b; padding-right: 40px;height:31px;} /*color: #243455;*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home > li span{ display: block; width: 100%; /*font-size: 2em;*/ margin-bottom: 20px; color: #9b9b9b; padding-right: 40px;} /*color: #243455;*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant{ margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li{font-family: var(--font-family-regular); font-size: 15px; line-height: 2.2em; cursor: pointer; padding-left: 32px; background-repeat: no-repeat; background-position: 10px center; color: #555; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li:hover{ background-color: #f6f6f6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-blanc{ background-image: url("/assets/design-system/production/img/icon-couleur-blanc.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-noir{ background-image: url("/assets/design-system/production/img/icon-couleur-noir.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-bleu{ background-image: url("/assets/design-system/production/img/icon-couleur-bleu.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-rouge{ background-image: url("/assets/design-system/production/img/icon-couleur-rouge.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-rose{ background-image: url("/assets/design-system/production/img/icon-couleur-rose.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-marron{ background-image: url("/assets/design-system/production/img/icon-couleur-marron.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-vert{ background-image: url("/assets/design-system/production/img/icon-couleur-vert.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-gris{ background-image: url("/assets/design-system/production/img/icon-couleur-gris.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-violet{ background-image: url("/assets/design-system/production/img/icon-couleur-violet.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-jaune{ background-image: url("/assets/design-system/production/img/icon-couleur-jaune.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-orange{ background-image: url("/assets/design-system/production/img/icon-couleur-orange.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-beige{ background-image: url("/assets/design-system/production/img/icon-couleur-beige.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .couleur-toutes{ background-image: url("/assets/design-system/production/img/icon-couleur-toutes.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .open-filtres{ display: block; }

/* CATALOGUE */


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-marge{margin: 15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo{ height: 367px;width:100%;max-width:361px; overflow: hidden;padding:0px;text-align:center;position: relative;margin:0 auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .denim{background:url("/assets/design-system/production/img/denim.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .denim:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/denim.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
/*.chemise-catalogue-photo:hover{ background: linear-gradient( rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),url("/assets/design-system/production/img/thomas.jpg");background-size:cover;background-repeat:no-repeat;}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lin{background:url("/assets/design-system/production/img/lin.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lin:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/lin.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flanelle{background:url("/assets/design-system/production/img/flanelle.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flanelle:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .monti{background:url("/assets/design-system/production/img/flanelle_monti.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .monti:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle_monti.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .induo{background:url("/assets/design-system/production/img/induo_home.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .induo:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/induo_home.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .twill{background:url("/assets/design-system/production/img/twill-carreaux-mileta.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .twill:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/twill-carreaux-mileta.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .canclini{background:url("/assets/design-system/production/img/canclini.jpg") no-repeat !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .canclini:hover{background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/canclini.jpg") !important;background-size:cover;background-repeat:no-repeat ;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin95{
margin-top:95px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin20{
margin-bottom: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin-top-20{
margin-top: 40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand{float:left;font-size:18px;line-height:20px;height:50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo .content{display:block;width:100%;border:1px dashed #e6e6e6;height:100%;position:relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo .content .prix-catalogue-home{display:block;position:absolute;bottom:30px;left: 30px; background:#fff;border-radius:50%;width:60px;height:60px;text-align:center;line-height:60px;font-weight:bold;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo .content:hover{border:1px dashed #e6e6e6;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo img{ max-height: 200%;-webkit-transition: all 0.0s; transition: all 0.0s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-catalogue{ font-size: 16px; line-height: 1.4em; margin-bottom: 10px; width: 100%; padding-top: 10px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-catalogue-hover:hover{    text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-catalogue{ font-size: 15px; line-height: 1.4em;  /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-cataloguee{ font-size: 16px; line-height: 1.4em; margin-bottom: 0px; width: 100%; padding-top:0px;text-align: left;font-family: var(--font-family-oswald) !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-cataloguee-hover:hover{    text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-cataloguee{ font-family:var(--font-family-regular);font-size: 17px; line-height: 1.4em; width: 100%;text-align:center; font-weight: bold;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details-home{ max-height: 200px; overflow: hidden; text-align: center; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; padding-left: 5px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details-home a{padding:0px 50px !important;margin:0 auto;    height: 40px;line-height: 40px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details{max-width:275px;margin:10px auto;max-height:220px;overflow: hidden; text-align: left; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; padding-left: 5px;gap:5px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details a:hover{ text-decoration: underline !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-catalogue-home{ font-size: 24px; line-height: 1.4em; margin-bottom: 20px; width: 100%; padding-top: 10px;font-family:var(--font-family-oswald);font-weight:700}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-catalogue-home-hover:hover{    text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-catalogue{ cursor:text !important; font-size: 16px; line-height: 1.4em; width: 100%;height:70px;color:#000;margin-bottom:30px; /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ font-weight: normal;font-family:var(--font-family-regular)}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-cataloguee{font-size: 17px; line-height: 1.4em; width: 100%;color:#000;margin-bottom:20px; /*position: absolute; top: calc(50% + 150px); top: -moz-calc(50% + 150px); left: 0px;*/ font-weight: normal;font-family:var(--font-family-regular)}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-motif{ border: 5px solid transparent; -o-border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; padding: 30px 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-motif-texte{ text-align: center; font-size: 1em; line-height: 1.4em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-catalogue{ text-align: center; margin:20px auto;padding:0 5px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fin-apercu-cataloguee{ text-align: center; margin:60px auto;padding:0 5px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tissu-catalogue{ width: 100%; margin-bottom: 30px; margin-top: 0px; border: 2px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; overflow: hidden;}
/*.tissu-catalogue:hover { border: 2px solid #e6e6e6; -webkit-transition: all 0.2s; transition: all 0.2s; }*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sans-padding{ padding-left: 0; padding-right: 0;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sans-marge{ margin-left: 0;  margin-right: 0;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-tissu{
font-size:21px;font-family:'Gotham-Medium', sans-serif;font-weight:bold;margin-bottom:30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h1-chemise{
font-family: var(--font-family-h), sans-serif;font-weight: normal; font-size: 24px; margin: 20px 10px 10px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .desc-modele{
text-align:left;font-size:15px;font-family:var(--font-family-regular);
}

/* BANDEAU TISSU */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu{ padding: 50px 10px; background: url("/assets/design-system/production/img/bgk-catalogue-chemise.jpg") no-repeat center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-top{ font-size: 31px; text-transform: uppercase; color: #005539; margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-content{ font-size: 31px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-bot{ font-size: 31px; text-transform: uppercase; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-tisseur{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-line-pack: center; align-content: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-tisseur img{ margin: 5px; }

/* TEMOIGNAGES */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-container{ padding: 50px 25px; margin-bottom: 50px; border: 5px solid transparent; -o-border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; border-image: url("/assets/design-system/production/img/bgk-border-motif.svg") 8 repeat; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-titre{ text-align: center; font-size: 31px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-titree{ text-align: left; font-size: 28px; text-transform: uppercase; line-height: 1.4em; margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-love{ margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-content{ margin-bottom: 30px; border-bottom: 1px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-content:last-child{ margin-bottom: 0; border-bottom: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignage-client{ font-size: 17px; margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignage-nom-client{ font-size: 0.8em; line-height: 1.4em; color: #777777; margin-bottom: 30px; }

/* HEADER CONNEXION */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bgk-connexion{ background-image: url("/assets/design-system/production/img/bgk-connexion.jpg"); }
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger{
width:130px;
height:70px;
/* padding: 10px 10px 15px;*/
display: inline-block;
cursor: pointer;
transition-property: opacity, filter;
transition-duration: 0.15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger:hover{
opacity: 0.7; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-box{
width: 40px;
height: 24px;
display: inline-block;
position: relative; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner{
display: block;
top: 50%;
margin-top: -2px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::after{
width: 35px;
height: 2px;
background-color: #000;
border-radius: 4px;
position: absolute;
transition-property: transform;
transition-duration: 0.15s;
transition-timing-function: ease; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::after{
content: "";
display: block; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::before{
top: -10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger-inner::after{
bottom: -10px; }

/*
* 3DX
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglets{
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-flex-direction: row;
-moz-flex-direction: row;
flex-direction: row;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h-onglet{
font-family: inherit;
font-size: 15px !important;
text-align:center;
font-size: 1.5rem;
font-weight: 700;
margin: 15px 15px 10px 15px;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet.active{
background-color: #005539;
color: #FFF;
border: 1px solid #005539;
border-radius: 3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-deroulant:hover{
background: #eee;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet{
width: 90px;
font-size: 12px;
padding: 12px 0px 12px 0px;
text-align: center;
margin: 0 2px 5px 2px;
background-color: #FFF;
cursor: pointer;
border: 1px solid #005539;
border-radius: 3px;
font-weight: 600;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .activve{
border:3px solid #005539 !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parts{
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: left;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: left;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background-color: #FFF;
margin-bottom: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parts1{
width:850px;
margin: 20px auto;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: left;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: left;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background-color: #FFF;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-center{
-webkit-box-pack: justify;
-webkit-justify-content: center !important;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: center !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-chemise{
padding: 15px 20px;
font-family: var(--font-family-oswald);
width: 250px;
font-weight: normal;
margin: 0 auto;
font-size: 32px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contain{
padding-left: 0px; padding-right: 0px;width:850px;margin-bottom:120px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part{
margin:10px 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part1{
margin:10px 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part1 .img{
width: 100%;
height: 80px;
/* border: 1px dashed #bfbfbf; */
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 110px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part .img{
width: 95px;
height: 55px;
/* border: 1px dashed #bfbfbf; */
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 110px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup1:hover{
background:#eee;
border:2px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup1 .product-info{
position: absolute;
bottom: 10px;
right: 10px;
width: 20px;
display: block;
text-align: center;
height: 20px;
padding:2px;
cursor: pointer;
background:#a6a6a6;
color:#fff;
border-radius: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part .img img{
opacity: 1;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parts .part .name{
padding-left: 2.5px;
padding-right: 2.5px;
cursor: pointer;
width: 90px;
margin: auto;
margin-top: 10px;
text-align: center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parts1 .part1 .name{
padding-left: 2.5px;
padding-right: 2.5px;
cursor: pointer;
width: 100%;
margin: auto;
margin-top: 10px;
text-align: center;
font-family: var(--font-family-regular);
font-size:16px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx.is-active .hamburger-inner{
background-color: transparent;
transform: rotateY(180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* 3DX Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r.is-active .hamburger-inner{
background-color: transparent;
transform: rotateY(-180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dx-r.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* 3DY
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy.is-active .hamburger-inner{
background-color: transparent;
transform: rotateX(-180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* 3DY Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r.is-active .hamburger-inner{
background-color: transparent;
transform: rotateX(180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dy-r.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* 3DXY
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy.is-active .hamburger-inner{
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* 3DXY Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r .hamburger-box{
perspective: 80px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r .hamburger-inner{
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r .hamburger-inner::after{
transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r.is-active .hamburger-inner{
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r.is-active .hamburger-inner::before{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--3dxy-r.is-active .hamburger-inner::after{
transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
* Arrow
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrow.is-active .hamburger-inner::before{
transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrow.is-active .hamburger-inner::after{
transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
* Arrow Right
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrow-r.is-active .hamburger-inner::before{
transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrow-r.is-active .hamburger-inner::after{
transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
* Arrow Alt
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt .hamburger-inner::before{
transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt .hamburger-inner::after{
transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt.is-active .hamburger-inner::before{
top: 0;
transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt.is-active .hamburger-inner::after{
bottom: 0;
transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
* Arrow Alt Right
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt-r .hamburger-inner::before{
transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt-r .hamburger-inner::after{
transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt-r.is-active .hamburger-inner::before{
top: 0;
transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowalt-r.is-active .hamburger-inner::after{
bottom: 0;
transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
* Arrow Turn
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn.is-active .hamburger-inner{
transform: rotate(-180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn.is-active .hamburger-inner::before{
transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn.is-active .hamburger-inner::after{
transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
* Arrow Turn Right
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn-r.is-active .hamburger-inner{
transform: rotate(-180deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn-r.is-active .hamburger-inner::before{
transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--arrowturn-r.is-active .hamburger-inner::after{
transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
* Boring
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring .hamburger-inner,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring .hamburger-inner::after{
transition-property: none; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring.is-active .hamburger-inner{
transform: rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring.is-active .hamburger-inner::before{
top: 0;
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--boring.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(-90deg); }

/*
* Collapse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse .hamburger-inner{
top: auto;
bottom: 0;
transition-duration: 0.13s;
transition-delay: 0.13s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse .hamburger-inner::after{
top: -20px;
transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse .hamburger-inner::before{
transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse.is-active .hamburger-inner{
transform: translate3d(0, -10px, 0) rotate(-45deg);
transition-delay: 0.22s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse.is-active .hamburger-inner::after{
top: 0;
opacity: 0;
transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse.is-active .hamburger-inner::before{
top: 0;
transform: rotate(-90deg);
transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Collapse Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r .hamburger-inner{
top: auto;
bottom: 0;
transition-duration: 0.13s;
transition-delay: 0.13s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r .hamburger-inner::after{
top: -20px;
transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r .hamburger-inner::before{
transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r.is-active .hamburger-inner{
transform: translate3d(0, -10px, 0) rotate(45deg);
transition-delay: 0.22s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r.is-active .hamburger-inner::after{
top: 0;
opacity: 0;
transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--collapse-r.is-active .hamburger-inner::before{
top: 0;
transform: rotate(90deg);
transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Elastic
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic .hamburger-inner{
top: 2px;
transition-duration: 0.275s;
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic .hamburger-inner::before{
top: 10px;
transition: opacity 0.125s 0.275s ease; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic .hamburger-inner::after{
top: 20px;
transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic.is-active .hamburger-inner{
transform: translate3d(0, 10px, 0) rotate(135deg);
transition-delay: 0.075s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic.is-active .hamburger-inner::before{
transition-delay: 0s;
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic.is-active .hamburger-inner::after{
transform: translate3d(0, -20px, 0) rotate(-270deg);
transition-delay: 0.075s; }

/*
* Elastic Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r .hamburger-inner{
top: 2px;
transition-duration: 0.275s;
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r .hamburger-inner::before{
top: 10px;
transition: opacity 0.125s 0.275s ease; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r .hamburger-inner::after{
top: 20px;
transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r.is-active .hamburger-inner{
transform: translate3d(0, 10px, 0) rotate(-135deg);
transition-delay: 0.075s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r.is-active .hamburger-inner::before{
transition-delay: 0s;
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--elastic-r.is-active .hamburger-inner::after{
transform: translate3d(0, -20px, 0) rotate(270deg);
transition-delay: 0.075s; }

/*
* Emphatic
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic{
overflow: hidden; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic .hamburger-inner{
transition: background-color 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic .hamburger-inner::before{
left: 0;
transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic .hamburger-inner::after{
top: 10px;
right: 0;
transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic.is-active .hamburger-inner{
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic.is-active .hamburger-inner::before{
left: -80px;
top: -80px;
transform: translate3d(80px, 80px, 0) rotate(45deg);
transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic.is-active .hamburger-inner::after{
right: -80px;
top: -80px;
transform: translate3d(-80px, 80px, 0) rotate(-45deg);
transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
* Emphatic Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r{
overflow: hidden; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r .hamburger-inner{
transition: background-color 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r .hamburger-inner::before{
left: 0;
transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r .hamburger-inner::after{
top: 10px;
right: 0;
transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r.is-active .hamburger-inner{
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r.is-active .hamburger-inner::before{
left: -80px;
top: 80px;
transform: translate3d(80px, -80px, 0) rotate(-45deg);
transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--emphatic-r.is-active .hamburger-inner::after{
right: -80px;
top: 80px;
transform: translate3d(-80px, -80px, 0) rotate(45deg);
transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
* Minus
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus .hamburger-inner::after{
transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus.is-active .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus.is-active .hamburger-inner::after{
opacity: 0;
transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus.is-active .hamburger-inner::before{
top: 0; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--minus.is-active .hamburger-inner::after{
bottom: 0; }

/*
* Slider
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider .hamburger-inner{
top: 2px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider .hamburger-inner::before{
top: 10px;
transition-property: transform, opacity;
transition-timing-function: ease;
transition-duration: 0.15s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider .hamburger-inner::after{
top: 20px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider.is-active .hamburger-inner{
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider.is-active .hamburger-inner::before{
transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider.is-active .hamburger-inner::after{
transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
* Slider Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r .hamburger-inner{
top: 2px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r .hamburger-inner::before{
top: 10px;
transition-property: transform, opacity;
transition-timing-function: ease;
transition-duration: 0.15s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r .hamburger-inner::after{
top: 20px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r.is-active .hamburger-inner{
transform: translate3d(0, 10px, 0) rotate(-45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r.is-active .hamburger-inner::before{
transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--slider-r.is-active .hamburger-inner::after{
transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
* Spin
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin .hamburger-inner{
transition-duration: 0.22s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin .hamburger-inner::before{
transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin .hamburger-inner::after{
transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin.is-active .hamburger-inner{
transform: rotate(225deg);
transition-delay: 0.12s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin.is-active .hamburger-inner::before{
top: 0;
opacity: 0;
transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(-90deg);
transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Spin Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r .hamburger-inner{
transition-duration: 0.22s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r .hamburger-inner::before{
transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r .hamburger-inner::after{
transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r.is-active .hamburger-inner{
transform: rotate(-225deg);
transition-delay: 0.12s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r.is-active .hamburger-inner::before{
top: 0;
opacity: 0;
transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spin-r.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(90deg);
transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Spring
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring .hamburger-inner{
top: 9px;
transition: background-color 0s 0.13s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring .hamburger-inner::before{
top: 10px;
transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring .hamburger-inner::after{
top: 20px;
transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring.is-active .hamburger-inner{
transition-delay: 0.22s;
background-color: transparent; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring.is-active .hamburger-inner::before{
top: 0;
transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 10px, 0) rotate(45deg); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring.is-active .hamburger-inner::after{
top: 0;
transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
* Spring Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r .hamburger-inner{
top: auto;
bottom: 0;
transition-duration: 0.13s;
transition-delay: 0s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r .hamburger-inner::after{
top: -20px;
transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r .hamburger-inner::before{
transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r.is-active .hamburger-inner{
transform: translate3d(0, -10px, 0) rotate(-45deg);
transition-delay: 0.22s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r.is-active .hamburger-inner::after{
top: 0;
opacity: 0;
transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--spring-r.is-active .hamburger-inner::before{
top: 0;
transform: rotate(90deg);
transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Stand
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand .hamburger-inner{
transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand .hamburger-inner::before{
transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand .hamburger-inner::after{
transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand.is-active .hamburger-inner{
transform: rotate(90deg);
background-color: transparent;
transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand.is-active .hamburger-inner::before{
top: 0;
transform: rotate(-45deg);
transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(45deg);
transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Stand Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r .hamburger-inner{
transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r .hamburger-inner::before{
transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r .hamburger-inner::after{
transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r.is-active .hamburger-inner{
transform: rotate(-90deg);
background-color: transparent;
transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r.is-active .hamburger-inner::before{
top: 0;
transform: rotate(-45deg);
transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--stand-r.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(45deg);
transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Squeeze
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze .hamburger-inner{
transition-duration: 0.075s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze .hamburger-inner::before{
transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze .hamburger-inner::after{
transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze.is-active .hamburger-inner{
transform: rotate(45deg);
transition-delay: 0.12s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze.is-active .hamburger-inner::before{
top: 0;
opacity: 0;
transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--squeeze.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(-90deg);
transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
* Vortex
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex .hamburger-inner{
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex .hamburger-inner::after{
transition-duration: 0s;
transition-delay: 0.1s;
transition-timing-function: linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex .hamburger-inner::before{
transition-property: top, opacity; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex .hamburger-inner::after{
transition-property: bottom, transform; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex.is-active .hamburger-inner{
transform: rotate(765deg);
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex.is-active .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex.is-active .hamburger-inner::after{
transition-delay: 0s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex.is-active .hamburger-inner::before{
top: 0;
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(90deg); }

/*
* Vortex Reverse
*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r .hamburger-inner{
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r .hamburger-inner::after{
transition-duration: 0s;
transition-delay: 0.1s;
transition-timing-function: linear; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r .hamburger-inner::before{
transition-property: top, opacity; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r .hamburger-inner::after{
transition-property: bottom, transform; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r.is-active .hamburger-inner{
transform: rotate(-765deg);
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r.is-active .hamburger-inner::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r.is-active .hamburger-inner::after{
transition-delay: 0s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r.is-active .hamburger-inner::before{
top: 0;
opacity: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger--vortex-r.is-active .hamburger-inner::after{
bottom: 0;
transform: rotate(-90deg); }

/* HEADER PAGE PRODUIT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-produit{ border-top: 2px solid #f4f6f7; padding-top: 20px; text-align: center; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lien-retour-catalogue{ display: inline-block; font-size: 1em; line-height: 24px; }

/* ARTICLE + DESCRIPTION */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container{ height: 400px; overflow: hidden; text-align: left; margin-bottom: 40px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container img{ max-height: 100%; margin-left: -35px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container{ background: #FFF; text-align: left;display:flex;flex-direction:column; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-titre{ font-size: 3em; line-height: 1em; text-transform: uppercase; margin-bottom: 20px; text-align: left; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-content{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; text-align: left; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .options-chemise{ list-style: circle; text-align: left; padding: 0 20px; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-description{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajouter-monogramme{ font-size: 1em; display: inline-block; height: 44px; line-height: 25px; margin-bottom: 20px; text-decoration: underline; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-prix{ font-size: 5em; text-align: center; line-height: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-prix-info-livraison{ display: block; font-size: 0.3em; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modifier-chemise{ display: inline-block; font-size: 1em; color: #005539; margin-top: 20px; line-height: 1.4em; text-decoration: underline; padding: 0 20px; margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .autres-modeles-titre{ font-size: 1em; line-height: 1.4em; margin-bottom: 20px; text-align: left; }

/* HEADER PANIER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier{ margin-top:30px;height: 80px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap;-ms-flex-line-pack: center;align-content: center; margin-bottom: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier li{ margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier-lien{ font-size: 1em; line-height: 1.4em; text-transform: uppercase; color: #bfbfbf; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier-lien:hover{ color: #21304e; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lien-actif{ color: #005539; }

/* PANIER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display{ display: block !important; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display-none{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-panier{ display: -webkit-box; display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #e6e6e6;margin-bottom:10px !important; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier{ height: 110px; min-width: 110px; overflow: hidden; margin-right: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier img{ max-height: 100%; margin-left: 5px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-article-panier{ display: flex; flex-direction: column; justify-content: space-around; flex-wrap: nowrap; width:100% !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-top{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content:flex-start; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .nom-article-panier{ font-size: 21px; line-height: 1.4em; text-transform: uppercase; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .nom-article-panier-hover{ font-size: 15px; margin-right: 0px; width: 70%; height: 60px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-article-panier{ font-size: 21px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-article{ text-decoration: underline; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-supprimer{ color: #005539; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-panier-container{ margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-panier{ margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-panier li{font-family: var(--font-family-regular); display: flex; justify-content: space-between; font-size: 1em; line-height:35px; height:35px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-block{ display: block; text-align: center; height:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .livraison-info{ font-size: 1em; line-height: 1.4em; margin-bottom: 30px; }

/* CONNEXION DEJA CLIENT / NOUVEAU CLIENT CONTAINER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .connexion-container{ text-align: center; padding: 30px; margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .deja-client{ border-top: 1px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-connexion{ font-size: 2em; text-transform: uppercase; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-connexion{ font-size: 1em; line-height: 1.4em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-connexion span{ display: block; font-size: 1em; text-transform: uppercase; margin-top: 10px; margin-bottom: 40px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css form{ text-align: left; padding-top: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-group{ position: relative; width: 100%; margin-bottom: 15px;display:block }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .no-margin-bottom{ margin-bottom: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .label{ font-size: 1em; color: #495369; position: absolute; top: 0px;z-index:9; left: 0px;; background-color: #FFF; -webkit-transform: translateY(-50%); transform: translateY(-50%); pointer-events: none; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .label-icone{ left: 15%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .label-activ{ top: 0; left: 5px; color:#495369;font-size:14px; background-color: #FFF; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.valid,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .valide{
border: 2px solid #16a34a;
background-color: #f0fdf4;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.error{
border:2px solid #dc2626;
background-color: #fef2f2;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-message-mail,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-message-mdp{
color: #dc2626;
font-size: 13px;
margin-top: 6px;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-error{
position: absolute;
right: 14px;
top:35%;
transform: translateY(-50%);
color: #e11d48;
font-size: 16px;
display: none;
}
/* Icône */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .check-icon{
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #16a34a;
display: none;
}

/* Montrer l’icône quand valide */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.valid + .check-icon{
display: block;
}
/* Montrer l’icône quand valide */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.error ~ .error-message-mail{
display: block;
}/* Montrer l’icône quand valide */

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.error ~ .icon-error{
display: block;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input.error ~ .error-message-mdp{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper{
position: relative;
}



/* Etat erreur */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper.error input{
border-color: #e11d48;
background: #fff1f2;
}

/* Etat valide */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper.valid input{
border-color: #16a34a;
background: #f0fdf4;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .isfocused{
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
pointer-events: none;
font-size: 16px;
width: calc(40% - 6px);background: transparent !important;font-weight: normal;    text-align: left !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-focused-1{
position: absolute;
top: 50%;
left:2px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
pointer-events: none;
font-size: 16px;
width: calc(40% - 6px);background: transparent !important;font-weight: normal;    text-align: left !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-text{
color: #e11d48;
font-size: 13px;
margin-top: 5px;
display: none;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper.error .error-text{
display: block;
}

/* Règles */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .password-rules{
margin-top: 10px;
font-size: 14px;
display: flex;
gap:5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .password-rules div{
color: #777;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .password-rules .ok{
color: #16a34a;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input{height:44px;border-radius:12px;color:#333;outline-style: none;box-shadow: none;border-color: transparent; font-size: 1em; width: 100%;  padding-left: 20px; border: 1px solid #dbe2e8; box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; background-repeat: no-repeat; background-position: 5% center; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input:focus{ outline: none !important; border:2px solid #007bff !important; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mdp-oublie{ font-size: 1em; margin-bottom: 40px; text-align: right; }

/* CHOIX TYPE DE MESURE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix-methode-mesure{text-align: center; font-size: 1em; line-height: 1.4em; margin-bottom: 30px; margin-top:70px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{ padding: 30px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure_1{flex:1;height:300px; padding: 10px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-titre{ font-size: 18px !important; margin-bottom: 5px; line-height: 1.4em; text-align: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .duree-methode{ line-height:22px;text-transform: uppercase; color: #005539; font-size: 1em; margin-bottom: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure-img{ height: 150px; width: 100%; background-position: center; background-repeat: no-repeat; margin-bottom: 30px; background-size: contain; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .big{ height: 150px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix-mesure{ background-image: url("/assets/design-system/production/img/dupliquer.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix-modif-mesure{ background-image: url("/assets/design-system/production/img/modifier-mesures.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-rapide{ background-image: url("/assets/design-system/production/img/MODE_STANDARD.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-vous{ background-image: url("/assets/design-system/production/img/MODE_BODY.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-smartfit{ background-image: url("/assets/design-system/production/img/MODE_SMARTFIT.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise{ background-image: url("/assets/design-system/production/img/MODE_SHIRT.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-rapide-taille{ background-image: url("/assets/design-system/production/img/mesure-rapide-1.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-rapide-col{ background-image: url("/assets/design-system/production/img/mesure-rapide-2.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-rapide-bras{ background-image: url("/assets/design-system/production/img/mesure-rapide-3.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .aisance-coupe{ background-image: url("/assets/design-system/production/img/mesure-rapide-4.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-col{ background-image: url("/assets/design-system/production/img/col.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-poignet{ background-image: url("/assets/design-system/production/img/poignet.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-manche{ background-image: url("/assets/design-system/production/img/manche.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-demi-poitrine{ background-image: url("/assets/design-system/production/img/demi-poitrine.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-demi-taille{ background-image: url("/assets/design-system/production/img/demi-taille.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-dos{ background-image: url("/assets/design-system/production/img/dos.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-carrure{ background-image: url("/assets/design-system/production/img/carrure.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-chemise-epaule{ background-image: url("/assets/design-system/production/img/epaule.svg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-cou{ background-image: url("/assets/design-system/production/img/corps_cou.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-poitrine{ background-image: url("/assets/design-system/production/img/corps_poitrine.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-ceinture{ background-image: url("/assets/design-system/production/img/corps_ceinture.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-carrure{ background-image: url("/assets/design-system/production/img/corps_carrure.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-dos{ background-image: url("/assets/design-system/production/img/corps_dos.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-poignet{ background-image: url("/assets/design-system/production/img/corps_poignet.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesurez-vous-bras{ background-image: url("/assets/design-system/production/img/corps_bras.gif"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-content{ font-size: 17px; line-height: 1.4em; margin-bottom: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-content_1{ min-height:120px;font-size: 16px; line-height: 1.4em; margin-bottom: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .imglangue{width:15px;height:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fermeX{font-size:24px;margin-left:20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #fermelang{position:absolute;top:10px;right:10px;width:30px}
/* MESURE RAPIDE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure-rapide{ padding: 30px; text-align: center; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); margin-bottom: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-mesure{ font-size: 1em; line-height: 1.4em; padding: 10px 10px; width: 80%; border-color: #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-conseil{ min-height:140px; padding-top: 20px; font-size: 17px; line-height: 1.4em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .textarea{ font-size: 1em; width: 100%; height: 200px; line-height: 1.4em; padding: 20px; border: 1px solid #e6e6e6; box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) inset; resize: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .textarea:focus{ outline: none; border: 1px solid #005539; -webkit-transition: all 0.2s; transition: all 0.2s; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .submit-container{ text-align: center; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-mesure{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent url("/assets/design-system/production/img/arrowd.png") no-repeat 96% center;
}




/* MODIF MESURE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modif-mesure-container{ padding-top: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modif-mesure-chemise{ height: 480px; background: no-repeat center; margin-bottom: 30px; position: relative; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-face{ background-image: url("/assets/design-system/production/img/modif-mesure-chemise.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-dos{ background-image: url("/assets/design-system/production/img/modif-mesure-chemise-dos.jpg"); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-container{ display: flex; align-items: center; justify-content: space-around; width: 180px; height: 54px; background-color: #21304e; position: absolute; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-btn{ font-size: 3em; color: #FFF; text-align: center; width: 24px; margin-top: -5px; cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-btn:hover{ cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-input{ height: 34px; text-align: center; font-size: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-col{ top: -44px; left: 50%; transform: translateX(-55%); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-poitrine{ top: 110px; left: 50%; transform: translateX(-53%); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-taille{ top: 225px; left: 50%; transform: translateX(-52%); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-epaule{ top: 64px; left: 50%; transform: translateX(-10%); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-bras{ top: 200px; left: 50%; transform: translateX(-90%); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ajustement-dos{ top: 350px; left: 50%; transform: translateX(-52%); }

/* RECAPITULATIF */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .titre-coordonnee-recap{ font-size: 1em; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ul-recap li{ font-size: 1em; line-height: 1.4em; }

/* ESPACE CLIENT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav{ text-align: center; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li{ display: inline-block; margin: 0 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a{ font-size: 1em; line-height: 44px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a.sous-nav-actif{ color: #005539; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modifier-info-compte{ font-size: 1em; text-decoration: underline; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mag_img.petite_droite{
width: 150px;
float: right;
margin-left: 40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mag_img.moyenne_droite{
width: 320px;
float: right;
margin-left: 40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mag_img.moyenne_gauche{
width: 320px;
float: left;
margin-right: 40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mag_img.petite_gauche{
width: 150px;
float: left;
margin-right: 40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .separator{
color: #000;
border-top: 2px solid #f4f6f7;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #back-to-top{
position: fixed;
bottom: 40px;
right: 40px;
z-index: 99;
width: 60px;
height: 50px;
text-align: center;
line-height: 35px;
background: #939393;
color: #FFF;
cursor: pointer;
border: 0;
border-radius: 6px;
text-decoration: none;
transition: opacity 0.2s ease-out;
opacity: 0;
font-size: 3em;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #back-to-top.show{
opacity: 0.5;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #back-to-top.show:hover{
opacity: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #content{
height: 2000px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .change-view{
box-sizing: border-box;
border: 2px solid #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .change-view:hover{
border: 2px solid #ccc;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fermer-popup{
width: 30px;
margin-left: 5px;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
z-index: 999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fermer-popup:hover{
opacity: .5;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span .ok-filtre{
background-color: #005539;
width: 40px;
height: 30px;
line-height:32px;
text-align:center;
position: absolute;
display:inline-block;
float:left;
margin-left:180px;
margin-top: 0px;
right: 0px;
border-radius: 0px 5px 5px 0px;
color: #FFF;
font-size: 14px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span input{
float:left;
display:inline-block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ok-filtre:hover{
background-color: #06695F;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .nb-chemises-hover{
text-align: left;
padding-left:25px;
width: 100%;
margin-top: 30px;
padding-bottom: 10px;
border-bottom: 1px solid #e6e6e6;
margin-bottom: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantite-hover{
width: 100%;
margin-top: -20px;
margin-bottom: 5px;
font-size: 15px;
color: #c4c4c4;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-hover{
text-align: center;
width: 100%;
margin-top: 15px;
margin-bottom: 15px;
font-size: 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .badge-pill{
background-color: #005539;left: 10px;top:15px;position: absolute;border-radius: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-panier{
width: 20px;
margin-right: 5px;
opacity: 0.6;
margin-top:-3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .add-quantity{
height: 35px !important;
width: 35px !important;
background-color: #005539;
color: #FFF;
text-align: center;
font-size: 21px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity{
height: 35px !important;
width: 35px !important;
text-align: center;
font-size: 17px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .add-quantity:hover{
background-color: #1294AF;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-img{
width: 320px; left: -50px; transform: translate(-70px); overflow: hidden;
}
/* MEDIA QUERIES */
@media screen and (min-width:1200px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogues{
width:1360px;
position: relative;
top:20px;
margin:0 auto;
}
}
@media screen and (min-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta svg:not(.secure-payment-icon){transform: translateY(0.5px);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .scroll-btn{left:20%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-footer{padding:25px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-map{width:50% !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-del{    text-align: center;
    display: flex;
    width: 50%;
    margin: 0 auto;}
	.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice{  align-items: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta{padding:0 40px;font-size:16px;white-space: nowrap;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-header{padding:14px 28px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-body{padding:25px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte{min-width: 25%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse{margin: 50px auto 0px auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-hidden-desktop{display: none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header img{width:260px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-shell{
  width: 100%;
  display: grid;
  grid-template-columns: minmax(min-content, calc(50% + calc(calc(580px - 480px)/2))) 1fr;
  gap: 0;
  background: #FAF9F7;
  margin: 0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .list-mesures{
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap:5px;;
text-align: left;list-style: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rules{flex-direction: row;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-email{ background-image: url("/assets/design-system/production/img/icon-email.svg"); padding-left: 10%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-password{ background-image: url("/assets/design-system/production/img/icon-key.svg"); padding-left: 10%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .isfocused{left:8%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .more-colors{
width:20px;
height:28px;
border-radius: 50%;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
color:#757575;
margin-left:3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .colors-list{ display: grid;
grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
gap: 5px;
width: 100%;
box-sizing: border-box;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ban-home{background: url("/assets/design-system/production/img/banner.jpg");background-size: cover;background-position: center;max-width: 2500px;margin-left:auto;margin-right:auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-bar h1{
font-size: clamp(16px, 2.5vw, 24px);
white-space: nowrap;
flex-shrink: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-bar{
display: flex;
justify-content: flex-start;
align-items: center;
gap: 24px;
padding-bottom: 10px;
flex-direction: row;
margin-bottom: 20px;
}
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bar-left{width:73%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .steps{
display: flex;
align-items: center;

margin-bottom: 20px;
width:50%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .steps .text{ font-family:var(--font-family-regular) !important;
font-size: 19px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe{
display: flex;
align-items: center;
white-space: nowrap;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .circle{
width: 22px;
height: 22px;
border: 1px solid #000;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
margin-right: 6px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .line{
flex: 1;
border-bottom: 1px dotted #000;
margin: 0 12px;min-width: 50px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-div{display: flex;align-items: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue{ height: 100%; margin-bottom:0px; border: 1px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; width: 100%; max-width:362px; float: none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divider{
width: 1px;
height: 50px;
background-color: #ccc;    /* couleur de la ligne verticale */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-f{display: flex;flex-direction: row;align-items: center;justify-content: space-between;margin:40px 0 20px 0;width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-33{margin-top:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .m-compte{margin-left:auto;display:flex;align-items: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .m-compte a:hover{color:#333}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height-dv{width:32% }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .con{
display: flex;
justify-content: space-between;   /* centre horizontalement les éléments */
align-items: center;       /* centre verticalement les éléments */
margin:0px;           /* espace entre les items */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .con> *:not(:last-child){
margin-right: 40px; /* espace uniquement entre les éléments */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .span-fab{margin-left:0px;font-weight: normal !important;color:#000 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_option_li{display: flex; align-items: flex-start;justify-content: left;margin:20px 0}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .span-fabric{   font-size: 16px;
color: #222 !important;
display: inline-block;
font-weight: 800 !important;
font-family: var(--font-family-h) !important;width: 130px;
flex-shrink: 0;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-tissu{text-align: left};
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-qte{width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-conf{width:80%;height:auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere.h5{
margin-bottom: 1rem;
font-size: 13px;
font-weight: bold;
letter-spacing: 1.4px;
line-height: 1.3;
display: flex;
padding-left:0px;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .neww{left:5px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h1-catalogue{text-transform:uppercase;color: #000;text-align: left;line-height: 30px;font-family: var(--font-family-oswald);font-weight: normal;text-shadow: none;font-size:44px;max-width: 100%;margin-bottom: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p_y{background:#fdffce;text-align:center;padding:10px 10px;margin-left:10px;margin-bottom: 0px;margin-top:4px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-20{margin-left:20px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .second{font-size: 139px !important;font-family: var(--font-family-h);font-weight: 800}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #carousel-bounding-box{padding-left: 0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-p{padding:50px 50px !important; color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #shirt{padding-left: 0px; padding-right: 0px;margin-top:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pd{margin-left:-15px !important;margin-right:-15px !important }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand a img{position: relative;margin-left: 0px;margin-top:8px;width:160px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand a img:hover{opacity: 0.8}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .demo > li img{width: 100px !important;height: auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-control .glyphicon-chevron-left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-control .glyphicon-chevron-right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-control .icon-next,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-control .icon-prev{
width: 80px !important;
height: 80px !important;
margin-top: -10px;
font-size: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body{padding-top:70px;overflow-x: hidden}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header.fixed-theme{
background-color: #fff;
box-shadow: #ccc 0 2px 15px;
position: fixed !important;
top:0px;
left: 0;
width: 100%;
z-index: 1030;
-webkit-transition: max-height 0s;
-moz-transition: max-height 0s;
transition: max-height 0s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-categorie{
padding:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-prd{
padding-right: 16px !important;
position: relative !important;
top: 0px !important;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header{top:0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header-container{height:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #navbar{display: flex;align-items: center;justify-content: center;height:100%;border-bottom:none;margin-left: 10px !important;
margin-right: 10px !important;border-bottom: none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand{padding: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-icon{
background: transparent url("/assets/design-system/production/img/filter2.svg") no-repeat left center;
background-size: 32px;
display: inline-block;
width: 30px;
height: 24px;
position: relative;
top:5px;
margin-left: 10px;
float: left;
opacity: .5;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-60{
margin-bottom: 120px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display-yes{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prt{
display: inline-block;width:48%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-lft{
margin-left:100px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-modele{
font-size: 26px;
margin-bottom: 30px;
font-family:var(--font-family-regular);
line-height: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup1{
position:relative;
margin: 5px 10px !important;
width: 150px;
height: 144px !important;
padding: 10px !important;
border: 2px solid #eee;
background: #fcfcfc;
display: inline-block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modal-dialog{
max-width: 900px;
min-width: 700px;
margin-top: 100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mobody{
padding: 0px 100px 30px 100px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h-modal{
text-align:center;font-size:20px;margin-top:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup{
margin: 5px 10px !important;
width: 100px;
height: 125px !important;
padding: 5px !important;
display: inline-block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height_2{
height:420px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_option{
margin-left:0px;
margin-top:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn_vert{
font-family: var(--font-family-regular);
line-height: 30px;
margin-top: 20px;text-align:center;margin-bottom:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-categorie{
padding: 40px 40px;
background: #eee;
width: 281px;
height: 339px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_desc{
margin-top: 10px;
font-size: 16px;
line-height: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .blok{
padding-left: 100px;
padding-right: 100px;
margin-top: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .blok1{
margin-left: 0px;
margin-right: 0px;
background: #fff;
padding: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-top-20{margin-top:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container ul li span{
font-size: 16px;
color: #666;
display: inline-block;
font-weight: 400;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .centered-area-displayedd{
width: 30%;position: relative; top: -85px;left:13px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divheader{
display: inline-block;float:right;position: relative;right:0px;height:70px;z-index:999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
position: absolute;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Wrapper.continents{
display: inline-block;
vertical-align: top;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Wrapper.continents:not(:last-child){
margin-right: 8em;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Wrapper.continents:first-child{
-webkit-columns: 2;
-moz-columns: 2;
columns: 2;
-webkit-column-gap: 8em;
-moz-column-gap: 8em;
column-gap: 8em;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #openMenu{
display:block;width:135px;height:70px;
padding:10px 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .step{
width:5px;margin-left:0px;display: inline-block;height:30px;top:8px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-hide{
margin-left:-5px;display: inline-block !important;margin-top:-5px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle1{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:49px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle2{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:48px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;"
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:49px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bars{
width: 25%;
background: #eee;
height: 1px;
left: 50%;
transform: translate(-50%, 0);
margin-bottom: 30px;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .barss{
width: 25%;
background: #eee;
height: 1px;
left: 50%;
transform: translate(-50%, 0);
margin-top: 30px;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_active{
font-size: 1em;background-color:#005539;color:#fff !important;padding:10px 30px 10px 20px;width:340px;display:block;margin:0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_lien{font-size: 1em;border:2px solid #e6e6e6; padding:10px 30px 10px 20px;width:340px;display:block;margin:0 auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_lien img{
width:40px;height:40px;margin-right:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_active img{  width:40px;height:40px;margin-right:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sens{
text-align:center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-indicators{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_in img{ height:auto;width:100%;max-width: 1500px;height:auto; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #centred-area-displayed:hover{
opacity:0.8;
}
/*.left{
}
display:inline-block;width:50%;text-align:left;padding-left:10px;
}
.right{
display:inline-block;width:50%;text-align:right;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flane{
border:none;background:url("/assets/design-system/production/img/flanelle_mileta_legere.jpg") no-repeat;background-position: calc(15% - 10px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoigne{padding: 50px 25px 35px  25px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bar{width:60%;float:right;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bare{width:40%;float:right;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .easy{position:absolute;top:160px; right:30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .savoir{
padding:50px 200px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .savoire{
padding:0px 80px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rosee{
padding: 10px 100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-top{
border-top:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
border-bottom:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-bottom{
border-bottom:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-right{
border-right:1px solid #d6d6d6;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-left{
border-right:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .partenaires{width:100%;margin:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .partenaires div{flex: 1;padding:10px 0px;text-align:center;float:left;height:88px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home div{
display:table-row;
line-height:1.4em;
font-size:16px;
white-space:nowrap;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
padding:0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#d6d6d6;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome div{
display:table-row;
text-align: center; text-transform: uppercase; font-size: 31px; line-height: 1.4em;font-family: var(--font-family-regular);
font-weight: 700;
white-space:nowrap;
color:#000;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
padding:0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
border-top:1px dotted #000000;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cont-info{position: relative;top:33px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 655px; padding: 12px 12px; background-size: cover; text-align: center; color: #FFF; margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:300px}
/*.header-home .contenu h1 { text-transform: uppercase; font-size: 2.8rem; line-height: 1.4em; width:100%; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); }
.header-home .contenu h1::before,
.header-home .contenu h1::after {
display: inline-block;
content: "";
height:1px;
background:#fff;
width: 5rem;
margin: 0 1rem;
transform: translateY(-1rem);
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide div{
display:table-row;
text-align: center;
white-space:nowrap;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;
text-transform: uppercase; font-size: 2rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
padding:0 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer:after{
display:inline-block;
width:50%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:right;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space:after{
display:inline-block;
width:50%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu  .prix{
display:block;
font-size:4rem;
margin-bottom:30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-home{
padding:10px 100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tissu-catalogue-photo{ width: 377px; height: 226px;margin:auto;margin-left: -15px;cursor:pointer;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background2{
position: absolute;
z-index: 999;
top: 70px;
left: 0;
background: #000;
opacity: 0.5;
width: 100%;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background5{
position: absolute;
z-index: 999;
top: 0;
left: 0;
background: #000;
opacity: 0.5;
width: 100%;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul li{
margin: 10px 0 0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail h1{
font-family: var(--font-family-regular);
font-weight: 600;
font-size: 24px;
margin: 20px 10px 10px 10px;
/*text-transform: uppercase;*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bordered{
border:1px solid #005539;
border-radius:5px;
}
/* MENU LATERAL */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-lateral{ max-width: 400px; max-height: 620px}

/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-burger{ margin-right: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
right:25px;
top : 20px;
left:0px !important;
z-index: 101
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn-img{ display: block; margin-right: 0px; width: 25%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hide-text{ display: block; /*text-transform: uppercase; /*font-size: 1.6em;*/ }

/* HEADER HOME */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home h1{ font-size:44px;line-height:55px;margin-bottom:30px;max-width:100%;margin-top:50%}

/* FILTRES CATALOGUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-tissu{ position: relative; top: -115px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-container{ height: 62px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-mobile{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue{
display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; -webkit-box-pack: justify; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; height: 60px; border: none; overflow: visible; padding: 0; margin-bottom: 0;
background-color: rgba(255,255,255,0.4);

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li{ height: 30px; line-height: 30px; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; /*border-left: 1px solid #e6e6e6;*/ text-align: center; font-size: 1em; cursor: pointer; position: relative; background-color: #FFF; margin-right: 10px; border-radius: 5px; max-width: 220px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span{ margin-bottom: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span span{ background-color: #005539; width: 40px; height: 31px; position: absolute; top: 0px; right: 0px; border-radius: 0px 5px 5px 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span span:after{ content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png") no-repeat; position: absolute; top: 8px; left: 12px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span span:hover{background-color: #06695F;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span input{ width: 185px; text-align: center; border-radius: 7px; height: 30px; }
/*.filtres-catalogue > li span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.svg") no-repeat; position: absolute; top: 40%; left: 75%; }*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li:first-child{ border-left: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li:hover{ /*background-color: #f6f6f6;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li:hover > ul{ display: block; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home{
display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; -webkit-box-pack: justify; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; height:100px; border: none; overflow: visible; padding: 0; margin-bottom: 0;
background:#005539;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li{ height: 30px; line-height: 30px; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; /*border-left: 1px solid #e6e6e6;*/ text-align: center; font-size: 1em; cursor: pointer; position: relative; background-color: #FFF; margin-right: 10px; border-radius: 5px; max-width: 220px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li span{ margin-bottom: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li span span{ background-color: #06695F; width: 40px; height: 31px; position: absolute; top: 0px; right: 0px; border-radius: 0px 5px 5px 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li span span:after{ content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.png") no-repeat; position: absolute; top: 8px; left: 12px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li span span:hover{background-color: #033A35;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li span input{ width: 185px; text-align: center; border-radius: 7px; height: 30px; }
/*.filtres-catalogue > li span:after { content: ''; display: block; height: 11px; width: 14px; background: url("/assets/design-system/production/img/icon-fleche-menu-deroulant.svg") no-repeat; position: absolute; top: 40%; left: 75%; }*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li:first-child{ border-left: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li:hover{ /*background-color: #f6f6f6;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home  > li:hover > ul{ display: block; }
/*.filtres-catalogue > li:before { content: ''; display: block; width: 1px; background: #e6e6e6; height: 50%; position: absolute; top: 25%; left: -1px; }*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant{overflow: overlay; position: absolute; top: 30px; left: 0; background: #FFF; width: 100%; text-align: left; border: 1px solid #e6e6e6; box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05); border-radius: 6px 6px 0 0;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li{ font-size: 15px; padding-left: 0px; background-position: 85% center; }

/* CATALOGUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo img{ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue:hover .chemise-catalogue-photo img{ max-height: 330%; -webkit-transition: all 0.0s; transition: all 0.0s; }
/* BANDEAU TISSU */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-top{ font-size: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-content{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-bot{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-tisseur{ -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

/* CONNEXION DEJA CLIENT / NOUVEAU CLIENT CONTAINER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .connexion-container{ padding: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .deja-client{ border-top: none; border-right: 1px solid #e6e6e6; }

/* CHOIX TYPE DE MESURE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{ padding: 30px 20px; min-height: 450px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-small{ min-height: 170px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-medium{ min-height: 320px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-content{ font-size: 1em; }

/* MESURE RAPIDE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure-rapide{ min-height: 540px; }

/* HEADER PAGE PRODUIT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-produit{ text-align: left; }

/* ARTICLE + DESCRIPTION */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container{ text-align: left; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container img{ margin-left: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container{ text-align: left; margin-bottom: 0px; font-size: 20px;
line-height: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container ul li span{
font-size: 16px;
color: #232323;
display: inline-block;
font-weight: 100;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .span-fabric{   font-size: 16px;
color: #222 !important;
display: inline-block;
font-weight: 800 !important;
font-family: var(--font-family-h) !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper{
display: block;
overflow: hidden;
border: 1px solid #ccc;
height: 50px;width:88px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper select::hover{
border:1px solid #838383;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint-message{display: inline-block;
background: rgba(49,51,61,.7);
border-radius: 2em;
padding: .7em 1.1em;
font-size: 11px;
cursor:pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint{
bottom:30px;
left: 0;
right: 0;
padding: 0 10%;
background-color: transparent;
-webkit-transition: opacity .4s ease,z-index .4s ease;
transition: opacity .4s ease,z-index .4s ease;
color: #fff;
text-decoration: none;
text-align: center;
direction: ltr;
display: inline-block;
margin: 0;
position: absolute;
z-index: 1000;
pointer-events: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: opacity .25s ease;
transition: opacity .25s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper{
width: 88px;
height:48px;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper:after{
content: '';
width: 0;
height: 0;
position: absolute;

top: 19px;
right: 12px;
border-right:7px solid transparent;
border-left: 7px solid transparent;
border-top:7px solid #001539;
pointer-events: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper select:hover{
border:1px solid #838383;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper select{
padding: 9px 16px 9px 8px;
line-height: 20px;
height: 48px;
font-size: 16px!important;
border: 1px solid #c9cace;
border-radius: 0;
width:88px;
cursor: pointer;
-webkit-appearance: none;
background: #fff;
text-align: left;padding-left: calc(50% - 5px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint-message:before{
content: '\02295';
font-family: serif;
font-size: 1.5em;
speak: none;
text-align: center;
vertical-align: -2px;
margin-right: 6px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper select{
background: #fff;border: 0px !important;text-align: center;padding-left: calc(50% - 5px);
-webkit-appearance: none;
outline-style: none;
white-space: nowrap;
height: 50px;width:88px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper::after{
content: "\25BC";
display: block;
position: relative;
float: right;
top: -32px;
right:8px;
background-color: #fff;
width:14px;
height:7px;
text-align: center;
margin-bottom: -25px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container h1{
font-family: 'Gotham-Medium', sans-serif;
font-weight: bold;
font-size: 24px;
margin: 0px 10px 10px 0px;
/* text-transform: uppercase; */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container #btn_commande_tissu{
margin: 20px 10px 15px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-ch{font-size: 16px;
text-transform: lowercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container ul li.text{
margin-top: 8px;
line-height: 1.5em;
text-align: justify !important;
font-size:16px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-prix{ text-align: left; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modifier-chemise{ padding-left: 0; }

/* PANIER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier{ height: 200px; min-width: 200px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-article-panier{ justify-content: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-top{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content:flex-start; margin-bottom: 0px; align-items: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }
/* MENU FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-fixed-top{
position: fixed;
left : 0px;
right: 0px;
z-index: 888;
top:70px;
background-color: #fff;
min-height: 60px;
width: 100%;
padding-left: 0px;
padding-right: 0px;

}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cols{
width: 20%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur{
width: 24%;
max-width: 24%;
height: 100%;
position: relative;
background: #fff;
opacity: 0;
z-index: 9997;
float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.gauche{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.centre{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.droit{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container{
position: absolute;
left: calc(50% - 60px);
left: -moz-calc(50% - 60px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .close-detail{ display: none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #close-detail-img{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #close-detail-span{ display: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup{
/*background: #fff;*/
position: fixed;
z-index: 1501;
width: 100%;
/*height: 449px;*/
top: 10px;
/*left: 50%;
/*margin-top: -225px;
margin-left: -450px;*/
/*text-align: left;*/
display: none;
/*box-shadow: 0 0 20px #333;*/
font-family: var(--font-family-regular);
font-weight: 400;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #photo_detail{
width: 726px;
height: 676px;
position: absolute;
margin: 0 0 0 0;
overflow: hidden;
background-color:#fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup_description{
margin-left: 10px;
width: 479px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed{
margin-top: 150px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-tissu{
margin-top: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css }

.filtere{padding: 100px 16px 40px 40px !important;border:none}
@media screen and (max-width:767px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-categorie{
padding: 40px 40px;
background: #eee;
width: 100%;
height: 100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-20{margin-left:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header{height:70px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header.fixed-theme{top:0px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cont-info{position: relative;top:46px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-header-modele{
width:100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-icon{
background: transparent url("/assets/design-system/production/img/filter2.svg") no-repeat left center;
background-size: 32px;
display: inline-block;
width: 30px;
height: 24px;
position: relative;
top:5px;
margin-left: 10px;
opacity:1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-lft{
margin-left:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter a{
width: 100px;
margin: 0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display-no{
display: block !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display-yes{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-modele{
font-size: 18px;
margin-bottom: 10px;
font-family: var(--font-family-regular);
line-height: 25px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-filter{
float: right;
text-align: center;
position: relative;
display: none;
top:10px;
width: 100%;
margin: 10px auto;
font-size: 14px;
color: #757575;
-webkit-transition: .4s cubic-bezier(.3, .3, .05, 1);
transition: .4s cubic-bezier(.3, .3, .05, 1);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page{ padding: 10px 10px !important; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter .filter-panel .filter-inner{
position: absolute;
bottom: 0;
padding: 30px;
max-width: 440px;
margin: 0 auto;
-webkit-transition: .6s cubic-bezier(.19, 1, .22, 1);
transition: .6s cubic-bezier(.19, 1, .22, 1);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-overflow-scrolling: touch;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .barss{
margin-top: 50px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .barss1{
margin-top: 30px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper select{
padding: 9px 16px 9px 8px;
line-height: 20px;
height: 48px;
font-size: 16px!important;
border: 1px solid #c9cace;
border-radius: 0;
width: 88px;
cursor: pointer;
-webkit-appearance: none;
background: #fff;
text-align: center;
padding-left: calc(50% - 15px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper{position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-wrapper:after{
content: '';
width: 0;
height: 0;
position: absolute;
top: 19px;
right: 12px;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
border-top: 7px solid #001539;
pointer-events: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter{
-webkit-flex: 0 0 16em;
-moz-flex: 0 0 16em;
-ms-flex: 0 0 16em;
flex: 0 0 16em;
padding: 0 16px 16px 0;
position: fixed;
top: 215px;
left:0;
width: 100%;
bottom:0;
overflow-y: scroll;
background: #fff;
padding: 0;
z-index: 999;
border-right: none;
border: 1px solid #ddd;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page{
margin-top:0px;
margin-bottom: 0px !important;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper select{
background: #fff;border: 0px !important;text-align: center;padding-left: calc(50% - 5px);
-webkit-appearance: none;
outline-style: none;
white-space: nowrap;
height: 50px;width:88px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wrapper::after{
content: "\25BC";
display: block;
position: relative;
float: right;
top: -32px;
right:8px;
background-color: #fff;
width:14px;
height:7px;
text-align: center;
margin-bottom: -25px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint-message{display: inline-block;
background: rgba(49,51,61,.7);
border-radius: 2em;
padding: .7em 1.1em;
font-size: 11px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint-message:before{
content: '\02295';
font-family: serif;
font-size: 1.5em;
speak: none;
text-align: center;
vertical-align: -2px;
margin-right: 6px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mz-hint{
bottom:30px;
left: 0;
right: 0;
padding: 0 10%;
background-color: transparent;
-webkit-transition: opacity .4s ease,z-index .4s ease;
transition: opacity .4s ease,z-index .4s ease;
color: #fff;
text-decoration: none;
text-align: center;
direction: ltr;
display: none;
margin: 0;
position: absolute;
z-index: 1000;
pointer-events: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: opacity .25s ease;
transition: opacity .25s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prt{
display: inline-block;width:100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup1{
position:relative;
margin: 5px 5px !important;
width: 130px;
height: 155px !important;
padding: 10px !important;
border: 2px solid #eee;
background: #fcfcfc;
display: inline-block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parts1{
width:100% !important;
padding: 0 25px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contain{
width:100% !important;
padding:0 10px;
margin-bottom: 60px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-60{
margin-bottom: 60px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modal-dialog{
max-width: 100%;
margin-top: 100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mobody{
padding: 0px 20px 30px 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h-modal{
text-align:center;font-size: 16px;margin-top:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .part-popup{
margin: 5px 10px !important;
width: 40%;
height: 115px !important;
padding: 5px !important;
display: inline-block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height_2{
height: 380px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin95{
margin-top:40px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_option{
margin-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery{
padding-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .padding_2{
padding-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-categorie{
margin-top:-20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-categorie img{
width:100%;
height: auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne-activ{
font-size:24px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .blok{
padding-left: 10px;
padding-right: 10px;
margin-top: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .blok1{
margin-left: 0px;
margin-right: 0px;
background: #fff;
padding: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .padding_3{
padding-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery a{
font-size:15px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn_vert{
font-family: var(--font-family-regular);
line-height: 20px;
margin-top: 30px;text-align:center;margin-bottom:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin_1{
margin-top:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container ul li span{
font-size: 16px;
color: #666;
display: inline-block;

font-weight: 400;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bars{
width: 75%;
background: #eee;
height: 1px;
left: 50%;
transform: translate(-50%, 0);
margin-bottom: 30px;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .barss,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .barss1{
width: 75%;
background: #eee;
height: 1px;
left: 50%;
transform: translate(-50%, 0);
margin-top: 30px;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #openMenu{
display:block;width:130px;height:70px;
padding:10px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .label{
font-size:0.7em !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-cookie{
padding:20px 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_desc{
margin-top: 10px;
font-size: 16px;
line-height: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding:1em !important;
height: 100vh;
width: 100vw;
overflow: auto;
z-index: 99999 !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #barre{
padding-top:20px;
padding-bottom:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Wrapper.continent{
max-width: 100%;
margin: 0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Wrapper.contin767ents:not(:last-child){
margin-bottom: 2em;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divheader{
display: inline-block;float:right;position: relative;right:10px;height:70px;z-index:999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle1{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:49px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;"
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle2{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:48px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;"
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fleche_bulle{
position: absolute;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid;margin-top:49px;
left: 50%;
transform: translate(-50%, 0);
color:#005539;"
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_active{
font-size: 1em;background-color:#005539;color:#fff !important; padding:10px 10px 10px 5px;width:280px;display:block;margin:0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_lien{font-size: 1em;border:2px solid #e6e6e6; padding:10px 10px 10px 5px;width:280px;display:block;margin:0 auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_lien img{
width:40px;height:40px;margin-right:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .onglet_active img{  width:40px;height:40px;margin-right:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #slider-thumbs{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_header{
background:transparent !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-indicators{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_in .prev,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_in .next{
display:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_in{
margin-top:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_close{
position: fixed;
top: 20px;
right: 20px;
display: inline-block;
width: 40px;
height: 40px;
z-index: 1237;
background: #eee;
border-radius: 50%;
padding: 5px;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictures_eyes_title{    display: none !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lineh{line-height: 35px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-compte{
padding-top:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-compte p{
line-height:20px;
font-size:15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bot-compte{
width:100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bot-compte p{
line-height:20px;
font-size:15px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-titre{
text-align:center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{
/*padding-left:5px !important;*/
text-align:center;
padding:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mesure-left{
padding-left:5px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-img{
width: 320px;
left: -10px;
transform: translate(-20px);
overflow: hidden;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo img{
width: 100%;
height: auto;margin:0 auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo{
height: 200px;
padding: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-cataloguee{
font-size: 14px;
line-height: 15px;
}

/*.left{
display:inline-block;width:65%;text-align:left;padding-left:10px;
}
.right{
display:inline-block;width:35%;text-align:left;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .wf{
width:80% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .wr{
width:20% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .wrd{
width:50% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sens{text-align:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flane{
border:none;background: linear-gradient( rgba(0, 0, 0, 0.45),rgba(0, 0, 0, 0.45)),url("/assets/design-system/production/img/flanelle_mileta_legere.jpg") no-repeat;background-position: calc(15% - 10px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoigne{padding: 0px 7px 0px  7px !important;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lino{line-height:35px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-cataloguee{line-height:1.4em !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .easy{position:absolute;top:110px; right:30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bar{width:100%;float:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bare{width:100%;float:left;text-align:left;padding:70px 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col{height:130px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pl50{padding-left: 0px !important; */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pr50{
padding-right:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize19{font-size: 16px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-catalogue{
height:100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue{
height:100% !important;
margin:0px auto !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .savoir{
padding:50px 50px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .savoire{
padding:0px 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rosee{
padding: 10px 50px !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-top{
border-top:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
border-right:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-bottom{
border-bottom:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
border-right:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-right{
border-bottom:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-container-tissus-home{height: 100%; width: 100%; position: relative; z-index: 10;margin-top:20px;margin-bottom:50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .partenaires{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .partenaires div{padding:10px 0px;text-align:center;float:left;height:88px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home div{
display:table-row;
line-height:1.4em;
font-size:16px;
white-space:nowrap;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
padding:0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#d6d6d6;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome div{
display:table-row;
text-align: center; text-transform: uppercase; font-size: 31px; line-height: 1.4em;font-family: var(--font-family-regular);
font-weight: 700;
white-space:nowrap;
color:#000;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
padding:0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
border-top:1px dotted #000000;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 455px; padding: 12px 12px; background: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") no-repeat top center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:150px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide{
display:table;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide div{
display:table-row;
text-align: center;
white-space:nowrap;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:table-cell;
vertical-align:middle;
width:1px;
table-layout:fixed;
text-transform: uppercase; font-size: 2.8rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space{
display:table-cell;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
padding:0 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer:after{
display:inline-block;
width:50%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:right;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space:after{
display:inline-block;
width:50%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu span{
font-size:16px;
margin-bottom:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu  .prix{
display:block;
font-size:3rem;
margin-bottom:30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-home{
padding:10px 100px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detailpanier{
width:100% !important;
margin-left:20px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2_texte{
font-size: 1.2em !important;
margin: 0 20px 20px 20px !important;
line-height: 30px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .texte{
font-size: 17px;
margin: 0 20px 20px 20px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .centered-area-displayedd{
position: absolute !important;
top: 120px !important;
left:12px;
width:30%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tissu-catalogue-photo{ width: 100%; height: auto;margin:auto;margin-left: 0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom{
display: block !important;
/* align-items: center; */
font-size: 1em;
justify-content: inherit !important;
float: left;
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom div{
width: 100% !important;
margin-bottom: 10px;
height: 20px;
float: left;
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom p{
float: left !important;
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #filtre_container_tissu.fixed-theme{
background:#fff !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background2{
position: absolute;
z-index: 999;
top: 0;
left: 0;
background: #000;
opacity:0;
width: 100%;
display: none;
height:100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span .ok-filtre{
margin-top: -5px !important;
right: 20px !important;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul li span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail ul li span{
font-size:15px !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose{
font-size:14px !important;
line-height: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail ul li{
margin: 10px 10px 0 10px ;
font-size: 14px !important;
line-height:18px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail h1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail h1{
font-family: var(--font-family-regular);
font-weight: 600;
font-size: 18px !important;
margin: 10px 10px 10px 10px;
/* text-transform: uppercase; */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-titre{
font-size: 2em !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bordered{
border:none;
border-radius:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-prix{
font-size: 3em !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-catalogue-home{
font-size:24px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .reference{
padding-right:0px;font-size: 14px; line-height: 1.2em; margin-bottom: 10px; padding-top: 0px !important; text-align: left !important; color: #7f7f7f;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger{
padding-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details-home{ max-height: 200px; overflow: hidden; text-align: center; color: #333; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-line-pack: center; align-content: center; width:100%;margin:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-tissu{ position: relative; top: -115px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .scoll-filtre{
height: 100%;
overflow-y: scroll;
overflow-x:hidden;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .posfix{
position: fixed;
z-index: 99;
width:100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-scroll{
position: fixed;
right: 0px;
left: 0;
bottom:0px;
top:0px !important;
z-index: 9999;
background: #fff;
width:100%;
padding-left:0px;
padding-right:0px;
min-height:100%;
-webkit-overflow-scrolling: touch;
}
/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-burger{ margin-right: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
/*left: calc(100% - 35px);
left: -moz-calc(100% - 35px);*/
right: 0px;
top:0px;
margin-right:0px !important;
z-index: 101
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn-img{ display: block; /*margin-right: 10px;*/}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hide-text{ display: none;}
/* MENU FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-fixed-top{
position: fixed;
right: 0px;
left: 0;
z-index: 9999;
top: 120px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand a img{
width: 160px;
position: relative;
margin-top: 0px;
margin-left:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand{
padding:10px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand div img{
position: relative;
top: -1px;
left: calc(50% + 80px);
left: -moz-calc(50% + 80px);
width: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand.fixed-theme div img{
/*position: absolute;
top: calc(50%);
left: calc(50%);*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue{ background-color: #FFF; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li{ padding:10px 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span{ color: #555;border-bottom:1px solid #ddd;height:30px;cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue > li span span{
background-color: #fff;
width: 40px;
height: 30px;
position: relative;
float:left;
margin-left:calc(100% - 30px);
margin-top: -25px;
right: 0px;
border:none;
/*border-radius: 0px 5px 5px 0px;*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home{ background-color: #FFF; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home > li{ padding:10px 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home > li span{ color: #555;border-bottom:1px solid #ddd;height:30px;cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtres-catalogue-home > li span span{
background-color: #fff;
width: 40px;
height: 30px;
position: relative;
float:left;
margin-left:calc(100% - 30px);
margin-top: -25px;
right: 0px;
border:none;
/*border-radius: 0px 5px 5px 0px;*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #sptis:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #spmot:after{
content: '';
display: block;
height: 12px;
width: 19px;
background: url("/assets/design-system/production/img/arrow_down.png") no-repeat;
position: absolute;
top: 10px;
left: 45px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #spcol.changed:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #sptis.changed:after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #spmot.changed:after{
content: '';
display: block;
height: 12px;
width: 19px;
background: url("/assets/design-system/production/img/arrow_up.png") no-repeat;
position: absolute;
top: 10px;
left: 45px;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-brand.fixed-theme a img{
/*width: 15%;
position: absolute;
left: calc(33%);
top: 15px;*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cols{
width: 50%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-marge{margin: 0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur{
width: 30%;
max-width: 30%;
height: 40%;
position: relative;
background: #fff;
opacity: 0;
z-index: 9997;
float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.gauche{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.centre{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col div.pointeur.droit{
margin-left: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container{
position: absolute;
left: calc(50% - 29px);
left: -moz-calc(50% - 29px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .close-detail{ width: 110px;height: 50px;background-color:  white;position:  absolute;top: 30px; left: 50%;
transform: translate(-50%, 0);border-radius: 30px;cursor:pointer; z-index:99}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #close-detail-img{ width: 14px; position:  absolute; top: 18px; right: 15px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #close-detail-span{ color: #000 !important; position: absolute; top: 15px; left: 15px; font-size: 17px;height:20px;line-height:20px;font-weight:600 !important; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup_description{
position: absolute;
top: 0;
right: 0;
left: 0px;
padding-left:0px;
padding-right:0px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup{
width: 100%;
z-index: 2000;
height: auto;
margin-top: 0px !important;
left: 0;
bottom: 0;
margin: 0;
display: none;
box-shadow: none;
padding-bottom:20px;
top:0 !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fermer-popup{display:none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fpopup{
display: block !important
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #photo_detail #fois2{
position: absolute;
margin: 399px 0 0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail{
width: 100%;
position: fixed !important;
top:0;
margin: 0;
height: 100% !important;
overflow-y: scroll;
overflow-x:hidden;
text-align: left;
left:0;
right:0;
bottom:0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail::-webkit-scrollbar{
width: 0px;  /* remove scrollbar space */
background: transparent;  /* optional: just make scrollbar invisible */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #photo_detail{
width: 100%;
height: 449px;
position: absolute;
margin: 0 0 0 -20px;
overflow: auto;
}
/*#popup #photo_detail img {
width: 100%;
height: auto;
position: absolute;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed{
margin-top: 130px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-tissu{
margin-top: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #centred-area-displayed{
position: relative;
left: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup-marque{
position: absolute !important;
top: calc(100% - 80px) !important;
/*left: calc(30% - 70px);*/
z-index: 9999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #btn_commande_tissu{
margin: 30px auto 15px auto;
display: block;
}
/*#image-displayed {
position: relative;
left: calc(20vw - 220px);
left: -moz-calc(25vw - 220px);
height:400px;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sep-price{
display: none;
}
}



@media screen and (min-width:992px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-top{
border-top:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
border-bottom:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-bottom{
border-bottom:1px solid #d6d6d6;
border-left:1px solid #d6d6d6;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-right{
border-right:1px solid #d6d6d6;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .border-left{
border-right:0px;
}
/* MEDIA QUERIES
/* INFO-LIVRAISON */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container p{ font-size: 1em; color: #FFF; text-transform: uppercase; line-height: 1.4em; text-align: center; width: 100%; }

/* MENU LATERAL */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .guide-menu-deroulant{ background-color: transparent; }

/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container > img{ display: inline-block; margin-left: 15px; padding-top: 3px; }

/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .right-navigation{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .compte-btn{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 20px; cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .compte-btn-img{ margin-right: 7px; }



/* HEADER CATALOGUE CHEMISE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page{ padding: 50px 10px; background-size: cover;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-tissu{ padding: 120px 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne{ font-size: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne-activ{ /*font-size: 3em;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-find{    font-size: 0.9em;
line-height: 24px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-find:hover{color:#fff;}
/* FILTRES CATALOGUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li{ font-size: 15px; }

/* BANDEAU TISSU */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-top{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-content{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-bot{ font-size: 31px; }

/* CHOIX TYPE DE MESURE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{ padding: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-content{ font-size: 17px; }

/* MESURE RAPIDE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure-rapide{ padding-left: 15px; padding-right: 15px; }

/* ARTICLE + DESCRIPTION */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container{ height: 600px; margin-left: -50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container img{ margin-left: 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container{ padding-left: 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-description{ float: left; width: 50%; }

/* PANIER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier{ height: 300px; width: 300px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-article-panier{ justify-content: center;  }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-top{display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-start; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-compte{padding-top:30px;font-size:15px;line-height: 20px;text-align:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bot-compte{padding-top:0px;font-size:15px;line-height: 20px;text-align:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .nom-article-panier{ margin-right: 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }

/* ESPACE CLIENT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav{ text-align: left;
box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);padding:0px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li{ display: block; margin: 0;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li.actif{border-left:3px solid #005539;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li:last-child{border-bottom:1px solid #e6e6e6;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a{ font-size: 1em; line-height: 44px;padding-left:10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a.sous-nav-actif{ color: #005539; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modifier-info-compte{ font-size: 1em; text-decoration: underline; color:#005539;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu{
width:130px;
height:70px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
position: relative;
left: 1%;
padding-top: 3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
top:0px;
z-index: 101
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cols{
width: 20%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-marge{margin: 15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup{
/*background: #fff;*/
position: fixed;
z-index: 1501;
width: 100%;
/*height: 449px;*/
top: 10px;
/*left: 50%;
/*margin-top: -225px;
margin-left: -450px;*/
/*text-align: left;*/
display: none;
/*box-shadow: 0 0 20px #333;*/
font-family:var(--font-family-regular);
font-weight: 400;
}
}
@media screen and (max-width:991px){

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
display:none
}
/* MEDIA QUERIES
/* INFO-LIVRAISON */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container p{ font-size: 1em; color: #FFF; text-transform: uppercase; line-height: 1.4em; text-align: left; width: 100%; }

/* MENU LATERAL */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .guide-menu-deroulant{ background-color: transparent; }

/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-container > img{ display: inline-block; margin-left: 15px; padding-top: 3px; }

/* NAVIGATION MOBILE/FIXE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; height:100%; position: relative; left: 10px; padding-top: 0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .right-navigation{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .compte-btn{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 20px; cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .compte-btn-img{ margin-right: 7px; }


/* HEADER CATALOGUE CHEMISE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page{ padding: 50px 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-tissu{ padding: 120px 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne{ font-size: 1em; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fil-arianne-activ{ /*font-size: 2em;*/ }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modele-find{ font-size: 1em; }

/* FILTRES CATALOGUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li{ font-size: 15px; }

/* BANDEAU TISSU */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-top{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-content{ font-size: 31px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bandeau-tissu-bot{ font-size: 31px; }

/* CHOIX TYPE DE MESURE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{ padding: 30px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-content{ font-size: 17px; }


/* MESURE RAPIDE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure-rapide{ padding-left: 15px; padding-right: 15px; }

/* ARTICLE + DESCRIPTION */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container{ height: 600px; margin-left: -50px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-container img{ margin-left: calc(0% - 165px); }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container{ padding-left: 0px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-description{ float: left; width: 50%; }

/* PANIER */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier{ height: 300px; width: 300px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-article-panier{ justify-content: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-top{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 20px 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .nom-article-panier{ margin-right: 10px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-bottom{ display: flex; align-items: center; font-size: 1em; justify-content: space-between; }

/* ESPACE CLIENT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav{ text-align: left; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li{padding-left:10px; display: block; margin: 0;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li:last-child{border-bottom:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a{ font-size: 1em; line-height: 44px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li.actif{border-left:3px solid #005539;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .espace-client-sous-nav li a.sous-nav-actif{ color: #005539;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modifier-info-compte{ font-size: 1em; text-decoration: underline; color:#005539}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-marge{margin: 0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup{
background: #fff;
position: fixed;
z-index: 9999;
width: 100%;
height: 100%;
/*top: 10px;*/
/*left: 50%;
/*margin-top: -225px;
margin-left: -450px;*/
/*text-align: left;*/
display: none;
/*box-shadow: 0 0 20px #333;*/
font-family: var(--font-family-regular);
font-weight: 400;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sep-price{
display: none;
}
}
@media screen and (max-width:1199px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sep-price{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .centered-area-displayed{

}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn_plus{
float: right;
width: 27px;
height: 18px;
background-color: #005539;
border-radius: 13%;
text-align: center;
color: white;
vertical-align: baseline;
cursor: pointer;
font-size: 1em;
margin-left: 5px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn_plus:hover{
background: #ee3e53
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn_plus:active{
background: #b61024
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .puce{
margin-bottom:8px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .puce::before{
content: "■ ";
color: #005539;
display: inline-block; width: 1em;
margin-left: -1em;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #info+#header{
top: 50px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header{
position: fixed;
left: 0;
width: 100%;
z-index: 1030;
height: 70px;
background:transparent;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .search{
font-size: 16px; color: #FFF; margin-right: 10px;width:20%;
}
/*.navbar-container {
padding: 20px 0 0 10px;
}*/


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .position-fixed{position: fixed !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #infoe.fixed-theme{
display: none;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #filtre_container_tissu.fixed-theme{
background-color: #fff;
box-shadow: #ccc 0 5px 5px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1030;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .navbar-container.fixed-theme{
height: 50px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu.fixed-theme{
height: 70px;
padding-top:3px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-theme .menu2 a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-theme .divheader a,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-theme .p-greeting{color:#333 !important}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header.fixed-theme{ transition-property: background-color, border-color, box-shadow, padding-top;
transition: 0s;
-webkit-transition:  0s;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css footer{
position: relative;
bottom: 0px;
width: 100%;
margin-top: 40px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social{
width: 100%;
height: 50px;
display: inline-flex;
justify-content: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-fb{
border: 1px solid #fff;
border-radius: 25px;
background: url("/assets/design-system/production/img/fb.png") no-repeat;
width: 44px;
height: 44px;
background-size: 43px;
margin: 0px 10px 0px 0px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-fb:hover{
background: url("/assets/design-system/production/img/facebook.png") no-repeat;
background-size: 43px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-g-plus{
border: 1px solid #fff;
border-radius: 25px;
background: url("/assets/design-system/production/img/gplus.png") no-repeat;
width: 44px;
height: 44px;
background-size: 44px;
margin: 0px 10px 0px 0px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-g-plus:hover{
background: url("/assets/design-system/production/img/google.png") no-repeat;
background-size: 44px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-pinterest{
border: 1px solid #fff;
border-radius: 25px;
background: url("/assets/design-system/production/img/pint.png") no-repeat;
width: 44px;
height: 44px;
background-size: 43px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-social-pinterest:hover{
background: url("/assets/design-system/production/img/pinterest.png") no-repeat;
background-size: 43px;
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-sub{
background-color: #f3f7f8;
border-top: 1px solid #dbdbdb;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-sub h5{
color:#565656;
margin-top: 25px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-sub ul{
list-style: none;
margin-top: 20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-sub hr{
margin: 5px;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-sub ul li{
margin-left: -38px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .vertical-line{
border-right: 1px solid #dbdbdb;
margin: 8px;
padding: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .glyphicon{
font-size: 31px;
color:#6d6c6c;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #sub-two{
margin: 0px;
padding: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #sub-two .vertical-line h4{
color:#6d6c6c;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main ul{
list-style: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main ul li{

text-decoration: none;
margin-top: 25px;
text-align: center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main ul li img{
max-width:70px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-help{
border: 1px solid #fff;
padding: 10px;
margin: 10px 0px 10px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-help a{
font-size: 17px;
color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-help:hover{
/*background-color: #fff;*/
color: 2E3E57;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .glyphicon-search{
font-size: 20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #social-menu{
float: right;
margin-right: 60px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #side-padding{
padding: 0px;
margin: 0px;
}




/* POPUP TISSUS*/

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #fermer{
position: absolute;
height: 43px;
width: 42px;
background: url("/assets/design-system/production/img/close.png") no-repeat;
background-size: 40px;
cursor: pointer;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #waitpopup{
position: absolute;
margin: 207px 0 0 432px;
display: none;
}

/*#popup #detail {
width: 375px;
position: absolute;
margin: 0 0 0 525px;
}*/

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail{
width: 100%;
position: relative;
height:100%;
margin: 0px 0 0 0px;
background: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail .desc{
width:100%;
height:70%;
position:relative;
display:block;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail{
width: 100%;
position: relative;
height:auto;
margin: 0px 0 0 0px;
background: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail .desc{
width:100%;
height:70%;
position:relative;
display:block;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h1_texte{
font-size: 31px;
margin: 40px 0 30px 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail .fort{
font-size: 17px;
margin-top: 15px;
margin: 15px 0 0 10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail .fort span{
color: #999;
font-size: 17px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail ul{
list-style-type: none;
margin: 0px 0 0 0;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail ul li span{
font-size: 17px;
color: #666;
display: inline-block;
width: 100px;
font-weight:700;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #detail ul li.text{
margin-top: 8px;
line-height: 1.3em;
text-align:left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #btn_commande_tissu{
margin: 20px 10px 15px 10px
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail .fort{
font-size: 17px;
margin-top: 15px;
margin: 15px 0 0 10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail .fort span{
color: #999;
font-size: 17px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul{
list-style-type: none;
margin: 0px 0 0 0;
}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul li span{
font-size: 17px;
color: #666;
display: inline-block;
width: 100px;
font-weight:700;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #detail ul li.text{
margin-top: 8px;
line-height: 1.3em;
text-align:left;
font-size:16px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #btn_commande_tissu{
margin: 20px 10px 15px 10px
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background{
position: absolute;
z-index: 1500;
top: 0;
left: 0;
background: #000;
opacity: 0.5;
width: 100%;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .backgroundfiltrage{
background: #000;
opacity: 0.5;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background3{
position: absolute;
z-index: 999;
top: 0;
left: 0;
background: #000;
opacity: 0.2;
width: 100%;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #popup #autres_tissus{
position: absolute;
margin: 385px 0 0 525px;
border-top: 1px dotted #ccc;
height: 40px;
width: 365px;
padding: 10px 0 0 10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bloc_col{
background: #f2f2f2;
border: 1px solid #e3e3e3;
padding: 10px;
float: left;
margin: 0px 10px 10px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bloc_col img{
float: left;
margin-right: 15px;
margin-bottom: 15px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col{
height: 380px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col img{
position: absolute;
z-index: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .image_col img:nth-child(1){
z-index: 2;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .texte{
font-size: 17px;
margin: 0 50px 20px 50px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2_texte{
font-size: 1.8em;
margin: 0 50px 20px 60px;
line-height:30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h3_texte{
font-size: 1.3em;
margin: 0 50px 20px 50px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-page-guide{
padding: 100px 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .colonne_menu{
text-decoration: underline;
font-size: 1em;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sublinkcart{
color:#b6b4b4; font-size: 15px; cursor:pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sublinkcart:hover{
color:#918888;
}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartArticle{
max-height:240px;
height:auto;
overflow-y: auto;
/*border-bottom: 1px solid #e6e6e6;*/
}
/* width */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartArticle::-webkit-scrollbar{
width: 10px;
}

/* Track */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartArticle::-webkit-scrollbar-track{
background: #f1f1f1;
}

/* Handle */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartArticle::-webkit-scrollbar-thumb{
background: #888;
}

/* Handle on hover */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartArticle::-webkit-scrollbar-thumb:hover{
background: #555;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .article-panier-2{margin:0px;padding:0px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .photo-article-panier-2{
width:25%;min-width:25% !important; height:100px;text-align:center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-article-panier-2{height:100px; width: 300px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-article-panier-2{font-size:21px;width:15%;height:60px;text-align: right;
margin-right: 15px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{min-height: 100px; padding-top: 5px; padding-bottom: 20px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cwhite{color: #FFF;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize16{font-size: 16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize17{font-size: 17px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize19{font-size: 19px ;    color: #FFF;
display: table;
margin: 25px auto; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize21{font-size: 21px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize18em{font-size: 1.8em;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fsize12em{font-size: 1.2em;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tcenter{ text-align: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tjustify{text-align:justify;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tleft{text-align:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tright{text-align:right;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tdunderline{text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tunderline{text-decoration: underline;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cursor{cursor: pointer;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mb0{margin-bottom: 0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mb20{margin-bottom: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mb25{margin-bottom: 25px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mb50{margin-bottom: 50px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ml20{margin-left: 20px}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ml0{margin-left: 0px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mt20{margin-top: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mt44{margin-top: 44px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mt40{margin-top:40px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pl50{padding-left: 50px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pr50{padding-right: 50px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p10{padding:10px;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .vtop{vertical-align: top;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mh405{min-height: 405px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mh155{min-height:155px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h200{height:200px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h155{height:155px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .w100p{width:100%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .w78{width:78px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .w50p{width:50%;}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .dBlock{display: inline-block;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .disBlock{display: block;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .z1500{z-index: 1500;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fLeft{float : left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fRight{float : right;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bbnone{border-bottom: none;}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cl{clear:left;}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0001{float:none;margin-left: auto; margin-right: auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0002{margin-bottom: 20px; text-align: center; font-size: 16px; line-height: 1.8em; padding-top: 20px;padding-bottom: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0003{background-size: 17px; padding: 0 10px 0 15px; display: inline-block; height: 17px; cursor: pointer; margin-left: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0004{background-size: 17px; padding: 0 10px 0 15px; display: inline-block; height: 17px; cursor: pointer; margin-left: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0005{margin-bottom: 20px; text-align: center; font-size: 16px; line-height: 1.8em; padding-top: 20px;padding-bottom: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0006{width: 100%; text-align: center;font-size: 16px;line-height: 1.8em}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0007{color: #FFF; font-size: 17px; display: table; margin: 25px auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0008{margin-top: 12px;margin-left: 30px;line-height: 35px;list-style: circle;font-size:16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0009{text-align: left; line-height: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0010{float:right;margin:0 50px 20px 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0011{background:#f2f2f2; margin-bottom: 25px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0012{padding:10px; vertical-align: top; float:left; margin: 0 50px 20px 50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0013{margin: 0 50px 20px 50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0014{float:left;margin:10px 20px 20px 50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0015{margin: 10px 20px 20px 50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0016{font-size: 1.2em; width: 91%; margin-left: auto; margin-right: auto;}

@media screen and (max-width:860px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn-img{
width:100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hide-text{
display: none !important;
}
}
@media screen and (max-width:321px){

}
@media screen and (max-width:245px){


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose{
display: flex;
align-items: center;   /* Centre verticalement */
justify-content: center;
padding: 0px 10px;
font-size: 0.7em;
line-height: 1em;
background: #005539;
color: #FFF;
-webkit-transition: all 0.2s;
transition: all 0.2s;
text-align: center;
height: 56px;
border-radius: 12px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container p{
font-size: 0.7em;
color: #FFF;
text-transform: uppercase;
line-height: 1.4em;
text-align: center;
width: 100%;
}
}

@media screen and (max-width:568px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .autres-modeles-titre{
font-size:1em !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide{
display:block;
width:100%;
max-width:100%;
margin:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide div{
display:block;
text-align: center;
white-space:normal;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:block;
vertical-align:middle;
width:100%;
table-layout:fixed;
text-transform: uppercase; font-size: 1.2rem; line-height: 1.4em; font-weight:bold; margin-bottom: 10px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space{
display:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide p{
padding:0 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.spacer:after{
display:inline-block;
width:0%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:right;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .topslide span.space:after{
display:inline-block;
width:0%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:35px;
float:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css h2{font-size:25px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome{
display:block;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome div{
display:block;
text-align: center; text-transform: uppercase; font-size: 24px; line-height: 1.4em;font-family: var(--font-family-regular);
font-weight: 700;
white-space:normal;
color:#000;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:block;
vertical-align:middle;
width:100%;


}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer{
display:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome p{
padding:0 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tophome span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
border-top:1px dotted #000000;
color:transparent;
height:1px;
background:#fff;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home{
display:block;
width:100%;
max-width:100%;
margin:20px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home div{
display:block;
line-height:1.4em;
font-size:16px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
font-size:inherit; /* Change font-size in header */
overflow:hidden;
display:block;
vertical-align:middle;
text-align:center;
white-space:normal;
width:100%;
color:#000;font-weight:500;font-family:var(--font-family-regular);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer{
display:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home p{
padding:0 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .home span.spacer:after{
display:inline-block;
width:100%;
content:".";
font-size:0;
color:transparent;
height:1px;
background:#d6d6d6;
vertical-align:middle;
position:relative;
top:-1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{ display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-line-pack: center; align-content: center; height: 455px; padding: 12px 12px; background: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") no-repeat top center; background-size: cover; text-align: center; color: #FFF; margin-bottom: 20px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu{width:100%;height:100%;border:1px dashed #b3b3b3;padding-top:200px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu h1{text-transform: none; font-size:30px; line-height:40px; width:100%; font-weight:bold; margin-bottom: 10px; text-shadow: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu h1::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu h1::after{
display: inline-block;
content: "";
height:1px;
background:#ffffff;
width: 1.2rem;
margin: 0 .2rem;
transform: translateY(-.3rem);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu span{
font-size:16px;
margin-bottom:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu  .prix{
display:block;
font-size:2.5rem;
margin-bottom:30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose{
padding:0px 10px;
width:100%;
height: 50px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #btn_suivant{
padding:10px 30px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-home{
padding:10px 50px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .centered-area-displayed{
width:30% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn-img{
width:100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hide-text{
display: none;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .badge-pill{
left:20px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier{
margin-top:70px;
margin-bottom:60px;
padding-bottom:10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-panier li{
width: 100%;
text-align: center;
border-top: 1px solid #c7c7c7;
border: 1px dashed #c7c7c7;
padding:5px;
margin-top: 5px;
}
}






@media only screen and (min-width:1023px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:86.5%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(53% - 636px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 50%;
position: absolute;
display: none;
}
}
@media only screen and (min-width:1280px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 732px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}


@media only screen and (min-width:1472px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 733px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}

@media only screen and (min-width:1440px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 715px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}
@media only screen and (min-width:1550px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-list{max-height:400px !important }
}
@media only screen and (min-width:1600px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-list{max-height:400px !important }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 738px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}

@media only screen and (min-width:1680px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 740px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 32%;
position: absolute;
display: none;
}
}

@media only screen and (min-width:1920px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 745px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}
@media only screen and (min-width:2047px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:88.6%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 745px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}
}
@media only screen and (min-width:2199px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-btn{left:89%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .panier-content-hover{
top: 70px;
right: calc(52% - 612px) !important;
z-index: 99;
background: white;
border: .5px solid #e6e6e6;
width: 40%;
position: absolute;
display: none;
}


}
@media only screen and (max-width:500px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .w78{
width: 68px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #stripe{
width: 55px !important;
margin-top: -6px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-help a{
font-size: 15px !important;
}
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-grey:hover{background:#666666}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-grey{
background:#8f8f8f;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-help a:hover{
color:#a5a4a4 !important ;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .special-link a:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .special-link:hover{
background: #06695F !important;;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .special-link{
color:white !important;
background:#005539 !important;
}
/************** Slider ***********************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides{
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides li{
margin:0px !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides li{
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides li:first-child{
position: relative;
display: block;
float: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides img{
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides .popup-marque{
width:35% !important;
position: absolute !important;
top: calc(100% - 80px) !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides{
margin: 0 auto;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_container{
margin-bottom: 20px;
position: relative;
float: left;
width: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_nav{
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top: 50%;
left: 0;
z-index: 99;
opacity: 0.7;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 61px;
width: 38px;
background: transparent url("/assets/design-system/production/img/themes.gif") no-repeat left top;
margin-top: -45px;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_nav:active{
opacity: 1.0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_nav.next{
left: auto;
background-position: right top;
right: 0;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_nav:focus{
outline: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_tabs{
margin-top: 10px;
text-align: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_tabs li{
display: inline;
float: none;
_float: left;
*float: left;
margin-right: 5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_tabs a{
text-indent: -9999px;
overflow: hidden;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: #ccc;
background: rgba(0,0,0, .2);
display: inline-block;
_display: block;
*display: block;
-webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
-moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
width: 9px;
height: 9px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rslides_tabs .rslides_here a{
background: #222;
background: rgba(0,0,0, .8);
}
/*******************************************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .reference{ padding-right:0px;font-size: 14px; line-height: 1.4em; margin-bottom: 10px; padding-top: 10px; text-align: right; color: #7f7f7f; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker{
background-color: #FFF;
display: inline-block;
padding: 0;
height: 40px;
overflow: hidden;
transition: all .3s ease;
margin: 0 50px 10px 0;
vertical-align: top;
/*float: left;*/
}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker a{
color: #000;
text-decoration: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker li{
display: block;
padding: 0px 20px;
line-height: 40px;
border-top: 1px solid #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker li:hover{
background-color: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker a:first-child li{
border: none;
background: #FFF !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .languagepicker li img{
margin-right: 5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .roundborders{
border-radius: 5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--large{
font-size: 1.5em;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--small{
font-size: .7em;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown__select{
font-size: inherit; /* inherit size from .custom-dropdown */
padding: .5em; /* add some space*/
margin: 0; /* remove default margins */
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown__select--white{
background-color: #005539;
color: #fff;
}

@supports (pointer-events: none) and
((-webkit-appearance: none) or
(-moz-appearance: none) or
(appearance: none)){

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown{
position: relative;
display: inline-block;
vertical-align: middle;
margin-left:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown__select{
padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */
border: 0;
border-radius: 3px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown::after{
content: "";
position: absolute;
pointer-events: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown::after{ /*  Custom dropdown arrow */
content: "\25BC";
height: 1em;
font-size: .625em;
line-height: 1;
right: 1.2em;
top: 50%; margin-top: -.5em;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown::before{ /*  Custom dropdown arrow cover */
width: 2em;
right: 0; top: 0; bottom: 0;
border-radius: 0 3px 3px 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown__select[disabled]{
color: rgba(0,0,0,.3);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown.custom-dropdown--disabled::after{
color: rgba(0,0,0,.1);
}

/* White dropdown style */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--white::before{
top: .5em; bottom: .5em;
background-color: #005539;
border-left: 1px solid rgba(255,255,255,0.7);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--white::after{
color: rgba(255,255,255,0.7);
}

/* FF only temp fix */
@-moz-document url-prefix(){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown__select{ padding-right: .9em }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--large .custom-dropdown__select{ padding-right: 1.3em }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-dropdown--small .custom-dropdown__select{ padding-right: .5em }
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list{
margin-top:12px;
text-align: left;
float:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #menu_language_list{

text-align: left;
float:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list ul{
list-style: none;
margin: 0;
padding: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list ul li{
display: inline-block;
margin: 0 7px;
padding: 0;
color: #999;
font-size: 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list ul li:first-child{
margin-left: 0px;
margin-right:7px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list ul li img{
margin-top:-3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer_language_list ul li a:hover{
text-decoration: underline;
color: #222;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-indicator{
color: #2f3c55;
margin-top:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag:hover{
/*background-color: #fff;*/
color:#999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-indicator,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #buttonLanguage{
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-indicator >span:after{
content: '';
display: inline-block;
height: 13px;
width: 14px;
background: url("/assets/design-system/production/img/icon-fleche-menu-deroulante.png") no-repeat;
position: relative;
margin-left:auto;
margin-right:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .open{
color:#999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .open >span:after{
background: url("/assets/design-system/production/img/icon_haut.png") no-repeat !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=FR]:before{
background: url("/assets/design-system/production/img/FR.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=DE]:before{
background: url("/assets/design-system/production/img/DE.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=NL]:before{
background: url("/assets/design-system/production/img/NL.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=ES]:before{
background: url("/assets/design-system/production/img/ES.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=IT]:before{
background: url("/assets/design-system/production/img/IT.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=GB]:before{
background: url("/assets/design-system/production/img/GB.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=BE]:before{
background: url("/assets/design-system/production/img/BE.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=CH]:before{
background: url("/assets/design-system/production/img/CH.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=US]:before{
background: url("/assets/design-system/production/img/US.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=AT]:before{
background: url("/assets/design-system/production/img/AT.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag.country[data-locale$=LU]:before{
background: url("/assets/design-system/production/img/LU.svg");
background-size: contain;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag:before{
display: inline-block;
/*vertical-align: middle;*/
margin-top: 0px;
content: '';
width: 19px;
height: 13px;
margin-right: .6em;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
border: 1px solid #005539;

white-space: nowrap;
left: 50%;
transform: translate(-50%, 0);
bottom: 30%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Label,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Item{
line-height: 3;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Label{
font-weight: bold;
display: block;
width: 100%;
line-height: 2;
white-space: nowrap;
margin: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Item{
text-decoration: none;
color: inherit;
cursor: pointer;
display: block !important;
width: 100%;
line-height: 2;
white-space: nowrap;
margin: 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 3em;
background: white;
text-align: left;
font-size: 85%;
color: initial;
z-index: 999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher .Item:hover{
text-decoration: underline;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-cookie{

background-color: #21304e;
position: fixed;
bottom:0px !important;
left: 0px;
width: 100%;
z-index: 1500;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .reorder{
margin-top: 30px;
margin-bottom: 20px;
text-align: left;
float:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .reorder a{
font-size: 14px;
text-decoration: underline;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .zindex{z-index: 9999;}
@media (min-width: 992px)
.col-md-4{
width: 33.33333333%;
}
@media (min-width: 992px)
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9{
float: left;
}
@media (min-width: 768px)
.col-sm-4{
width: 33.33333333%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-filter{visibility: hidden;display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .margin_1{
margin-top:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .multi{display: flex;flex-direction: row;align-items: baseline;justify-content: left}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .multi-line{display: block;margin: 0 5px;color: #5e5e5e;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div3{    background: #005539;
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: 50px 20%;
text-align: center;margin-bottom: 100px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main ul li{
text-decoration: none;
margin-top: 20px;
text-align: left !important;
font-size: 14px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{padding:50px 0}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mt{margin-top: 50px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-col ul li a{
color:#2f3c55;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-col ul li a:hover{
text-decoration: underline;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main h5{
font-size: 18px;
font-weight: 600;
margin-bottom:40px;
color:#2f3c55;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main .icons img{
max-width: 50px;
height: auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .style0007{
color: #FFF;
font-size: 17px;
display: table;
margin: 25px 0px; */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-indicator{
color: #2f3c55;
font-size: 16px;
margin-top: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
border: 1px solid #005539;
white-space: nowrap;
right: 0%;
left: inherit;
transform: translate(-0%, 0) !important;
width: 1000px;
bottom: 30%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cont{margin:0px auto 60px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bordere{border-right:1px solid #C6C6C6;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height-dv{height: 93px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .picto{box-sizing: border-box; /* important pour garder la taille stable */
flex-shrink: 0;padding:10px;display:flex;width:100px;height:100px;border: 1px dashed #C6C6C6;border-radius: 100%; justify-content: center;   /* centre horizontalement */
align-items: center; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .picto img{width:100%;height:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pi-text{padding:0px;display: block;width:100%;line-height:24px;font-size:16px; margin-left:20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-1{margin-top: -100px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-2{margin-top: -90px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .dv{padding-left:10px}
@media screen and (max-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .trash-icon{transform: translateY(-1px);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta svg{transform: translateY(-1px);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta:hover::after{width:0 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .scroll-btn{left:15%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-del{    text-align: center;
    display: flex;
    width: 100%;
    margin: 0 auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .modal-dialog{min-width: 90%;margin:10px auto;width:90%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-card{flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-map{width:100%;height:200px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice{  align-items: flex-start;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-header{padding:14px 15px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta{padding:0 40px;font-size:16px;white-space:normal;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-body{padding:10px;min-height: 0;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-footer{padding:25px 10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte{min-width: 40%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse{margin: 0px auto 0px auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-hidden-desktop{display: block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header img{width:200px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rules{flex-direction: column;align-items: flex-start;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-email{ background-image: url("/assets/design-system/production/img/icon-email.svg"); padding-left: 15%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-password{ background-image: url("/assets/design-system/production/img/icon-key.svg"); padding-left: 15%; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .isfocused{left:12%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .more-colors{
width:20px;
height:22px;
border-radius: 50%;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
color:#000;
margin-left:0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .colors-list{ display: grid;
grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
gap: 5px;
width: 100%;
box-sizing: border-box;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ban-home{background: url("/assets/design-system/production/img/banner-mobile.webp");background-size: cover;background-position: bottom;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-bar h1{
font-size: 18px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bar-left{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .steps{
display: flex;
align-items: center;
flex-direction: column;
align-items: flex-start;
gap: 3px;
margin-bottom: 20px;
width:100%;
padding:10px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .steps .text{ font-family:var(--font-family-regular) !important;
font-size: 16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe{
display: flex;
align-items: center;
white-space: nowrap;
position: relative;
white-space: normal;
padding-left: 22px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .circle{
width: 16px;
height:16px;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size:18px;
margin-right: 6px;
position: absolute;
left: 0;
top: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .circle::after{
content: ".";
position: absolute;
right: -1px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .line{
width: 1px;
height: 10px;
border-bottom: none;
border-left: 1px dotted #000;
margin: 0px 0 0px 10px;
flex: none;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-div{display: flex;align-items:flex-start;flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-div p{margin-bottom: 15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue{ height: 100%; margin-bottom:0px; border: 1px solid transparent; -webkit-transition: all 0.2s; transition: all 0.2s; width: 100%; max-width:160px; float: none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-filter{width:85% !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cont{
margin:0px auto 10px auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-f{display: flex;flex-direction: row;align-items: center;justify-content: space-between;margin:0px 0;width:100%;padding:0px 10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-33{margin-top:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #btn_suivant{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #customButton{height:100% !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height-dv{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divider{
display: none;    /* couleur de la ligne verticale */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .con{
display: flex;
justify-content: center;   /* centre horizontalement les éléments */
align-items: flex-start;       /* centre verticalement les éléments */
gap: 0px;
flex-direction: column;
padding:0px 10px;              /* espace entre les items */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-details{padding-left:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-f{width:100%;margin:30px 0 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .span-fab{margin-left:20px;font-weight: normal !important;color:#000 !important;flex: 1;
word-break: break-word;line-height: 25px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-tissu{text-align: left}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text_option_li{border-bottom: 1px solid #F5EFEF;padding-bottom: 10px;display: flex; align-items: center;justify-content: left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-qte{width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;        align-items: flex-start;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-qte div{margin-bottom: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .img-conf{width:100%;height:auto;margin:0 auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body,html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css{max-width: 100%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h1-catalogue{
color: #000;
text-align: left;
line-height:34px;
font-family: var(--font-family-oswald);
font-weight: 800;
text-shadow: none;
font-size: 33px;
max-width: 100%;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .multi{display: flex;flex-direction: row;align-items:baseline;justify-content: left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .multi-line{display: block;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .span-fabric{   font-size: 16px;
color: #222 !important;
display: inline-block;
font-weight: 800 !important;
font-family: var(--font-family-h) !important;margin:10px 0;width:120px;flex-shrink: 0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p_y{background:#fdffce;text-align:center;padding:10px;line-height: 20px}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .second{font-size: 100px !important;font-family: var(--font-family-h);font-weight: 800}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b a::after{width:0 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mt{margin-top: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .row{
margin-left: 0px !important;
margin-right: 0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container-fluid{
padding-left:5px !important;
padding-right:5px !important;width:100%;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #shirt{padding-left:5px !important; padding-right:5px !important;margin-top:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pd{margin-left:-10px !important;margin-right:-10px !important }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pde{margin-left:-10px !important;margin-right:-10px !important }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pdd{padding-left:15px !important;padding-right: 15px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .width-img{width:50px;height:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-livraison-container{height:120px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .description-container ul li.text{
margin-top: 25px !important;
text-align: justify !important;
line-height: 25px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div3{    background: #005539;
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: 50px 5%;
text-align: center;margin-bottom:50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div3 h1{
text-transform: none;
font-size: 30px;
line-height: 40px;
width: 100%;
font-weight: bold;
margin-bottom: 10px;
text-shadow: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pbloc{font-size: 16px !important;text-align: justify !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #navbar{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
margin-left: 10px !important;
margin-right: 10px !important;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-home{font-size:20px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css body{padding-top: 70px;width:100%;overflow-y: auto;    display: grid;
grid-template-rows: auto auto 1fr auto;
grid-template-columns: 100%;
min-height: 100%;
margin: 0;overflow-x:hidden}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header.fixed-theme{
background-color: #fff;
box-shadow: #ccc 0 2px 15px;
position: fixed !important;
top: 0px;
left: 0;
width: 100%;
z-index: 1030;;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .LanguageSwitcher{
border: 1px solid #005539;
white-space: nowrap;
right: 0%;
left: inherit;
transform: translate(-0%, 0) !important;
width: 100%;
bottom: 30%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{padding: 20px 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-col ul li a{
line-height: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-col{margin-bottom: 5px;border-bottom:1px solid #eee}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #stripe{
width: 65px !important;
margin-top:-8px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main ul li{

margin-top:15px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main h5{
margin:15px 0;
text-transform: uppercase;
font-size: 15px;
font-weight: bold;
font-family: var(--font-family-h);
position: relative;
}
/*.ferme:after {
content: '';
display: inline-block;
height: 16px;
width: 16px;
background: url("/assets/design-system/production/img/fleche-deroulante-footer.png") no-repeat;
position: absolute;
top:0px;
right:0px !important;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .disblock{margin:20px 0}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .ouvert:after{
content: '';
display: inline-block;
height: 16px;
width: 16px;
background: url("/assets/design-system/production/img/fleche-deroulante-footer-ouverte.png") no-repeat;
position: absolute;
top:0px;
right: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .disnone{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .disblock{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height-dv{
height: 118px;
margin-bottom: 20px;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bordere{border: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pi-text{
margin-left:20px !important;font-size: 16px !important
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .dv{padding-left: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css strong{font-weight: 700;font-size:18px !important}
}

@media screen and (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-right-inner{padding-left:100px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-vert{
background: #005539 !important;
padding: 10px 50px;
display: flex;
min-width: 300px;
align-items: center;
justify-content: center;
text-align: center;
margin-top:30px !important;color:#fff;
text-transform: uppercase;
font-weight: 800;
font-size: 16px;
font-family: var(--font-family-regular);height:56px;border-radius: 0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-4{
width: 33.33333333%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-5{
width: 41.66666667%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-3{
width: 25%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-9{
float: left;
}}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css strong{font-weight: bold !important;font-size:20px}
@media screen and (max-width:500px){

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{
padding: 0px 0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #stripe{
width: 55px !important;
height: auto;
margin-top:-8px !important;
}
}
@media screen and (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-info{
margin-top:90px;
transition:0.3s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .myp{
font-weight: 700;
color: #666;
font-size: 15px;
line-height: 20px;
margin-left: 10px;
margin-bottom: 50px;
text-align: center;
background: #f1f1f1;
padding: 20px 40px;
width: 100%;
font-family: var(--font-family-regular);
font-weight: 400;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header__icon--close{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-4{
width: 33.33333333%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-5{
width: 41.66666667%;

}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-3{
width: 25%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .col-lg-9{
float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{height:100vh !important;padding:0px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu{display:none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #openMenu{width:130px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger{width:130px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contenu{flex-direction:row}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div1{width:50%;display:flex;flex-direction: column;align-items:center;justify-content: center;padding:0px 50px;margin:0 auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div2{width:54%;background: url("/assets/design-system/production/img/b-header.jpg");background-position: center;background-size: cover;}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .temoignages-titre h2{font-family:var(--font-family-h);font-weight: 800;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css strong{font-weight: 900 !important;font-size:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2{display:flex;align-items:center;margin-left:15px;padding:12px 0 13px 0}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-top{margin-top:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items:center;justify-content: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 a{color:#fff;display:inline-flex; align-items: center;font-weight:900;font-family:var(--font-family-oswald) !important;position:relative;font-size: 15px;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 a:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divheader a{margin:3px 0 2px 0;color:#fff;font-family:var(--font-family-regular);font-weight: 500;font-size: 0.9rem;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css p{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 li img{height:9px;margin-left:8px;width:auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left:7px;
top: 20px;
z-index: 9;
display: none;
}
@media screen and (max-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-filter-fixed .top-info{
margin-top: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure{margin-bottom: 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .is-filter-fixed{padding-top:70px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-vert{    background: #005539 !important;
padding: 15px;
display: flex;
min-width: 100%;
align-items: center;
justify-content: center;
text-align: center;margin-top:20px !important;color:#fff}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .m-compte{display:none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtre-menu-deroulant li{padding-left:10px;font-family: var(--font-family-regular);}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filtere.h5{
margin-bottom: 1rem;
font-size: 14px;
font-weight: bold;
letter-spacing: 1.4px;
line-height: 1.3;
display: flex;
padding-left:10px;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-10{margin-left:-10px !important;margin-right: -10px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pictos{padding:20px 0 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #footer-main{
padding:0px 0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .footer-p{padding:10px 10px !important; color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .demo > li img{width: 80px !important;height: auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carousel-inner .item{
max-width: 100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .containerguide{
max-width: 1120px;
margin: 0px auto;
width: 100%;
padding: 0 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix-methode-mesure{margin-top: 70px;
color: #000;
text-align: left;
text-shadow: none;
font-size: 1em;
line-height: 1.4em;
max-width: 100%;
text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-lateral-container{transform: translate(0);left:-100% ;-webkit-transition: all 0.5s;
transition: all 0.5s;-webkit-overflow-scrolling: touch;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu h1::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home .contenu h1::after{display:none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{height:100% !important;padding:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .burger-menu{display:block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divheader,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #connect{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #openMenu{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hamburger{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-home{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contenu{flex-direction:column;justify-content: center;height:calc(100vh - 100px) !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div2{width:100%;background: url("/assets/design-system/production/img/b-header.jpg");background-position: center;background-size: cover;height:330px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left:0px;
top: 100px;
z-index: 99;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .divheader{align-items:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 .link-1::after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 .link-2::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-3{position: relative;margin-right:25px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-3::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:2px;
background-color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-4{position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-4::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:3px;
background-color: #000;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-4:hover::after{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #connect:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-3:hover::after{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 .link-1::after{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 .link-2:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b{margin-top:0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem;color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width:0;
height: 3px;
background-color: #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bb a::after{content: '';
position: absolute;
left: 0;
width: 100%;
bottom: 10px !important;
height: 3px;
background-color: #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bb a:hover::after{
width:0px; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b a:hover{color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .categorie-link{
background-color: transparent;
color: #000;
position: relative;
padding: 1rem 0;
margin: 7px 10px 7px 5px;
display: inline-block;
font-family:var(--font-family-regular);
font-size: 16px;
font-weight: 600;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lk{padding:5px 5px !important;font-size:0.8em !important;color:#555;font-weight: normal !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .kk{ border-bottom: 2px solid black;
padding-bottom: 2px;color:#000 }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .line-with-dots{
display: flex;
align-items: center;
color: #2f3c55; /* Couleur du texte */
font-weight: bold;
font-size: 18px;
font-family:var(--font-family-regular);
font-weight:800;
margin:30px auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .line-with-dots::after{
content: '---------------------------------------------------------------------------------------------------------------------------------------';
flex-grow: 1;
margin-left: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .scrollenone{overflow: hidden !important;width:100%;height:100%;position: fixed}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header__icon--close{
width: 1rem;
position: fixed;
top: 1.2rem;
right:35px;
opacity: 1;
z-index: 4;
color: #000;
background-color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #background3{z-index:9999 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrg-50{margin-top: 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h1-home{    color: #fff;
text-align: center;
line-height: 45px;
font-family: var(--font-family-oswald);
font-weight: 800;
text-shadow: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-home{color:#fff;font-size:16px;line-height:24px;margin:10px 0 0px 0;text-align:center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-home-1{color:#fff;font-size:19px;line-height:25px;margin:10px auto;text-align:center;max-width: 450px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .link-b{margin-top: 10px;
background: transparent;
padding: 20px 0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .h2-home{color:#000;
text-align: left;
line-height:30px;
font-family: var(--font-family-oswald);
font-weight: bold;
text-shadow: none;
font-size:24px;display: flex;margin:25px 0px;align-items: center;gap:0.6rem}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-cent{text-align: center !important}

@media (min-width: 1200px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container{
width: 1360px !important;
padding:0px 0px !important;
}
}

@media (min-width: 992px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .container{
width: 1000px;
padding:0px 0px !important;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-ok{background: transparent;
padding: 10px 15px;
border: 1px solid #fff;
font-size: 14px;
color: #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-ok:hover{color:#21304e;background: #fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-container{
display: inline-flex;
align-items: center;
border: 1px solid #eee;
border-radius: 10px;
overflow: hidden;
height:45px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-container button{
background-color: transparent;
border: none;
padding: 12px 15px;
font-size: 18px;
cursor: pointer;
transition: background 0.2s;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-container button:hover{
background-color: #eee;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-input{
width: 50px;
text-align: center;
border: none;
font-size: 16px;
font-weight: bold;
outline: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-input:focus{
outline: none;
border: none;
box-shadow: none;  }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .retour-catalogue{
display: inline-flex;
align-items: center;
text-decoration: none;
text-transform: uppercase;
color: #333; /* ou autre selon ton design */
font-weight: 900 !important;font-family:var(--font-family-regular) !important;position: relative;font-size: 0.8rem !important;margin-top:0px !important
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-fleche{
margin-right: 5px;
width:auto;
height: 11px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-fleche-top{
margin-left: 5px;
width: 15px;
height: 15px;
color:#fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-list{position: relative;margin-top: 5px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-list span{  margin-left:20px;color:#333 !important;font-size: 16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .custom-list::before{
content: "•";             /* symbole coche */
position: absolute;
left: 0;
top: 0;
color: #000;           /* bleu (comme sur ton image) */
font-weight: bold;
font-size: 16px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-home{color:#fff76f;margin-top:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .one{font-size:44px !important;font-family: var(--font-family-h);font-weight: 400;text-align: left;margin-bottom: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-image-hover{position: absolute;
top: 0;
left: 0;
opacity: 0;width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo a:hover .product-image-hover{
opacity: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo a:hover .new,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo a:hover .neww{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .chemise-catalogue-photo a:hover .product-image{
opacity: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .old-price::after{
content: '';
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 2px; /* épaisseur de la ligne */
background: #222; /* couleur de la ligne */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fz-14{font-size: 13px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #couleur1 li{padding-left:30px !important}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .a-f{font-size:16px;font-family: var(--font-family-oswald);font-weight: 900;margin-top: 0px;text-align: center;margin-bottom: 0px;text-transform: uppercase;display: flex;align-items:flex-end;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p_achat{text-align: justify;
font-size: 15px;
line-height: 20px;font-family: var(--font-family-regular)!important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .height-dv{    display: flex;
justify-content: center;   /* centre horizontalement */
align-items: center; gap: 10px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shell{
position: relative;
line-height: 1; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shell span{
position: absolute;
left: 3px;
top: 1px;
color: #ccc;
pointer-events: none;
z-index: -1; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shell span i{
font-style: normal;
/* any of these 3 will work */
color: transparent;
opacity: 0;
visibility: hidden; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css input.masked,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shell span{
font-size: 16px;
font-family: monospace;
padding-right: 10px;
background-color: transparent;
text-transform: uppercase; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-loader{
position: absolute;
top: 50%;
left: 50%;
width:30px;
height:30px;
border: 3px solid rgba(255,255,255,0.3);
border-top: 3px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
transform: translate(-60%, -50%);
display: none;
}

@keyframes spin{
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-payer{
position: relative;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-payer:disabled{
opacity: 0.8;
cursor: not-allowed;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lab-ja{background: #fdffce;
padding: 3px;
font-size: 1em;
line-height: 31px;
height: 35px;
margin-top: 4px;
margin-left: 10px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-home-1{color:#333;background: rgb(255,255,255, 0.8);display: flex;flex-direction: column;padding:20px;margin-bottom: 10px;width:100%;text-align:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .one1{font-size:19px !important;text-transform: uppercase;margin-bottom: 10px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .second1{font-size:24px !important;color:#333;text-align:center;margin-bottom: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-filter{
position:fixed;right:15px;top:0px;z-index:99999;background: #fff;width:29%;visibility: hidden;
display: flex !important;align-items:center ;justify-content: space-between;padding-top:20px;text-align: left;margin-bottom: 30px;padding-left:60px;border-bottom: 1px solid rgb(85,85,85);padding-bottom: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .title-filter p{font-size:18px;font-family:var(--font-family-regular),sans-serif;font-weight: 900;display: block !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .display-no{
display: block !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contente,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contentee{
display:none;
margin-top:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .desc{
opacity:.8;
}

/* Cartes */

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tab-icon,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tab-icone{
font-size:22px;
transition:.3s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tab,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tabe{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px 15px 2px;
background: transparent;
border-bottom: 1px dashed #ccc;
color: #000;
cursor: pointer;
width: 100%; margin-top:0px;
}

/* Titre */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tab-title{
font-size: 16px;
font-weight: bold;
letter-spacing: 0.5px;
text-transform: uppercase;
}

/* Bouton + */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tab-plus{
font-size: 20px;
font-weight: bold;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .label-card{font-size: 15px;
font-weight: 700;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phot{display: -ms-grid;
display: grid;
height: 100%;
grid-gap:.5rem;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-right-inner{
position: sticky;
top: 100px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .text-offer{background: #fdffce;
padding: 5px;font-size:16px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .color-item{
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;padding:1px;border:1px solid #eee;cursor:pointer;
;border-radius: 50%;display: flex;align-items: center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .color-item img{
width:100%;
height:100%;
border-radius: 50%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .color-item.active{
border: 2px solid #ccc;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .filter-bar{
position: fixed;
top: 0;
left:0;
right:0;
background: white;
padding:12px 0 !important;
z-index: 99;
margin-bottom: 0px !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
width:100% !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bar-left{display: none;flex-direction: row;align-items: flex-end;justify-content: space-between;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .top-menu{
display: flex;
gap: 30px;
padding: 20px;
border-bottom: 1px solid #eee;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-link{
text-decoration: none;
color: #000;
font-weight: 500;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-link.active{
border-bottom: 2px solid #000;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-content{
background: #fff;
padding: 0px 40px;
position: absolute;
top: 70px;
left: 0;
width: 100%;
display: none;
z-index:99999;
height:357px;
align-items: center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-content.showe{
display: flex;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel{
display: none;
width: 1200px;
margin: auto;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel.active{
display: flex;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel h2{
font-size: 32px;
margin-bottom: 10px;
font-family: 'Oswald-Bold';
line-height: 40px;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-mesure2{border:none !important;box-shadow: none !important;    display: flex;
flex-direction: column;
align-items: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-1{text-align: left;
width: 100%;
padding: 0px 20px;
display: flex;
align-items: center;font-size:16px;font-weight: normal;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-rose-1:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-mesure-1{display: flex;flex-direction: column;width:30%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-mesure-2{display: flex;flex-direction: row;width:70%;gap:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel span{
font-weight: 700;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel p{line-height: 20px;font-size: 16px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel ul{
margin-top: 20px;
columns: 2;
list-style: none;
padding: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel li{
margin-bottom: 10px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fixed-menu{
background-color: #fff;
box-shadow: #ccc 0 2px 15px;
position: fixed !important;
top:0px;
left: 0;
width: 100%;
z-index: 1030;
-webkit-transition: max-height 0s;
-moz-transition: max-height 0s;
transition: max-height 0s;
}
/* ----- Hover zoom ----- */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-image-zoom{
overflow: hidden;
cursor: pointer;
position: relative;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-image-zoom img{
width: 100%;
transition: transform 0.4s ease;
}



/* ----- Popup fullscreen ----- */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .zoom-popup{
position: fixed;
inset: 0;
background: #fff;
z-index: 9999;
display: none;
overflow-y: auto;
cursor: zoom-out;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .zoom-popup.active{
display: block;
}

/* Images vertical scroll */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup-content{
display: flex;
flex-direction: column;
align-items: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup-content img{
width: 100%;
max-width: 900px;
margin-bottom: 30px;
}
/* icône zoom */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .zoom-icon{
position: absolute;
top: 15px;
right: 15px;
width: 35px;
height: 35px;
border-radius: 50%;
background: #fff;
border: none;
box-shadow: 0 2px 10px rgba(0,0,0,.15);
cursor: pointer;
opacity: 0;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 14px rgba(0,0,0,0.12);
pointer-events: auto;
transform: scale(0.85);
transition: all .25s ease;
font-size: 18px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .zoom-icon-mobile{
position: absolute;
top: 15px;
left: 15px;
width: 35px;
height: 35px;
border-radius: 50%;
background: #fff;
border: none;
box-shadow: 0 2px 10px rgba(0,0,0,.15);
cursor: pointer;
opacity: 1;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 14px rgba(0,0,0,0.12);
pointer-events: auto;
transform: scale(0.85);
transition: all .25s ease;
font-size: 18px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-image-zoome{position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-buttons{
display: flex;
align-items: center;
justify-content: center;
margin-bottom:20px;
margin-top:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-button{
color: rgba(50,50,50, .75);
background: transparent;
border: none;
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .svg-wrapper{
display: inline-flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-button--prev .icon{
transform: rotate(90deg);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-button .icon{
height: .6rem;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-button--next .icon{
transform: rotate(-90deg);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-counter{
display: flex;
justify-content: center;
min-width: 4.4rem;
font-size:13px;
}

/* hover desktop */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-image-zoom:hover .zoom-icon{
opacity: 1;
transform: scale(1);
}
/* Close button */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .close-popup{
position: fixed;
top: 15px;
right: 20px;
background: none;
border: none;
font-size: 28px;
cursor: pointer;
z-index: 10;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #close-sidebar{font-size:20px}

/* Mobile */
@media (max-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .popup-content img{
max-width: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .icon-user,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .p-greeting{color:#000 !important}

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-mobile{width:100%;position: relative;display: block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-gallery{position: relative;
flex-wrap: inherit;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
scroll-padding-left: 1.5rem;
-webkit-overflow-scrolling: touch;
margin-bottom: 1rem;list-style: none;
display: flex;
flex-direction: row;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: 10px;
row-gap: 10px;width:100%;margin:0}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-slider{width: calc(100% - 3rem - 4px);max-width: 100%;display: flex;    scroll-snap-align: start;
align-items: center;flex-grow: 1;
flex-shrink: 0;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #catalogue a:hover{text-decoration: underline;color:#555}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-panel li a{color:#555;font-size:15px}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-dots{
display: flex;
justify-content: center;
gap: 8px;
margin-top: 12px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-dots button{
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: #ccc;
cursor: pointer;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .slider-dots button.active{
background: #000;
transform: scale(1.2);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .flag{display: flex;
align-items: center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hidden-color{
display: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .more-colors a:hover{text-decoration: none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .color-label{color:#757575;font-size:15px;margin-bottom: 0px;line-height: 19px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .frere{display:flex;flex-direction: column;width:100%;gap:15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-home{width:100%;margin-top:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .catalogue-home .row{margin-left:0px;margin-right:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #filterbartop{
position: fixed;
top: 0;
left: 0;
width: 100%;
transform: translateY(-100%);
opacity: 0;
transition: transform 0.35s ease, opacity 0.3s ease;
z-index: 999;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #filterbartop.show{
transform: translateY(0);
opacity: 1;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header{
transition: opacity 0.3s ease, transform 0.3s ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #header.is-hidden{
opacity: 0;
transform: translateY(-20px);
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper{
display: flex;
justify-content: space-between;
align-items: center;
border:none;
border-radius: 12px;
padding:0px;
transition: 0.3s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-wrapper.error{
border-color: red;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actions{
display: flex;
align-items: center;
gap: 15px;
position: absolute;
right:5%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-icon{
width: 22px;
height: 22px;
border: 2px solid red;
color: red;
border-radius: 50%;
text-align: center;
font-weight: bold;
line-height: 18px;
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti{
width: 100%;
position: relative;
top:0 !important;
left:0 !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti__country-list{
top: 0 !important;   /* place la liste sous l'input */
left: 0 !important;
width: 100%;
position: relative !important;
max-height: 450px;
overflow-y: auto;
z-index: 9999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti__selected-country{
border-right:1px solid #eee;
padding-right: 15px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti-mobile .iti--container{
top: 50px !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
position: absolute !important;
height: 500px;
z-index: 999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #toggleBtn{border:none;background: transparent;font-weight: bold;display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-text{
color: red;
margin-top: 8px;
display: none;
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rules{
display: flex;
gap: 15px;
margin-top: 30px;
font-size: 14px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rules div{
color: gray;
transition: 0.3s;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .rules div.valid{
color: green;
font-weight: 600;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .wrapper-register{margin-left: auto; margin-right: auto;margin-bottom:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .bloc-register{    display: flex;
flex-direction: column;
align-items: center;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #navbar{
border-bottom: 2px solid #f1f1f1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 a{
font-weight: 900;
font-family: var(--font-family-regular);
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 a::after{
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu2 li img{
height: 10px;
margin-left: 8px;
}
/****************************livraison********************************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-wrapper{
position:relative;
width:100%;
margin-top:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions{
position:absolute;
top:78px; /* ajuster selon besoin */
left:0;
width:100%;
background:#fff;
border:1px solid #d9d9d9;
border-radius:0px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
list-style:none;
padding:0;
margin:0;
z-index:9999;
overflow:hidden;
display:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions1{
position:absolute;
top:70px; /* ajuster selon besoin */
left:0;
width:100%;
background:#fff;
border:1px solid #d9d9d9;
border-radius:0px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
list-style:none;
padding:0;
margin:0;
z-index:9999;
overflow:hidden;
display:none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions1::before{
content:"SUGGESTIONS";
display:block;
padding:18px 18px 10px;
font-size:13px;
color:#7a7a7a;
font-weight:500;
letter-spacing:.5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions1 li{
padding:14px 18px;
cursor:pointer;
font-size:16px;
line-height:1.4;
color:#666;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions li:hover,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions1 li:hover{
background:#f5f5f5;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions li strong,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #suggestions1 li strong{
color:#111;
font-weight:700;
font-size:16px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #closeSuggestions,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #closeSuggestions1{
position:absolute;
top:12px;
right:16px;
cursor:pointer;
font-size:22px;
color:#777;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .search-icon{
position: absolute;
right: 16px;
bottom: 16px;
width: 20px;
height: 20px;
color: #64748b;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .manual-divider{
display: flex;
align-items: center;
gap: 12px;
margin: 20px 0 12px;
color: #64748b;
font-size: 14px;
font-weight: 700;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .manual-divider::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .manual-divider::after{
content: "";
flex: 1;
height: 1px;
background: #edf0f3;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .manual-link{
color: #006b4f;
font-size: 16px;
font-weight: 850;
text-decoration: underline;
text-underline-offset: 3px;
border:none;
background: transparent;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-container{
text-align: left;
margin: 30px 0px 0px 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti__search-input{padding:15px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-containere{
text-align: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-container h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .methode-small h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #bloc-adress h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-containere h2{    line-height: 30px;
font-family: var(--font-family-oswald);
font-weight: bold;
text-shadow: none;
font-size: 20px;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-box{
height: 56px;
display: flex;
align-items: center;
width: min(100%, 520px);
padding: 0 18px;
border: 1px solid #dbe2e8;
border-radius: 12px;
background: #ffffff;
color: #111827;
font-size: 16px;
font-weight: 600;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .section{
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid #edf0f3;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .section-title-1{
margin: 0 0 18px;
color: #18202b;
font-weight: 900;
letter-spacing: 0;
line-height: 30px;
font-family: var(--font-family-oswald);
font-weight: bold;
text-shadow: none;
font-size: 20px;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-box img{
width: 20px;
    height: 15px;
    display: block;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery-types{
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1 span{
display: block;
margin-top: 12px;
color: #18202b;
font-size: 26px;
font-weight: 900;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1 strong{
display: block;
color: #111827;
font-size: 17px;
line-height: 1.2;
font-weight: 850;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1{
position: relative;
padding: 22px;
border: 1px solid #d9e0e7;
border-radius: 15px;
background: #ffffff;
text-align: center;
cursor: pointer;
transition: border-color 180ms ease, box-shadow 180ms ease, transform 150ms ease, background 180ms ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1 p{margin-bottom: 15px;  font-family: var(--font-family-oswald);
font-weight: bold; }    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1 img{height:50px;width:auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1.active{
border-color: #006b4f;
background: #fbfffd;
box-shadow: 0 0 0 3px rgba(0, 107, 79, 0.12);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery1.active::after{
content: "✓";
position: absolute;
top: 6px;
right: 6px;
width: 24px;
height: 24px;
display: grid;
place-items: center;
border-radius: 999px;
background: #006b4f;
color: white;
font-size: 14px;
font-weight: 900;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-box{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
margin: 0px 0px 50px 0px;
padding: 50px;
background: #f9f9f9;
max-width:600px ;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix{display: flex;align-items: center;gap:10px;margin:0px 0;justify-content:flex-start;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix h2{  font-family: var(--font-family-oswald);
font-weight: bold; color:#000;   font-size: 20px !important;text-transform: uppercase;}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-box h2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix h2{  font-family: var(--font-family-oswald);
font-weight: bold;    font-size: 20px !important;text-transform: uppercase;margin-bottom: 20px}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-box input{
border: 1px solid #ccc;
width: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .toast-msg{
position: relative;
top: 20px;
right: 20px;
background: #28a745;
color: #fff;
padding: 12px 20px;
border-radius: 4px;
display: none;
z-index: 9999;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a{height:100%;float: none;display: flex;flex-direction: column;align-items: flex-start;
justify-content: flex-start;gap:20px;margin-bottom: 0px;width: 100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a div{width:100%;text-align: left}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a input{ max-width:100%; padding: 0px 10px; border:1px solid #e6e6e6; height:60px;
padding:20px 50px 10px 16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a ul{display:none;text-align:left; list-style: none;     padding: 10px;
border: 1px solid #ccc;
max-width: 100%;
border-radius: 5px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a li{ padding: 5px; cursor: pointer; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a li:hover{ background: #f0f0f0; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .adress-a a{color:#2f6d4f;text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-container{
position: relative;
width: 400px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-container input{
width: 100%;
padding: 12px;
font-size: 14px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fake-placeholder{
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
color: #999;
pointer-events: none;
font-size: 14px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .fake-placeholder strong{
font-weight: bold;
color: #000;
font-weight: 600 !important;
font-size: 16px !important;
}

/* cacher le placeholder quand on écrit */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-container input:focus + .fake-placeholder,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .input-container input:not(:placeholder-shown) + .fake-placeholder{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .choix h2{text-align: left;margin-bottom:0px }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-card{
display: flex;
gap: 15px;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
/*max-width: 500px;*/
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-map img{
width: 120px;
height: 100px;
object-fit: cover;
border-radius: 6px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info{
flex: 1;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info h3{
margin: 0;
font-size: 16px;
font-weight: bold;
text-align: left !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info p{
margin: 3px 0;
font-size: 14px;
color: #444;
text-align: left !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-hours{
margin-top: 10px;
text-align:left !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-hours p{
margin: 2px 0;
font-size: 13px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-edit{
display: inline-block;
margin-top: 10px;
font-size: 13px;
color: #000;
text-decoration: none;
font-weight: bold;
background: transparent;
border:none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-edit:hover{
text-decoration: underline;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-card{
display: flex;
gap: 35px;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-map img{
width: 120px;
height: 100px;
object-fit: cover;
border-radius: 6px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info{
flex: 1;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info h3{
margin: 15px 0;
font-size: 16px;
font-weight: bold;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-info p{
margin: 10px 0;
line-height: 20px;
font-size: 14px;
color: #444;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-hours{
margin-top: 10px;
text-align:left !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-hours p{
margin: 2px 0;
font-size: 13px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-edit{
display: inline-block;
margin-top: 10px;
font-size: 13px;
color: #000;
text-decoration: none;
font-weight: bold;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .relay-edit:hover{
text-decoration: underline;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css *{
margin:0;
padding:0;
box-sizing:border-box;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-container{
width:100%;
max-width:1200px;
margin:auto;
padding:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-tabs{
display:flex;
justify-content:space-between;
border-bottom:1px solid #bbb;
margin-bottom:10px;
flex-wrap:wrap;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tabs{
padding:12px 10px;
font-size:16px;
cursor:pointer;
position:relative;
color:#222;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tabs.active{font-weight: bold}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tabs.active::after{
content:"";
position:absolute;
left:0;
bottom:-1px;
width:100%;
height:3px;
background:#0b7a5c;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-box{
width:100%;
max-width:500px;
margin:auto;
text-align:center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-mor_1{max-width: 600px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .subtitle_1{
    font-size: 16px;
    color: #444;
    line-height: 24px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-box h1{
font-size:38px;
font-weight:700;
margin-bottom: 20px;
text-align: center;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-button{
margin-top:40px;
text-align:center;
max-width: 400px;
margin:0 auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .boxes{max-width: 100% !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .subtitle{
margin-bottom:50px;
font-size:16px;
color:#444;
line-height: 24px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .unit-switch{
display: inline-flex;
align-items: center;
padding: 4px;
gap: 2px;
border: 1px solid #d7dde8;
border-radius: 999px;
background: #f6f8fb;
box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
margin-left:auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css select.select-placeholder{
color: #9ca3af !important;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css select{
color: #111827;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .step-title{
margin: 0;
font-size: 28px;
line-height: 30px;
font-weight: 700;
color: #111827;
font-family: var(--font-family-oswald);text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item h4{
	font-size:20px;
	margin:15px 0;
	font-family: var(--font-family-oswald);
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css select option{
color: #111827;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .continue-btn{
width: 100%;
height: 56px;
border: none;
border-radius: 0px;
background: #005539;
text-transform: uppercase;
color: white;
font-size: 1em;
font-weight: 300;
cursor: pointer;
transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .continue-btn:hover{
background: #1a6a4b;
text-decoration: underline;
box-shadow: 0 12px 24px rgba(0, 107, 79, 0.24);
transform: translateY(-1px);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .continue-btn:active{
transform: translateY(0);
box-shadow: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .unit-option{
min-width: 54px;
height: 34px;
border: 0;
border-radius: 999px;
background: transparent;
color: #64748b;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .unit-option:hover{
color: #0f172a;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .unit-option.active{
background: #ffffff;
color: #111827;
box-shadow: 0 3px 10px rgba(15, 23, 42, 0.12);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .unit-switch[data-unit="inch"]::before{
transform: translateX(100%);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .parent-switch{ display: flex;
align-items: center;
width: 100%;margin-bottom: 20px;justify-content: flex-end;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-group{
margin-bottom:25px;
text-align:left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-group label{
display:block;
margin-bottom:8px;
font-size:14px;
font-weight:600;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-group input{
width:100%;
border:none;
border-bottom:1px solid #777;
background:transparent;
padding:10px 0;
font-size:15px;
outline:none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-group input::placeholder{
color:#aaa;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-continue{
margin-top:40px;
width:100%;
border:none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-continue:hover{
opacity:.9;
}

@media(max-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #form_compte{padding-top:70px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-tabs{
gap:10px;
justify-content:center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tabs{
font-size:11px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-box h1{
font-size:28px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-continue{
font-size:22px;
}

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .body-shapes{
display: flex;
justify-content: center;
gap: 18px;
margin-top: 28px;
flex-wrap: wrap;
margin-top: 50px;
margin-bottom: 30px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item{
width: 180px;
position: relative;
min-height: 230px;
padding: 14px 12px 16px;
border: none;
border-radius: 14px;
background: #ffffff;
cursor: pointer;
text-align: center;
transition:
border-color 0.2s ease,
box-shadow 0.2s ease,
transform 0.15s ease,
background 0.2s ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item:hover{
	border:1px solid;
border-color: #006b4f;
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
transform: translateY(-1px);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item.active{
border-color: #006b4f;
background: #fbfffd;
box-shadow:
0 0 0 3px rgba(0, 107, 79, 0.12),
0 12px 26px rgba(15, 23, 42, 0.08);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item.active::after{
content: "✓";
position: absolute;
top: 10px;
right: 10px;
width: 24px;
height: 24px;
border-radius: 999px;
background: #006b4f;
color: #ffffff;
display: grid;
place-items: center;
font-size: 14px;
font-weight: 800;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item img{
display: block;
width: 100%;
max-width: 150px;
height: 250px;
margin: 0 auto 14px;
object-fit: cover;
object-position: top center;
background: #f2f4f5;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .shape-item p{
margin: 10px 0;
color: #B9B9B2;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 300;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .btn-result{
margin-top:40px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-message{
  display: none;
  align-items: flex-start;
  gap: 7px;
  margin-top: 7px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .error-message::before{
  content: "!";
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: #fee4e2;
  color: #b42318;
  font-size: 11px;
  font-weight: 900;
  display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .has-error.error-message{display: flex}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .has-error.error-message::before{display: grid;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css input.error{
border:1px solid #dc2626 !important;
background-color: #fef2f2 !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .loader-overlay{
position: fixed;
inset: 0;
background: rgba(255,255,255,0.95);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
padding:0px 50px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .loader-overlay h2{text-align: center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .spinner{
width: 50px;
height: 50px;
border: 5px solid #ddd;
border-top: 5px solid #000;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .loader-text{
margin-top: 15px;
font-size: 14px;
color: #333;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-content{
display:flex;
gap:40px;
align-items:flex-start;
flex-wrap:wrap;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-left{
flex:1;
display:flex;
gap:20px;
justify-content:center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-svg{
width:300px;
border: 1px solid #e1e5ea;
border-radius: 14px;
background: #ffffff;
padding: 22px;
box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-svg svg{
width:100%;
height:auto;
display: block;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-right{
width:450px;
text-align: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-profile{
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border-radius: 999px;
background: #eaf7ef;
color: #005f46;
font-size: 15px;
font-weight: 700;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-points h3{
margin-bottom:20px;
font-size:18px;
font-weight: bold;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .key-points{
margin-top: 28px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .key-points h2{
margin: 0 0 18px;
font-size: 20px;
font-weight: 750;
    font-family: var(--font-family-h);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .key-point{
display: flex;
gap: 12px;
align-items: flex-start;
margin-bottom: 18px;
font-size: 16px;
line-height: 1.45;
    font-family: var(--font-family-regular);
    font-weight: 100;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .key-point::before{
content: "✓";
flex: 0 0 24px;
width: 24px;
height: 24px;
border-radius: 999px;
display: grid;
place-items: center;
/*background: #eaf7ef;*/
color: #006b4f;
font-weight: 800;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .retry-note{
margin-bottom: 12px;
padding: 18px 20px;
border-radius: 14px;
font-size: 17px;
font-weight: 650;
line-height: 1.4;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .retry-note strong{
display: block;
color: #111827;
font-size: 19px;
line-height: 1.35;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .retry-note p{
margin: 8px 0 0;
color: #5c6470;
font-size: 15px;
line-height: 1.45;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secondary-btn:hover{
background: #f0faf5;
transform: translateY(-1px);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secondary-btn{
margin-top: 16px;
height: 46px;
padding: 0 18px;
border: 1px solid #006b4f;
border-radius: 10px;
background: #ffffff;
text-transform: uppercase;
color: #006b4f;
font-size: 15px;
font-weight: 750;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-points ul{
list-style:none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-points li{
margin-bottom:16px;
display:flex;
align-items:flex-start;
gap:10px;
line-height:1.4;
font-size:16px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .check{
color:#0a9c5a;
font-weight:bold;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-warning{
margin-top:35px;
font-weight:bold;
font-size:18px;
line-height:1.4;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-button{
margin-top:40px;
text-align:center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-button button{
background:#0f8b6d;
color:#fff;
border:none;
padding:18px 45px;
font-size:18px;
cursor:pointer;
transition:0.3s;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-button button:hover{
background:#0b6d56;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-footer{
margin-top:25px;
text-align:center;
font-weight:bold;
font-size:18px;
line-height: 25px;
}

@media(max-width:900px){

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-content{
flex-direction:column;
align-items:center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-right{
width:100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-left{
flex-direction:column;
align-items:center;
}

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #country-select{
flex: 1;
width:100%;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background: transparent;
border: none;
outline: none;
font-size: 14px;
font-weight: 500;
color: #222;
padding:0px 28px 0px 8px;
cursor: pointer;
 line-height: 56px;
/* petite flèche custom */
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
background-size: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select2-container--default .select2-selection--single{background: transparent !important;border:none !important
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select2-container--default .select2-selection--single .select2-selection__clear{display: none}
/******** panneau latéral**********************/

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar.open,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar-form.open{
right: 0;
display: block;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar-header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border-bottom: 1px solid #ddd;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar-content{
height: calc(100vh - 60px);
overflow-y: auto;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #closeRelay{
background: none;
border: none;
font-size: 24px;
cursor: pointer;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #overlay{
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
display: none;
z-index: 9998;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #overlay.open{
display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .body{
background: #fff; /* gris clair global */
margin: 0;padding:0px;
}

/* CONTENEUR GLOBAL = CARTE UNIQUE */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout{
display: flex;
margin: 0px auto;
border-radius: 0px;
background: #fff;
position: relative;
width:100%;
min-height: 100vh;
justify-content: center;
}
/*.righte::after{
content:"";
position:absolute;
top:0;
left:100%;
right: -100vw;
height:100%;
background:#FAF9F7;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .measurements{
margin-top: 24px;
padding-bottom: 24px;
border-bottom: 1px solid #ccc;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .list-mesures li{
padding: 10px 11px;
border-radius: 11px;
background: #fff;
border: 1px solid #edf1f3;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .list-mesures li strong{
display: block;
color: #374151;
font-size: 11px;
line-height: 1.1;
font-weight: 850;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .list-mesures li span{
display: block;
margin-top: 5px;
color: #111827;
font-size: 14px;
font-weight: 650;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .toast{
position: fixed;
bottom: 20px;
right: 20px;
background: #28a745;
color: #fff;
padding: 12px 18px;
border-radius: 8px;
font-size: 14px;
opacity: 0;
transform: translateY(20px);
transition: 0.3s ease;
z-index: 99999;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .toast.show{
opacity: 1;
transform: translateY(0);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .summary-subtitle{
margin: 0 0 14px;
color: #18202b;
font-size: 18px;
font-weight: 900;
text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .products{
display: flex;
gap: 10px;
flex-wrap: wrap;
align-items: center;
margin-top: 0px;
padding-bottom: 24px;
border-bottom: 1px solid #ccc;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product{
position: relative;
width: 60px;
height:100%;
place-items: center;
border: 1px solid #e2e7ec;
border-radius: 14px;
background: #fff;
padding:5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product img{
width: 100%;
height: auto;
margin:0 auto;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .qty{
position: absolute;
bottom: -5px;
right: -5px;
background: green;
color: white;
font-size: 12px;
width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #btn-relais{width:600px;margin:0 !important}
/* Section principale */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-section{
display: flex;
align-items: center;
justify-content:flex-start;
gap: 100px;
flex-wrap: wrap;
}

/* Vidéos */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel{
display: flex;
gap: 15px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel video{
width: 220px;
height: 450px;
object-fit: cover;
border-radius: 0px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
pointer-events: auto;
}



/* Texte */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text{
max-width: 500px;
text-align: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text h3{
font-size: 22px;
margin-bottom: 10px;
color: #111;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text p{
font-size: 16px;
color: #000;
line-height: 1.6;
margin-bottom: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text ul{
padding-left: 20px;
list-style-type: disc;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .section-title{display: block;text-align: center;font-family: var(--font-family-oswald);
font-weight: bold;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-video{ width: 100%;
height: auto;
display: block;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text li{
margin-bottom: 5px;
}
@media (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar{
display: none;
position: fixed;
top: 0;
right: -825px; /* caché */
width: 825px;
max-width: 90%;
height: 100vh;
background: #fff;
z-index: 9999;
transition: right 0.3s ease;
box-shadow: -4px 0 15px rgba(0,0,0,0.15);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar-form{
display: none;
position: fixed;
top: 0;
right: -600px; /* caché */
width: 600px;
height: 100vh;
overflow-y:auto;
background: #fff;
z-index: 9999;
transition: right 0.3s ease;
box-shadow: -4px 0 15px rgba(0,0,0,0.15);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut{
max-width: 30%;
margin: 40px auto 0 auto;
}
/* LEFT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lefte{
flex: 1;
background: #ffffff;
position: relative;
display: flex;
justify-content: flex-end;
}

/* RIGHT (paiement) */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .righte{
width:480px;
background: #FAF9F7; /* gris un peu plus foncé */
padding:40px;
position:sticky;
border-left: 1px solid #eee9df;
height:100vh;
top:0px;
  align-self: start;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-left{height: 100%;
    width: 100%;
    max-width: 580px;
    padding: 10px 40px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel{gap:15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .section-title{font-size: 30px;line-height: 35px;margin:30px 0px 70px 0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-recap{    display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin-bottom: 44px;}
}
/* Responsive */
@media (max-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-shell{
    grid-template-columns: 1fr;
    width: 100%;
  }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-tabs{margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .list-mesures{
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap:5px;;
text-align: left;list-style: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .sidebar-form{
display: none;
position: fixed;
top: 0;
right: -100%; /* caché */
width: 100%;
max-width: 100%;
height: 100%;
background: #fff;
overflow-y: auto;
z-index: 9999;
transition: right 0.3s ease;
box-shadow: -4px 0 15px rgba(0,0,0,0.15);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .righte::after{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel{gap:13px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .section-title{font-size: 24px;line-height: 25px;margin:30px 0px 30px 0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-section{
flex-direction: column;
text-align: center;
gap:50px;
}
/* LEFT */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .lefte{
flex: 1;
background: #ffffff;
padding: 10px 15px;
position: relative;
width:100%;
}

/* RIGHT (paiement) */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .righte{
width:100%;
background: #F5F5F5; /* gris un peu plus foncé */
padding: 20px 15px;
position:relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout{flex-direction: column;width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .logo-pad{padding:10px 0 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-recap{display: flex;align-items: flex-start;gap:0px;margin-bottom: 20px;flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut{
max-width: 100%;
margin: 20px auto 0 auto;
padding:10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-text{
text-align: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel video{
width: 31%;
height: 250px;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel1{
position: relative;
display: flex;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel1 video{
width: 220px;
height: 450px;
object-fit: cover;
transition: opacity 0.6s ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel1 video:first-child{
opacity: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .video-carousel1 video{
width: 220px;
height: 450px;
object-fit: cover;
border-radius: 0px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut-intro{
margin-bottom: 30px;
line-height: 1.4;
color: #333;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut-item{
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 30px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut-item img{
width: 50px;
min-width: 50px;
height: auto;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartcut-item span{
color: #333;
font-size: 18px;
line-height: 1.4;
text-align:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-but{margin: 0px auto;
display: flex;
align-items: center;
justify-content: center;
max-width: 500px;
padding: 30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .disabled{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .leaflet-bottom{display: none!important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #cherche_nouveau{border:none;background:transparent;text-decoration: underline;color:#005539}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total_div{display: flex;flex-direction: column;align-items: flex-end;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #total_ttc{font-size: 24px;font-weight: 700}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #customButton{text-align:center;margin-left:auto; margin-right: auto;padding:0px 40px !important;margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .soustotal{font-size:16px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-wraper{
position: relative;
width: 100%;
}

/*.select-wraper select {
width: 100%;
border: none;
border-bottom: 1px solid #777;
background: transparent;
font-size: 15px;
color: #999;
padding: 10px 30px 10px 0;
outline: none;

-webkit-appearance: none;
-moz-appearance: none;
appearance: none;

cursor: pointer;
}

.select-wraper::after {
content: "▾";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
color: #777;
font-size: 24px;
pointer-events: none;
}*/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group{
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-start;
margin:10px 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group label{
font-size: 14px;
font-weight: 600;
color: #374151;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group select{
width: 100%;
height: 52px;
padding: 0 44px 0 16px;
border: 1px solid #cfd5df;
border-radius: 6px;
background-color: #ffffff;
color: #111827;
font-size: 16px;
line-height: 1;
cursor: pointer;
appearance: none;
background-image:
linear-gradient(45deg, transparent 50%, #4b5563 50%),
linear-gradient(135deg, #4b5563 50%, transparent 50%);
background-position:
calc(100% - 22px) 22px,
calc(100% - 16px) 22px;
background-size: 6px 6px, 6px 6px;
background-repeat: no-repeat;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group input{
width: 100%;
height: 56px;
padding: 0 44px 0 16px;
border: 1px solid #cfd5df;
border-radius: 12px;
background-color: #ffffff;
color: #111827;
font-size: 16px;
line-height: 1;
cursor: pointer;
appearance: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group select:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .select-group input:focus{
outline: none;
border-color: #111827;
box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

@media (max-width: 640px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mens-measure-block{
min-height: 100vh;
padding: 0;
background: #ffffff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mens-measure-card{
width: 100%;
min-height: 100vh;
height: auto;
border: none;
border-radius: 0;
padding: 32px 20px;
justify-content: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mens-measure-card h2{
font-size: 24px;
}
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse{
display: flex;
gap: 12px;
max-width: 500px;
width:100%;
flex-wrap: wrap;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse form{
flex: 1 1 180px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse .secondary-btn{
flex: 1 1 180px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse .continue-btn,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .actionse .secondary-btn{
width: 100%;
height: 56px;
border-radius: 0px;
font-size: 15px;
font-weight: 300;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-steps{
display: flex;
align-items: center;
gap: 12px;
color: #111827;
font-weight: 700;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .old-price{
  color: #64748b;
  font-size: 18px;
  font-weight: 600;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .save-money{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7ef;
  color: #006b4f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe1{
display: inline-flex;
align-items: center;
gap: 8px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe1::before{
content: "";
width: 9px;
height: 9px;
border-radius: 999px;
background: #cbd5e1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe1.active{
color: #006b4f;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe1.active::before{
background: #006b4f;
box-shadow: 0 0 0 4px rgba(0, 107, 79, 0.12);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .step-line{
width: 64px;
height: 2px;
background: #d9dee5;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .stepe1.active{
color: #006b4f;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-card{
max-width: 520px;
padding: 20px;
border: 1px solid #e3e8ee;
border-radius: 14px;
background: #fbfcfd;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-link{
display: inline-flex;
margin-top: 18px;
color: #006b4f;
font-size: 16px;
font-weight: 800;
text-decoration: underline;
text-underline-offset: 3px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total{
margin-top: 8px;
padding-top: 8px;
border-top: 1px solid #ccc;
color: #111827;
font-size: 26px !important;
font-weight: 900;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .payment{margin-top:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-btn{
width: 100%;
height: 56px;
margin-top: 28px;
border: 0;
border-radius:0px;
background: #005539;
color: #ffffff;
font: inherit;
font-size: 1em;
font-weight: 300;
cursor: pointer;
transition: background 180ms ease, box-shadow 180ms ease, transform 150ms ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-btn:hover{
background: #1a6a4b;
color:#fff;
text-decoration: underline;
box-shadow: 0 12px 24px rgba(0, 107, 79, 0.24);
transform: translateY(-1px);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-btn small{
display: block;
margin-top: 2px;
font-size: 13px;
font-weight: 650;
opacity: 0.92;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field{
position: relative;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field label{
display: block;
margin-bottom: 0px;
color: #334155;
font-size: 14px;
font-weight: 800;
position: relative !important;
text-align: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field input{
width: 100%;
padding: 0 48px 0 16px;
color: #111827;
font: inherit;
font-size: 15px;
outline: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field input::placeholder,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-input input::placeholder{
color: #9ca3af;
}
  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field input,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-input{
        height: 56px;
        border: 1px solid #dbe2e8;
        border-radius: 12px;
        background: #ffffff;
        transition: border-color 180ms ease, box-shadow 180ms ease;
      }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-field input:focus{
border-color: #111827;
box-shadow: 0 0 0 3px rgba(0, 107, 79, 0.12);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-card{
        width: 100%;
        margin:10px  0;
        text-align: left;
      }

      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-card h3{
        margin: 0;
        color: #111827;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 900;
        text-transform: uppercase;
        font-family: var(--font-family-oswald);
      }

      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-card p{
        margin: 12px 0 18px;
        color: #5f6b7a;
        font-size: 14px;
        font-weight: 600;
      }

      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-input{
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #ffffff;
      }

      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-prefix{
        height: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 14px;
        border-right: 1px solid #e4e8ee;
        background: #f8faf9;
        color: #111827;
        font-size: 14px;
        font-weight: 800;
      }

      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-card input{
         border: 1px solid #dbe2e8;
    border-radius: 12px;
    height: 56px;
      }

      @media (max-width: 560px){
        .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-card{ padding: 22px; }

      }
      .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-note{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0px auto;
  padding: 0px 16px;
  justify-content: center;


  max-width: 500px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .note-icon{
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;

  color: #B9B9B2;
  font-size: 13px;
  font-weight: 800;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-note p{
  margin: 0;
   color: #B9B9B2;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 300;
}
/*************************recap page*************************************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-preview{
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  place-items: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-carde{
display: flex;
align-items: center;
justify-content: space-between;
width:100%;
margin-bottom:15px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-carde span{    text-transform: uppercase;
    font-family: var(--font-family-oswald);
    color: #555;}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header h1{
  margin: 0;
  color: #10251b;
  font-size: 44px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header span{
  margin-top: 12px;
  color: #7b7b73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-list{
  border-top: 1px solid #e8e4dc;
  width:100%;
  max-height:250px;
  overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .scroll-btn{
opacity: 0.8;
  position: absolute;
  bottom:0px;
  font-size:14px;
  transform: translateX(-50%);
  padding: 10px 18px;
  border-radius: 24px;
  border: none;
  background: #666;
  color: white;
  cursor: pointer;
  width:270px;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #scrollBtn.hide{
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    pointer-events: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item{
  display: grid;
grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e8e4dc;
  font-family: var(--font-family-oswald);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item > *{
    min-width: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item-info{
    min-width: 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item-title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-thumb{
  position: relative;
  width: 48px;
  height: 64px;
  overflow: visible;
  background: #f2f2ee;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-info h3{
  margin: 0 0 4px;
  color: #161d19;
  font-size: 16px;
  font-weight: 500;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-info{display: flex;align-items: flex-start;justify-content: space-between;gap:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-info p{
  margin: 0;
  color: #686b65;
  font-size: 14px;
  margin-top:10px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item > strong{
  color: #111914;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-options{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin:10px 0;
  width:100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-box{
  min-height: 76px;
  padding: 14px;
  border: 1px solid #e3dfd6;
  border-radius: 0px;
  background: #fff;
  font-family: var(--font-family-oswald);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:20px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-icon{
  display: block;
  margin-bottom: 0px;
  color: #1f6a46;
  font-size: 18px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-icon img{width:70px;height:auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-box strong{
  display: block;
  color: #172019;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  font-family: var(--font-family-oswald);
  text-transform: capitalize;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .option-box p{
  margin: 0 0 4px;
  color: #7b7b73;
  font-size: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contentx{display: flex;flex-direction: column;gap:10px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contentx p{
    font-size:15px;
    color:#5f6368;
    display:flex;
    align-items:center;
    gap:6px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .contentx p::before{
    content:"✓";
    color:#22c55e;
    font-weight:bold;
    font-size:18px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-lines{
  margin-top: 10px;
  width:100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-lines div{
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #77776f;
  font-size: 14px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-lines strong{
  color: #2b2f2b;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
margin: 12px 0 12px;
    padding: 10px 0;
  width:100%;
  border-top: 1px solid #e8e4dc;
    font-family: var(--font-family-oswald);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-row span{
  color: #141b16;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-row strong{
  color: #141b16;
  font-size: 20px;
  font-weight: 900;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-button{
  min-height: 56px;
  display: flex;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
    letter-spacing: 0.6px;
  border: 0;
  border-radius: 0px;
  color: white;
  background: #005539;
  cursor: pointer;
  font-size:16px;
  font-weight: 300;
transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-button span{display: flex;align-items: center;gap:5px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-button strong{
  font-size: 18px;
  font-weight: 500 !important;
  text-transform: uppercase;
  font-family: var(--font-family-regular);
  letter-spacing: 0.8px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .pay-button small{
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .payment-methods{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin:5px 0 10px 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .payment-methods span{
  min-width: 52px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid #e4e1d9;
  border-radius: 5px;
  background: white;
  color: #1b3d7a;
  font-size: 12px;
  font-weight: 800;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-footer{
  color: #555852;
  font-size: 13px;
  text-transform: uppercase;
  width:100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-footer p{
  margin: 8px 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-footer a{
  color: #26352b;
  text-decoration: underline;
}

@media (max-width: 560px){
  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-card{
    padding: 32px 22px;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-header h1{
    font-size: 34px;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .checkout-options{
    grid-template-columns: 1fr;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item{
    grid-template-columns: 48px 1fr;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cart-item > strong{
    grid-column: 2;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .payment-methods{
    flex-wrap: wrap;
  }
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secure-payment-icon{
  width: 18px;
  height: 18px;
  color: currentColor;
  vertical-align: middle;
transform: translateY(-1px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartes{display: flex;justify-content: center;align-items: center;margin:5px auto;width:100%;gap:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cartes img{width:10%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice{
  display: flex;
  gap: 12px;
  padding: 14px 0px;
  border-top: 1px solid #e8e4dc;
  border-radius: 0px;
  background:transparent;
  color: #333833;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-icon{
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #5f665f;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-icon svg{
  width: 100%;
  height: 100%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-icon circle,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice p{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 520px){
  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice{
    padding: 13px 0px;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .info-notice p{
    font-size: 13px;
  }
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .phone-boxe{position: relative;display: flex;margin-top:20px;align-items:flex-start;flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .mrgb{margin-bottom: 20px}
/************************* form **************************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form-card{
  width: min(100%, 560px);
  margin: 0 auto;
  background: #fff;
  border: none;
  border-radius: 14px;
  overflow: auto;
  height:100%;
  font-family: var(--font-family-regular);
  color: #18211b;
  /*box-shadow: 0 24px 70px rgba(20, 30, 24, 0.08);*/
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 15px;
  border-bottom: 1px solid #ebe7dd;
  background: #fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #2f7d59;
  background: rgba(47, 125, 89, 0.1);
  border-radius: 50%;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-icon svg{
  width: 23px;
  height: 23px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .header-icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}



.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form-header p{
  margin: 6px 0 0;
  color: #818179;
  font-size: 13px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form{
  padding: 28px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-row{
  display: grid;
  gap: 16px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-row.two{
  grid-template-columns: 1fr 1fr;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form label{
  display: block;
  margin-bottom: 18px;
  position: relative;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form label span{
  display: block;
  margin-bottom: 8px;
  color: #4e554f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form label small{
  color: #8b8b84;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form input,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form select{
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ddd8ce;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: #18211b;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form input::placeholder{
  color: #b3b1aa;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form input:focus,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form select:focus{
  border-color: #2f7d59;
  box-shadow: 0 0 0 3px rgba(47, 125, 89, 0.12);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .submit-address{
  width: 100%;
  height: 54px;
  margin: 6px auto;
  border: 0;
  border-radius: 0px;
  letter-spacing: 0.6px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .submit-address:hover{
  background: #195637;
  transform: translateY(-1px);
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secure-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px 0 0;
  color: #8a8a82;
  font-size: 12px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secure-note svg{
  width: 14px;
  height: 14px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secure-note path,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .secure-note rect{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 560px){
  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form-card{
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form-header,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .address-form{
    padding: 26px 28px;
  }

  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .form-row.two{
    grid-template-columns: 1fr;
    gap: 0;
  }


}

/* État désactivé */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.is-disabled span{
  color: #c4cac5;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.is-disabled select{
  color: #b8beb9;
  background: #f4f5f3;
  border-color: #e2e4e0;
  cursor: not-allowed;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.valid span{
  color: #2f7d54;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.valid input{
  border-color: #2f7d54;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.valid .helper{
  margin: 10px 0 0;
  color: #a6ada8;
  font-size: 14px;
  font-weight: 700;
}

/* État erreur */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.error span{
  color: #d34b43;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.error input{
  border-color: #d34b43;
  background: #fffafa;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field-icon{
  position: absolute;
  right: 12px;
  top: 62%;
  transform: translateY(-50%);
  color: #2f7d54;
  font-size: 18px;
  font-weight: 700;
  display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .field.valid .field-icon{display: block !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .no-scroll{
    overflow: hidden !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader{--tg-dur:4.5s;position:relative;width:150px;aspect-ratio:848/1237;margin-top:50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader svg,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader img{position:absolute;inset:0;width:100%;height:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader svg{animation:tg-cycle var(--tg-dur) linear infinite}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader .tg-s1{animation:tg-seg1 var(--tg-dur) linear infinite}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader .tg-s2{animation:tg-seg2 var(--tg-dur) linear infinite}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader .tg-s3{animation:tg-seg3 var(--tg-dur) linear infinite}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader .tg-f{animation:tg-fill var(--tg-dur) linear infinite}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .tg-loader img{animation:tg-marks var(--tg-dur) linear infinite}
@keyframes tg-seg1{0%{stroke-dashoffset:1}16%,100%{stroke-dashoffset:0}}
@keyframes tg-seg2{0%,12%{stroke-dashoffset:1}38%,100%{stroke-dashoffset:0}}
@keyframes tg-seg3{0%,34%{stroke-dashoffset:1}58%,100%{stroke-dashoffset:0}}
@keyframes tg-fill{0%,56%{opacity:0}62%,100%{opacity:1}}
@keyframes tg-cycle{0%,93%{opacity:1}96%{opacity:0}98%,100%{opacity:1}}
@keyframes tg-marks{0%,60%{clip-path:inset(0 0 100% 0);opacity:1}85%,93%{clip-path:inset(0 0 0% 0);opacity:1}96%,100%{opacity:0}}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-summary{display: flex;
    flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-summary.selected .delivery-type{
    order:1;
    margin-bottom: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delivery-type{margin-bottom: 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-summary.selected .address-section{
    order:2;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-summary.selected .relay-section{
    order:2;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-summary.selected .phone-section{
    order:3;
}

/***********************************sidebar - cart ***************************/
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-sidebar{
position:fixed;
top:0;
right:0px;
width:570px;
  height: 100dvh;          /* navigateurs modernes */
    min-height: -webkit-fill-available; /* Safari */
background:white;
display:flex;
flex-direction:column;
box-shadow:-20px 0 50px rgba(0,0,0,.18);
border-radius: 0px;
z-index: 99999;
transform:translateX(100%);
opacity:0;
transition:
transform .45s cubic-bezier(.22,1,.36,1),
opacity .25s ease;
will-change:transform;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-sidebar.active{
    transform:translateX(0);
    opacity:1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .overlay{
z-index: 9999;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background: rgba(80, 80, 80, 0.45); /* gris feutré transparent */
backdrop-filter: blur(3px);
opacity: 0;
visibility: hidden;
transition:opacity .3s ease,visibility .3s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .overlay.active{
    opacity: 1;
    visibility: visible;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-footer{
    flex: 0 0 auto;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-header{
display:flex;
flex: 0 0 auto;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #ececec;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-header h2{
font-size:20px;
font-weight:700;
color:#222;
font-family: var(--font-family-h);
text-transform: uppercase;
letter-spacing: 0.8px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-header span{
font-size:18px;
font-weight:500;
color:#777;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .close-carte{
width:42px;
height:42px;
border:none;
background:#f4f4f4;
border-radius:50%;
cursor:pointer;
font-size:24px;
transition:.3s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .close-carte:hover{
background:#e9e9e9;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-body{
flex:1;
 min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-item{
display:flex;
gap:18px;
padding-bottom:25px;
margin-bottom:25px;
border-bottom:1px solid #efefef;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delete-img{width:20px !important;height:auto !important;border-radius: 0px !important;background: transparent !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-item img{
width:90px;
height:120px;
border-radius:0px;
background:#f7f7f7;
object-fit:cover;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-info{
flex:1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-info h3{
font-size:18px;
margin-bottom:8px;
color:#222;
line-height: 22px;
font-weight: 900;
font-family: var(--font-family-h);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-info small{
color:#888;
display:block;
margin-bottom:10px;
font-size: 14px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-info p{
margin-bottom:18px;
color:#444;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-carte{
display:flex;
gap:10px;
align-items:center;
border: 1px solid #ddd;
border-radius: 20px;
padding: 5px;
line-height: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-carte span{font-weight: bold;    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-carte button{
width:27px;
height:27px;
border:none;
background:white;
border-radius:0px;
cursor:pointer;
font-size:18px;
   display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .quantity-carte button:hover{
	 background: #f2f2f2;
    color: #000;
    border-radius: 20px;
    font-weight: bold;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte{
display:flex;
flex-direction:column;
justify-content:space-between;
align-items:center;
gap:5px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte strong{
font-size:18px;
color:#111;
font-weight: 900;
position: relative;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte a{
font-size:14px;
text-decoration:none;
color:#777;
display: flex;
align-items: center;
gap:5px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-carte a:hover{
color:#000;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-carte{
display:flex;
justify-content:space-between;
margin-bottom:25px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-carte span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .total-carte strong{font-size:20px !important;
font-weight:900 !important;}
@media(max-width:700px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .carte-sidebar{
width:100%;
border-radius:0;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-details{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    color: #B8B8B8;
    font-size: 13px;
    line-height: 1.6;
    font-family: var(--font-family-regular);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .product-details li{
    display: flex;
    align-items: center;
}


.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .prix-multiachat{background: #fdffce;padding:5px;font-size:13px;margin-left:20px;line-height:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-multi{    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-trans{background: transparent;border:1px solid #005539;display: flex;align-items: center;justify-content: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-transparent{color:#005539;
    padding: 0 40px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    font-family: var(--font-family-regular);
    border: none;
    border-radius: 0;
    text-decoration: none !important;
    position: relative;
    cursor: pointer;
    width: fit-content;
    white-space: nowrap;
    transition: background .3s ease;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-transparent:hover{
	background: transparent !important;
	color:#005539 !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .item-footer{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delete-link{
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    color:#B8B8B8;
    font-size:16px;
    line-height:1px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delete-link span{    display: inline-flex;
    align-items: center;
    line-height: 1;}
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div-nav{display: flex;align-items: center;position: relative;gap:15px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .delete-link:hover{color:#005539}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .price-line{
    display:flex;
    align-items:baseline;
    gap:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .old-pricee{
    color:#A7A7A7;
    font-size:18px;
    text-decoration:line-through;
    font-family:var(--font-family-regular);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .new-price{
    color:#333;
    font-size:22px;
    font-weight:900;
    font-family:var(--font-family-h);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .multi-buy-badge{
background: #fdffce;
    color: #333;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 100;
    line-height: 1;
    font-family: var(--font-family-regular);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .trash-icon{
    width:15px;
    height:15px;
    flex-shrink:0;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta{
    background: #005539 !important;
    height: 56px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap:2px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--font-family-regular);

    border: none;
    border-radius: 0;
    text-decoration: none !important;

    position: relative;
    cursor: pointer;

}


/* image flèche */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta img{
    height: 12px;
    width: auto;
    display: block;
    transition: transform .3s ease;
        position: relative;
    top: 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta svg{
  color:#fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .iti__flag{position: relative;top:-1px}
/* ligne sous texte + flèche uniquement */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta::after{
    content: "";
    position: absolute;
    left: 40px; /* même valeur que padding gauche */
    right: 40px; /* même valeur que padding droite */
    bottom:15px;
    height: 3px;
    background: #fff;
    /*transform: scaleX(0);
    transform-origin: left center;*/
    width:0;
    transition: transform .3s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-transparent::after{
    content: "";
    position: absolute;
    left: 40px; /* même valeur que padding gauche */
    right: 40px; /* même valeur que padding droite */
    bottom:15px;
    height: 3px;
    background: #005539;
    /*transform: scaleX(0);*/
    width:0;
    transform-origin: left center;
    transition: transform .3s ease;
}

/* hover */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta:hover::after,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-transparent:hover::after{
   /* transform: scaleX(1);*/
     width: calc(100% - 80px);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-div{padding:0px;width:100%;background: #005539;margin:20px auto;text-align: center;display: flex;align-items: center;justify-content: center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta-home{max-width: 300px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .div_profil{display: flex;align-items: center;gap:5px;margin:50px 0;justify-content: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step2{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s ease;margin:0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step4.shows,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step2.shows{
    opacity: 1;
    max-height:100%; /* assez grand pour ton contenu */
    margin:0px auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css #step3.shows{    opacity: 1;
    max-height:100%; /* assez grand pour ton contenu */
    margin:auto;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .hides{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .smartfit-contente{min-height: 100vh;margin:50px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta span:not(.btn-loader){
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta #btn-text{
    gap: 10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .cta svg:not(.secure-payment-icon){
    width: 10px !important;
    height: 16px !important; /* respecte le ratio de l’icône */
    display: block;
    flex:none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css .menu-haut{    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;}
/* main3.css; 44 pages */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .oswald-regular1{ font-family: 'Open Sans', sans-serif;font-size:45px;font-weight: bold;text-transform: uppercase; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .oswald-bold1{ font-family: 'Open Sans', sans-serif; font-weight: 700;font-size:30px;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .roboto-regular1{ font-family: 'Open Sans', sans-serif; font-weight: 400;font-size:16px;text-decoration: none; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .temoignages-container1{ padding: 20px 25px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .temoignages-container2{border:1px solid #DDDDDD;padding:10px 25px; padding: 20px;max-width: 600px;margin-left: auto;margin-right: auto;margin-bottom: 20px;/*text-transform: lowercase;*/}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .temoignages-container3{ padding: 50px 25px; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .h1guide{margin-left: auto;margin-right: auto;text-align: center;font-size:30px; font-weight:700;Line-Height: 40px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .modele-catalogue-home1{font-style:italic;font-size: 17px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .modele-catalogue-home2{    font-size: 18px;    line-height: 1em;    margin-bottom: 15px;    width: 100%;    padding-top: 10px;    font-family: 'Open Sans Condensed';    font-weight: 700;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .bottom{
  height: 280px;color: white;
  vertical-align: bottom;display: table-cell;
  padding: 30px;
  text-shadow: black 0.1em 0.1em 0.2em
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .epaisseur-background{ width: 100%;height: 280px; margin-bottom:30px;margin-top:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .img_fournisseur{/*padding: 20px 0px 20px 0px;*/ margin-bottom:10px;margin-top:10px; width:220px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .boutonguide{margin-bottom:50px;margin-top:70px; text-align:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .boutontissu{border: 1px solid #DDDDDD; padding: 15px 15px;     max-width: 200px; margin-right:15px;margin-bottom: 15px; float: left; position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .modele-catalogue-home{margin-top: 40px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .containerguide{

    margin:50px auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .containerguide{
    width: 740px;
}
}
@media (min-width: 992px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .containerguide{
    width: 750px;
}
}
@media (min-width: 1200px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .containerguide{
    width: 790px;
}
}
/*.containerguide{width: 750px;}*/
@media screen and (min-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main3-css .rosee{
    padding: 10px 40px !important;
}
}
/* light.css; 281 pages */

html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css body{
  min-height: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .clearfix:before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .clearfix:after{
  content: "";
  display: table;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .clearfix:after{ clear: both; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .clearfix{ zoom: 1; }

/*jquery.picEyes*/

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .picshade{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.91;
  filter: alpha(opacity=91);
  z-index: 1031;
  display: none;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_close{
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;

  z-index: 1237;
  display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_close:hover{
    opacity: .5;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_title{
  position: fixed;
  top: 30px;
  left: 30px;
  display: none;
  z-index: 1238;
  font-size:16px;
  text-transform: none;
  color:#222;
  text-align:center;
  left: 50%;
    transform: translate(-50%, 0);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes{
  position: fixed;

  left: 0 !important;
  top: 0 !important;
  z-index: 1035;
  display: none;
  right:0;
  bottom:0;
  overflow:auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  min-height:100%;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in{
  position: relative;
  text-align: center;
  /*margin-top:100px;*/
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_header{
  position: fixed;
  width: 100%;
  left: 0 !important;
  top: 0 !important;
  z-index: 2135;
  display: none;
  height:80px;
background:#fff;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .prev,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .next{
  position: fixed;
  top: 50%;
  width: 76px;
  height: 76px;
  cursor: pointer;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .prev{
  left: 35px;
  background: url("/assets/design-system/production/img/left.png") no-repeat;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .next{
  right: 45px;
  background: url("/assets/design-system/production/img/right.png") no-repeat;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .prev:hover{
  left: 35px;
  width: 76px;
  height: 76px;
  background: url("/assets/design-system/production/img/left-01.png") no-repeat;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_in .next:hover{
  right: 45px;
  width: 76px;
  height: 76px;
  background: url("/assets/design-system/production/img/right-01.png") no-repeat;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_indicators{
  position: fixed;
  left: 0;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 1200;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_indicators a{
  display: inline-block;
  width: 57px;
  height: 64px;
  margin: 6px 3px 0 3px;
  border: 2px solid #FFFFFF99;
  border-radius: 0px;
  box-shadow: 0 0 2px #000;;
  overflow: hidden;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_indicators img{ height:64px; }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .pictures_eyes_indicators .current{
  filter: alpha(opacity=100);
  opacity: 1;
  border: 2px solid #fff;
}
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #more-options{
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #F8F8F8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    color: #222;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #more-options .img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #less-options .img{
    width: 65px;
    height: 35px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #more-options img{
    display: block;
    width: 40px;
    height: auto;
    margin-top: -3px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #less-options{
    height: 35px;
    line-height:35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #F8F8F8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    color: #222;
    border: 1px solid #f1f1f1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #less-options img{
    display: block;
    width: 40px;
    height: auto;
}
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires{
    position:relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    margin-top:10px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires .sommaire .name{
    padding-left: 10px;
    line-height: 65px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires .part{
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0px auto 5px 0px;
    background-color: #FFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .parts .part .name{
        /*padding-left: 2.5px;
        padding-right:2.5px;*/
        cursor:pointer;
        width: 90px;
        margin: auto;
        font-size:14px;
    }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .part .img{
    width: 65px;
    height: 35px;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 110px;
    cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator #step-0 .part img{
    width: 35px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .demo > li{float:left;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .demo > li img{ width:70px; margin:5px; cursor:pointer;border: 2px solid #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .demo > li img:hover{border: 2px solid #ccc;}

 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .hide-bullets{
    list-style:none;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item{
    backface-visibility: visible !important;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .thumbnail{
    padding: 0;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item>a>img{
    width: 100%;
    cursor: url("/assets/design-system/production/img/magnify.cur"),move;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .thumbnail{
    border:none !important;
    margin-bottom: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel{
background-color: #fff;
    margin-top: 5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item.next.left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item.prev.right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .carousel-inner>.item.active{
background-color: transparent;
    }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .col-md-2{
width:9%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .delivery{
    float: left;
    display: block;
    top: 17px;
    padding-left: 10px;
}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .delivery a{
    font: inherit;
    color: inherit;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    color:#333;font-size:18px;margin-top:20px
}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .delivery a:hover{
text-decoration: underline;
    }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .bordered{
    border: 1px solid #ccc;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .selecte{
    display: inline-block;
    width: 70%;
    position: relative;
    margin-bottom: 20px;
    color: #9b9b9b;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #configurator .parts_broderie{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .menu-deroulant-couleur,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .menu-deroulant-style{
    display: none;
    overflow: auto;
    position: absolute;
    z-index: 99;
    top: 40px;
    left: 0;
    background: #FFF;
    width: 100%;
    text-align: left;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 30px 0.00px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    padding: 10px;
    height: 200px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .part-deroulant{
    width: 100% !important;
    height: 40px !important;
    text-align: center;
    margin: 0 0px 0px 0;
    display: block;
    padding: 0 !important;
      line-height: 30px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .part-deroulant .name{
width:100% !important;
  }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .selecte span{
    background-color: #188873 !important;
    width: 38px !important;
    height: 38px !important;
    position: absolute;
    line-height: 38px;
    padding: 0px !important;
    border-radius: 0px !important;
    top: 0px;
    right: 0px;
    border-radius: 0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .okk{
    padding: 10px 10px 10px 10px;
    margin: 0;
    background: #188873;
    border: none;
    border-radius: 3px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    outline: none;
    color: white;
      margin-bottom: 20px !important;
    width: 50% !important;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .ok{
    padding: 10px 10px 10px 10px;
    margin: 0;
    background: #188873;
    border: none;
    border-radius: 3px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    outline: none;
    color: white;
      margin-bottom: 20px !important;
    width: 180px !important;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .part.active{
    /* opacity: 1; */
    color:#fff;
    background-color: #188873;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .mobody h2{
    font-family: inherit;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    margin: 15px 15px 10px 15px;
    text-transform: uppercase;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .okk:hover{
    background: #06695F;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .part-deroulant .img{
    width: 40% !important;
    height: 40px !important;
    float: left;
    /* border: 1px dashed #bfbfbf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: inline-block !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 40px !important;
    cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .selecte span:after{
    content: '';
    display: block;
    height: 11px;
    width: 14px;
    background: url("https://www.tailorgeorge.fr/configurateur/img/icon-fleche-menu-deroulant.png") no-repeat;
    position: absolute;
    top: 12px;
    left: 12px;
}
@media screen and (min-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #more-options,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #less-options,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires .part{
width:400px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .btn-rose{
  width:400px;
}
}

@media screen and (max-width:767px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #more-options,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css #less-options,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires .part{
width:100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .sommaires .part .name{
  line-height:55px;
  text-align:left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css section#configurator .part .img{
width:65px !important;
  }
  .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-light-css .btn-rose{
  width:100%;
}
}
/* produit.css; 281 pages */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .hide-bullets{list-style:none;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item{backface-visibility: visible !important;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .thumbnail{padding: 0;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item>img,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item>a>img{ width: 100%;cursor: url("/assets/design-system/production/img/magnify.cur"),move; cursor: -moz-zoom-in;cursor: -webkit-zoom-in;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .thumbnail{
border:none !important;
margin-bottom: 0px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel{
background-color: #fff;
margin-top: 5px;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item.next.left,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item.prev.right,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .carousel-inner>.item.active{
background-color: transparent;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-md-2{
width:9%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .delivery{
float: left;
display: block;
top: 17px;
padding-left:0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .delivery a{
font: inherit;
color: inherit;
font-weight: 500;
font-family: var(--font-family-regular) !important;
color:#333;font-size:16px !important;margin-top:20px
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .delivery a:hover{
text-decoration: underline;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .block-ico{margin-top:0px;display: flex;align-items: center;margin-bottom: 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .pi-texte{
padding: 10px;
display: block;
line-height: 24px;
font-size: 16px;
margin-left:20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .pictos{
padding: 0px;
display: block;

}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .pictos img{
width: 45px;
height: auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .mrg-3{margin-top: -80px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .clock{
width:35px !important;
height: auto !important;
margin-left:4px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .bor-dash{border-bottom: 1px dashed #ccc;margin-top:0px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #modal_retouche p,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #modal_liv p{margin-bottom: 20px;
line-height: 24px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .position-r{;
position: relative !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-pre{position: relative !important;display:block;top: inherit !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .cond-shirt{top: -30px !important;position: relative;}

@media (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .m-compte{
        margin-left: auto;
        display: flex;
        align-items: center;
    }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header__icon--close{display: none}
	.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .h1-chemise{font-size:27px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .picture{width: 100%;
    display: block;
    margin: auto;
    height:auto;
    padding: 10px;}}
    @media (max-width: 768px){
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .m-compte{
        display: none;
    }

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .picture{width:100%;
    display: block;
    margin: auto;
    padding:0px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .h1-chemise{font-size: 22px !important;line-height:30px !important}
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .disblock{
	display: block;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .height-dv{
    height: 118px;
    margin-bottom: 20px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .bordere{border: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .pi-text{
	margin-left: 100px !important;font-size: 16px !important
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .dv{padding-left: 0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css strong{font-weight: 700;font-size:18px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css }

@media screen and (min-width: 769px){
.col-lg-4 {
    width: 33.33333333%;
}.col-lg-5 {
    width: 41.66666667%;
}.col-lg-3 {
    width: 25%;
}.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left;
}}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css strong{font-weight: bold !important;font-size:20px}
@media screen and (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .margin-150{margin:100px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .mrg-left{margin-left:30px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-4{
    width: 33.33333333%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-5{
    width: 41.66666667%;

}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-3{
    width: 25%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .col-lg-9{
    float: left;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home{background:#005539 !important;height:550px !important;padding:0px !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .burger-menu{display:none !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #openMenu{width:130px !important}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .hamburger{width:130px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home{margin-top:30px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .contenu{flex-direction:row}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
 .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .div2{width:54%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .temoignages-titre h2{font-family: var(--font-family-h);font-weight: 800;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css strong{font-weight: 900 !important;font-size:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2{display:flex;align-items:center}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 li{padding:15px;font-size:0.8rem;display: flex;align-items: center;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 a{font-weight:900;font-family:var(--font-family-regular);position:relative}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 a:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 li img{height:10px;margin-left:8px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 51px;
top: 180px;
z-index: 99;
}
@media screen and (max-width: 768px){
html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css body{overflow-x:hidden;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .margin-150{margin:50px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .mrg-left{margin-left:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home .contenu h1::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home .contenu h1::after{display:none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home{background:#005539 !important;height:100% !important;padding:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .burger-menu{display:block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home{margin-top:50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #openMenu{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .hamburger{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header-home{margin-top:45px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .contenu{flex-direction:column}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .div2{width:100%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .divheader{align-items:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .navbar-brand a img{width:160px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height:3px;
    background-color: rgb(51,51,51);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu2 a:hover::after{
    width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .link-b{margin-top:30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .link-b a{display:flex;align-items: center;font-weight: 900;font-family: var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .link-b a::after{content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #fff;}
    .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .link-b a:hover::after{
    width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .link-b a:hover{color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #navbar{border-bottom: 2px solid #f1f1f1; }
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .h1-chemise{color: #000;
text-align: left;
line-height:33px;
font-family: var(--font-family-oswald) !important;
font-weight: 800 !important;
text-shadow: none;
margin-bottom: 10px !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .ba-des{display: flex;
margin: 30px 0;
background: #F7F7F7;
border-radius: 10px;
padding: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css p,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css td{font-family:var(--font-family-regular) !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .scrollenone{overflow: hidden !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css .header__icon--close{
    width: 1rem;
    position: fixed;
    top: .8rem;
    right:20px;
    opacity: 1;
    z-index: 4;
    color: #000;
    background-color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-produit-css #header{background: #fff !important}
/* catalogue.css; 39 pages */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-3{
position: relative;
margin-right: 25px;
}
@media screen and (min-width: 769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .m-compte{
margin-left: auto;
display: flex;
align-items: center;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .hide-link{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .display-link{display: flex}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .top-info{margin-top:40px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-4{
width: 33.33333333%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-8{
width: 66.66666666%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-5{
width: 41.66666667%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-7{width: 58.33333333%}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-3{
width: 25%;
}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-1,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-10,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-11,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-12,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-2,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-3,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-4,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-6,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-7,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-8,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .col-lg-9{
float: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .text-categorie{
padding: 60px 60px !important;
background: #f8f8f8 !important;
width: 375px !important;
height: 339px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .myp{font-weight: 700;color: #666;font-size: 15px;line-height: 20px;margin-left: 10px;margin-bottom: 50px;text-align: center;background:#f1f1f1;padding: 20px 40px;font-family:var(--font-family-regular);font-weight: 400;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .title-bar{display: flex;justify-content: space-between;align-items: center;padding:10px 0px;flex-direction: row;margin-bottom: 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .burger-menu{display: none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .h1-catalogue{text-transform:uppercase;color: #000;text-align: left;line-height: 40px;font-family:'Gotham-Medium', sans-serif;font-weight: 800;text-shadow: none;font-size: 35px;max-width: 100%;margin-bottom: 0px !important}
}

@media screen and (min-width:769px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filter-fixed{position: fixed !important;
z-index: 9999;
right:0 !important ;
top: 0;
bottom:0;
padding: 0px;
width: 30% !important;overflow-y: auto;
height: 100%;
background-color: #fff;
transform: translateX(100%);
-webkit-transition: all 0.8s;
transition: all 0.8s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .line-product{
display: flex;
min-width: 352px;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
height: 100%;
flex: 1 0 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .catalogue{width:100%;    display: grid;
grid-template-columns: repeat(2, minmax(352px, 1fr));
align-items: flex-start;
align-content: flex-start;
align-self: stretch;
grid-template-columns: repeat(4, 1fr);
gap: 2.5rem calc(8rem / 2);}
}
@media screen and (max-width:768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .navbar-brand{
padding: 10px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .m-compte{
display: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .display-link{display: none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .catalogue{width:100%}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .line-product{
display: flex;
min-width: 352px;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
height: 100%;
flex: 1 0 0px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .text-categorie{
padding: 60px 60px !important;
background: #f8f8f8 !important;
width: 100% !important;
height: 339px;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .img-categorie img{
height: auto;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .myp{font-weight: 700;color: #666;font-size: 15px;line-height: 20px;margin-bottom:30px;margin-top:0px;text-align: left;;background: transparent;font-family:var(--font-family-regular),sans-serif;
padding:0px;}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .grise{color:#666;font-size:15px;float:left}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .myh{font-size:15px;display: inline-block;font-weight:700}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .btt{color:#fff;background: #188873;display: inline-block;width:20%;margin-left:10px;padding:7px;cursor:pointer;font-weight: bold;border:none;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .progressbar-wrapper{
background: #fff;
width: 200px;
padding-top: 10px;
padding-bottom: 25px;
display: block;
float: left;
}

.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .progressbar li{
list-style-type: none;
width:16%;
float: left;
height: 10px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
border:1px solid #000;
background:#fff;
margin:0px 1px;
cursor: pointer;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .progressbar li:first-child:after{
content: none;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .progressbar li.active{
background-color: #21304e;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home{background:#005539 !important;height:550px !important;padding:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .hamburger{width:130px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home{margin-top:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .contenu{flex-direction:row}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .div1{width:46%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:0px 50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .div2{width:54%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css }
.temoignages-titre h2{font-family: var(--font-family-h);font-weight: 800;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .pi-text{font-family:var(--font-family-regular);font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css strong{font-weight: 900 !important;font-size:20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2{display:flex;align-items:center;margin-left:15px}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 li{    padding: 15px;
font-size: 0.8rem;
display: flex;
align-items: center;
justify-content: center;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 a{display: inline-flex;
align-items: center;
font-weight: 900;
font-family: var(--font-family-regular);
position: relative;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 a:hover{color:#000}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .divheader a{font-family:var(--font-family-regular),sans-serif;font-weight: 500;font-size: 0.8rem;}.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css p{font-family:var(--font-family-regular),sans-serif;font-weight:400}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 li img{height:10px;margin-left:8px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 60px;
top: 180px;
z-index: 99;
}

@media screen and (max-width: 768px){
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filter-fixed{position: fixed !important;
z-index: 9999;
right:0 !important ;
top: 0;
bottom:0;
padding: 0px;
width: 90% !important;overflow-y: auto;
height: 100%;
background-color: #fff;
transform: translateX(100%);
-webkit-transition: all 0.8s;
transition: all 0.8s;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .catalogue{
display: -ms-grid;
display: grid;
grid-template-columns: repeat(2, minmax(352px, 1fr));
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
gap: 0rem 0.8rem;
-ms-grid-row-align: stretch;
align-self: stretch;
-ms-flex-wrap: wrap;

}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu-lateral-container{transform: translate(0);left:-100% !important;-webkit-transition: all 0.8s;
transition: all 0.8s;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .hide-link{display: block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .top-info{margin-top:30px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .h1-catalogue{color: #000;text-align: left;line-height: 30px;font-family: var(--font-family-h);font-weight: 800;text-shadow: none;font-size: 23px;max-width: 100%;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .title-bar{display: flex;justify-content: space-between;align-items:flex-start;padding:10px 10px;flex-direction: column;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .margin-150{margin:50px auto}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .mrg-left{margin-left:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home .contenu h1::before,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home .contenu h1::after{display:none !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home{background:#005539 !important;height:100% !important;padding:0px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .burger-menu{display:block}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home{margin-top:50px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .divheader,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #connect{display:none}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #openMenu{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .hamburger{width:90px !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header-home{margin-top:45px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .contenu{flex-direction:column}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .div1{width:100%;display:flex;flex-direction: column;align-items: flex-start;justify-content: center;padding:50px 20px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .div2{width:100%;background: url("<?= IMG_BASE_URL ?>/img/CATEGORIE/flanelle_Monti.jpg");background-position: center;background-size: cover;height:330px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .new{
background-color: #21304e !important;
color: #fff;
padding: 10px 10px;
font-size: 14px;
position: absolute;
left: 40px;
top: 100px;
z-index: 99;
}
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .divheader{align-items:center}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .navbar-brand a img{width:160px}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 a::after{
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height:3px;
background-color: rgb(51,51,51);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu2 a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-b{margin-top:30px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-b a{display:flex;align-items: center;font-weight: 900;font-family:var(--font-family-regular);position: relative;font-size:0.9rem}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-b a::after{content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background-color: #fff;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-b a:hover::after{
width: 100%; /* Étend la bordure sur toute la largeur au survol */
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .link-b a:hover{color:#fff}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #navbar{border-bottom: 2px solid #f1f1f1;
display: flex;
align-items: center;
justify-content: center;
height: 100%;        margin-left: 0px !important;
margin-right: 0px !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .h1-chemise{color: #000;
text-align: left;
line-height: 45px;
font-family:var(--font-family-h) !important;
font-weight: 800 !important;
text-shadow: none;
font-size: 35px !important;
text-transform: uppercase;
margin-bottom: 30px !important;text-transform: uppercase;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .ba-des{display: flex;
margin: 30px 0;
background: #f1f1f1;
border-radius: 10px;
padding: 20px;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filtere h5,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filtere.h5{text-transform: uppercase;
font-family: var(--font-family-oswald);
font-weight: 900 !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css p,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css span,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css li,.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css td{font-family:var(--font-family-regular),sans-serif !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .categorie-link{
background-color:transparent;
color: #000;
padding: 5px;
display: inline-block;
margin: 7px 40px 7px 5px;
display: block;
font-family:var(--font-family-regular);
font-size: 14px;
font-weight: 600;
width: 100%;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .categorie-link:hover{text-decoration: underline;color:#000 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .lk{padding:5px 5px !important;font-size:0.8em !important;color:#555;font-weight: normal !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filtere h6{margin-bottom: 1rem;
font-size: 15px;
font-weight: 600;
letter-spacing: 1.4px;
line-height: 1.3;
display: block;
padding-left: 10px;
justify-content: space-between;
align-items: flex-start;
flex-wrap: nowrap;
text-transform: uppercase;
font-family: var(--font-family-h);cursor: pointer}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filtere h6:hover{text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filtre-menu-deroulant li:hover{text-decoration: underline;background-color: transparent !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #tissage{
margin-top: 10px;
transition: max-height 0.3s ease, opacity 0.3s ease;
overflow: hidden;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .hidden{
display: none !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #toggle-icon{
transition: transform 0.3s ease;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .visible{
display: block !important;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .rotate{
transform: rotate(90deg);
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .menu-lateral{padding:50px 0;border-left: 5px solid #21304e !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .scrollenone{overflow: hidden !important;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .header__icon--close{
width: 1rem;
position: fixed;
top: .8rem;
right:20px;
opacity: 1;
z-index: 4;
color: #000;
background-color: #fff;
}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #background3{z-index:9999 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .catalogue-details a:hover{text-decoration: underline;color:#333 !important}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .filter-toggle:hover{text-decoration: underline;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css .st{color:#000;font-weight: bold;}
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-catalogue-css #header-container{
height: 100%;
}
/* inline page tg-preprod-page-7d7999af6142 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-7d7999af6142 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-7d7999af6142 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-7d7999af6142 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-7d7999af6142 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-cf8d23f47c67 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-cf8d23f47c67 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-cf8d23f47c67 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-cf8d23f47c67 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-cf8d23f47c67 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-c48793e60d84 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c48793e60d84 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c48793e60d84 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c48793e60d84 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c48793e60d84 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-45c3bf16096c */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-45c3bf16096c strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-45c3bf16096c .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-45c3bf16096c .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-45c3bf16096c #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-c91b2e8fac88 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c91b2e8fac88 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c91b2e8fac88 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c91b2e8fac88 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-c91b2e8fac88 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-3d059549a039 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3d059549a039 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3d059549a039 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3d059549a039 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3d059549a039 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-aa2b930eaf24 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-aa2b930eaf24 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-aa2b930eaf24 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-aa2b930eaf24 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-aa2b930eaf24 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-62a0d702a58e */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-62a0d702a58e strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-62a0d702a58e .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-62a0d702a58e .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-62a0d702a58e #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-fe5d1c231582 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-fe5d1c231582 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-fe5d1c231582 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-fe5d1c231582 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-fe5d1c231582 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-3c8304ea822b */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3c8304ea822b strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3c8304ea822b .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3c8304ea822b .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3c8304ea822b #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-3dfd9de3afe7 */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3dfd9de3afe7 strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3dfd9de3afe7 .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3dfd9de3afe7 .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-3dfd9de3afe7 #img_titrage{float:left;margin:0 10px 10px 50px;}
/* inline page tg-preprod-page-37cda0dfe2ec */
.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-37cda0dfe2ec strong{font-weight: bold}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-37cda0dfe2ec .table_tissage{float: left; border:1px solid #e3e3e3; padding:4px; margin: 4px; vertical-align:top; font-size: 17px;
                                    line-height: 1.4em;
                                    width: 100%;
                                    color: #000;
                                    margin-bottom: 20px;
                                    font-weight: normal;
                                    font-family: 'Open Sans';}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-37cda0dfe2ec .table_tissage img{float: left; margin-right: 10px;}
                            .tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-page-37cda0dfe2ec #img_titrage{float:left;margin:0 10px 10px 50px;}
html.tg-preprod-page .tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041.tg-preprod-style-c0d5d3e8b041{display: none !important}
html.tg-preprod-page .tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34.tg-preprod-style-e6b59cf3dc34{display: flex !important;flex-direction: column !important;width:40% !important}
html.tg-preprod-page .tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074.tg-preprod-style-7eaecc77d074{width:50% !important}
html.tg-preprod-page .tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb.tg-preprod-style-f1ff77e5ddbb{color:red !important}
html.tg-preprod-page .tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da.tg-preprod-style-f2835880c5da{margin-top: 10px !important}
html.tg-preprod-page .tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338.tg-preprod-style-20ae16361338{margin-bottom: 10px !important}
html.tg-preprod-page .tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e.tg-preprod-style-c3e49a2c4e5e{height:50px !important;margin-bottom: 0px !important}
html.tg-preprod-page .tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee.tg-preprod-style-a869eed8c5ee{text-align: left !important;padding:10px 20px !important}
html.tg-preprod-page .tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c.tg-preprod-style-bf3a84a5cd5c{color:#000 !important}
html.tg-preprod-page .tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263.tg-preprod-style-fc9c1b211263{width:90% !important}
html.tg-preprod-page .tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c.tg-preprod-style-036e4dc76d4c{max-width: 100% !important}
html.tg-preprod-page .tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1.tg-preprod-style-3652d24c50d1{width:20px !important}
html.tg-preprod-page .tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b.tg-preprod-style-b49adc743b2b{border: none !important;box-shadow:none !important;position:relative !important;top:10px !important;font-size:0.8em !important}
html.tg-preprod-page .tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39.tg-preprod-style-083b3ec45c39{padding:0px !important}
html.tg-preprod-page .tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d.tg-preprod-style-f4561649741d{margin-top:2px !important}
html.tg-preprod-page .tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5.tg-preprod-style-af2e8f43a8a5{text-transform: uppercase !important}
html.tg-preprod-page .tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7.tg-preprod-style-ec7ae998ebd7{display: none !important;opacity: 0.4 !important}
html.tg-preprod-page .tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa.tg-preprod-style-c0744ab21faa{opacity: 0.4 !important}
html.tg-preprod-page .tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59.tg-preprod-style-03117e870e59{width:100% !important}
html.tg-preprod-page .tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60.tg-preprod-style-bd31e3428b60{padding:0px !important;border:auto !important;display: flex !important}
html.tg-preprod-page .tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc.tg-preprod-style-e3b0c44298fc{}
html.tg-preprod-page .tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d.tg-preprod-style-b7aa1ec0049d{width:100% !important}
html.tg-preprod-page .tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec.tg-preprod-style-ef83576e9dec{color:#fff !important}
html.tg-preprod-page .tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4.tg-preprod-style-34bc4268e7a4{color:#005539 !important}
html.tg-preprod-page .tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4.tg-preprod-style-d6694ec44de4{top:0 !important}
html.tg-preprod-page .tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306.tg-preprod-style-fdc7368dc306{color:red !important;border-bottom: 2px solid red !important;padding-bottom: 2px !important}
html.tg-preprod-page .tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e.tg-preprod-style-175c7c29824e{padding-left:0px !important;padding-right:0px !important}
html.tg-preprod-page .tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d.tg-preprod-style-0a6a7f5be69d{text-align:left !important;width: 100% !important}
html.tg-preprod-page .tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145.tg-preprod-style-c6fa01b3f145{font-weight:700 !important}
html.tg-preprod-page .tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae.tg-preprod-style-7cda7e1bbfae{text-align:left !important;font-weight:bold !important}
html.tg-preprod-page .tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d.tg-preprod-style-fc423ef7889d{font-size:13px !important;color:#5e5e5e !important;margin:10px 0 !important;text-transform:capitalize!important}
html.tg-preprod-page .tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa.tg-preprod-style-ba44f6c5a0fa{margin:30px auto !important}
html.tg-preprod-page .tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0.tg-preprod-style-97a7b0d69ab0{background: white !important;padding:15px !important;font-size:18px !important;font-weight:800 !important;color:#000 !important;text-align:left !important;width:90% !important;line-height:24px !important;font-family:var(--font-family-regular) !important}
html.tg-preprod-page .tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030.tg-preprod-style-419056afb030{margin:40px auto !important;padding:0px 20px !important}
html.tg-preprod-page .tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b.tg-preprod-style-edcaeebb440b{height:50px !important;justify-content: center !important}
html.tg-preprod-page .tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb.tg-preprod-style-7661e29063fb{height:10px !important;margin-left:8px !important}
html.tg-preprod-page .tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45.tg-preprod-style-c454abb83e45{height:10px !important;margin-left:8px !important;margin-top:-5px !important}
html.tg-preprod-page .tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938.tg-preprod-style-aa92e707e938{background: #F8F8F8 !important;text-align: center !important;padding:50px !important;border-top:1px dashed #c6c6c6 !important}
html.tg-preprod-page .tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4.tg-preprod-style-3e0e7f8b34d4{font-weight: bold !important;font-size:20px !important;margin-bottom:30px !important}
html.tg-preprod-page .tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742.tg-preprod-style-81a5b9ceb742{line-height:30px !important;font-size:16px !important}
html.tg-preprod-page .tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f.tg-preprod-style-40bbdb9f8d5f{font-weight: 600 !important;font-size: 23px !important}
html.tg-preprod-page .tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f.tg-preprod-style-dbe752fa7f4f{text-decoration: underline !important}
html.tg-preprod-page .tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8.tg-preprod-style-67db841f90e8{margin-top:0px !important;margin-bottom:30px !important;border:2px solid #2f3c55 !important;padding:15px 20px !important}
html.tg-preprod-page .tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7.tg-preprod-style-6aa34d7432e7{display:none !important}
html.tg-preprod-page .tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129.tg-preprod-style-0ccc88506129{margin-top:-20px !important}
html.tg-preprod-page .tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255.tg-preprod-style-0deb01647255{color:#2f3c55 !important}
html.tg-preprod-page .tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4.tg-preprod-style-6e850ccab2d4{margin-top:-7px !important}
html.tg-preprod-page .tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e.tg-preprod-style-56fef0501b2e{margin-right:5px !important}
html.tg-preprod-page .tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104.tg-preprod-style-a62871833104{margin-left:2px !important}
html.tg-preprod-page .tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0.tg-preprod-style-bac6c67b94c0{text-align: center !important;padding:10px !important;color:#2f3c55 !important}
html.tg-preprod-page .tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2.tg-preprod-style-eecb70e2dde2{z-index: 99999 !important}
html.tg-preprod-page .tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906.tg-preprod-style-e976371e9906{height:100% !important;overflow: auto !important}
html.tg-preprod-page .tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3.tg-preprod-style-b77e398f81c3{text-align: center !important;margin-bottom: 30px !important;margin-top:30px !important}
html.tg-preprod-page .tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805.tg-preprod-style-e88229471805{text-align: center !important;display: flex !important;width: 50% !important;margin: 0 auto !important}
html.tg-preprod-page .tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf.tg-preprod-style-6b960bd054cf{border-radius:0px !important;width:105px !important;height:41px !important;padding:inherit !important;text-transform: none !important;border-color: #fff !important}
html.tg-preprod-page .tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324.tg-preprod-style-d0c1cbd44324{background: #fff !important}
html.tg-preprod-page .tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d.tg-preprod-style-97fb14a9b09d{color:#000 !important}
html.tg-preprod-page .tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9.tg-preprod-style-8178dc0743f9{background-image: url("/assets/design-system/production/img/TG_pages_tissus.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f.tg-preprod-style-da3f8db2b13f{font-weight:bold !important}
html.tg-preprod-page .tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5.tg-preprod-style-ff3cdb5a80d5{margin-bottom:30px !important;margin-top:30px !important}
html.tg-preprod-page .tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350.tg-preprod-style-04ee0ec21350{height:41px !important}
html.tg-preprod-page .tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c.tg-preprod-style-9feceffefd8c{margin-top:50px !important;margin-bottom:50px !important;text-align:center !important}
html.tg-preprod-page .tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14.tg-preprod-style-2f2054891c14{padding-top:50px !important}
html.tg-preprod-page .tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835.tg-preprod-style-fc6d20331835{display: none !important;width:100% !important}
html.tg-preprod-page .tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121.tg-preprod-style-711d50907121{min-height:135px !important}
html.tg-preprod-page .tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8.tg-preprod-style-e5add33729a8{min-height:0px !important}
html.tg-preprod-page .tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a.tg-preprod-style-b608a8a9817a{min-height:62px !important}
html.tg-preprod-page .tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f.tg-preprod-style-181ad372c39f{margin-left: 0px !important;margin-right: 0px !important}
html.tg-preprod-page .tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b.tg-preprod-style-e6f2d1d0ad8b{padding-left:0px !important;padding-right:0px !important}
html.tg-preprod-page .tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7.tg-preprod-style-47893478dab7{font-size: 24px !important;font-weight:700 !important}
html.tg-preprod-page .tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326.tg-preprod-style-f6279acc7326{margin-bottom: 20px !important}
html.tg-preprod-page .tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f.tg-preprod-style-f4c9fbbfff1f{margin-top: 10px !important;text-align: left !important;margin-bottom: 10px !important}
html.tg-preprod-page .tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa.tg-preprod-style-03f8846454aa{display:flex !important;flex-direction: column !important;gap:10px !important}
html.tg-preprod-page .tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e.tg-preprod-style-d64c8cb3359e{font-size:18px !important}
html.tg-preprod-page .tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61.tg-preprod-style-6a64331a7c61{margin-top: 25px !important}
html.tg-preprod-page .tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83.tg-preprod-style-477f1a0d3e83{width:80% !important;font-size:16px !important}
html.tg-preprod-page .tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a.tg-preprod-style-7f4b3e73460a{width:20% !important;text-align:center !important}
html.tg-preprod-page .tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5.tg-preprod-style-61373d92e9b5{border:none !important;text-transform: uppercase !important;font-weight:800 !important;width:100% !important;font-size:17px !important;font-family: var(--font-family-regular) !important}
html.tg-preprod-page .tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d.tg-preprod-style-3b6fad0b298d{margin-top: 10px !important}
html.tg-preprod-page .tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904.tg-preprod-style-a0fc2e0b3904{margin-top:7px !important}
html.tg-preprod-page .tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39.tg-preprod-style-ea5fada68c39{text-align: left !important}
html.tg-preprod-page .tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861.tg-preprod-style-d07cc829f861{background:#eee !important}
html.tg-preprod-page .tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4.tg-preprod-style-1fd7187b3bb4{font-size:24px !important;text-align:center !important;font-family:'sans-serif' !important;font-weight:500 !important;margin-bottom:30px !important}
html.tg-preprod-page .tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0.tg-preprod-style-7ad02d94b9d0{line-height: 1.3em !important}
html.tg-preprod-page .tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639.tg-preprod-style-5ac4b6da1639{background: #F7F7F7 !important;padding: 50px 15px !important}
html.tg-preprod-page .tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d.tg-preprod-style-184c6081040d{margin:50px 0 !important}
html.tg-preprod-page .tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095.tg-preprod-style-6d5226615095{font-weight: 600 !important;color: #232323 !important}
html.tg-preprod-page .tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60.tg-preprod-style-3b9ef28f9b60{line-height: 1.5em !important;text-align: justify !important}
html.tg-preprod-page .tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0.tg-preprod-style-cb295f4b06e0{padding:50px 0 !important}
html.tg-preprod-page .tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3.tg-preprod-style-de1924344eb3{margin-bottom: 30px !important}
html.tg-preprod-page .tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa.tg-preprod-style-1181059a3dfa{border-radius: 0px !important}
html.tg-preprod-page .tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412.tg-preprod-style-b4a318ac4412{padding:30px !important;border-bottom: none !important}
html.tg-preprod-page .tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc.tg-preprod-style-46295e8b65fc{text-align: justify !important}
html.tg-preprod-page .tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec.tg-preprod-style-43af437fa6ec{font-size:16px !important;font-weight:normal !important;color:red !important}
html.tg-preprod-page .tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad.tg-preprod-style-1dd12b11ffad{margin-top:100px !important}
html.tg-preprod-page .tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4.tg-preprod-style-023f279b8cb4{width:30% !important;height:auto !important}
html.tg-preprod-page .tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9.tg-preprod-style-905008530ca9{text-align:center !important}
html.tg-preprod-page .tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc.tg-preprod-style-b84e3df017fc{text-align:center !important;color:#188873 !important;font-weight:bold !important}
html.tg-preprod-page .tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5.tg-preprod-style-dfcb6c64abf5{background-image: url("/assets/design-system/production/img/TG_pages_confection.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5.tg-preprod-style-63dbf5319ae5{text-align: center !important}
html.tg-preprod-page .tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6.tg-preprod-style-0d436be19cc6{width:30px !important;height:auto !important;margin-top:-10px !important}
html.tg-preprod-page .tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba.tg-preprod-style-e0c071289aba{text-align: left !important;line-height: 20px !important}
html.tg-preprod-page .tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5.tg-preprod-style-a3a492225fd5{text-align: center !important;width: 100% !important;margin-bottom: 20px !important}
html.tg-preprod-page .tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c.tg-preprod-style-4fd071677b4c{max-width: 100% !important;height: auto !important}
html.tg-preprod-page .tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b.tg-preprod-style-a612e8d2176b{margin-bottom:30px !important}
html.tg-preprod-page .tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d.tg-preprod-style-157e4d06140d{background-image: url("/assets/design-system/production/img/TG_pages_tissus.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6.tg-preprod-style-08d7941c3be6{margin-bottom:70px !important;background:#f5f5f5 !important}
html.tg-preprod-page .tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d.tg-preprod-style-97b0b9df699d{padding-left: 0px !important;padding-right: 0px !important}
html.tg-preprod-page .tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb.tg-preprod-style-0278d8b554eb{vertical-align: middle !important;display: table-cell !important;height: 315px !important;padding-left: 30px !important;width:335px !important}
html.tg-preprod-page .tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd.tg-preprod-style-6256511ccdbd{float: right !important;width:100% !important}
html.tg-preprod-page .tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641.tg-preprod-style-989f1b8e4641{display: inline !important}
html.tg-preprod-page .tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b.tg-preprod-style-05dc9ee7c14b{margin-bottom:70px !important}
html.tg-preprod-page .tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a.tg-preprod-style-6e22c58a7a6a{display: none !important}
html.tg-preprod-page .tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758.tg-preprod-style-56c114699758{margin-left:0px !important;margin-right:0px !important}
html.tg-preprod-page .tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e.tg-preprod-style-301647f5065e{margin-top:6px !important}
html.tg-preprod-page .tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95.tg-preprod-style-07ef11846c95{border: none !important;box-shadow:none !important;position:relative !important;top:0px !important;font-size:0.8em !important}
html.tg-preprod-page .tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c.tg-preprod-style-a109f3289f3c{text-transform:lowercase !important}
html.tg-preprod-page .tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa.tg-preprod-style-8b083613affa{margin-top:70px !important;cursor: pointer !important}
html.tg-preprod-page .tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1.tg-preprod-style-7812892510c1{width:5px !important;margin-left:5px !important}
html.tg-preprod-page .tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7.tg-preprod-style-ecfbb78629d7{cursor: pointer !important}
html.tg-preprod-page .tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456.tg-preprod-style-7c0f86ab5456{cursor: pointer !important}
html.tg-preprod-page .tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f.tg-preprod-style-1f1df5d2686f{padding-top:0px !important}
html.tg-preprod-page .tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9.tg-preprod-style-732c0f0258f9{margin-top:50px !important}
html.tg-preprod-page .tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2.tg-preprod-style-04c4b52283c2{width:70% !important;padding:5px 10px !important;border:1px solid #eee !important}
html.tg-preprod-page .tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715.tg-preprod-style-6df56bdad715{cursor:pointer !important;display: block !important}
html.tg-preprod-page .tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f.tg-preprod-style-3ccf7e38ad6f{margin-bottom: 200px !important}
html.tg-preprod-page .tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796.tg-preprod-style-65d1f1c3d796{display: none !important}
html.tg-preprod-page .tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f.tg-preprod-style-bb1375d1db7f{font-weight: bold !important}
html.tg-preprod-page .tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4.tg-preprod-style-6a8366a4c8b4{margin-bottom: 0px !important}
html.tg-preprod-page .tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c.tg-preprod-style-9a3532edd15c{display: flex !important}
html.tg-preprod-page .tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525.tg-preprod-style-faa0915ae525{text-align:center !important;width: 100% !important}
html.tg-preprod-page .tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d.tg-preprod-style-27074eee532d{display:flex !important;flex-direction: column !important;width:100% !important}
html.tg-preprod-page .tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9.tg-preprod-style-2af116911ce9{color:red !important;text-align:left !important;font-weight:bold !important}
html.tg-preprod-page .tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0.tg-preprod-style-3fb1964dfbd0{background:#eee !important;padding:20px !important}
html.tg-preprod-page .tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7.tg-preprod-style-7646e355e5b7{width: 25px !important}
html.tg-preprod-page .tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84.tg-preprod-style-e7de435a1d84{margin: auto !important;min-height: 676px !important}
html.tg-preprod-page .tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca.tg-preprod-style-bb721e6281ca{max-width: 726px !important;min-width: 726px !important}
html.tg-preprod-page .tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21.tg-preprod-style-bdb188269d21{background: white !important;min-height: 676px !important;max-height: 100% !important;float: right !important;overflow: auto !important}
html.tg-preprod-page .tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9.tg-preprod-style-2a284c1193a9{display: none !important;opacity: 0.7 !important}
html.tg-preprod-page .tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9.tg-preprod-style-b33e3c52d6c9{padding:0px 100px 50px 100px !important}
html.tg-preprod-page .tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb.tg-preprod-style-a32745c27adb{list-style-type: circle !important}
html.tg-preprod-page .tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29.tg-preprod-style-09b46ec04c29{color: #000 !important;font-weight: bold !important;background-color: #f6f6f6 !important}
html.tg-preprod-page .tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14.tg-preprod-style-5dbe95b0cb14{float:right !important}
html.tg-preprod-page .tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766.tg-preprod-style-f2d0c36e4766{background:url("/assets/design-system/production/img/Level5.jpg") !important;background-size: 790px 280px !important}
html.tg-preprod-page .tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983.tg-preprod-style-f3a7d6335983{background:url("/assets/design-system/production/img/Level4.jpg") !important;background-size: 790px 280px !important}
html.tg-preprod-page .tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2.tg-preprod-style-80b794a61ab2{background:url("/assets/design-system/production/img/Level3.jpg") !important;background-size: 790px 280px !important}
html.tg-preprod-page .tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38.tg-preprod-style-41b0dd6a5b38{background:url("/assets/design-system/production/img/Level2.jpg") !important;background-size: 790px 280px !important}
html.tg-preprod-page .tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296.tg-preprod-style-b8b7f0c72296{background:url("/assets/design-system/production/img/Level1.jpg") !important;background-size: 790px 280px !important}
html.tg-preprod-page .tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd.tg-preprod-style-12d85ae778bd{background-image: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2.tg-preprod-style-942ae682abc2{float: left !important;margin: 0 40px 0 0px !important;width:100% !important;max-width: 300px !important}
html.tg-preprod-page .tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d.tg-preprod-style-0fe744818f5d{clear:both !important}
html.tg-preprod-page .tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344.tg-preprod-style-a708c0347344{margin-bottom:20px !important;margin-top:30px !important;float: right !important;margin: 0 0px 0 40px !important;width:100% !important;max-width: 300px !important}
html.tg-preprod-page .tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395.tg-preprod-style-c9ffea80a395{float: right !important;margin: 0 0px 0 40px !important;width:100% !important;max-width: 300px !important}
html.tg-preprod-page .tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e.tg-preprod-style-3211eaddc96e{background-image: url("/assets/design-system/production/img/TG_pages_confection.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d.tg-preprod-style-616e674ad21d{border-bottom: none !important}
html.tg-preprod-page .tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e.tg-preprod-style-5d15cd06a00e{font-weight:bold !important;margin-bottom:20px !important}
html.tg-preprod-page .tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521.tg-preprod-style-d8fc114b7521{min-height:70px !important}
html.tg-preprod-page .tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9.tg-preprod-style-9662635ee0a9{background-image: url("/assets/design-system/production/img/Chemise_sur_mesure_home.jpg") !important;background-position:top !important;height:300px !important;padding-top:150px !important}
html.tg-preprod-page .tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8.tg-preprod-style-13bd32ebe3f8{text-align: center !important;margin-bottom: 20px !important}
html.tg-preprod-page .tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf.tg-preprod-style-fb5ec070f2bf{text-align: center !important}
html.tg-preprod-page .tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5.tg-preprod-style-7035cbc84ab5{float:right !important;margin-left:20px !important;margin-bottom: 20px !important;width:100% !important;height:auto !important}
html.tg-preprod-page .tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039.tg-preprod-style-ad6c58839039{min-height:90px !important}
html.tg-preprod-page .tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae.tg-preprod-style-7e85d7e73dae{min-height: 63px !important}
html.tg-preprod-page .tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96.tg-preprod-style-daf975bd9d96{display :none !important}
html.tg-preprod-page .tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74.tg-preprod-style-03740d9c0b74{width:100% !important;height :auto !important;margin:0px auto !important;margin-bottom: 20px !important}
html.tg-preprod-page .tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f.tg-preprod-style-a28c7225df8f{background:url("/assets/design-system/production/img/Oxford.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5.tg-preprod-style-3a5cf77f16c5{background:url("/assets/design-system/production/img/Popeline.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12.tg-preprod-style-4d9fa15b8e12{background:url("/assets/design-system/production/img/Filafil.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456.tg-preprod-style-8753ce310456{background:url("/assets/design-system/production/img/Twill.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b.tg-preprod-style-3040ee45f26b{background:url("/assets/design-system/production/img/Chevrons.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b.tg-preprod-style-3d4427e64b1b{text-decoration: underline !important;padding-buttom:10px !important}
html.tg-preprod-page .tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba.tg-preprod-style-08909b73cbba{background:url("/assets/design-system/production/img/lin.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f.tg-preprod-style-7bf7826be92f{background:url("/assets/design-system/production/img/denim.jpg") !important;background-size: 790px 308px !important}
html.tg-preprod-page .tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c.tg-preprod-style-8c782f40b63c{background:url("/assets/design-system/production/img/flanelle.jpg") !important;background-size: 790px 308px !important}
/* PREPROD AUTHORITY:END */

/* PRODUCT PARITY: keep the production alterations pictogram at its source width. */
html.tg-preprod-page.tg-preprod-css-produit-css .pictos img:not(.clock) {
    max-width: none;
}

/* CTA: centre les flèches SVG et image sur la ligne de texte. */
.tg-production-page :is(
    .cta,
    .btn-rose,
    .btn-rose-home,
    .btn-rose-1,
    .btn_vert,
    .btn-vert,
    .btn-payer,
    .pay-button,
    .pay-btn,
    .continue-btn,
    .btn-continue,
    .btn-result
) > :is(svg, img):last-child:not(.secure-payment-icon),
html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-main-css :is(
    .cta,
    .btn-rose,
    .btn-rose-home,
    .btn-rose-1,
    .btn_vert,
    .btn-vert,
    .btn-payer,
    .pay-button,
    .pay-btn,
    .continue-btn,
    .btn-continue,
    .btn-result
) > :is(svg, img):last-child:not(.secure-payment-icon) {
    align-self: center;
    display: inline-block;
    flex: 0 0 auto;
    margin-block: 0;
    position: static;
    top: auto;
    transform: translateY(-1.5px) !important;
    vertical-align: middle;
}

/* Home : visuels produits du bloc « En ce moment / At the moment ». */
html.tg-preprod-page .container:has(.h2-home + .steps) {
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px) !important;
}

html.tg-preprod-page .container:has(.h2-home + .steps) > .row {
    margin-left: 0;
    margin-right: 0;
}

html.tg-preprod-page .container:has(.h2-home + .steps) > .row > .col-xs-12 {
    float: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

html.tg-preprod-page .h2-home:has(+ .steps) {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
    text-align: center;
}

html.tg-preprod-page .h2-home + .steps {
    box-sizing: border-box;
    justify-content: center;
    margin: 18px auto 34px;
    max-width: 1160px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

html.tg-preprod-page .h2-home + .steps .stepe {
    flex: 0 0 auto;
}

html.tg-preprod-page .h2-home + .steps .line {
    flex: 1 1 80px;
    max-width: 130px;
}

@media (max-width: 767px) {
    html.tg-preprod-page .container:has(.h2-home + .steps) {
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 32px) !important;
    }

    html.tg-preprod-page .h2-home:has(+ .steps) {
        text-align: left;
    }

    html.tg-preprod-page .h2-home + .steps {
        align-items: stretch;
        gap: 10px;
        margin-bottom: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    html.tg-preprod-page .h2-home + .steps .stepe {
        min-height: 24px;
        width: 100%;
    }

    html.tg-preprod-page .h2-home + .steps .line {
        display: none;
    }
}

@media (min-width: 1420px) {
    html.tg-page-css-0bf95b359416 .catalogue-home,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home {
        box-sizing: border-box;
        padding-left: 25px !important;
        padding-right: 25px !important;
        width: 100% !important;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .catalogue,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .catalogue {
        gap: 0 !important;
        grid-template-columns: repeat(4, minmax(0, 354px)) !important;
        justify-content: space-between;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 1420px;
        width: 100% !important;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .line-product,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .line-product,
    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue,
    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue-photo,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue-photo {
        flex: 0 1 354px;
        height: auto;
        max-width: 354px;
        min-width: 0;
        width: 100%;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue-photo > a,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue-photo > a,
    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue-photo picture,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue-photo picture {
        display: block;
        width: 100%;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue-photo img,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue-photo img {
        height: 472px !important;
        max-width: 354px;
        min-width: 0;
        object-fit: cover;
        width: 100% !important;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .chemise-catalogue-photo,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .chemise-catalogue-photo {
        height: 472px;
    }

    html.tg-page-css-0bf95b359416 .catalogue-home .catalogue-details,
    html.tg-preprod-page.tg-preprod-page.tg-preprod-page.tg-preprod-css-index-css .catalogue-home .catalogue-details {
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding-left: 20px !important;
        padding-right: 20px;
        width: 100%;
    }
}

/* Parcours Perfect Fit : navigation latérale commune aux pages de mesures. */
.tg-production-page .tg-perfect-fit-layout {
    align-items: start;
    box-sizing: border-box;
    display: grid;
    gap: 70px;
    grid-template-columns: 280px minmax(0, 1fr);
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px;
    padding: 65px 20px 80px;
    width: 100%;
}
.tg-production-page .tg-perfect-fit-sidebar {
    min-width: 0;
    position: sticky;
    top: calc(var(--tg-production-header-height) + 25px);
}
.tg-production-page .tg-perfect-fit-layout--en {
    padding-top: 95px !important;
}
.tg-production-page .tg-perfect-fit-sidebar-heading {
    color: #102b24 !important;
    font-family: var(--font-family-oswald) !important;
    font-size: 23px !important;
    font-weight: 700 !important;
    letter-spacing: -.015em !important;
    line-height: 1.05 !important;
    margin: 0 0 28px !important;
    max-width: 245px !important;
    text-transform: uppercase !important;
}
.tg-production-page .tg-perfect-fit-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tg-production-page .tg-perfect-fit-sidebar-link {
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-bottom: 24px !important;
    padding-right: 28px;
    position: relative;
    text-decoration: none;
}
.tg-production-page .tg-perfect-fit-sidebar-link:last-child {
    margin-bottom: 0 !important;
}
.tg-production-page .tg-perfect-fit-sidebar-link:hover,
.tg-production-page .tg-perfect-fit-sidebar-link:focus-visible {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}
.tg-production-page .tg-perfect-fit-sidebar-link::after {
    color: var(--color-primary);
    content: "›";
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    right: 5px;
    top: -5px;
}
.tg-production-page .tg-perfect-fit-sidebar-title {
    font-size: 16px;
    font-weight: 400;
}
.tg-production-page .tg-perfect-fit-sidebar-link.active .tg-perfect-fit-sidebar-title {
    font-weight: 700;
}
.tg-production-page .tg-perfect-fit-sidebar-description {
    color: #a6ada9;
    font-size: 15px;
    margin-top: 2px;
}
.tg-production-page .tg-perfect-fit-main {
    min-width: 0;
    width: 100%;
}
.tg-production-page .tg-perfect-fit-main > .smartfit-container {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}
.tg-production-page .tg-perfect-fit-main .smartfit-contente {
    margin: 0 auto !important;
    min-height: 0 !important;
}
.tg-production-page .tg-perfect-fit-main .container {
    max-width: 100% !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .tg-production-page .tg-perfect-fit-layout {
        display: block;
        padding: 28px 16px 60px;
    }
    .tg-production-page .tg-perfect-fit-layout--en {
        padding-top: 52px !important;
    }
    .tg-production-page .tg-perfect-fit-sidebar {
        position: static;
    }
    .tg-production-page .tg-perfect-fit-sidebar-nav {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 32px;
    }
    .tg-production-page .tg-perfect-fit-sidebar-heading {
        font-size: 21px !important;
        margin-bottom: 22px !important;
        max-width: none !important;
        text-align: center !important;
    }
    .tg-production-page .tg-perfect-fit-sidebar-link {
        background: var(--color-surface-soft);
        border: 1px solid transparent;
        border-radius: 6px;
        justify-content: center;
        margin-bottom: 0 !important;
        min-height: 78px;
        padding: 11px 30px 11px 12px;
    }
    .tg-production-page .tg-perfect-fit-sidebar-link.active {
        background: var(--color-surface);
        border-color: var(--color-primary);
    }
    .tg-production-page .tg-perfect-fit-sidebar-link::after {
        right: 10px;
        top: calc(50% - 14px);
    }
    .tg-production-page .tg-perfect-fit-sidebar-title {
        font-size: 14px;
    }
    .tg-production-page .tg-perfect-fit-sidebar-description {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .tg-production-page .tg-perfect-fit-layout {
        padding-inline: 12px;
    }
    .tg-production-page .tg-perfect-fit-layout--en {
        padding-top: 40px !important;
    }
    .tg-production-page .tg-perfect-fit-sidebar-heading {
        font-size: 19px !important;
        line-height: 1.1 !important;
    }
    .tg-production-page .tg-perfect-fit-sidebar-link {
        min-height: 72px;
        padding-left: 10px;
        padding-right: 25px;
    }
    .tg-production-page .tg-perfect-fit-sidebar-title {
        font-size: 13px;
    }
    .tg-production-page .tg-perfect-fit-sidebar-description {
        font-size: 11px;
    }
}

/* Fiches produit : visuel _11 pleine largeur, puis galerie sur deux colonnes. */
@media (min-width: 769px) {
    html.tg-production-page #shirt .product-right-inner .h1-chemise {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }
    html.tg-production-page #shirt .phot {
        column-gap: 8px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 779px;
        row-gap: 8px !important;
        width: 100%;
    }
    html.tg-production-page #shirt .phot > picture.product-image-zoom {
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        min-width: 0;
        padding: 0 !important;
        width: 100% !important;
    }
    html.tg-production-page #shirt .phot > picture.product-image-zoom:first-of-type {
        grid-column: 1 / -1;
    }
    html.tg-production-page #shirt .phot > picture.product-image-zoom > img {
        display: block;
        height: auto !important;
        max-width: none !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    html.tg-production-page #shirt .phot {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

/* Fiches produit desktop : rapprocher uniquement la galerie du menu supérieur. */
@media (min-width: 992px) {
    html.tg-production-page #shirt:has(.tg-product-panel) .phot {
        transform: translateY(-15px);
    }
}

/* Fiches produit : panneau d’achat éditorial de la colonne droite. */
html.tg-production-page #shirt .tg-product-panel-host {
    display: block !important;
    padding: 0 !important;
}
html.tg-production-page #shirt .product-right-inner:has(.tg-product-panel) {
    box-sizing: border-box;
    padding: 24px clamp(34px, 4.5vw, 84px) 50px !important;
}
html.tg-production-page #shirt .tg-product-panel {
    color: #102b24;
    display: block;
    margin: 0 auto;
    max-width: 640px;
    width: 100%;
}
html.tg-production-page #shirt .tg-product-panel__eyebrow {
    color: #28634f;
    font-family: var(--font-family-oswald);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.3;
    margin: 0 0 16px !important;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__hero {
    display: block;
    margin-top: -15px;
}
html.tg-production-page #shirt .tg-product-panel__hero h1 {
    color: #0b211b;
    font-family: var(--font-family-oswald);
    font-size: 27px !important;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: .98 !important;
    margin: 22px 0 0 !important;
    max-width: 470px;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__price {
    align-items: flex-start;
    color: #102b24;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    gap: 18px;
    line-height: 1.1;
    margin-top: 12px;
    min-width: 0;
    padding-top: 0;
}
html.tg-production-page #shirt .tg-product-panel__price-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
html.tg-production-page #shirt .tg-product-panel__price del,
html.tg-production-page #shirt .tg-product-panel__price strong,
html.tg-production-page #shirt .tg-product-panel__price > span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}
html.tg-production-page #shirt .tg-product-panel__price del {
    color: #7e8695;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 33px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-top: 2px;
    text-decoration-color: #7e8695;
    text-decoration-thickness: 3px;
    white-space: nowrap;
}
html.tg-production-page #shirt .tg-product-panel__price strong {
    color: #0b211b;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 33px !important;
    font-weight: 500 !important;
    line-height: .95 !important;
    margin-top: 0;
    white-space: nowrap;
}
html.tg-production-page #shirt .tg-product-panel__price-label {
    background: transparent;
    border-radius: 0;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .02em;
    line-height: 1 !important;
    margin-top: 0;
    padding: 0;
    white-space: nowrap;
    text-transform: uppercase;
}
html.tg-production-page .tg-product-page-description {
    box-sizing: border-box;
    margin: clamp(90px, 8vw, 140px) auto clamp(90px, 8vw, 130px) !important;
    padding: 0 24px;
    width: 100%;
}
html.tg-production-page .tg-product-page-description > p {
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 auto !important;
    max-width: 650px;
    text-align: center;
}
html.tg-production-page .tg-product-fabric-info {
    box-sizing: border-box;
    margin: 0 auto clamp(90px, 8vw, 130px) !important;
    padding: 0 24px !important;
    width: 100% !important;
}
html.tg-production-page .tg-product-fabric-info__layout {
    display: block !important;
    margin: 0 auto;
    max-width: 1000px;
}
html.tg-production-page .tg-product-fabric-info__content {
    margin: 0 auto;
    max-width: 1000px;
    min-width: 0;
    width: 100%;
}
html.tg-production-page .tg-product-fabric-info__specifications {
    border: 1px solid #e5e7e4;
    border-radius: 11px;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 44px !important;
    max-width: 1000px;
    overflow: hidden;
    width: 100%;
}
html.tg-production-page .tg-product-fabric-info__spec {
    box-sizing: border-box;
    min-height: 122px;
    padding: 28px 30px !important;
}
html.tg-production-page .tg-product-fabric-info__spec:nth-child(-n+3) {
    border-bottom: 1px solid #e5e7e4;
}
html.tg-production-page .tg-product-fabric-info__spec:not(:nth-child(3n+1)) {
    border-left: 1px solid #e5e7e4;
}
html.tg-production-page .tg-product-fabric-info__spec dt,
html.tg-production-page .tg-product-fabric-info__detail h3 {
    color: #99a19c !important;
    font-family: var(--font-family-oswald) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .11em !important;
    line-height: 1.2 !important;
    margin: 0 0 9px !important;
    text-transform: uppercase;
}
html.tg-production-page .tg-product-fabric-info__spec dd {
    align-items: center;
    color: #172d26 !important;
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-family-oswald) !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    gap: 10px;
    line-height: 1.15 !important;
    margin: 0 !important;
}
html.tg-production-page .tg-product-fabric-info__thickness {
    display: inline-flex;
    gap: 4px;
}
html.tg-production-page .tg-product-fabric-info__thickness i {
    background: #e5e8e5;
    border: 1px solid #d8dcd8;
    border-radius: 2px;
    display: block;
    height: 10px;
    width: 15px;
}
html.tg-production-page .tg-product-fabric-info__thickness i.is-filled {
    background: #256047;
    border-color: #256047;
}
html.tg-production-page .tg-product-fabric-info__details {
    display: grid !important;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}
html.tg-production-page .tg-product-fabric-info__detail {
    border-top: 2px solid #226147;
    padding-top: 18px !important;
}
html.tg-production-page .tg-product-fabric-info__detail h3 {
    color: #28634f !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
}
html.tg-production-page .tg-product-fabric-info__detail p {
    color: #303b37 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Fiche produit : zoom réellement rattaché au viewport. */
html.tg-production-page.tg-product-zoom-open,
html.tg-production-page.tg-product-zoom-open body {
    overflow: hidden !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom {
    background: #fff !important;
    box-sizing: border-box !important;
    cursor: default !important;
    display: none !important;
    height: 100dvh !important;
    inset: 0 !important;
    margin: 0 !important;
    max-height: none !important;
    max-width: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 0 !important;
    position: fixed !important;
    transform: none !important;
    width: 100vw !important;
    z-index: 2147483000 !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom.active {
    display: block !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom .popup-content {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
    max-width: 1000px !important;
    padding: 32px 24px 70px !important;
    width: 100% !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom .popup-content img {
    display: block !important;
    height: auto !important;
    margin: 0 auto 30px !important;
    max-width: 900px !important;
    width: 100% !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom .close-popup {
    align-items: center !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dfe4e1 !important;
    border-radius: 50% !important;
    color: #102b24 !important;
    cursor: pointer !important;
    display: flex !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 300 !important;
    height: 48px !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 0 4px !important;
    position: fixed !important;
    right: max(20px, env(safe-area-inset-right)) !important;
    top: max(18px, env(safe-area-inset-top)) !important;
    touch-action: manipulation;
    width: 48px !important;
    z-index: 2147483001 !important;
}
html.tg-production-page > #zoomPopup.tg-product-zoom .close-popup:hover,
html.tg-production-page > #zoomPopup.tg-product-zoom .close-popup:focus-visible {
    border-color: #28634f !important;
    outline: 2px solid #28634f;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    html.tg-production-page > #zoomPopup.tg-product-zoom .popup-content {
        padding: 0 0 54px !important;
    }
    html.tg-production-page > #zoomPopup.tg-product-zoom .popup-content img {
        margin-bottom: 12px !important;
        max-width: none !important;
    }
    html.tg-production-page > #zoomPopup.tg-product-zoom .close-popup {
        height: 46px !important;
        right: max(12px, env(safe-area-inset-right)) !important;
        top: max(12px, env(safe-area-inset-top)) !important;
        width: 46px !important;
    }
}
html.tg-production-page #shirt .tg-product-panel__separator {
    border-top: 1px solid #e2e5e2;
    margin: 16px 0 17px;
}
html.tg-production-page #shirt .tg-product-panel__section-title {
    align-items: baseline;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
html.tg-production-page #shirt .tg-product-panel__section-title strong,
html.tg-production-page #shirt .tg-product-panel__style-heading > strong {
    background: linear-gradient(90deg, #2f5d49 0%, #3f8b73 34%, #4f79cf 68%, #a555c7 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-family-oswald);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__section-title span {
    color: #173b30;
    font-family: var(--font-family-oswald) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__colors .colors-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px !important;
    grid-template-columns: none !important;
    margin: 0 !important;
}
html.tg-production-page #shirt .tg-product-panel__colors .color-item {
    background: #f4f3ef;
    border: 1px solid #dedfdc;
    flex: 0 0 42px;
    height: 42px;
    padding: 2px;
    width: 42px;
}
html.tg-production-page #shirt .tg-product-panel__colors .color-item.active {
    border: 2px solid #185c44;
    padding: 2px;
}
html.tg-production-page #shirt .tg-product-panel__colors .color-item img {
    object-fit: cover;
}
html.tg-production-page #shirt .tg-product-panel__style-heading {
    align-items: center;
    display: flex;
    gap: 10px;
    margin: 34px 0 16px;
}
html.tg-production-page #shirt .tg-product-panel__edit {
    background: transparent;
    border: 0;
    color: #0f6a4d;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-oswald);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    min-width: 14px;
    padding: 0;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}
html.tg-production-page #shirt .tg-product-panel__edit::before {
    content: "\2193";
}
html.tg-production-page #shirt .tg-product-panel__edit:hover {
    color: #173b30;
}
html.tg-production-page #shirt .tg-product-panel__styles {
    display: grid;
    column-gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 66px);
    height: auto;
}
html.tg-production-page #shirt .tg-product-panel__style-card {
    align-items: center;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #e2e5e2;
    cursor: pointer;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 66px;
    padding: 8px 0;
    position: relative;
    transition: opacity .18s ease, background-color .18s ease;
}
html.tg-production-page #shirt .tg-product-panel__style-card::after {
    color: #0f6a4d;
    content: "\2192";
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .18s ease, transform .18s ease;
}
html.tg-production-page #shirt .tg-product-panel__style-card:hover,
html.tg-production-page #shirt .tg-product-panel__style-card:focus-within {
    background-color: rgba(255, 255, 255, .68);
}
html.tg-production-page #shirt .tg-product-panel__style-card:hover .tg-product-panel__style-icon,
html.tg-production-page #shirt .tg-product-panel__style-card:hover > div,
html.tg-production-page #shirt .tg-product-panel__style-card:focus-within .tg-product-panel__style-icon,
html.tg-production-page #shirt .tg-product-panel__style-card:focus-within > div {
    opacity: .42;
}
html.tg-production-page #shirt .tg-product-panel__style-card:hover::after,
html.tg-production-page #shirt .tg-product-panel__style-card:focus-within::after {
    opacity: 1;
    transform: translateY(-50%);
}
html.tg-production-page #shirt .tg-product-panel__style-icon {
    align-items: center;
    color: #28634f;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}
html.tg-production-page #shirt .tg-product-panel__style-icon img {
    display: block;
    height: 40px;
    object-fit: contain;
    width: 40px;
}
html.tg-production-page #shirt .tg-product-panel__style-card:nth-child(2) .tg-product-panel__style-icon img {
    filter: none;
    height: 34px;
    width: 34px;
}
html.tg-production-page #shirt .tg-product-panel__style-monogram {
    color: #28634f;
    font-family: var(--font-family-oswald);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
}
html.tg-production-page #shirt .tg-product-panel__style-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    transition: opacity .18s ease;
}
html.tg-production-page #shirt .tg-product-panel__style-card small,
html.tg-production-page #shirt .tg-product-panel__style-card strong {
    display: block !important;
}
html.tg-production-page #shirt .tg-product-panel__style-card small {
    color: #9aa19d;
    font-family: var(--font-family-regular);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.15;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__style-card strong {
    color: #102b24;
    font-family: var(--font-family-regular);
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.2;
}
html.tg-production-page #shirt .tg-product-panel__actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
html.tg-production-page #shirt .tg-product-panel__cta {
    align-items: center;
    background: #fff !important;
    border: 2px solid #a9abd8;
    border-radius: 0;
    color: #102b24;
    display: flex !important;
    font-family: var(--font-family-regular);
    font-size: 16px;
    font-weight: 400;
    gap: 12px;
    height: 56px;
    justify-content: center;
    letter-spacing: normal;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 0;
    padding: 0 40px !important;
    position: relative;
    white-space: nowrap;
    width: 100% !important;
    text-decoration: none;
}
html.tg-production-page #shirt .tg-product-panel__cta > span {
    align-items: center;
    display: inline-flex;
    line-height: 1;
}
html.tg-production-page #shirt .tg-product-panel__cta--fit > span:last-child {
    font-size: 19px;
    transform: translateY(-1px);
}
html.tg-production-page #shirt .tg-product-panel__cta--cart {
    background: #005539 !important;
    border-color: #005539;
    color: #fff;
    text-transform: uppercase;
}
html.tg-production-page #shirt .tg-product-panel__cta:hover {
    text-decoration: underline;
}
html.tg-production-page #shirt .tg-product-panel__cta--fit:hover {
    background: #f5f6f4 !important;
}
html.tg-production-page #shirt .tg-product-panel__cta--cart:hover {
    background: #1a6a4b !important;
}

/* Fiche produit : configurateur de style dans un volet latéral. */
html.tg-production-page .tg-product-style-drawer__backdrop {
    background: rgba(7, 28, 22, .38);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .25s ease;
    z-index: 2200;
}
html.tg-production-page .tg-product-style-drawer {
    background: #fff;
    box-shadow: -14px 0 42px rgba(9, 40, 31, .14);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform .3s ease;
    width: min(540px, 100vw);
    z-index: 2201;
}
html.tg-production-page.tg-product-style-drawer-open,
html.tg-production-page.tg-product-style-drawer-open body {
    overflow: hidden;
}
html.tg-production-page.tg-product-style-drawer-open .tg-product-style-drawer__backdrop {
    opacity: 1;
    pointer-events: auto;
}
html.tg-production-page.tg-product-style-drawer-open .tg-product-style-drawer {
    transform: translateX(0);
}
html.tg-production-page .tg-product-style-drawer__header {
    align-items: flex-start;
    border-bottom: 1px solid #e2e5e2;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    padding: 25px 28px 21px;
}
html.tg-production-page .tg-product-style-drawer__header small {
    color: #28634f;
    display: block;
    font-family: var(--font-family-oswald);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 4px;
}
html.tg-production-page .tg-product-style-drawer__header h2 {
    color: #0b211b;
    font-family: var(--font-family-oswald);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
html.tg-production-page .tg-product-style-drawer__close {
    align-items: center;
    background: transparent;
    border: 1px solid #d9dfdc;
    border-radius: 50%;
    color: #173b30;
    cursor: pointer;
    display: flex;
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 300;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 3px;
    width: 38px;
}
html.tg-production-page .tg-product-style-drawer__close:hover {
    background: #f4f7f5;
}
html.tg-production-page .tg-product-style-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 4px 28px 28px;
}
html.tg-production-page .tg-product-style-drawer__group {
    border: 0;
    border-bottom: 1px solid #e2e5e2;
    margin: 0;
    min-width: 0;
    padding: 23px 0 25px;
}
html.tg-production-page .tg-product-style-drawer__group:last-child {
    border-bottom: 0;
}
html.tg-production-page .tg-product-style-drawer__group legend {
    color: #173b30;
    display: block;
    float: none;
    font-family: var(--font-family-oswald);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    margin: 0 0 15px;
    padding: 0;
    text-transform: uppercase;
    width: 100%;
}
html.tg-production-page .tg-product-style-drawer__choices {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
html.tg-production-page .tg-product-style-drawer__choice {
    cursor: pointer;
    margin: 0;
    min-width: 0;
}
html.tg-production-page .tg-product-style-drawer__choice input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
html.tg-production-page .tg-product-style-drawer__choice > span {
    align-items: center;
    background: #fff;
    border: 1px solid #d9dfdc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 112px;
    justify-content: center;
    padding: 10px 7px 9px;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
html.tg-production-page .tg-product-style-drawer__choice:hover > span {
    background: #f7f9f8;
    border-color: #8ba99e;
}
html.tg-production-page .tg-product-style-drawer__choice input:checked + span {
    background: #f2f7f4;
    border-color: #175f47;
    box-shadow: inset 0 0 0 1px #175f47;
}
html.tg-production-page .tg-product-style-drawer__choice input:focus-visible + span {
    outline: 2px solid #175f47;
    outline-offset: 2px;
}
html.tg-production-page .tg-product-style-drawer__visual {
    align-items: center;
    color: #28634f;
    display: flex;
    height: 64px;
    justify-content: center;
    width: 76px;
}
html.tg-production-page .tg-product-style-drawer__visual img {
    display: block;
    height: 58px;
    object-fit: contain;
    width: 70px;
}
html.tg-production-page .tg-product-style-drawer__group[data-tg-style-group="buttons"] .tg-product-style-drawer__visual img {
    border-radius: 50%;
    height: 42px;
    width: 42px;
}
html.tg-production-page .tg-product-style-drawer__monogram {
    color: #28634f;
    font-family: var(--font-family-oswald);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
}
html.tg-production-page .tg-product-style-drawer__choice em {
    color: #263c35;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.15;
    min-height: 27px;
    text-align: center;
}
html.tg-production-page .tg-product-style-drawer__footer {
    background: #fff;
    border-top: 1px solid #e2e5e2;
    flex: 0 0 auto;
    padding: 18px 28px 22px;
}
html.tg-production-page .tg-product-style-drawer__footer button {
    align-items: center;
    background: #005539;
    border: 1px solid #005539;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--font-family-regular);
    font-size: 15px;
    font-weight: 600;
    gap: 14px;
    height: 54px;
    justify-content: center;
    padding: 0 24px;
    width: 100%;
}
html.tg-production-page .tg-product-style-drawer__footer button:hover {
    background: #1a6a4b;
    text-decoration: underline;
}
html.tg-production-page .tg-product-style-drawer__text label {
    display: grid;
    gap: 8px;
}
html.tg-production-page .tg-product-style-drawer__text label span {
    color: #60716b;
    font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html.tg-production-page .tg-product-style-drawer__text input {
    border: 1px solid #d9dfdc;
    box-sizing: border-box;
    font: 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
    height: 48px;
    padding: 10px 12px;
    width: 100%;
}

@media (max-width: 560px) {
    html.tg-production-page .tg-product-style-drawer__header {
        padding: 20px 20px 17px;
    }
    html.tg-production-page .tg-product-style-drawer__header h2 {
        font-size: 27px;
    }
    html.tg-production-page .tg-product-style-drawer__body {
        padding: 2px 20px 24px;
    }
    html.tg-production-page .tg-product-style-drawer__group {
        padding: 20px 0 22px;
    }
    html.tg-production-page .tg-product-style-drawer__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    html.tg-production-page .tg-product-style-drawer__choice > span {
        height: 106px;
    }
    html.tg-production-page .tg-product-style-drawer__footer {
        padding: 14px 20px max(16px, env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    html.tg-production-page .tg-product-style-drawer,
    html.tg-production-page .tg-product-style-drawer__backdrop {
        transition: none;
    }
}

@media (max-width: 991px) {
    html.tg-production-page #shirt:has(.tg-product-panel) {
        display: flex !important;
        flex-direction: column;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) > .col-md-7,
    html.tg-production-page #shirt:has(.tg-product-panel) > .col-sm-12:first-child,
    html.tg-production-page #shirt:has(.tg-product-panel) .phot {
        display: contents !important;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot > picture.product-image-zoom:first-of-type {
        order: 1;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .product-right-inner {
        order: 2;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot > picture.product-image-zoom:not(:first-of-type),
    html.tg-production-page #shirt:has(.tg-product-panel) .zoom-popup {
        order: 3;
    }
    html.tg-production-page #shirt .product-right-inner:has(.tg-product-panel) {
        padding: 24px 18px 50px !important;
    }
    html.tg-production-page #shirt .tg-product-panel {
        max-width: 680px;
    }
    html.tg-production-page .tg-product-fabric-info__layout {
        grid-template-columns: minmax(240px, 32vw) minmax(0, 1fr);
    }
    html.tg-production-page .tg-product-fabric-info__specifications {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    html.tg-production-page .tg-product-fabric-info__spec:nth-child(-n+3) {
        border-bottom: 0;
    }
    html.tg-production-page .tg-product-fabric-info__spec:not(:nth-child(3n+1)) {
        border-left: 0;
    }
    html.tg-production-page .tg-product-fabric-info__spec:nth-child(-n+4) {
        border-bottom: 1px solid #e5e7e4;
    }
    html.tg-production-page .tg-product-fabric-info__spec:nth-child(even) {
        border-left: 1px solid #e5e7e4;
    }
}

@media (max-width: 560px) {
    html.tg-production-page #shirt .tg-product-panel__hero {
        gap: 14px;
        margin-top: -15px;
    }
    html.tg-production-page #shirt .tg-product-panel__eyebrow {
        margin: 0 0 16px !important;
    }
    html.tg-production-page #shirt .tg-product-panel__hero h1 {
        font-size: 27px !important;
        margin: 22px 0 0 !important;
    }
    html.tg-production-page #shirt .tg-product-panel__price {
        align-items: flex-start;
        font-size: 21px;
        gap: 14px;
        margin-top: 10px;
        min-width: 76px;
    }
    html.tg-production-page #shirt .tg-product-panel__price-main {
        gap: 2px;
    }
    html.tg-production-page #shirt .tg-product-panel__price strong {
        font-size: 33px !important;
    }
    html.tg-production-page #shirt .tg-product-panel__price del {
        font-size: 33px !important;
    }
    html.tg-production-page #shirt .tg-product-panel__price-label {
        font-size: 16px !important;
        padding: 0;
    }
    html.tg-production-page .tg-product-page-description {
        margin: 60px auto 68px !important;
        padding-inline: 18px;
    }
    html.tg-production-page .tg-product-page-description > p {
        font-size: 23px;
        line-height: 1.35;
    }
    html.tg-production-page .tg-product-fabric-info {
        margin-bottom: 70px !important;
        padding-inline: 18px !important;
    }
    html.tg-production-page .tg-product-fabric-info__layout {
        display: block !important;
    }
    html.tg-production-page .tg-product-fabric-info__visual {
        aspect-ratio: 1 / 1;
        margin-bottom: 42px;
        min-height: 0;
    }
    html.tg-production-page .tg-product-fabric-info__heading {
        gap: 10px;
        margin-bottom: 22px !important;
    }
    html.tg-production-page .tg-product-fabric-info__heading h2 {
        font-size: 21px !important;
    }
    html.tg-production-page .tg-product-fabric-info__badge {
        font-size: 8px;
        padding: 6px 9px;
    }
    html.tg-production-page .tg-product-fabric-info__specifications {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 30px !important;
    }
    html.tg-production-page .tg-product-fabric-info__spec {
        min-height: 82px;
        padding: 15px 13px !important;
    }
    html.tg-production-page .tg-product-fabric-info__spec dd {
        font-size: 17px !important;
    }
    html.tg-production-page .tg-product-fabric-info__thickness {
        gap: 2px;
    }
    html.tg-production-page .tg-product-fabric-info__thickness i {
        width: 11px;
    }
    html.tg-production-page .tg-product-fabric-info__details {
        display: block !important;
    }
    html.tg-production-page .tg-product-fabric-info__detail + .tg-product-fabric-info__detail {
        margin-top: 28px;
    }
    html.tg-production-page #shirt .tg-product-panel__styles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 62px);
        height: auto;
    }
    html.tg-production-page #shirt .tg-product-panel__style-card {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 62px;
    }
    html.tg-production-page #shirt .tg-product-panel__style-icon {
        height: 36px;
        width: 36px;
    }
    html.tg-production-page #shirt .tg-product-panel__style-icon img {
        height: 34px;
        width: 34px;
    }
    html.tg-production-page #shirt .tg-product-panel__style-card:nth-child(2) .tg-product-panel__style-icon img {
        height: 28px;
        width: 28px;
    }
    html.tg-production-page #shirt .tg-product-panel__style-monogram {
        font-size: 14px;
    }
    html.tg-production-page #shirt .tg-product-panel__cta {
        padding-inline: 20px !important;
    }
}

/* En-tête : les pages internes ont un fond clair dès le haut de page. */
html.tg-production-page:not(.tg-production-main3) #header .menu2 a,
html.tg-production-page:not(.tg-production-main3) #header .divheader a,
html.tg-production-page:not(.tg-production-main3) #header .p-greeting {
    color: #102b24 !important;
}

/* Fiche produit : le header libère sa hauteur pendant le défilement. */
html.tg-production-page.tg-product-scroll-header-ready #header {
    transition: opacity .25s ease, transform .25s ease !important;
    will-change: opacity, transform;
}
html.tg-production-page.tg-product-scroll-header-hidden #header {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-100%) !important;
}

@media (min-width: 992px) {
    html.tg-production-page.tg-product-scroll-header-ready #shirt .product-right-inner:has(.tg-product-panel) {
        transition: top .25s ease;
    }
    html.tg-production-page.tg-product-scroll-header-hidden #shirt .product-right-inner:has(.tg-product-panel) {
        top: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.tg-production-page.tg-product-scroll-header-ready #header,
    html.tg-production-page.tg-product-scroll-header-ready #shirt .product-right-inner:has(.tg-product-panel) {
        transition: none !important;
    }
}

/* Couche commune à toutes les locales, indépendante des anciens paquets CSS. */
html.tg-unified-storefront #background3#background3,
html.tg-unified-storefront #background2#background2 {
    z-index: 999 !important;
}

html.tg-unified-storefront #header#header {
    z-index: 2000 !important;
}

html.tg-unified-storefront .menu-content.showe {
    background: #fff !important;
    filter: none !important;
    opacity: 1 !important;
    z-index: 2001 !important;
}

html.tg-unified-storefront .menu-panel.active {
    background: #fff !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Accueil : même header clair sur l'image pour toutes les langues. */
html.tg-unified-storefront.tg-storefront-home #header:not(.fixed-theme):not(:has(.menu-content.showe)) .menu2 a,
html.tg-unified-storefront.tg-storefront-home #header:not(.fixed-theme):not(:has(.menu-content.showe)) .divheader a,
html.tg-unified-storefront.tg-storefront-home #header:not(.fixed-theme):not(:has(.menu-content.showe)) .p-greeting {
    color: #fff !important;
}

/* Méga-menu Catalogue : liens à gauche, sélection « En ce moment » à droite. */
html.tg-production-page .menu-content:has(#catalogue .tg-catalogue-mega__products) {
    height: 520px;
}
html.tg-production-page #catalogue:has(.tg-catalogue-mega__products) {
    align-items: center;
    gap: 42px;
    justify-content: flex-start;
}
html.tg-production-page #catalogue .tg-catalogue-mega__links {
    flex: 0 0 36%;
    min-width: 0;
}
html.tg-production-page #catalogue .tg-catalogue-mega__intro {
    margin-bottom: 26px;
}
html.tg-production-page #catalogue .tg-catalogue-mega__intro h2 {
    color: #26312e;
    font-family: var(--font-family-oswald);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.08;
    margin: 0 0 10px;
    text-transform: uppercase;
}
html.tg-production-page #catalogue .tg-catalogue-mega__intro h2 span {
    font-size: 20px;
}
html.tg-production-page #catalogue .tg-catalogue-mega__intro p {
    color: #59615e;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    max-width: 360px;
}
html.tg-production-page #catalogue .tg-catalogue-mega__links > ul {
    columns: 2;
    margin: 0 !important;
    width: 100% !important;
}
html.tg-production-page #catalogue .tg-catalogue-mega__links li {
    break-inside: avoid;
    margin-bottom: 12px;
}
html.tg-production-page #catalogue .tg-catalogue-mega__products {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}
html.tg-production-page #catalogue .tg-catalogue-mega__products > h2 {
    color: #26312e;
    font-family: var(--font-family-oswald);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    margin: 0 0 16px;
    text-transform: uppercase;
}
html.tg-production-page #catalogue .tg-catalogue-mega__product-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
html.tg-production-page #catalogue .tg-catalogue-mega__product {
    color: #24312d;
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-decoration: none;
}
html.tg-production-page #catalogue .tg-catalogue-mega__product img {
    aspect-ratio: 352 / 367;
    display: block;
    height: 352px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}
html.tg-production-page #catalogue .tg-catalogue-mega__product span {
    color: #24312d;
    font-family: var(--font-family-oswald);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 10px;
    text-transform: uppercase;
}
html.tg-production-page #catalogue .tg-catalogue-mega__product:hover span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1100px) {
    html.tg-production-page #catalogue:has(.tg-catalogue-mega__products) {
        gap: 24px;
    }
    html.tg-production-page #catalogue .tg-catalogue-mega__links {
        flex-basis: 34%;
    }
    html.tg-production-page #catalogue .tg-catalogue-mega__links > ul {
        columns: 1;
    }
    html.tg-production-page #catalogue .tg-catalogue-mega__product img {
        height: 352px;
    }
}

/* Méga-menu Perfect Fit : visuels SmartFit à gauche, parcours de mesures à droite. */
html.tg-production-page .menu-content:has(#nouveautes .tg-perfect-fit-mega__body) {
    height: 520px;
}
html.tg-production-page #nouveautes:has(.tg-perfect-fit-mega__body) {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    max-width: 1380px;
    padding: 28px 0 20px;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__body {
    align-items: center;
    display: grid;
    gap: clamp(45px, 7vw, 105px);
    grid-template-columns: minmax(0, 570px) minmax(330px, 1fr);
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__visuals {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__video {
    background: #f1f0ed;
    display: block;
    height: 345px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__navigation {
    min-width: 0;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__navigation > h2 {
    color: #111;
    font-family: var(--font-family-oswald);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0 0 24px;
    text-transform: uppercase;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link {
    color: #111;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    padding-right: 28px;
    position: relative;
    text-decoration: none;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link::after {
    color: var(--color-primary);
    content: "›";
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    right: 4px;
    top: -5px;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link:hover .tg-perfect-fit-mega__link-title,
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link:focus-visible .tg-perfect-fit-mega__link-title {
    text-decoration: underline;
    text-underline-offset: 3px;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link-title {
    font-size: 16px;
    font-weight: 400;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__link-description {
    color: #a6ada9;
    font-size: 15px;
    font-weight: 400;
    margin-top: 1px;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__guarantee {
    align-items: center;
    color: #a6ada9;
    display: flex;
    font-size: 14px;
    gap: 10px;
    justify-content: center;
    line-height: 1.2;
    margin: 0;
}
html.tg-production-page #nouveautes .tg-perfect-fit-mega__guarantee svg {
    color: #467d68;
    flex: none;
}

@media (max-width: 1100px) {
    html.tg-production-page #nouveautes .tg-perfect-fit-mega__body {
        gap: 36px;
        grid-template-columns: minmax(0, 55%) minmax(300px, 1fr);
    }
    html.tg-production-page #nouveautes .tg-perfect-fit-mega__video {
        height: 320px;
    }
    html.tg-production-page #nouveautes .tg-perfect-fit-mega__navigation > h2 {
        font-size: 25px;
    }
}

/* Priorité finale : l'ancien agencement mobile utilisait display: contents. */
@media (max-width: 768px) {
    html.tg-production-page #shirt:has(.tg-product-panel) .phot {
        display: flex !important;
    }
    html.tg-production-page #shirt:has(.tg-product-panel) .phot > picture.product-image-zoom {
        order: initial !important;
    }
}
