.woocommerce div.product form.cart .variations .label {
	display: flex;
	justify-content: space-between;
	line-height: 1.5em !important;
	align-items: center;
}
.infoButton {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.infoButton img {
	height: 20px !important;
	transition: ease-in-out 0.1s;
	filter: invert(62%) sepia(100%) saturate(200%) hue-rotate(140deg) brightness(60%) contrast(100%) opacity(100%);
	margin: 12px;
	margin-left: 4px;
}
.infoButton:hover img {
	height: 22px !important;
	margin: 11px !important;
	margin-left: 3px !important;
}
.infoButton p {
  margin: 6px !important;
  text-align: right;
}

.questionPopout {
  position: fixed;
  z-index: 99999;
  top: 0;
  display: none;
}
.qpOverlay {
  background: #000000bf;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qpBackground {
  background: #fff;
  border-radius: 16px;
}
.qpClose {
  display: flex;
  justify-content: right;
}
.qpClose img {
  position: absolute;
  height: 20px !important;
  margin: 10px -36px;
  cursor: pointer;
}
.qpMainContainer {
  height: 80vh;
  width: 80vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow: clip;
}
.wrapQPTable {
	overflow: scroll;
}
.qpTable {
	display: flex;
	align-items: center;
	margin: 78px 16px;
	flex-direction: column;
}
.qpTable .firstTD {
	border-top: 1px solid #8bc4d0;
}
.qptArrowL, .qptArrowR {
	transition: ease-in-out 0.1s;
	display: none;
}
.FAQButton {
	width: 100%;
	font-size: 20px;
	padding: 10px 16px 10px 10px;
	border-bottom: 1px solid #8bc4d0;
	cursor: pointer;
	transition: ease-in-out 0.1s;
	display: flex;
	align-items: center;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}
.FAQButton:hover {
  background-color: #f0f0f0;
}
.FAQButton.FAQActive {
	background-color: #004c5d;
	color: #fff;
}
.qpInfo {
	overflow: scroll;
	padding: 38px 30px;
	--mask: linear-gradient(to bottom, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 92%, rgba(0,0,0, 0) 99%, rgba(0,0,0, 0) 0 ) 50% 20% / 100% 100% repeat-x;
	-webkit-mask: var(--mask);
	mask: var(--mask);
}
.qpInfo h2 {
	text-align: center;
	margin: 0px 0px 30px;
	font-size: 36px;
	text-transform: uppercase;
}
.qpInfo p {
	margin-bottom: 40px !important;
	font-size: 20px;
}
.qpiDisabled {
	display: none;
}
.qpImage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 16px;
	max-width: 700px;
	box-shadow: -3px 5px 20px -1px #999;
	justify-items: center;
	overflow: hidden;
	max-height: 420px;
}
.qpImage img {
	max-width: 400px;
	border-radius: 16px 0px 0px 16px;
}
.qpiDesc {
	padding: 0px 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
}
.qpiDesc p {
	margin-bottom: 0px !important;
}

.ibInfIco {
}

.discount-notice {
	padding: 4px !important;
}

@media only screen and (max-width: 900px){
	.qpImage {
		grid-template-columns: auto;
		grid-template-rows: 1fr 100%;
	}
	.qpImage img {
		border-radius: 16px 16px 0px 1px;
		max-width: 500px !important;
		overflow: hidden;
		max-height: 72vw;
		max-height: 450px;
	}
	.qpiDesc {
		padding: 10px 16px;
	}
	.qpInfo h2 {
		font-size: 32px;
	}
	.qpImage {
		max-width: 450px !important;
		margin: auto;
	}
}
@media only screen and (max-width: 700px){
	.qpClose img {
		height: 18px !important;
		margin: 14px 16px;
		filter: invert(50%) sepia(100%) saturate(200%) hue-rotate(140deg) brightness(62%) contrast(200%) opacity(100%);
		position: absolute;
		z-index: 10;
	}
	.qpTable {
		margin: 30px 20px 10px;
		overflow-x: scroll;
		justify-content: center;
	}
	.qpMainContainer {
  	  grid-template-columns: auto;
	  grid-template-rows: 1.2fr 3fr;
	  width: 96vw;
	}
	.FAQButton {
		font-size: 18px;
		min-width: 160px;
		margin: 0px 10px;
		border-top: 1px solid #8bc4d0;
		text-align: center;
		width: auto;
	}
	.wrapQPTable {
	  overflow: scroll;
	  box-shadow: -3px 5px 20px -8px #999;
	  border-radius: 16px 16px 0px 0px;
	  display: flex;
	  justify-content: center;
	}
	.qptArrowL {
		left: 26px;
	}
	.qptArrowR {
		right: 26px;
	}
	.qptArrowL, .qptArrowR {
		position: absolute;
		display: flex;
		align-items: center;
		opacity: 100%;
	}
	.qptGradient {
		background: linear-gradient(90deg, rgb(255, 255, 255) 40%, rgba(42,123,137,0) 100%);
		height: 18vh;
		width: 40px;
	}
	.qptGradientR {
		background: linear-gradient(270deg, rgb(255, 255, 255) 40%, rgba(42,123,137,0) 100%);
		height: 18vh;
		width: 40px;
	}
	.qptArrowL img {
		height: 28px !important;
		margin: 0 -20px;
	}
	.qptArrowR img {
		position: absolute;
		height: 28px !important;
		margin: 0 -10px;
	}
	.qptWrap {
	  display: grid;
	  grid-template-columns: repeat(100,1fr);
	  margin: 0px auto;
	}
	.qpInfo p {
		margin-bottom: 40px;
		font-size: 18px;
	}
	.qpImage img {
		max-height: 84vw;
	}
}