/*@group basic*/
i {
  font-style: normal;
  /*used for *pend*/
}

form {
  font: 13px/18px;
  margin-bottom: 18px;
  clear: both;
}

form * {
  margin: 0;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 5px;
  vertical-align: text-top;
}

select,
select[multiple],
select[size],
textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"] {
  display: inherit;
  height: 35px;
  padding: 4px;
  margin: 3px 0;
  width: 98%;
  vertical-align: middle;
  font-size: 17px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  height: auto;
  min-height: 100px;
  width: 100%;
  margin-top: 5px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select[multiple],
select[size],
input[type="date"] {
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(82, 168, 236, 0.1);
  transition: all linear 0.2s;
  width: 96%;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus {
  border-color: #52a8ec;
  outline: 0;
  box-shadow: inset 0 1px 4px rgba(82, 168, 236, 0.2);
}

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

select {
  width: 98%;
      border: 1px solid #cccccc;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  select {
    border: 1px solid #888;
    color: #444;
  }
}
select,
input[type="file"] {
  height: 40px;
  line-height: 40px;
  font-size: 17px;
}

select[multiple],
select[size] {
  height: auto;
}
input:-moz-placeholder {
  color: #999999;
}
:-ms-input-placeholder {
  color: #999999;
}
::-webkit-input-placeholder {
  color: #999999;
}

form .message {
  color: #999999;
  font-size: 12px;
  clear: both;
  display: block;
}

/*@group buttons*/
button {
  font-family: inherit;
  font-size: 100%;
}

.button {
  display: inline-block;
  font-size: 20px;
  padding: 18px 50px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  color: #222222;
  text-align: center;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  background: #f9f9f9;
  background: -moz-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #f9f9f9));
  background: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
}
.button:hover {
  background: #e6e6e6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #e6e6e6));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #e6e6e6 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.button:active {
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.1);
}

.button.primary {
  background: #00aae7;
  background: -moz-linear-gradient(top, #00b1f1 0%, #00aae7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00b1f1), color-stop(100%, #00aae7));
  background: -webkit-linear-gradient(top, #00b1f1 0%, #00aae7 100%);
  background: -o-linear-gradient(top, #00b1f1 0%, #00aae7 100%);
  background: -ms-linear-gradient(top, #00b1f1 0%, #00aae7 100%);
  background: linear-gradient(to bottom, #00b1f1 0%, #00aae7 100%);
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #f7f7f7;
}
.button.primary:hover {
  background: #00aae7;
  background: -moz-linear-gradient(top, #00aae7 0%, #00aae7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00aae7), color-stop(100%, #00aae7));
  background: -webkit-linear-gradient(top, #00aae7 0%, #00aae7 100%);
  background: -o-linear-gradient(top, #00aae7 0%, #00aae7 100%);
  background: -ms-linear-gradient(top, #00aae7 0%, #00aae7 100%);
  background: linear-gradient(to bottom, #00aae7 0%, #00aae7 100%);
  color: white;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.button.primary:active {
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.button { padding: 18px 50px 16px;}
}
*:first-child+html .button {padding: 10px 20px;}

/*@end buttons*/

@media screen and (max-width: 680px) {
textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select[multiple],
select[size],
input[type="date"] {
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(82, 168, 236, 0.1);
  transition: all linear 0.2s;
  width: 96%;
}
}
@media screen and (max-width: 480px) {
select {
  width: 100%;
}
.button {
    font-size: 15px;
}
}

.privacy_policy_head {
	width: 95%;
	padding: 2%;
	margin-top:30px;
	background-color: #eee;
	border:solid 1px #eee;
}

.privacy_policy_body {
	overflow-y: scroll;
	width: 95%;
	height: 200px;
	padding:2%;
	border:solid 1px #eee;
}

.err_color{
	background-color:pink;
}