



.re-box {
    overflow: hidden;
    background-color: #ffffff;
}


.formbox {
	position: fixed;
  z-index: 1000;
	top: 0px;
	right: 30px;
	padding-top: 30px;
	background-color: #ffffff;
	transform: translateY(-100%);
	transition: all 0.4s ease;
}

.formbox > .close-box {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 30px;
	height: 30px;
	background-image: url('../img/icon/close-line.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
}

.formbox.formshow {
	transform: translateY(0);
}

#form-container {
	cursor: pointer;
	color: #FFF;
	/* z-index: 100; */
	position: relative;
	padding-top: 10px;
	/* margin: 0 auto; */
	
	overflow: hidden;
	border-radius: 0%;
	/* width: 60%; */
	height: 300px !important;
	max-width: 500px;
	text-align: center;
  }
 
 #form-content {
	width: 100%;
	text-align: left;
  }

  #form-content form {
	color: #FFF;
	width: 100%;
	height: 100%;
	padding: 0 20px 10px 20px;
	margin-bottom: 0px;
	box-sizing: border-box;
	text-align: left;
  }
  

	#form-head {
		position: absolute;
		z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 100%;
    color: rgb(255, 255, 255);
    background-color: #8c8582;
    text-align: center;
    -webkit-transform: translateY(-200%);
	  transform: translateY(-200%);
		transition: all 0.3s 0s;
	}
  #form-head h1 {
    font-family: 'Noto Sans KR', sans-serif;
	padding: 0;
	margin: 0px;
	}

	#form-head p {
        font-family: 'Noto Sans KR', sans-serif;
		padding: 0;
		margin: 0;
		}

  #form-head .pre {
	display: flex;
  }
  #form-head .post {
	display: none;
  }

  
  .form-submitted #form-head {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	transition: all 0.8s 0.7s;
	}
  .form-submitted #form-head .pre {
	display: none;
  }
  .form-submitted #form-head .post {
	display: flex;
	}
	
	#form-head > .close {
		width: 100px;
		height: 30px;
		margin-top: 20px;
		background-color: #494543;
		border: none;
		outline: none;
		color: #ffffff;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	#form-head > .close:hover {
		background-color: #726e6c;
	}

  #form-content > form {
	  position: relative;
	  display: flex;
	  width: 100%;
	  flex-wrap: wrap;
  }
  
  .input {
	background: rgba(0, 0, 0, 0.2);
	display: block;
	height: 40px;
	width: 100%;
	margin: 10px 0;
	padding: 0 10px;
	border-width: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
	transform: translateX(0);
  }

  .input.name {
	background: rgba(0, 0, 0, 0.2);
	display: block;
	font-size: 13px;
	font-weight: 300;
	width: 49%;
	margin: 10px 2% 0 0;
	padding: 0 10px;
	border-width: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }

  .input.company {
	background: rgba(0, 0, 0, 0.2);
	display: block;
	font-size: 13px;
	font-weight: 300;
	width: 49%;
	margin: 10px 0;
	padding: 0 10px;
	border-width: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }

  .input.telephone {
	background: rgba(0, 0, 0, 0.2);
	display: block;
	font-size: 13px;
	font-weight: 300;
	width: 49%;
	margin: 0 2% 0 0;
	border-width: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }
  
  .input.email {
	background: rgba(0, 0, 0, 0.2);
	display: block;
	font-size: 13px;
	font-weight: 300;
	width: 49%;
	margin: 0 0;
	padding: 0 10px;
	border-width: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
			transform: translateX(0);
	}
 
  ::-webkit-input-placeholder {
	/* Safari, Chrome and Opera */
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  /* Firefox 18- */
  :-moz-placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  /* Firefox 19+ */
  ::-moz-placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  /* IE 10+ */
  :-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  /* Edge */
  ::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  /* Default */
  :placeholder-shown {
	color: rgba(255, 255, 255, 0.8);
	font-size: 90%;
  }
  
  input, select, textarea {
	color: #FFF;
  }
	
	.input.message {
		resize: none;
		height: 100px;
		padding: 10px;
		font-size: 13px;
		font-weight: 300;
		font-family: 'Noto Sans KR';
		margin: 10px 0 0 0;
		}

  
  .input.submit {
	background-color: rgb(34, 34, 34);
	color: #fcfcfc;
	font-size: 14px;
	height: 50px;
	transition: all 0.1s;

	cursor: pointer;
  }
  .input.submit:active {
		background-color: rgb(75, 75, 75);
  }
  
  .input.form-error {
	-webkit-animation: error 0.8s ease;
		animation: error 0.8s ease;
		background: rgba(189, 22, 22, 0.5);
  }
  
  select option {
	background: #f72f4e;
	color: #FFF;
	border: none;
	box-shadow: none;
	outline: none;
  }
  
  select option:disabled {
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	font-size: 90%;
  }
  
  .input {
		transition: all 0.5s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
		transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
		transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  
  .form-submitted .input,
  .form-submitted .captcha-title {
	-webkit-transform: translateX(150%);
			transform: translateX(150%);
	opacity: 0;
	transition: all 0.5s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
	transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
	transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .form-submitted .input:nth-child(1) {
	transition-delay: 0.1s;
  }
  .form-submitted .input:nth-child(2) {
	transition-delay: 0.2s;
  }
  .form-submitted .input:nth-child(3) {
	transition-delay: 0.3s;
  }
  .form-submitted .input:nth-child(4) {
	transition-delay: 0.4s;
  }
  .form-submitted .input:nth-child(5) {
	transition-delay: 0.5s;
  }
  .form-submitted .captcha-title {
	transition-delay: 0.4s;
  }
  
  input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #FFF inset;
  }


  @-webkit-keyframes error {
	0%, 100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
	  -webkit-transform: translateX(-6px);
			  transform: translateX(-6px);
	}
	20%, 40%, 60%, 80% {
	  -webkit-transform: translateX(6px);
			  transform: translateX(6px);
	}
  }
  @keyframes error {
	0%, 100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
	  -webkit-transform: translateX(-6px);
			  transform: translateX(-6px);
	}
	20%, 40%, 60%, 80% {
	  -webkit-transform: translateX(6px);
			  transform: translateX(6px);
	}
  }
  @-webkit-keyframes wiggle {
	0%, 100% {
	  -webkit-transform: rotate(-15deg);
			  transform: rotate(-15deg);
	}
	50% {
	  -webkit-transform: rotate(15deg);
			  transform: rotate(15deg);
	}
  }
  @keyframes wiggle {
	0%, 100% {
	  -webkit-transform: rotate(-15deg);
			  transform: rotate(-15deg);
	}
	50% {
	  -webkit-transform: rotate(15deg);
			  transform: rotate(15deg);
	}
  }
  