
.popForm {
    width: 20%;
    height:20vw;
    border-radius: 4px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -9999px;
    right: -9999px;
    margin: auto;
    z-index: 8888;
    padding: 2%;
    box-sizing: content-box;
    background-image: linear-gradient(green, yellow);
    display: none;
}

#popExitImage{
    float:right;
    width: 20%;
}


.popForm h3{
    padding:4% 0;
    font-size: 120%;
    direction: rtl;
    text-align: center;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
}
.popInput_box {
    width: 100%;
    margin-top: 2%;
}

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

.popForm .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 */
.popForm .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.popForm .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 */
.popForm .container:hover input ~ .checkmark {
  background-color: #ccc;
}

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

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

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

/* Style the checkmark/indicator */
.popForm .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);
}

.popForm input[type='submit'] {
    width: 40%;
    border: none;
    direction: rtl;
    padding: 3%;
    font-size: 100%;
    color: #fff;
    outline: none;
    background: #e2560c;
    border-radius: 4px;
    font-weight: bold;
}

/* Mobile Form*/

@media only screen and (max-width: 480px) {
    
.popForm {
    width: 80%;
    height:85vw;
    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%;
}
}