/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}
#ticket .remodal {
  overflow: hidden !important;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 99999999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  z-index: 9999999999999;
  position: relative;

  outline: none;
  overflow: hidden;

  text-size-adjust: 100%;
}

.remodal-overlay{
  z-index: 9999999;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal__table {
  width: 100%;
  margin-top: 15px;
}
.remodal__table th,
.remodal__table td {
  border-bottom: #fff 5px solid;
}
.remodal__table th {
  background: #0a3586;
  vertical-align: middle;
  font-size: 1.3rem;
  width: 130px;
  color:#fff
}
@media only screen and (max-width: 768px) {
  .remodal__table th {
    font-size: 1.2rem;
    width: 25%;
  }
}

.enquete {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (max-width: 768px){
  .enquete {
    flex-wrap:wrap;
  }
}
.enquete__item {
  color: #0a3586;
  background: rgba(10,53,134,0.1);
  padding: 15px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.2s ease;
  margin: 0 0 0 10px;
  width: 136px;
}
.enquete__item:nth-child(n+5){
  margin-top: 3px;
}
@media only screen and (max-width: 768px) {
  .enquete__item:nth-child(n+3){
    margin-top: 3px;
  }
}
.enquete__item:hover {
  background: #f4f4f4;
}
@media only screen and (max-width: 768px) {
  .enquete__item {
    width: auto;
    padding: 12px 2px;
    min-width: 44%;
    margin:0 0 0 5px;
  }
}