.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.row {
  overflow: hidden;
}
.ticket * {
  font-family: arial;
  font-size: 16px;
}
.ticket {
  display: flex;
  flex-wrap: wrap;
  max-width: 70%;
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  border: 1px solid black;
  overflow: hidden;
}

.ticket .header {
  display: table-cell;
  position: relative;
  text-align: center;
  border-right: 2px dashed #000;
}
.ticket .header h2 {
  font-weight: 500;
  color: gray;
}
.even-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ticket-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 10px 30px;
}

.ticket-cont a {
  display: block;
  text-decoration: none;
  width: 100px;
  height: 30px;
  background-color: #d8dde0;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
.ticket-cont h1 {
  font-weight: 600;
  font-size: 22px;
}
.ticket-cont a {
  background-color: #ff5d94;
  color: white !important;
}

@media screen and (max-width: 1024px) {
  .ticket {
    flex-direction: column;
  }
  .date {
    border-right: none;
    border-bottom: 2px dashed #000;
  }
}
