/************************
DEFINIÇÕES GERAIS 
*************************/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }
  input:focus,
  select:focus,
  .btn:focus {
    outline-color: transparent;
    outline-style: none;
  }
  
  
  /************************
  TITULAÇÕES E TEXTOS 
  *************************/
  
  h1,
  .title {
      font-weight: 300;
      font-size: 26px;
      line-height: 1em;
      color: var(--gray-main);
  }
  h2,
  .title-second {
      font-weight: 300;
      font-size: 25px;
      line-height: 1em;
      color: var(--gray-main);
  }
  h3,
  .title-third {
      font-weight: 500;
      font-size: 16px;
      line-height: 1em;
      color: var(--gray-main);	
  }
  small,
  .small {
      font-weight: 400;
      font-size: 13px;
      line-height: 1em;
      color: var(--gray-font);	
  }
  .extra-small {
      font-size: 10px;
      line-height: 1em;
      color: var(--gray-font);	
  }
  label,
  .label {
      font-size: 11px !important;
      font-weight: 300 !important;
      line-height: 10px;
      text-transform: uppercase;
      vertical-align: middle;
      color: var(--silver-font);
  }
  
  /************************
  LABELS
  *************************/
  label.new {
      padding: 3px 4px 2px;
      background: var(--gray-font);
      border-radius: 2px;
      color: var(--white);
  }
  
  /************************
  BOTÕES 
  *************************/
  
    
  /************************
  FORMS: CHECKBOX & RADIO
  *************************/
  label.checkbox,
  label.radio {
      margin: 0px 5px 10px; 
      min-height: 20px;
      padding-left: 30px;
      display: inline-block;
      position: relative;
      font-family: Roboto;
      font-size: 13px;
      font-weight: 400;
      text-align: left;
      text-transform: none;
  }
  label.checkbox:hover,
  label.radio:hover {
      cursor:pointer;
  }
  label.checkbox input,
  label.radio input {
      display: none;
  }
  label.checkbox:before,
  label.radio:before {
      width: 18px;
      height: 18px;
      content: "";
      display: block;
      position: absolute;
      top: 0px;
      left: 0px;
      border: var(--input-border-main);
      border-radius: 2px;
      background: var(--input-background-main);
      -webkit-box-shadow: var(--input-shadow-main);
         -moz-box-shadow: var(--input-shadow-main);
              box-shadow: var(--input-shadow-main);
  }
  label.radio:before {
      border-radius: 50%;
  }
  label.checkbox span,
  label.radio span {
      min-height: 20px;
      line-height: 20px;
      font-size: 13px;
      font-weight: 400;
      vertical-align: middle;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  }
  label.checkbox input:checked ~ span:before {
      width: 14px;
      height: 10px;
      content: "";
      display: block;
      position: absolute;
      top: 4px;
      left: 3px;
      background: url("images/icon-selected.svg") 2px 2px no-repeat;
  }
  label.radio input:checked ~ span:before {
      width: 8px;
      height: 8px;
      content: "";
      display: block;
      position: absolute;
      top: 6px;
      left: 6px;
      border-radius: 50%;
      background: var(--gray-main);
  }
  
  
  /************************
  FORMS: INPUTS
  *************************/
  label.input {
      min-height: calc(48px - 28px);
      width: auto;
      display: inline-block;
      position: relative;
      margin: 0px 5px 10px;
      padding: 20px 16px 8px;
      font-size: 15px;
      font-weight: 400;
      line-height: 15px;
      text-align: left;
      color: var(--input-text);
      border: var(--input-border-main);
      border-radius: 2px;
      background: var(--input-background-main);
      -webkit-box-shadow: var(--input-shadow-main);
         -moz-box-shadow: var(--input-shadow-main);
              box-shadow: var(--input-shadow-main);
  }
  label.input-full {
      width: calc(100% - 32px - 2px - 10px);
  }
  label.input > span {
      display: block;
      position: absolute;
      top: 9px;
      left: 16px;
      color: var(--silver-main);
      font-size: 10px;
      font-weight: 400;
      line-height: 12px;
      text-align: left;
      text-transform: uppercase;
      opacity: 1;
  }
  label.input input {
      width: 100%;
      margin: 0px;
      padding: 0px;
      position: relative;
      top: 2px;
      border: 0px;
      font-size: 15px;
      font-weight: 400;
      line-height: 15px;
      text-align: left;
      color: var(--input-text);
  }
  label.input input[type="date"] {
      height: 21px;
  }
  label.input input:placeholder-shown { 
      top: -4px;
  }
  label.input input:placeholder-shown ~ span { 
      opacity: 0;
  }
  
  
  /************************
  FORMS: SELECT
  *************************/
  
  .select {
      display: inline-block;
      position: relative;
      margin: 0px 5px 10px;
  }
  select {
      min-height: calc(48px - 28px);
      width: auto;
      display: inline-block;
      position: relative;
      padding: 16px 44px 15px 16px;
      font-size: 15px;
      font-weight: 400;
      line-height: 15px;
      text-align: left;
      color: var(--input-text);
      border: var(--input-border-main);
      border-radius: 2px;
      background: url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat, -webkit-linear-gradient(90deg, var(--select-background-dark), var(--select-background-light));
      background:url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat,  -moz-linear-gradient(90deg, var(--select-background-dark), var(--select-background-light));
      background: url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat, -o-linear-gradient(90deg, var(--select-background-dark), var(--select-background-light));
      background: url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat, -ms-linear-gradient(90deg, var(--select-background-dark), var(--select-background-light));
      background: url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat, linear-gradient(0deg, var(--select-background-dark), var(--select-background-light));
      background: url("images/icons-nav--down.svg") calc(100% - 20px) center no-repeat, linear-gradient(0deg, var(--select-background-dark), var(--select-background-light));
      -webkit-appearance: none;
            -moz-appearance: none;
              appearance: none;
  }
  select:hover {
      cursor: pointer;
  }
  select:before {
      width: 8px;
      height: 5px;
      content: "";
      display: block;
      position: absolute;
      top: 23px;
      right: 20px;
      background: url("images/icons-nav--down.svg") center center no-repeat;
      cursor: pointer;
      z-index: 1;
  }
  select:focus {
      background: url("images/icons-nav--up.svg") calc(100% - 20px) center no-repeat, var(--white);
  }
  select > option {
      background: var(--white);
      margin: -1px 0px;
      border: 0pxe;
      outline: none;
  }
  select > option:hover {
      background: red;
  }
  
  /************************
  CARACTERÍSTICAS DOS PRODUTOS
  *************************/
  dl.specs {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin: 0;
      padding: 0;	
  }
  dl.specs dt,
  dl.specs dd {
      width: calc(100% - 32px);
      margin: 0;
      padding: 0 0 2px 32px;
      position: relative;
      font-size: 10px;
      font-weight: 400;
      color: var(--specs-font);
      text-transform: uppercase;
  }
  dl.specs.specs-2 dt,
  dl.specs.specs-2 dd,
  dl.specs.specs-5 dt,
  dl.specs.specs-5 dd {
      width: calc(50% - 32px);
  }
  dl.specs dd {
      padding: 0 0 0 32px;
      font-size: 13px;
      text-transform: none;
      margin-bottom: 30px;
  }
  dl.specs dt:before {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      top: 0px;
      left: 0px;
      z-index: 2;
  }
  dl.specs dt.code:before {
      background: url("images/icons-specs-code.svg") top left no-repeat;
  }
  dl.specs dt.dimensions:before {
      background: url("images/icons-specs-dimensions.svg") top left no-repeat;
  }
  dl.specs dt.surface:before {
      background: url("images/icons-specs-surface--natural.svg") top left no-repeat;
  }
  dl.specs dt.surface.surface-natural:before {
      background: url("images/icons-specs-surface--natural.svg") top left no-repeat;
  }
  dl.specs dt.surface.surface-polido:before {
      background: url("images/icons-specs-surface--polido.svg") top left no-repeat;
  }
  dl.specs dt.surface.surface-externo:before {
      background: url("images/icons-specs-surface--externo.svg") top left no-repeat;
  }
  dl.specs dt.surface.surface-polido:before {
      background: url("images/icons-specs-surface--polido.svg") top left no-repeat;
  }
  dl.specs dt.reproduction:before {
      background: url("images/icons-specs-reproduction-argila.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-argila:before {
      background: url("images/icons-specs-reproduction-argila.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-madeira:before {
      background: url("images/icons-specs-reproduction-madeira.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-marmore:before {
      background: url("images/icons-specs-reproduction-marmore.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-metal:before {
      background: url("images/icons-specs-reproduction-metal.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-pedra:before {
      background: url("images/icons-specs-reproduction-pedra.svg") top left no-repeat;
  }
  dl.specs dt.reproduction-sintetico:before {
      background: url("images/icons-specs-reproduction-sintetico.svg") top left no-repeat;
  }
  dl.specs dt.border:before {
      background: url("images/icons-specs-border--bold.svg") top left no-repeat;
  }
  dl.specs dt.border.border-ret:before {
      background: url("images/icons-specs-border--ret.svg") top left no-repeat;
  }
  dl.specs dt.faces:before {
      background: url("images/icons-specs-faces.svg") top left no-repeat;
  }
  dl.specs dt.variation:after {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      top: 2px;
      left: 2px;
      background: url("images/icons-specs-variation-grid.svg") top left no-repeat;
  }
  dl.specs dt.variation:before {
      background: url("images/icons-specs-variation--v2.svg") top left no-repeat;
  }
  dl.specs dt.variation.variation-v2:before {
      background: url("images/icons-specs-variation--v2.svg") top left no-repeat;
  }
  dl.specs dt.variation.variation-v3:before {
      background: url("images/icons-specs-variation--v3.svg") top left no-repeat;
  }
  dl.specs dt.variation.variation-v4:before {
      background: url("images/icons-specs-variation--v4.svg") top left no-repeat;
  }
  dl.specs.specs-2 dt:nth-of-type(1) {
      order: 1;
  }
  dl.specs.specs-2 dd:nth-of-type(1) {
      order: 3;
  }
  dl.specs.specs-2 dt:nth-of-type(2) {
      order: 2;
  }
  dl.specs.specs-2 dd:nth-of-type(2) {
      order: 4;
  }
  dl.specs.specs-5 dt:nth-of-type(1) {
      width: calc(100% - 32px);
      order: 1;
  }
  dl.specs.specs-5 dd:nth-of-type(1) {
      width: calc(100% - 32px);
      order: 2;
  }
  dl.specs.specs-5 dt:nth-of-type(2) {
      order: 3;
  }
  dl.specs.specs-5 dd:nth-of-type(2) {
      order: 5;
  }
  dl.specs.specs-5 dt:nth-of-type(3) {
      order: 4;
  }
  dl.specs.specs-5 dd:nth-of-type(3) {
      order: 6;
  }
  dl.specs.specs-5 dt:nth-of-type(4) {
      order: 7;
  }
  dl.specs.specs-5 dd:nth-of-type(4) {
      order: 9;
  }
  dl.specs.specs-5 dt:nth-of-type(5) {
      order: 8;
  }
  dl.specs.specs-5 dd:nth-of-type(5) {
      order: 10;
  }
  dl.specs-inline {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin: 0;
      padding: 0;	
  }
  dl.specs-inline dt {
      width: 50%;
      height: 15px;
      margin: 0;
      padding: 15px 0;
      border-bottom: var(--footer-border);
      position: relative;
      color: var(--gray-font);
      font-size: 15px;
      font-weight: 400;
  }
  dl.specs-inline dd {
      width: calc(50% - 30px);
      height: 15px;
      margin: 0;
      padding: 15px;
      position: relative;
      border-bottom: var(--footer-border);
      color: var(--blue-font);
      font-size: 15px;
      font-weight: 500;
  }
  dl.specs-inline dd.dimensions,
  dl.specs-inline dd.surface,
  dl.specs-inline dd.border,
  dl.specs-inline dd.variation,
  dl.specs-inline dd.reproduction,
  dl.specs-inline dd.faces {
      width: calc(50% - 46px - 15px);
      padding-left: 46px;
  }
  dl.specs-inline dt:before {
      content: "";
      display: block;
      width: 0px;
      height: 21px;
      position: absolute;
      bottom: 0px;
      right: 0px;
      z-index: 1;
      border-right: var(--footer-border);
  }
  dl.specs-inline dd.dimensions:before {
      background: url("images/icons-specs-dimensions.svg") top left no-repeat;
  }
  dl.specs-inline dd.surface:before {
      background: url("images/icons-specs-surface--natural.svg") top left no-repeat;
  }
  dl.specs-inline dd.surface.surface-natural:before {
      background: url("images/icons-specs-surface--natural.svg") top left no-repeat;
  }
  dl.specs-inline dd.surface.surface-polido:before {
      background: url("images/icons-specs-surface--polido.svg") top left no-repeat;
  }
  dl.specs-inline dd.surface.surface-externo:before {
      background: url("images/icons-specs-surface--externo.svg") top left no-repeat;
  }
  dl.specs-inline dd.surface.surface-polido:before {
      background: url("images/icons-specs-surface--polido.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction:before {
      background: url("images/icons-specs-reproduction-argila.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-argila:before {
      background: url("images/icons-specs-reproduction-argila.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-madeira:before {
      background: url("images/icons-specs-reproduction-madeira.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-marmore:before {
      background: url("images/icons-specs-reproduction-marmore.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-metal:before {
      background: url("images/icons-specs-reproduction-metal.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-pedra:before {
      background: url("images/icons-specs-reproduction-pedra.svg") top left no-repeat;
  }
  dl.specs-inline dd.reproduction-sintetico:before {
      background: url("images/icons-specs-reproduction-sintetico.svg") top left no-repeat;
  }
  dl.specs-inline dd.border:before {
      background: url("images/icons-specs-border--bold.svg") top left no-repeat;
  }
  dl.specs-inline dd.border.border-ret:before {
      background: url("images/icons-specs-border--ret.svg") top left no-repeat;
  }
  dl.specs-inline dd.faces:before {
      background: url("images/icons-specs-faces.svg") top left no-repeat;
  }
  dl.specs-inline dd.dimensions:before,
  dl.specs-inline dd.surface:before,
  dl.specs-inline dd.border:before,
  dl.specs-inline dd.variation:before,
  dl.specs-inline dd.reproduction:before,
  dl.specs-inline dd.faces:before {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
  }
  dl.specs-inline dd.variation:after {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      top: 12px;
      left: 12px;
      background: url("images/icons-specs-variation-grid.svg") top left no-repeat;
  }
  dl.specs-inline dd.variation:before {
      background: url("images/icons-specs-variation--v2.svg") top left no-repeat;
  }
  dl.specs-inline dd.variation.variation-v2:before {
      background: url("images/icons-specs-variation--v2.svg") top left no-repeat;
  }
  dl.specs-inline dd.variation.variation-v3:before {
      background: url("images/icons-specs-variation--v3.svg") top left no-repeat;
  }
  dl.specs-inline dd.variation.variation-v4:before {
      background: url("images/icons-specs-variation--v4.svg") top left no-repeat;
  }
  /************************
  ITENS ESPECÍFICOS
  *************************/
  .label-new {
      display: inline-block;
      padding: 0 4px;
      border-radius: 1px;
      font-size: 10px;
      font-weight: 400;
      line-height: 15px;
      text-align: center;
      text-transform: uppercase;
      color: var(--white);
      background: var(--label-new-background);
      
  }
  .social-links {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
  }
  .social-links > li {
      margin-left: 20px;
  }
  .social-links > li:nth-of-type(1) {
      margin-left: 0px;
  }
  .social-links > li.divider {
      width: 10px;
      height: 2px;
      display: block;
      position: relative;
      background: var(--mainNav-menu-background);
      margin: 0 -10px 0 10px;
  }
  a.social-link {
      display: block;
  }
  a.social-link svg {
      height: 30px;
  }
  a.social-link--bookmark svg {
      width: 14px;
  }
  a.social-link--bookmark svg use {
      fill: var(--gray-icons);
  }
  a.social-link--facebook svg {
      width: 30px;
  }
  a.social-link--facebook svg use {
      fill: var(--social-facebook);
  }
  a.social-link--instagram svg {
      width: 21px;
  }
  a.social-link--instagram svg use {
      fill: var(--social-instagram);
  }
  a.social-link--pinterest svg {
      width: 16px;
  }
  a.social-link--pinterest svg use {
      fill: var(--social-pinterest);
  }
  a.social-link--twitter svg {
      width: 20px;
      height: 17px;
  }
  a.social-link--twitter svg use {
      fill: var(--social-twitter);
  }
  
  /************************
  TOOLTIP
  *************************/
  .tooltip--container {
      width: 15px;
      height: 15px;
      display: block;
      position: absolute;
  }
  .specs dd .tooltip--container {
      left: 174px;
      top: -6px;
  }
  .tooltip--container > svg {
      width: 15px;
      height: 15px;
  }
  .tooltip--container > svg use {
      fill: var(--specs-icon);
  }
  .tooltip--container:hover {
      cursor: pointer;
  }
  .tooltip--container .tooltip {
      width: 150px;
      height: 80px;
      padding: 20px;
      background: var(--white);
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
      position: absolute;
      z-index: 2;
      display: none;
  }
  .tooltip--container:hover .tooltip {
      display: block;
  }
  .tooltip--container .tooltip.tooltip-up {
      top: -134px;
      left: -87px;
  }
  .tooltip--container .tooltip:before {
      width: 0px;
      height: 0px;
      display: block;
      content: "";
      position: absolute;
      bottom: -12px;
      left: 85px;
      border-style: solid;
      border-width: 12px 10px 0 10px;
      z-index: 2;
      border-color: #fff transparent transparent transparent;
  }
  .tooltip--container .tooltip:after {
      width: 0px;
      height: 0px;
      display: block;
      content: "";
      position: absolute;
      bottom: -13px;
      left: 85px;
      border-style: solid;
      border-width: 12px 10px 0 10px;
      border-color: #dedede transparent transparent transparent;
  }
  .tooltip--container .tooltip .title {
      margin-bottom: 8px;
      display: block;
      font-size: 15px;
      font-weight: 500;
      color: var(--blue-font);
      text-align: center;
  }
  .tooltip--container .tooltip p {
      margin: 0px;
      font-size: 13px;
      font-weight: 400;
      line-height: 16px;
      color: var(--gray-font);
      text-align: center;
  }
  /************************
  ITENS DE PRODUTO
  *************************/
  .item-product {
      width: 288px;
      margin: 0;
      display: block;
      border: var(--item-border);
      background: var(--white);
      -webkit-box-shadow: var(--item-shadow);
         -moz-box-shadow: var(--item-shadow);
              box-shadow: var(--item-shadow);
      text-decoration: none;
  }
  .item-product:hover .info {
      background: var(--footer-background);
  }
  .item-product figure {
      width: 250px;
      height: 250px;
      display: block;
      margin: 0;
      padding: 20px;
      border-bottom: var(--item-border);
  }
  .item-product figure img {
      max-width: 250px;
      object-fit: contain;
      object-position: 50% 50%;
      -webkit-box-shadow: var(--item-img-shadow);
         -moz-box-shadow: var(--item-img-shadow);
              box-shadow: var(--item-img-shadow);
  }
  .item-product .name {
      height: 15px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      padding: 13px 20px 12px;
      border-bottom: var(--item-border);
      vertical-align: middle;
      line-height: 15px;
  }
  .item-product .name:before {
      content: "";
      width: 100%;
      height: 4px;
      display: block;
      position: absolute;
      top: 0px;
      left: 0px;
      background: var(--footer-background);
  }
  .item-product .name > label {
      margin-right: 3px;
  }
  .item-product dl.specs {
      position: relative;
      padding: 13px 0px 12px;
  }
  .item-product dl.specs:before {
      content: "";
      width: 1px;
      height: 100%;
      display: block;
      border-left: var(--item-border);
      position: absolute;
      top: 0px;
      left: 50%;
  }
  .item-product dl.specs dt,
  .item-product dl.specs dd {
      width: calc(50% - 52px);
      padding-left: 52px;
      margin-bottom: 0px;
  }
  .item-product dl.specs dt:before {
      left: 20px;
  }
  
  /************************
  ITENS DE AMBIENTE (ARCHTRENDS)
  *************************/
  .item-ambient {
      width: 288px;
      height: 35px;
      border: var(--item-border);
      border-radius: 4px;
      background: var(--white);
      box-shadow: 0px 1px 1px 0px rgba(117, 117, 117, 0.1);
  }
  .item-ambient figure {
      height: 250px;
      padding: 0;
      margin: 0;
  }
  .item-ambient .title {
      height: 46px;
      padding: 0 16px;
      border-bottom: var(--item-border);
  }
  .item-ambient .title a {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      text-decoration: none;
      vertical-align: baseline;
  }
  .item-ambient .title a svg {
      width: 5px;
      height: 9px;
      margin-right: 6px;
  }
  .item-ambient .author {
      width: calc(100% - 34px);
      height: 63px;
      padding: 0px 17px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
  }
  .item-ambient .author .author-info {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      text-decoration: none;
  }
  .item-ambient .author .author-info .avatar {
      width: 28px;
      height: 28px;
      margin-right: 10px;
      padding: 2px;
      border-radius: 50%;
      border: var(--item-avatar-border);
  }
  .item-ambient .author .author-info .info .name {
      display: block;
      margin-bottom: 4px;
      font-size: 13px;
      font-weight: 400;
      color: var(--gray-font);
      text-decoration: none;
  }
  .item-ambient .author .author-info .info .likes {
      display: block;
      font-size: 10px;
      font-weight: 400;
      color: var(--gray-font);
      text-decoration: none;
  }
  .item-ambient .author .favorite {
      display: block;
  }
  .item-ambient .author .favorite use {
      fill: var(--item-favorite);
  }
  .item-ambient .author .favorite svg {
      width: 20px;
      height: 17px;
  }
  
  /************************
   PINS
  *************************/
  .pin {
      width: 32px;
      height: 38px;
      display: block;
      position: relative;
  }
  .pin:before {
      width: 32px;
      display: block;
      color: var(--white);
      position: absolute;
      top: 9px;
      left: 0px;
      font-size: 10px;
      font-weight: 400;
      text-align: center;
      z-index: 2;
      text-transform: uppercase;
  }
  .pin.pin-portobelloshop:before {
      content: "p";
  }
  .pin.pin-multimarcas:before {
      content: "m";
  }
  .pin.pin-construtoras:before {
      content: "c";
  }
  .pin.pin-exportacao:before {
      content: "e";
  }
  .pin.pin-representante:before {
      content: "r";
  }
  .pin svg {
      width: 32px;
      height: 38px;
  }
  .pin.pin-portobelloshop {
      fill: var(--pin-portobelloshop);
  }
  .pin.pin-multimarcas {
      fill: var(--pin-multimarcas);
  }
  .pin.pin-construtoras {
      fill: var(--pin-construtoras);
  }
  .pin.pin-exportacao {
      fill: var(--pin-exportacao);
  }
  .pin.pin-representante {
      fill: var(--pin-exportacao);
  }
  
  /************************
   TABS
  *************************/
  .tabs {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin: 0 0 -1px 0;
      padding: 0;
      list-style: none;
  }
  .tabs-full li {
      flex-grow: 1;
  }
  .tabs-full li a {
      text-align: center;
  }
  .tabs li {
      margin: 0;
      padding: 0;
  }
  .tabs li a {
      display: block;
      position: relative;
      margin: 0 0 0 -1px;
      padding: 16px 28px;
      text-decoration: none;
      border: var(--mainNav-background);
      background: var(--tabs-background);
  }
  .tabs li a.selected {
      border-bottom: var(--white-border);
      background: var(--white);
  }
  .tabs li a.selected:before {
      width: 100%;
      height: 2px;
      position: absolute;
      display: block;
      top: -1px;
      left: 0px;
      content: "";
      background: var(--blue-icons);
  }
  .tabs li a span {
      display: block;
      color: var(--blue-font);
      font-size: 15px;
      font-weight: 500;
      line-height: 14px;
  }
  .tabs-content-container {
      border: var(--mainNav-background);
  }
  .tabs-content-container .tabs-content {
      padding: 30px 30px 34px;
      display: none;
      background: var(--white);
  }
  .tabs-content-container .tabs-content.selected {
      display: block;
  }
  .subtabs {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin: -28px -30px 0;
      padding: 0 30px;
      list-style: none;
      border-bottom: var(--mainNav-background);
  }
  .subtabs li {
      margin: 0;
      padding: 0;
  }
  .subtabs li a {
      display: block;
      position: relative;
      margin: 0 0 0 -1px;
      padding: 28px 12px 18px;
      text-decoration: none;
  }
  .subtabs li a.selected:before {
      width: 100%;
      height: 1px;
      position: absolute;
      display: block;
      bottom: -1px;
      left: 0px;
      content: "";
      background: var(--blue-icons);
  }
  .subtabs-content {
      padding: 30px 0 0;
      display: none;
  }
  .subtabs-content.selected {
      display: block;
  }
  .subtabs-content .specs dd {
      margin-bottom: 30px;
  }
  .subtabs-content .specs dd .tooltip--container {
      left: 174px;
      top: -6px;
  }
  /************************
   MENU DE AÇÃO
  *************************/
  .action-menu {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin: 0;
      padding: 0;
      list-style: none;
  }
  .action-menu li {
      margin: 0;
      padding: 0;
  }
  .action-menu li a {
      display: block;
      position: relative;
      padding: 8px 11px;
      background: var(--expander-background);
      border: var(--mainNav-background);
  }
  .action-menu li a svg {
      width: 16px;
      height: 16px;
  }
  .action-menu li a svg use {
      fill: var(--gray-icons);
  }
  .action-menu li:first-of-type a {
      border-top-left-radius: 2px;
      border-bottom-left-radius: 2px;
  }
  .action-menu li:last-of-type a {
      border-top-right-radius: 2px;
      border-bottom-right-radius: 2px;
  }
  /************************
   LISTA DE CORES DE REJUNTE
  *************************/
  ul.colors-list {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  ul.colors-list li {
      margin: 0 0 10px;
      padding: 7px 0 8px 40px;
      position: relative;
      color: var(--gray-font);
      font-size: 13px;
      font-weight: 400;
  }
  ul.colors-list li:before {
      width: 30px;
      height: 30px;
      content: "";
      position: absolute;
      top: 0px;
      left: 0px;
      background: red;
  }
  