/* Logotipo de marca de producto: BOC */
/* Permite cargar logotipos de cadena hotelera, aerolinea, naviera... */
.product_brand {
  text-align: center;
  height: 350px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ccc;
  background-size: cover;
  @media (min-width: 1024px) and (max-width: 1366px) {
    height: 350px;
  }
  @media (min-width: $grid-float-breakpoint) and (orientation: portrait) {
    height: 280px;
  }
  @media (min-width: 1024px) and (orientation: landscape) {
    height: 330px;
  }
}

.cont_bg_total .product_brand {
  margin-top: 0
}

.product_brand span.centering {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.product_brand .centered {
  display: inline-block;
  vertical-align: middle;
}

.product_brand span.brand_name {
  display: block;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 20px;
  white-space: normal;
}

.product_brand a {
  text-decoration: none;
}

.product_brand span.brand_text_link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  display: inline-block;
  border-radius: $border-radius-large;
  margin-top: 20px;
  white-space: normal;
  &:hover, &:focus {
    color: #fff;
    border: 1px solid #fff;
  }
}

@media (min-width: $grid-float-breakpoint) and (max-width: 1024px) {
  .centered {
    .product_brand span.brand_text_link {
      width: 90%;
    }
  }
}

@media (min-width: 1200px) {
  .cont_bg_total .product_brand img {
    width: auto;
    height: auto
  }
}
