.pcOnly{
  display: block;
}

.mobileOnly{
  display: none;
}

.popForm {
    width: 30%;
    /* height:34vw; */
    border-radius: 4px;
    position: fixed;
    top: 10%;
    /* bottom: 0; */
    left: -9999px;
    right: -9999px;
    margin: auto;
    z-index: 8888;
    padding: 2%;
    /* box-sizing: content-box; */
    /* background-image: linear-gradient(#e2cc00,#4faeff); */
    background-color: #1a3768;
    display: none;
}




.theForm{
  position: relative;
  width: 100%;
  /* float: left; */
}

.popDescription{
  position: relative;
  width: 30%;
  float: left;
  margin-left: 3%;
  margin-right: 3%;
  direction: rtl;
  
  
}

.popDescription h6{
  color: #ffffff;
  font-size: 170%;
  text-align: center;
  margin-bottom: 2%;
}

.popDescription p{
  font-size: 145%;
  color: #fff;
  /* border-left: 2px solid white;
  border-right: 2px solid white; */
  padding: 0 3%;
  margin-top: 8%;
}

.poppImage{
  position: relative;
  width: 30%;
  float: left;
  margin-left: 3%; 
  margin-top: 5%; 
}

.poppImage img{
  border-radius: 31px;
}

#popExitImage{
  position: absolute;
  top: 2%;
  right: -5%;    
  width: 4%;
}

.popLogo1{	
	width:47%;
  margin-left: 20%;  
  margin-bottom: 3%;	
}

.popLogo{
  width: 15%;
  margin-left: 4%;
  margin-right: 5%;
  margin-bottom: 2%;
  float: right;
}

.popForm h3{
    padding:2% 0;
    margin: 0;
    font-size: 120%;
    direction: rtl;
    text-align: center;
    color: #fff;
    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;
  color: #fff;
	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: 38%;
	height: 70%;
	border: solid #000;
	border-width: 0 0.20vw 0.20vw 0;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

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

.popForm .errorPopBox{
  position: absolute;
  bottom: -4%; 
  width: 64%;          
  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:0 0;
  color: red;
  font-weight: bold;
  font-size: 100%;
  border:2px solid red;
  display: none;
}

/* Mobile Form*/

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

  .pcOnly{
    display: none;
  }

  .mobileOnly{
    display: block;
  }
    
  .popForm {  
      
      width: 70%;
      /* height: 109vw; */
      border-radius: 0;      
      padding: 5%;
      /* display: block; */
      /* overflow-y: scroll; */
      
  }

  .popLogo{
    float: right;
    margin-right: 5%;
  }

  .popLogo1{
    float: right;
    margin-bottom: 3%;
  }

  .theForm{
    /* position: absolute; */
    top: 3%;
    float: none;
    width: 100%;
    /* margin-bottom: 13%; */
    
  }

  .poppImage{
    display: none;
  }

  .popDescription{
    width: 95%;
    
  }

  .popDescription p{
    border: none;
    margin-top: 2%;
  }

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

  .popForm input[type='text'] {
      font-size: 150%;
  }
    
  .popForm .container {
    padding:0% 8% 8% 0;
    margin-top: 3%;
    font-size: 1em;
  }

  /* Create a custom checkbox */
  .popForm .checkmark {
    height: 4vw;
    width: 4vw;
    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: 150%;
      margin-bottom: 4%;
  }

  #popExitImage{
    position: fixed;
    width: 6%;
    top: 10%;
    right: 2%;
  }

  .popForm .errorPopBox{
    /* display: block; */
    font-size: 140%;
    width: 75%;
  }
}