.formBoxHWrapper {
    width: 100%;
    background-image: linear-gradient(green, yellow);
    padding:2% 0;
    margin: 3% 0;
}

.formBoxH {
    width: 75%;
    margin: 0 auto;
}

.formBoxH h3 {
    color: #ffffff;
    text-align: right;
    font-size: 130%;
    direction: rtl;
    padding-bottom: 1%;
}

.formBoxH h3 br {
    display: none;
}

.formBoxH .input_box {
    width: 28.3%;
    float: right;
    margin-left: 1%;
}

.formBoxH .input_box_submit {
    width: 12%;
    float: left;
}

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

.formBoxH input[type='submit'] {
    width: 100%;
    direction: rtl;
    padding: 9% 0;
    font-size: 100%;
    font-weight: bold;
    color: #ffffff;
    outline: none;
    border: none;
    background: #ee4c47;
    border-radius: 4px;
}


.formBoxH .container {
	display: block;
	position: relative;
	padding:0% 3% 0 0;
	margin-top: 1%;
	cursor: pointer;
	font-size: 0.8em;
	-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 */
.formBoxH .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

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

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

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

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

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

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

.formBoxH .formBox h3 {
    text-align: center;
    font-size: 500%;
    padding-bottom: 1%;
}

.formBoxH .formBox h3 br {
    display: block;
}

.formBoxH .input_box {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-top:1%;
}

.formBoxH .input_box_submit {
    width: 100%;
    float: none;
    margin-top:1%;
}

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

.formBoxH input[type='submit'] {
    padding: 2.5% 4%;
    font-size: 500%;
}

.formBoxH input[type=checkbox] {
    visibility: hidden;
    display: block;
}

.formBoxH .squaredFour {
    width: 20px;
    height: 20px;
    position: relative;
    float: right;
    border: 1px solid #c1c1c1;
    margin: 1% 0 0 0;
}

.formBoxH .squaredFour label {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #ffffff;
}

.formBoxH .squaredFour label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 11px;
    height: 4px;
    background: transparent;
    top: -2px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border: 3px solid #2e2a2b;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.formBoxH .squaredFour label:hover::after {
    opacity: 0.5;
}

.formBoxH .squaredFour input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.formBoxH .checkboxSubject {
    font-size: 400%;
      margin: 1% 2% 0 0;
}

    
}