.pcOnly{
  display: block;
}

.mobileOnly{
  display: none;
}

.popForm {
    width: 70%;
    /* height:34vw; */
    border-radius: 4px;
    position: fixed;
    top: 7%;
    /* 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: #fff;
    display: none;
}

.slimSlingShot {
  position: relative;
  width: 50%;
  padding: 1%;
  float: left;
}

.theForm{
  position: relative;
  width: 50%;
  float: right;
  padding: 1% 3% ;
}

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

.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: 2%;    
  font-size: 120%;
  cursor: pointer;
}


.popLogo{
  width: 22%;
  margin-left: 14%;
  /* margin-right: 5%; */
  /* margin-bottom: 2%; */
  float: left;
}

.popLogo1{	
	width:48%;
  margin-left: 47%; 
  margin-top: -21%;
  float: left;	
}


.popForm h3{
    padding:2% 0;
    margin: 0;
    font-size: 100%;
    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: none;
    text-align: center;
    border-bottom: 1px solid #c1c1c1;    
    direction: ltr;
    padding: 3%;
    font-size: 110%;
    color: #000000;
    outline: none;
    background: #ffffff;
}


.popForm .input_box_special{
  width: 100%;
  float: left;
  margin-right: 5%;
  font-size: 120%; 
  padding: 3%;   
}

.popForm .input_box_special input[name='phone'] {
  width: 50%;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  /* border-radius: 4px; */
  direction: ltr;
  text-align: center;
  padding: 1.8%;
  font-size: 90%;
  color: #000000;
  outline: none;
  background: #ffffff;
  float: right;

}

.popForm .input_box_special select{
  width: 47%;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  /* border-radius: 4px; */
  direction: ltr;
  text-align: left;
  padding: 1.6%;
  font-size: 90%;
  color: #000000;
  outline: none;
  background: #ffffff;
  float: left;
}

.popForm .input_box_special select option{
  font-size: 65%;
}


.popForm .input_box_special label{
  position: absolute;
  top: 38%;
  left: 8%;
  color: #808080;
  transition: .5s;
  pointer-events: none;
  font-size: 85%;
  font-weight: 300;
}

.popForm .container {
	display: block;
	position: relative;
	padding:0% 0 1% 8%;
  color: #000;
	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: ltr;
	text-align: left;
}

/* 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;
	left: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: #D2232A;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.popForm .errorPopBox{
  position: absolute;
  bottom: 0; 
  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: 90%;
    border-radius: 0;      
    padding: 5% 2%;
    background-color: #fff;    
    display: none;      
  }

  .popLogo{
    float: left;
    margin: 0 5% 0 0;
    width: 30%;
    position: static;
  }

  .popLogo1{
    /* float: right; */
    margin: 3% 0 4% 0;
    width: 59%;
    position: static;

  }

  .slimSlingShot {
    float: none;
    width: 90%;
    margin-left: 5%;
    padding: 0 0;
  }

  .theForm {    
    top: 3%;
    float: none;
    width: 100%;
    background-color: #fff;    
    float: none;
    
  }

  .poppImage{
    display: none;
  }

  .popDescription{
    width: 95%;
    
  }

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

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

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

.popForm .input_box_special select{
  font-size: 80%;
  padding: 0% 1.5%;
  margin-top: 3.2%;
  border-radius: 0%;
}
    
  .popForm .container {
    padding:0 0 8% 8%;
    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{    
    top: -3%;
    right: -1%;
    font-size: 180%;
    
  }

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