@charset "UTF-8";
/* Utilisé pour gérer des pbs d'affichages ponctuels sur les mobiles très petits mais ne constitue pas un layout complet */
/*
 * Cette doc est en anglais mais elle est très claire, voir : https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 * Note : l'ordre est important, voir : https://css-tricks.com/using-flexbox/
 *
 * flexFlow = flexDirection flexWrap : row nowrap
 */
/** Note : flex = flexGrow flexShrink flexBasis */
#ticket-summary {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 14;
  background: #DB2B22;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 939px) {
  #ticket-summary {
    display: block;
  }
}
#ticket-summary > div.incomplete > div.controls .content button.submit {
  background-color: #E1E2F1;
  color: #939393;
}
#ticket-summary > div > div {
  gap: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-flex-align: center;
  -moz-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 10px 10px 10px;
}
#ticket-summary > div > div:first-child {
  padding-top: 10px;
}
#ticket-summary > div > div.type-combine button, #ticket-summary > div > div.controls button {
  background: #FFFFFF;
  border-radius: 5px;
  color: #DB2B22;
  flex-basis: 0;
  flex-grow: 1;
  font-weight: bold;
  padding: 10px;
  white-space: nowrap;
}
#ticket-summary > div > div.type-combine button i, #ticket-summary > div > div.controls button i {
  margin-left: 8px;
}
#ticket-summary > div > div.type-combine button:not(:last-child), #ticket-summary > div > div.controls button:not(:last-child) {
  margin-right: 5px;
}
#ticket-summary > div > div.type-combine button:not(.selected), #ticket-summary > div > div.controls button:not(.selected) {
  background: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}
#ticket-summary > div > div.type-combine {
  align-items: center;
  justify-content: space-between;
}
#ticket-summary > div > div.controls .content {
  gap: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-flex-align: center;
  -moz-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}
#ticket-summary > div > div.controls .content button.reset {
  color: #000000;
}
#ticket-summary > div > div.controls .content button.submit {
  background-color: #DB2B22;
  color: #FFFFFF;
}
#ticket-summary > div > div.ordre-selector {
  gap: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  color: #FFFFFF;
  font-weight: bold;
  padding-top: 0;
}
#ticket-summary > div > div.ordre-selector.ordre_bases > span:not(.selected), #ticket-summary > div > div.ordre-selector.ordre_tous > span:not(.selected) {
  opacity: 0.5;
}
#ticket-summary > div > div.ordre-selector > span {
  cursor: pointer;
  white-space: nowrap;
}
#ticket-summary > div > div.ordre-selector > span:not(:last-child) {
  margin-right: 15px;
}
#ticket-summary > div > div.ordre-selector > span i {
  color: #FFFFFF;
  font-size: 20px;
  margin-right: 3px;
  vertical-align: middle;
}
#ticket-summary > div > div.infos .panic {
  background: transparent;
}
#ticket-summary > div > div.infos .selected-paris {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  white-space: nowrap;
}
#ticket-summary > div > div.infos .selected-paris i {
  display: inline-block;
}
#ticket-summary > div > div.infos .selected-paris i:not(:last-child) {
  margin-right: 10px;
}
#ticket-summary > div > div.infos .libelle {
  -webkit-box-orient: vertical;
  color: #FFFFFF;
  display: -webkit-box;
  font-size: 16px;
  font-weight: bold;
  -webkit-line-clamp: 2;
  margin: 0 10px;
  overflow: hidden;
  word-break: break-word;
}
#ticket-summary > div > div.infos .valid-state {
  color: #FFFFFF;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 40px;
}
#ticket-summary > div.vertical .infos .libelle {
  flex-grow: 1;
  text-align: center;
}

#modal #modal-content.bet-change-modal button {
  margin: 2px 5px;
}

/*# sourceMappingURL=ticketHelper.css.map*/