#logo a img {
  width: 152px;
}

.btn-color {
  color: #000;
}

.display-ticket .item {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #FFD700;
  margin-top: 30px;
  padding-bottom: 20px;
}
.display-ticket .item .mid h2 {
  color: #FFD700;
}
.display-ticket .item .btn_ticket {
  width: 15%;
  height: 60px;
  border: 1px solid rgba(204, 204, 204, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5ms ease-in;
}
.display-ticket .item .btn_ticket a {
  text-align: center;
  color: antiquewhite;
  font-weight: 800;
  margin: 100px auto;
}
.display-ticket .item .btn_ticket button {
  background-color: #000;
  border: none;
  color: antiquewhite;
  font-weight: 800;
}
.display-ticket .item .btn_ticket:hover {
  background-color: #FFD700;
  border-color: #000;
}
.display-ticket .item .btn_ticket:hover a {
  color: #000;
  background-color: #FFD700;
  border-color: #000;
}
.display-ticket .item .btn_ticket:hover button {
  color: #000;
  background-color: #FFD700;
  border-color: #000;
}
.display-ticket .item .titre-ticket {
  width: 50%;
}
.display-ticket .item .titre-ticket h2 {
  text-align: left;
}
.display-ticket .item .titre-ticket .ticket_description {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
}
.display-ticket .item .titre-ticket .ticket_description li {
  border: none;
  text-align: center;
  text-align: left;
}
.display-ticket .item .titre-ticket .ticket_description li strong {
  text-align: left;
}
.display-ticket .item .ticket-prix {
  width: 20%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .display-ticket .item {
    flex-direction: column;
  }
  .display-ticket .item .btn_ticket {
    width: 25%;
    margin-bottom: 20px;
  }
  .display-ticket .item .btn_ticket a {
    text-align: center;
    color: antiquewhite;
    font-weight: 800;
    margin: 100px auto;
  }
  .display-ticket .item .titre-ticket {
    width: 100%;
    text-align: center;
    margin: 20px 0 10px 0;
  }
  .display-ticket .item .titre-ticket h2 {
    text-align: center;
  }
  .display-ticket .item .titre-ticket .ticket_description {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .display-ticket .item .titre-ticket .ticket_description li {
    text-align: left;
  }
  .display-ticket .item .titre-ticket .ticket_description li strong {
    text-align: left;
  }
}
@media only screen and (max-width: 770px) {
  .display-ticket .item {
    flex-direction: column;
  }
  .display-ticket .item .btn_ticket {
    width: 50%;
    margin-bottom: 20px;
  }
  .display-ticket .item .btn_ticket a {
    text-align: center;
    color: antiquewhite;
    font-weight: 800;
    margin: 100px auto;
  }
  .display-ticket .item .titre-ticket {
    width: 90%;
    text-align: center;
    margin: 20px 0 10px 0;
  }
  .display-ticket .item .titre-ticket h2 {
    text-align: center;
  }
  .display-ticket .item .titre-ticket .ticket_description {
    display: flex;
    justify-content: flex-start;
    align-items: start;
  }
}
._container {
  background: black;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  position: absolute;
  top: 15%;
}
._container .content #home h2 {
  text-align: center;
}
._container .content .field-groupe {
  display: flex;
  flex-direction: column;
}
._container .content .field-groupe label {
  margin-top: 20px;
}
._container .content .field-groupe input {
  padding: 0 10px 0 10px;
  height: 50px;
}
._container .content .field-groupe button {
  height: 50px;
  background-color: #FFD700;
  color: black;
  border: none;
  transition: 0.5 ease-in-out;
}
._container .content .field-groupe button:hover {
  border: 1px solid #FFD700;
  background-color: black;
  color: white;
}
._container nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
._container .tab {
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex: 1;
}
._container .tab.active {
  background: #FFD700;
  color: black;
}
._container .content {
  display: none;
  padding: 0px 20px 20px 20px;
}
._container .content:not(.hidden) {
  display: block;
}
._container .control-group {
  margin-bottom: 15px;
}

@media only screen and (max-width: 989px) {
  .tab {
    height: 50px;
  }
  .tab.active {
    background: #FFD700;
    color: black;
  }
  #home {
    margin-top: 70px;
  }
  #performance {
    margin-top: 70px;
  }
  #logo a img {
    margin-top: -25px;
    width: 100px;
  }
}
@media only screen and (max-width: 460px) {
  #home h2 {
    font-size: 2rem;
  }
  #performance {
    margin-top: 70px;
  }
  #performance h2 {
    font-size: 2rem;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay h2 {
  color: #FFD700;
  font-size: 2.1rem;
}
.modal-overlay .modal-content {
  background: #000;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 500px;
}
.modal-overlay .modal-content ol {
  margin-top: 10px;
  text-align: left;
}
.modal-overlay button {
  padding: 10px 20px;
  background-color: #000;
  color: #FFD700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.modal-overlay button:hover {
  color: red;
}
.modal-overlay .btn_ticket {
  width: 50%;
  height: 60px;
  border: 1px solid rgba(204, 204, 204, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5ms ease-in;
}
.modal-overlay .btn_ticket a {
  text-align: center;
  color: antiquewhite;
  font-weight: 800;
  margin: 100px auto;
}
.modal-overlay .btn_ticket button {
  background-color: #000;
  border: none;
  color: antiquewhite;
  font-weight: 800;
}
.modal-overlay .btn_ticket:hover {
  background-color: #FFD700;
  border-color: #000;
}
.modal-overlay .btn_ticket:hover a {
  color: #000;
  background-color: #FFD700;
  border-color: #000;
}
.modal-overlay .btn_ticket:hover button {
  color: #000;
  background-color: #FFD700;
  border-color: #000;
}
.modal-overlay hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 530px) {
  .modal-overlay .modal-content {
    width: 90%;
  }
}/*# sourceMappingURL=styles.css.map */