<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: Ubuntu;
}

a {
	text-decoration: none;
    color: rgb(31, 77, 137);
}

ul {
    list-style: none;
}


.imgtext {
    height: 1em;
    width: auto;
    vertical-align: text-top;
}

.smaller {
    font-size: 90%;
    font-style: italic;
}

.bigger {
    font-size: 110%;
    font-weight: bold;
}

._table{
    display: table;
    width: 100%;
    table-layout: fixed;
}

._table ._column{
    vertical-align: top;
    padding: 15px;
}

._table ._line{
    display: table-row;
}

._table ._border+._border{
   border-left: 1px solid;
}

._table .aside{
    width: 25%;
}



.produits {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-column-gap: 4%;
    grid-row-gap: 2em;
}

.produits&gt;div {
    border-top: 1px solid lightgray;
    display: grid;
    grid-template-columns: 75% 23%;
    grid-auto-rows: max-content;
    grid-column-gap: 2%;
}

.new .produits&gt;div {
    display: block;
}

.produits&gt;div&gt;:not(:last-child) {
    height: 10vw;
}

.produits&gt;div&gt;:nth-child(2) {
    margin-top: 25%;
    margin-bottom: -25%;
}

.produits .imgprod {
    display: block;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
}

.produits&gt;div&gt;:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 5px;
}

.middle {
    vertical-align: middle !important;
}

form .errors {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin: 5px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
}

form .errors p {
    margin: 0;
}

html, body {
    height: 100%;
    margin: 0;
    color: #444444;
    background-color: #F9F9F9;
}

#body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}
header {
    padding: 20px;
}
header, footer{
    background-color: #F2F2F2;
}
footer {
    padding: 20px 0;
}

header:after, nav:after {
  content: "";
  display: table;
  clear: both;
}

header #banner img {
    width: 100%;
    height: auto;
}

header #search {
    float: right;
    margin-top: -50px;
}

header #search form{
    border: solid 1px #004987;
    border-radius: 5px;
    color: #004987;
    padding: 10px;
    width: 300px;

}

header #search_input, header #searchsubmit{
    border: 0;
    padding: 0;
    background-color: #F2F2F2;
    outline: none;
}

header #searchsubmit {
    float: right;
}

header #search_input {
    width: calc(100% - 24px);
}

header #search a {
    font-size: 0.8em;
}
header #panier {
    float: right;
}

header #panier img {
    height: 32px;
    width: auto;
    vertical-align: middle;
}

.bubble {
    background: #535353;
    color: white;
    padding: 5px;
    border-radius: 9px;
}

.bubble::after {
    content: "â–º";
    position: absolute;
    color: #535353;
    margin-top: 2px;
}

header #contact {
    margin-left: 3%;
    font-size: 0.9em;
}

nav {
    background: #EAEAEA;
    font-size: 0.9em;
    z-index: 100;
}

nav&gt;a&gt;.displayer{ display: none; }

nav&gt;ul {
    padding: 5px 0;
    margin: 0 auto;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav li {
    padding: 10px 15px;
    transition: background-color ease 0.7s;
}

nav&gt;ul&gt;li {
    display: block;
    text-transform: uppercase;
    background-color: #E3E3E3;
    border: #BCBCBC solid 1px;
    border-left: white solid 1px;
    border-top: white solid 1px;
}

nav ul li a {
    color: #444444;
}

nav&gt;ul&gt;li:hover {
    background-color: #ccc;
}

nav ul ul {
    padding: 0;
    display: none;
    position: absolute;
    color: #999;
    text-transform: none;
    font-size: 90%;
    margin: 10px -15px;
    flex-direction: column;
}

nav ul ul ul {
    top: 0;
    margin-left: calc(100% - 15px);
    margin-top: -1px;
}

nav ul ul a {
    color: #999;
}

nav ul li:hover&gt;ul {
    display: flex;
}

nav ul ul li {
    position: relative;
    display: block;
    background-color: #222222;
    border: #111 solid 1px;
    border-left: #444444 solid 1px;
    border-top: #444444 solid 1px;
    font-size: 95%;
}

nav ul ul li:hover {
    background-color: #333;
}

nav ul ul ul li {
    width: 200px;
}
article {
    flex: 1;
    padding: 5px 30px;
}

article section{
    padding: 5px;
}

article h1{
    font-size: 1.5em;
}

article h2{
    font-size: 1.2em;
    font-weight: normal;
}

article h3{
    font-size: 1.1em;
}

article form input, article form select, article form textarea, article form button {
    color: #444444;
    border: 1px solid #aaa;
    background: #f8f8f8;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
    font-size: 14px;
    line-height: 24px;
}
article form input:invalid, article form select:invalid, article form textarea:invalid, button:invalid { background: #fdd; }
/*article form input:disabled, article form select:disabled, article form textarea:disabled, button:disabled { background: #fcc; }*/
article form input:disabled, article form select:disabled, article form textarea:disabled, button:disabled { background: #999; }
article form .inputright input, article form .inputright select, article form .inputright textarea, article form .inputright button { float: right; }

article form input[type="submit"], button {
    background-color: #F1F1F1;
    border-radius: 15px;
    padding: 5px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

article form td {
    padding: 10px 24px;
    vertical-align: top;
}

article .videos{
    text-align: center;
}
article .video{
    display: inline-block;
    text-align: center;
}
article .video video{
    width: 100%;
}
article .home .cat div{
    width: 24%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    position: relative;
    min-height: 100px;
}
article .home .cat div h3{
    margin: 0;
}

article .home .cat div h3 img{
    width: 100%;
}

article .home .cat div p{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    text-align: left;
    overflow: auto;
    padding: 10px;
    background: rgba(1,1,1,0.6);
    color: white;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
}

article .home .cat div:hover p{
    opacity: 1;
}

article .catalogues .catalogue {
    width: 19%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5%;
}

article .catalogues .catalogue div{
    margin: 0 20%;
}

article .catalogues .catalogue img {
    border: 1px solid lightgray;
}

article .panier .date {
    float: right;
}

article .panier table {
    width: 100%;
    text-align: center;
}

article .panier td, article .panier th {
    border: 1px solid lightgray;
    padding: 5px 30px;
}

article .panier .img-button{
    width: 20px;
}

article .panier .hidden {
    border: 0;
}

article .panier .validate {
    width: 75%;
}

article .panier .validate button {
    width: 100%;
}

article .admin table {
    text-align: center;
}

article .admin td, article .admin th {
    border: 1px solid lightgray;
    padding: 5px 30px;
}

article .new ._table ._table{
    border-top: 1px solid lightgray;
}

.tabs .tab-bar {
    border-bottom: 1px solid lightgray;
}

article .tabs .tab-bar button {
    border: 1px solid lightgray;
    margin: 5px 2px 0px;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: bold;
    color: rgb(85,85,85);
    border-radius: 5px 5px 0 0;
}

article .tabs .tab-bar .active {
    background-color: lightgray;
}

article .tabs .tab {
    margin: 10px;
}

article .tabs .tab {
    display: none;
}

article .all-catalogues .catalogue {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5%;
}

article .all-catalogues .catalogue div{
    margin: 0 20%;
}

article .all-catalogues .catalogue img {
    border: 1px solid lightgray;
}

article .recherche .tabs .tab-bar button,
article .detail-produit .tabs .tab-bar button{
    margin: 2px 2px -1px;
}

article .detail-produit .optalt {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    border-top: 1px solid lightgray;
    margin: 2.5%;
}

article .detail-produit .optalt p {
    padding: 0 20px;
}

article .detail-produit .optalt .imgUrl {
    width: 50%;
}

article .detail-produit .photos {
    width: 45%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin: 2%
}

article .recherche form .field {
    border: solid 1px #004987;
    border-radius: 5px;
    color: #004987;
    padding: 10px;
    width: 75%;
    background-color: #F2F2F2;
}

footer {
    text-align: center;
    font-size: 0.9em;
    padding: 15px;
}

#backToTop {
    display: inline-block;
    border-radius: 50%;
    background-color: #004987;
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#backToTop::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 50px;
    color: #fff;
  }
  #backToTop:hover {
    cursor: pointer;
    background-color: #333;
  }
  #backToTop:active {
    background-color: #555;
  }
  #backToTop.show {
    opacity: 1;
    visibility: visible;
  }
/* Cookies */

#cookies-banner {
    position:fixed;
    text-align:center;
    bottom:0;
    left:0;
    z-index:9999;
    width:100%;
    border-radius:0;
    padding:5px 10px;
    vertical-align:middle;
    margin:0;
    background-color:#084988;
    color:#F9F9F9;
}
#info {
    color:#F9F9F9
}
#cookies-banner &gt; button {
    border:1px solid #F9F9F9;
    background-color: #F9F9F9;
    color: #000;
}
#deny-cookie {
    margin-left:5px
}

@media screen and (min-width:800px)
{    
    .imgfill {
        width: 100%;
        height: auto;
    }
    ._table .aside img, .produit img{
        width: auto;
        max-width: 100%;
    }
    ._table ._column{
        display: table-cell;
    }
    article .all-catalogues .catalogue {
        width: 19%;
    }
    #body {
        margin: 0 10%;
        padding: 0 10px;
    }
    header #panier {
        margin-top: 10px;
    }
    #img_societe1, #img_societe2 {
        width: 300px;
        height: 200px;
    }
    #img_societe3 {
        width: 700px;
    }
    article {
        background-color: white;        
    }
    .icon-sub {
        display: none;
        float: right;
    }
    article .video {
        width: 49%;
    }
    article .home .cat div{
        margin: 1% 4%;
    }
    .contact-form-left-sidebar {
        width: 270px;
        float: left;
    }
    .contact-form-right-sidebar {
        width: 270px;
        float: left;
        text-align: left;
        left: 0;
        margin-left: 100px;
    }
    article .detail-produit .optalt {
        width: 28%;
    }
}

@media screen and (max-width:800px) {
    .ref_column {
        width: 100% !important;
    }
    .ref_column2 {
        display: none;
    }
    .p-disabled {
        display: none;
    }
    .contact-form-left-sidebar {
        width: 100%;
    }
    .contact-form-right-sidebar {
        width: 100%;
    }
    ._table ._column{
        vertical-align: top;
        padding: 15px;
    }
    .tab {
        text-align: center;
    }
    article .all-catalogues .catalogue {
        width: 30%;
    }
    header #panier {
        margin-top: -85px;
    }
    #img_societe1, #img_societe2, #img_societe3 {
        width: 100%;
    }
    #img_societe2 {
        margin-top: 16px;
    }
    article {
        margin-top:60px
    }
    .icon-sub {
        display: inline-block;
        float: right;
    }
    article .video {
        width: 100%; 
        margin-top: 20px;
    }
    #img_partners {
        text-align: center;
    }
    article .home .cat div{
        margin-bottom: 20px;
    }
    ._table ._column{
        display: inherit;
    }
    nav ul li a {
        font-size: 0.8em;
    }    
    #p_fiche_technique {
        margin-left: 30px;
    }
    ._table ._border+._border{
        border-left: 0px solid;
        border-top: 1px solid;
    }

    header #search{
        float: none;
        margin: 5px;
    }

    header #search form{
        width: auto;
    }

    nav&gt;a&gt;.displayer{
        display: block;
        position: fixed;
        margin: 20px 0 0 30px;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        background-color: #084988;
        z-index: 99;
    }
    nav&gt;a&gt;.displayer&gt;.icon{
        color: rgb(134, 122, 122);
        display: block;
        margin: 11px 0 0 15px;
        font-size: 20px;
        color: #fff;
    }
    nav&gt;ul{
        display: none;
        position: fixed;
        margin-top: 60px;
        width: 200px;
    }
    nav&gt;ul&gt;li&gt;ul{
        margin-left:184px;
        width: 200px;
    }

    article .home .cat div{ width: 100%; }

    article .detail-produit .photos, .optalt{
        width: 100%;
    }

    article .detail-produit .produit .inline p {
        display: inline-block;
    }

    .produits {
        grid-template-columns: auto;
    }

    .produits&gt;div&gt;:not(:last-child) {
        height: 200px;
    }
}</pre></body></html>