:root {
  --blue: #171a70;
  --lightblue: #9fa4c7;
  --orange: #e07c00;
  --grey: #7b7b7b;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
  opacity: 0;
  height: 0px !important;
  display: none !important;
}

html, body {
  font-family: arial,helvetica,clean,sans-serif;
  height: 100%;
  overflow: hidden;
}

.app-bar {
  position: absolute;
  width: 100%;
  background: var(--blue);
  height: 30px;
  z-index: 9999;
  border-bottom: 2px solid var(--orange);
}

.beg-text {
  width: min(720px, 100%);
  text-align: center;
  font-size: 16pt;
}

/*  onboarding shell */
.onboarding {
  display: flex;
  width: 100%;
  height: 100vh;
}

/*  LEFT PANEL  */
.left-panel {
  background: white;
  width: clamp(200px, 42vw, 750px);
  flex-shrink: 0;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  position: relative;
  /* border-right: solid var(--orange)2px; */
  border-right: solid #e4e4e4 2px;
  min-width: 200px;
  max-width: 80vw;
  overflow-x: hidden;
  overflow-y: auto;
  container: leftpanel / inline-size;
  filter: drop-shadow(1px 1px 3px #5f5f5f);
}

.panel-resize-handle, .panel-resize-handle-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  cursor: ew-resize;
  z-index: 999;
}

.panel-resize-handle:hover, .panel-resize-handle-inner:hover {
  background: var(--orange);
  opacity: 0.4;
}

#left-panel-closed {
background: var(--blue);
height: 100%;
width: 72px;
border-right: solid 2px var(--orange);
}

#open-left-panel {
  color: white;
  background: transparent;
  border: solid 1px white;
  border-radius: 6px;
  width: 65px;
  height: 26px;
  font-size: 15pt;
  /* margin-left: 10px; */
  margin-right: 10px;
  margin-top: 20px;
  cursor: pointer;
  padding: 0px;
  font-size: 15px;
}

#open-left-panel:hover {
	background-image: linear-gradient(rgba(255,255,255,0.4),transparent,rgba(255,255,255,0.5));
}

.left-panel-con {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  /* justify-content: center; */
}

.topic-panel {
	overflow: auto;
	background: #eaeaea;
	height: 100%;
	display: flex;
	flex-direction: column;
	width: 230px;
	/* margin-left: -20px; */
	padding: 8px;
	padding-left: 20px;
	position: relative;

	h1 {
		color: var(--blue);
		font-size: 16pt;
		margin-top: 32px;
		margin-bottom: 20px;
	}
}
.content-panel {
	background: #0000000f;
	height: 100%;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 480px;
	padding-left: 24px;
  	padding-right: 18px;
	overflow: auto;
}

.content-label {
	color: var(--blue);
	font: 24pt arial,helvetica,clean,sans-serif;
	margin-top: 32px;
	font-weight: bold;
}

.content-info {
	margin-top: 25px;
	margin-bottom: 25px;
	font-weight: normal;
    font: 14pt arial,helvetica,clean,sans-serif;
	border: solid 1px #d6d6d6;
	padding: 12px;
	border-radius: 6px;
	ul {
		margin-left: 20px;
	}
	h2 {
		color: var(--blue);
        font: 16pt arial, helvetica, clean, sans-serif;
        margin-bottom: 12px;
        font-weight: bold;
	}
}

.content-highlight {
	font-weight: normal;
    font: 14.5px arial,helvetica,clean,sans-serif;

	margin-top: 10px;
	background: #f9f9f9;
	padding: 20px;
	border-left: solid 3px var(--orange);
	border-radius: 6px;
}

.content-steps {
	margin-top: 15px;
	border: solid 1px #d6d6d6;
	padding: 12px;
	border-radius: 6px;

	h3 {
		color: var(--blue);
		font: 16pt arial,helvetica,clean,sans-serif;
		margin-bottom: 12px;
		font-weight: bold;
	}
	ol {
		list-style: none;
		counter-reset: awesome-counter;
	}
	li {
		margin-bottom: 16px;
		display: flex;
		align-items: center;
		counter-increment: awesome-counter;
	}
	li::before {
		content: counter(awesome-counter);
		background-color: var(--orange);
		color: white;
		font-weight: bold;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		margin-right: 5px;
		font: 14pt arial,helvetica,clean,sans-serif;
	}
}

.content-video {
  margin-top: 20px;
  height: 250px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  filter: drop-shadow(5px 5px 3px #e6e6e6);
  background: white;
}

.make-big {
  position: absolute;
  margin: auto;
  margin-top: auto;
  display: flex;
  width: 100%;
  height: 88%;
  background: transparent;
  text-align: center;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 85px;
  margin-top: -20px;
  color: transparent;
  z-index: 99999;
  cursor: pointer;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.vid-play {
  height: 185px;
  cursor: pointer;
  color: white;
  background: var(--blue);
  text-align: center;
  justify-content: center;
  display: flex;
  align-content: center;
  font-size: 60px;
  align-content: center;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  }

  .vid-title-con {
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 15px;
  }

	.vid-title {
		font-size: 13px/1.231 arial,helvetica,clean,sans-serif;
		color: var(--blue);
		font-weight: bold
	}
	.vid-dir {
		margin-top: 5px;
		font-size: 13px/1.231 arial,helvetica,clean,sans-serif;
		color: #7b7b7b;
		font-weight: normal;
	}


.content-step {
	display: block;
	margin-left: 12px;
}

/* Header row */
.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.panel-title {
  color: #ffffff;
  font-size: 18pt;
  line-height: 1.3;
  flex: 1;
  text-align: center;
  padding-bottom: 2px;
  border-bottom: solid white 1px;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.close-btn {
  background: transparent;
  border: solid black 1px;
  color: black;
  font-size: 11pt;
  width: 40px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 1px;
  z-index: 9999;
  background: transparent;
  color: white;
  border: 1px solid white;
}

.close-btn:hover {
	background-image: linear-gradient(rgba(255,255,255,0.4),transparent,rgba(255,255,255,0.5));
} 


.open-menu-btn {
  background: transparent;
  border: solid black 1px;
  color: black;
  font-size: 11pt;
  width: 94px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  position: absolute;
  left: 6px;
  top: 1px;
  z-index: 9999;
  background: transparent;
  color: white;
  border: 1px solid white;
}

.open-menu-btn:hover {
	background-image: linear-gradient(rgba(255,255,255,0.4),transparent,rgba(255,255,255,0.5));
} 

.close-menu-btn {
  background: transparent;
  border: solid black 1px;
  color: black;
  font-size: 11pt;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 1px;
  right: 8px;
  /* margin-left: 100px; */
  z-index: 9999;
  background: transparent;
  color: white;
  border: 1px solid white;
}

dialog::backdrop {
	background: rgba(0, 0, 0, 0.35);
}

/* Option grid 1 */
.topics-con {
	ul {
		list-style-type: none;
		font-size: clamp(13.5px, 3.9vw, 16px);
  		font-weight: bold;
		li.single{
			margin-left: unset;
  			cursor: pointer;
		}
		li.single span::after
		{
			content: "▶";
            font-size: 10px;
            transition: transform 0.2s;
            position: absolute;
            right: 9px;
		}

		li.single:hover {
			margin-left: unset;
  			cursor: pointer;
			color: black;
			background: #e3e3e3;
			border-radius: 6px;
			cursor: pointer;
		}
		li, details {
			cursor: pointer;
			margin-bottom: 16px;
		}
		li {
			padding: 4px;
			margin-left: 12px;
		}

		.active {
			color: black;
			background: #e3e3e3;
			border-radius: 6px;
			/* padding: 10px; */
			/* margin-right: 10px; */
		}
		.active:hover {
			color: black;
			background: #e3e3e3;
		}
	}
	.topics {

	}
	.subtopics {
		
	}

	details {
		summary.active {
			color: black;
			background: #e3e3e3;
			transition: background 20ms;
			border-radius: 6px;
			padding: 3px;
		}
		summary {
			padding: 3px;
		}
		summary:hover {
			color: black;
			background: #e3e3e3;
			transition: background 20ms;
			border-radius: 6px;
			padding: 3px;
		}
		ul {
			margin-top: 16px;
			li {
				font-weight: lighter;
				color: black;
				font: 14.5px arial,helvetica,clean,sans-serif;
			}
			li:hover {
				color: black;
				background: #e3e3e3;
				transition: background 20ms;
				border-radius: 6px;
				/* margin-right: 10px; */
			}
		}
	}

	summary {
		list-style: none;
		display: flex;
		/* justify-content: center; */
		align-items: center;
		cursor: pointer;
		gap: 5px;
		justify-content: space-between;
		position: relative;

	}
	summary::-webkit-details-marker {
		display: none;
	}
	summary::after {
		content: "▶";
		font-size: 10px;
		transition: transform 0.2s;
		position: absolute;
		right: 0;
		top: 0;
	}

	details[open] summary::after {
		transform: rotate(90deg);
	}
}

#intro-model {
  border: solid 4px #e07c00;
  padding: 0;
  background: transparent;
  background: #FFF;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: black;
  width: 640px;
  max-width: 95vw;
  margin: auto;
  background-color: #FFF;
  padding: 5px;
  z-index: 100;
  border-radius: 12px;
  padding: 27px;
  p {
	font:  20pt arial,helvetica,clean,sans-serif;
	line-height: 1.2;
	font-weight: bold;
  }

  .titlebar {
	/* background-color: #E8E8E8; */
	display: flex;
	/* cursor: move; */
	padding: 4px;
	margin-bottom: 8px;
	flex-direction: row;
		.title {
			background: #e07c00;
			padding: 6px;
			color: white;
			border-radius: 6px;
			white-space: nowrap;
			overflow: auto;
		}
	}
	
	.bottom {
		background-color: transparent;
		display: flex;
		cursor: move;
		padding: 4px;
		margin-bottom: 8px;
		flex-direction: row-reverse;
	}
}

.biocyc-intro {
  font: 18pt arial,helvetica,clean,sans-serif;
  margin-top: 60px;
  ul {
	font: 18pt arial,helvetica,clean,sans-serif;
  }
  li {
		margin-left: 10px;
		margin-bottom: 10px;
	}
}

#close-intro-btn {
  /* position: absolute;
  top: 8px;
  right: 8px; */
  border: 2px solid black;
  cursor: pointer;
  padding-left: 2px;
  padding-right: 2px;
  color: black;
  opacity: 1;
  font-weight: bold;
  margin-top: 2px;
  margin-bottom: 2px;
}

#ok-intro-btn {
  display: block;
  width: 100%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin: auto;
  margin-top: auto;
  margin-top: 25px;
  max-width: 320px;
  font-weight: 700;
}

#ok-intro-btn:hover {
	background-image: linear-gradient(rgba(255,255,255,0.4),transparent,rgba(255,255,255,0.5));
}

.stlink {
	/* border: 1px solid var(--blue); */
	/* background: var(--blue); */
	cursor: pointer;
	/* padding: 4px; */
	color: var(--blue);
	padding-bottom: 2px;
	border-bottom: 2px solid var(--blue);
	background: transparent;
	border: none;
	text-decoration-line: underline;
	font-weight: bold;
	text-decoration-thickness: from-font;
}

.showme {
	border: 1px solid var(--blue);
	background: var(--blue);
	cursor: pointer;
	padding: 4px;
	color: white;
	border-radius: 6px;
}

.showme:hover {
	background-image: linear-gradient(rgba(255,255,255,0.4),transparent,rgba(255,255,255,0.5));
}


.options-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
}

.opt-btn {
  background: var(--lightblue);
  border: 1px solid #2a2a6a;
  color: white;
  font-size: 12pt;
  padding: 5px 5px 5px 5px;
  border-radius: 9px;
  cursor: pointer;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  transition: border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.opt-btn input[type="radio"] {
  margin-bottom: 15px;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #888;
  background: darkgrey;
  transition: border-color 0.15s,background 0.15s;
}

.opt-btn input[type="radio"]:checked {
  border-color: var(--orange);
  background: white;
}

.opt-btn:hover {
  border-color: var(--orange);
}

.opt-btn:has(:checked) {
  border: 3px solid var(--orange);
  color: #ffffff;
  input {
    border: 3px solid var(--orange);
    color: white;
    background: white;
  }
}

/* Arrow option grid */
.arrow-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4px;
}

.cata-line-sep {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 80%;
  border-bottom: solid 1px white;
}

/* last 2 buttons shift to lefttwocolumns on second row */
/* .arrow-grid .arrow-btn:nth-child(4) {
  grid-column: 1;
}
.arrow-grid .arrow-btn:nth-child(5) {
  grid-column: 2;
} */

.arrow-btn {
  background: var(--lightblue);
  border: 1px solid #2a2a6a;
  color: white;
  font-size: 12pt;
  padding: 5px 4px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.15s;
  text-align: center;
}

.topics-row {
  display: flex;
  align-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  flex-direction: row;
  justify-content: center;

  .spacer {
	flex: 1
  }
}

.subtopics-row {
  display: flex;
  align-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  flex-direction: row;
  justify-content: center;

  .spacer {
	flex: 1
  }
}

.subtopics-label {
	font-size: 16pt;
	color: white;
	text-align: center;
}

/* .arrow-btn input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
} */

.arrow-btn input[type="radio"]:checked {
  border-color: var(--orange);
  background: white;
}
.arrow-btn:has(:checked) {
  & input {
    border: 3px solid var(--orange);
    color: white;
    background: white;
  }
}
.arrow-btn input[type="radio"] {
  margin-bottom: 15px;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid #888;
  background: darkgrey;
  transition: border-color 0.15s, background 0.15s;
}

.arrow-btn:hover {
  border-color: var(--orange);
}

.arrow-btn:has(:checked) {
  border: 3px solid var(--orange);
  color: #ffffff;
  .chevron {
    color: var(--orange);
  }
}

.chevron {
  font-size: 14pt;
  color: #ffffff;
}

.arrow-btn:has(:checked) .chevron {
  color: var(--orange);
}

.table-of-content {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Find label */
.cata-label {
 color: white;
  font-size: 18pt;
  text-align: center;
  padding-top: 3px;
  padding-bottom: 3px;
  /* margin: 25px; */
  /* margin-bottom: 10px !important; */
  /* margin-top: 10px; */
  margin-left: 15px;
}

/* What block */
.what-block {
  margin-left: 45px;
  margin-right: 45px;
  color: white;
  font-size: 16pt;
  margin-top: 10px;
  display: flex;
  align-content: center;
  flex-direction: column;
  margin-bottom: 5px;
  padding: 6px;

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


/* Video block */
.video-block {
  background: #000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: 380px;
  height: 225px;
  margin: auto;
}

.play-icon {
  color: #ffffff;
  font-size: 75px;
  line-height: 1;
  margin-left: 4px;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  .step-wrapper {
	margin-left: 45px;
  	margin-right: 45px;
	padding-bottom: 8px;
    border-bottom: 2px solid white;
  }
  video {
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	background: black;
  }
}

.step-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num {
  color: #ffffff;
  font-size: 22pt;
  flex-shrink: 0;
}

.step-item {
  /* background: var(--lightblue); */
  background: transparent;
  border-radius: 12px;
  padding: 6px 10px;
  flex: 1;
  text-align: center;
  /* cursor: pointer; */
}

.step-item.active {
  border: 2px solid var(--orange);
}

.step-text {
  color: #ffffff;
  font-size: 13pt;
}

.step-row {
	display: flex;
	align-items: center;
	text-align: center;
	margin: auto;
	padding-top: 10px;
	border-top: solid 1px white;
}
#toggle {
	/*
	display: flex;
	color: white;
	gap: 8px;
	*/
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 4px;
	color: white;
}

	.toggle-btn {
		cursor: pointer;
		background: var(--lightblue);
		border: 1px solid #2a2a6a;
		color: white;
		font-size: 12pt;
		padding: 5px 4px;
		border-radius: 12px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		transition: border-color 0.15s;
		text-align: center;
	}

.toggle-btn input[type="radio"]:checked {
  border-color: var(--orange);
  background: white;
}
.toggle-btn:has(:checked) {
  & input {
    border: 3px solid var(--orange);
    color: white;
    background: white;
  }
}
.toggle-btn input[type="radio"] {
  margin-bottom: 15px;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid #888;
  background: darkgrey;
  transition: border-color 0.15s, background 0.15s;
}

.toggle-btn:hover {
  border-color: var(--orange);
}

.toggle-btn:has(:checked) {
  border: 3px solid var(--orange);
  color: #ffffff;
  .chevron {
    color: var(--orange);
  }
}

.toggle-btn:has(:checked) .chevron {
  color: var(--orange);
}

/* EXAMPLES */
.examples-section {
  padding-bottom: 2px;
  margin-top: 8px;
  margin-left: 45px;
  margin-right: 45px;
}

.examples-label {
  color: white;
  font-size: 16pt;
  font-weight: bold;
  margin-bottom: 3px;
}

.examples-list {
  list-style: disc;
  padding-left: 16px;
}

.examples-list li {
  color: white;
  font-size: 10px;
  line-height: 1.6;
  a {
    border-bottom: solid white 1px;
    font-size: 15pt;
    color: white;
  }
  a:hover {
    color: var(--orange);
    text-decoration-line: none;
    border-bottom: solid var(--orange)1px;
  }
}

/*  RIGHT PANEL  */
.right-panel {
  background: #ffffff;
  /* padding: 20px 24px; */
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  align-items: center;
  flex: 1;
  overflow: auto;
  #cyc-frame {
	box-sizing: none;
	border: none;
  }
}

.video-title {
  border: 2px solid #000;
  padding: 8px 14px;
  font-size: 24pt;
  font-weight: 600;
  color: #111;
  border-radius: 2px;
  width: min(850px, 100%);
  text-align: center;
}

.media-placeholder {
  background: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: min(850px, 100%);
  aspect-ratio: 16 / 9;
}

.media-play-icon {
  font-size: 72px;
  color: #222;
  line-height: 1;
  margin-left: 8px;
}

.video-sep {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 3px;
  width: 360px;
  border-bottom: solid 2px black;
}

.body-text {
  font-size: 16pt;
  color: #333;
  line-height: 1.6;
  width: min(720px, 100%);
}

.skip {
  color: white;
  opacity: 0.75;
  font-size: 15pt;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.toggle {
	position: relative;
	display: inline-block; 
	width: 48px;
	height: 28px;
	cursor: pointer;
	input {
		opacity: 0;
		width: 0;
		height: 0;
		position: absolute;
	}
}
.track {
	position: absolute;
	inset: 0;
	background-color: cornflowerblue;
	border-radius: 999px;
	transition: background 0.2s;
}
.thumb {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 50%;
	transition: transform 0.2s;
}
.toggle input:checked ~ .track { background-color: var(--orange); }
.toggle input:checked ~ .thumb { transform: translateX(20px); }

#popout {
  z-index: 9999;
  position: absolute;
  background: black;
  width: 25px;
  height: 25px;
  left: 94%;
  top: 0;
  margin-top: 9px;
  cursor: pointer;
  opacity: 0.65;
  border-radius: 6px;
  border: none;
  img {
	width: 25px;
  	height: 25px;
  }
}
.maincata-label {
	font-size: 16pt; 
	color: white;
	text-align: center;
}

.accordion-btn {
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 6px;
  background: transparent;
  color: white;
  cursor: pointer;
}

#intro-text {
	display: flex;
  flex-direction: column;
  color: white;
  text-align: left;
  font-size: 16pt;
  border: 1px solid white;
  padding: 16px;
  border-radius: 12px;
  align-content: center;
  justify-content: center;
  min-height: 450px;
}

@media (max-width: 900px) {
  .left-panel {
    width: clamp(200px, 45vw, 480px);
  }

  .panel-title {
    font-size: 14pt;
  }

  .opt-btn,
  .arrow-btn {
    font-size: 10pt;
  }

  .video-title {
    font-size: 18pt;
  }

  .video-sep {
    width: 100%;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow: auto;
  }

  .onboarding {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .left-panel {
    width: 100% !important;
    max-width: 100%;
    border-right: none;
    border-bottom: solid var(--orange)2px;
    overflow: visible;
    position: absolute;
    z-index: 99;
	container-type: inline-size;
 	container-name: left-panel;
	border-right: 2px solid #e3e3e3;
  }


  .panel-resize-handle, .panel-resize-handle-inner {
    display: none;
  }

  .right-panel {
    padding: 16px 12px;
    width: 100%;
  }

  .video-title {
    font-size: 15pt;
    text-align: center;
  }

 
  /* .arrow-grid .arrow-btn:nth-child(4),
  .arrow-grid .arrow-btn:nth-child(5) {
    grid-column: auto;
  } */

  .steps-list,
  .examples-section {
    margin-left: 16px;
    margin-right: 16px;
  }

  #left-panel-closed {
    width: 100%;
    height: 65px;
    border-right: none;
    border-bottom: solid 2px var(--orange);
  }

  .right-panel {
		iframe {
			height: 100vh !important;
		}
	}
}

@container leftpanel (width < 665px) {
	.options-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.arrow-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@container leftpanel (width < 350px) {
	.options-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.arrow-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

video::-moz-media-controls-overlay-play-button {
	display: none !important;
}

.support-email {
  position: absolute;
  bottom: 8px;
  font-size: 12px;
  color: gray;
  background: #eaeaea;
  padding: 1px;
}
