.text-centered{
	text-align: center !important;
}

.my-card {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 2px; /* 5px rounded corners */
}

.bg-grey {
    background: #fff !important;
}
.card {
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
    margin-bottom: 1rem;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding-bottom:10px;
}

.card-title {
    text-align: center;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0;
    color: #00529b;
    text-transform: uppercase;
}

.card-header:first-child {
    border-radius: calc(.25rem - 0) calc(.25rem - 0) 0 0;
}
.card-header:first-child {
    border-radius: .25rem .25rem 0 0;
}
.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,.125);
    padding: .75rem 1.25rem;
    position: relative;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.pagamento-details{
	text-transform: uppercase;
	font-size:14px;	
	color: #00529b;
}

.info-details{
	padding-bottom:10px;
	width:100%;
}

#credit-cards, .receipt-content{
	margin-top:30px;
	background-color: #fff;
    padding: 10px;
    border-radius: 7px;
    text-align: center;
}

.loading-section{
	text-align: center;
	width: 100%;
	padding:20px;
	color:#000;
}

.form-group {
    margin-bottom: 0.5rem !important;
}

video {
  width: 100%;
  height: auto;
}

/* ################################# steps wizard ############################### */
 .steps-container {
      width: 100% !important;
      height: 100px;
   	 margin-top: 20px;
  }
  .steps-progressbar {
	    margin: 0;
	  padding: 0;
      counter-reset: step !important;
  }
  .steps-progressbar li {
      list-style-type: none !important;
      width: 50% !important;
      float: left !important;
      font-size: 13px !important;
      position: relative !important;
      text-align: center !important;
      text-transform: uppercase !important;
      color: #7d7d7d !important;
  }
  .steps-progressbar li:before {
      width: 34px !important;
      height: 34px !important;
      content: counter(step) !important;
      counter-increment: step !important;
      line-height: 31px !important;
      border: 2px solid #7d7d7d !important;
      display: block !important;
      text-align: center !important;
      margin: 0 auto 10px auto !important;
      border-radius: 50% !important;
      background-color: white !important;
  }
  .steps-progressbar li:after {
      width: 90% !important;
      height: 2px !important;
      content: '' !important;
      position: absolute !important;
      background-color: #7d7d7d !important;
      top: 15px !important;
      left: -45% !important;
      /*z-index: -1 !important;*/
  }
  .steps-progressbar li:first-child:after {
      content: none !important;
  }
  .steps-progressbar li.active {
      color: green !important;
  }
  .steps-progressbar li.active:before {
      border-color: #55b776 !important;
  }
  .steps-progressbar li.active + li:after {
      background-color: #55b776 !important;
  }
  
  
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ########### COLAPSIBLE ############### */

.accordion {
	background: #f1f2f5;
	color: #007acc;
	border-radius: 4px;
	box-shadow: 0 1px 4px -4px rgb(0 0 0 / 60%);
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	margin-top:5px;
}

.accordion > button::first-of-type{
	margin-top:0px !important;
}
.accordion::after {
    content: "+";
    float:right;
}
.active::after {
    transform: rotate(315deg);
    transition:0s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  border-radius: 0px;
  
}