/*@function str-replace($string, $search, $replace: '') {
	$index: str-index($string, $search);

	@if $index {
		@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
	}

	@return $string;
}*/
/** RESET **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000000;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input,
button,
textarea,
select {
  *font-size: 100%;
}

em,
i {
  font-style: italic;
}

li {
  margin-left: 20px;
}

ul > li {
  list-style-type: square;
}

ol > li {
  list-style-type: decimal;
}

strong, b {
  font-weight: 700;
}

header,
nav,
main,
section,
article,
aside,
footer {
  display: block;
}

.ContentRow,
.clearfix {
  zoom: 1;
}
.ContentRow:before, .ContentRow:after,
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}
.ContentRow:after,
.clearfix:after {
  clear: both;
}

*, *:before, *:after {
  box-sizing: inherit;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  padding: 40px 10px;
  color: #3D3D3D;
  font-family: Arial, sans-serif;
  width: 410px;
  margin: auto;
}
@media screen and (max-width: 410px) {
  body {
    width: 320px;
  }
}

h1 {
  font-size: 35px;
  font-weight: 300;
}
h1 strong {
  font-weight: 500;
}

.Button {
  display: inline-block;
  background-color: #18A0E1;
  color: #FFFFFF;
  padding: 5px 9px;
  border: none;
  min-width: 70px;
  cursor: pointer;
  text-transform: uppercase;
}
.Button:hover {
  background-color: #3D3D3D;
  color: #FFFFFF;
}
.Button.Width--Full {
  width: 100%;
}
.Button.Big {
  padding: 20px 40px;
}

form {
  position: relative;
}

fieldset {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 20px auto 0 auto;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.4s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.4s;
  transition: opacity 0.3s 0s, visibility 0s 0.4s;
}
fieldset.Active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transition: opacity 0.3s 0.3s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0.3s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0.3s, visibility 0s 0s;
  transition: opacity 0.3s 0.3s, visibility 0s 0s;
}
fieldset > .Count {
  position: absolute;
  top: -49px;
  right: 0;
  font-size: 20px;
  font-weight: 300;
}
fieldset .FormRow {
  display: block;
  margin-top: 10px;
  width: 100%;
}
fieldset .FormRow.BySide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
fieldset .FormRow.BySide .Label {
  line-height: 32px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
fieldset .FormRow.BySide input,
fieldset .FormRow.BySide select,
fieldset .FormRow.BySide textarea {
  width: 1px;
  min-width: unset;
  max-width: unset;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
fieldset .FormRow.BySide input[type="radio"], fieldset .FormRow.BySide input[type="checkbox"],
fieldset .FormRow.BySide select[type="radio"],
fieldset .FormRow.BySide select[type="checkbox"],
fieldset .FormRow.BySide textarea[type="radio"],
fieldset .FormRow.BySide textarea[type="checkbox"] {
  width: 20px;
  margin-right: 5px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
fieldset .FormRow.BySide input + .Button,
fieldset .FormRow.BySide select + .Button,
fieldset .FormRow.BySide textarea + .Button {
  margin-left: 10px;
}
fieldset .FormRow.BySide.TextSelect input {
  width: 1px;
  border-right: transparent;
}
fieldset .FormRow.BySide.TextSelect input + select {
  width: 80px;
  border-left: transparent;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
fieldset .FormRow.BySide .Button {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
fieldset .FormRow.BySide .Button + .Button {
  margin-left: 10px;
}
fieldset .FormRow.BySide .Button.FromNow {
  font-size: 14px;
  text-transform: none;
}
@media screen and (max-width: 410px) {
  fieldset .FormRow.BySide .Button.FromNow {
    min-width: unset;
  }
}
fieldset .Label {
  display: inline-block;
  min-width: 80px;
}
fieldset input,
fieldset select,
fieldset textarea {
  width: 100%;
  line-height: 24px;
  padding: 3px 5px;
  height: 32px;
  border: 1px solid #707070;
  display: inline-block;
}
fieldset input.Error,
fieldset select.Error,
fieldset textarea.Error {
  border-color: tomato;
}
fieldset input[type="checkbox"], fieldset input[type="radio"],
fieldset select[type="checkbox"],
fieldset select[type="radio"],
fieldset textarea[type="checkbox"],
fieldset textarea[type="radio"] {
  height: auto;
  width: auto;
  margin-right: 10px;
}
fieldset textarea {
  resize: vertical;
  min-height: 100px;
}
fieldset span.Error {
  display: block;
  width: 100%;
  color: tomato;
  font-size: 12px;
}
fieldset span.Error:empty {
  display: none;
}
fieldset .Controls {
  margin-top: 20px;
}
fieldset .Controls:after {
  content: '';
  display: block;
  clear: both;
}
fieldset .Controls .Button {
  padding: 15px 15px;
  float: right;
  width: 48.5%;
}
fieldset .Controls .Button:nth-child(2) {
  margin-right: 3%;
}
fieldset .Controls .Button.Last {
  float: left;
}
fieldset .Controls .Button.Submit {
  float: left;
  margin-top: 4px;
  background-color: #3D3D3D;
  color: #FFFFFF;
  width: 100%;
}
fieldset .Controls .Button.Submit:hover {
  background-color: #18A0E1;
  color: #FFFFFF;
}

fieldset[data-id="1"] > div:first-of-type {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #EDEDED;
}

/*# sourceMappingURL=main.css.map */
