html {
  width: 100%;
  max-width: 720px;
  margin: auto;
  height: 100%; }

body {
  background: #1a1a1a;
  margin: 0;
  width: 100%;
  max-width: 720px;
  margin: auto;
  padding: 0;
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  body .noscroll {
    overflow: hidden; }

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-appearance: none !important;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

a,
a:link {
  outline: none;
  text-decoration: none;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

#app {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  max-width: 720px;
  margin: auto;
  min-height: 100vh; }

nav.menu-bar {
  padding: 0 15px;
  background: #000;
  height: 60px;
  position: fixed;
  z-index: 115;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 720px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  display: -ms-flexbox;
  display: -ms-flexbox;
  display: -webkit-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-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  nav.menu-bar .logo-menu-button {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto; }
  nav.menu-bar .right {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    background: red;
    margin-left: 20px;
    position: relative; }
  nav.menu-bar ul.main-menu {
    height: 0px;
    display: -ms-flexbox;
    display: -webkit-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: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    opacity: 0;
    visibility: hidden; }
    nav.menu-bar ul.main-menu.open {
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      opacity: 1;
      visibility: visible; }
    nav.menu-bar ul.main-menu li {
      height: 26px;
      width: 32px;
      text-align: center;
      list-style: none;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-align-self: auto;
      -ms-flex-item-align: auto;
      align-self: auto; }
      nav.menu-bar ul.main-menu li a, nav.menu-bar ul.main-menu li button {
        background: none;
        border: none; }

.grid-photos {
  margin: 0;
  padding: 0;
  padding-bottom: 150px;
  display: grid;
  grid-gap: 20px;
  grid-auto-rows: auto;
  grid-template-columns: calc( 50% - 10px); }
  .grid-photos li {
    padding: 0;
    list-style: none;
    grid-column: 1;
    margin: 0; }
    .grid-photos li:nth-child(even) {
      grid-column: 2;
      -webkit-transform: translateY(25%);
      -moz-transform: translateY(25%);
      -ms-transform: translateY(25%);
      -o-transform: translateY(25%);
      transform: translateY(25%); }
    .grid-photos li a {
      text-decoration: none; }
      .grid-photos li a figure {
        background: #f5f5f5;
        margin: 0;
        padding: 0;
        padding-top: 133.333333333333%;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }
      .grid-photos li a .code {
        color: #707070;
        text-align: center;
        font-size: 13px;
        margin-top: 5px; }
      .grid-photos li a h3 {
        text-align: center;
        color: #505050;
        font-size: 1.1rem;
        text-decoration: none;
        margin-top: 0; }

.action_menu_effect {
  position: fixed;
  z-index: 105;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }
  .action_menu_effect:after, .action_menu_effect:before {
    background: #000;
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    width: calc( 17vw - 4px);
    height: calc( 17vw - 4px);
    max-width: 76px;
    max-height: 76px;
    border-radius: 50%;
    display: block;
    z-index: 105;
    opacity: .1;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%); }
  .action_menu_effect:after {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); }
  .action_menu_effect:before {
    transition: all 0.9s cubic-bezier(0.71, 0.08, 0.37, 1); }
  .action_menu_effect.open:after {
    opacity: .5;
    transform: scale(50); }
  .action_menu_effect.open:before {
    opacity: 1;
    transform: scale(50); }

.action_menu_container {
  position: fixed;
  z-index: 120;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }

.menu-overlay {
  position: fixed;
  padding: 20px;
  height: calc( 100vh - 60px);
  width: 100vw;
  max-width: 720px;
  top: 0;
  left: 50%;
  z-index: 110;
  transition: all 0.7s cubic-bezier(0.71, 0.08, 0.37, 1);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 70%);
  -moz-transform: translate(-50%, 70%);
  -ms-transform: translate(-50%, 70%);
  -o-transform: translate(-50%, 70%);
  transform: translate(-50%, 70%); }
  .menu-overlay.open {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    visibility: visible; }
  .menu-overlay .search_bar {
    border-bottom: 1px solid #505050;
    padding: 20px 0;
    display: -ms-flexbox;
    display: -webkit-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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .menu-overlay .search_bar .left {
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      -webkit-align-self: auto;
      -ms-flex-item-align: auto;
      align-self: auto; }
      .menu-overlay .search_bar .left input {
        color: #fff;
        font-weight: 600;
        font-size: 1.3rem;
        background: transparent;
        border: none;
        line-height: 1.3rem;
        width: 100%; }
        .menu-overlay .search_bar .left input::placeholder {
          color: #fff;
          opacity: .8; }
    .menu-overlay .search_bar .right {
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-align-self: auto;
      -ms-flex-item-align: auto;
      align-self: auto;
      width: 50px; }
      .menu-overlay .search_bar .right button {
        width: 50px;
        border: none;
        background: transparent; }
        .menu-overlay .search_bar .right button svg {
          width: 26px;
          height: 26px; }

.menu-layout-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%; }

.menu-layout-first {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto; }

.menu-layout-content {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  overflow-y: auto;
  overflow-x: none; }

.menu-list {
  margin: 0;
  padding: 10px 0 80px 0;
  /*
	Generic styles for all list
	*/ }
  .menu-list li {
    list-style: none; }
  .menu-list > li {
    display: block;
    padding: 10px 0;
    overflow: hidden; }
    .menu-list > li > a {
      font-size: 2.2rem;
      font-weight: 200;
      color: #939393;
      display: -ms-flexbox;
      display: -webkit-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-flex-pack: start;
      justify-content: flex-start;
      -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .menu-list > li > a:hover {
        color: #fff; }
      .menu-list > li > a .badge {
        font-size: 11px;
        color: #fff;
        display: inline-block;
        background: #006CFF;
        border-radius: 50%;
        font-weight: 600;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 21px;
        margin-left: 5px;
        -webkit-transform: translateY(-30%);
        -moz-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        -o-transform: translateY(-30%);
        transform: translateY(-30%); }
    .menu-list > li > ul {
      margin: 0 -5px;
      padding: 10px 0; }
      .menu-list > li > ul li {
        display: inline-block;
        background: #313131;
        border-radius: 3px;
        margin: 5px; }
        .menu-list > li > ul li a {
          font-size: 12px;
          display: inline-block;
          padding: 2px 10px;
          color: #939393;
          text-transform: uppercase;
          font-weight: 600; }
          .menu-list > li > ul li a:hover {
            color: #fff; }

.action_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  background: #fff;
  display: block;
  width: 17vw;
  height: 17vw;
  max-width: 80px;
  max-height: 80px;
  z-index: 110;
  border-radius: 17vw;
  border: none;
  text-align: center;
  -webkit-box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4); }
  .action_menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    display: block;
    background: #000;
    width: 40%;
    padding-top: 5px; }
    .action_menu span:after, .action_menu span:before {
      -webkit-transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -ms-transition: all .25s ease-in-out;
      -o-transition: all .25s ease-in-out;
      transition: all .25s ease-in-out;
      content: '';
      position: absolute;
      left: 50%;
      display: block;
      background: #000;
      width: 100%;
      padding-top: 5px; }
    .action_menu span:before {
      top: -100%;
      -webkit-transform: translate(-50%, -80%) rotate(0deg);
      -moz-transform: translate(-50%, -80%) rotate(0deg);
      -ms-transform: translate(-50%, -80%) rotate(0deg);
      -o-transform: translate(-50%, -80%) rotate(0deg);
      transform: translate(-50%, -80%) rotate(0deg); }
    .action_menu span:after {
      bottom: -100%;
      -webkit-transform: translate(-50%, 80%) rotate(0deg);
      -moz-transform: translate(-50%, 80%) rotate(0deg);
      -ms-transform: translate(-50%, 80%) rotate(0deg);
      -o-transform: translate(-50%, 80%) rotate(0deg);
      transform: translate(-50%, 80%) rotate(0deg); }
  .action_menu.close span {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
    .action_menu.close span:before {
      top: 0%;
      -webkit-transform: translate(-50%, 0%) rotate(0deg);
      -moz-transform: translate(-50%, 0%) rotate(0deg);
      -ms-transform: translate(-50%, 0%) rotate(0deg);
      -o-transform: translate(-50%, 0%) rotate(0deg);
      transform: translate(-50%, 0%) rotate(0deg); }
    .action_menu.close span:after {
      bottom: 0%;
      -webkit-transform: translate(-50%, 0%) rotate(90deg);
      -moz-transform: translate(-50%, 0%) rotate(90deg);
      -ms-transform: translate(-50%, 0%) rotate(90deg);
      -o-transform: translate(-50%, 0%) rotate(90deg);
      transform: translate(-50%, 0%) rotate(90deg); }

.page {
  padding: 20px;
  padding-top: 90px;
  min-height: 100vh; }
  .page.page-product-view {
    padding: 0; }
  .page.page-search {
    padding-bottom: 170px; }
    .page.page-search .search-info {
      padding-bottom: 15px; }
  .page-content {
    padding-bottom: 170px; }
    .page-content .wpcf7-form-control-wrap {
      display: block; }
      .page-content .wpcf7-form-control-wrap input {
        width: 100%;
        border: 1px solid #d1d1d1;
        padding: 10px 20px;
        color: #000;
        font-size: 1rem; }
      .page-content .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        display: block;
        padding: 2px 5px;
        background: #e60000;
        color: #fff;
        font-size: .8rem;
        margin-top: 5px;
        position: relative; }
        .page-content .wpcf7-form-control-wrap .wpcf7-not-valid-tip:after {
          content: '';
          display: block;
          position: absolute;
          top: -10px;
          left: 5px;
          border-bottom: 5px solid #e60000;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          margin-top: 5px; }
    .page-content .wpcf7-submit {
      background: #006CFF;
      border: none;
      font-weight: bold;
      font-size: 1.2rem;
      color: #FFF;
      padding: 7px 20px; }
    .page-content .wpcf7-validation-errors {
      background: #e60000;
      color: #fff;
      text-align: center;
      padding: 15px;
      border: none;
      margin-left: 0;
      margin-right: 0; }
    .page-content .wpcf7-mail-sent-ok {
      background: #398f14;
      color: #fff;
      text-align: center;
      padding: 15px;
      border: none;
      margin-left: 0;
      margin-right: 0; }

.page-home {
  padding-bottom: 170px; }

.header-bar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 90;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 720px;
  padding: 0 20px;
  padding-top: 20px;
  height: 90px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: -webkit-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: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .header-bar h2 {
    margin: 0;
    padding: 0;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    font-weight: 300;
    font-size: 35px;
    color: #000;
    line-height: 100%; }
  .header-bar .hright {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto; }
    .header-bar .hright .badge {
      background: #006CFF;
      display: block;
      width: 34px;
      height: 34px;
      vertical-align: middle;
      text-align: center;
      line-height: 34px;
      color: #FFF;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 600; }

.page-product-view {
  position: relative; }
  .page-product-view .infos {
    padding: 0px 20px 170px 20px;
    position: relative;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #fff; }
    .page-product-view .infos h2.title {
      text-align: center;
      color: #505050;
      font-size: 28px;
      margin: 0;
      padding: 0;
      margin-bottom: 5px; }
    .page-product-view .infos .code {
      color: #707070;
      text-align: center;
      font-size: 13px; }
    .page-product-view .infos .description {
      color: #545454;
      font-size: 16px;
      padding-top: 30px; }
    .page-product-view .infos .medidas h3 {
      color: #505050;
      margin: 10px 0;
      font-size: 16px; }
    .page-product-view .infos .medidas .size {
      display: inline-block;
      min-width: 30px;
      padding: 0 5px;
      height: 30px;
      line-height: 30px;
      color: #fff;
      font-weight: 600;
      text-align: center;
      background: #000;
      margin: 0 5px;
      font-size: 11px;
      vertical-align: middle; }
      .page-product-view .infos .medidas .size:first-child {
        margin-left: 0; }
      .page-product-view .infos .medidas .size:last-child {
        margin-right: 0; }
    .page-product-view .infos .warning {
      display: block;
      color: #545454;
      font-size: 14px;
      padding-top: 20px;
      padding-bottom: 20px; }
  .page-product-view .slider {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    max-width: 720px; }
    .page-product-view .slider:after {
      position: absolute;
      display: block;
      content: '';
      border-bottom: 15vw solid #fff;
      border-left: 100vw solid transparent;
      bottom: 0;
      left: 0;
      z-index: 40; }

.page-avisos .avisos-list {
  margin: 0;
  padding: 0;
  padding-bottom: 170px; }
  .page-avisos .avisos-list li {
    list-style: none;
    display: block;
    padding: 25px 0; }
    .page-avisos .avisos-list li a {
      display: block;
      color: #505050;
      font-size: 28px;
      font-weight: 700;
      line-height: 110%;
      padding-bottom: 5px; }
    .page-avisos .avisos-list li span {
      color: #707070;
      font-size: 13px;
      font-weight: 200; }

.page-aviso .aviso-content {
  padding-bottom: 170px; }

.slider .carousel-cell {
  z-index: 5; }

.slider .flickity-page-dots {
  bottom: calc( 15vw - 10px); }
  .slider .flickity-page-dots .dot {
    width: 7px;
    height: 7px;
    background: #fff;
    opacity: 1;
    margin: 0 4px; }
    .slider .flickity-page-dots .dot.is-selected {
      background: #006CFF; }

.slider a {
  display: block;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 80vh; }

.back-link {
  background: transparent;
  color: #fff;
  border: none;
  display: inline-block;
  height: 20px;
  min-width: 20px;
  line-height: 20px;
  padding: 2px 5px; }

.btn-zoom {
  position: absolute;
  top: 50px;
  z-index: 41;
  left: 40px; }

.fancybox-toolbar {
  top: 24px !important; }

.end-list {
  text-align: center;
  color: #505050; }
  .end-list .st0 {
    fill: #006CFF; }
  .end-list > strong {
    display: block;
    position: relative;
    margin-top: 5px; }
    .end-list > strong:after {
      content: '';
      display: block;
      width: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      height: 1px;
      background: #D9D9D9;
      z-index: 1; }
    .end-list > strong > span {
      display: inline-block;
      position: relative;
      z-index: 2;
      background: #fff;
      padding: 0 10px; }
  .end-list > p {
    display: block;
    font-size: .8rem;
    margin: 0;
    padding: 0; }

.page-informacoes {
  background: #000;
  color: #fff;
  padding-bottom: 170px; }
  .page-informacoes .header-bar {
    background: rgba(0, 0, 0, 0.9); }
    .page-informacoes .header-bar h2 {
      color: #fff; }
  .page-informacoes .page-content {
    font-weight: 200;
    color: #BEBEBE; }
    .page-informacoes .page-content h1, .page-informacoes .page-content h2, .page-informacoes .page-content h3, .page-informacoes .page-content h4, .page-informacoes .page-content h5 {
      color: #fff;
      font-weight: 600; }
    .page-informacoes .page-content a {
      text-decoration: none;
      color: #fff; }
    .page-informacoes .page-content .btn-site {
      background: none;
      border: none;
      color: #fff;
      font-weight: 600;
      font-size: 1.5rem;
      margin: 30px 0 0;
      padding: 0;
      cursor: pointer; }
      .page-informacoes .page-content .btn-site:hover {
        color: rgba(255, 255, 255, 0.5); }

.home-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }
  .home-banner figure {
    margin: 0;
    padding: 0;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
    .home-banner figure img {
      width: 100%;
      height: auto; }
  .home-banner button {
    position: fixed;
    z-index: 501;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    display: block;
    width: 17vw;
    height: 17vw;
    max-width: 80px;
    max-height: 80px;
    z-index: 110;
    border-radius: 17vw;
    border: none;
    text-align: center;
    -webkit-box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: -3px 4px 10px 0px rgba(0, 0, 0, 0.4); }
    .home-banner button span {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -ms-transition: all .25s ease-in-out;
      -o-transition: all .25s ease-in-out;
      transition: all .25s ease-in-out;
      display: block;
      background: #000;
      width: 40%;
      padding-top: 5px;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -moz-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
      -o-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
      .home-banner button span:after, .home-banner button span:before {
        -webkit-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -o-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
        content: '';
        position: absolute;
        left: 50%;
        display: block;
        background: #000;
        width: 100%;
        padding-top: 5px; }
      .home-banner button span:before {
        top: 0%;
        -webkit-transform: translate(-50%, 0%) rotate(0deg);
        -moz-transform: translate(-50%, 0%) rotate(0deg);
        -ms-transform: translate(-50%, 0%) rotate(0deg);
        -o-transform: translate(-50%, 0%) rotate(0deg);
        transform: translate(-50%, 0%) rotate(0deg); }
      .home-banner button span:after {
        bottom: 0%;
        -webkit-transform: translate(-50%, 0%) rotate(90deg);
        -moz-transform: translate(-50%, 0%) rotate(90deg);
        -ms-transform: translate(-50%, 0%) rotate(90deg);
        -o-transform: translate(-50%, 0%) rotate(90deg);
        transform: translate(-50%, 0%) rotate(90deg); }

body.ios .page {
  padding-bottom: 270px !important; }

body.ios .header-bar {
  padding-top: 30px !important; }

.fade-enter-active,
.fade-leave-active {
  transition-duration: 0.3s;
  transition-property: height, opacity;
  transition-timing-function: ease;
  overflow: hidden;
}
.fade-enter,
.fade-leave-active {
  opacity: 0;
}
.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.5s;
  transition-property: height, opacity, transform;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  overflow: hidden;
}
.slide-left-enter,
.slide-right-leave-active {
  opacity: 0;
  transform: translate(2em, 0);
}
.slide-left-leave-active,
.slide-right-enter {
  opacity: 0;
  transform: translate(-2em, 0);
}
.zoom-enter-active,
.zoom-leave-active {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: zoom;
}
.zoom-leave-active {
  animation-direction: reverse;
}
@keyframes zoom {
from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
100% {
    opacity: 1;
}
}

#icon_search {fill: #fff;
}

.logo-menu-button svg {
  width: 36px;
  height: 36px;
}
.logo-menu-button #logo-menu {
  fill: #fff;
}
.main-menu .st0 {
  fill: #FFFFFF;
}

.grid-photos img {
  visibility: visible;
  opacity: 1;
  transition: all 2s ease-in-out;
}
.grid-photos img.hide {
    visibility: hidden;
    opacity: 1;
    transition: all 2s ease-in-out;
}

.__preloader {
  background: rgba(255, 255, 255, 0.95);
  transition: all .25s ease-in-out;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  color: #333;
  z-index: 95;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.__preloader.active {
    opacity: 1;
    visibility: visible;
}
.__preloader svg {
    width: 30%;
    max-width: 200px;
}
.__preloader #logo-preloader {
    fill: #333;
}
/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus { outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}
.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.flickity-prev-next-button.previous { left: 10px;
}
.flickity-prev-next-button.next { right: 10px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots { direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.favlink {
  position: absolute;
  bottom: calc( 15vw + 20px);
  z-index: 41;
  right: 40px;
}
.favlink .st0 {
    fill: #006CFF;
}
.favlink .fav-icon svg {
    width: 26px;
    height: 24px;
}

#back-link-ico .st0{fill:#006CFF;
}
.back-link svg{ width: 15px; height: 15px
}

.page-product-view .back-link {
  position: absolute;
  top: 50px;
  z-index: 35;
  right: 30px;
}
.page-product-view .back-link svg {
    width: 22px !important;
    height: 22px !important;
}
.overtouch {
  position: fixed;
  left: 0;
  top: 0;
  background: transparent;
  width: 15px;
  height: 100vh;
  z-index: 1000;
}
.container-product-image {
  position: relative;
}

.viewed a {
  font-weight: 400 !important;
}

/*# sourceMappingURL=app.min.css.map*/