/*
 * Front pages (home, product page,...)
 */
/**
 * Style for the header.
 * Mobile First approach
 */
/* *** Small screens (smaller than tablets) */
@import url(//fonts.googleapis.com/css?family=open+sans:400,600);
@import url(//fonts.googleapis.com/css?family=open+sans:400,300,600);
@media only screen and (max-width: 767px) {
  html {
    font-size: 90% !important;
  }
}
/* *** Header Logo */
/* If tunnel */
.header-tunnel {
  min-height: 30px;
  background-color: #E7E4E3;
}
.header-tunnel .logo-baseline {
  display: none;
}
/* Endif tunnel */
.logo-wrapper {
  margin: 0 3%;
  position: absolute;
  z-index: 10;
  width: 40%;
  max-width: 239px;
  padding: 0.3em 0.6em 0.9em;
  background: url("../misc/layout_core_images/mainlogo.77d5d0f7ce20b5da.png") no-repeat left bottom;
  background-size: 100% auto;
}
.logo-wrapper .editorial {
  font-size: 1.2rem;
}
.logo-wrapper img {
  width: 91%;
  max-width: 179px;
}
.logo-baseline {
  display: none;
}
/* *** Header first row - links */
.toolbar {
  line-height: 33px;
  height: 33px;
  font-size: 12px;
}
.toolbar .container > div {
  height: 31px;
}
.toolbar li img {
  position: relative;
  top: -8px;
}
/* *** Header second row - User nav */
.header-second-row {
  background-color: #E7E4E3;
  height: 52px;
  /* Search bar */
}
.header-second-row .badge-right {
  position: absolute;
  right: 0.5em;
  top: 7px;
}
.header-second-row .badge-up {
  position: absolute;
  top: 7%;
  right: 21%;
}
.header-second-row form .form-group {
  height: 50px;
  line-height: 46px;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  align-items: center;
  justify-content: space-between;
}
.header-second-row form .form-group > div {
  min-width: 84%;
  /* IE10 debug */
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: 84%;
  -ms-flex-basis: 84%;
  flex-basis: 84%;
}
.header-second-row form .form-group .btn {
  line-height: normal;
  display: block;
}
.header-second-row form .form-group .form-control {
  width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.header-second-row .autosuggestion-container {
  background-color: white;
  line-height: 1em;
  z-index: 25;
  /* Categories menu is at 21 on hover */
}
/* *** Header between second and third row - Mobile search bar */
.menu-mobile .search-form > div {
  padding: 0.5em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: no-wrap;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-justify-content: flex-between;
  -ms-justify-content: flex-between;
  justify-content: flex-between;
}
.menu-mobile .search-form .mobile-search-bar {
  min-width: 70%;
  /* IE10 debug */
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 70%;
  -ms-flex-basis: 70%;
  flex-basis: 70%;
  margin-right: 0.5em;
}
.menu-mobile .search-form .btn {
  line-height: normal;
  min-width: 40px;
  /* IE10 debug */
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
}
/* User menu */
.user-nav {
  border-left: 1px solid #dbd7d5;
  /*
  border-right: 1px solid lighten(@backgroundDarkColor, 15);
  */
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* Dropdown menus : user account + favorites */
  /* Cart item */
}
.user-nav li {
  position: relative;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  min-width: 25%;
}
.user-nav li a {
  display: block;
  color: #2B2B2B;
}
.user-nav li a .user-nav-item-name {
  font-weight: normal;
  font-size: 1.1rem;
  color: #a09591;
  -webkit-transition: color 200ms linear;
  -moz-transition: color 200ms linear;
  -o-transition: color 200ms linear;
  transition: color 200ms linear;
}
.user-nav li a:hover,
.user-nav li a:active {
  text-decoration: none;
}
.user-nav li a:hover .alm-icon,
.user-nav li a:active .alm-icon {
  color: #ec3468;
}
.user-nav > li {
  -webkit-flex-basis: 25%;
  -ms-flex-basis: 25%;
  flex-basis: 25%;
  flex: 1 1 auto;
  display: flex;
  height: 50px;
  font-size: 12px;
  align-items: stretch;
  border-right: 1px solid #dbd7d5;
  border-left: 1px solid #ffffff;
}
.user-nav > li .alm-icon {
  -webkit-transition: color 200ms linear;
  -moz-transition: color 200ms linear;
  -o-transition: color 200ms linear;
  transition: color 200ms linear;
}
.user-nav > li > a {
  flex-grow: 1;
}
.user-nav .alm-icon {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.55em;
}
.user-nav > li:last-of-type {
  border-right: none;
}
.user-nav.loggedout > li a {
  padding: 1.5em 0;
}
.user-nav.loggedout > li a.as-text:hover {
  text-decoration: underline;
}
.user-nav.loggedout > li.visible-xs-block a,
.user-nav.loggedout > li.cart a {
  padding: 0;
}
.user-nav .submenu {
  display: none;
  position: absolute;
  z-index: 30;
  width: 300%;
  left: -100%;
  top: 50px;
  border-top: none;
}
.user-nav .submenu h2 {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.6em;
  margin: 0 0 0.4em;
  border-bottom: 1px solid #E7E4E3;
}
.user-nav .submenu ul li a {
  padding: 0.5em;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.user-nav .submenu ul li a:hover {
  background-color: #E7E4E3;
}
.user-nav .submenu .badge {
  z-index: 11;
}
.user-nav .cart .user-nav-item-name {
  color: #2B2B2B;
}
.user-nav .cart .active .alm-icon {
  color: #5ab5ab;
}
.user-nav .cart:hover .active .alm-icon {
  color: #ec3468;
}
.main-navigation {
  background: white;
  border-bottom: 3px solid #ec3468;
  line-height: 35px;
  min-height: 34px;
  position: relative;
}
.main-navigation .menu {
  height: auto;
}
.main-navigation .menu > li {
  display: block;
  margin: 0;
  height: 34px;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 1.1rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.main-navigation .menu > li .as-text:hover {
  color: #ec3468;
}
.main-navigation .menu > li.break {
  display: none;
}
/* FIXME  This default display avoids all submenus to show up on page load */
.user-nav .submenu {
  display: none;
}
/* small-landscape, 480px and up */
@media (min-width: 480px) {
  /* *** Header Logo */
  .logo-wrapper {
    max-width: 265px;
    padding: 0.4em 1em 1.7em;
  }
  .logo-wrapper img {
    width: 84%;
    max-width: 207px;
  }
}
/* tablets, 768px and up */
@media (min-width: 768px) {
  /* *** Header Logo */
  .logo-wrapper {
    margin: 0 1%;
    padding: 0.8em 1.2em 2.1em;
    width: 29%;
  }
  .logo-wrapper img {
    max-width: 300px;
    width: 94%;
  }
  .header-search-form {
    margin-left: 29%;
  }
  /* *** Header first row - links */
  .toolbar .other-project-link {
    margin-left: 7%;
  }
  .toolbar .other-project-link img {
    position: absolute;
    top: -8px;
    -webkit-transition: top 0.2s linear;
    -moz-transition: top 0.2s linear;
    -o-transition: top 0.2s linear;
    transition: top 0.2s linear;
  }
  .toolbar .other-project-link img:hover {
    top: 0;
  }
  /* *** Header second row - search */
  .header-second-row {
    /* Search bar */
  }
  .header-second-row form .form-group > div {
    max-width: 80%;
    /* Tablet debug */
    -webkit-flex-basis: 80%;
    -ms-flex-basis: 80%;
    flex-basis: 80%;
  }
  .header-second-row form .form-group .btn {
    max-width: 36px;
  }
  /* *** Header second row - User nav */
  .user-nav .alm-icon {
    font-size: 2.2rem;
    margin-top: 0.35em;
  }
  .user-nav .submenu ul:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 7px;
    position: absolute;
    Ignore: a;top:-14px;
    border-bottom-color: white;
    /* Syntax bellow avoids Less aggressive compilation with CSS3 calc()*/
    left: calc(50% - 7px);
  }
  /* *** Main Navigation */
  .main-navigation {
    height: 35px;
  }
  .main-navigation .menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  .main-navigation .menu > li {
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
    padding: 0;
    margin: 0;
    height: 34px;
    text-transform: uppercase;
    font-size: 11px;
    font-size: 1.1rem;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  .main-navigation .menu > li .as-text:hover {
    color: #ec3468;
  }
  .main-navigation .menu > li.break {
    display: none;
  }
  .main-navigation .submenu {
    max-height: 0;
    overflow: hidden;
    white-space: normal;
    background-color: white;
    position: absolute;
    z-index: 20;
    text-align: left;
    left: 0;
    right: 0;
    top: 34px;
    /* .menu > li height (without the border-bottom */
    border-bottom: 0px solid #ec3468;
    color: #414141;
  }
  .main-navigation .submenu .d-flex {
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
  .main-navigation .submenu ul {
    line-height: 2em;
  }
  .main-navigation .submenu ul > li {
    text-align: left;
  }
  .main-navigation .submenu ul > li > a {
    display: inline-block;
    margin-top: 1.5 1em;
  }
  .main-navigation .submenu ul > li .inline a {
    color: #7F7F7F;
    text-transform: none;
  }
  .main-navigation .submenu ul img {
    margin-top: 1em;
  }
  .main-navigation .submenu a {
    font-size: 12px;
    color: #ec3468;
  }
  .main-navigation .submenu .badge-fav-link,
  .main-navigation .submenu .badge-message-link {
    display: none;
  }
  .main-navigation .submenu .links {
    background-color: white;
    margin-top: 1em;
    padding: 0.2em;
  }
}
/* desktops, 1009px and up */
@media (min-width: 1009px) {
  /* *** Header Logo */
  .logo-wrapper {
    padding: 0.4em 1em 1.5em;
    /* With the baseline */
  }
  .logo-baseline {
    display: block;
  }
  /* *** ALMe/AlM other tab */
  .toolbar .other-project-link {
    margin-left: 4%;
  }
  .header-second-row {
    /* Search bar */
  }
  .header-second-row form .form-group .btn {
    max-width: none;
  }
  /* *** Main Navigation */
  .main-navigation {
    height: 35px;
  }
  .main-navigation .menu > li {
    text-align: center;
  }
  .main-navigation .menu > li .submenu {
    -webkit-transition: max-height 10ms ease;
    -moz-transition: max-height 10ms ease;
    -o-transition: max-height 10ms ease;
    transition: max-height 10ms ease;
  }
  .main-navigation .menu > li:hover .submenu {
    z-index: 21;
    border-bottom: 3px solid #ec3468;
    max-height: 800px;
    -webkit-transition-delay: 600ms;
    /* Safari */
    transition-delay: 500ms;
  }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* *** Header first row - links */
  /* On large screens, we override Bootstrap's grid system for this tag */
  .toolbar .container > div {
    max-width: 750px;
  }
}
/******** cancel V4 override ******/
header > div {
  line-height: inherit !important;
}
nav.mainMenu {
  height: auto !important;
}
nav.mainMenu li.item {
  text-align: left !important;
}
/* tablets, 768px and up */
@media (min-width: 768px) {
  nav.mainMenu {
    height: 37px !important;
  }
  nav.mainMenu li.item {
    text-align: center !important;
  }
}
/* desktops, 1009px and up */
@media (min-width: 1009px) {
  header [class^="alm-icon-glass"] {
    color: white !important;
  }
}
.algolia-container {
  background-color: white;
  line-height: 1em;
}
.algolia-container .products-container a {
  line-height: 1.3em;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
}
.algolia-container a {
  color: #2B2B2B;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.algolia-container a em {
  font-style: normal;
  font-weight: bold;
}
.algolia-container a:hover {
  background-color: white;
}
.algolia-container a:focus {
  background-color: white;
}
.algolia-container a:active {
  background-color: white;
  -webkit-box-shadow: inset 0 15px 20px -20px #656565, inset 0 -15px 20px -20px #656565;
  -moz-box-shadow: inset 0 15px 20px -20px #656565, inset 0 -15px 20px -20px #656565;
  -o-box-shadow: inset 0 15px 20px -20px #656565, inset 0 -15px 20px -20px #656565;
  box-shadow: inset 0 15px 20px -20px #656565, inset 0 -15px 20px -20px #656565;
}
.algolia-container img {
  max-width: 40px;
}
.algolia-container .title {
  background-color: #E7E4E3;
  color: #757575;
  font-size: 14px;
  font-size: 1.4rem;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *
 *  This file contains the footer styles
 *  It belongs to the layout_core:styles asset group
 */
footer nav {
  position: relative;
}
footer nav h2 {
  text-transform: uppercase;
  margin-top: 1em;
}
footer nav h2,
footer nav a {
  color: #7F7F7F;
  font-size: 12px;
  font-size: 1.2rem;
}
footer .logo {
  max-width: 310px;
  margin-right: 1em;
}
footer.row > div.row {
  margin-bottom: 2em;
}
.cookie-alert {
  z-index: 15;
  margin: 0 !important;
}
/* Smartphones only */
@media (max-width: 767px) {
  .cookie-alert {
    font-size: 9px !important;
    font-size: 0.9rem !important;
    text-align: left;
  }
}
/* tablets, 768px and up */
@media (min-width: 768px) {
  .footer-links li {
    display: inline-block;
  }
  .footer-links a {
    color: #2B2B2B;
  }
  .cookie-alert {
    text-align: center;
  }
  footer .logo {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@font-face {
  font-family: 'alm-font';
  src: url("../misc/layout_core_alm_font/alm-font.cc83e37a6a5cdecf.eot");
  src: url("../misc/layout_core_alm_font/alm-font.cc83e37a6a5cdecf.eot#iefix") format('embedded-opentype'), url("../misc/layout_core_alm_font/alm-font.c6d126859473a1a0.woff") format('woff'), url("https://assets.alittlemarket.com/it/misc/layout_core_alm_font/alm-font.34233017324d1dcb.ttf") format('truetype'), url("../misc/layout_core_alm_font/alm-font.f28e87fa22818e28.svg") format('svg');
}
@font-face {
  font-family: 'flat-icons';
  src: url("../misc/layout_core_flaticons/flat-icons.e04982dfe635d3a9.eot");
  src: url("../misc/layout_core_flaticons/flat-icons.e04982dfe635d3a9.eot#iefix") format('embedded-opentype'), url("../misc/layout_core_flaticons/flat-icons.198438773f316a19.woff") format('woff'), url("../misc/layout_core_flaticons/flat-icons.8fb38a2ab3f5ee0b.ttf") format('truetype'), url("../misc/layout_core_flaticons/flat-icons.b45860c406486da6.svg") format('svg');
}
@font-face {
  font-family: 'thirsty';
  src: url("../misc/layout_core_thirsty/thirsty.abedcedea8be423c.eot");
  src: url("../misc/layout_core_thirsty/thirsty.abedcedea8be423c.eot#iefix") format('embedded-opentype'), url("../misc/layout_core_thirsty/thirsty.c56c6cd30cdd87b1.woff") format('woff'), url("../misc/layout_core_thirsty/thirsty.889d69f290aebfb3.ttf") format('truetype'), url("../misc/layout_core_thirsty/thirsty.0f87ac0b787ede59.svg") format('svg');
  font-weight: normal;
  font-style: normal;
}
.editorial {
  font-family: 'Thirsty', 'Open Sans', Arial, Helvetica, sans-serif;
}
@font-face {
  font-family: 'Museo Slab';
  src: url("../misc/layout_core_museo_slab/museo-slab.51ea1379db96c618.eot");
  src: url("../misc/layout_core_museo_slab/museo-slab.51ea1379db96c618.eot#iefix") format('embedded-opentype'), url("../misc/layout_core_museo_slab/museo-slab.536f3f4b7b5a5047.woff") format('woff'), url("../misc/layout_core_museo_slab/museo-slab.0a9af406e0bd1b11.ttf") format('truetype'), url("../misc/layout_core_museo_slab/museo-slab.0ad963652e6eaa31.svg") format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Syllabification
While waiting for a bright hyphens support, fallback to word-wrap */
.wbreak {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../misc/layout_core_images/fancybox_sprite.ba8d36958fb4cd2b.png");
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../misc/layout_core_images/fancybox_loading.f153009e0d9075f0.gif") center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('https://assets.alittlemarket.com/it/css/blank.gif');
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}
.fancybox-lock body {
  overflow: hidden !important;
}
.fancybox-lock-test {
  overflow-y: hidden !important;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../misc/layout_core_images/fancybox_overlay.aabc5629401eee6f.png");
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url("../misc/layout_core_images/fancybox_sprite-2x.caac368bfaa1b500.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../misc/layout_core_images/fancybox_loading-2x.9ff5b4c86ce7fc70.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
html.error {
  background: #fff;
  background: -moz-radial-gradient(center, ellipse cover, #fff 0, #fff 36%, #f5f4f2 100%);
  background: -webkit-gradient(radial, center center, 0, center center, 100%, color-stop(0, #fff), color-stop(36%, #fff), color-stop(100%, #f5f4f2));
  background: -webkit-radial-gradient(center, ellipse cover, #fff 0, #fff 36%, #f5f4f2 100%);
  background: -o-radial-gradient(center, ellipse cover, #fff 0, #fff 36%, #f5f4f2 100%);
  background: -ms-radial-gradient(center, ellipse cover, #fff 0, #fff 36%, #f5f4f2 100%);
  background: radial-gradient(ellipse at center, #fff 0, #fff 36%, #f5f4f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f4f2', GradientType=1);
  height: 100%;
  background-repeat: no-repeat;
}
html.error > body {
  background: none;
}
html.error h1 {
  font-family: 'thirsty', Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
}
html.error header {
  background: none;
  margin-bottom: 50px;
  margin-top: 50px;
}
html.error .important {
  color: #ec3468;
  font-size: 18px;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  This files imports components from the css framework alittleui
 *  since we decided not to load bootstrap3,
 *  it allows tu use our grid, generic classes, mixins, fonts, etc. within the v5 pages
 *
 *  this file is loaded via app/resources/less/base.less in each vertical
 *  it belongs to the layout_core:styles asset group
 */
/* color : main */
/* color : background */
/* color : border */
/* color : text */
/* color : shadow */
/* color : link */
/* color: button */
/* color : form */
/* color : message */
/* breakpoints */
/* search */
/*
todo will need to remove settings on html since we can't namespace it.
todo with the prefix, should i group by selector or property for weight savings?
*/
html {
  color: #000;
  background: #FFF;
}
/*
TODO remove settings on BODY since we can't namespace it.
*/
/*
TODO test putting a class on HEAD.
- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}
/*because legend doesn't inherit in IE */
legend {
  color: #000;
}
/*
# FrameworkCss/almreset.less
----

## Reset

*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/**
 * Onverride Normalize rule that forces search inputs to be rounded in iOs
 */
input[type="search"] {
  -webkit-appearance: none;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/**
 *
 *  Copyright 2013 Kristofer Joseph
 *
 *  "name": "flexboxgrid",
 *  "version": "6.3.0",
 *  "description": "Grid based off of CSS3 flexbox specification",
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *
 *  2016 - Etsy France
 */
/* Uncomment and set these variables to customize the grid. */
.flexcontainer-fluid {
  /* ALM_CUSTOM: renamed to avoid style conflicts */
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.5em;
  /* ALM_CUSTOM: custom definition */
  padding-left: 0.5em;
  /* ALM_CUSTOM: custom definition */
  width: 100%;
  /* ALM_CUSTOM: custom definition - Fixes IE bugs */
}
.flexrow {
  /* ALM_CUSTOM: renamed to avoid style conflicts */
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
  /* ALM_CUSTOM: custom value */
  margin-left: 0;
  /* ALM_CUSTOM: custom value */
}
.flexrow .flexrow {
  /* ALM_CUSTOM: custom definition */
  margin-right: 0;
  margin-left: 0;
}
.flexrow.reverse {
  /* renamed to avoid style conflicts */
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.col.reverse {
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
[class*="col-xs"] + [class*="col-xs"] {
  margin-left: 0;
}
.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}
.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  -webkit-flex-basis: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}
.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  -webkit-flex-basis: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}
.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  -webkit-flex-basis: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  -webkit-flex-basis: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}
.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  -webkit-flex-basis: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}
.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  -webkit-flex-basis: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}
.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  -webkit-flex-basis: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}
.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  -webkit-flex-basis: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}
.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-xs-offset-1 {
  margin-left: 8.333%;
}
.col-xs-offset-2 {
  margin-left: 16.667%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.333%;
}
.col-xs-offset-5 {
  margin-left: 41.667%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-7 {
  margin-left: 58.333%;
}
.col-xs-offset-8 {
  margin-left: 66.667%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-10 {
  margin-left: 83.333%;
}
.col-xs-offset-11 {
  margin-left: 91.667%;
}
.start-xs {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center-xs {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}
.end-xs {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.top-xs {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.middle-xs {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.bottom-xs {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}
.around-xs {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between-xs {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.first-xs {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}
.last-xs {
  -webkit-order: 1;
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}
/* Tablets and up */
@media only screen and (min-width: 768px) {
  .flexcontainer-fluid {
    /* ALM_CUSTOM: custom definition */
    padding-right: 1em;
    padding-left: 1em;
  }
  .flexcontainer {
    width: 768px;
    /* ALM_CUSTOM: custom value */
    margin-right: auto;
    /* ALM_CUSTOM: custom definition */
    margin-left: auto;
    /* ALM_CUSTOM: custom definition */
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
/* Desktops and up */
@media only screen and (min-width: 1009px) {
  .flexcontainer {
    width: 1009px;
    /* ALM_CUSTOM: custom value */
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1em;
    /* ALM_CUSTOM: custom value */
    padding-left: 1em;
    /* ALM_CUSTOM: custom value */
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .flexcontainer {
    width: 1200px;
    /* ALM_CUSTOM: custom value */
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1em;
    padding-left: 1em;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-lock {
  overflow: hidden;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-skin {
  position: relative;
  background: #F9F8F2;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  padding: 10px 20px;
  color: black;
  text-transform: capitalize;
  font-style: italic;
  font-weight: bold;
  white-space: nowrap;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-next {
  right: -30px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-prev {
  left: -30px;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-close {
  position: absolute;
  top: 5px;
  right: -20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('../../image/vendor/jquery-fancybox/blank.gif');
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../../image/vendor/jquery-fancybox/fancybox_loading.gif') center center no-repeat;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
.fancybox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('../../image/vendor/jquery-fancybox/fancybox_overlay.png');
}
#fancybox-loading,
.fancybox-prev span,
.fancybox-next span {
  background-image: url('../../image/vendor/jquery-fancybox/fancybox_sprite.png');
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  This file contains the mixins
 *
 */
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Border mixins (borders, radius, outline)
 *
 */
.outline-none {
  outline: none;
}
.outline-none:focus,
.outline-none:active {
  outline: none;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Buttons mixins
 *
 */
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Box model mixins (box-sizing)
 *
 */
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Flexbox mixins
 *
 */
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Spaces mixins (margins, paddings)
 *
 */
/*.padded(@side: ~'', @size: 1em) when (isnumber(@size)) and not (@side = '') {
  padding-@{side}: @size * @paddingSize;
}
.padded(@side: ~'', @size: 1em) when (isnumber(@size)) and (@side = '') {
  padding: @size * @paddingSize;
}*/
/*.spaced(@size: 1em, @prefix: ~'', @screen-target: ~'') when (isnumber(@size)) and not (@side = '')  {
  margin-@{side}: @size * @marginSize;
}
.spaced(@size: 1em, @prefix: ~'', @screen-target: ~'') when (isnumber(@size)) and (@side = '')  {
  margin: @size * @marginSize;
}*/
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Sprites mixins
 *
 */
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Typography mixins (colors, weight, underline)
 *
 */
.important {
  font-weight: bold;
}
.not-important {
  font-weight: normal;
}
.underline {
  text-decoration: underline;
}
.no-underline {
  text-decoration: none;
}
.no-underline:hover {
  text-decoration: none;
}
.emphase {
  font-style: italic;
}
.shout,
.uppercase {
  text-transform: uppercase;
}
.low,
.lowercase {
  text-transform: lowercase;
}
.lead {
  color: #ec3468;
}
.muted,
.muted a {
  color: #7F7F7F;
}
.dkmuted,
.dkmuted a {
  color: #565656;
}
.as-text {
  color: #2B2B2B;
}
.no-line:hover {
  text-decoration: none;
}
.no-line:hover span {
  text-decoration: underline;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Text mixins (overflow, font-size, ellipsis, indent)
 *
 */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  Visual effects mixins (opacity, box-shadow, gradients, transition, triangles/phyllacteres)
 *
 */
/* This mixin allows to give a phylactery (comics "bubble") aspect to a block :
 * it adds an empty content to :after but with a single thick border, shaped as a triangle.
 * it is necessary to position it in the block (negative value : the arrow direction = the block side)

 * Left  - Up - Right - Down
 *          △
 *  ◁| |   | |   | |▷   | |
 *                       ▽
 */
/**
 * This fade animation is based on Dan Eden's animate.css (http://daneden.me/animate/), under the terms of the MIT license.
 *
 * Copyright 2013 Dan Eden.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
html {
  background-color: #F9F8F2;
  box-sizing: border-box;
}
body {
  background: url("../../image/header/toolbar-pattern.png") top repeat-x;
}
/* Background */
.no-bg {
  background: none;
}
.max-width-100 {
  max-width: 100%;
}
.max-width-auto {
  max-width: none;
}
a object {
  position: relative;
  z-index: -1;
}
a.obj-link {
  position: relative;
  z-index: 1;
}
/* Headings */
/* Text */
p.tighten {
  margin-bottom: 0;
}
p {
  margin: 0 0 0.8em;
}
.mini-lead-block {
  padding: 0.1em 0.3em;
}
.big-lead-block {
  padding: 0.3em 2em;
}
.lead-block {
  background-color: #ec3468;
  color: white;
  padding: 0.5em 0.5em;
}
.lead-block a {
  color: white;
  text-decoration: underline;
}
.banner-block {
  background-color: #E7E4E3;
  color: #ec3468;
  padding: 0.3em 0.3em;
}
area {
  cursor: pointer;
}
hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 1em 0;
  height: 0;
}
/* Scheduled payment */
.picto-3x {
  background-color: #585858;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  padding: 0.15em 0.3em;
}
/*
# FrameworkCss/common/layout.less
----

## Layout

```
<div class="row">
  <section class="column main-content" style="background-color:#ccc;">
    <p>contenu principal</p>
  </section>
  <aside class="column left-content" style="background-color:#eee;">
    <p>menu de gauche</p>
  </aside>
</div>
```
*/
.left-content {
  width: 20.2%;
  right: 79.8%;
}
.main-content {
  width: 76.2%;
  left: 23.8%;
}
/*
## List

### ul.no-bullet

```
<ul class="no-bullet">
  <li>One over great sixth of air seasons</li>
  <li>one male together, which fifth light</li>
  <li>open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.no-bullet {
  list-style: none;
}
/*

### ul.bullet-circle-inside

```
<ul class="bullet-circle-inside">
  <li>One over great sixth of air seasons</li>
  <li>one male together, which fifth light</li>
  <li>open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.bullet-circle-inside {
  list-style: circle inside;
}
/*
### ul.inline > li
### ol.inline > li

```
<ul class="inline">
  <li style="background-color:#ccc;">One over great sixth of air seasons</li>
  <li style="background-color:#eee;">one male together, which fifth light</li>
  <li style="background-color:#ccc;">open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.inline > li,
ol.inline > li,
ul.list-inline > li,
ol.list-inline > li {
  list-style: none;
  display: inline-block;
}
/*
### ul.inline.smaller-spaced > li
### ol.inline.smaller-spaced > li

```
<ul class="inline smaller-spaced">
  <li style="background-color:#ccc;">One over great sixth of air seasons</li>
  <li style="background-color:#eee;">one male together, which fifth light</li>
  <li style="background-color:#ccc;">open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.inline.smaller-spaced > li,
ol.inline.smaller-spaced > li {
  padding-right: 0.2em;
  padding-left: 0.2em;
}
/*
### ul.inline.small-spaced > li
### ol.inline.small-spaced > li

```
<ul class="inline small-spaced">
  <li style="background-color:#ccc;">One over great sixth of air seasons</li>
  <li style="background-color:#eee;">one male together, which fifth light</li>
  <li style="background-color:#ccc;">open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.inline.small-spaced > li,
ol.inline.small-spaced > li {
  padding-right: 0.5em;
  padding-left: 0.5em;
}
/*
### ul.inline.spaced > li
### ol.inline.spaced > li

```
<ul class="inline spaced">
  <li style="background-color:#ccc;">One over great sixth of air seasons</li>
  <li style="background-color:#eee;">one male together, which fifth light</li>
  <li style="background-color:#ccc;">open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.inline.spaced > li,
ol.inline.spaced > li {
  padding-right: 0.9em;
  padding-left: 0.9em;
}
/*
### ul.inline.big-spaced > li
### ol.inline.spaced > li

```
<ul class="inline big-spaced">
  <li style="background-color:#ccc;">One over great sixth of air seasons</li>
  <li style="background-color:#eee;">one male together, which fifth light</li>
  <li style="background-color:#ccc;">open make greater fly. Herb him third. Green rule.</li>
</ul>
```
*/
ul.inline.big-spaced > li,
ol.inline.big-spaced > li {
  padding-right: 1.4em;
  padding-left: 1.4em;
}
/* Lists */
ul,
ol,
dl {
  list-style-position: outside;
}
ul.unstyled,
ol.unstyled {
  list-style: none;
}
/*
.vtop -> vertical-align: top;

.vmiddle

.vbottom

-----------
*/
.vtop {
  vertical-align: top;
}
.vmiddle {
  vertical-align: middle;
}
.vbottom {
  vertical-align: bottom;
}
/*
### .min-aerate .row
### .min-aerate.row
### .min-aerate-only
### .min-aerate-only.row

```
<div class="min-aerate-only" style="background-color:#ccc;">
  <p>Some text</p>
</div>
<hr style="background-color:#eee;"  />
```
*/
.min-aerate .row,
.min-aerate.row,
.min-aerate-only,
.min-aerate-only.row {
  margin-bottom: 0.5em;
}
/*
### .max-aerate .row
### .max-aerate.row
### .max-aerate-only
### .max-aerate-only.row

```
<div class="max-aerate-only" style="background-color:#ccc;">
  <p>Some text</p>
</div>
<hr style="background-color:#eee;"  />
```
*/
.max-aerate .row,
.max-aerate.row,
.max-aerate-only,
.max-aerate-only.row {
  margin-bottom: 2em;
}
/*
### .aerate .row
### .aerate.row,
### .aerate-only,
### .aerate-only.row

```
<div class="aerate-only" style="background-color:#ccc;">
  <p>Some text</p>
</div>
<hr style="background-color:#eee;"  />
```
*/
.aerate .row,
.aerate.row,
.aerate-only,
.aerate-only.row {
  margin-bottom: 1em;
}
.narrow {
  margin: 0;
}
.nowrap {
  white-space: nowrap;
}
.centered {
  margin: 0 auto;
}
/* popup RWD */
.pop-mob,
.pop-mob.hide {
  display: none;
}
.pop-desk {
  display: inline-block;
}
/*
# FrameworkCss/common/typography.less
----

## Typo

*/
/* BASE */
html {
  color: #2B2B2B;
  font-size: 62.5%;
}
/* Use .font-size in the body when https://code.google.com/p/chromium/issues/detail?id=319623 fixed */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 13px;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-rendering: optimizeLegibility;
}
h1,
h2.bigger,
.h1 {
  color: #3C3C3C;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 1em 0;
  font-weight: bold;
}
h1 a.as-text,
h2.bigger a.as-text,
.h1 a.as-text {
  color: #3C3C3C;
}
h2,
h1.smaller,
h3.bigger,
.h2 {
  color: #3C3C3C;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: none;
}
h2.left,
h1.smaller.left,
h3.bigger.left,
.h2.left {
  margin-bottom: 0.5em;
}
h2 a.as-text,
h1.smaller a.as-text,
h3.bigger a.as-text,
.h2 a.as-text {
  color: #3C3C3C;
}
h3,
h2.smaller,
h4.bigger,
.h3 {
  color: #3C3C3C;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
h4,
h3.smaller,
h5.bigger,
.h4 {
  color: #3C3C3C;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: none;
}
h6,
.h6 {
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  color: #2B2B2B;
}
h1.editorial,
.h1.editorial {
  color: #3C3C3C;
  font-weight: normal;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 0.5em;
}
h1.title-serif,
.h1.title-serif {
  text-align: left;
  color: #3C3C3C;
  font-weight: normal;
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 0.5em;
}
form h2 {
  border-bottom: dotted 1px #edeaea;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: left;
}
form h2 span {
  background-color: #F9F8F2;
  padding: 1em;
  position: relative;
  top: 9px;
}
/*

  ### Text

*/
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
cite {
  font-style: normal;
}
a {
  color: #007E9B;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #007E9B;
  text-decoration: underline;
}
a.as-text {
  color: #2B2B2B;
}
a.no-line:hover {
  text-decoration: none;
}
a.no-line:hover span {
  text-decoration: underline;
}
blockquote {
  padding: 0 0 0 1.2em;
  margin: 0 0 1.55em;
  border-left: 5px solid #eeeeee;
}
blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9em;
}
blockquote small {
  display: block;
  line-height: 1.55em;
  color: #7F7F7F;
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  float: right;
  padding-right: 1.2em;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}
blockquote.pull-right small:before {
  content: '';
}
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
/*

  .important -> font-weight: bold;

  .not-important

  .underline -> text-decoration: underline;

  .no-underline

  .emphase -> font-style: italic;

  .shout, .uppercase -> text-transform: uppercase;

  .low, .lowercase -> text-transform: lowercase;

*/
.important {
  font-weight: bold;
}
.not-important {
  font-weight: normal;
}
.underline {
  text-decoration: underline;
}
.no-underline {
  text-decoration: none;
}
.no-underline:hover {
  text-decoration: none;
}
.emphase {
  font-style: italic;
}
.shout,
.uppercase {
  text-transform: uppercase;
}
.low,
.lowercase {
  text-transform: lowercase;
}
/*

  .lead -> color: @mainColor;

  .muted, .muted a -> color: @textMutedColor;

  .dkmuted, .dkmuted a -> color: @textMutedDarkColor;

*/
.lead {
  color: #ec3468;
}
.muted,
.muted a {
  color: #7F7F7F;
}
.dkmuted,
.dkmuted a {
  color: #565656;
}
/*

  .text-warning -> color: @textWarningColor;

  a.text-warning:hover -> color: @borderWarningColor;

  .text-error -> color: @textErrorColor;

  a.text-error:hover -> color: @borderErrorColor;

  .text-info -> color: @textInfoColor;

  a.text-info:hover -> color: @borderInfoColor;

  .text-success -> color: @textSuccessColor;

  a.text-success:hover -> color: @borderSuccessColor;

*/
.text-warning {
  color: #AD551B;
}
a.text-warning:hover {
  color: #FAD7BF;
}
.text-error {
  color: #B80000;
}
a.text-error:hover {
  color: #EDC1C1;
}
.text-info {
  color: #086EA1;
}
a.text-info:hover {
  color: #bce8f1;
}
.text-success {
  color: #016C03;
}
a.text-success:hover {
  color: #d6e9c6;
}
/*

  ### Font Family : Number

  .number

*/
.number {
  font-family: Arial, Helvetica, sans-serif;
}
/*

  ### Font Family : Thirsty

  .editorial

*/
@font-face {
  font-family: 'thirsty';
  src: url("../../font/thirsty/thirsty.eot");
  src: url('../../font/thirsty/thirsty.eot#iefix') format('embedded-opentype'), url('../../font/thirsty/thirsty.woff') format('woff'), url('../../font/thirsty/thirsty.ttf') format('truetype'), url('../../font/thirsty/thirsty.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.editorial {
  font-family: 'Thirsty', 'Open Sans', Arial, Helvetica, sans-serif;
}
/*

  ### Font Family : Museo Slab

  .title-serif

*/
@font-face {
  font-family: 'Museo Slab';
  src: url("../../font/museo-slab/museo-slab.eot");
  src: url('../../font/museo-slab/museo-slab.eot#iefix') format('embedded-opentype'), url('../../font/museo-slab/museo-slab.woff') format('woff'), url('../../font/museo-slab/museo-slab.ttf') format('truetype'), url('../../font/museo-slab/museo-slab.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.title-serif {
  font-family: 'Museo Slab', 'Open Sans', Arial, Helvetica, sans-serif;
}
/*

  ### Font Family : ALM icon font

  [class^="alm-icon-"]

  .alm-icon-arrow-right

  .alm-icon-close

*/
@font-face {
  font-family: 'alm-font';
  src: url("../../font/alm-font/alm-font.eot");
  src: url('../../font/alm-font/alm-font.eot#iefix') format('embedded-opentype'), url('../../font/alm-font/alm-font.woff') format('woff'), url('../../font/alm-font/alm-font.ttf') format('truetype'), url('../../font/alm-font/alm-font.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="alm-icon-"] {
  font-family: 'alm-font';
  speak: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
[class^="alm-icon-"]:hover {
  text-decoration: none;
}
.alm-icon-arrow-right {
  font-size: 11px;
  font-size: 1.1rem;
  left: 3px;
  position: relative;
}
.alm-icon-close {
  display: inline-block;
  margin-left: 0.4em;
  vertical-align: super;
}
/*

  ### Text align

  .text-left -> text-align: left;

  .text-right

  .text-center

  -----------
*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/*

  ### Text length display

  .wbreak -> Syllabification + Hyphenation

  .ellipsis -> Truncates long texts and avoids overflow or line break

*/
.wbreak {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*

  ### Specific font-sizes

  .big-text -> font-size: 115%;

  .bigger-text -> font-size: 135%;

  .font-12 -> .font-size(12);

  .font-14 -> .font-size(14);

  .font-18 -> .font-size(18);

  .font-24 -> .font-size(24);

*/
.big-text {
  font-size: 115%;
}
.bigger-text {
  font-size: 135%;
}
.font-12 {
  font-size: 12px;
  font-size: 1.2rem;
}
.font-14 {
  font-size: 14px;
  font-size: 1.4rem;
}
.font-18 {
  font-size: 18px;
  font-size: 1.8rem;
}
.font-24 {
  font-size: 24px;
  font-size: 2.4rem;
}
/*
# FrameworkCss/common/image.less
----

## Image
/*
## Misc

### Cheatsheet
*/
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
/*
.fluid-square -> Creates a block with a fluid width and a proportional height (like product image list item)

-----------
*/
.fluid-square {
  position: relative;
  display: block;
  /* Ghost element ensuring the height/width ratio */
  /* padding-top: 100% => initial ratio of 1:1 for a square block */
}
.fluid-square:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.fluid-square img,
.fluid-square .fluid-square-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.fluid-square.hide {
  display: none;
}
@font-face {
  font-family: 'flat-icons';
  src: url('../../font/flat-icons/flat-icons_5aud7e.eot');
  src: url('../../font/flat-icons/flat-icons.eot') format('embedded-opentype'), url('../../font/flat-icons/flat-icons_5aud7e.woff') format('woff'), url('../../font/flat-icons/flat-icons_5aud7e.ttf') format('truetype'), url('../../font/flat-icons/flat-icons_5aud7e-flat-icons.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
  font-family: 'flat-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-transform: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.flaticon-parameters2:before {
  content: "\e645";
}
.flaticon-postcard:before {
  content: "\e646";
}
.flaticon-bin2:before {
  content: "\e647";
}
.flaticon-link2:before {
  content: "\e648";
}
.flaticon-herringbone-down:before {
  content: "\e649";
}
.flaticon-parameters:before {
  content: "\e64a";
}
.flaticon-picture:before {
  content: "\e64b";
}
.flaticon-bubble:before {
  content: "\e64c";
}
.flaticon-pencil2:before {
  content: "\e64d";
}
.flaticon-envelope-open:before {
  content: "\e64e";
}
.flaticon-calendar:before {
  content: "\e64f";
}
.flaticon-bin3:before {
  content: "\e650";
}
.flaticon-arrows-round2:before {
  content: "\e651";
}
.flaticon-email2:before {
  content: "\e652";
}
.flaticon-hourglass-empty:before {
  content: "\e653";
}
.flaticon-suitcase2:before {
  content: "\e654";
}
.flaticon-pie-chart2:before {
  content: "\e655";
}
.flaticon-pencil-paper2:before {
  content: "\e656";
}
.flaticon-home:before {
  content: "\e657";
}
.flaticon-star-empty:before {
  content: "\e600";
}
.flaticon-shopping-cart:before {
  content: "\e601";
}
.flaticon-bell:before {
  content: "\e602";
}
.flaticon-bullet-list:before {
  content: "\e603";
}
.flaticon-attached:before {
  content: "\e604";
}
.flaticon-close-cross-empty:before {
  content: "\e605";
}
.flaticon-light-bulb:before {
  content: "\e606";
}
.flaticon-thumb-up:before {
  content: "\e607";
}
.flaticon-magnifier:before {
  content: "\e608";
}
.flaticon-star-full:before {
  content: "\e609";
}
.flaticon-shopping-cart2:before {
  content: "\e60a";
}
.flaticon-clock:before {
  content: "\e60b";
}
.flaticon-user-menu:before {
  content: "\e60c";
}
.flaticon-checkmark:before {
  content: "\e60d";
}
.flaticon-arrows-diagonal:before {
  content: "\e60e";
}
.flaticon-suitcase:before {
  content: "\e60f";
}
.flaticon-caution:before {
  content: "\e610";
}
.flaticon-gift:before {
  content: "\e611";
}
.flaticon-heart-empty:before {
  content: "\e612";
}
.flaticon-basket:before {
  content: "\e613";
}
.flaticon-pencil:before {
  content: "\e614";
}
.flaticon-menu-list:before {
  content: "\e615";
}
.flaticon-keypad-six:before {
  content: "\e616";
}
.flaticon-arrows-switch:before {
  content: "\e617";
}
.flaticon-map:before {
  content: "\e618";
}
.flaticon-wand:before {
  content: "\e619";
}
.flaticon-heart-full:before {
  content: "\e61a";
}
.flaticon-magnifier2:before {
  content: "\e61b";
}
.flaticon-arrows-round:before {
  content: "\e61c";
}
.flaticon-phone:before {
  content: "\e61d";
}
.flaticon-keypad-four:before {
  content: "\e61e";
}
.flaticon-share:before {
  content: "\e61f";
}
.flaticon-hourglass:before {
  content: "\e620";
}
.flaticon-user:before {
  content: "\e621";
}
.flaticon-bell2:before {
  content: "\e622";
}
.flaticon-herringbone-up:before {
  content: "\e623";
}
.flaticon-bin:before {
  content: "\e624";
}
.flaticon-plus:before {
  content: "\e625";
}
.flaticon-bubbles:before {
  content: "\e626";
}
.flaticon-book:before {
  content: "\e627";
}
.flaticon-pin:before {
  content: "\e628";
}
.flaticon-globe:before {
  content: "\e629";
}
.flaticon-shopping-bag:before {
  content: "\e62a";
}
.flaticon-wrench:before {
  content: "\e62b";
}
.flaticon-menu-list2:before {
  content: "\e62c";
}
.flaticon-folder:before {
  content: "\e62d";
}
.flaticon-pie-chart:before {
  content: "\e62e";
}
.flaticon-book2:before {
  content: "\e62f";
}
.flaticon-camera:before {
  content: "\e630";
}
.flaticon-herringbone-left:before {
  content: "\e631";
}
.flaticon-email:before {
  content: "\e632";
}
.flaticon-paper-plane:before {
  content: "\e633";
}
.flaticon-geoloc:before {
  content: "\e634";
}
.flaticon-wrench2:before {
  content: "\e635";
}
.flaticon-clock2:before {
  content: "\e636";
}
.flaticon-equalizer:before {
  content: "\e637";
}
.flaticon-herringbone-right:before {
  content: "\e638";
}
.flaticon-shopping-bag2:before {
  content: "\e639";
}
.flaticon-tag:before {
  content: "\e63a";
}
.flaticon-gift2:before {
  content: "\e63b";
}
.flaticon-padlock-open:before {
  content: "\e63c";
}
.flaticon-link:before {
  content: "\e63d";
}
.flaticon-bubble-square:before {
  content: "\e63e";
}
.flaticon-pencil-paper:before {
  content: "\e63f";
}
.flaticon-globe2:before {
  content: "\e640";
}
.flaticon-padlock-locked:before {
  content: "\e641";
}
.flaticon-geoloc2:before {
  content: "\e642";
}
.flaticon-attachment:before {
  content: "\e643";
}
.flaticon-shopping-cart3:before {
  content: "\e644";
}
/**
  * Styles for forms elements
  *
  * @project Incubart
  * @author Anne Lacan, Romain Briand
  **/
label {
  display: inline-block;
}
textarea {
  height: auto;
}
label.fullw,
textarea.fullw,
input.fullw,
select.fullw {
  width: 100%;
}
input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
  color: #c0c0c0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: black;
  font-size: 13px;
  font-size: 1.3rem;
  font-style: normal;
  padding: 0.5em 0.7em;
}
select {
  padding: 0.5em 0.7em 0.4em;
}
select.small {
  padding: 0.3em 0.2em 0.2em 0.3em;
}
label {
  padding: 0.5em 0.7em;
}
input[disabled] {
  background: #E7E4E3;
}
input[type=text][disabled],
input[type=text]:disabled,
input[type=text].disabled {
  background: #fafafa;
  color: #777;
  box-shadow: none;
}
/**
  * Added to match crea by M.C.K
  *
  * @project alittlecraft
  * @author Sylvain Artois
  **/
.flatdesign input.flat {
  border: 5px solid #d9d9d9;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.flatdesign .btn.flat {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-shadow: none !important;
  background: #ec3468;
}
/* Primary button style - filled */
.btn {
  background-color: #ec3468;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ec3468;
  font-size: 13px;
  font-size: 1.3rem;
  color: white;
  padding: 0.45em 0.95em 0.5em;
}
.btn:active {
  background-color: #e2154f;
}
.btn:hover {
  background-color: #ee4b79;
}
.btn:hover {
  color: white;
  text-decoration: none;
}
.btn-no-padding {
  background-color: #ec3468;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ec3468;
  font-size: 13px;
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
}
.btn-no-padding:active {
  background-color: #e2154f;
}
.btn-no-padding:hover {
  background-color: #ee4b79;
}
.btn-no-padding:hover {
  color: white;
  text-decoration: none;
}
/* Secondary button style */
.btn.second {
  background-color: #5ab5ab;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #5ab5ab;
  font-size: 13px;
  font-size: 1.3rem;
  color: white;
  padding: 0.45em 0.95em 0.5em;
}
.btn.second:active {
  background-color: #479f95;
}
.btn.second:hover {
  background-color: #6cbdb4;
}
.btn.second:hover {
  color: white;
}
/* Facebook button style */
.btn.fb {
  background-color: #4F74AB;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #4F74AB;
  font-size: 13px;
  font-size: 1.3rem;
  color: white;
  padding: 0 0.95em 0 2.5em;
  position: relative;
}
.btn.fb:active {
  background-color: #42618f;
}
.btn.fb:hover {
  background-color: #5f81b5;
}
.btn.fb i {
  left: 0.55em;
  position: absolute;
  top: 0.1em;
  font-size: 24px;
  font-size: 2.4rem;
}
.btn.fb span {
  border-left: 1px solid #47689B;
  display: inline-block;
  padding: 0.5em 0 0.45em 1em;
}
/* Default button style */
.btn.default {
  background-color: #f2f2f2;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  font-size: 13px;
  font-size: 1.3rem;
  color: white;
  color: #4b4b4b;
  border: 1px solid #E5E5E5;
}
.btn.default:active {
  background-color: #dedede;
}
.btn.default:hover {
  background-color: #ffffff;
}
/* Disabled style for default buttons */
.btn.disabled,
.btn.disabled:hover {
  background: none;
  background-color: #e8e5e4;
  color: #b8b8b8;
  cursor: not-allowed;
  border-color: currentColor;
}
/* Button sizes (padding variations) */
.btn.small {
  padding: 0.3em 0.95em;
}
.btn.large {
  padding: 0.3em 1.5em;
}
.btn.big {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0.3em 0.95em;
}
/* Make a button look and behave like a link */
.btn-link {
  border-radius: 0;
  color: #007E9B;
  cursor: pointer;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  background-color: transparent;
  color: #007E9B;
  text-decoration: underline;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: gray;
  text-decoration: none;
}
/* "Add to favorite" rounded heart buttons */
button.add-to-fav-stickers,
a.add-to-fav-stickers {
  background-color: white;
  color: #b6a199;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  width: 30px;
  height: 30px;
}
button.add-to-fav-stickers .icon,
a.add-to-fav-stickers .icon {
  display: inline-block;
  width: 28px;
  padding: 0.3em 0.25em 0.2em 0.25em;
  text-align: center;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
button.add-to-fav-stickers:hover,
a.add-to-fav-stickers:hover {
  background-color: white;
  border-color: #edeaea;
}
button.add-to-fav-stickers:hover .icon,
a.add-to-fav-stickers:hover .icon {
  color: #ec3468;
}
button.add-to-fav-stickers.added,
a.add-to-fav-stickers.added {
  border-color: #ec3468;
  background-color: #ec3468;
}
button.add-to-fav-stickers.added .icon,
a.add-to-fav-stickers.added .icon {
  color: white;
}
button.add-to-fav-stickers:focus,
a.add-to-fav-stickers:focus {
  outline: none;
}
/* Boxes */
.box {
  background-color: white;
  border: 1px solid #edeaea;
}
.min-box-spaced-inner {
  padding: 0.8em;
}
/* Borders */
.bordered-none {
  border: none;
}
.bordered {
  border: 1px solid #edeaea;
}
.bordered-top {
  border-top: 1px solid #edeaea;
}
.bordered-right {
  border-right: 1px solid #edeaea;
}
.bordered-bottom {
  border-bottom: 1px solid #edeaea;
}
.bordered-left {
  border-left: 1px solid #edeaea;
}
.bordered-dotted-top {
  border-top: 1px dashed #edeaea;
}
.bordered-dotted-bottom {
  border-bottom: 1px dashed #edeaea;
}
/* Shadows */
.shadowy {
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.24);
}
/* Backgrounds */
.bck-colored {
  background-color: white;
}
.bckd-colored {
  background-color: #E7E4E3;
}
.main-colored {
  background-color: #ec3468;
  color: white;
}
.bg-transparent {
  background-color: transparent;
}
/* Round blocks */
.rounded {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.message {
  background-color: #D9EDF7;
  border-top: 1px solid #bce8f1;
  border-bottom: 1px solid #bce8f1;
  color: #086EA1;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 1em;
  margin-bottom: 1em;
}
.message ul {
  margin-left: 1em;
}
.message.triangle-left {
  position: relative;
}
.message.triangle-left:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px;
  position: absolute;
  Ignore: a;left:-20px;
  border-right-color: #D9EDF7;
}
.message.error {
  background-color: #FBF6F6;
  border-color: #EDC1C1;
  color: #B80000;
}
.message.success {
  background-color: #DFF0D8;
  border-color: #d6e9c6;
  color: #016C03;
}
.message.warning {
  background-color: #FFF9F1;
  border-color: #FAD7BF;
  color: #AD551B;
}
.message.app_banner {
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  border-color: #edeaea;
}
.message.app_banner > a {
  display: block;
  color: #3C3C3C;
  padding: 1em 4em;
}
.message.app_banner .banner-title {
  font-size: 21px;
  font-size: 2.1rem;
  color: #086EA1;
  font-family: 'Museo Slab';
  font-weight: normal;
}
.message.app_banner .bigger-text {
  font-size: 18px;
  font-size: 1.8rem;
}
.modal {
  min-width: 655px;
}
/* Badges - pastilles - counters */
.badge {
  display: inline-block;
  min-width: 1em;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  font-size: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #414141;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.badge.primary {
  background-color: #ec3468;
}
.badge.second {
  background-color: #ec3468;
}
.badge.default {
  background-color: #f4f8fc;
  color: black;
}
/* tablets, 768px and up */
@media (min-width: 768px) {
  .badge {
    font-size: 9px;
    font-size: 0.9rem;
  }
}
/*
# FrameworkCss/common/helpers.less
----

## Helpers
/*
*/
/*

### Displays

.d-block -> display: block;

.d-inline

.d-iblock -> display: inline-block;

.d-tbl -> display: table;

.d-tbr  -> display: table-row;

.d-tbc -> display: table-cell;

.hide -> display: none;

-----------
*/
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-iblock {
  display: inline-block;
}
.d-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.d-tbl {
  display: table;
}
.d-tbr {
  display: table-row;
}
.d-tbc {
  display: table-cell;
}
.hide {
  display: none;
}
/* .fake-hide and .sr-only listed bellow:
   Two different ways to hide an element without removing it from the DOM,
   allowing them to be read by Screen Readers */
.fake-hide {
  display: inline-block;
  text-indent: -9999999px;
  outline: none;
}
/* .sr-only is a copycat from Twitter Bootstrap3 "sr-only = Screen Readers-only" */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*
.v-hidden -> visibility: hidden;

-----------
*/
.v-hidden {
  visibility: hidden;
}
/*
.opacity-0 -> opacity: 0;

.opacity-1 -> opacity: 1;

-----------
*/
.opacity-0 {
  opacity: 0;
}
.opacity-1 {
  opacity: 1;
}
/*
### Floats

*/
.left {
  float: left;
}
.right {
  float: right;
}
.float-none {
  float: none;
}
.clear {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
/*

### Reordering flex elements

.flex-order-1 -> order: 1;

-----------
*/
/* TODO: create a loop */
.flex-order-1 {
  -webkit-order: 1;
  -ms-flex-order: 1;
  /* IE10 */
  -ms-order: 1;
  order: 1;
}
.flex-order-2 {
  -webkit-order: 2;
  -ms-flex-order: 2;
  /* IE10 */
  -ms-order: 2;
  order: 2;
}
.flex-order-3 {
  -webkit-order: 3;
  -ms-flex-order: 3;
  /* IE10 */
  -ms-order: 3;
  order: 3;
}
.flex-order-4 {
  -webkit-order: 4;
  -ms-flex-order: 4;
  /* IE10 */
  -ms-order: 4;
  order: 4;
}
.flex-order-5 {
  -webkit-order: 5;
  -ms-flex-order: 5;
  /* IE10 */
  -ms-order: 5;
  order: 5;
}
.flex-order-6 {
  -webkit-order: 6;
  -ms-flex-order: 6;
  /* IE10 */
  -ms-order: 6;
  order: 6;
}
.flex-order-7 {
  -webkit-order: 7;
  -ms-flex-order: 7;
  /* IE10 */
  -ms-order: 7;
  order: 7;
}
.flex-order-8 {
  -webkit-order: 8;
  -ms-flex-order: 8;
  /* IE10 */
  -ms-order: 8;
  order: 8;
}
.flex-order-9 {
  -webkit-order: 9;
  -ms-flex-order: 9;
  /* IE10 */
  -ms-order: 9;
  order: 9;
}
/*

### Positioning

.p-rel -> position: relative;

.p-abs

.p-fix

.p-sta

.p-top -> top: 0;

.p-left -> left: 0;

.p-right -> right: 0;

.p-bottom -> bottom: 0;

-----------
*/
.p-rel {
  position: relative;
}
.p-abs {
  position: absolute;
}
.p-fix {
  position: fixed;
}
.p-sta {
  position: static;
}
.p-top {
  top: 0;
}
.p-left {
  left: 0;
}
.p-right {
  right: 0;
}
.p-bottom {
  bottom: 0;
}
/*
.ovh -> overflow: hidden;

-----------
*/
.ofh {
  overflow: hidden;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-iblock {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-iblock {
    display: inline-block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1008px) {
  .hidden-sm {
    display: none !important;
  }
}
.visible-lg-block {
  display: none;
}
@media (min-width: 1009px) {
  .visible-lg-block {
    display: block;
  }
}
/*
## Animated spinner
*/
/*

### overlay-spinner is to be applied to an empty div (overlay) containing another empty div (CSS spinner)

    combine with a defined JS behavior

    .overlay-spinner

```
<hr style="background-color:#eee;" />

<div class="overlay-spinner hide" data-jsbehavior="whatever-you-decide"><div></div></div>

```
*/
.overlay-spinner {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
}
.overlay-spinner div {
  width: 48px;
  height: 48px;
  position: fixed;
  top: 50%;
  right: 50%;
  left: 50%;
  background: url("../../image/ui/spinner.svg") no-repeat center transparent;
  background-size: 48px 48px;
  margin-left: -24px;
  margin-top: -24px;
  text-indent: -2000px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 2s infinite linear;
  animation: spinner-animate 2s infinite linear;
}
@-webkit-keyframes spinner-animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
## Spaces
*/
/*

### Margins - min

  .spaced-min-top

  .spaced-min-bottom

  .spaced-min-left

  .spaced-min-right

  .spaced-min-all

```
<hr style="background-color:#eee;" />
<div class="spaced-min-top" style="background-color:#ccc;">
  <p>spaced-min-top</p>
</div>

```
*/
.spaced-min-top,
.row.spaced-min-top {
  margin-top: 0.5em;
}
.spaced-min-bottom,
.row.spaced-min-bottom {
  margin-bottom: 0.5em;
}
.spaced-min-left,
.row.spaced-min-left {
  margin-left: 0.5em;
}
.spaced-min-right,
.row.spaced-min-right {
  margin-right: 0.5em;
}
.spaced-min-all,
.row.spaced-min-all {
  margin: 0.5em;
}
/*

### Margins - normal

  .spaced-top

  .spaced-bottom

  .spaced-left

  .spaced-right

  .spaced-all

```
<hr style="background-color:#eee;" />
<div class="spaced-top" style="background-color:#ccc;">
  <p>spaced-top</p>
</div>

```
*/
.spaced-top,
.row.spaced-top {
  margin-top: 1em;
}
.spaced-bottom,
.row.spaced-bottom {
  margin-bottom: 1em;
}
.spaced-left,
.row.spaced-left {
  margin-left: 1em;
}
.spaced-right,
.row.spaced-right {
  margin-right: 1em;
}
.spaced-all,
.row.spaced-all {
  margin: 1em;
}
/*

### Margins - max

  .spaced-max-top

  .spaced-max-bottom

  .spaced-max-left

  .spaced-max-right

  .spaced-max-all

```
<hr style="background-color:#eee;" />
<div class="spaced-max-top" style="background-color:#ccc;">
  <p>spaced-max-top</p>
</div>

```
*/
.spaced-max-top,
.row.spaced-max-top {
  margin-top: 2em;
}
.spaced-max-bottom,
.row.spaced-max-bottom {
  margin-bottom: 2em;
}
.spaced-max-left,
.row.spaced-max-left {
  margin-left: 2em;
}
.spaced-max-right,
.row.spaced-max-right {
  margin-right: 2em;
}
.spaced-max-all,
.row.spaced-max-all {
  margin: 2em;
}
/*

### Margins - reset

  .spaced-none

  .spaced-none-top

  .spaced-none-bottom

  .spaced-none-left

  .spaced-none-right

```
<hr style="background-color:#eee;" />
<div class="spaced-max-all spaced-none-top" style="background-color:#ccc;">
  <p>spaced-max-all spaced-none-top</p>
</div>

```
*/
.spaced-none,
.row.spaced-none {
  margin: 0;
}
.spaced-none-top,
.row.spaced-none-top {
  margin-top: 0;
}
.spaced-none-bottom,
.row.spaced-none-bottom {
  margin-bottom: 0;
}
.spaced-none-left,
.row.spaced-none-left {
  margin-left: 0;
}
.spaced-none-right,
.row.spaced-none-right {
  margin-right: 0;
}
/*

### Paddings - min

  .padded-min-top

  .padded-min-bottom

  .padded-min-left

  .padded-min-right

  .padded-min-all

```
<hr style="background-color:#eee;" />
<div class="spaced-min-all padded-min-top" style="background-color:#ccc;">
  <p style="background-color:#ddd;">padded-min-top</p>
</div>

```
*/
.padded-min-top,
.row.padded-min-top {
  padding-top: 0.5em;
}
.padded-min-bottom,
.row.padded-min-bottom {
  padding-bottom: 0.5em;
}
.padded-min-left,
.row.padded-min-left {
  padding-left: 0.5em;
}
.padded-min-right,
.row.padded-min-right {
  padding-right: 0.5em;
}
.padded-min-all,
.row.padded-min-all {
  padding: 0.5em;
}
/*

### Paddings - normal

  .padded-top

  .padded-bottom

  .padded-left

  .padded-right

  .padded-all

```
<hr style="background-color:#eee;" />
<div class="spaced-min-all padded-top" style="background-color:#ccc;">
  <p style="background-color:#ddd;">padded-top</p>
</div>

```
*/
.padded-top,
.row.padded-top {
  padding-top: 1em;
}
.padded-bottom,
.row.padded-bottom {
  padding-bottom: 1em;
}
.padded-left,
.row.padded-left {
  padding-left: 1em;
}
.padded-right,
.row.padded-right {
  padding-right: 1em;
}
.padded-all,
.row.padded-all {
  padding: 1em;
}
/*

### Paddings - max

  .padded-max-top

  .padded-max-bottom

  .padded-max-left

  .padded-max-right

  .padded-max-all

```
<hr style="background-color:#eee;" />
<div class="spaced-min-all padded-max-top" style="background-color:#ccc;">
  <p style="background-color:#ddd;">padded-max-top</p>
</div>

```
*/
.padded-max-top,
.row.padded-max-top {
  padding-top: 2em;
}
.padded-max-bottom,
.row.padded-max-bottom {
  padding-bottom: 2em;
}
.padded-max-left,
.row.padded-max-left {
  padding-left: 2em;
}
.padded-max-right,
.row.padded-max-right {
  padding-right: 2em;
}
.padded-max-all,
.row.padded-max-all {
  padding: 2em;
}
/*

### Paddings - reset

  .padded-none

  .padded-none-top

  .padded-none-bottom

  .padded-none-left

  .padded-none-right

```
<hr style="background-color:#eee;" />
<div class="padded-max-all padded-none-top" style="background-color:#ccc;">
  <p>padded-max-all padded-none-top</p>
</div>

```
*/
.padded-none,
.row.padded-none {
  padding: 0;
}
.padded-none-top,
.row.padded-none-top {
  padding-top: 0;
}
.padded-none-bottom,
.row.padded-none-bottom {
  padding-bottom: 0;
}
.padded-none-right,
.row.padded-none-right {
  padding-right: 0;
}
.padded-none-left,
.row.padded-none-left {
  padding-left: 0;
}

/**
 *  2016 - Etsy France
 *
 *  All Rights Reserved.
 *
 *  This files imports fixed width styles from the css framework alittleui
 *
 *  it can be called in any asset group
 */
/* fixed header width for v2-3-4 pages (they're not flex) */
.fixed-width {
  max-width: 1009px;
  margin: 0 auto !important;
}