/***** RESET *****/
/* 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}
button,input,select {-webkit-appearance: none; -moz-appearance: none; appearance: none}
* { -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box}
img {-ms-interpolation-mode:bicubic}

:root {
  --blue: rgba(0,122,255,1);
  --light-blue: rgba(0,122,255,0.1);
}
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  color: #333;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding-top: env(safe-area-inset-top);
  height: 100vh;
}
html,
body,
#app {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: env(safe-area-inset-top);
}

h1,
h2,
h3,
h4,
h5,
p,
li,
td,
input,
textarea,
button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5em;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25em;
}
h2 {
	font-size: 28px;
	font-weight: 600;
  line-height: 1.25em;
}
h5 {
  color: #999;
  font-size: 17px;
  font-weight: 600;
  line-height: 2rem;
}

a {
  text-decoration: none;
}


button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  margin: 0;
  padding: 0;
  /*transition: 0.1s all ease;*/
}
button.primary {
  background-color: #E5F1FF;
  color: #007AFF;
}
input {
  appearance: none;
}
ul {
  border-top: 0.5px solid #ccc;
}
li {
  border-bottom: 0.5px solid #ccc;
  font-weight: 500;
}


/*NAV*/
.action_bar {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: space-between;
  width: 100%;
}
.action_bar h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.action_bar--text_action.destructive {
  color: red;
}


.icon {
  height: 24px;
  width: 24px;
}
.icon48 {
  height: 48px;
  width: 48px; 
}

.segmented_controller {
  display: flex;
}


/*ACTION BAR*/
.action_bar--text_action {
  color: var(--blue);
  height: 48px;
  margin-right: 1rem;
}
.action_bar--icon--back {
  background: url('/img/icon--arrow--back.svg') no-repeat center center;
}
.action_bar--icon--close {
  background: url('/img/icon--delete.svg') no-repeat center center;
}



/*MENU*/
.action_menu {
  border-radius: 8px 8px 0 0;
  margin-right: 0.5rem;
  position: relative;
  z-index: 2000;
}
.action_menu.active {
  filter: drop-shadow(0 4px 11px rgba(0,0,0,0.3));
}
.action_menu--curve {
  background: radial-gradient(circle at 0 0, transparent 12px, #fff 12px);
  content: "";
  display: inline-block;
  height: 12px;
  position: absolute;
  right: 80px;
  top: 36px;
  width: 12px;
}
.action_menu--title {
  align-items: center;
  background-color: #fff;
  color: var(--blue);
  /*background: #fff url('/img/icon--settings.svg') no-repeat center center;*/
  display: flex;
  font-size: 17px;
  height: 48px;
  justify-content: center;
  text-align: center;
  width: 80px;
}
.action_menu--dropdown {
  background: #fff;
  border-radius: 8px 0 8px 8px;
  position: absolute;
  right: 0;
  top: 48px;
  width: auto;
}
.action_menu--dropdown ul {
  border: none;
  padding-bottom: 8px;
  padding-top: 8px;
}
.action_menu--dropdown li {
  border: none;
  height: auto !important;
}
.action_menu--dropdown li.action_menu--dropdown--border {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.375rem;
}
.action_menu--dropdown li.action_menu--dropdown--border + li {
  padding-top: 0.375rem;  
}
.action_menu--dropdown li button {
  font-size: 16px;
  height: 36px;
  padding-left: 1rem;
  padding-right: 2rem;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}




/*MODAL*/
.modalView--container {
  padding: 0 1rem calc(1rem + env(safe-area-inset-bottom));
}
.background--grey {
  background-color: #f5f5f5;
}

.modalView_slide-enter-active, .modalView_slide-leave-active {
  transition: 0.3s transform ease;
}
.modalView_slide-enter, .modalView_slide-leave-to {
  transform: translateY(100%);
}
.modalView_pushLeft-enter-active, .modalView_pushLeft-leave-active {
  transition: 0.3s transform ease;
}
.modalView_pushLeft-enter, .modalView_pushLeft-leave-to {
  transform: translateX(100%);
}



/*HELP ARTICLE*/
.slide_up--body h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.help_article h4 {
  border-top: 1px solid #999;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.help_article h5 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.75rem;
}
.help_article p {
  font-weight: 400;
  margin-bottom: 1.5em;
}
.help_article ul {
  border-top: none;
  margin-bottom: 2rem;
}
.help_article li {
  border-bottom: 1px solid #999;
  padding-top: 1.5rem;
}
.help_article li:last-of-type {
  border-bottom: none;
}


