@charset 'UTF-8';
/*-----------------------------------------------------------------------------------------------------
    [Master Stylesheet]
		by : mr-rayures.com
    Version : 1.0

    Projet : #PILF
    Website : http://pixelsidliketofuck.com

-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [variables]

    + Neat
    + Breackpoint
    + Typo
-------------------------------------------------------------------------------------------------------*/
/* Neat Overrides */
/* Breackpoint */
/* Typo */
/*-----------------------------------------------------------------------------------------------------
    [mixins]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [settings]
-------------------------------------------------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

/*-----------------------------------------------------------------------------------------------------
    [Reset]

    http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
-------------------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
    /*font: inherit;
  vertical-align: baseline;*/
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
    /*list-style: none;*/
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* quick print reset */
@media print {
  p,
    blockquote {
    orphans: 2;
    widows: 2;
  }

  blockquote,
    ul,
    ol {
    page-break-inside: avoid;
  }

  h1,
    h2,
    h3,
    caption {
    page-break-after: avoid;
  }

  * {
    color: black !important;
    background: transparent !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
    /* Black prints faster: h5bp.com/s */
  a,
    a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: ' (' attr(href) ')';
  }

  abbr[title]:after {
    content: ' (' attr(title) ')';
  }

  .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
    content: '';
  }
    /* Don't show links for images, or javascript/internal links */
    pre,
    blockquote
    {
        border: 1px solid #999;

        page-break-inside: avoid;
    }
    thead
    {
        display: table-header-group;
    }
    /* h5bp.com/t */
    tr,
    img
    {
        page-break-inside: avoid;
    }
    img
    {
        max-width: 100% !important;
    }
    @page
    {
        margin: .5cm;
    }
    p,
    h2,
    h3
    {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3
    {
        page-break-after: avoid;
    }
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 767px)
{
    html,
    body
    {
        -webkit-text-size-adjust: 100%;
    }
}

/*-----------------------------------------------------------------------------------------------------
    [colors]
-------------------------------------------------------------------------------------------------------*/
/* Application colors */
/* Typography colors */
/* Shades of grey */
/* Alerts colors */
/* Social colors */
/*-----------------------------------------------------------------------------------------------------
    [typography]
-------------------------------------------------------------------------------------------------------*/
body
{
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    line-height: 140%;

    color: #313131;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: normal;
    line-height: 120%;

    margin: 0;

    color: #000;
}

h1,
.h1-like
{
    font-size: 22px;
}
@media only screen and (max-width: 767px)
{
    h1,
    .h1-like
    {
        font-size: 20px;
    }
}

h2,
.h2-like
{
    font-size: 18px;
}
@media only screen and (max-width: 767px)
{
    h2,
    .h2-like
    {
        font-size: 18px;
    }
}

h3,
.h3-like
{
    font-size: 16px;
}
@media only screen and (max-width: 767px)
{
    h3,
    .h3-like
    {
        font-size: 16px;
    }
}

h4,
.h4-like
{
    font-size: 14px;
}
@media only screen and (max-width: 767px)
{
    h4,
    .h4-like
    {
        font-size: 14px;
    }
}

h5,
.h5-like
{
    font-size: 14px;
}

h6,
.h6-like
{
    font-size: 14px;
}

/*-----------------------------------------------------------------------------------------------------
    [helpers]

-------------------------------------------------------------------------------------------------------*/
.clear
{
    clear: both;
}

.clearfix:after
{
    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: ' ';
}

@media only screen and (max-width: 767px)
{
    .desktop-only
    {
        display: none !important;
    }
}

.mobile-only
{
    display: none !important;
}
@media only screen and (max-width: 767px)
{
    .mobile-only
    {
        display: block !important;
    }
}

/*-----------------------------------------------------------------------------------------------------
    [Grid]

    A grid with NEAT
    DOC : http://thoughtbot.github.io/neat-docs/latest/

-------------------------------------------------------------------------------------------------------*/
.container
{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 10px;
}
.container::after
{
    display: block;
    clear: both;

    content: '';
}

.row
{
    display: block;
}
.row::after
{
    display: block;
    clear: both;

    content: '';
}

.omega
{
    margin-right: 0;
}

@media only screen and (max-width: 767px)
{
    .grid_1
    {
        display: block;
        float: left;

        width: 6.55904%;
        margin-right: 1.9356%;
    }
    .grid_1:last-child
    {
        margin-right: 0;
    }
    .grid_2
    {
        display: block;
        float: left;

        width: 15.05367%;
        margin-right: 1.9356%;
    }
    .grid_2:last-child
    {
        margin-right: 0;
    }
    .grid_3
    {
        display: block;
        float: left;

        width: 23.5483%;
        margin-right: 1.9356%;
    }
    .grid_3:last-child
    {
        margin-right: 0;
    }
    .grid_4
    {
        display: block;
        float: left;

        width: 32.04294%;
        margin-right: 1.9356%;
    }
    .grid_4:last-child
    {
        margin-right: 0;
    }
    .grid_5
    {
        display: block;
        float: left;

        width: 40.53757%;
        margin-right: 1.9356%;
    }
    .grid_5:last-child
    {
        margin-right: 0;
    }
    .grid_6
    {
        display: block;
        float: left;

        width: 49.0322%;
        margin-right: 1.9356%;
    }
    .grid_6:last-child
    {
        margin-right: 0;
    }
    .grid_7
    {
        display: block;
        float: left;

        width: 57.52684%;
        margin-right: 1.9356%;
    }
    .grid_7:last-child
    {
        margin-right: 0;
    }
    .grid_8
    {
        display: block;
        float: left;

        width: 66.02147%;
        margin-right: 1.9356%;
    }
    .grid_8:last-child
    {
        margin-right: 0;
    }
    .grid_9
    {
        display: block;
        float: left;

        width: 74.5161%;
        margin-right: 1.9356%;
    }
    .grid_9:last-child
    {
        margin-right: 0;
    }
    .grid_10
    {
        display: block;
        float: left;

        width: 83.01073%;
        margin-right: 1.9356%;
    }
    .grid_10:last-child
    {
        margin-right: 0;
    }
    .grid_11
    {
        display: block;
        float: left;

        width: 91.50537%;
        margin-right: 1.9356%;
    }
    .grid_11:last-child
    {
        margin-right: 0;
    }
    .grid_12
    {
        display: block;
        float: left;

        width: 100%;
        margin-right: 1.9356%;
    }
    .grid_12:last-child
    {
        margin-right: 0;
    }
}

/*-----------------------------------------------------------------------------------------------------
    [commons]
-------------------------------------------------------------------------------------------------------*/
*
{
    box-sizing: border-box;
}

/*::-webkit-selection { background : $selection; }
::-moz-selection { background : $selection; }
::selection { background : $selection; }*/
input::-ms-clear,
input::-ms-reveal
{
    display: none;
}

*:focus
{
    outline: none;
}

*
{
    text-rendering: auto;
}

html
{
    height: 100%;
}

body
{
    background: #fff;
}

a
{
    text-decoration: none;

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

    color: #313131;
}

ul,
ol
{
    margin: 0;
}
ul li,
ol li
{
    margin: 0;

    list-style: none;
}

img
{
    display: block;

    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 767px)
{
    img
    {
        width: 100%;
        max-width: 100%;
    }
}

blockquote
{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 170%;

    color: #313131;
}
blockquote p:before
{
    content: ' “ ';

    color: #b5b5b5;
}
blockquote p:after
{
    content: ' ” ';

    color: #b5b5b5;
}

hr
{
    height: 1px;

    border: none;
    background: #b5b5b5;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}
table th
{
    padding: .2em;

    text-align: left;

    border: 1px solid gray;
}
table td
{
    padding: .2em;

    border: 1px solid gray;
}

.txtleft
{
    text-align: left;
}

.txtright
{
    text-align: right;
}

.txtcenter
{
    text-align: center;
}

.hidden
{
    visibility: hidden;
}

/*-----------------------------------------------------------------------------------------------------
    [Buttons]

    + Primary
    + Secondary
-------------------------------------------------------------------------------------------------------*/
.button
{
    /* === Primary === */
    /* === Secondary === */
}
.button.primary
{
    font-size: 16px;
    font-weight: 600;

    display: inline-block;

    min-width: 260px;
    height: 40px;
    padding: 12px 20px 0 20px;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    border: none;
    background: #151515;
}
@media only screen and (max-width: 1200px)
{
    .button.primary
    {
        min-width: 0;
    }
}
.button.primary.alt
{
    background: #313131;
}
.button.primary.gold
{
    background: #a98a3d;
}
.button.primary.left-icon
{
    position: relative;

    padding-right: 40px;
    padding-left: 50px;
}
.button.primary.left-icon [class*='icon-']
{
    position: absolute;
    top: 10px;
    left: 15px;
}
.button.primary.left-icon [class*='icon-']:before
{
    font-size: 18px;
}
.button.primary:hover
{
    box-shadow: 0 0 5px rgba(0, 0, 0, .73);
}
.button.secondary
{
    font-size: 14px;
    font-weight: 300;

    display: inline-block;

    min-width: 260px;
    height: 40px;
    padding: 12px 20px 0 20px;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
    text-align: center;

    color: #000;
    border: none;
    background: #f4f4f4;
}
@media only screen and (max-width: 1200px)
{
    .button.secondary
    {
        min-width: 0;
    }
}
.button.secondary:hover
{
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
.button.gold
{
    background: #a98a3d;
}
.button.show-password
{
    width: 40px;
    height: 40px;

    border: none;
    background: none;
}
.button.show-password [class*='icon-']:before
{
    font-size: 18px;

    position: relative;
    top: 4px;

    color: #cfcfcf;
}
.button.show-password:hover [class*='icon-']:before,
.button.show-password.active [class*='icon-']:before
{
    color: #313131;
}

button.button.primary,
button.button.secondary,
input[type='submit'].button.primary,
input[type='submit'].button.secondary
{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.logout
{
    font-size: 14px;

    color: #7b7b7b;
}
.logout [class*='icon-']
{
    margin-right: 8px;
}
.logout [class*='icon-']:before
{
    font-size: 8px;
}

.button-back
{
    color: #1d1d1d;
}
.button-back [class*='icon-']
{
    margin-right: 5px;
}
.button-back [class*='icon-']:before
{
    font-size: 10px;
}
.button-back:hover
{
    color: #7b7b7b;
}

.button-addrow
{
    width: 100%;
    height: 40px;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
    text-align: center;

    border: none;
    border-radius: 4px;
    background: #f4f4f4;
}
.button-addrow span
{
    font-weight: 300;
}
.button-addrow span [class*='icon-']
{
    margin-right: 5px;

    color: #7c7c7c;
}
.button-addrow span [class*='icon-']:before
{
    font-size: 10px;

    position: relative;
}
.button-addrow:hover
{
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
}

/*-----------------------------------------------------------------------------------------------------
    [overlay]
-------------------------------------------------------------------------------------------------------*/
.overlay
{
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    background: rgba(0, 0, 0, .8);
}

/*-----------------------------------------------------------------------------------------------------
    [Forms]

    + Basics
        _Error

    + Custom select
    + Custom Checkbox & Radio
-------------------------------------------------------------------------------------------------------*/
::-webkit-input-placeholder
{
    font-size: 13px;
    /* Chrome/Opera/Safari */
    font-style: italic;

    color: #a6a6a6;
}

::-moz-placeholder
{
    font-size: 13px;
    /* Firefox 19+ */
    font-style: italic;

    color: #a6a6a6;
}

:-ms-input-placeholder
{
    font-size: 13px;
    /* IE 10+ */
    font-style: italic;

    color: #a6a6a6;
}

:-moz-placeholder
{
    font-size: 13px;
    /* Firefox 18- */
    font-style: italic;

    color: #a6a6a6;
}

/* Basics
-------------------------------------------------------------------------------------------------------*/
form label
{
    display: block;

    margin-bottom: 10px;

    color: #313131;
}

form button,
form input,
form select,
form textarea
{
    font-family: 'Hind', sans-serif;
    font-size: 100%;
}

form input[type='text'],
form input[type='email'],
form input[type='date'],
form input[type='password'],
form textarea,
form select
{
    width: 100%;
    height: 40px;
    padding: 0 10px;

    color: #313131;
    border: 1px solid #bbb;
    -webkit-border-radius: 0;
    background: #fff;

    -webkit-appearance: none !important;
}

form select[multiple='multiple']
{
    height: auto;
}

form input[type='radio'],
form input[type='checkbox']
{
    margin: 0 5px 0 0;
}

form input:disabled
{
    font-style: italic;

    background: #b5b5b5;
    box-shadow: none;
}

form input[type='text']:focus,
form input[type='email']:focus,
form input[type='date']:focus,
form input[type='password']:focus,
form textarea:focus,
form select:focus
{
    border: 1px solid #666;
}

form textarea
{
    width: 100%;
    height: 150px;
    padding: 10px;

    vertical-align: top;
}

form button,
form input[type='submit']
{
    cursor: pointer;
}

/* Custom select pointer
/* DOC : Filament Group | Doc : https://github.com/filamentgroup/select-css/
-------------------------------------------------------------------------------------------------------*/
.custom-select
{
    position: relative;

    display: block;

    max-width: 470px;

    border: 1px solid #fff;
}
.custom-select select
{
    box-sizing: border-box;
    width: 100%;
    margin: 0;

    border: 1px solid transparent;
    outline: none;
    background: #fff;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.custom-select:after
{
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 10px;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';
    pointer-events: none;

    background-image: url('../img/custom-select-pointer.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
.custom-select select:focus
{
    /*border-color: $grey-darker;*/
    border-color: #fff;
    outline: none;
}
.custom-select select option
{
    font-weight: normal;
}
.custom-select.grey
{
    border: 1px solid #bbb;
}
.custom-select.grey:after
{
    background-image: url('../img/custom-select-pointer-grey.png');
}

/* START OF UGLY BROWSER-SPECIFIC HACKS */
x:-o-prefocus,
.custom-select::after
{
    display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .custom-select select::-ms-expand
    {
        display: none;
    }
    .custom-select select:focus::-ms-value
    {
        color: #222;
        background: transparent;
    }
}

@-moz-document url-prefix()
{
    .custom-select
    {
        overflow: hidden;
    }
    .custom-select select
    {
        width: 120%;
        width:      calc(100% + em);
    }
}

.custom-select select:-moz-focusring
{
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/* Custom Checkbox & Radio
/* DOC : http://www.creativejuiz.fr/blog/tutoriels/personnaliser-aspect-boutons-radio-checkbox-css
-------------------------------------------------------------------------------------------------------*/
form .custom-checkbox,
form .custom-radio
{
    line-height: 100%;
}

form .custom-radio input + label
{
    margin-right: 20px;
    padding-top: 4px;
}

form .custom-checkbox input[type='checkbox']:not(:checked),
form .custom-checkbox input[type='checkbox']:checked,
form .custom-radio input[type='radio']:not(:checked),
form .custom-radio input[type='radio']:checked
{
    position: absolute;
    left: -9999px;
}

form .custom-checkbox input[type='checkbox']:not(:checked) + label,
form .custom-checkbox input[type='checkbox']:checked + label,
form .custom-radio input[type='radio']:not(:checked) + label,
form .custom-radio input[type='radio']:checked + label
{
    position: relative;

    padding-left: 30px;

    cursor: pointer;
}

form .custom-checkbox label
{
    margin-bottom: 10px;
}

form .custom-checkbox input[type='checkbox']:not(:checked) + label:before,
form .custom-checkbox input[type='checkbox']:checked + label:before,
form .custom-radio input[type='radio']:not(:checked) + label:before,
form .custom-radio input[type='radio']:checked + label:before
{
    position: absolute;
    top: 1px;
    left: 1px;

    width: 18px;
    height: 18px;

    content: '';

    border: 1px solid #bbb;
    background: #fff;
}

form .custom-checkbox input[type='checkbox']:not(:checked) + label:before,
form .custom-checkbox input[type='checkbox']:checked + label:before
{
    top: -3px;
}

form .custom-radio input[type='radio']:not(:checked) + label:before,
form .custom-radio input[type='radio']:checked + label:before
{
    border-radius: 20px;
}

form .custom-checkbox input[type='checkbox']:checked + label:before,
form .custom-radio input[type='radio']:checked + label:before
{
    border: 1px solid #bbb;
}

form .custom-checkbox input[type='checkbox']:not(:checked) + label:after,
form .custom-checkbox input[type='checkbox']:checked + label:after,
form .custom-radio input[type='radio']:not(:checked) + label:after,
form .custom-radio input[type='radio']:checked + label:after
{
    position: absolute;
    top: 0;
    left: 4px;

    display: block;

    width: 18px;
    height: 18px;

    content: '';
    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;

    background: url('../img/icon-tick.svg') no-repeat 0 0;
    background-size: 12px auto;
}

form .custom-radio input[type='radio']:not(:checked) + label:after,
form .custom-radio input[type='radio']:checked + label:after
{
    top: 6px;
    left: 6px;

    width: 8px;
    height: 8px;

    content: '';

    border-radius: 10px;
    background: #7c7c7c;
}

form .custom-checkbox input[type='checkbox']:not(:checked) + label:after,
form .custom-radio input[type='radio']:not(:checked) + label:after
{
    -webkit-transform: scale(0);
            transform: scale(0);

    opacity: 0;
}

form .custom-checkbox input[type='checkbox']:checked + label:after,
form .custom-radio input[type='radio']:checked + label:after
{
    -webkit-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

form .custom-checkbox input[type='checkbox']:disabled:not(:checked) + label:before,
form input[type='checkbox']:disabled:checked + label:before
{
    border-color: #bbb;
    background-color: #ddd;
    box-shadow: none;
}

form .custom-checkbox input[type='checkbox']:disabled:checked + label:after
{
    color: #999;
}

form .custom-checkbox input[type='checkbox']:disabled + label
{
    color: #aaa;
}

form .custom-checkbox input[type='checkbox']:checked:focus + label:before,
form .custom-checkbox input[type='checkbox']:not(:checked):focus + label:before
{
    /*border: 1px dotted blue; */
}

/*-----------------------------------------------------------------------------------------------------
    [table]
-------------------------------------------------------------------------------------------------------*/
.table
{
    width: 100%;
    margin-bottom: 20px;

    border-collapse: collapse;
}
.table td
{
    border: none;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.table td.delete
{
    width: 50px;
    padding-right: 0;
    padding-left: 0;
}
.table td.delete button
{
    width: 40px;
    height: 40px;

    cursor: pointer;

    border: none;
    background: none;
}
.table td.delete button [class*='icon-']
{
    color: #b5b5b5;
}
.table td.delete button [class*='icon-']:before
{
    font-size: 18px;
}
.table td,
.table th
{
    font-weight: 300;

    padding: 14px 20px;

    color: #1e1e1e;
}
@media only screen and (max-width: 1200px)
{
    .table td,
    .table th
    {
        padding: 14px 10px;
    }
}
.table thead tr th
{
    color: #7b7b7b;
    border: none;
}
.table tbody tr td:first-child
{
    border-left: 1px solid #efefef;
}
.table tbody tr td:last-child
{
    border-right: 1px solid #efefef;
}
.table [class*='icon-arrow-']
{
    color: #b5b5b5;
}
.table [class*='icon-arrow-']:before
{
    font-size: 12px;
}
.table.full-border td
{
    border: 1px solid #efefef;
}
.table.command-table td.status-col
{
    width: 25%;
}
.table.command-table td:last-child
{
    width: 50px;
    padding: 0;
}
.table.command-table td:last-child a
{
    display: block;
    height: 50px;
    text-align: center;
}
.table.command-table td:last-child a [class*='icon-arrow-']
{
    position: relative;
    top: 15px;

    color: #333;
}
.table.command-table + .align-right
{
    margin-bottom: 30px;
}
.table.command-table-full th
{
    padding: 10px 5px;

    text-align: center;
}
.table.command-table-full th:first-child
{
    font-size: 15px;
    font-weight: 700;

    text-align: left;

    color: #313131;
}
.table.command-table-full td
{
    line-height: 120%;

    padding-right: 5px;
    padding-left: 5px;

    text-align: center;
}
.table.command-table-full td.img-col
{
    width: 85px;
    padding-right: 15px;
    padding-left: 20px;
}
.table.command-table-full td.img-col img
{
    max-width: 50px;
}
.table.command-table-full td.title-col
{
    width: 20%;
    padding-left: 0;

    text-align: left;
}
.table.command-table-full td.status-col
{
    width: 15%;
}
.table.command-table-full td.price-col
{
    width: 90px;
}
.table.command-table-full td.total-col
{
    font-weight: 700;
}
.table.invoice-table td:last-child
{
    text-align: right;
}
@media only screen and (max-width: 1200px)
{
    .table.invoice-table td:last-child
    {
        width: 25%;
    }
}
.table.invoice-table td:last-child a
{
    display: block;

    padding: 2px 0;

    text-decoration: underline;

    color: #7b7b7b;
}
.table.invoice-table td:last-child a:hover
{
    color: #313131;
}
.table.invoice-table + .align-right
{
    margin-bottom: 30px;
}
.table.subscription-table
{
    margin-bottom: 30px;
}
.table.subscription-table td.label-col
{
    width: 55%;

    white-space: nowrap;
}
.table.subscription-table td.label-col .nowrap
{
    display: block;
    overflow: hidden;

    width: 385px;

    white-space: nowrap;
}
.table.subscription-table td.date-col
{
    width: 16%;
}
.table.order-ref td,
.table.order-ref th
{
    line-height: 120%;

    height: 50px;
    padding: 10px 15px;
}
.table.order-ref td > span,
.table.order-ref td > div,
.table.order-ref th > span,
.table.order-ref th > div
{
    position: relative;

    display: block;
}
.table.order-ref td > span:after,
.table.order-ref td > div:after,
.table.order-ref th > span:after,
.table.order-ref th > div:after
{
    position: absolute;
    top: 50%;
    right: -15px;

    display: block;

    width: 1px;
    height: 30px;
    margin-top: -15px;

    content: '';

    background: #efefef;
}
.table.order-ref td > div:after,
.table.order-ref th > div:after
{
    height: 40px;
    margin-top: -20px;
}
.table.order-ref td:first-child,
.table.order-ref th:first-child
{
    padding-left: 0;
}
.table.order-ref td:last-child,
.table.order-ref th:last-child
{
    padding-right: 0;
    padding-left: 0;
}
.table.order-ref td:last-child > span:after,
.table.order-ref td:last-child > div:after,
.table.order-ref th:last-child > span:after,
.table.order-ref th:last-child > div:after
{
    display: none;
}
.table.order-ref thead tr
{
    border: none;
    border-top: 1px dotted #efefef;
    border-bottom: 1px dotted #efefef;
}
.table.order-ref thead tr th
{
    font-size: 12px;
    font-weight: 300;

    text-align: center;
}
.table.order-ref tbody tr td
{
    padding-top: 20px;
    padding-bottom: 20px;

    border: none;
    border-bottom: 1px dotted #efefef;
}
.table.order-ref tbody tr td > div
{
    position: relative;
}
.table.order-ref tbody tr td.ref-search input
{
    width: 100%;
    height: 40px;
    padding-right: 50px;
}
.table.order-ref tbody tr td.ref-search button
{
    font-size: 15px;
    font-weight: 700;

    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;

    width: 40px;
    height: 40px;
    padding: 0;

    text-align: center;

    border: none;
    background: none;
}
.table.order-ref tbody tr td.ref-name
{
    font-weight: 600;
}
.table.order-ref tbody tr td.ref-sample label
{
    margin-bottom: 0;
}
.table.order-ref tbody tr td.ref-unity
{
    text-align: center;
}
.table.order-ref tbody tr td.ref-availability
{
    text-align: center;
}
.table.order-ref tbody tr td.ref-availability span
{
    font-size: 15px;
    font-weight: 600;

    display: inline-block;

    padding: 4px 20px 2px 20px;

    text-align: center;
    text-decoration: none;

    color: #fff;
    background: #9ed200;
}
.table.order-ref tbody tr td.ref-price
{
    width: 100px;

    text-align: center;
}
.table.order-ref tbody tr td.ref-discount
{
    text-align: center;
}
.table.order-ref tbody tr td.ref-qty
{
    width: 90px;

    text-align: center;
}
.table.order-ref tbody tr td.ref-qty input
{
    width: 60px;
    height: 40px;

    text-align: center;
}
.table.order-ref tbody tr td.ref-total
{
    font-size: 18px;
    font-weight: 600;

    width: 120px;

    text-align: right;
}
.table.order-ref tbody tr td.ref-delete button
{
    width: 40px;
    height: 40px;

    border: none;
    background: none;
}
.table.order-ref tbody tr td.ref-delete button [class*='icon-']
{
    color: #b5b5b5;
}
.table.order-ref tbody tr td.ref-delete button [class*='icon-']:before
{
    font-size: 18px;

    position: relative;
    top: 5px;
}
.table.order-ref tbody tr.ref-error td
{
    padding-bottom: 5px;

    border-bottom: none;
}
.table.order-ref tbody tr.ref-error td.ref-search input
{
    border: 2px solid #c00;
}
.table.order-ref tbody tr.ref-error-msg td
{
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;

    color: #c00;
}
.table.total-table
{
    width: 35%;
    margin-bottom: 40px;
    margin-left: 65%;
}
.table.total-table tr td
{
    font-weight: 400;

    padding: 15px;
}
.table.total-table tr td:last-child
{
    text-align: right;
}
.table.total-table tr:last-child td
{
    font-weight: 600;
}
.table.client-table
{
    margin-top: 30px;
}
.table.client-table tr td:first-child
{
    border-left: none;
}
.table.client-table tr td:last-child
{
    border-right: none;
}
.table.client-table tr td:last-child a
{
    font-size: 15px;

    color: #b69b5a;
}
.table.client-table tr td:last-child a [class*='icon-']
{
    color: #b69b5a;
}
.table.client-table tr td:last-child a [class*='icon-']:before
{
    font-size: 10px;
}
.table.client-table tr td:last-child a:hover
{
    color: #a98a3d;
}
.table.client-table tr td:last-child a:hover [class*='icon-']
{
    color: #a98a3d;
}
.table.user-table tr.active td
{
    border-bottom-color: #fff;
}
.table.user-table tr td:first-child
{
    width: 16%;
}
.table.user-table tr td.actions
{
    padding: 0;

    text-align: right;
}
.table.user-table tr td.actions button
{
    width: 40px;
    height: 40px;

    cursor: pointer;

    border: none;
    background: none;
}
.table.user-table tr td.actions button [class*='icon-']
{
    color: #313131;
}
.table.user-table .user-actions
{
    display: none;
}
.table.user-table .user-actions td
{
    padding: 0 20px 14px 20px;
}
.table.user-table .user-actions ul
{
    min-height: 40px;

    text-align: center;

    background: #f4f4f4;
}
.table.user-table .user-actions ul li
{
    display: inline-block;

    padding-top: 10px;
}
.table.user-table .user-actions ul li a
{
    display: block;

    padding: 0 20px;

    border-right: 1px dotted #b5b5b5;
}
.table.user-table .user-actions ul li a:hover
{
    text-decoration: underline;
}
.table.user-table .user-actions ul li:last-child a
{
    border: none;
}
.table.cart-table th
{
    padding: 10px 5px;

    text-align: center;
}
.table.cart-table th:first-child
{
    font-size: 15px;
    font-weight: 700;

    text-align: left;

    color: #313131;
}
.table.cart-table td
{
    line-height: 120%;

    padding: 22px 5px;

    text-align: center;
}
.table.cart-table td.img-col
{
    width: 30px;
    padding-right: 15px;
    padding-left: 20px;

    vertical-align: top;
}
.table.cart-table td.img-col img
{
    max-width: 30px;
}
.table.cart-table td.title-col
{
    font-size: 13px;

    width: 20%;
    padding-left: 0;

    text-align: left;
}
@media only screen and (max-width: 1200px)
{
    .table.cart-table td.title-col
    {
        width: 18%;
    }
}
.table.cart-table td.untiy-col .custom-select
{
    width: 70px;
    height: 34px;

    border: 1px solid #bbb;
}
.table.cart-table td.untiy-col .custom-select select
{
    height: 32px;
}
@media only screen and (max-width: 1200px)
{
    .table.cart-table td.untiy-col .custom-select select
    {
        padding-left: 5px;
    }
}
.table.cart-table td.status-col
{
    width: 15%;
}
.table.cart-table td.qty-col input
{
    width: 50px;
    height: 34px;
    padding-right: 0;
    padding-left: 0;

    text-align: center;

    border: 1px solid #bbb;
}
.table.cart-table td.stock-col span
{
    font-size: 13px;
    font-weight: 700;

    display: inline-block;

    min-width: 60px;
    height: 34px;
    padding: 9px 0 4px 0;

    text-align: center;
    text-decoration: none;

    color: #fff;
    background: #8cba01;
}
.table.cart-table td.stock-col.low span
{
    background: #ff8000;
}
.table.cart-table td.price-col input
{
    width: 70px;
    height: 34px;

    text-align: center;

    border: 1px solid #bbb;
}
.table.cart-table td.discount-col input
{
    width: 40px;
    height: 34px;

    text-align: center;

    border: 1px solid #bbb;
}
.table.cart-table .total
{
    font-size: 16px;
}
.table.cart-table .total td
{
    border: none;
}
.table.cart-table .total td.label
{
    text-align: right;

    border: 1px solid #efefef;
    border-right: none;
}
.table.cart-table .total td.full-total
{
    border-bottom: 1px solid #efefef;
}
.table.cart-table .total td:last-child
{
    border: 1px solid #efefef;
    border-left: none;
}

/*-----------------------------------------------------------------------------------------------------
    [callout]
-------------------------------------------------------------------------------------------------------*/
.callout
{
    position: relative;

    margin-bottom: 20px;
    padding: 12px 20px;

    color: #fff;
}
.callout p
{
    font-size: 15px;

    color: #fff;
}
.callout.callout-icon
{
    position: relative;

    padding-left: 100px;
}
.callout.callout-icon [class*='icon-']
{
    position: absolute;
    top: 50%;
    left: 30px;

    margin-top: -8px;

    color: #fff;
}
.callout.callout-icon [class*='icon-']:before
{
    font-size: 35px;
}
.callout.primary
{
    background: #313131;
}
.callout.secondary
{
    background: #7c7c7c;
}

@font-face
{
    font-family: 'icons';

    src: url('../fonts/icons.eot');
    src: url('../fonts/icons.eot?#iefix') format('eot'), url('../fonts/icons.woff') format('woff'), url('../fonts/icons.ttf') format('truetype'), url('../fonts/icons.svg#icons') format('svg');
}

[class*='icon-']:before
{
    font-family: 'icons', Serif;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */

    text-decoration: none;
    text-transform: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before
{
    content: '\E001';
}

.icon-arrow-left:before
{
    content: '\E002';
}

.icon-arrow-right:before
{
    content: '\E003';
}

.icon-arrow-up:before
{
    content: '\E004';
}

.icon-cart:before
{
    content: '\E006';
}

.icon-close:before,
.status.canceled:before
{
    content: '\E007';
}

.icon-eye:before
{
    content: '\E008';
}

.icon-facebook:before
{
    content: '\E009';
}

.icon-favorite:before
{
    content: '\E00A';
}

.icon-google-plus:before
{
    content: '\E00B';
}

.icon-help:before
{
    content: '\E00C';
}

.icon-infos-alt:before
{
    content: '\E00D';
}

.icon-infos:before
{
    content: '\E00E';
}

.icon-lavage-30-degres-modere:before
{
    content: '\E00F';
}


.icon-magnifier:before
{
    content: '\E011';
}

.icon-menu:before
{
    content: '\E012';
}

.icon-plus:before
{
    content: '\E014';
}

.icon-rss:before
{
    content: '\E015';
}


.icon-search:before
{
    content: '\E017';
}

.icon-star:before
{
    content: '\E018';
}

.icon-tick:before
{
    content: '\E019';
}

.icon-trash:before
{
    content: '\E01A';
}

.icon-twitter:before
{
    content: '\E01B';
}

.icon-user:before
{
    content: '\E01C';
}

/*-----------------------------------------------------------------------------------------------------
    [status]
-------------------------------------------------------------------------------------------------------*/
.status
{
    position: relative;
}
.status:before
{
    display: inline-block;

    width: 8px;
    height: 8px;
    margin-right: 8px;

    content: '';

    border-radius: 8px;
    background: #666;
}
.status.success:before
{
    background: #9c0;
}
.status.waiting:before
{
    background: #f90;
}
.status.canceled:before
{
    font-family: 'icons', Serif;
    font-size: 8px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;

    text-decoration: none;
    text-transform: none;

    color: #c00;
    background: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*-----------------------------------------------------------------------------------------------------
    [breadcrumb]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [pagination]
-------------------------------------------------------------------------------------------------------*/
.pagination
{
    margin: 20px 0;
}
.pagination ul
{
    text-align: center;
}
.pagination ul li
{
    display: inline-block;

    margin: 5px;
}
.pagination ul li a,
.pagination ul li span
{
    font-weight: 300;

    display: block;

    width: 40px;
    height: 40px;
    padding: 12px 0 0 0;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
    text-align: center;

    color: #1d1d1d;
    background: #f4f4f4;
}
.pagination ul li a:hover,
.pagination ul li span:hover
{
    color: #fff;
    background: #1d1d1d;
}
.pagination ul li.current a,
.pagination ul li.current span
{
    color: #fff;
    background: #1d1d1d;
}

/*-----------------------------------------------------------------------------------------------------
    [social-link]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [lang]
-------------------------------------------------------------------------------------------------------*/
.lang
{
    position: relative;
}
.lang.active .list-lang
{
    display: block;
}
.lang .lang-selected
{
    position: relative;

    height: 30px;
    padding: 8px 30px 0 12px;

    cursor: pointer;

    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .73);
}
.lang .lang-selected [class*='icon-']
{
    position: absolute;
    top: 2px;
    right: 10px;
}
.lang .lang-selected [class*='icon-']:before
{
    font-size: 12px;

    position: relative;
    top: 4px;

    color: #cfcfcf;
}
.lang .list-lang
{
    position: absolute;
    z-index: 12;
    top: 30px;
    left: 0;

    display: none;

    width: 100%;

    background: #fff;
}
.lang .list-lang li
{
    border-top: 1px solid #efefef;
}
.lang .list-lang li a
{
    display: block;

    padding: 8px 30px 8px 12px;
}
.lang .list-lang li a:hover
{
    background: #efefef;
}
.header .lang .lang-selected
{
    height: 35px;
    padding-top: 10px;

    box-shadow: none;
}
.header .lang .lang-selected [class*='icon-']:before
{
    top: 6px;
}
.header .lang .list-lang
{
    top: 35px;

    background: #f9f9f9;
    box-shadow: 0 3px 2px rgba(0, 0, 0, .15);
}
.header .lang .list-lang li a
{
    padding-top: 10px;
}

/*-----------------------------------------------------------------------------------------------------
    [logo]
-------------------------------------------------------------------------------------------------------*/
.logo
{
    position: relative;

    display: table;

    width: 100%;
    height: 100%;

    text-align: left;
}
.logo a
{
    display: table-cell;

    height: 100%;
    margin-right: 15px;
    padding-right: 15px;

    text-align: right;
    vertical-align: middle;
}
.logo a img
{
    display: inline-block;

    max-height: 65px;
}
.logo .pro
{
    position: relative;
    top: -2px;

    display: table-cell;

    width: 130px;
    height: 100%;

    text-align: left;
    vertical-align: middle;
}
.logo .pro > span
{
    font-size: 14px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    height: 25px;
    padding: 4px 10px 0 10px;
    text-transform: uppercase;
    color: #707070;
    background: #e4e4e4;
}
.logo .pro > span:before
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 1px;
    height: 30px;
    margin-top: -15px;

    content: '';

    background: #e4e4e4;
}
.page-login .logo .pro > span
{
    font-weight: 700;

    height: 30px;
    padding-top: 7px;
}
.page-login .logo .pro > span:before
{
    height: 36px;
    margin-top: -18px;
}

/*-----------------------------------------------------------------------------------------------------
    [Tooltip]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [popin]
-------------------------------------------------------------------------------------------------------*/
.modaal-wrapper .modaal-container
{
    position: relative;

    max-width: 830px;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content
{
    position: relative;

    padding: 30px;

    text-align: center;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content .popin-close
{
    position: absolute;
    top: -10px;
    right: -10px;

    cursor: pointer;

    border: none;
    background: none;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content .popin-close [class*='icon-']
{
    font-size: 10px;

    margin-left: 5px;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content .title
{
    font-size: 24px;
    font-weight: 600;

    margin-bottom: 40px;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content p
{
    font-weight: 300;

    max-width: 500px;
    margin: 0 auto 20px auto;
}
.modaal-wrapper .modaal-container .modaal-content .popin-content .button
{
    margin-top: 50px;
}
.modaal-wrapper .modaal-container .modaal-close
{
    /*position: absolute;
      right: 20px;
      top: 20px;
      color: #fff;
      cursor: pointer;
      opacity: 1;
      width: 50px;
      height: 50px;
      z-index: 9;*/
}

/*-----------------------------------------------------------------------------------------------------
    [carousel]
-------------------------------------------------------------------------------------------------------*/
.bx-wrapper
{
    border: none;
    box-shadow: none;
}
.bx-wrapper .bx-controls .bx-controls-direction .bx-prev,
.bx-wrapper .bx-controls .bx-controls-direction .bx-next
{
    z-index: 9;

    width: 50px;
    height: 50px;
    margin-top: -45px;

    text-indent: 0;

    background: none;
}
.bx-wrapper .bx-controls .bx-controls-direction .bx-prev span,
.bx-wrapper .bx-controls .bx-controls-direction .bx-next span
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 18px;
    height: 34px;
    margin: -17px 0 0 -9px;

    background: url('../img/slide-nav.png') no-repeat 0 0;
    background-size: auto 34px;
}
.bx-wrapper .bx-controls .bx-controls-direction .bx-prev
{
    left: -70px;
}
.bx-wrapper .bx-controls .bx-controls-direction .bx-next
{
    right: -70px;
}
.bx-wrapper .bx-controls .bx-controls-direction .bx-next span
{
    background-position: -18px 0;
}
.bx-wrapper .bx-controls .bx-pager .bx-pager-item a
{
    display: inline-block;

    width: 12px;
    height: 12px;
    margin: 0 5px;

    border: 1px solid #b5b5b5;
    border-radius: 12px;
    background: #fff;
}
.bx-wrapper .bx-controls .bx-pager .bx-pager-item a.active
{
    background: #b5b5b5;
}
@media only screen and (max-width: 1200px)
{
    .product-similar .bx-wrapper
    {
        max-width: 850px !important;
    }
}

.bxslider.carousel-collection
{
    margin-bottom: 20px;
    height: 300px;
}
.bxslider.carousel-collection .carousel-item
{
    position: relative;
}
.bxslider.carousel-collection .carousel-item img
{
    width: 100%;
}
.bxslider.carousel-collection .carousel-item p
{
    font-size: 16px;
    font-weight: 600;

    position: absolute;
    z-index: 9;
    top: 45%;

    padding: 20px 25px 18px 25px;

    color: #000;
    background: rgba(255, 255, 255, .8);
}

.bxslider.carousel-collection li{
    float:left !important;
    text-align: left !important;
    position: absolute;
}
.bxslider.carousel-collection li:first-child{
    display: block;
    z-index: 999;
}

.bxslider.carousel-collection .carousel-item p [class*='icon-']
{
    margin-left: 20px;
}
.bxslider.carousel-collection .carousel-item p [class*='icon-']:before
{
    font-size: 10px;
}

/*.owl-carousel {
  .owl-nav {}
  .owl-dots {
    margin-top: 10px;
    text-align: center;
    .owl-dot {
      display: inline-block;
      margin: 0 5px;
      width: 12px;
      height: 12px;
      border: 1px solid $grey-light;
      background: #FFF;
      border-radius: 12px;
      &.active {
        background: $grey-light;
      }
    }
  }
  &.carousel-collection {
    margin-bottom: 20px;
    .carousel-item {
      position: relative;
      p {
        position: absolute;
        right: 25px;
        top: 45%;
        z-index: 9;
        padding: 20px 25px 18px 25px;
        background: rgba(255, 255, 255, 0.8);
        color: #000;
        font-size: 16px;
        font-weight: 600;
        [class*="icon-"] {
          margin-left: 20px;
          &:before {
            font-size: 10px;
          }
        }
      }
    }
  }
}*/
/*-----------------------------------------------------------------------------------------------------
    [block-product]
-------------------------------------------------------------------------------------------------------*/
.block-product
{
    position: relative;

    padding: 45px 0 25px 0;
}
.block-product .block-product--new
{
    font-size: 15px;
    font-weight: 600;

    position: absolute;
    top: 16px;
    left: 0;

    padding: 2px 8px 0 8px;

    text-transform: uppercase;

    color: #fff;
    background: #b69b5a;
}
.block-product .block-product--img
{
    display: block;
    overflow: hidden;

    margin-bottom: 15px;
}
.block-product .block-product--title
{
    font-size: 14px;
    font-weight: 300;

    min-height: 35px;
    margin-bottom: 6px;

    text-transform: uppercase;

    color: #1e1e1e;
}
.block-product .block-product--title a
{
    display: block;

    margin-bottom: 6px;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
}
.block-product .block-product--title a:hover
{
    color: #a98a3d;
}
.block-product .block-product--collection
{
    font-size: 14px;
    font-weight: 300;

    display: block;

    margin-bottom: 4px;

    text-transform: uppercase;

    color: #1e1e1e;
}
.block-product p
{
    font-weight: 300;

    margin-bottom: 5px;

    color: #1e1e1e;
}
.block-product .actions-primary
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    min-height: 70px;

    text-align: center;

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.block-product .actions-primary p
{
    margin: 0 0 5px 0;

    color: #666;
}
.block-product .actions-primary p [class*='icon-']
{
    position: relative;
    top: 2px;

    margin-right: 10px;

    color: #666;
}
.block-product .actions-primary .button
{
    font-size: 15px;

    display: inline-block;

    width: auto;
    min-width: 190px;
    height: 32px;
    margin: 0 auto 10px auto;
    padding-top: 8px;
}
.block-product .actions-primary a
{
    display: inline-block;

    text-align: center;
    text-decoration: underline;
}
.block-product .actions-primary a:hover
{
    color: #7b7b7b;
}

/*-----------------------------------------------------------------------------------------------------
    [block-facet]
-------------------------------------------------------------------------------------------------------*/
.block-facet
{
    margin-bottom: 20px;

    border: 1px solid #efefef;
}
.block-facet .facet-block--button
{
    position: relative;

    width: 100%;
    padding: 10px 15px;

    text-align: left;

    border: none;
    background: none;
}
.block-facet .facet-block--button [class*='icon-']
{
    position: absolute;
    top: 14px;
    right: 15px;
}
.block-facet .facet-block--button [class*='icon-']:before
{
    font-size: 14px;
}
.block-facet .facet-block--search
{
    position: relative;

    margin-bottom: 20px;
}
.block-facet .facet-block--search input[type='text'],
.block-facet .facet-block--search input[type='search']
{
    width: 100%;
    height: 34px;
}
.block-facet .facet-block--search button
{
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;

    width: 34px;
    height: 34px;

    text-align: center;

    border: none;
    background: none;
}
.block-facet .facet-block--search button [class*='icon-']
{
    position: relative;
    top: 4px;

    color: #a5a5a5;
}
.block-facet .facet-block--search button [class*='icon-']:before
{
    font-size: 16px;
}
.block-facet .facet-block--content
{
    padding: 10px 15px 15px 15px;
}
.block-facet .facet-block--content p
{
    margin-bottom: 15px;
}
.block-facet .facet-block--content p label
{
    font-weight: 300;
}
.block-facet .facet-block--content p label span
{
    font-style: italic;

    color: #7b7b7b;
}
.block-facet .facet-block--content p.custom-checkbox input[type='checkbox']:not(:checked) + label:after,
.block-facet .facet-block--content p.custom-checkbox input[type='checkbox']:checked + label:after
{
    background-image: url('../img/icon-tick-black.svg');
}
.block-facet .facet-block--content a
{
    font-size: 12px;
    font-weight: 300;

    display: block;

    margin: 20px 0 5px 0;

    text-align: center;
    text-decoration: underline;
}
.block-facet .facet-block--content a:hover
{
    color: #7b7b7b;
}

/*-----------------------------------------------------------------------------------------------------
    [block-filter]
-------------------------------------------------------------------------------------------------------*/
.block-filter
{
    font-weight: 300;

    position: relative;

    min-height: 30px;
    padding: 6px 35px 4px 10px;

    border-radius: 4px;
    background: #f4f4f4;
}
.block-filter button
{
    position: absolute;
    top: 0;
    right: 0;

    width: 30px;
    height: 30px;

    cursor: pointer;

    border: none;
    background: none;
}
.block-filter button [class*='icon-']:before
{
    font-size: 9px;
}

/*-----------------------------------------------------------------------------------------------------
    [block-information]
-------------------------------------------------------------------------------------------------------*/
.block-information
{
    position: relative;

    min-height: 170px;
    padding: 20px 30px 30px 30px;

    border-right: 1px dotted #b5b5b5;
    -o-border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
       border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
}
.block-information .title
{
    font-size: 16px;
    font-weight: 600;

    margin-bottom: 10px;
}
.block-information .infos
{
    line-height: 120%;

    margin-bottom: 5px;

    color: #1e1e1e;
}
.block-information .infos strong
{
    font-weight: 600;
}
.block-information a
{
    position: absolute;
    bottom: 10px;
    left: 30px;

    text-decoration: underline;

    color: #7b7b7b;
}
.block-information a:hover
{
    color: #313131;
}
.block-information:last-child
{
    border: none;
}

/*-----------------------------------------------------------------------------------------------------
    [block-information-inline]
-------------------------------------------------------------------------------------------------------*/
.block-information-inline
{
    position: relative;
}
.block-information-inline .infos-label
{
    font-size: 15px;

    float: left;

    width: 50%;

    color: #7b7b7b;
}
.block-information-inline .infos-text
{
    font-size: 15px;
    line-height: 160%;

    position: relative;

    float: left;

    width: 50%;

    color: #313131;
}

/*-----------------------------------------------------------------------------------------------------
    [block-address]
-------------------------------------------------------------------------------------------------------*/
.block-address
{
    margin-bottom: 10px;
    padding: 20px 0 0 50px;
}
.block-address .add-address
{
    margin-bottom: 20px;
    padding: 0 0 30px 0;

    border-bottom: 1px solid #efefef;
}
.block-address .add-address .custom-select
{
    float: left;

    width: 320px;
    margin-right: 40px;
}
.block-address .add-address .custom-select select
{
    height: 34px;
}
.block-address .add-address button
{
    float: left;

    height: 36px;

    text-decoration: underline;

    color: #7b7b7b;
    border: none;
    background: none;
}
.block-address .favorite
{
    margin-bottom: 10px;

    color: #7b7b7b;
}
.block-address .favorite [class*='icon']
{
    margin-right: 5px;

    color: #a98a3d;
}
.block-address .address-content
{
    padding-bottom: 50px;

    border-bottom: 1px solid #efefef;
}
.block-address .address-content .address
{
    font-size: 15px;

    float: left;

    width: 60%;
}
.block-address .address-content .address-action
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    width: 40%;

    text-align: center;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}
.block-address .address-content .address-action button:not(.button)
{
    width: 100%;
    margin-bottom: 5px;

    text-align: center;
    text-decoration: underline;

    color: #7b7b7b;
    border: none;
    background: none;
}
.block-address .address-content .address-action button.button
{
    margin-top: 10px;
}
.block-address.no-border .address-content
{
    border: none;
}

/*-----------------------------------------------------------------------------------------------------
    [header]
-------------------------------------------------------------------------------------------------------*/
.header
{
    /*position: fixed;
	width: 100%;
	left: 0;
	top: 0;*/
    background: #fff;
}
.header .logo-content
{
    float: left;

    height: 90px;
}
.header .header-content
{
    float: right;
}
.header .header-content .user-content
{
    position: relative;

    float: left;

    margin-top: 22px;
    padding-left: 40px;
}
.header .header-content .user-content [class*='icon-']
{
    position: absolute;
    top: 5px;
    left: 0;

    color: #ccc;
}
.header .header-content .user-content [class*='icon-']:before
{
    font-size: 22px;
}
.header .header-content .user-content p
{
    color: #999;
}
.header .header-content .user-content p a
{
    display: inline-block;

    color: #999;
}
.header .header-content .user-content p a span
{
    font-size: 16px;
}
.header .header-content .user-content p a:hover
{
    text-decoration: underline;
}
.header .header-content .user-content p span
{
    display: inline-block;

    margin: 0 5px;
}
.header .header-content .cart-content
{
    position: relative;

    float: left;

    margin: 22px 60px 0 60px;
}
.header .header-content .cart-content a
{
    display: block;

    padding: 10px 0 10px 44px;

    color: #999;
}
.header .header-content .cart-content a:hover
{
    text-decoration: underline;
}
.header .header-content .cart-content a u
{
    text-decoration: none;
}
.header .header-content .cart-content a .cart-qty
{
    font-family: Arial, Helvetica, Arial, sans-serif;
    font-size: 11px;

    position: absolute;
    z-index: 9;
    top: 0;
    left: 16px;

    display: block;

    width: 22px;
    height: 22px;

    text-align: center;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 22px;
    background: #a98a3d;
}
.header .header-content .cart-content a [class*='icon-']
{
    position: absolute;
    top: 5px;
    left: 0;

    color: #ccc;
}
.header .header-content .cart-content a [class*='icon-']:before
{
    font-size: 26px;
}

/*-----------------------------------------------------------------------------------------------------
    [header]
-------------------------------------------------------------------------------------------------------*/
.header-sticky
{
    position: fixed;
    z-index: 99;
    top: -1px;
    right: 0;
    left: 0;

    width: 100%;
    min-width: 990px;
    height: 60px;

    -webkit-transform: translateZ(0);

            transform: translateZ(0);

    border-bottom: 1px solid #f4f4f4;
    background: #fff;
}
.header-sticky .top-bar
{
    display: none;
}
.header-sticky > .container
{
    position: relative;
}
.header-sticky .logo-content
{
    float: left;
}
.header-sticky .logo-content .logo
{
    margin-top: 16px;
    padding-top: 0 !important;
}
.header-sticky .logo-content .logo a
{
    height: 15px;
}
.header-sticky .logo-content .logo a img
{
    max-height: 15px;
}
@media only screen and (max-width: 767px)
{
    .header-sticky .logo-content .logo a img
    {
        width: auto;
    }
}
.header-sticky .logo-content .logo .pro > span
{
    font-size: 12px;
    font-weight: 600;

    height: 17px;
    padding-top: 0;
}
.header-sticky .logo-content .logo .pro > span:before
{
    height: 22px;
    margin-top: -11px;
}
.header-sticky .header-content
{
    float: right;
}
.header-sticky .header-content .user-content,
.header-sticky .header-content .cart-content
{
    float: left;

    width: 60px;
    height: 60px;
    margin: 0 10px;

    text-align: center;
}
.header-sticky .header-content .user-content [class*='icon-'],
.header-sticky .header-content .cart-content [class*='icon-']
{
    position: relative;
    top: 20px;

    color: #ccc;
}
.header-sticky .header-content .user-content [class*='icon-']:before,
.header-sticky .header-content .cart-content [class*='icon-']:before
{
    font-size: 22px;
}
.header-sticky .header-content .user-content
{
    position: relative;
}
.header-sticky .header-content .user-content p
{
    display: none;
}
.header-sticky .header-content .user-content p + p
{
    display: block;
}
.header-sticky .header-content .user-content p + p span
{
    display: none;
}
.header-sticky .header-content .user-content p + p a
{
    display: none;
}
.header-sticky .header-content .user-content p .user-content--account
{
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;

    display: block;

    width: 60px;
    height: 60px;

    text-indent: -9999px;
}
.header-sticky .header-content .user-content:after
{
    position: absolute;
    top: 50%;
    right: -20px;

    display: block;

    width: 1px;
    height: 20px;
    margin-top: -10px;

    content: '';

    background: #f4f4f4;
}
.header-sticky .header-content .cart-content
{
    position: relative;
}
.header-sticky .header-content .cart-content a
{
    display: block;

    width: 60px;
    height: 60px;
}
.header-sticky .header-content .cart-content u
{
    display: none;
}
.header-sticky .header-content .cart-content .cart-qty
{
    font-family: Arial, Helvetica, Arial, sans-serif;
    font-size: 11px;

    position: absolute;
    z-index: 9;
    top: 13px;
    left: 11px;
    right: 5px;

    display: block;

    width: 22px;
    height: 22px;

    text-align: center;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 22px;
    background: #a98a3d;
}
.header-sticky .nav-content
{
    background: none;
}
.header-sticky .nav-content > .container
{
    position: relative;
}
.header-sticky .nav-content .menu-main
{
    position: absolute;
    top: -60px;
    right: 170px;

    padding: 0;
}
.header-sticky .nav-content .menu-main ul li a
{
    font-size: 14px;

    position: relative;

    height: 60px;
    padding: 22px 20px 0 50px;

    border-right: 0;
}
.header-sticky .nav-content .menu-main ul li a [class*='icon-']
{
    top: 20px;
    left: 16px;
}
.header-sticky .nav-content .menu-main ul li a [class*='icon-']:before
{
    font-size: 18px;
}
.header-sticky .nav-content .menu-main ul li a:after
{
    height: 20px;
    margin-top: -10px;

    background: #f4f4f4;
}
.header-sticky .nav-content .menu-main ul li a:hover:not(:focus),
.header-sticky .nav-content .menu-main ul li a.active
{
    color: #a98a3d;
    background: none;
}
.header-sticky .nav-content .menu-main ul li a:hover:not(:focus) [class*='icon-'],
.header-sticky .nav-content .menu-main ul li a.active [class*='icon-']
{
    color: #a98a3d;
}
.header-sticky .nav-content .menu-main ul li a:hover:not(:focus):after,
.header-sticky .nav-content .menu-main ul li a.active:after
{
    display: block;
}
.header-sticky .nav-content .menu-main ul li:last-child
{
    margin-right: 0;
}
.representant .header-sticky
{
    height: 90px;
}
.representant .header-sticky .top-bar
{
    display: block;
}
.representant .header-sticky .top-bar .top-bar-menu ul li a
{
    height: 30px;
    padding-top: 8px;
}
.representant .header-sticky .top-bar .top-bar-content
{
    display: none;
}
.representant .header-sticky
{
    height: 90px;
}
.representant .header-sticky .header-content .user-content,
.representant .header-sticky .header-content .cart-content
{
    width: 50px;
    margin: 0;
}
.representant .header-sticky .header-content .user-content [class*='icon-'],
.representant .header-sticky .header-content .cart-content [class*='icon-']
{
    position: relative;
    top: 20px;

    color: #ccc;
}
.representant .header-sticky .header-content .user-content [class*='icon-']:before,
.representant .header-sticky .header-content .cart-content [class*='icon-']:before
{
    font-size: 22px;
}
.representant .header-sticky .header-content .user-content:after
{
    right: 0;
}
.representant .header-sticky .header-content .user-content p .user-content--account
{
    width: 50px;
}
.representant .header-sticky .header-content .cart-content a
{
    width: 50px;
}
.representant .header-sticky .nav-content
{
    background: none;
}
.representant .header-sticky .nav-content .menu-main
{
    right: 110px;
}
.bar.representant .header-sticky
{
    height: 120px;
}

/*-----------------------------------------------------------------------------------------------------
    [footer]
-------------------------------------------------------------------------------------------------------*/
.footer
{
    margin-top: 70px;
}
.footer .footer-content
{
    padding: 40px 0;

    text-align: center;

    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background: #f9f9f9;
}
.footer .footer-content p
{
    max-width: 700px;
    margin: 0 auto 15px auto;
}
.footer .footer-content .title
{
    font-size: 22px;

    margin-bottom: 15px;

    text-transform: uppercase;
}
.footer .legal
{
    font-weight: 300;

    padding: 20px;

    text-align: center;

    color: #7b7b7b;
}

/*-----------------------------------------------------------------------------------------------------
    [nav]
-------------------------------------------------------------------------------------------------------*/
.nav-content
{
    background: #eee;
}
.nav-content > .container
{
    padding: 0;
}
.nav-content .menu-main
{
    height: 50px;
    padding: 0;
}
.nav-content .menu-main ul li
{
    float: left;
}
.nav-content .menu-main ul li a
{
    font-size: 18px;

    position: relative;

    display: block;

    height: 50px;
    padding: 15px 40px 10px 60px;

    -webkit-transition: color .2s;
            transition: color .2s;
    text-transform: uppercase;

    color: #000;
}
.nav-content .menu-main ul li a:after
{
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 1px;
    height: 34px;
    margin-top: -17px;

    content: '';

    background: #dbdbdb;
}
.nav-content .menu-main ul li a [class*='icon-']
{
    position: absolute;
    top: 13px;
    left: 30px;

    -webkit-transition: color .2s;
            transition: color .2s;

    color: #000;
}
.nav-content .menu-main ul li a [class*='icon-']:before
{
    font-size: 22px;
}
.nav-content .menu-main ul li a:hover:not(:focus),
.nav-content .menu-main ul li a.active
{
    background: #fff;
}
.nav-content .menu-main ul li a:hover:not(:focus):after,
.nav-content .menu-main ul li a.active:after
{
    display: none;
}

/*-----------------------------------------------------------------------------------------------------
    [nav]
-------------------------------------------------------------------------------------------------------*/
.nav-account
{
    margin-bottom: 20px;
}
.nav-account li a
{
    font-size: 15px;
    font-weight: 300;

    display: block;

    padding: 15px 0;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;

    color: #7b7b7b;
    border-bottom: 1px solid #efefef;
}
.nav-account li a:hover
{
    color: #000;
}
.nav-account li.active a
{
    font-weight: 600;

    color: #000;
}

/*-----------------------------------------------------------------------------------------------------
    [search-content]
-------------------------------------------------------------------------------------------------------*/
.search-content
{
    position: absolute;
    z-index: 20;

    display: none;

    width: 100%;
    min-width: 990px;
    margin-top: -1px;
    padding: 30px 0;

    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
}
.search-content .title
{
    font-size: 22px;

    margin-bottom: 10px;

    text-transform: uppercase;
}
.search-content form
{
    position: relative;

    padding-right: 280px;
}
@media only screen and (max-width: 1200px)
{
    .search-content form
    {
        padding-right: 210px;
    }
}
.search-content form input[type='text']
{
    border-color: #f4f4f4;
}
.search-content form input[type='text']:focus
{
    border-color: #999;
}
.search-content form .button.primary
{
    position: absolute;
    top: 0;
    right: 0;

    width: 190px;
}

/*-----------------------------------------------------------------------------------------------------
    [sidebar]
-------------------------------------------------------------------------------------------------------*/
.sidebar .title
{
    font-size: 15px;
    font-weight: 600;

    margin-bottom: 15px;

    text-transform: uppercase;
}

/*-----------------------------------------------------------------------------------------------------
    [header]
-------------------------------------------------------------------------------------------------------*/
.top-bar
{
    border-bottom: 1px solid #f4f4f4;
}
.top-bar .top-bar-menu
{
    float: left;
}
.top-bar .top-bar-menu ul li
{
    float: left;

    border-right: 1px solid #f4f4f4;
}
.top-bar .top-bar-menu ul li a
{
    position: relative;

    display: block;

    height: 36px;
    padding: 10px 20px 0 20px;

    text-transform: uppercase;

    color: #999;
}
.top-bar .top-bar-menu ul li a:hover
{
    color: #313131;
}
.top-bar .top-bar-menu ul li.active a
{
    font-weight: 600;

    color: #313131;
}
.top-bar .top-bar-menu ul li.active a:after
{
    position: absolute;
    bottom: -1px;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #fff;
}
.top-bar .top-bar-menu ul li:first-child
{
    border-left: 1px solid #f4f4f4;
}
.top-bar .top-bar-content
{
    float: right;

    min-height: 35px;
}
.top-bar .top-bar-content .contact-us
{
    font-weight: 300;

    display: block;
    float: left;

    margin-top: 8px;
    padding: 1px 15px 0 15px;

    text-decoration: underline;

    color: #7b7b7b;
    border-right: 1px dotted #b5b5b5;
    -o-border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
       border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
}
.top-bar .top-bar-content .devise
{
    font-weight: 300;

    display: block;
    float: left;

    margin-top: 8px;
    padding: 1px 15px 0 15px;

    color: #7b7b7b;
    border-right: 1px dotted #b5b5b5;
    -o-border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
       border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
}
.top-bar .top-bar-content .lang
{
    float: left;

    margin-left: 10px;
}

/*-----------------------------------------------------------------------------------------------------
    [title-bar]
-------------------------------------------------------------------------------------------------------*/
.title-bar.no-border > .container
{
    border: none;
}

.title-bar > .container
{
    max-width: 1180px;
    min-height: 100px;
    padding-top: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid #f4f4f4;
}

.title-bar .title
{
    font-size: 22px;
    font-weight: 300;

    float: left;

    padding: 8px 0 0 20px;

    text-transform: uppercase;

    color: #6d6d6d;
}
.title-bar .title.title-icon
{
    position: relative;

    padding: 9px 0 0 60px;
}
.title-bar .title.title-icon [class*='icon-']
{
    position: absolute;
    top: 8px;
    left: 0;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;

    color: #6e6e6e;
}
.title-bar .title.title-icon [class*='icon-']:before
{
    font-size: 30px;
}

.title-bar .form-search
{
    float: right;

    width: 70%;
}
.title-bar .form-search input[type='text'],
.title-bar .form-search input[type='search']
{
    border: 1px solid #a0a0a0;
}
.title-bar .form-search input[type='text']:focus,
.title-bar .form-search input[type='search']:focus
{
    border-color: #999;
}
@media only screen and (max-width: 1200px)
{
    .title-bar .form-search
    {
        width: 65%;
    }
}

.title-bar.back > .container
{
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

/*-----------------------------------------------------------------------------------------------------
    [info-bar]
-------------------------------------------------------------------------------------------------------*/
.info-bar
{
    height: 40px;
    padding-top: 8px;

    text-align: center;

    background: #a98a3d;
}
.info-bar p
{
    font-size: 15px;

    color: #fff;
}
.info-bar p a
{
    font-size: 14px;

    display: inline-block;

    margin-left: 25px;

    text-decoration: underline;

    color: #fff;
}
.info-bar p span
{
    display: inline-block;

    padding: 0 10px;
}
.info-bar p [class*='icon-']
{
    position: relative;
    top: 2px;

    margin-right: 10px;

    color: #fff;
}
.fixed-header .info-bar
{
    height: 30px;
    padding-top: 2px;
}
.fixed-header .info-bar p
{
    font-size: 14px;
}
.fixed-header .info-bar p a
{
    font-size: 12px;
}

/*-----------------------------------------------------------------------------------------------------
    [form-content]
-------------------------------------------------------------------------------------------------------*/
.form-intro
{
    font-size: 15px;

    margin-bottom: 20px;
}
.form-intro.first
{
    margin-top: 10px;
}

.form-content
{
    padding: 30px 0 40px 0;
}
.form-content.form-popin{
    padding: 10px 0 40px 0;
}
.form-content .fieldset
{
    margin-bottom: 30px;
    padding: 30px 0 0 0;

    border-top: 1px solid #efefef;
}
.form-content .fieldset .legend
{
    font-size: 22px;

    margin-bottom: 20px;

    color: #000;
}
.form-content .fieldset + .fieldset
{
    margin-bottom: 0;
}
.form-content .field-group
{
    margin-bottom: 10px;
}
.form-content .field-group a
{
    text-decoration: underline;

    color: #7c7c7c;
}
.form-content .field-error input
{
    border-width: 2px;
    border-color: #c00;
}
.form-content .field-error .error-info
{
    display: block;

    margin-top: 10px;

    color: #c00;
}
.form-content.form-inline .field-group
{
    clear: both;

    margin-bottom: 15px;
}
.form-content.form-inline .field-group .field-label
{
    display: table;
    float: left;

    width: 300px;
    height: 40px;
    padding-left: 40px;
}
.form-content.form-inline .field-group .field-label label
{
    display: table-cell;

    margin: 0;
    padding: 0 15px 0 0;

    text-align: left;
    vertical-align: middle;

    color: #7b7b7b;
}
.form-content.form-inline .field-group .field-input
{
    position: relative;

    float: left;

    width: 280px;
}
.form-content.form-inline .field-group .field-input input[type='text'],
.form-content.form-inline .field-group .field-input input[type='email'],
.form-content.form-inline .field-group .field-input input[type='date'],
.form-content.form-inline .field-group .field-input input[type='password'],
.form-content.form-inline .field-group .field-input textarea,
.form-content.form-inline .field-group .field-input select
{
    width: 100%;
}
.form-content.form-inline .field-group .field-input .field-password
{
    position: relative;
}
.form-content.form-inline .field-group .field-input .field-password .show-password
{
    position: absolute;
    top: 0;
    right: 0;
}
.form-content.form-inline .field-group .field-input .field-help
{
    position: absolute;
    top: 0;
    right: -45px;

    width: 40px;
    height: 40px;

    text-align: center;
    /*[class*="icon-"] {
			      &:before {
			      	position: relative;
			      	top: 10px;
			        font-size: 24px;
			        color: $grey-light;
			      }
			    }*/
}
.form-content.form-inline .field-group .field-input .field-help img
{
    display: inline-block;

    margin-top: 7px;
}
.form-content.form-inline .field-group .field-input .field-help:hover
{
    cursor: pointer;
}
.form-content.form-inline .field-group .field-input .field-help.active .field-help-tooltip
{
    display: block;
    /*opacity: 1;
			    		visibility: visible;*/
}
.form-content.form-inline .field-group .field-input .field-help .field-help-tooltip
{
    position: absolute;
    z-index: 99;
    top: 50px;
    left: 50%;

    display: none;

    width: 450px;
    margin-left: -225px;
    padding: 20px;
    /*opacity: 0;
			    	visibility: hidden;*/

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;

    background: #f4f4f4;
    box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
.form-content.form-inline .field-group .field-input .field-help .field-help-tooltip p
{
    margin-bottom: 15px;
    padding: 0 10px;

    text-align: left;
}
.form-content.form-inline .field-group .field-input .field-help .field-help-tooltip img
{
    max-width: 100%;

    border: 1px solid #d4d4d4;
}
.form-content.form-inline .field-group .field-input .field-help .field-help-tooltip:after
{
    position: absolute;
    top: -12px;
    left: 50%;

    display: block;

    width: 0;
    height: 0;
    margin-left: -12px;

    content: '';

    border-width: 0 12px 12px 12px;
    border-style: solid;
    border-color: transparent transparent #f4f4f4 transparent;
}
.form-content.form-inline .field-group.field-textarea .field-input
{
    width: 380px;
}
.form-content.form-inline .field-group.field-checkbox
{
    max-width: 280px;
    margin-left: 300px;
}
.form-content.form-inline .field-group.field-checkbox label a
{
    color: #313131;
}
.form-content.form-inline .field-group.field-radio .field-input
{
    padding-top: 10px;
}
.form-content.form-inline .field-group.field-radio .field-input label
{
    display: inline-block;

    margin-right: 0;
}
.form-content.form-inline .field-group.field-radio .field-input label ~ label
{
    margin-left: 50px;
}
.form-content.form-inline .field-group.field-no-label
{
    margin-left: 300px;
}
.form-content.form-inline .field-group.field-submit
{
    margin: 25px 0 0 0;
    padding-left: 300px;
}
.form-content.form-inline .field-group.field-submit p
{
    margin-top: 15px;

    color: #7b7b7b;
}
.form-content.form-inline .field-group.field-submit .button.primary
{
    min-width: 280px;
}
.form-content.form-inline .field-group.field-expand
{
    font-size: 15px;
    font-weight: 600;

    margin: 40px 0 20px 40px;
}
.form-content.form-inline .field-hidden
{
    display: none;
}
.form-content + .form-additional
{
    padding-top: 20px;
}

.form-additional
{
    margin-bottom: 20px;

    border-top: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 0 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 0 0 repeat;
}
.form-additional a
{
    float: left;

    color: #7b7b7b;
}
.form-additional a [class*='icon-']:before
{
    font-size: 10px;
}
.form-additional a:hover
{
    color: #313131;
}
.form-additional .required
{
    float: right;

    color: #7b7b7b;
}
.form-additional.top
{
    border: none;
}
.form-additional.bottom
{
    padding-top: 20px;
}

/*-----------------------------------------------------------------------------------------------------
Popin 'save panier'
 */

.form-content .txt-popin{
    margin-bottom: 15px;
}
.title-popin-cart {
    font-size: 22px;
    position: relative;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    font-weight: 600;
}


/*-----------------------------------------------------------------------------------------------------
    [form-infos]
-------------------------------------------------------------------------------------------------------*/
.form-content.form-infos
{
    padding: 20px 0 30px 0;

    border: none;
}
.form-content.form-infos .fieldset
{
    margin-bottom: 20px;
    padding: 0;

    border-top: none;
}
.form-content.form-infos .form-action
{
    margin-bottom: 0;
    padding-right: 20px;
}

.form-content.form-inline.form-infos .field-group
{
    font-size: 15px;

    margin-bottom: 5px;
}
.form-content.form-inline.form-infos .field-group .field-label
{
    width: 300px;
    height: auto;
    padding-left: 40px;

    color: #7b7b7b;
}
.form-content.form-inline.form-infos .field-group .field-label strong
{
    font-weight: 600;
}
.form-content.form-inline.form-infos .field-group .field-input span
{
    color: #7b7b7b;
}

/*-----------------------------------------------------------------------------------------------------
    [form-login]
-------------------------------------------------------------------------------------------------------*/
.form-login
{
    border-top: 1px dotted #7c7c7c;
    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
}
.form-login.form-inline .field-group .field-label
{
    width: 25%;
    padding: 0;
}
.form-login.form-inline .field-group .field-label label
{
    text-align: right;

    color: #313131;
}
.form-login.form-inline .field-group.field-checkbox
{
    margin-left: 25%;
}
.form-login.form-inline .field-group.field-no-label
{
    margin-left: 25%;
}
.form-login.form-inline .field-group.field-submit
{
    padding: 0;

    text-align: center;
}
.form-login + .form-additional
{
    border-top: none;
}

/*-----------------------------------------------------------------------------------------------------
    [form-search]
-------------------------------------------------------------------------------------------------------*/
.form-search input[type='text'],
.form-search input[type='search']
{
    float: left;

    width: 68%;
}

.form-search button.button.primary,
.form-search input[type='submit']
{
    float: right;

    width: 30%;
    min-width: 0;
}

/*-----------------------------------------------------------------------------------------------------
    [form-search]
-------------------------------------------------------------------------------------------------------*/
.form-filter
{
    margin: 10px 0 30px 0;
    padding: 20px 20px 10px 20px;
    background: #eee;
}
.form-filter input[type='text']
{
    height: 36px;

    border-color: #eee;
}
.form-filter .field-group
{
    float: left;

    width: 14%;
    margin-right: 2%;
}
.form-filter .field-group .field-label label
{
    margin-bottom: 5px;
}

.form-filter .info-filter
{
    margin: 10px 0px 0px 0px;
    padding: 2px 0px 0px 10px;
    background: #a98a3d12;
}
@media only screen and (max-width: 1200px)
{
    .form-filter .field-group .field-label label
    {
        font-size: 12px;
    }
}
.form-filter .field-group .field-input
{
    font-size: 13px;
}
.form-filter .field-group .field-input input
{
    font-size: 13px;
}
.form-filter .field-group.field-select
{
    width: 20%;
}
@media only screen and (max-width: 1200px)
{
    .form-filter .field-group.field-select
    {
        width: 18%;
    }
}
.form-filter .field-group.field-select .custom-select
{
    height: 36px;

    border-color: #eee;
}
.form-filter .field-group.field-select .custom-select:after
{
    background-image: url('../img/custom-select-pointer-grey.png');
}
.form-filter .field-group.field-select .custom-select select
{
    font-size: 13px;

    height: 34px;
    padding-right: 40px;

    text-overflow: ellipsis;
}
.form-filter .field-group.group-inline
{
    float: right;

    width: 44%;
    margin-right: 0;
    margin-left: 2%;
}
@media only screen and (max-width: 1200px)
{
    .form-filter .field-group.group-inline
    {
        width: 48%;
        margin-left: 0;
    }
}
.form-filter .field-group.group-inline .field-input span
{
    padding: 0 8px;
}
@media only screen and (max-width: 1200px)
{
    .form-filter .field-group.group-inline .field-input span
    {
        padding: 0 2px;
    }
}
.form-filter .field-group.group-inline .field-input span.first
{
    padding-left: 0;
}
.form-filter .field-group.group-inline .field-input input
{
    width: 24%;
    padding-right: 5px;
    padding-left: 5px;

    text-align: center;
}
.form-filter .field-group.group-inline .field-input .button
{
    font-size: 14px;

    width: 30%;
    min-width: 0;
    height: 34px;
    margin-left: 2%;
    padding: 0;
}
@media only screen and (max-width: 1200px)
{
    .form-filter .field-group.group-inline .field-input .button
    {
        width: 30%;
    }
}
.form-filter.filter-simple .field-group
{
    margin: 0;
}
.form-filter.filter-simple .field-group.field-select
{
    margin-left: 6%;
}
@media only screen and (max-width: 1200px)
{
    .form-filter.filter-simple .field-group.field-select
    {
        width: 20%;
    }
}
.form-filter.filter-simple .field-group.group-inline
{
    width: 54%;
    margin-left: 6%;
}
.form-filter.filter-simple .field-group.group-inline .button
{
    float: right;

    margin: 0;
}
/*-----------------------------------------------------------------------------------------------------
    [form-client]
-------------------------------------------------------------------------------------------------------*/
.form-client
{
    margin-bottom: 30px;
    padding: 40px 30px;

    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
}
.form-client.no-border
{
    border: none;
}
.form-client p
{
    font-size: 22px;

    margin-bottom: 25px;

    text-transform: uppercase;
}
.form-client .field-group
{
    float: left;

    width: 20%;
    padding-right: 25px;
}
.form-client .field-group .field-label label
{
    font-size: 15px;

    min-height: 20px;
}
.form-client .field-group .field-input .custom-select
{
    border: 1px solid #bbb;
}
.form-client .field-group .field-input .custom-select select
{
    height: 38px;
}
.form-client .field-group.field-submit
{
    padding: 30px 0 0 0;
}
.form-client .field-group.field-submit .button
{
    width: 100%;
    min-width: 0;
}
.form-client.form-user
{
    margin-bottom: 0;
    padding-bottom: 10px;
}

/*-----------------------------------------------------------------------------------------------------
    [list-product]
-------------------------------------------------------------------------------------------------------*/
.no-result
{
    font-size: 22px;
    line-height: 120%;

    padding: 75px 0 30px 0;

    text-align: center;
}

.product-result
{
    position: relative;
    left: 2%;

    margin-bottom: 15px;
}
.product-result .number
{
    font-size: 15px;
    font-weight: 300;

    float: left;

    padding-top: 4px;
}
.product-result .number strong
{
    font-size: 38px;
    font-weight: 600;
}
.product-result .number span
{
    font-size: 24px;
    font-weight: 600;
}
.product-result .filter
{
    float: right;
}
.product-result .filter .label
{
    font-weight: 300;

    float: left;

    padding: 12px 0 0 0;

    color: #7b7b7b;
}
.product-result .filter .custom-select
{
    float: left;

    min-width: 200px;
}

.list-product ul
{
    /*border-top: 1px dotted $grey;
		border-bottom: 1px dotted $grey;
		border-image: url('../img/border-dot.png') 1 0 1 0 repeat;*/
    position: relative;
    left: 2%;
}
.list-product ul li
{
    float: left;

    width: 31.333%;
    margin: 0 2% 0 0;
}
.list-product ul li.divider
{
    float: none;
    clear: both;

    width: auto;
    margin: 0 2% 0 0;

    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 0 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 0 0 1 0 repeat;
}

/*-----------------------------------------------------------------------------------------------------
    [list-filter]
-------------------------------------------------------------------------------------------------------*/
.list-filter
{
    margin-bottom: 10px;
}
.list-filter li
{
    display: inline-block;

    margin: 0 10px 10px 0;
}

/*-----------------------------------------------------------------------------------------------------
    [list-expand]
-------------------------------------------------------------------------------------------------------*/
.list-expand
{
    margin-bottom: 60px;

    border-top: 1px solid #eee;
}
.list-expand > li .expand-button
{
    font-size: 15px;
    font-weight: 600;

    position: relative;

    width: 100%;
    height: 50px;
    padding: 0 30px;

    cursor: pointer;
    text-align: left;

    border: none;
    border-bottom: 1px solid #eee;
    background: none;
}
.list-expand > li .expand-button [class*='icon-']
{
    font-size: 12px;

    position: absolute;
    top: 50%;
    right: 20px;

    margin-top: -6px;

    color: #b5b5b5;
}
.list-expand > li .expand-button.active + .expand-content
{
    display: block;
}
.list-expand > li .expand-content
{
    display: none;

    padding: 20px 40px;

    border-bottom: 1px solid #eee;
}

/*-----------------------------------------------------------------------------------------------------
    [list-img]
-------------------------------------------------------------------------------------------------------*/
.list-img
{
    margin: 0 -1% 35px -1%;
    margin-bottom: 35px;
}
.list-img li
{
    float: left;
    overflow: hidden;

    width: 18%;
    margin: 0 1%;
}
.list-img li a
{
    display: block;

    -webkit-transition: -webkit-transform 1s;
            transition: -webkit-transform 1s;
            transition: transform 1s;
            transition:         transform 1s, -webkit-transform 1s;
    -webkit-transform: scale(1);
            transform: scale(1);
}
.list-img li a img
{
    width: 100%;
}
.list-img li a:hover
{
    -webkit-transition: -webkit-transform .4s;
            transition: -webkit-transform .4s;
            transition: transform .4s;
            transition:         transform .4s, -webkit-transform .4s;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

/*-----------------------------------------------------------------------------------------------------
    [list-arrow]
-------------------------------------------------------------------------------------------------------*/
.list-arrow li
{
    margin-bottom: 15px;
}
.list-arrow li a
{
    font-size: 15px;

    position: relative;

    display: block;

    padding-left: 10px;

    color: #7c7c7c;
}
.list-arrow li a [class*='icon-']
{
    font-size: 6px;

    position: absolute;
    left: 0;

    color: #b5b5b5;
}
.list-arrow li a:hover
{
    color: #313131;
}

/*-----------------------------------------------------------------------------------------------------
    [page]
-------------------------------------------------------------------------------------------------------*/
body
{
    min-width: 990px;
}

.main
{
    padding-top: 25px;
}
.cart .main
{
    padding-top: 0;
}
.main.sidebar-left .sidebar
{
    float: left;

    width: 20%;
}
.main.sidebar-left .content
{
    float: right;

    width: 78%;
    padding-left: 20px;

    border-left: 1px solid #efefef;
}
.main .title-main
{
    font-size: 22px;

    position: relative;

    margin-bottom: 5px;

    text-transform: uppercase;

    color: #000;
}
.main .title-main.alt
{
    padding-left: 20px;
}
.main .title-main.title-link
{
    position: relative;
}
.main .title-main.title-link a
{
    font-size: 15px;
    font-weight: 300;

    position: absolute;
    top: 0;
    right: 0;

    display: block;

    text-transform: none;

    color: #7b7b7b;
}
.main .title-main.title-link a [class*='icon-']
{
    font-size: 12px;
}
.main .title-main.title-link a:hover
{
    color: #313131;
}
.main .title-main.title-link a.secondary
{
    top: -5px;

    min-width: 0;
    height: auto;
    padding: 5px 30px;
}

.title-border
{
    font-size: 22px;

    position: relative;

    margin-bottom: 5px;

    text-transform: uppercase;

    color: #000;
}


.title-border span
{
    position: relative;
    z-index: 2;

    display: inline-block;

    padding-right: 15px;

    background: #fff;
}
.title-border:after
{
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: url('../img/border-dot.png') repeat-x 0 0;
}
.title-border + .subtitle
{
    font-weight: 300;

    margin-top: -5px;
    margin-bottom: 20px;
}


.subtitle
{
    font-size: 18px;

    margin-bottom: 30px;
    padding: 6px 0;

    border-top: 1px dotted #7c7c7c;
    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
}
.subtitle [class*='icon-']
{
    font-size: 20px;

    position: relative;
    top: 2px;
    left: 2px;

    margin-right: 10px;
}

.align-right
{
    text-align: right;
}

/*-----------------------------------------------------------------------------------------------------
    [account]
-------------------------------------------------------------------------------------------------------*/
.main.sidebar-left .content.account-content
{
    padding-left: 40px;
}

.account-content .information-container
{
    padding: 20px;

    border: 1px solid #efefef;
}
.account-content .information-container .block-information
{
    float: left;

    width: 33.333%;
}

.account-content .command-infos
{
    margin-bottom: 30px;
}
.account-content .command-infos .intro
{
    margin: 15px 0 20px 0;

    color: #7b7b7b;
}
.account-content .command-infos .intro a
{
    text-decoration: underline;

    color: #7b7b7b;
}
.account-content .command-infos .intro a:hover
{
    color: #313131;
}
.account-content .command-infos .command-infos-content
{
    padding: 25px 0;

    border-top: 1px dotted #7c7c7c;
    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
}
.account-content .command-infos .infos
{
    float: left;

    width: 42%;

    border-right: 1px dotted #b5b5b5;
    -o-border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
       border-image: url('../img/border-dot-up.png') 0 1 0 0 repeat;
}
.account-content .command-infos .infos .block-information-inline .infos-label
{
    width: 55%;
}
.account-content .command-infos .infos .block-information-inline .infos-text
{
    width: 45%;
}
.account-content .command-infos .address
{
    float: right;

    width: 52%;
}
.account-content .command-infos .address .block-information-inline .infos-label
{
    width: 45%;
}
.account-content .command-infos .address .block-information-inline .infos-text
{
    width: 55%;
}

.account-content .form-inline .field-group .field-label label
{
    font-size: 15px;
}

.account-content .form-inline .field-group .field-input textarea
{
    width: 380px;
    height: 180px;
}

.account-content .form-inline .field-group .field-input .custom-select
{
    width: 320px;
}

.user-account-content
{
    padding: 10px 30px 30px 30px;

    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
}
.user-account-content.no-border
{
    border: none;
}
.user-account-content .title-main
{
    margin-bottom: 20px;
}
.user-account-content .product-result
{
    left: 0;

    padding-top: 30px;

    border-top: 1px solid #efefef;
}

/*-----------------------------------------------------------------------------------------------------
    [homepage]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [page]
-------------------------------------------------------------------------------------------------------*/
.page-login
{
    padding-bottom: 160px;

    background: url('../img/bg-login.jpg') no-repeat center center fixed;
    background-size: cover;
}
.page-login > .container
{
    position: relative;
}
.page-login .lang
{
    position: absolute;
    top: 0;
    right: 0;
}
.page-login .login-content
{
    position: relative;
    top: 60px;

    width: 700px;
    margin: 0 auto;
    padding: 0 60px 25px 60px;

    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .73);
}
.page-login .login-content .logo
{
    height: 120px;
}
.page-login .login-content .title
{
    font-size: 22px;

    margin-bottom: 25px;

    text-align: center;
}
.page-login .login-content .title.with-subtitle
{
    margin-bottom: 6px;
}
.page-login .login-content .title + p
{
    margin-bottom: 30px;

    text-align: center;
}
.page-login .login-content .no-account
{
    padding-top: 25px;

    text-align: center;
}
.page-login .login-content .no-account .button
{
    margin-bottom: 40px;
}
.page-login .login-content .no-account p
{
    margin-bottom: 20px;

    color: #7b7b7b;
}
.page-login .login-content .no-account p a
{
    text-decoration: underline;

    color: #7b7b7b;
}
.page-login .login-content .no-account p a:hover
{
    color: #313131;
}
.page-login .login-content .form-msg
{
    padding: 30px 0;

    border-top: 1px dotted #7c7c7c;
    border-bottom: 1px dotted #7c7c7c;
}
.page-login .login-content .form-msg .title
{
    margin-bottom: 30px;
}
.page-login .login-content .form-msg p
{
    margin-bottom: 0;

    color: #7b7b7b;
}
.page-login .login-content .form-msg p a
{
    text-decoration: underline;

    color: #7b7b7b;
}
.page-login .login-content .form-msg p a:hover
{
    color: #313131;
}

/*-----------------------------------------------------------------------------------------------------
    [page-product]
-------------------------------------------------------------------------------------------------------*/
.product-content
{
    margin-bottom: 40px;
}
.product-content .product-img
{
    position: relative;

    float: left;

    width: 40%;
}
.product-content .product-img a
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: block;

    width: 70px;
    height: 70px;

    cursor: pointer;
    text-align: center;

    border: none;
    background: none;
}
.product-content .product-img a [class*='icon-']
{
    position: relative;
    top: 25px;

    -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;

    color: #fff;
    text-shadow: 0 0 6px rgba(0, 0, 0, .5);
}
.product-content .product-img a [class*='icon-']:before
{
    font-size: 36px;
}
.product-content .product-img a:hover [class*='icon-']
{
    text-shadow: 0 0 10px rgba(0, 0, 0, .7);
}
.product-content .product-infos
{
    float: right;

    width: 56%;
    padding-right: 30px;
}
.product-content .product-infos .product-infos--title
{
    position: relative;

    padding: 0 20px 15px 20px;

    border-bottom: 1px solid #efefef;
}
.product-content .product-infos .product-infos--title h1
{
    font-size: 22px;
    font-weight: 600;

    margin-bottom: 20px;
    padding-right: 120px;
}
.product-content .product-infos .product-infos--title .new
{
    font-size: 15px;
    font-weight: 600;

    position: absolute;
    top: -28px;
    right: 20px;

    display: inline-block;

    padding: 4px 10px 1px 10px;

    color: #fff;
    background: #b69b5a;
}
.product-content .product-infos .product-infos--title ul li
{
    font-size: 15px;

    margin-bottom: 5px;

    color: #000;
}
.product-content .product-infos .product-infos--title ul li span
{
    display: inline-block;

    width: 150px;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--availability
{
    position: relative;

    padding: 20px 0;
}
.product-content .product-infos .product-infos--availability p
{
    font-size: 13px;

    padding: 0 20px;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--availability .availability
{
    font-size: 15px;

    margin-bottom: 20px;

    color: #000;
}
.product-content .product-infos .product-infos--availability .availability span
{
    display: inline-block;

    width: 150px;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--availability .availability u
{
    font-size: 18px;
    font-weight: 600;

    margin-right: 10px;
    padding: 4px 20px 2px 20px;

    text-align: center;
    text-decoration: none;

    color: #fff;
    background: #9ed200;
}
.product-content .product-infos .product-infos--availability .stock-button
{
    position: absolute;
    top: 19px;
    right: 20px;

    padding-right: 15px;

    cursor: pointer;
    text-decoration: underline;

    color: #7b7b7b;
    border: none;
    background: none;
}
.product-content .product-infos .product-infos--availability .stock-button [class*='icon-']
{
    position: absolute;
    top: 2px;
    right: 0;
}
.product-content .product-infos .product-infos--availability .stock-button [class*='icon-']:before
{
    font-size: 10px;
}
.product-content .product-infos .product-infos--availability .stock-button.active
{
    color: #000;
}
.product-content .product-infos .product-infos--availability .stock
{
    display: none;
}
.product-content .product-infos .product-infos--availability .stock .table
{
    margin-bottom: 20px;
}
.product-content .product-infos .product-infos--availability .stock .table th
{
    padding: 4px 10px;

    text-align: center;
}
.product-content .product-infos .product-infos--availability .stock .table td
{
    text-align: center;
}
.product-content .product-infos .product-infos--addtocart
{
    position: relative;

    margin-bottom: 20px;
    padding: 20px 20px;

    border-top: 1px dotted #7c7c7c;
    border-bottom: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
    background: #f9f9f9;
}

.linked-panpap-select-wrapper{
    margin-top: 20px;
}

.linked-panpap-select-wrapper .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.linked-panpap-select-wrapper .custom-select select {
    width: 100%;
    padding: 10px 40px 10px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

.linked-panpap-select-wrapper .custom-select::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9999 9.17019C16.8126 8.98394 16.5591 8.87939 16.2949 8.87939C16.0308 8.87939 15.7773 8.98394 15.5899 9.17019L11.9999 12.7102L8.45995 9.17019C8.27259 8.98394 8.01913 8.87939 7.75495 8.87939C7.49076 8.87939 7.23731 8.98394 7.04995 9.17019C6.95622 9.26315 6.88183 9.37375 6.83106 9.49561C6.78029 9.61747 6.75415 9.74818 6.75415 9.88019C6.75415 10.0122 6.78029 10.1429 6.83106 10.2648C6.88183 10.3866 6.95622 10.4972 7.04995 10.5902L11.2899 14.8302C11.3829 14.9239 11.4935 14.9983 11.6154 15.0491C11.7372 15.0998 11.8679 15.126 11.9999 15.126C12.132 15.126 12.2627 15.0998 12.3845 15.0491C12.5064 14.9983 12.617 14.9239 12.7099 14.8302L16.9999 10.5902C17.0937 10.4972 17.1681 10.3866 17.2188 10.2648C17.2696 10.1429 17.2957 10.0122 17.2957 9.88019C17.2957 9.74818 17.2696 9.61747 17.2188 9.49561C17.1681 9.37375 17.0937 9.26315 16.9999 9.17019Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.product-content .product-infos .product-infos--addtocart .show-price
{
    font-size: 16px;
    font-weight: 600;

    width: 100%;

    cursor: pointer;
    text-align: center;

    color: #7b7b7b;
    border: none;
    background: none;
}
.product-content .product-infos .product-infos--addtocart .show-price [class*='icon-']
{
    font-size: 12px;

    margin-left: 10px;
}
.product-content .product-infos .product-infos--addtocart .expand-content
{
    display: none;

    padding: 30px 0 20px 0;
}
.product-content .product-infos .product-infos--addtocart .price
{
    font-size: 15px;
    font-size: 28px;
    font-weight: 600;

    margin-bottom: 15px;

    color: #000;
}
.product-content .product-infos .product-infos--addtocart .price span
{
    font-size: 15px;
    font-weight: 400;

    display: inline-block;

    width: 150px;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--addtocart .qty
{
    margin-bottom: 15px;

    color: #000;
}
.product-content .product-infos .product-infos--addtocart .qty label
{
    font-size: 15px;

    display: inline-block;

    width: 150px;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--addtocart .qty input[type='text']
{
    width: 80px;
    margin-right: 10px;
}
.product-content .product-infos .product-infos--addtocart .primary
{
    font-size: 15px;
}
.product-content .product-infos .product-infos--addtocart .button-sample
{
    position: absolute;
    right: 30px;
    bottom: 50px;

    padding-left: 20px;

    cursor: pointer;
    text-decoration: underline;

    color: #7b7b7b;
    border: none;
    background: none;
}
.product-content .product-infos .product-infos--addtocart .button-sample [class*='icon-']
{
    position: absolute;
    top: 0;
    left: 0;
}
.product-content .product-infos .product-infos--addtocart .button-sample [class*='icon-']:before
{
    font-size: 16px;
}
.product-content .product-infos .product-infos--description
{
    padding: 0 20px;
}
.product-content .product-infos .product-infos--description .title
{
    font-size: 22px;

    margin-bottom: 20px;

    color: #000;
}
.product-content .product-infos .product-infos--description ul li
{
    font-size: 15px;

    display: table;

    width: 100%;
    height: 30px;

    color: #000;
}
.product-content .product-infos .product-infos--description ul li span
{
    display: inline-block;
    display: table-cell;

    width: 200px;

    vertical-align: middle;

    color: #7b7b7b;
}
.product-content .product-infos .product-infos--description ul li span + span
{
    width: auto;

    color: #000;
}
.product-content .product-infos .product-infos--description ul li [class*='icon-']
{
    font-size: 24px;

    position: relative;
    top: 5px;

    margin-right: 10px;
}
.product-content .product-infos .product-infos--description ul li img
{
    display: inline-block;
}

.product-similar
{
    padding: 30px 20px 0 20px;

    border-top: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 0 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 0 0 repeat;
}
.product-similar .title
{
    font-size: 22px;

    margin-bottom: 25px;

    color: #000;
}
.product-similar .bx-wrapper
{
    margin-bottom: 0;
}
.product-similar .block-product .block-product--new
{
    font-size: 15px;
    font-weight: 600;

    top: 10px;

    display: inline-block;

    padding: 4px 10px 1px 10px;

    color: #fff;
    background: #b69b5a;
}

/*-----------------------------------------------------------------------------------------------------
    [page-cmd-ref]
-------------------------------------------------------------------------------------------------------*/
.page-cmd-ref .addtocart
{
    margin-top: 40px;

    text-align: right;
}

/*-----------------------------------------------------------------------------------------------------
    [cart]
-------------------------------------------------------------------------------------------------------*/
.cart-content .block-cart
{
    position: relative;

    margin-bottom: 40px;
    padding: 0 270px 80px 0;

    border-bottom: 1px solid #f4f4f4;
}
.cart-content .block-cart .ref-client
{
    position: absolute;
    top: 10px;
    right: 0;

    width: 230px;
}
.cart-content .block-cart .ref-client p
{
    margin-bottom: 15px;
}
.cart-content .block-cart .ref-client p label
{
    margin-bottom: 5px;
}
.cart-content .block-cart .ref-client p input[type='text']
{
    height: 34px;
}
.cart-content .block-cart .ref-client p textarea
{
    line-height: 120%;

    height: 90px;
}
.cart-content .block-cart.last
{
    border: none;
}

.cart-content .super-total
{
    margin: 0 0 100px 0;
    padding: 30px 270px 30px 30px;

    border-top: 1px dotted #7c7c7c;
    -o-border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
       border-image: url('../img/border-dot.png') 1 0 1 0 repeat;
    background: #efefef;
}
.cart-content .super-total .table tr td
{
    font-size: 16px;
    line-height: 100%;

    padding: 20px;

    text-align: right;

    border-top: 1px dotted #efefef;
    background: #fff;
}
.cart-content .super-total .table tr td:last-child
{
    width: 40%;
    padding-right: 70px;
}
.cart-content .super-total .table tr td small
{
    font-size: 12px;
}
.cart-content .super-total .table tr:last-child td
{
    font-size: 18px;
    font-weight: bold;
}
.cart-content .super-total .table tr:nth-child(3) td
{
    font-weight: normal;
}
.cart-content .super-total .align-right
{
    position: relative;
}
.cart-content .super-total .align-right .button-back
{
    position: absolute;
    top: 10px;
    left: 0;
}

.cart-update
{
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px;

    text-align: center;

    color: #fff;
    background: rgba(0, 0, 0, .75);
}
.cart-update p
{
    font-size: 16px;

    margin-bottom: 10px;
}
.cart-update .button
{
    font-size: 15px;

    height: 34px;
    padding-top: 9px;
}

@font-face
{
    font-family: 'icons-calculateur';

    src: url('../fonts/calculateur/icons.eot');
    src: url('../fonts/calculateur/icons.eot?#iefix') format('eot'),
    url('../fonts/calculateur/icons.woff') format('woff'),
    url('../fonts/calculateur/icons.ttf') format('truetype'),
    url('../fonts/calculateur/icons.svg#icons') format('svg');
}

.msg-group-class{
    padding:0 0 30px 0;
}

.p-group-class{
    font-size:18px;
    color:red;
}
