.ticket-overview {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 5px;
  padding-left: 0;
  position: relative;
}

.selected {
  background-color: rgba(229, 229, 229, 0.5);
  border-radius: 30px;
}

.ticket-container {
  background-color: white;
  border: 1px solid #dee2e6;
  height: 100%;
}

.ticket-container h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.header_ticket_container {
  border-bottom: 2px solid #3e6883;
  padding: 20px 30px 15px 30px;
  
}

.change_ticket {
  padding: 25px 15px;
}

.change_ticket {
  gap: 15px;
  display: flex;
  flex-direction: column;
  max-height: 225px;
  overflow: auto;
}

.number_name_container {
  display: flex;
  gap: 20px;
  padding-left: 40px;
  height: 34px;
  width: 100%;
  justify-content: space-between;
  padding-right: 10px;
  border-radius: 30px;
}

.ticket-number {
  text-align: center;
  vertical-align: sub;
  display: inline;
  margin-top: auto;
  margin-bottom: auto;
  color: #3E6883;
}

.ticket-number-bg {
  background-color: #D9D9D9;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  position: absolute;
  left: 6px;
  top: 4px;
}

.ticket-content {
  color: #747474;
  display: inline;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.ticket-status {
  font-size: 10px;
  border-radius: 30px;
  padding: 2px 17px;
  text-align: center;
  display: inline;
  margin-top: auto;
  margin-bottom: auto;
}

.status-termine {
  background-color: rgba(103, 177, 115, 0.3);
  color: #67B173;
}

.status-en-cours {
  background-color: rgba(255, 200, 75, 0.3);
  color: rgba(255, 200, 75, 0.9);
}

@media screen and (max-width: 780px) {

  #date-expiration-content {
    margin-top: 25px;
  }

  .number_name_container {
    gap: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-radius: 30px;
    padding: 0;
    flex-direction: column;
    margin-top: 0px;
    padding-left: 10px;
    height: 100%;
  }

  .ticket-number-bg {
    position: inherit;
    margin-left: auto;
    margin-right: inherit;
    margin-top: 0px;
    left: 10px;
  }

  .change_ticket {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .ticket-status {
    width: 100px;
    margin-left: 0;
    margin-right: auto;
  }

  .ticket-content{
    font-size: 1rem;
  }
}

@media screen and (max-width: 400px) { 
  .change_ticket {
    padding-bottom: 75px;
  }
  .change_ticket {
    padding: 0px 5px 65px 15px;
  }
}