@import "./vars.css";
@import "./mobile.css";

body {
  background: var(--background-color);
	color: var(--text-color);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 112.5%;
  margin: 0;
	padding: var(--body-padding);
}
h2, h3 {
  margin: 0 0 10px 0;
  padding: 0;
}
h1 {
  font-size: 175%;
  margin: 0;
  text-align: center;
}
h1 span {
  font-size: 132%;
  display: block;
}
h2 {
  margin: 0;
  padding: 0;
  font-size: 112%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: lighter;
  color: var(--text-color-light);
  margin-bottom: 20px;
}
h3 {
  font-size: 100%;
  font-weight: bold;
}
p ~ h3 {
  margin-top: 20px;
}
ul, ol, p, address {
  font-size: 100%;
  line-height: 150%;
  font-style: normal;
  margin: 0;
  padding: var(--default-element-padding);
}
ul {
  list-style: disc outside;
}
article {
  padding-right: 1em;
}
a:link, a:visited {
  color: var(--highlight-color);
  text-decoration: none;
}
a:hover, a:active {
  color: var(--primary-accent);
  text-decoration: underline;
}
a.button {
  display: block;
  width: 120px;
  padding: 16px 32px;
  color: var(--background-color);
  border-radius: var(--button-border-radius);
  background-color: var(--highlight-color);
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  text-align: center;
  font-weight: bolder;
  transition: background-color .5s;
  box-shadow: var(--light-container-box-shadow);
}
a.button.external {
  width: unset;
  text-align: left;
}
a.button.external:hover {
  background-image: url('../img/external.png');
  background-size: 30px 30px;
  background-position: 98%;
}
a.button:hover {
  box-shadow: var(--default-container-box-shadow);
  background-color: var(--primary-accent);
}
a.button:active {
  box-shadow: var(--active-box-shadow);
}

a.button.mail:hover {
  background-image: url('../img/mail.png');
  background-size: 40px 40px;
  color: var(--primary-accent);
  font-size: 0;
}
a.button.phone:hover {
  background-image: url('../img/phone.png');
  background-size: 40px 40px;
  color: var(--primary-accent);
  font-size: 0;
}
h1 a:hover {
  color: inherit;
  text-decoration: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.extra-padding {
  padding-left: 20px;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-column.stretch {
  align-items: stretch;
  justify-content: space-evenly;
  height: 100%;
  flex-grow: 1;
}
.half {
  width: 50%;
}
.one-third {
  width: 33.3%;
}
.two-thirds {
  width: 64.5%;
}
ul.no-list-item, ul.no-list-items {
  list-style: none outside;
  padding: 0;
}
ul.spaced li {
  margin-bottom: 1rem;
}
ul.checkmarks li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-left: 36px;
  background: url('../img/check.png') center left no-repeat;
  background-size: 30px 30px;
}
strong {
  font-weight: bold;
}
.label {
  display: inline-block;
  width: 4ch;
}
main {
  margin: 0 auto;
	max-width: var(--app-max-width);
}
section {
  margin: var(--vertical-section-margin) 0;
  padding: 0 0 var(--vertical-section-margin) 0;
  background: var(--section-background-color);
  border-radius: var(--border-radius);
  position: relative;
  border-bottom: 1px solid var(--highlight-color);
  overflow-x: hidden;
  overflow-y: auto;
}
.section-content .subsections, section.articles {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-content .subsections > div {
  width: 30%;
  padding-bottom: 20px;
}
section#contact .subsections {
  margin-top: 20px;
  overflow: hidden;
}
aside {
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: var(--app-max-width);
}
aside ul {
  width: 100%;
}
aside ul li {
  float: right;
  margin: 8px 16px;
}
#mapdiv {
  width: 100%;
  max-width: var(--app-max-width);
  height: 710px;
  margin-bottom: 32px;
  background-image: url('../img/map_1200.png');
}
li span.day {
  display: inline-block;
  width: 4ch;
}
li span.time {
  display: inline-block;
  width: 11ch;
  padding-right: 5px;
}
li span.time:nth-of-type(3) {
  padding-right: 0;
  padding-left: 5px;
}
li span.time:nth-of-type(3)::before {
  content: '';
  margin-right: 6px;
  display: inline;
}
.selection-component a[data-target] {
  cursor: pointer;
  display: block;
  width: calc(100% - 72px);
  padding: 16px 36px;
  margin: 0;
  border-radius: 0;
  background-image: url('../img/plus.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 20px 20px;
  text-decoration: none;
}
.selection-component a[data-target]::after {
  content: '...';
}
.selection-component a[data-target]:hover {
  color: var(--highlight-color);
}
.selection-component a[data-target].active {
  background-image: url('../img/chevron.png');
  background-color: var(--selection-background-color);
  color: var(--selection-color);
  border-radius: var(--container-border-radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.selection-component #target1 {
  border-bottom-left-radius: var(--container-border-radius);
}
.selection-component #target2,
.selection-component #target3 {
  border-radius: var(--container-border-radius);
}
.selection-component #target4 {
  border-top-left-radius: var(--container-border-radius);
}
.selection-component #target-wrapper {
  display: flex;
  flex-direction: column;
}
.selection-component #target-wrapper ul {
 margin-left: 0;
 background-color: var(--selection-background-color);
 padding-left: 16px;
}
.selection-component .target {
  background-color: var(--selection-background-color);
  color: var(--selection-color);
  margin-left: 32px;
  justify-content: space-evenly;
}
.selection-component .target.hidden {
  display: none;
}
#basics li span, .target li span {
  display: block;
}
#basics, .target, .triggers {
  min-height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}