/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0 0 1rem 0;
  padding: 0;
}

/**
 * Basic styling
 */
html {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75rem;
  font-weight: 300;
  color: #111;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

html * {
  box-sizing: border-box;
}

body {
  height: 100%;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 1rem;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

p, pre {
  text-align: justify;
  line-height: 2rem;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 0.75rem;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Links
 */
a {
  color: #005B99;
  text-decoration: none;
}
a:visited {
  color: #005B99;
}
a:hover {
  color: #111;
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #4d4d4d;
  border-left: 4px solid rgb(191.75, 191.75, 191.75);
  padding-left: 0.5rem;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  border: 1px solid rgb(191.75, 191.75, 191.75);
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 4px 6px;
  overflow-x: scroll;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(1000px - (1rem * 2));
  max-width: calc(1000px - 1rem * 2);
  margin-right: auto;
  margin-left: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .wrapper {
    max-width: -webkit-calc(800px - (1rem));
    max-width: calc(800px - (1rem));
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.icon > svg path {
  fill: #4d4d4d;
}

.page-heading,
.post-title {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .page-heading,
  .post-title {
    font-size: 1.65rem;
  }
}

.page-content {
  padding-top: 44px;
  z-index: 1;
}

.post-media-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.slug-list {
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.slug-list .slug-list-dateline {
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
}
.slug-list li {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.slug-list li:not(.category-slug) {
  margin-bottom: 1.5rem;
  border: 1px solid #a7a7a7;
  background: #fbfbfb;
  border-radius: 3px;
  transition: all 1s;
}
.slug-list li:hover {
  border: 1px solid #292929;
  background: #ebece1;
}
.slug-list li a {
  text-align: center;
}
.slug-list h2 {
  font-size: 0.85rem;
  line-height: 1.6rem;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slug-list h2 a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.slug-list h2 a:hover {
  text-decoration: none;
}
.slug-list .desc {
  font-size: 0.8rem;
  line-height: 1.4rem;
}

.image-plus-caption {
  border: 3px dotted black;
  margin: 1em 3em;
  padding: 0.5em;
  line-height: 1em;
}
.image-plus-caption img {
  margin-bottom: 0.25em;
  width: 100%;
}
.image-plus-caption.small {
  margin: 1em 6em;
}
@media (min-width: 768px) {
  .image-plus-caption {
    margin: 1em 7em;
  }
  .image-plus-caption.small {
    margin: 1em 12em !important;
  }
}

@media screen and (min-width: 475px) {
  .slug-list li {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .slug-list li:last-child {
    align-self: flex-start;
  }
  .slug-list h2 {
    font-size: 1rem;
  }
}
.pagination {
  display: flex;
  margin-bottom: 2rem;
  padding: 2rem;
  border-bottom: 1px dashed #000;
}

.pag-but {
  text-align: center;
  padding: 0 5px;
  margin-right: 1rem;
  border: 2px solid #232323;
  background: #d4d3db;
  color: #000000;
  border: 1px solid #686868;
  border-radius: 4px;
}
.pag-but.active {
  font-weight: bold;
  font-size: 1.25rem;
  color: #000;
  background-color: inherit;
  border: none;
}
.pag-but:hover {
  text-decoration: none;
  color: #000;
}

.link-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.btn {
  background-color: #eeefff;
  border: 1px solid rgb(131, 131, 131);
  border-radius: 3px;
  display: inline-block;
  padding: 1px 6px;
  font-size: 0.75rem;
}
.btn:hover {
  text-decoration: none;
}

.vertical-align-container {
  display: flex;
  align-items: center;
}

.spacer {
  margin: 1rem 0;
}

/**
 * Site header
 */
.header-bar {
  background: #0b9afb;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.5em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  z-index: 1000;
  color: #fff;
  display: flex;
  justify-content: center;
}
.header-bar a {
  color: #fff;
  text-decoration: none;
}
.header-bar a:hover {
  text-decoration: none;
}
.header-bar .logo {
  font-weight: bold;
  padding: 0 5px;
  margin: 5px 0 5px 5px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  letter-spacing: 5px;
}
.header-bar .logo2 {
  background: #000;
  margin: 5px 5px 5px 0;
}
.header-bar .flex-left {
  flex-grow: 1;
}
.header-bar .flex-center {
  justify-items: center;
}
.header-bar .flex-right {
  text-align: right;
  flex-grow: 1;
}
.header-bar .hamburger {
  width: 30px;
}
.header-bar .hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.header-bar .hamburger:hover {
  cursor: pointer;
}
.header-bar.active .hamburger .line:nth-child(2) {
  opacity: 0;
}
.header-bar.active .hamburger .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header-bar.active .hamburger .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/**
 * Clearfix
 */
.footer-col-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Site footer
 */
.site-footer {
  font-size: 0.75rem;
  border-top: 1px solid gray;
  padding: 1rem 0;
  line-height: 1.3125rem;
  background-color: #ebeaea;
}

.footer-heading {
  font-size: 0.9rem;
  margin-bottom: 0.125rem;
}

.social-media-list {
  margin-left: 0;
  list-style: none;
}
.social-media-list li {
  margin-bottom: 10px;
}

.footer-col-wrapper {
  color: #4d4d4d;
  margin-left: -0.5rem;
}

.footer-col {
  float: left;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.footer-col-1 {
  width: -webkit-calc(30% - (1rem / 2));
  width: calc(30% - 1rem / 2);
}

.footer-col-2 {
  width: -webkit-calc(55% - (1rem / 2));
  width: calc(55% - 1rem / 2);
}

.footer-col-3 {
  width: -webkit-calc(15% - (1rem / 2));
  width: calc(15% - 1rem / 2);
  text-align: right;
}

.alters-filter-container {
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alters-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 500px) {
  .alters-grid {
    justify-content: space-between;
  }
}

.flip-card {
  background-color: transparent;
  width: 200px;
  height: 300px;
  perspective: 1000px;
  margin-bottom: 2rem;
  display: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card-inner img {
  width: 200px;
  height: 300px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: black;
}

.flip-card-back {
  background-color: rgba(75, 27, 27, 0.954);
  transform: rotateY(180deg);
}

.show-desktop {
  display: none;
}
@media screen and (min-width: 500px) {
  .show-desktop {
    display: block;
  }
}

.show-mobile {
  display: block;
}
@media screen and (min-width: 499px) {
  .show-mobile {
    display: none;
  }
}

.mobile-info {
  font-size: 0.75rem;
}

.show {
  display: block;
}

.custom-select {
  width: 200px;
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #0b9afb;
  font-weight: 800;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 12px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #fff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.select-selected {
  color: #000;
}

/* Style items (options): */
.select-items {
  color: #ffffff;
  position: absolute;
  background-color: #0b9afb;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #d5d5d5;
  color: #000 !important;
}

.accordion-container {
  border: 1px solid #000;
}

.accordion {
  display: block;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  text-decoration: none;
  border-bottom: 0.5px solid black;
  font-weight: 700;
}
.accordion:active, .accordion:hover, .accordion:visited {
  text-decoration: none;
  color: inherit;
}

.accordion .active, .accordion:hover {
  background-color: #0b9afb;
  color: #fff;
}
.accordion .active:active, .accordion .active:hover, .accordion .active:visited, .accordion:hover:active, .accordion:hover:hover, .accordion:hover:visited {
  color: #fff;
}

.panel {
  padding: 1rem;
  background-color: #e3e3e3;
  display: none;
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.25rem;
  border-bottom: 0.5px solid black;
}
.panel h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.panel h4 {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.panel h5 {
  margin-bottom: 0.25rem;
}

.correct {
  color: #0ba121;
}

.quiz-foot {
  font-size: 0.75rem;
}

.drawer {
  top: 43px;
  background: #0b9afb;
  width: 220px;
  left: -220px;
  overflow-y: auto;
  position: fixed;
  max-height: 500px;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 3px 0;
  padding-bottom: 3px;
}
.drawer.active {
  left: 0;
}
.drawer ul {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e3e3e3;
  list-style-type: none;
}
.drawer > ul {
  margin: 0;
}
.drawer li:not(.nested-links) {
  border-bottom: 1px solid #e3e3e3;
  transition: all 0.3s ease-in-out;
  margin: 0;
  padding: 0 0.5rem;
}
.drawer li:not(.nested-links):last-child {
  border-bottom: none;
}
.drawer li:not(.nested-links).active, .drawer li:not(.nested-links):hover {
  background: #000;
}
.drawer li:not(.nested-links) a {
  display: block;
  padding: 0.25rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.drawer li:not(.nested-links) a:hover {
  color: #fff;
}
.drawer li:not(.nested-links) a svg {
  margin-right: 0.5rem;
  width: 1rem;
}
@media (min-width: 475px) {
  .drawer {
    width: 330px;
    left: -330px;
  }
}
@media (min-width: 768px) {
  .drawer {
    width: 440px;
    left: -440px;
  }
}

.window-shade {
  transition: all 0.3s ease-in-out;
  opacity: 0.75;
  z-index: 20;
  top: 44px;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  position: fixed;
  background: #000;
  display: none;
}
.window-shade.active {
  display: block;
}

.nested-links {
  padding-left: 0.5rem;
}
.nested-links:hover {
  background-color: inherit;
}
.nested-links ul {
  font-size: 0.8rem;
  margin-left: 2rem;
  border-top: none !important;
  display: none;
}
.nested-links ul.active {
  display: block;
}

.nested-links-heading {
  display: block;
  padding: 0.25rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.nested-links-heading svg {
  margin-right: 0.5rem;
  width: 1rem;
}

/*# sourceMappingURL=styles.css.map */