@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700');

:root {
  --pink: #D93B58;
  --white: #FFFFFF;
  --grey-lightest: #F5F5F5;
  --grey-lighter: #EAEAEA;
  --grey-light: #C0C0C0;
  --grey-medium: #8D8D8D;
  --grey-dark: #6B6B6B;
  --grey-darker: #474747;
  --grey-darkest: #292929;
  --black: #131313;
}

* {
  margin: 0px;
  line-height: 1.4em;
}

html,
body,
input,
textarea,
select,
button {
  font-family: 'Ubuntu';
  font-weight: 400;
}

html,
body {
  height: 100%;
  font-size: 16px;
  color: var(--grey-darker);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
  margin-top: 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1,
*.h1 {
  font-size: 36px;
}

h1 small,
h1.small {
  font-size: 32px;
}

h2,
*.h2 {
  font-size: 28px;
}

h2 small,
h2.small {
  font-size: 24px;
}

h3,
*.h3 {
  font-size: 20px;
}

h4,
*.h4 {
  font-size: 16px;
}

h5,
*.h5 {
  font-size: 14px;
}

h6,
*.h6 {
  font-size: 12px;
}

h6 small,
h6.small {
  font-size: 10px;
}

h5 a,
h6 a {
  font-weight: 500;
}

hr {
  width: 100%;
  height: 2px;
  margin-top: 1.4em;
  margin-bottom: 0.2em;
  background-color: var(--grey-lighter);
  border-width: 0px;
  border-radius: 1px;
}

ul > li,
ol > li {
  margin-top: 0.4em;
}

p small,
p.small {
  font-size: 12px;
  line-height: 1.2em;
}

a,
button {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

a,
select,
button {
  cursor: pointer;
}

a {
  color: var(--pink);
}

a > *,
svg {
  vertical-align: middle;
}

b {
  font-weight: 700;
}

i {
  font-style: italic;
}

svg {
  display: inline-flex;
  height: 1em;
  min-width: 1em;
  margin: 0px 0.4em;
  padding: 0px;
  flex: 0 0 auto;
}

svg:first-child {
  margin-left: 0px;
}

svg:last-child {
  margin-right: 0px;
}

svg path {
  fill: currentcolor;
}

form,
input,
textarea,
select,
button {
  margin-top: 1.4em;
  margin-bottom: 0.2em;
}

fieldset {
  margin: 0px;
  border: 0px;
}

input,
textarea,
select,
button {
  font-size: 14px;
  line-height: 1.6em;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.6em 1em;
  color: var(--grey-dark);
  background-color: var(--white);
  border: 2px solid var(--grey-lighter);
  border-radius: 4px;
  box-sizing: border-box;
  outline: 0px;
}

input + input {
  margin-top: 0.6em
}

select {
  padding-right: 3em;
  background: no-repeat calc(100% - 1em);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23848484' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
  background-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  display: inline-flex;
  padding: 0.6em 1.2em;
  color: var(--white);
  align-items: center;
  background-color: var(--pink);
  border: 2px solid transparent;
  border-radius: 100em;
  outline: 0px;
}

button + a {
  margin-left: 1em;
  font-size: 14px;
}

*:focus {
  border-color: var(--pink);
}

*:disabled,
*.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

*.inline {
  display: inline-block;
  width: auto;
}

::placeholder {
  color: var(--grey-light);
}

::selection {
  color: var(--white);
  background-color: var(--pink);
}