* {
  font-family: 'Lato', sans-serif;
}
*:focus {
  outline: 1px dotted #fff0f5;
  outline-offset: -1px;
}
a:focus {
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}
img.fluid {
  width: 100%;
}
body {
  background-color: #FFFFFF !important;
  height: auto!important;
}
.w-100 {
  width: 100%;
}
.modal {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8888;
  overflow: hidden;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
}
.modal.open {
  visibility: visible;
  overflow: auto;
}
.modal.lcv {
  display: block;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  height: 100vh;
  transition: all ease 0.2s;
}
.modal.lcv .modal-overlay {
  opacity: 1;
}
.modal.lcv .modal-content {
  opacity: 1;
  margin: 30px auto;
}
@media screen and (max-width: 539px) {
  .modal.lcv .modal-content {
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }
}
.modal#infoModale {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal#infoModale p {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.modal#infoModale .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal#infoModale .modal-body input {
  padding: 0 50px;
}
.modal .modal-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
}
.modal.open .modal-content {
  opacity: 1;
}
.modal.open .modal-content {
  margin-top: 30px;
}
.modal .modal-content {
  position: relative;
  margin: -30px auto;
  max-width: 560px;
  z-index: 1;
  overflow: hidden;
  transition: all ease-in-out 0.2s;
}
.modal .modal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 539px) {
  .modal .modal-content {
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }
}
.modal .modal-header {
  position: relative;
  background: #e5e5e5;
  padding-left: 15px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.modal .modal-header .modal-title {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
}
.modal .modal-header .close {
  color: #b2b2b2;
  font-size: 26px;
  text-align: center;
  padding: 0 15px;
  cursor: pointer;
  transition: all ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color ease-in-out 0.2s;
}
.modal .modal-header .close:hover {
  color: #1a1a1a;
}
.modal .modal-body {
  padding: 30px 15px 15px 15px;
  background: #FFFFFF;
}
.modal.wide .modal-content {
  max-width: 800px;
}
.modal.superwide .modal-content {
  max-width: 1200px;
}
.modal #panierModalAchatEnfant img {
  max-width: 220px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 719px) {
  .modal #panierModalAchatEnfant img {
    max-width: 150px;
  }
}
.modal #panierModalAchatEnfant #TexteAchatModal {
  font-size: 12px;
  text-align: center;
  margin: 10px 0;
  color: #1a1a1a;
}
.modal #RetourModalAchat {
  padding-top: 15px;
}
.modal .txt-modal {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#TexteChequeModal,
#TexteVirementModal {
  color: #1a1a1a;
  font-size: 14px;
  text-align: justify;
  margin-bottom: 15px;
}
#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 99999999999999;
  background-color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  text-align: center;
}
#loading > div {
  left: 50%;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -178%);
}
#loading p {
  color: #FFFFFF;
  font-size: 16px;
}
#loading.load-dash {
  background: none;
}
#loading.load-dash > div {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
  vertical-align: middle;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}
@-webkit-keyframes rotating {
  /* Safari and Chrome */
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loading > div {
  left: 50%;
  margin-top: 60px;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -178%);
  text-align: center;
  color: #FFFFFF;
}
#loading > div p {
  font-size: 16px;
  margin-top: 15px;
}
#loading > div svg {
  width: 46px;
  color: #FFFFFF;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.btn {
  cursor: pointer;
  display: block;
  transition: all ease-in-out 0.2s;
}
button.btn {
  background: none;
  border: none;
}
.btn + .btn {
  margin-top: 15px;
}
.btn.primary {
  display: block;
  width: 100%;
  height: 48px;
  border: 1px solid #1a1a1a;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
  padding-top: 12px;
  background-color: #FFFFFF;
}
.btn.primary:hover {
  border-color: #d4322f;
  color: #FFFFFF;
  background-color: #d4322f;
}
.btn.secondary {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #e5e5e5;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: #808080;
  padding-top: 12px;
}
.btn.secondary:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.btn.dashed {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 42px;
  border: 1px dashed #b2b2b2;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #b2b2b2;
  padding-top: 13px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btn.dashed i {
  margin-right: 10px;
}
.btn.dashed:hover {
  color: #743f2d;
  border-color: #743f2d;
}
.btn.cta {
  display: block;
  width: 100%;
  height: 48px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 12px;
  background-color: #d4322f;
}
.btn.cta:hover {
  color: #d4322f;
  background-color: #f7e2e9;
}
button.btn.primary,
button.btn.secondary,
button.btn.cta {
  padding-top: 3px;
}
.btn.txt {
  display: block;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0;
  color: #808080;
  margin-top: 15px!important;
  margin-bottom: 15px!important;
}
.btn.txt:hover {
  color: #d4322f;
}
.btn.txt.fw {
  text-align: center;
}
.field + .field {
  margin-top: 15px;
}
.field + .btn {
  margin-top: 30px;
}
select.field {
  width: 100%;
  height: 48px;
  padding-left: 5px;
  background: #FFFFFF;
  border: 1px solid #e5e5e5;
  color: #1a1a1a;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.field select {
  width: 100%;
  height: 48px;
  padding-left: 5px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  color: #1a1a1a;
}
.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999999;
  line-height: 12px;
  margin-bottom: 5px;
}
.field input {
  display: block;
  height: 48px;
  width: 100%;
  border: none;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  padding: 5px 10px;
  font-size: 14px;
  color: #1a1a1a;
}
.field textarea {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  color: #1a1a1a;
}
.field input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.field input[type=checkbox] + label {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.field input[type=checkbox]:hover + label {
  text-decoration: underline;
  cursor: pointer;
}
.field.checkbox {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.field.promo-code {
  display: flex;
}
.field.promo-code input {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  border-right: none;
}
.field.promo-code button {
  display: inline-block;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  width: 60px;
  height: 46px;
  background: #743f2d;
  color: #FFFFFF;
  border: 2px solid #743f2d;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.field.promo-code button:hover {
  background: #FFFFFF;
  color: #743f2d;
}
.title {
  text-transform: uppercase;
  margin: 15px 0;
}
.title-comp {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 719px) {
  .title-comp {
    font-size: 18px;
    margin: 10px 0 20px 0;
  }
}
.item-block {
  display: block;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 20px;
}
.item-block a {
  display: block;
  text-align: center;
}
.item-block a p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color ease-in-out 0.2s;
}
.item-block a .price {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}
.item-block a .price .pxregular {
  font-weight: 900;
}
.item-block a .price .pxcons {
  font-size: 14px;
  text-align: left;
}
.item-block a .price .pxcons span {
  font-size: 10px;
  text-transform: uppercase;
  color: #808080;
}
.item-block a span {
  display: block;
  overflow: hidden;
}
.item-block a span img {
  transition: all ease-in-out 0.3s;
}
.item-block .controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 15px;
}
.item-block .controls .field {
  margin-right: 10px;
}
.item-block .controls .field input,
.item-block .controls .field select {
  height: 40px;
}
.item-block .controls .package {
  flex: 1 1 0;
}
.item-block .controls .quantity {
  flex: 0 0 50px;
}
.item-block .controls .fast-cart {
  display: block;
  height: 40px;
  border: 1px solid #1a1a1a;
  text-align: center;
  color: #1a1a1a;
  flex: 0 0 60px;
  transition: all ease-in-out 0.2s;
}
.item-block .controls .fast-cart svg {
  width: 26px;
}
.item-block .controls .fast-cart:hover {
  background: #d4322f;
  border-color: #d4322f;
  color: #FFFFFF;
}
.item-block:hover {
  border-color: #d4322f;
}
.item-block:hover a .brand,
.item-block:hover a .details {
  color: #d4322f;
}
.item-block:hover a span img {
  transform: scale(1.1);
}
@media screen and (max-width: 719px) {
  .item-block .controls {
    flex-wrap: wrap;
  }
  .item-block .controls .field {
    margin: 0;
  }
  .item-block .controls .quantity {
    margin-left: 10px;
  }
  .item-block .controls .fast-cart {
    flex: 0 0 100%;
    margin-top: 10px;
  }
}
.breadcrumbs {
  padding: 10px 0;
  list-style: inside none;
}
.breadcrumbs li {
  display: inline-block;
  vertical-align: middle;
  color: #808080;
  font-size: 12px;
  text-transform: capitalize;
}
.breadcrumbs li:after {
  content: ">";
  margin: 0 5px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs li.active {
  color: #1a1a1a;
}
.breadcrumbs li a {
  color: inherit;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .breadcrumbs {
    display: none;
  }
}
.slick-arrow {
  position: absolute;
  top: 0;
  padding-top: 13px;
  z-index: 50;
  width: 60px;
  height: 100%;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.2s;
  color: #FFFFFF;
}
.slick-arrow svg {
  width: 50px;
  height: 50px;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #d4322f;
}
.admin-block {
  background: #333333;
  padding: 30px 0;
}
.admin-block p {
  font-size: 14px;
  color: #FFFFFF;
}
main.admin-page .list-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #d4322f;
}
main.admin-page .list-tabs a {
  flex: 1 1 50%;
  color: #1a1a1a;
  text-align: center;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
  transition: all ease-in-out 0.2s;
}
main.admin-page .list-tabs a:hover {
  color: #d4322f;
}
main.admin-page .list-tabs a.active {
  background: #d4322f;
  color: #FFFFFF;
}
main.admin-page .panel-content {
  display: none;
  position: relative;
  max-height: 655px;
  background: #f5f5f5;
  overflow-y: auto;
}
main.admin-page .panel-content.active {
  display: block;
}
main.admin-page .panel-content ul li {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
main.admin-page .panel-content ul li span.txt {
  flex-grow: 1;
  padding-left: 10px;
  cursor: pointer;
}
main.admin-page .panel-content ul li span.txt:hover {
  color: #d4322f;
}
main.admin-page .panel-content ul li span.coche {
  width: 25px;
  height: 15px;
  background-image: url(../images/common/coche.png);
  background-repeat: no-repeat;
  background-position: 50% top;
}
main.admin-page .panel-content ul li.caption {
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  padding: 3px 0;
  background: rgba(156, 0, 93, 0.6);
}
main.admin-page .panel-content ul li.caption span {
  width: 25px;
  text-align: center;
  font-size: 10px;
  color: #FFFFFF;
}
main.admin-page .tab-content {
  background: #f5f5f5;
  max-height: 700px;
  padding-bottom: 15px;
  overflow-y: auto;
  position: relative;
}
main.admin-page #NomFileTopCat {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #FFFFFF;
  background: #1a1a1a;
  border: none;
}
main.admin-page [class^='niveau'] {
  cursor: pointer;
}
main.admin-page .niveau-a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4c4c4c;
  background: #cccccc;
  margin-top: 10px;
}
main.admin-page .niveau-a .txt {
  padding: 3px 0 3px 10px;
}
main.admin-page .niveau-b {
  font-weight: 700;
  color: #4c4c4c;
}
main.admin-page .niveau-b .txt {
  padding: 2px 0 2px 10px;
  font-style: italic;
  font-size: 12px;
}
main.admin-page .niveau-c {
  padding-left: 10px;
  color: #1a1a1a;
}
main.admin-page .niveau-c .txt {
  border-left: 1px solid #cccccc;
  font-size: 12px;
}
main.admin-page .editor {
  background: #f5f5f5;
}
main.admin-page .editor textarea {
  display: block;
  width: 100%;
  height: 500px;
  background: none;
  border: none;
  padding: 15px;
  color: #1a1a1a;
  font-family: "Lucida Console", Monaco, monospace;
  line-height: 18px;
  font-size: 12px;
}
main.admin-page .editor .controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px;
}
main.admin-page .editor .controls .btn {
  font-size: 12px;
  margin: 0;
  width: auto;
  flex: 0 1 50%;
  max-width: 100%;
}
main.admin-page .editor .controls .btn + .btn {
  margin-left: 15px;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
table caption,
table th,
table td,
table tr {
  vertical-align: top;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a img {
  border: 0;
}
svg {
  fill: currentColor;
}
#M1 {
  vertical-align: top;
}
header {
  border-bottom: 1px solid #fff0f5;
}
header .logo {
  display: block;
  padding: 30px 0;
}
header .logo img {
  margin: auto;
  max-width: 100%;
  width: 200px;
}
@media screen and (max-width: 719px) {
  header .logo {
    padding: 15px 0;
  }
}
header .nav-toggle {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all ease-in-out 0.2s;
}
header .nav-toggle p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}
header .nav-toggle svg {
  width: 26px;
}
header .nav-toggle.active {
  color: #d4322f;
}
header .search-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
header .search-bar button {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  color: #999999;
  background: #f7f7f7;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
header .search-bar button svg {
  width: 26px;
}
header .search-bar button:hover {
  color: #FFFFFF;
  background: #d4322f;
}
header .search-bar input {
  border: none;
  font-size: 14px;
  color: #999999;
  background: #f7f7f7;
  padding-left: 10px;
  height: 46px;
  flex: 1 1 0;
}
@media screen and (max-width: 719px) {
  header .search-container {
    margin: 0;
    padding: 0;
  }
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
header .menu > div {
  flex: 1 1 50%;
  height: 100%;
}
header .menu .logout a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #999999;
}
header .menu .logout a svg {
  width: 26px;
  color: #999999;
  stroke: currentColor;
  transition: all ease-in-out 0.2s;
}
header .menu .logout a p {
  opacity: 0;
  position: absolute;
  top: 63%;
  font-size: 10px;
  text-transform: uppercase;
  color: #999999;
  transition: all ease-in-out 0.2s;
}
header .menu .logout a:hover p {
  top: 65%;
  opacity: 1;
}
header .menu .logout a:hover svg {
  color: #d4322f;
}
header .menu .language {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
header .menu .language .lang-current {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  transition: all ease-in-out 0.2s;
}
header .menu .language .lang-current p {
  color: #999999;
  margin: 0 0 1px 10px;
}
header .menu .language .lang-current:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  flex: 0 0 6px;
  margin-left: auto;
  border-color: #000000 transparent transparent transparent;
}
header .menu .language .lang-current.active {
  border-color: #f2f2f2;
}
header .menu .language .lang-choice {
  display: none;
  z-index: 999;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #f2f2f2;
  border-top: none;
  list-style: inside none;
}
header .menu .language .lang-choice li {
  border-bottom: 1px solid #f2f2f2;
}
header .menu .language .lang-choice li:last-child {
  border-bottom: none;
}
header .menu .language .lang-choice li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 10px;
  text-align: center;
  color: #999999;
}
header .menu .language .lang-choice li a p {
  margin-left: 10px;
}
header .menu .language .lang-choice li a:hover {
  background: #f2f2f2;
  color: #1a1a1a;
}
header .menu .language:hover .lang-current {
  border-color: #f2f2f2;
}
@media screen and (max-width: 719px) {
  header .menu .language .lang-current p {
    display: none;
  }
  header .menu .language .lang-choice li a {
    padding: 10px 10px;
  }
  header .menu .language .lang-choice li a p {
    display: none;
  }
}
header .menu .cart {
  position: relative;
}
header .menu .cart > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #999999;
  transition: color ease-in-out 0.2s;
  cursor: pointer;
}
header .menu .cart > a p {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #d4322f;
  color: #FFFFFF;
  min-width: 17px;
  height: 17px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 3px 4px;
  text-transform: uppercase;
}
header .menu .cart > a svg {
  width: 26px;
}
header .menu .cart .cart-details {
  display: none;
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #d4322f;
  padding: 5px 15px 15px 15px;
  width: 300px;
}
header .menu .cart .cart-details .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
header .menu .cart .cart-details .item > div {
  flex: 0 1 30%;
}
header .menu .cart .cart-details .item > div img {
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
header .menu .cart .cart-details .item p {
  flex: 1 1 70%;
  margin-left: 10px;
  color: #1a1a1a;
  font-size: 14px;
  transition: all ease-in-out 0.2s;
}
header .menu .cart .cart-details .item p span {
  color: #808080;
}
header .menu .cart .cart-details .item:hover img {
  opacity: 0.7;
}
header .menu .cart .cart-details .item:hover p {
  color: #d4322f;
}
header .menu .cart .cart-details .total {
  border: 1px solid #f7e2e9;
  border-left: none;
  border-right: none;
  margin-bottom: 10px;
  padding: 5px 0;
  color: #1a1a1a;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}
header .menu .cart .cart-details .total span {
  font-weight: 700;
}
header .menu .cart .cart-details .btn {
  display: block;
  width: 100%;
  height: 38px;
  border: 1px solid #1a1a1a;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
  padding-top: 8px;
  background-color: #FFFFFF;
}
header .menu .cart .cart-details .btn:hover {
  border-color: #d4322f;
  color: #FFFFFF;
  background-color: #d4322f;
}
header .menu .cart:hover > a {
  color: #d4322f;
}
header .menu .cart:hover .cart-details {
  display: block;
}
@media screen and (max-width: 719px) {
  .nav-toggle {
    justify-content: center;
  }
  .nav-toggle .icon {
    margin: 0;
    transition: color ease-in-out 0.2s;
  }
  .nav-toggle p {
    display: none;
  }
  .nav-toggle:focus {
    outline: none;
  }
  .nav-toggle.active .icon {
    color: #f77620;
  }
  .menu > div > a {
    flex-direction: column;
  }
  .menu > div > a .icon {
    margin-right: 0;
  }
  .menu > div > a p {
    display: none;
  }
}
@media screen and (min-width: 720px) {
  nav {
    border-bottom: 1px solid #fff0f5;
  }
  nav .nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .nav-item {
    flex: 1 1 0;
  }
  nav .nav-item .nav-title .link {
    display: block;
    position: relative;
    color: #333333;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px 0;
    text-align: center;
    transition: all ease-in-out 0.2s;
  }
  nav .nav-item .nav-title .toggle {
    display: none;
  }
  nav .nav-item .sub-nav {
    display: none;
    z-index: 50;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: #f7f7f7;
    padding: 30px;
  }
  nav .nav-item .sub-nav ul {
    padding: 0;
    list-style: inside none;
    flex: 0 0 25%;
  }
  nav .nav-item .sub-nav ul li.sub-nav-title {
    color: #808080;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  nav .nav-item .sub-nav ul li.sub-nav-title:empty:before {
    content: "\00a0";
  }
  nav .nav-item .sub-nav ul li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #1a1a1a;
    transition: color ease-in-out 0.2s;
  }
  nav .nav-item .sub-nav ul li a:hover {
    color: #d4322f;
  }
  nav .nav-item:hover .nav-title .link {
    background: #fff0f5;
  }
  nav .nav-item:hover .sub-nav {
    display: flex;
  }
  nav .nav-item.Présentation .sub-nav {
    display: none;
  }
  nav .nav-item.Fabrication .sub-nav {
    display: none;
  }
  nav .nav-item.Contact .sub-nav {
    display: none;
  }
  nav .nav-item.Pro .sub-nav {
    display: none;
  }
}
@media screen and (min-width: 721px) and (max-width: 960px) {
  nav .nav-item .nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .nav-item .nav-title .link {
    flex: 0 0 70%;
    font-size: 14px;
  }
  nav .nav-item .nav-title .toggle {
    flex: 0 0 30%;
    display: block;
    color: #b2b2b2;
    text-align: right;
    font-size: 22px;
    padding-right: 15px;
    padding-top: 6px;
    transition: all ease-in-out 0.2s;
  }
  nav .nav-item .nav-title .toggle svg {
    width: 18px;
  }
  nav:hover .sub-nav {
    display: none;
  }
}
@media screen and (max-width: 719px) {
  nav {
    background: #f2f2f2;
    display: none;
    margin-bottom: 15px;
  }
  nav .container {
    margin: 0;
    padding: 0;
  }
  nav .nav-container {
    display: block;
  }
  nav .nav-item .nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .nav-item .nav-title .link {
    flex: 0 0 50%;
    display: block;
    position: relative;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 0 15px 15px;
    text-align: left;
    transition: all ease-in-out 0.2s;
  }
  nav .nav-item .nav-title .toggle {
    flex: 0 0 50%;
    display: block;
    color: #b2b2b2;
    text-align: right;
    font-size: 22px;
    padding-right: 15px;
    padding-top: 6px;
    transition: all ease-in-out 0.2s;
  }
  nav .nav-item .nav-title .toggle svg {
    width: 18px;
  }
  nav .nav-item .nav-title.active {
    background: #d4322f;
  }
  nav .nav-item .nav-title.active .link,
  nav .nav-item .nav-title.active .toggle {
    color: #FFFFFF !important;
  }
  nav .nav-item .nav-title.active .toggle {
    transform: rotateX(180deg);
  }
  nav .nav-item .sub-nav {
    display: none;
    position: relative;
    border-bottom: 1px solid #4c4c4c;
    width: 100%;
    background: #e5e5e5;
    padding: 0 30px 30px 30px;
    max-height: 400px;
    overflow-y: auto;
  }
  nav .nav-item .sub-nav ul {
    list-style: inside none;
  }
  nav .nav-item .sub-nav ul li.sub-nav-title {
    color: #808080;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  nav .nav-item .sub-nav ul li.sub-nav-title:empty {
    display: none;
  }
  nav .nav-item .sub-nav ul li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #1a1a1a;
  }
}
.shop#new-account .container {
  display: flex;
  justify-content: center;
}
.shop#new-account .container .logo {
  display: flex;
  justify-content: center;
}
.shop#new-account .container .logo img {
  width: 50%;
}
.shop#new-account .container .btn {
  background-color: #d4322f;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  padding: 10px;
}
.passwd {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}
.passwd i {
  position: absolute;
  margin: 15px;
  cursor: pointer;
  color: #1a1a1a;
}
.clientsite {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clientsite a {
  background-color: #d5322f;
  color: #ffffff;
  font-weight: bold;
  font-size: 11px;
  padding: 10px 8px;
  border-radius: 6px;
  transition: all 0.3s;
}
.clientsite a:hover {
  background-color: #e25451;
}
main.login-global {
  width: 100%;
  height: 100vh;
  background-color: #FF9B9B;
}
main.login-global .container,
main.login-global .row {
  height: 100%;
}
main.login-global .inner {
  background: #FFFFFF;
  padding: 40px 0;
}
main.login-global .inner .content {
  max-width: 240px;
  margin: auto;
}
main.login-global .inner .content .logo {
  display: block;
  margin-bottom: 40px;
}
main.login-global .inner .content .logo img {
  margin: auto;
}
main#home .container {
  margin: 35px auto;
}
main#home .carousel {
  margin-bottom: 30px;
  margin-top: 30px;
}
main#home .carousel .banner {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  max-height: 340px;
  overflow: hidden;
}
main#home .carousel .banner a img {
  transition: transform 0.3s;
}
main#home .carousel .banner:hover a img {
  transform: scale(1.1);
}
main#home .carousel .flexslider .slides {
  display: flex;
}
main#home .carousel .flexslider .slides .item-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
main#home .carousel .flexslider .slides .item-slide img {
  width: 30%;
}
main#home .carousel .flexsliderCollec .flex-control-nav {
  display: none;
}
main#home .carousel img {
  width: 100%;
}
@media screen and (max-width: 719px) {
  main#home .carousel {
    margin-bottom: 15px;
  }
}
main#home h2.title-home {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 719px) {
  main#home h2.title-home {
    font-size: 30px;
    margin: 10px 0 20px 0;
  }
}
main#home .home-news {
  background-image: url('../images/home/fabric_calo.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
}
main#home .home-news .content {
  background: #FFFFFF;
  padding: 30px;
}
main#home .home-news .content p {
  color: #1a1a1a;
  text-align: justify;
}
main#home .home-news .content p + p {
  margin-top: 15px;
}
@media screen and (max-width: 719px) {
  main#home .home-news {
    padding: 15px;
  }
  main#home .home-news .content {
    padding: 15px;
  }
  main#home .home-news .content p {
    font-size: 14px;
  }
}
main#home .social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  color: #1a1a1a;
}
main#home .social-link:before {
  content: "";
  margin-top: 60%;
}
main#home .social-link svg {
  width: 56px;
  height: 56px;
  transition: all ease-in-out 0.2s;
}
main#home .social-link.facebook:hover {
  color: #3b5998;
}
main#home .social-link.instagram:hover {
  color: #fcaf45;
}
main#home .social-link.pinterest:hover {
  color: #bd081c;
}
main#home .social-link.empty {
  background-color: #FF9B9B;
}
main#home .topnouv {
  margin: 30px 0;
  justify-content: space-around;
  color: #1a1a1a;
}
.topnews {
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
  transition: border ease-in-out 0.2s;
}
.topnews p {
  margin-top: 7px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color ease-in-out 0.2s;
}
.topnews > div {
  overflow: hidden;
}
.topnews div {
  display: flex;
  justify-content: center;
}
.topnews img {
  transition: transform ease-in-out 0.2s;
  transform: scale(1);
}
.topnews:hover {
  border-bottom: 1px solid #d4322f;
}
.topnews:hover img {
  transform: scale(1.1);
}
.topnews:hover p {
  color: #d4322f;
}
@media screen and (max-width: 719px) {
  .topnews {
    padding-bottom: 30px;
  }
  .topnews p {
    font-size: 14px;
  }
}
main#home .about {
  background: #f5f5f5;
  padding: 30px 0;
}
main#home .about img.d-block {
  max-width: 40%;
  float: left;
  margin-right: 15px;
}
main#home .about h3 {
  text-transform: uppercase;
  color: #f77620;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
main#home .about p {
  font-size: 14px;
  color: #1a1a1a;
  text-align: justify;
  margin-bottom: 15px;
  line-height: 20px;
}
main#home .about p:last-child {
  margin-bottom: 0;
}
.brand-collection {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #e5e5e5;
}
.brand-collection a {
  position: relative;
  display: flex;
  background-color: #f7f7f7;
  flex: 1 1 20%;
  border-right: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
}
.brand-collection a:nth-child(5n) {
  border-right: none;
}
.brand-collection a:nth-last-child(-n+5) {
  border-bottom: none;
}
.brand-collection a:before {
  content: "";
  margin-top: 100%;
}
.brand-collection a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}
footer {
  background: #f7f7f7;
  margin-top: 60px;
  padding: 30px 0 15px 0;
}
footer p.title {
  font-size: 18px;
  letter-spacing: 0.11em;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}
footer ul {
  list-style: inside none;
  padding: 0;
}
footer ul li a {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
  padding: 8px 0;
}
footer ul li a:hover {
  color: #d4322f;
}
footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
footer .footer-logo img {
  max-width: 100%;
  width: 200px;
  margin-bottom: 15px;
}
