
form {
    width: 70%;
	margin: 6% auto 0;
}

.popInput_box {
    width: 100%;
    margin-top: 1.5%;
}

input[type='text'] {
    width: 100%;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    direction: rtl;
    padding: 2.5%;
    font-size: 100%;
    color: #000000;
    outline: none;
    background: #ffffff;
}

.container {
	display: block;
	position: relative;
	padding:0% 8% 5% 0;
	margin-top: 2%;
	cursor: pointer;
	font-size: 0.7em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	direction: rtl;
	text-align: right;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	height: 1vw;
	width: 1vw;
	background-color: #fff;
	right:0;
	top:0;
	border:0.1vw solid #c1c1c1;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 25%;
	top: 1%;
	width: 25%;
	height: 60%;
	border: solid #000;
	border-width: 0 0.15vw 0.15vw 0;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

input[type='submit'] {
    width: 40%;
    border: none;
    direction: rtl;
    padding: 3%;
    font-size: 100%;
    color: #fff;
    outline: none;
    background: #0b0b95;
    border-radius: 4px;
    font-weight: bold;
	margin: 0 auto;
	display: block;
}

.errorBox{
  /* position: absolute; */
  top:3%;
  width:80%;
  direction: rtl;
  text-align: center;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 6px;
  z-index: 9999;
  /* padding:7% 0; */
  color: red;
  font-weight: bold;
  border:2px solid red;
  display: none;
}

/* Mobile Form*/

@media only screen and (max-width: 480px) {

.popForm {
    width: 80%;
    height:95vw;
    border-radius: 0;
    position: fixed;
    padding:5%
}

.popForm h3{
    font-size: 450%;
}

.popForm input[type='text'] {
    font-size: 450%;
}

.popForm .container {
	padding:0% 8% 8% 0;
	margin-top: 3%;
	font-size: 4em;
}

/* Create a custom checkbox */
.popForm .checkmark {
	height: 5vw;
	width: 5vw;
	background-color: #fff;
	border:0.1vw solid #c1c1c1;
}

/* On mouse-over, add a grey background color */
.popForm .container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.popForm .container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Style the checkmark/indicator */
.popForm .container .checkmark:after {
  border-width: 0 0.8vw 0.8vw 0;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
	transform: rotate(30deg);
}

.popForm input[type='submit'] {
    font-size: 450%;
}

.errorBox{
  /* padding:14% 0; */
  font-size: 90%;
  /* top: 2%; */
}

}