.voucher-form-block_wrapper {
	max-width: 500px;
	margin: 0 auto;
	
}

.voucher-form-block_wrapper,
.voucher-form-block_wrapper h1,
.voucher-form-block_wrapper h2,
.voucher-form-block_wrapper h3 {
	color: var(--ast-global-color-8) !important;
}

.voucher-form-block_wrapper form label {
	font-weight: bold;
}

.voucher-form-block_input-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.voucher-form-block_input-group input {
	width: 100%;
	border-radius: 5px;
}

.voucher-form-block input[type=submit]{
	background-color: var(--ast-global-color-0);
	margin: 10px auto 0;
	display: block;
}

.voucher-form-block .error-message{
	margin-top: -10px;
	margin-bottom: 10px;
	color: red;
	text-align: center;
	font-weight: bold;
}

.voucher-form-block .success-message{
	text-align: center;
	font-weight: bold;
}



/* PICKER */
.voucher-form-block_wrapper,
#winner-picker, #winner-picker-reroll {
	background-color: var(--ast-global-color-4);
	padding: 20px;
	border-radius: 10px;
}


  #winner-picker, #winner-picker-reroll {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 400px;
	width: 600px;
	margin: 0 auto;
	max-width: calc(100vw - 40px)
  }
  
  .doors {
	display: flex;
  }
  
  .door {
	background: #fff;
	width: 500px;
	height: 110px;
	overflow: hidden;
	border-radius: 5px;
	margin: 5px;
	max-width: calc(100vw - 60px)
  }
  
  .boxes {
	/* transform: translateY(0); */
	transition: transform 1s ease-in-out;
  }
  
  .box {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
  }
  

  
  .info {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
  }

  
  .result-popup{
	position: fixed;
	background-color: rgba(20, 20, 20, .4);
	top:0;
	left:0;
	bottom:0;
	right:0;
	width: 100vw;
	height: 100vh;
	display: flex;
	z-index: 9999999999;
	opacity: 0%;
}

.result-popup:not(.show){
	display: none;
}

.result-popup_inner{
	background-color: var(--ast-global-color-4);
	padding: 50px;
	display: flex;
	flex-direction: column;
	margin: auto;
	border-radius: 10px;
	text-align: center;
  }
