.form {
    position: relative;
    height: 100vh;
	//background:url(../images/startquizbg.png) no-repeat;
	background:url(../images/contactbgTEMP.png) no-repeat;
	background-size: cover;
    background-position: center 76%;
    overflow: hidden;
    z-index: 3;

    &.active {
    	z-index: 0;
    }


    @media (max-height: 700px) and (min-width: 769px) {
	  //  position: relative;
	  //  height: auto !important;
      //  padding-bottom: 8%;
    }


	@include breakpoint(mobile) {
	    background:url(../images/contactbgmobileTEMP.png) no-repeat;
	    background-size: cover;
	}

	@include breakpoint(iphone) {

	}

}



.contactTitles {
    position: relative;
    z-index: 1;
	font-size: 17px;
	font-family: proxima_nova_altextrabold;

	@include breakpoint(mobile) {
	    font-size: 11px;
	}

	&.two {

		@include breakpoint(mobile) {
		}
	}
}

.checkboxwrap {
    font-size: 10px;
    font-family: proxima_nova_altextrabold;
    line-height: 12px;
    padding-top: 12px;
}

.checkboxtext {
    position: relative;
    left: 39px;
    top: 4px;
}

.textboxtextunder {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-family: proxima_nova_altextrabold;
    line-height: 12px;
    left: 42px;
    width: 91%;
   	top: 3px;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
  z-index: 1;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 0px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 8px; left: 4px;
  font-size: 30px;
  line-height: 0.8;
  color: #fff !important;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
label:hover:before {

}

.contactinput {
    position: relative;
    z-index: 1;
	width: 100%;
    margin-bottom: 10px;
	border: 1px solid #fff;
	color: #5f5f5f;
	font-size: 16px;
	font-family: proxima_nova_alt_rgregular;
	font-style: italic;
    padding: 7px 10px;
    background: #fff;
    border: 0;
	appearance: none;
    border-radius: 0;
    margin: 12px 0;

    &.contactawrrow {
	    background: url(../images/arrowdown.png) 96% 56% no-repeat #fff;
	    background-size: 20px;

		@include breakpoint(mobile) {
		    background-size: 20px;
		}



    }

	@include breakpoint(mobile) {
	    font-size: 10px;
        margin-bottom: 0;
	}

	@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
    margin: 5px 0;
	}

}


::-webkit-input-placeholder {
	color: #5f5f5f;
}


select.contactinput {
	border-radius: 0;
	color: #5f5f5f;
	box-shadow: none;

	appearance: none;
    border-radius: 0;
}

.resume {
	@include breakpoint(mobile) {
	    display: none;
	}
}

.contactinnerwrap {
	position: relative;
    padding-top: 12px;

	.item {
		float: left;
		width: 50%;
		position: relative;

		&.first {
			@include breakpoint(mobile) {
			    display: none;
			}
		}

		&.two {
			text-align: right;
			@include breakpoint(mobile) {
			    text-align: left;
			}

		}

	    .uploadwrap {
		    position: relative;
		    z-index: 1;
		    overflow: hidden;
		    background: #fff;
	   	 	width: 94%;
		 	padding: 7px 4px;
    		font-style: italic;

			@include breakpoint(mobile) {
			    display: none;
			}

			span {
			    width: 100%;
			    background: #fff;
			    color: #5f5f5f;
			    font-size: 16px;
			    font-family: proxima_nova_alt_rgregular;
			    padding: 7px 10px;

				@include breakpoint(mobile) {
				     font-size: 10px;
				}
			}
	    }

	    img {
	    	cursor: pointer;
    	    width: 80%;
		    position: relative;
		    z-index: 1;

	    }
	}
}


#fileToUpload {
	font-style: italic;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);

}
