.tui-card.offer-ticket {
  @extend %flexbox-column;
  width: 100%;
  border-bottom: 0;
  margin: 0;
  padding: $margin-normal $margin-normal $margin-quadruple;

  header {
    @extend %flexbox-column;

    .header-top {
      @extend %flexbox-row;
      @include font-size(14);
    }

    .offer-text {
      text-transform: uppercase;
      font-weight: bold;
      padding-right: $margin-normal;
    }

    .date {
      text-transform: uppercase;
      font-weight: bold;
      color: $color-red-400;
    }

    .date-text {
      font-style: italic;
    }

    h3 {
      @include font-size(24);
      max-height: initial;
      color: $text-color;

      &:hover {
        color: inherit;
      }
    }
  }
}

.offer-ticket-container {
  position: relative;

  h3 {
    @include font-size(18);
  }

  .tui-card {
    .icon-svg-superlativ {
      padding: 0;
      display: flex;
      align-items: center;
    }
  }

  .icon-superlativ {
    height: 36px;
    width: 36px;
    flex-shrink: 0;
  }

  .offer-desc {
    @include font-size(14);
  }

  .offer-text {
    font-weight: bold;
    padding-right: $margin-half;
  }

  .date {
    font-weight: bold;
    color: $color-red-400;
  }

  .date-text {
    font-style: italic;
  }

  p:last-child {
    margin-bottom: 0;
  }

  .dotted-container {
    position: absolute;
    height: 9px;
    width: calc(100% - #{$margin-enterprise});
    left: 10px;
    top: -4px;
    background: $color-white;
  }

  .dotted {
    margin-top: $margin-quarter;
    height: 2px;
    background-image: linear-gradient(to right, transparent 50%, $color-beige-100 50%);
    background-size: 8px $margin-normal;
  }

  .description {
    @include font-size(14);
  }

  .offer-ticket {
    background: none;
    padding: 0;
    z-index: auto;
    border-radius: 0;
    display: flex;

    header {
      margin-bottom: $margin-half;
    }

    h3 :empty {
      display: block;
    }

    .text {
      margin-left: $margin-normal;
      color: $color-blue-500;
    }
  }
}

@include breakpoint(sm) {
  .offer-ticket-container {
    .offer-desc {
      margin-left: 56px;
      font-size: inherit;
    }

    .description {
      @include font-size(18);
    }

    h3 {
      @include font-size(34);
    }

    .offer-ticket {
      .text {
        margin-left: $margin-enterprise;
      }

      header {
        margin-bottom: 0;
      }
    }
  }
}

@include breakpoint(md) {
  .offer-ticket-container {
    .icon-superlativ {
      height: 48px;
      width: 48px;

      .pictogram {
        height: 24px;
        width: 24px;
      }
    }
  }

  .tui-card.offer-ticket {
    z-index: 1;

    header {
      h3 {
        @include font-size(36);
      }
    }
  }
}

@include breakpoint(lg) {
  .offer-ticket-container {
    .offer-desc {
      margin-left: 0;
      flex: 40%;
    }
  }

  .tui-card.offer-ticket {
    min-height: auto;
    flex-direction: row;
    justify-content: space-between;

    header {
      border: 0;
      margin-right: $margin-quadruple;
      flex: 60%;
      border-right: 1px solid $color-tui-grey-25;
      padding-right: $margin-double;
    }

    .description {
      padding-left: 0;
    }
  }
}
