.Alert {
  margin: var(--spacing-1) 0;
  padding: 1.2em;
  border-radius: var(--primary-radius);
  display: flex;
  justify-content: space-between;
}

.Alert-close {
  width: 20px;
  cursor: pointer;
}

.Alert.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.Alert.error {
  color: #ad3d47;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.Alert.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}

.Input,
.rdt input {
  display: block;
  width: 100%;
  font-size: 13px;
  border: solid 1px #dcdcdc;
  outline: none;
  padding: .9em .9em;
  color: #676767;
  box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
}

.Input[type=date],
.Input[type=number] {
  max-width: 180px;
}

.Input::placeholder {
  color: #b1b1b1;
}

.Input.rounded, .rdt.rounded input {
  border-radius: var(--primary-radius);
}

@keyframes Spinner-scale {
  0% { transform: scaley(1.0) }
  50% { transform: scaley(0.4) }
  100% { transform: scaley(1.0) }
}

.Spinner {

}

.Spinner.scale {
  text-align: center;
}

.Spinner.scale > div {
  background-color: var(--primary-color);
  width: 4px;
  height: 34px;
  margin: 2px;
  border-radius: 2px;
  display: inline-block;
  animation-name: Spinner-scale;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.Spinner.scale > div:nth-child(1) {
  animation-delay: 0.1s;
}

.Spinner.scale > div:nth-child(2) {
  animation-delay: 0.2s;
}

.Spinner.scale > div:nth-child(3) {
  animation-delay: 0.3s;
}

.Spinner.scale > div:nth-child(4) {
  animation-delay: 0.4s;
}

.Spinner.scale > div:nth-child(5) {
  animation-delay: 0.5s;
}

.Main > .Spinner:only-child {
  margin-top: 30px;
}

.AutoComplete {
  position: relative;
}

.AutoComplete_list {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 1px 0 0 0;
  border: solid 1px #d8e0ea;
  border-radius: var(--primary-radius);
}

.AutoComplete_list li {
  line-height: 1;
  padding: 12px;
}

.AutoComplete_list li.selected {
  background-color: #d8e0ea;
}

.AutoComplete_list .AutoComplete_list_loading {
  padding: 6px;
}

.AutoComplete_list  li .Spinner.scale > div {
  width: 3px;
  height: 15px;
  margin: 1px;
}

.Bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.Button {
  color: #fff;
  border: none;
  padding: .8em 2em;
  font-weight: bold;
  outline: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  text-decoration: none;
}

.Button.large {
  padding: 1em 4em;
}

.Button.block {
  display: block;
  width: 100%;
}

.Button.rounded {
  border-radius: var(--primary-radius);
}

.Button.default {
  background-color: var(--primary-color);
}

.Button.primary {
  background-color: var(--primary-color);
}

.Button.danger {
  background-color: #d04c58;
}

.Card {
  background: #fff;
  margin: 20px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}

.CardHeader,
.CardFooter,
.CardContent {
  border-color: var(--primary-border-color);
  border-width: 1px;
}

.CardHeader {
  border-bottom-style: solid;
}

.CardFooter,
.CardContent + .CardContent {
  border-top-style: solid;
}

.CardHeader,
.CardFooter {
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.CardContent {
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.Checkbox {

}

.Container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.Label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #425261;
}


.Icon {

}

.Icon svg {
  display: block;
  fill: currentColor;
}

.Select {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.Select select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  border: solid 1px #dcdcdc;
  padding: .82em  38px .82em .9em;
  color: #676767;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  border-radius: var(--primary-radius);
}

.Select .Icon {
  width: 24px;
  color: #dcdcdc;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -12px;
}

.Select .Icon svg {
  fill: #8996a5;
}

.Select [multiple] {
  padding: .82em;
}

.Textarea {
  display: block;
  width: 100%;
  font-size: 13px;
  border: solid 1px #dcdcdc;
  outline: none;
  padding: .9em .9em;
  color: #676767;
  box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
  resize: vertical;
}

.Textarea::placeholder {
  color: #b1b1b1;
}

.Textarea.rounded {
  border-radius: var(--primary-radius);
}

.CheckboxGroup {

}

.CheckboxGroup-item + .CheckboxGroup-item {
  margin-top: 10px;
}

.CheckboxGroup-item label {
  margin-left: 5px;
}

.Text {

}

.Text.bold {
  font-weight: bold;
}

.Text.pad {
  padding: 20px;
}

.Text.error {
  color: #d67373;
}

.Form {
  margin: 0;
}

.Form-error {
  color: #ad3d47;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: var(--spacing-1);
  margin: var(--spacing-1);
  margin-bottom: 0;
  border-radius: var(--primary-radius);
}

.Field {
  margin: var(--spacing-1) 0;
}

.Field-input {
  width: 100%;
  position: relative;
}

.Field .Label {
  margin-bottom: 5px;
  padding-left: 3px;
}

.Field .Text {
  margin: 5px 3px 0 3px;
}

.Field.inline {
  display: flex;
  align-items: baseline;
}

.Field.inline .Label {
  width: 20%;
}

.Fieldset {

}

.Fieldset h2 {
  margin: var(--spacing-1) 0;
  font-weight: 300;
}

.Logo {
  fill: var(--primary-color);
}

.Main {

}

.Padding {

}

.PageLinks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: var(--spacing-1) 0;
}

.PageLinks .Button + .Button {
  margin-left: 15px;
}

.Pagination {
    padding: 15px;
}

.Pagination button {
    margin-right: 10px;
}
.Table {
  display: table;
  width: 100%
}

.Table-row {
  display: table-row;
}

.Table-header,
.Table-row:nth-child(odd) {
  background-color: #f4f9fd;
}

.Table-header,
.Table-cell {
  display: table-cell;
  padding: 10px;
  border-left: 1px solid #d8e0ea;
}

.Table-header:first-child,
.Table-cell:first-child {
  border-left: none;
}

.Table-header {
  font-weight: bold;
  border-bottom: 1px solid #d8e0ea;
  text-shadow: 0 1px 2px #fff;
}

.Table-cell {
}

.Table-footer {

}

.Table .Table-actions {
  min-width: 70px;
}
.Header {

}

.Header_top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.Header_top a {
  color: #fff;
}

.Header .Logo {
  width: 150px;
  fill: #fff;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.4));
}

.Header_bottom {
  display: flex;
  height: 60px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
  justify-content: center;
  align-items: center;
}

.Header_bottom a {
  font-size: 14px;
  line-height: 58px;
  font-weight: 500;
  color: #8996a5;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.Header_bottom a:first-child {

}

.Header_bottom a:hover {
  color: #8996a5;
}

.Header_bottom .active {
  border-bottom-color: var(--primary-color);
}

.Header_bottom .dropdown {
  float: left;
  overflow: hidden;
}

.Header_bottom .dropdown .dropbtn {
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  color: #8996a5;
  background-color: inherit;
  font-family: inherit;
  width: 100px;
  height: 60px;
  margin: 0;
}

.Header_bottom .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 150px;
  z-index: 1;
}

.Header_bottom .dropdown-content a {
  float: none;
  color: #8996a5;
  line-height: 40px;
  display: block;
  text-align: left;
}

.Header_bottom .dropdown-content a:hover {
  background-color: #ddd;
}

.Header_bottom .dropdown:hover .dropdown-content {
  display: block;
}

.Footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.Footer .Logo {
  width: 150px;
  opacity: 0.3;
}


.Page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Page > .Main {
  flex: 1;
}

.Login {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.Login-container {
  width: 100%;
  max-width: 300px;
  margin-top: -50px;
  position: relative;
}

.Login-logo {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}

.Login .LoginForm .Submit {
  margin-top: 20px;
}

.Login_forgot-password {
  text-align: center;
}

.AttachedPhotos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.AttachedPhotos .AttachedPhoto {
    flex: 0.25;
    margin: 5px;
}
.AttachedPhotos .AttachedPhoto img {}

.AttachedPhoto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.AttachedPhoto img {
    max-width: 100%;
    width: auto;
    height: 60px;
}

/*!
 * https://github.com/YouCanBookMe/react-datetime
 */

.rdt {
    position: relative;
}
.rdtPicker {
    display: none;
    position: absolute;
    width: 250px;
    padding: 4px;
    margin-top: 1px;
    z-index: 99999 !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
    display: block;
}
.rdtStatic .rdtPicker {
    box-shadow: none;
    position: static;
}

.rdtPicker .rdtTimeToggle {
    text-align: center;
}

.rdtPicker table {
    width: 100%;
    margin: 0;
}
.rdtPicker td,
.rdtPicker th {
    text-align: center;
    height: 28px;
}
.rdtPicker td {
    cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
    background: #eeeeee;
    cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
    color: #999999;
}
.rdtPicker td.rdtToday {
    position: relative;
}
.rdtPicker td.rdtToday:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #428bca;
    border-top-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 4px;
    right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
    background-color: #428bca;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
    border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
    background: none;
    color: #999999;
    cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
    color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
    background: none;
    color: #999999;
    cursor: not-allowed;
}
.rdtPicker th {
    border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
    width: 14.2857%;
    border-bottom: none;
    cursor: default;
}
.rdtPicker th.rdtSwitch {
    width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
    font-size: 21px;
    vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
    display: block;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
    background: none;
    color: #999999;
    cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
    cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
    background: #eeeeee;
}

.rdtPicker tfoot {
    border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
    border: none;
    background: none;
    cursor: pointer;
}
.rdtPicker button:hover {
    background-color: #eee;
}

.rdtPicker thead button {
    width: 100%;
    height: 100%;
}

td.rdtMonth,
td.rdtYear {
    height: 50px;
    width: 25%;
    cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
    background: #eee;
}

.rdtCounters {
    display: inline-block;
}

.rdtCounters > div {
    float: left;
}

.rdtCounter {
    height: 100px;
}

.rdtCounter {
    width: 40px;
}

.rdtCounterSeparator {
    line-height: 100px;
}

.rdtCounter .rdtBtn {
    height: 40%;
    line-height: 40px;
    cursor: pointer;
    display: block;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;
}
.rdtCounter .rdtBtn:hover {
    background: #eee;
}
.rdtCounter .rdtCount {
    height: 20%;
    font-size: 1.2em;
}

.rdtMilli {
    vertical-align: middle;
    padding-left: 8px;
    width: 48px;
}

.rdtMilli input {
    width: 100%;
    font-size: 1.2em;
    margin-top: 37px;
}

.rdtTime td {
    cursor: default;
}
.filter.date {
    width: 200px;
}
.rdt {
    width: 240%;
}

.ad_set_id {
    width: 100px;
}
.rdt {
    width: 240%;
}

.ad_set_id {
    width: 100px;
}
html {
  box-sizing: border-box;
  font-family: Helvetica,Arial,Geneva,sans-serif;
  font-size: 100%;
  background: #FAFAFA;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  display: block;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * Prevent iOS and IE text size adjust after device orientation change,
 * without disabling user zoom.
 */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
  letter-spacing: 0.03em;
  text-shadow: 0 0 0 rgba(102, 102, 102, 0.5);
}

:root {
  --primary-color: #4478a0;
  --primary-radius: 3px;
  --primary-radius: 3px;
  --spacing-1: 20px;
  --primary-border-color: #d8e0ea;
}

body {
  font-family: Helvetica Neue,Helvetica,Tahoma,Geneva,Arial,sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #425261;
  background-color: #eef3f7;
}

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

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

p {
  margin-top: var(--spacing-1);
  margin-bottom: var(--spacing-1);
}

h3 {
  font-weight: 400;
}

pre {
  padding: var(--spacing-1);
  background: #eef3f7;
  border: solid 1px #e0e4e8;
  margin: var(--spacing-1) 0;
  border-radius: var(--primary-radius);
}

.rounded {
  border-radius: var(--primary-radius);
}

.p0  { padding:        0 }
.pt0 { padding-top:    0 }
.pr0 { padding-right:  0 }
.pb0 { padding-bottom: 0 }
.pl0 { padding-left:   0 }
.px0 { padding-left:   0; padding-right:  0 }
.py0 { padding-top:    0; padding-bottom: 0 }

.p1  { padding:        var(--spacing-1) }
.pt1 { padding-top:    var(--spacing-1) }
.pr1 { padding-right:  var(--spacing-1) }
.pb1 { padding-bottom: var(--spacing-1) }
.pl1 { padding-left:   var(--spacing-1) }
.px1 { padding-left:   var(--spacing-1); padding-right:  var(--spacing-1) }
.py1 { padding-top:    var(--spacing-1); padding-bottom: var(--spacing-1) }

.mt0 { margin-top:    0 }
.mr0 { margin-right:  0 }
.mb0 { margin-bottom: 0 }
.ml0 { margin-left:   0 }
.mx0 { margin-left:   0; margin-right:  0 }
.my0 { margin-top:    0; margin-bottom: 0 }

.m1  { margin:        var(--spacing-1) }
.mt1 { margin-top:    var(--spacing-1) }
.mr1 { margin-right:  var(--spacing-1) }
.mb1 { margin-bottom: var(--spacing-1) }
.ml1 { margin-left:   var(--spacing-1) }
.mx1 { margin-left:   var(--spacing-1); margin-right:  var(--spacing-1) }
.my1 { margin-top:    var(--spacing-1); margin-bottom: var(--spacing-1) }

.border,
.border-n,
.border-t,
.border-r,
.border-b,
.border-l,
.border-x,
.border-y {
  border-width: 1px;
  border-color: var(--primary-border-color);
}

.border { border-style: solid }
.border-n { border-style: none }
.border-t { border-top-style: solid }
.border-r { border-right-style: solid }
.border-b { border-bottom-style: solid }
.border-l { border-left-style: solid }
.border-x { border-left-style: solid; border-right-style: solid }
.border-y { border-top-style: solid; border-bottom-style: solid }

.flex {
  display: flex;
}

.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

