@charset "UTF-8";
/*
# Copyright (C) Konsoll 2021
# Renewed by Kei Ishizaki
# with respect to Steffen Øie and Robin G. Aaberg

Color Codes:
------------------
White:      #eeeeee
Text White: #d0d0d0
Light Gray: #aeacad
Medium Gray:#8e8c8d
Dark Gray:  #4a4648
Black:      #231c1e
Red:        #ff6347
Light Red:  #fea898
Warning:    #994444

*/


/* common elements */

.darkGrayOnHover:hover{
  background-color: #4a4648;
  transition: 0.5s;
}
.darkGrayOnHover{
  transition: 0.5s;
}


/* flexbox - common */

.flexbox{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.flexbox > *{
  display: block;
  min-width: 150px;
}

/* heading */
.heading {
  color: #eeeeee;
}

/* lead */
.lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: #aeacad;
}

/* date */
.date {
  font-size: 0.75rem;
  font-weight: 100;
  color: #8e8c8d;
}

/* image */
.image {
  line-height: 0;
}

/* body */

.body p {
  margin-bottom: 1rem;
}
.body p:last-of-type {
  margin-bottom: 0;
}

.bodyAlignment-left .body {
  text-align: left;
}

.bodyAlignment-center .body {
  text-align: center;
}

.bodyColumns-2 .body {
  columns: 2;
  column-gap: 2em;
}

.bodyColumns-3 .body {
  columns: 3;
  column-gap: 1.5em;
}

.bodyColumns-4 .body {
  columns: 4;
  column-gap: 1em;
}

/* footnote */

.footnote {
  font-size: 0.9rem;
  color: #aeacad;
}

.footnote p {
  margin-bottom: 1rem;
}
.footnote p:last-of-type {
  margin-bottom: 0;
}

/* action link */

.action-link div{
  width: 100%;
  padding: 0.2rem 1rem;

  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  white-space: wrap;
  color: #d0d0d0;
  background-color: #4a4648;
  border-radius: 0.25rem;
}
@media screen and (max-width: 480px) {
  .action-link div{
    padding: 0.5rem 1rem;
  }
}

.action-link-go{
  margin-left: 0.25rem;
  font-size: 0.55rem;
}

a.action-link div:hover {
  color: #ffffff;
  background-color: #aeacad;
  transition: 0.5s;
}

.flexbox img{
  width: 100%;
}

.flexbox .action-link{
  width: 100%;
}

.col2 .body{
  column-count: 2;
  column-rule: 1px solid #4a4648;
}
.col3 .body{
  column-count: 3;
  column-rule: 1px solid #4a4648;
}
.col4 .body{
  column-count: 4;
  column-rule: 1px solid #4a4648;
}

/* flexbox - panels */

.panels .heading,
.panels-right .heading{
  order: 2;
  flex-basis: calc(50% - 2 * 1rem);
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.panels .lead,
.panels-right .lead{
  order: 3;
  flex-basis: 100%;
  border-bottom: 1px solid #aeacad;
}

.panels .image
.panels-right .image{
  order: 1;
  flex-basis: calc(50% - 2 * 7px);
}

.panels .body,
.panels-right .body{
  order: 4;
}

.panels .footnote,
.panels-right .footnote{
  order: 5;
  flex-basis: 100%;
}

.panels .action-link,
.panels-right .action-link{
  order: 6;
  flex-basis: 100%;
}

/* flexbox - panels (right) */

.panels-right .heading{
  order: 1;
}

.panels-right .lead{
  order: 3;
}

.panels-right .image{
  order: 2;
}

/* flexbox - dynamic */

.dynamic{
  text-align: center;
}

.dynamic .heading,
.dynamic .lead,
.center .body,
.dynamic .image,
.dynamic .footnote{
  flex-basis: 100%;
}

.dynamic .image img{
  width: 70%;
  min-width: 300px;
}

/* flexbox - center */

.center{
  text-align: center;
}

.center .heading,
.center .lead,
.center .body,
.center .image,
.center .footnote{
  flex-basis: 100%;
}

.center .lead{
  border-top: solid 2px #4a4648;
}

.center .image img{
  width: 40%;
  min-width: 300px;
}

/* flexbox — basic */

.basic {
  width: 100%; /* necessary? */
}

.basic .heading{
  flex-basis: 100%;
}

.basic .lead{
  flex-basis: 100%;
}

.basic .image{
  flex-basis: calc(25% - 2rem);
  flex-grow: 1;
}

.basic .body{
  flex-basis: calc(75% - 2rem); /* put body and image side by side */
  flex-grow: 1; /* expand when there's no image */
}

.basic .footnote{
  flex-basis: 100%;
  flex-grow: 1;
}

/* flexbox — grey */

.grey {
  width: 100%;
  font-size: 0.7rem;
}

.grey .heading {
  flex-basis: 100%;
}

.grey .heading h2{
  color: #8e8c8d;
  font-size: 1.25rem;
  font-weight: 600;
}

.grey .heading h3{
  color: #8e8c8d;
  font-size: 1rem;
  font-weight: 600;
}

.grey .lead{
  flex-basis: 100%;
}

.grey .image{
  flex-basis: calc(20% - 2 * 7px);
  flex-grow: 1;
}

.grey .body{
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #4a4648;
  border: #aeacad 1px solid;
  flex-basis: calc(60% - 2 * 7px);
  flex-grow: 3;
}

.grey .footnote{
  flex-basis: calc(20% - 2 * 7px);
  flex-grow: 1;
}


/* flexbox — timeline */

.flexbox.timeline{
  position: relative;
  gap: 0;
}

.timeline .heading,
.timeline .image,
.timeline .body,
.timeline .showhide,
.timeline .footnote,
.timeline .action-link {

  /* aligning to the right side of the timeline */
  margin-left: 200px;
  flex-basis: 100%;
  padding-left: 2rem;
  border-left: 1px solid #aeacad;
}

.timeline .heading::before{ /* dots on timeline */
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background-image: url(/assets/images/timeline_dot.png);
  background-size: contain;
  position: absolute;
  top: 3.75rem;
  left: -0.28rem;
}

.timeline .heading{
  padding-top: 3rem;
  flex-basis: 100%;
  order: 2;
}

.timeline h2{
  margin: 0;
  padding: 0;
  font-size: 2rem;
}

.timeline h3{
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

.timeline .lead{
  margin: 0;
  padding: 3.4rem 0 0 0;
  order: 1;
  font-weight: 100;

  position: absolute;
  top: 0;
  left: 1.2rem;
}

.timeline .image{
  padding-top: 0.5rem;
  order: 3;
  max-width: 12.5rem;
}

.timeline .body{
  padding-top: 0.5rem;
  font-size: 1.25rem;
  color: #aeacad;
  order: 4;
}

.timeline .showhide{
  order: 5;
}

.timeline .footnote{
  order: 6;
  font-size: 1rem;
  display: none;
}

.timeline .action-link{
  padding-top: 0.5rem;
  order: 7;
}

@media screen and (max-width: 480px) {

  .timeline .lead{
    width: 7rem;
    font-size: 1rem;
    left: 1rem;
  }

  .timeline .heading,
  .timeline .image,
  .timeline .body,
  .timeline .footnote,
  .timeline .action-link {
    margin-left: 7rem;
    padding-left: 1rem;
  }

  .timeline h2{
    font-size: 1.5rem;
  }

  .timeline h3{
    font-size: 1.25rem;
  }

  .timeline .body{
    padding-top: 0.75rem;
    font-size: 1rem;
  }
}


/* flexbox - image-led */

.image-led {
  justify-content: center;
}

.image-led * {
  max-width: 640px;
}

.image-led .heading{
  flex-basis: 100%;
  order: 2;
}

.image-led .heading h2,
.image-led .heading h3{
  margin-top: 1rem;
}

.image-led .lead{
  flex-basis: 100%;
  margin-top: 0.25rem;
  order: 3;
}

.image-led .date{
  flex-basis: 100%;
  font-size: 1rem;
  order: 4;
}

.image-led .image{
  flex-basis: 100%;
  margin-top: 7rem;
  max-width: 640px;
  order: 1;
}

.image-led .body{
  flex-basis: 100%;
  margin-top: 1.5rem;
  order: 5;
}

.image-led .footnote{
  flex-basis: 100%;
  margin-top: 2rem;
  order: 6;
}

.image-led .action-link{
  order: 7;
}

/* pagenav */
.pagenav {
  margin-top: 7rem;
  display: flex;
  justify-content: center
}

.pagenav ul {
  display: flex;
  list-style: none;
}

.pagenav a {
  margin-left: 1px;
  padding: 0.15rem 1.4rem;
  font-size: 1rem;
  font-weight: 400;
  color: #d0d0d0;
  background-color: #4a4648;
  flex-flow: column;
  white-space: nowrap;
}

.pagenav a:hover {
  color: #ffffff;
  background-color: #aeacad;
  transition: background-color 0.5s;
}

.pagenav ul a{
  color: #d0d0d0;
}

.pagenav ul a:first-child {
  border-radius: 0.25rem 0 0 0.25rem;
}

.pagenav ul a:last-child {
  border-radius: 0 0.25rem 0.25rem 0;
}

.pagenav a.pagenav-active {
  color: #ffffff;
  background-color: #aeacad;
}

@media screen and (max-width: 480px) {

  .pagenav {
    margin-top: 2rem;
  }

  .pagenav ul {
    flex-direction: column;
  }

  .pagenav a {
    margin-left: 0;
    margin-top: 1px;
    padding: 0.5rem 1.4rem;
    font-size: 0.8rem;
  }

  .pagenav ul a:first-child {
    border-radius: 0.25rem 0.25rem 0 0;
  }

  .pagenav ul a:last-child {
    border-radius: 0 0 0.25rem 0.25rem;
  }

}

/* ----------------------------------- */
/* Subgroup */

.subgroup {
  display: flex;
  float: left;
  flex-direction: row;
}

.flexbox.subgroup > * {
  min-width: none;
}

.subgroup a {
  color: #d0d0d0;
}
a .subgroup {
  color: #d0d0d0;
  border: 0.1rem solid rgb(0,0,0,0);
}
a:hover .subgroup {
  background: #4a4648;
  border: 0.1rem solid #d0d0d0;
  transition: 0.5s;
}
a .subgroup {
  background: inherit;
  transition: 0.5s;
}

.subgroup .heading{
  font-size: 1.25rem;
  order: 2;
}

#section-0 .subgroup h2,
#section-0 .subgroup h3{
  margin-top: 0;
}

.subgroup .lead{
  padding-top: 0;
  font-size: 1rem;
  font-weight: 300;
  order: 3;
}

/* BEGIN hack to keep aspect ratio */
.subgroup .image{
  width: 100%;
  padding-top: 75%; /* Preset for 4:3 aspect ratio. Overritten by Panel settings */
  order: 1;
  position: relative;
}
.subgroup .image img{
  /* width: 100%; */
  height: 100%;
  position: absolute;
  top: 0;
}
/* END hack to keep aspect ratio */

.subgroup .body{
  font-size: 1.0rem;
  order: 5;
}

.subgroup .footnote{
  font-size: .75rem;
  order: 6;
}

.subgroup .date{
  font-size: .75rem;
  color: #8e8c8d;
  order: 4;
}

.subgroup .action-link {
  order: 7;
}


/* ----------------------------------- */
/* Carousel */

.carousel .heading h2,
#section-0 .carousel .heading h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

/* ----------------------------------- */
/* Tabs */

.tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #231c1e;
  opacity: 0.8;
}

.tabs-wrapper-head{
  margin-top: 2rem;
  position: sticky;
  position: -webkit-sticky;
  top: 2.3rem;
  height: 2.0rem;
  z-index: 90;
  border-bottom: 1px solid #aeacad;
  align-items: flex-end;
}

@media screen and (max-width: 480px) {
  .tabs-wrapper-head {
    top: 3.85rem;
  }
}

.tabs-wrapper-tail{
  margin-top: 2rem;
  border-top: 1px solid #aeacad;
}

.tab-head .tab {
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.tab-tail .tab {
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.tabs-wrapper a li{
  color: #d0d0d0;
}

.tab {
  font-size: 1rem;
  font-weight: 400;
  padding: 0.1rem 1rem;
  display: inline-block;
  list-style-type: none;
  background-color: #4a4648;
}

.tab:hover {
  color: #ffffff;
  background-color: #aeacad;
  transition: 0.5s;
}

.tab-active{
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
  background-color: #aeacad;
}

/* =====  1 Global Definitions  ===================================== */

/* -----    1.1 Basic Tags  ------------------------------------------- */

html {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;

  color: #d0d0d0; /* text white */
  background-color: #231c1e; /* Black */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

section, header, footer, nav {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  /* border: 1px solid #ff0000; */
}

/* clearfix */
main::after, section::after, header::after, footer::after, nav::after {
  content: " ";
  display: block;
  clear: both;
}

nav a, nav a:hover,
footer a, footer a:hover {
  color: #aeacad;
}

header{
  margin-top: 0;
}

@media screen and (max-width: 480px;) {
  section, header, footer, nav {
    padding: 0;
  }
}

/* Headings */

h1 {
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 2rem;
}

h2 {
  margin-top: 7rem;
  font-size: 2.5rem;
  font-weight: 400;
}
#section-0 h2,
#section-0 .image-led .image{
  margin-top: 2.5rem; /* smaller gap before the first section */
}
@media screen and (max-width: 480px) {
  h2 { margin-top: 2rem; } /* smaller gap for mobile */
}

h3 {
  font-weight: 300;
  margin-top: 0.5rem;
  font-size: 2rem;
}

h4 {
  font-weight: 300;
  font-size: 1.25rem;
}

img {
  line-height: 0;
}

/* Links */
a {
  color: #ff6347;
  text-decoration: none;
  transition: color .3s, background .3s, border .3s;
}
a:hover {
  text-decoration: none;
}

/* Styles */
i, em {
  font-weight: 500;
  font-style: italic;
}

b, strong {
  font-weight: 700;
}

mark {
  padding: .1em .05em;
  margin: -.1em 0;
  color: #261e66;
  background: #eafded;
}

/* Footer */
footer {
  border-top: 1px solid #4a4648;
  padding: 0.25rem 1rem 1rem 1rem;

  margin-top: 5rem;
  font-size: 0.8rem;
  color: #aeacad;
}

footer h1 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555555;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  line-height: 1.25rem;
}

/* -----    1.2 Common Elements  ------------------------------------------- */

/* Hero */
.hero-banner {
  width: 100%;
  max-width: none;
  height: 250px;

  border: solid #666666;
  border-width: 1px 0;
  box-shadow: 0px 0.25rem 0.75rem 0rem rgba(0,0,0,0.7) inset;

  font-size: 1.1rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  color: #f0f0f0;
  text-shadow: #000000 0 2px 4px;
  letter-spacing: 0.4rem;

  vertical-align: bottom;

  position: relative;

  padding-bottom: calc(250px / 8 - 1rem / 2); /* Locate at 1/8 from the bottom */

  background: center;
  background-size: cover;

  /* align text inside */
  display: flex;
  flex-direction: column-reverse;
}

/* In-page Nav */
.in-page-nav {
  width: 100%;
  margin-top: 1rem;
  padding-top: 0.5rem;
  text-align: right;
}

.in-page-nav a {
  color: #eeeeee;
}

/* Slick */
.slick-prev, .slick-next {
  opacity: 0.3;
}

.slick-dots li button:before {
  color: #eeeeee !important;
}

/* Footer and Home SNS Icons */
img.sns-twitter{
  width: 20px;
  height: 16px;
  opacity: 0.5;
  margin: 5px 0 0 5px;
  vertical-align: middle;
}

img.sns-facebook{
  width: 20px;
  height: 20px;
  opacity: 0.5;
  margin: 5px 0 0 10px;
  vertical-align: middle;
}

img.sns-youtube{
  width: 24px;
  height: 16px;
  opacity: 0.5;
  margin: 5px 0 0 12px;
  vertical-align: middle;
}

img.sns-opacity-high{
  opacity: 0.9;
}

/* Misc */
li.nobullet{
  list-style: none;
}

.transparent-box {
  border: 3px solid #eeeeee;
  border-radius: 12px;
  opacity: 0.75;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* button */
button.mini {
  border: 2px solid transparent;
  background: #4a4648;
  color: #d0d0d0;
  border-radius: 5px;
  width: 7rem;
  padding: 0.2rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
}

button.mini:hover {
  border: 2px solid #d0d0d0;
  background: transparent;
  transition: color 0.5s;
  transition: background 0.5s;
  transition: border 0.5s;
}

/* =====  2 Toolboxes  ===================================== */
/* -----    2.1 Text Toolbox  ------------------------------------------- */

.text-small {
  font-size: 0.75rem;
}

.text-extra-small {
  font-size: 0.6rem;
}

.text-light-grey { color: #aeacad; }
.text-dark-grey  { color: #4a4648; }

.drop-cap::first-letter {
  font-size: 4rem;
  float: left;
  margin-top: 0.5rem;
  padding-right: 0.75rem;
}

.drop-cap::after {
  content: " ";
  display: block;
  clear: both;
}

/* -----    2.2 Position Toolbox  ------------------------------------------- */

.align-center {
  margin: 0 auto;
  text-align: center;
}

.center {
  margin: 0 auto;
  text-align: center;
  max-width: 640px;
}

.left {
  width: 100%;
  text-align: left;
}

.right {
  width: 100%;
  text-align: right;
}

.vertical-align-middle{
  vertical-align: middle;
}

.float-left{
  float: left;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

/* -----    2.3 Multi-column Toolbox  ------------------------------------------- */

/* Common */
.col1-wrapper, .col2-wrapper, .col3-wrapper,
.col4-wrapper, .col5-wrapper, .col6-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  width: 100%;
}

.col1-wrapper h2, .col2-wrapper h2, .col3-wrapper h2,
.col4-wrapper h2, .col5-wrapper h2, .col6-wrapper h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.col1-wrapper #section-0 h2, .col2-wrapper #section-0 h2, .col3-wrapper #section-0 h2,
.col4-wrapper #section-0 h2, .col5-wrapper #section-0 h2, .col6-wrapper #section-0 h2 {
  margin-top: 1rem;
}

/* Column variations */
.col1-wrapper > * { flex-basis: 100% ; }
.col2-wrapper > * { flex-basis: calc( (100% - 1 * 2rem) / 2 ); }
.col3-wrapper > * { flex-basis: calc( (100% - 2 * 2rem) / 3 ); }
.col4-wrapper > * { flex-basis: calc( (100% - 3 * 2rem) / 4 ); }
.col5-wrapper > * { flex-basis: calc( (100% - 4 * 2rem) / 5 ); }
.col6-wrapper > * { flex-basis: calc( (100% - 5 * 2rem) / 6 ); }
                  /* (100% - total gaps) / # of cols */
.flexbox .col6-wrapper * {
  min-width: 0; /* unlimit 150px min-width */
}


/* Switching on small screens */
@media screen and (max-width: 800px) { /* 4-col layout */
  .col5-wrapper > *, .col6-wrapper > * {
    flex-basis: calc( (100% - 2 * 1rem - 3 * 2rem) / 4 - 2px);
  }
}
@media screen and (max-width: 650px) { /* 3-col layout */
  .col4-wrapper > *, .col5-wrapper > *, .col6-wrapper > * {
    flex-basis: calc( (100% - 2 * 1rem - 2 * 2rem) / 3 - 2px);
  }
}
@media screen and (max-width: 550px) { /* 2-col layout */
  .col3-wrapper > *, .col4-wrapper > * {
    flex-basis: calc( (100% - 2 * 1rem - 1 * 2rem) / 2 - 2px);
  }
}
@media screen and (max-width: 480px) { /* 1-col layout */
  .col1-wrapper > *, .col2-wrapper > *, .col3-wrapper > * {
    flex-basis: 100% ;
  }
}
@media screen and (max-width: 320px) { /* 1-col layout (smaller screens) */
  .col4-wrapper > * {
    flex-basis: 100% ;
  }
}

/* clearfix */
.col1-wrapper::after, .col2-wrapper::after, .col3-wrapper::after,
.col4-wrapper::after, .col5-wrapper::after, .col6-wrapper::after {
  content: " "; display: block; clear: both;
}







/* -----    2.4 Margin, Padding and Border Toolbox  ------------------------------------------- */

/* Margins */
.margin-top-extra-large { margin-top: 3.5rem;    }
.margin-top-large       { margin-top: 2rem;      }
.margin-top-medium      { margin-top: 1rem;      }
.margin-top-small       { margin-top: 0.5rem;    }
.margin-top-zero        { margin-top: 0;         }

.margin-bottom-medium   { margin-bottom: 1rem;   }
.margin-bottom-small    { margin-bottom: 0.5rem; }

.margin-left            { margin-left: 1rem;     }
.margin-right           { margin-right: 1rem;    }

/* Paddings */
.padding-left           { padding-left: 20px;    }
.padding-right          { padding-right: 20px;   }

/* Borders */
.border-top             { border-top: 1px solid #4a4648; }

/* -----    2.5 Background Toolbox  ------------------------------------------- */

.background-dark-gray {
  background: #4a4648;
}

.glow:hover {
  box-shadow: 0px 0px 10px 12px rgba(255,255,255,0.95) inset;
  transform: scale(1.05);
  transition: transform 0.25s ease-out;
  transition: box-shadow 0.25s ease-out;
}

/* -----    2.6 Grid System Toolbox  ------------------------------------------- */

.nopadding {
  padding: 0;
}

.col-wrapper {
  width: calc(100% + 1rem);
  margin-top: 1rem;
  margin-left: -1rem;
}

.col-wrapper-nomargin {
  width: 100%;
  margin-left: 0;
}

.col-wrapper::after {
  /* clearfix */
  content: " ";
  display: block;
  clear: both;
}

/* old */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  column-gap: 1rem;
  row-gap: 25px;
}

.grid-container-180 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}

.grid-item {
  border-radius: 10px;
  overflow:hidden;
  color: #ffffff;
}

.grid-item figure {
  position: relative;
  width: 100%;
}

.grid-item figure img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.grid-item header {
  width: 100%;

  position: absolute;
  left: 0px;
  bottom: 0px;
}

.grid-item header div {
  display: none;
}

.grid-item h3 {
  color: #ffffff;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;

  text-shadow: 0px 2px 4px #000000;

  position: absolute;
  left: 10px;
  bottom: calc(10px + 1.2rem);
}

/* date */
.grid-item-sub{
  font-size: 0.8rem;
  font-weight: 200;
  opacity: 0.5;
  text-shadow: 0px 2px 4px #000000;
  margin-bottom: 0.5rem;
}

.grid-item-sub i {
  margin: 0 7px 0 0;
}



/* VIDEOS */
.videoWrapper .video {
  width: 640px;
  height: 360px;

  background-color: #231c1e;
  border: 2px solid #231c1e;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}

.videoWrapper p {
  display: block;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* switching at 640px as it's the normal video width */
@media screen and (max-width: 640px) {

  .videoWrapper .video {
    width: 320px;
    height: 180px;
  }

  .videoWrapper p {
    width: 320px;
  }

}


/* Form ------------------------------------------- */
.signup-form{
  margin-top: 2rem;
}

.signup .form-element{
  margin-top: 1rem; /* space between elements */
}

.signup .form-element-label {
  width: 50%;
  vertical-align: top;
  text-align: right;
  display: inline-block;
}

.signup .form-element-content {
  width: 40%;
  margin-left: 1rem;
  vertical-align: top;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #231c1e;
  background-color: #eeeeee;
}

.signup .form-success .form-element-content{
  /* revert colors on result screen */
  color: inherit;
  background-color: inherit;
}

.signup .form-element-content label{
  margin-right: 1rem; /* space between radio options */
}

.signup .form-element-content > * {
  display: inline; /* align radio options */
}

.signup .info{
  color: #999999;
}

.signup .honey{
  display: none; /* hide bot trap */
}

.signup .button{
  display: inline-block;
  margin: 2.5rem calc((100% - 200px)/2) 0 calc((100% - 200px)/2);
  width: 200px;
  border: solid 2px #eeeeee;
  color: #eeeeee;
}

.signup .message{
  margin-top: 2em;
  padding: 0.25em;
  color: #eeeeee;
  border: solid 3px #63dd47;
  background-color: #449944;
  font-weight: 400;
}

.signup .alert{
  margin-top: 2em;
  border: solid 2px #ff6347;
  background-color: #994444;
  font-weight: 400;
}


/* form - mobile */
@media screen and (max-width: 480px) {

  /* extra space inbetween */
  .signup .form-element{
    margin-top: 1.5rem;
  }
  /* full width */
  .signup .form-element-label,
  .signup .form-element-content {
    width: 100%;
  }
  /* cancel rigt align */
  .signup .form-element-label{
    text-align: left;
  }
  /* cancel margin */
  .signup .form-element-content{
    margin-left: 0;
  }
  /* enlarge button for tap devices */
  .signup .button{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}


.flexbox.program{
  justify-content: space-around;
  margin-left: -3rem; /* negative margin for the leftmost track */
}

.program-track{
  flex-grow: 1;
  max-width: 640px;
  margin-left: 3rem;
}

.program-track-header{
  position: sticky;
  top: 4.3rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  z-index: 80;
  background: #231c1e;
  opacity: 0.8;
}

.program-track-header h3{
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (max-width: 480px) {

  .program-track-header{
    top: 5.8rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .program-track-header h3{
    font-size: 1rem;
    font-weight: 600;
  }
}

.program-chart-wrapper{
  position: relative;
  margin-top: 1rem;
  width: 100%;
}

.program-session {
  display: block;
  list-style: none;
  position: absolute;
  top: 0px; left: 0px;
  width: 100%;
  border-radius: 0.3rem;
  padding: 0.25rem;
  background: linear-gradient(#3a3638, #231c1e);
}

.program-session-title{
  font-weight: 400;
}

/*
White: #eeeeee
Text White: #d0d0d0
Black: #231c1e
Dark Gray: #4a4648
Light Gray: #aeacad
Red: #ff6347
Light Red: #fea898
Warning: #994444
*/

.program-type-talk, .program-type-workshop, .program-type-panel{
  color: #231c1e;
  background: linear-gradient(#eeeeee, #aeacad);
  border: 0.12rem #aeacad solid;
  box-shadow: inset 0 1rem 2rem 0 #eeeeee;
}
.program-session-title{
  font-weight: 400;
}
.program-speaker-name{
  font-weight: 400;
}
.program-speaker-title{
  font-size: 0.8rem;
}
.program-type-talk.reactable:hover,
.program-type-workshop.reactable:hover,
.program-type-panel.reactable:hover:hover {
  background: #aeacad;
}

.program-type-panel{
  color: #231c1e;
  background: linear-gradient(#ffeeee, #cdaeae);
}
.program-type-guidance{
  color: #231c1e;
  background: linear-gradient(#eeeeee, #aeacad);
}
.program-type-break{
  color: #d0d0d0;
  background: linear-gradient(#4a4648, #4a4648);
}
.program-type-party{
  color: #231c1e;
  background: linear-gradient(#d0d0d0, #aeacad);
}

.program-session-biolink .action-link{
  font-size: 0.5rem;
}
.program-session-biolink .action-link div{
  margin: 1rem 0;
  padding: 0.25rem;
}

.program-session-checkbox{
  display: none;
}

/* Switch to speaker view on click */
.program-session-checkbox:checked + .program-session-label .program-session-time{
  overflow: hidden;
  flex-basis: 0%;
  transition: 0.2s;
}
.program-session-checkbox:checked + .program-session-label .program-session-title{
  display: none;
  transition: 0.2s;
}
.program-session-checkbox:checked + .program-session-label .program-session-biolink{
  display: block;
  flex-basis: 15%;
  transition: 0.2s;
}
.program-session-checkbox:checked + .program-session-label .program-speaker-name{
    display: block;
}
.program-session-checkbox:checked + .program-session-label .program-speaker-title{
    display: block;
}

/* Restore to normal view on click */
.program-session-checkbox + .program-session-label .program-session-time{
  flex-basis: 15%;
  transition: 0.2s;
}
.program-session-checkbox + .program-session-label .program-session-title{
  display: block;
  transition: 0.2s;
}
.program-session-checkbox + .program-session-label .program-session-biolink{
  display: none;
  flex-basis: 0%;
  transition: 0.2s;
}
.program-session-checkbox + .program-session-label .program-speaker-name{
    display: none;
}
.program-session-checkbox + .program-session-label .program-speaker-title{
    display: none;
}

.program-session{
  display: flex;
}

.program-session-time{
  flex-basis: 15%;
}

.program-session-image{
  flex-basis: 12.5%;
}

.program-session-image img{
    border-radius: 0.3rem;
    height: 3.75rem;
    object-fit: cover;
}

.program-session-content{
  flex-basis: 72.5%;
  padding: 0 1rem;
}


/* Workshop Sign-up ------------------------------------------- */

/* Medium Gray:#8e8c8d
Dark Gray:  #4a4648
Black:      #231c1e */
.workshop-single{
  border: solid #4a4648 1px;
  margin-top: 1rem;
  padding: 0.75rem;
  color: #6a6668;
  background: #231c1e;
  border-radius: 0.75rem;
  transition: 0.5s;
}
.workshop-single.workshop-single-available{
  border: solid #8e8c8d 1px;
  color: #d0d0d0;
  background: linear-gradient(#4a4648, #231c1e);
  transition: 0.5s;
}

/* highlight on hover */
.workshop-single.workshop-single-available:hover{
  background: linear-gradient(#6a6668, #231c1e);
  transition: 0.5s;
}

/* highlight when selected */
.workshop-checkbox:checked + .workshop-label .workshop-single{
  background: linear-gradient(#aeacad, #4a4648);
  color: #ffffff;
  transition: 0.5s;
}
.workshop-checkbox:checked + .workshop-label .workshop-single-checked::after{
  content: "✔︎";
}
.workshop-checkbox:checked + .workshop-label .workshop-info-instruction{
  display: block;
}

.workshop-single-wrapper::after{
  /* clear fix */
  content: " ";
  display: block;
  clear: both;
}

.workshop-checkbox{
  display: none;
}

.workshop-single-leftwrapper{
  width: 50px;
  float: left;
}

.workshop-single-centerwrapper{
  width: calc( (100% - 50px) / 2 );
  float: left;
}

.workshop-single-rightwrapper{
  width: calc( (100% - 50px) / 2 );
  float: left;
  border-left: 1px #8e8c8d solid;
  padding-left: 1rem;
  height: 100%;
}

@media screen and (max-width: 480px) {
  .workshop-single-leftwrapper{
    width: 50px;
    float: left;
  }

  .workshop-single-centerwrapper{
    width: calc( 100% - 50px );
    float: left;
  }

  .workshop-single-rightwrapper{
    margin-top: 1rem;
    width: calc( 100% );
    float: left;
    border-left: none;
    padding-left: 50px;
    height: 100%;
  }
}

.workshop-single-checked{
  font-size: 1.5rem;
}

.workshop-info-title{
  font-size: 1.4rem;
  font-weight: 400;
}

.workshop-info-time{
  margin-top: 1rem;
}

.workshop-info-seats strong{
  font-size: 1.2rem;
  font-weight: 400;
}

.workshop-info-instruction{
  display: none;
  background: #d0d0d0;
  font-weight: 400;
  color: #231c1e;
  padding: 0.25rem;
  margin-top: 1rem;
}

.workshop-signup-notavailable{
  margin-top: 1rem;
  font-weight: 500;
}

.workshop-success-message{
  margin-top: 2em;
  padding: 0.25em;
  color: #eeeeee;
  border: solid 3px #63dd47;
  background-color: #449944;
  font-weight: 400;
}

.workshop-error-message{
  margin-top: 2em;
  padding: 0.25em;
  color: #eeeeee;
  border: solid 3px #ff6347;
  background-color: #994444;
  font-weight: 400;
}

.workshop-error-message ul{
  list-style: none;
}

.workshop-single-rightwrapper .workshop-info-desc{
  font-size: 0.9rem;
}

.workshop-attendee{
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 10px #d0d0d0 solid;
  font-size: 1.2rem;
  font-weight: 400;
}
.workshop-attendee::after{
  /* clear fix */
  content: " ";
  display: block;
  clear: both;
}

.workshop-attendee-element label{
  float: left;
  width: 50%;
}
.workshop-attendee-element input{
  float: left;
  width: 50%;
  background: #eeeeee;
  border: 1px solid #231c1e;
}

.workshop-attendee-honey{
  display: none;
}

.workshop-register-button{
  margin-top: 1rem;
  border: #aeacad 2px solid;
  color: #aeacad;
  float: right;
  padding-left: 2rem;
  padding-right: 2rem;
}

.workshop-nextaction{
  margin-top: 1rem;
}

.workshop-nextaction a{
  color: #d0d0d0;
}
