/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Start */


@font-face {
    font-family:"AudiType";
    src:url("../fonts/(AudiType-Normal)AudiTypeV03-Normal.woff2") format("woff2"),url("../fonts/(AudiType-Normal)AudiTypeV03-Normal.woff") format("woff"),url("../fonts/(AudiType-Normal)AudiTypeV03-Normal.otf") format("opentype");
    font-style:normal;font-weight:400;
}
        
@font-face {
    font-family:"AudiType";
    src:url("../fonts/AudiTypeV03-Bold.woff2") format("woff2"),url("../fonts/AudiTypeV03-Bold.woff") format("woff"),url("../fonts/AudiTypeV03-Bold.otf") format("opentype");
    font-style:normal;font-weight:600;
}
        

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ACACAC; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #ACACAC; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #ACACAC; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #ACACAC; }

body {
	display: flex;
	flex-direction: row;
  justify-content: center;
  font-family: "AudiType", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  padding-bottom: 20px;
  font-size: 20px;
  color: #000000;
  font-family: "AudiType", Arial, Helvetica, sans-serif;
}

.container {
	margin: 20px 20px 40px;
	max-width: 440px;
	width: 440px;
}

.grid-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}

.fw {
    width: 100%;
}

.hw {
    width: 45%;
}

.input-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    margin: 0 0 32px;
}

.lessMargin {
  margin: 0 0 14px;
}

label {
	font-family: "AudiType", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1;
	color: #777777;
}

.label-2 {
	padding: 7px 0 20px;
	font-weight: 600;
	color: #000000;
}

input, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: 0;
	border-bottom: 1px solid #B1B1B1;
	width: 100%;
	padding: 14px 0 17px;
	font-family: "AudiType", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1;
	color: #000000;
}

.invalid input,
.invalid select {
   border-color: red;
}

.initial {
	color: #ACACAC;
}

option {
	color: #000000;
}

select {
	background-image: url("../images/select.svg");
	background-size: 11px;
	background-position: right 0 center;
	background-repeat: no-repeat;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}

.radioContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-bottom: 16px; 
}

.radio {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  position: relative;
}

.radioCircle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #B1B1B1;
  z-index: 1;
  border-radius: 50%;
}

*::-ms-backdrop, .radioCircle {
  left: 10px;
  top: 10px;
}

.radioItem {
  display: none;
}
@media screen and (min-width: 520px) {
  .radioItem + label:hover {
    cursor: pointer;
    border: 1px solid #333333;
  }
}

.radioItem + label {
  border: 1px solid #bebebe;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 0;
  z-index: 10;
}

.radioItem:checked + label + .radioCircle {
  width: 15px;
  height: 15px;
  background-color: #000000 !important;
}

*::-ms-backdrop, .radioItem:checked + label + .radioCircle {
  left: 8px;
  top: 8px;
}

.text {
  font-family: "AudiType", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-top: 2px;
}

.checkboxContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-bottom: 16px; 
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  position: relative;
}

.checkItem {
  display: none;
}
@media screen and (min-width: 520px) {
  .checkItem + label:hover {
    cursor: pointer;
    border: 1px solid #333333 ;
  }
}

.checkItem + label {
  border: 1px solid #bebebe;
  height: 30px;
  width: 30px;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 0;
}

.checkItem:checked + label{
  background-color: #ffffff;
  background-image: url("../images/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}

.text {
  font-family: "AudiType", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-top: 2px;
} 

.legal {
  font-family: "AudiType", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  padding-bottom: 30px;
}

.legal a,
.legal a:focus
.legal a:hover,
.legal a:visited {
  color: #333333;
  text-decoration: underline;
  font-weight: 400;
}

.submitArea {
  border-top: 1px solid #B1B1B1;
  padding-top: 16px;
  display: flex;
  flex-direction: column;

}

button {
  border: none;
	padding: 0;
  cursor: pointer;
	outline: inherit;
  background-color: #000000;
  color: #ffffff;
  font-family: "AudiType", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1;
  padding: 19px 0 16px;
}

@media screen and (max-width: 480px) {
  .hw {
    width: 100%;
  }
}