/* BLOQUE NUEVO CUADRO +-1 DIA */
.changeday_block {
  display: flex;
  width: 100%;
  margin-bottom: 0;
  .day_block {
    width: 34%;
    border-radius: $border-radius-large;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid $colorBordes;
    text-decoration: none;
    color: $brand-copy-light;
    &:hover {
      color: $interactive-color;
    }
    .previous_day, .next_day {
      color: $brand-copy-light;
      text-decoration: none;
      display:block;
      &:hover {
        text-decoration: none;
        color: $interactive-color;
      }
    }
  }
  .day_block.active {
    color: $interactive-color;
    font-weight: 400;
    border: 1px solid $interactive-color;
  }
  .labels_block {
    text-decoration: none;
    height: 50px;
    .price {
      font-size: $font-size-base;
      @include medium-weight;
      .symbol {
        font-size: 0.85em;
        @include medium-weight;
      }
      &.eur, &.usd, &.gbp {
        font-size: 18px;
      }
    }
  }
  .day_label {
    margin-top: 4px;
  }
  .day_label, .price_block {
    text-align: center;
    font-weight: 400;
  }
  .price_label {
    display: flex;
    justify-content: center;
    font-size: $font-size-base;
    @include medium-weight;
  }
  .other_day, .current_day {
    margin-right: 5px;
  }
  .other_day:last-child {
    margin-right: 0;
  }
  .subtit_day {
    font-size: $font-size-small;
  }
  .subtit_price {
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
  }

  .current_day.day_block {
    .day_label {
      margin-top: 0;
      padding: 15px 0;
      .subtit_day {
        font-size: $font-size-large;
        @include medium-weight;
      }
    }
  }
}

/* FIN BLOQUE -NUEVO CUADRO +-1 DIA */
