/* CSS Document */

.tab_contain {
	text-align: center;
}
#checkoutBtn {
  background-color: darkred;
  color: #ffffff;
  border: none;
  padding: 11.5px 20px 10px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  display: none;
  border-radius: 0;
  width: auto !important;
}

#checkoutBtn:hover {
  opacity: 0.8;
}

/* Make circles that indicate the steps of the form: */
.step.active::after {
  content: none;
}
.plusincbtn {
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: aliceblue;
	font-weight: bold;
	background-color: #212121;
	cursor: pointer;
	}
.minusincbtn {
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: aliceblue;
	font-weight: bold;
	background-color: #212121;
	cursor: pointer;
	}
.inc-contain {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	}
.description {
	font-size: 9pt;
	}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
	
/*Accordion CSS*/
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel_container {
  padding: 8px 0px 10px;
  overflow: show;
  text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}