html, body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Prompt', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-fg-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  background: var(--color-highlight);
}

#__next {
  height: 100%;
}

/* NEW ADDITIONS */
.dashed-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, var(--color-dash) 50%, rgba(255, 255, 255, 0) 0%);
  background-size: 6px var(--dashed-line-height);
  background-position: 0% 50%;
  background-repeat: repeat-x;
  width: calc(100% - 7px);
  padding-top: 24px;
  padding-bottom: 24px;
}

.dashed-line.mobile-shrink {
  padding-bottom: 0;
  background-position: 0% 100%;
}

.dashed-line.section-line {
  width: calc(100% - 60px);
  margin-left: 33px;
  background-position: left;
}

.dashed-line.medium-line {
  width: calc(100% - 44px);
  margin-left: 23px;
  background-position: left;
}

.debugItem {
  border: var(--border-debug);
}

.navProfileSpan {
  position: absolute;
  top: -40px;
}

.navProfileSpanMedium {
  position: absolute;
  top: -40px;
}

.navProfileSpanMobile {
  position: absolute;
  top: calc(-1 * var(--nav-profile-height) + 45px);
}

.profileMargin {
  margin-left: var(--profile-margin);
}

.veiled {
  display: none;
  animation: 0.4s;
}

.display-flex {
  display: flex;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.section-buttons {
  display: flex;
  position: absolute;
  right: 30px;
  top: -4px;
  gap: 5px;
}

.section-buttons.medium {
  display: flex;
  position: absolute;
  right: 20px;
  top: -4px;
  gap: 5px;
}

.section-buttons.mobile {
  right: 20px;
  top: -10px;
  gap: 18px;
}

/* */

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
select:focus,
textarea {
  /* font-size: initial !important; */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.wrapper {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

.wrapper > * {
  font-size: 1rem;
  line-height: 1.2;
}

.alpha-0 {
  opacity: 0;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hidden {
  visibility: hidden;
}

.fixed-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.absolute-fill {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

.text-right {
  text-align: right;
}

.content-center {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.content-wrap {
  flex-wrap: wrap;
}

.content-no-wrap {
  flex-wrap: nowrap;
}

.content-horizontal {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.content-vertical {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

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

.content-justify-start {
  justify-content: flex-start;
}

.content-justify-space-between {
  justify-content: space-between;
}

.content-justify-end {
  justify-content: flex-end;
}

.content-align-center {
  align-items: center;
}

.content-align-stretch {
  align-items: stretch;
}

.content-align-start {
  align-items: flex-start;
}

.content-align-end {
  align-items: flex-end;
}

.content-self-center {
  align-self: center;
}

.content-self-start {
  align-self: flex-start;
}

.content-self-end {
  align-self: flex-end;
}

.content-self-stretch {
  align-self: stretch;
}

.fill {
  flex: 1;
}

.no-shrink {
  flex-shrink: 0;
}

.wrap {
  flex-wrap: wrap;
}

.font-normal {
  font-weight: normal;
}

.font-ultralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-book {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-heavy {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-italic {
  font-style: italic;
}

.height-auto {
  height: auto;
}

.width-100 {
  width: 100%;
}

.width-auto {
  width: auto;
}

.wide-screen {
  position: relative;
}

.wide-screen:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.wide-screen > .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.square {
  position: relative;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.square > .content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.circle {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.circle:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.circle > .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.tag {
  position: relative;
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 82px;
  height: 20px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid var(--color-fg-title);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.transition-ease {
  transition: all .15s ease;
}

.clickable {
  cursor: pointer;
}

.mobile-link {
  cursor: pointer;
}

.link {
  cursor: pointer;
}

.link.red {
  color: var(--color-red);
}

.link:hover {
  color: var(--color-add-edit);
}

.link.blue:hover {
  color: var(--color-blue);
}

.tab {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid var(--color-stud-name);
  background: var(--color-transparent);
  color: var(--color-stud-name);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.tab.align-left {
  padding: 0 22px;
  justify-content: left;
}

.tab.expandable {
  width: unset;
  min-width: 142px;
}

.tab:hover,
.tab.selected {
  background: var(--color-stud-name);
  color: var(--color-light);
  border-color: var(--color-stud-name);
}

.tab.disabled,
.tab.disabled:hover {
  background: var(--color-transparent);
  color: var(--color-student-no-content);
  border-color: var(--color-student-no-content);
  cursor: unset;
}

.popUp-enter {
  opacity: 0;
}
.popUp-enter-active {
  opacity: 1;
  transition: opacity .3s ease;
}
.popUp-exit {
  opacity: 1;
}
.popUp-exit-active {
  opacity: 0;
  transition: opacity .3s ease;
}

.button {
  display: flex;
  min-width: 124px;
  height: 36px;
  border-radius: 18px;
  padding: 0 16px;
  font-size: 0.8125rem;
  color: var(--color-light);
  cursor: pointer;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.button.no-fixed-width {
  min-width: unset;
}

.button.disabled {
  background: var(--color-light-gray);
  color: var(--color-fg-normal);
}

.button.green {
  background: var(--color-pop-fill-send);
/*var(--color-green);*/
}

.button.red {
  background: var(--color-pop-fill-cancel);
/*var(--color-red);*/
}

.button.blue {
  background: var(--color-blue);
}

.floating-element {
  box-shadow: 0px 2px 4px var(--color-black-alpha20);
}

.floating-box {
  padding: 20px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0px 2px 4px var(--color-black-alpha20);
  background: var(--color-light);
}

.floating-box .title {
  font-size: 1.5rem;
  line-height: 2.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-dark);
}

.no-wrap {
  white-space: nowrap;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  border: 0;
  font-family: 'Prompt', 'Arial', sans-serif;
}

select, input, button, textarea {
  outline: none;
}

select {
  width: 114px;
}

textarea {
  display: block;
  width: 100%;
  outline: none;
  border-radius: 20px;
  border: 1px solid var(--color-gray);
  box-sizing: border-box;
  padding: 10px;
  font-family: 'Prompt', 'Arial', sans-serif;
  font-size: 16px;
  resize: none;
}

input {
  font-family: 'Prompt', 'Arial', sans-serif;
  font-size: 16px;
  outline: none;
}


.tooltip::before,
.tooltip-arrow {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: var(--color-bg-nav-menu);
  /*box-shadow: 2px 0 2px var(--color-black-alpha25);*/
  border-top-left-radius: 4px;
  z-index: var(--z-popup);
}

.tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--color-light);
  background: var(--color-bg-nav-menu);
  box-shadow: 2px 2px 2px var(--color-black-alpha25);
  text-decoration: unset;
  text-transform: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: var(--z-popup);
  font-size: 0.8125rem;
  line-height: 0.975rem;
}

.tooltip::after {
  position: absolute;
  content: "";
  left: 0;
  top: -30px;
  width: 100%;
  min-height: 30px;
}

.tooltip > span {
  z-index: var(--z-popup-body);

}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}