/*form styles*/
#msform {
  width: 500px;
  margin: 50px auto auto;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #msform {
    max-width: 95%;
    margin: 127px auto auto;
  }

  .fs-title {
    font-size: 19px;
  }

  .fs-subtitle {
    font-size: 17px;
  }

  #progressbar li {
    font-size: 13px;
  }

  #progressbar li:before {
    font-size: 14px;
  }

  .secondaryTitle{
    font-size: 14px !important;
  }

}

ul#progressbar {
  width: 500px;
  max-width: 100%;
  margin: 15px auto;
  text-align: center;
}
#msform fieldset {
  background: #f3f3f3;
  border-radius: 0.3rem;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform .action-button {
  width: 100px;
  background: #27ae60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27ae60;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  width: 20%;
  float: left;
  position: relative;
  font-weight: bold;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #27ae60;
  color: white;
}
.comprovante{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 50px 0px;
  max-width: 95%;
}


.comprovante > span:not(.secondaryTitleBold){
  color: #f54917 !important;
  margin: 10px 0;

}

.comprovante > small{
  text-align: center !important;
}

.secondaryTitle{
  color: #f1c471 !important;
  font-size: 14px !important;
  text-align: center !important;
}

.secondaryTitleBold{
  color: orange !important;
  font-size: 13px !important;
  text-align: center !important;
  margin-top: 15px;
}

.comprovante > img:first-child{
  margin-bottom: 10px;
}

.cupom > small.sm {
  font-size: 12px;
  font-weight: bold;
  padding: 5px;
}

.cupom > button.btsm {
  width: 70%;
  font-size: 10px;
  padding: 5px;
  margin-top: 0;
}

button.end{
  align-self: center;
  font-size: 12px;
  color:#6e6e6e;
  text-decoration: underline;
}
.images{
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.images>img {
  max-width: 33%;
  height: auto;
}

.images>img.ingresse {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  
}

.cupons {
  display: flex;
  padding-top: 10px;
  text-align: center;
}

.cupom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cupom_img {
  background-color: #fff;
  padding: 10px;
  width: 70%;
  margin-top: 2px;
}

.cupom_img img {
  width: 110%;
}


.cupom_img_prod {
  margin-top: 2px;
}

.produtos {
  width: 115%;
  justify-content: space-between;
}

.produtos > div > small {
  max-width: 140px;
}

.prod_venda {
  padding: 10px 0;
  color: #a5a5a5 !important;
  font-weight: normal !important;
}
.suborange{
  color: #f54917 !important;
  font-size: 14px !important;
  text-align: center !important;
  font-weight: 600;
}

.subo_prod {
  display: inline-block;
  font-size: 13px !important;
  margin: 10px 0 20px !important;
}

.actionButton{
  padding: 0px;
  margin: 0px;
  min-width: 16px;
  color:  #f54917;
  background-color: #eeeeee;
}
.cortesia{
  display: none !important;
}

.waitToShow {
  display: none !important;
}

/** SPINNER CREATION **/

.loader {
  position: relative;
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, .3);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* Carousel de Colecionáveis */
.slideshow-container {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.mySlides {
  display: none;
  height: 250px;
}

.mySlides img {
  height: 100%;
  width: auto
}

.slides {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: calc(50% + 20px);
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.1);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: #f54917 !important;
}

.active {
  opacity: 1;
}

/* Fim Carousel de Colecionáveis */