/* @import url(fonts/roboto.css);
@import url(scrollbar.css);
@import url(colorschemes/colorscheme-va.css);
@import url(colorschemes/colorscheme-iva.css); */

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  font-family: "Roboto", Arial, sans-serif;
}

:root {
  /* Panel borders radius */
  --va-dashed-border-radius: 20px;

  --va-top-rounded: var(--va-dashed-border-radius)
    var(--va-dashed-border-radius) 0 0;
  --va-right-rounded: 0 var(--va-dashed-border-radius)
    var(--va-dashed-border-radius) 0;
  --va-bottom-rounded: 0 0 var(--va-dashed-border-radius)
    var(--va-dashed-border-radius);
  --va-left-rounded: var(--va-dashed-border-radius) 0 0
    var(--va-dashed-border-radius);
}

body {
  margin: 0;
  padding: 0;
  /* height: 100vh; */
  font-size: 20px;
  line-height: 22px;
}

p {
  margin: 0;
}

/* Layout: common styles */

.hidden,
.panel.hidden {
  display: none;
}

.small-text {
  font-size: 16px;
  color: var(--va-small-text);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  background-size: cover;
}

.panel__arrow {
  width: 18px;
  height: 30px;
}

.panel__arrow.arrow-left {
  right: 0;
  background-image: url(../assets/controls/caret_left.svg);
}

.panel__arrow.arrow-right {
  left: 0;
  background-image: url(../assets/controls/caret_right.svg);
}

.touchpoint {
  cursor: pointer;
  /* white-space: nowrap; */
}

.touchpoint.hoverable {
  cursor: help;
}

.touchpoint.clickable {
  text-decoration-line: underline;
  -moz-text-decoration-style: dashed;
  -webkit-text-decoration-style: dashed;
  -o-text-decoration-style: dashed;
  -ms-text-decoration-style: dashed;
  text-decoration-style: dashed;
}

.touchpoint.clickable.shown,
.touchpoint.hoverable:hover,
.touchpoint.hoverable.shown,
.term {
  text-decoration: none;
  background-image: linear-gradient(
    transparent 30%,
    rgba(204, 204, 204, 0.4) 60%
  );
  background-size: 100% 150%;
  background-repeat: no-repeat;
}

/* .popup-icon {
  display: block;
  position: relative;
  width: 40px;
  margin-bottom: 11px;

  float: right;
  clear: both;
  cursor: pointer;

  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  shape-outside: inset(calc(100% - 29px) 0 0);
} */
.popup-icon {
  display: block;
  position: absolute;
  top: 0;
  left: -28px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

li .popup-icon {
  left: -48px;
}

.popup-icon .info-icon {
  /* width: 20px;
  height: 20px; */
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.popup-icon:hover::after {
  position: absolute;
  /* bottom: 4px;
  right: 24px; */
  top: 10px;
  left: 10px;
  content: "Click to show pop-up info";
  background-color: var(--va-tooltip);
  border: 1px solid var(--va-fourth-panel-text);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--va-tooltip-text);
  white-space: nowrap;
  z-index: 1;
}

.popup-icon:hover::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: var(--va-popup-icon-hover);
  z-index: -1;
}

.panel__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: url(../assets/controls/close_button.svg);
  background-size: cover;
}

.blurred {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
}

/* Service panel: login, user list */

.service-panel {
  position: relative;
  margin: 20px auto;
  padding: 20px;
  justify-content: flex-start;
  align-items: center;
  color: #969696;
}

.service-panel h2,
.service-panel h3 {
  margin-top: 0;
  text-align: center;
}

.service-panel h3 {
  font-weight: 500;
}

.service-panel #logo {
  height: 20px;
  margin-bottom: 20px;
}

/* Container */

.container {
  width: 1265px;
  margin: 12px auto 0;
  position: relative;
  background-color: #fff;
}

/* Header and footer */

.header,
.footer {
  padding: 0 20px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.header {
  height: 44px;
  align-items: flex-end;
  margin-bottom: 12px;
}

/* .header #source {
  padding-left: 6.25ch;
  text-indent: -6.25ch;
} */

.footer {
  margin-top: 12px;
}

.footer .link,
.header .link a,
.header .link a:visited,
.footer .link a,
.footer .link a:visited,
.footer #legal-terms a:visited {
  color: var(--va-small-text);
  text-decoration: none;
  cursor: pointer;
}

.header .link a:hover,
.footer .link a:hover,
.footer #legal-terms:hover {
  text-decoration-line: underline;
  -moz-text-decoration-style: dashed;
  -webkit-text-decoration-style: dashed;
  -o-text-decoration-style: dashed;
  -ms-text-decoration-style: dashed;
  text-decoration-style: dashed;
  cursor: pointer;
}

.header .link.link-img {
  height: 100%;
}

.header .link.link-img img {
  height: 100%;
}

.footer #abbreviations,
.footer #licence {
  display: none;
}

/* All panels */

.panels {
  height: 824px;
  display: grid;
  grid-template-columns: 463fr 780fr;
  grid-template-rows: 1fr 1fr 140px;
  grid-gap: 22px;
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px dashed var(--va-dashed-border);
  border-radius: var(--va-dashed-border-radius);
  overflow-x: hidden;
}

.panel__caption .panel__caption-v1,
.panel__caption .panel__caption-v2 {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel__graphics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

.panel__graphics.triangle-corner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 100% 50%, 100% 100%);
  -webkit-clip-path: polygon(0 100%, 100% 50%, 100% 100%);
  z-index: -1;
  visibility: hidden;
}

.panel__graphics img {
  object-fit: contain;
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.panel__info {
  padding: 17px 22px;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.panel__info .panel__info-title {
  display: flex;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.panel__info .panel__info-title .panel__info-title-number {
  margin-right: 1ch;
}

.panel__info .panel__info-text-wrapper {
  /* height: calc(100% - 33px); */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.panel__info .panel__info-text {
  position: relative;
  padding-left: 28px;
  letter-spacing: 0.05em;
  z-index: 0;
}

/* .panel__info .panel__info-text .float-wrapper {
  display: flex;
} */

/* .panel__info .panel__info-text .float-wrapper .inner-float-wrapper {
  flex: 1;
} */

.panel__info .panel__info-text .text-wrapper {
  position: relative;
}

.panel__info .panel__info-text p:not(:last-child),
.panel__info .panel__info-text .p:not(:last-child),
.panel__info .panel__info-text .panel__info-text-column p:not(:last-child),
.panel__info .panel__info-text .panel__info-text-column .p:not(:last-child),
.panel__info .panel__info-text ul li:not(:last-child) {
  margin-bottom: 11px;
}

.panel__info .panel__info-text ul + p,
.panel__info .panel__info-text ul + .p {
  margin-top: 11px;
}

.panel__info .panel__info-text a,
.panel__info .panel__info-text a:visited {
  color: var(--va-dictionary-link);
  -moz-text-decoration-style: dashed;
  -webkit-text-decoration-style: dashed;
  -o-text-decoration-style: dashed;
  -ms-text-decoration-style: dashed;
  text-decoration-style: dashed;
}

.panel__info ul {
  margin: 0;
  padding-left: 20px;
}

/* Panel 1 (initial red) */

#panel1 {
  grid-row-start: 1;
  grid-row-end: 3;
}

#panel1 .panel__caption {
  height: 10%;
  border-radius: var(--va-top-rounded);
}

@-moz-document url-prefix() {
  #panel1 .panel__caption {
    height: 65.8px;
  }
}

#panel1 .panel__caption .panel__caption-v1,
#panel1 .panel__caption .panel__caption-v2 {
  padding: 17px 20px;
}

#panel1 .panel__caption .panel__caption-v2 {
  background-color: var(--va-first-panel);
  border-radius: var(--va-top-rounded);
}

#panel1 .panel__caption .panel__caption-v2 {
  display: none;
}

#panel1 .panel__caption .logo,
#panel1 .panel__caption .company-logo {
  height: 100%;
}

#panel1 .panel__caption .logo img,
#panel1 .panel__caption .company-logo img {
  height: 100%;
}

#panel1 .panel__graphics {
  height: 73%;
  justify-content: flex-end;
}

#panel1 .panel__graphics.triangle-corner::after {
  background-color: var(--va-first-panel);
}

/* #panel1 .panel__graphics img {
  height: 97%;
} */

#panel1 .panel__info {
  height: 27%;
  background-color: var(--va-first-panel);
  color: var(--va-first-panel-text);
  border-radius: var(--va-bottom-rounded);
}

#panel1 .touchpoint.clickable {
  text-decoration-color: var(--va-first-panel-text-underline);
}

#panel1 .touchpoint.clickable.shown,
#panel1 .touchpoint.hoverable:hover,
#panel1 .touchpoint.hoverable.shown,
.term.term-panel1 {
  background-image: linear-gradient(
    transparent 30%,
    var(--va-first-panel-highlight) 60%
  );
}

#panel1.highlighted {
  box-shadow: 0px 0px 28px 3px var(--va-first-panel-highlight);
}

/* Panel 2 (initial yellow) */

#panel2 {
  flex-direction: row;
  overflow-y: hidden;
}

#panel2 .panel__graphics {
  width: 30%;
  border-radius: var(--va-left-rounded);
  justify-content: center;
}

#panel2 .panel__graphics img {
  border-radius: 10px;
}

#panel2 .panel__graphics.triangle-corner::after {
  background-color: var(--va-second-panel);
}

#panel2 .panel__info {
  background-color: var(--va-second-panel);
  color: var(--va-second-panel-text);
  width: 70%;
  border-radius: var(--va-right-rounded);
}

#panel2 .touchpoint.clickable {
  text-decoration-color: var(--va-second-panel-text-underline);
}

#panel2 .touchpoint.clickable.shown,
#panel2 .touchpoint.hoverable:hover,
#panel2 .touchpoint.hoverable.shown,
.term.term-panel2 {
  background-image: linear-gradient(
    transparent 30%,
    var(--va-second-panel-highlight) 60%
  );
}

#panel2.highlighted {
  box-shadow: 0px 0px 28px 3px var(--va-second-panel-highlight);
}

/* Panel 3 (initial blue) */

#panel3 {
  flex-direction: row-reverse;
}

#panel3 .panel__graphics {
  width: 25%;
  justify-content: space-between;
}

#panel3 .panel__graphics.triangle-corner::after {
  background-color: var(--va-third-panel);
}

#panel3 .panel__graphics .caption {
  color: var(--va-third-panel-image-caption);
  letter-spacing: 0.05em;
  line-height: normal;
  text-align: center;
}

#panel3 .panel__graphics .caption.upper-text {
  font-size: 32px;
  font-weight: 300;
}

#panel3 .panel__graphics .caption.lower-text {
  font-size: 42px;
  font-weight: 400;
}

#panel3 .panel__graphics .image-wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  padding: 10px 0;
}

#panel3 .panel__info {
  width: 75%;
  background-color: var(--va-third-panel);
  color: var(--va-third-panel-text);
  border-radius: var(--va-left-rounded);
}

#panel3 .panel__info .panel__info-text {
  display: grid;
  justify-content: space-between;
  align-items: start;
  column-gap: 28px;
  grid-template-columns: 2fr 1fr;
}

#panel3 .touchpoint.clickable {
  text-decoration-color: var(--va-third-panel-text-underline);
}

#panel3 .touchpoint.clickable.shown,
#panel3 .touchpoint.hoverable:hover,
#panel3 .touchpoint.hoverable.shown,
.term.term-panel3 {
  background-image: linear-gradient(
    transparent 30%,
    var(--va-third-panel-highlight) 60%
  );
}

#panel3.highlighted {
  box-shadow: 0px 0px 28px 3px var(--va-third-panel-highlight);
}

/* Panel 4 (initial grey, dicitionary + (optional) abbreviations) */

#panel4 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
  justify-content: space-between;
  color: var(--va-fourth-panel-text);
  background-color: var(--va-fourth-panel);
}

#panel4 .panel__close {
  display: none;
}

#panel4 .panel__content {
  position: relative;
  height: 100%;
}

#panel4 .panel__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#panel4 .panel__background {
  display: none;
}

#panel4 .panel__controls {
  display: none;
}

#panel4 .panel__info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#panel4 .panel__info .panel__info-text-wrapper {
  justify-content: flex-start;
}

#panel4 .panel__info .panel__info-text {
  height: 100%;
  overflow-y: auto;
}

/* Pop-up */

.popup {
  position: absolute;
  top: 114px;
  left: 66px;
  right: 66px;
  height: 692px;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  /* transform: translateY(-200%); */
  transition: all 500ms ease;
}

.popup.popup-open {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  /* transform: translateY(0); */
}

.popup .popup__background {
  position: fixed;
  top: 0;
  left: 0;
  /* right: 0;
  bottom: 0; */
  width: 100vw;
  height: 100vh;
  background-color: var(--va-popup-background);
}

.popup__controls {
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.popup .popup__arrow {
  width: 20px;
  height: 37px;
  background-size: cover;
}

.popup .popup__arrow.inactive {
  /* display: none; */
  opacity: 0.1;
  cursor: auto;
}

.popup .popup__arrow.arrow-left {
  background-image: url(../assets/controls/chevron_left.svg);
  left: 0;
}

.popup .popup__arrow.arrow-right {
  background-image: url(../assets/controls/chevron_right.svg);
  right: 0;
}

.popup .popup__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: url(../assets/controls/close_button.svg);
  background-size: cover;
  z-index: 1;
}

.popup .popup__breadcrumbs {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 1;
}

.popup .popup__breadcrumbs .breadcrumb {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  background-color: transparent;
  transition: all 300ms ease;
  cursor: pointer;
}

.popup .popup__breadcrumbs .breadcrumb:not(:last-child) {
  margin-right: 15px;
}

.popup .popup__breadcrumbs .breadcrumb.active {
  background-color: rgba(196, 196, 196, 0.75);
  cursor: auto;
}

.popup .popup__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  border-radius: 20px;
  border: 2px dashed var(--va-popup-border);
  color: var(--va-popup-text);
  overflow: hidden;
  box-shadow: 8px 8px 45px rgba(0, 0, 0, 0.25);
  /* font-size: 22px; */
  line-height: 1.2;
}

/* .popup.highlighted1  .popup__content {
  border-collapse: separate;
  box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.25),
    0px 0px 28px 3px inset var(--va-first-panel-highlight);
}

.popup.highlighted2 .popup__content {
  border-collapse: separate;
  box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.25),
    0px 0px 28px 3px inset var(--va-second-panel-highlight);
}

.popup.highlighted3 .popup__content {
  border-collapse: separate;
  box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.25),
    0px 0px 28px 3px inset var(--va-third-panel-highlight);
} */

@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .popup__content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .popup.highlighted1 .popup__content {
    background: var(--va-popup-gradient1-panel1), var(--va-popup-gradient2),
      var(--va-popup-gradient3);
  }

  .popup.highlighted2 .popup__content {
    background: var(--va-popup-gradient1-panel2), var(--va-popup-gradient2),
      var(--va-popup-gradient3);
  }

  .popup.highlighted3 .popup__content {
    background: var(--va-popup-gradient1-panel3), var(--va-popup-gradient2),
      var(--va-popup-gradient3);
  }
}

@supports not (
  (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))
) {
  .popup .popup__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .popup.highlighted1 .popup__content::before {
    background: var(--va-popup-gradient1-panel1), var(--va-popup-gradient2),
      var(--va-popup-gradient3), var(--va-popup-thick-white);
  }

  .popup.highlighted2 .popup__content::before {
    background: var(--va-popup-gradient1-panel2), var(--va-popup-gradient2),
      var(--va-popup-gradient3), var(--va-popup-thick-white);
  }

  .popup.highlighted3 .popup__content::before {
    background: var(--va-popup-gradient1-panel3), var(--va-popup-gradient2),
      var(--va-popup-gradient3), var(--va-popup-thick-white);
  }
}

.popup__title {
  font-weight: 700;
  padding-left: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.popup__content-gallery-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup__content-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-transition: left 0.4s ease;
  -moz-transition: left 0.4s ease;
  -o-transition: left 0.4s ease;
  transition: left 0.4s ease;
}

.popup__content-gallery.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.popup__info {
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-left: 32px;
  padding-right: 32px;
  letter-spacing: 0.05em;
}

.popup__info br {
  display: block;
  height: 10px;
  content: "";
}

.popup__info-caption {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.popup__info-chapter {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ccc;
}

.popup__info-chapter:not(:first-of-type) {
  margin-top: 20px;
}

.popup__info-body {
  padding-right: 20px;
  overflow-y: auto;
}

.popup__info-description p {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.popup__info-image {
  margin-top: 0.5rem;
  /* text-align: center; */
}

.popup__info-image-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.popup__info-image-source {
  width: calc(50% - 0.5em);
}

.popup__info-image-source.full-width-image {
  width: 100%;
}

.popup__info-image-description:not(:empty) {
  margin-top: 1.5rem;
}

.popup__info-table-title,
.popup__info-chart-title {
  /* font-size: 22px; */
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.popup__info-table-title:not(:empty) {
  margin-top: 10px;
}

.popup__info-table-title br,
.popup__info-table br {
  height: 0!important;
  content: none;
}

.popup__info-table-wrapper,
.popup__info-chart-wrapper {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}

.popup__info-chart-wrapper {
  width: 70%;
  min-width: 250px;
}

.popup__info-table,
.popup__info-chart {
  position: relative;
  border: 1px solid #ccc;
  padding: 1em;
  max-width: 100%;
}

.popup__info-chart {
  min-width: 70%;
}

.popup__info-table::before,
.popup__info-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

.popup__info-table table {
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.02em;
  border-collapse: collapse;
  border: 1px solid #555555;
  border-width: 1px 0;
  overflow: hidden;
}

.popup__info-table table th,
.popup__info-table table td {
  text-align: center;
  padding: 6px;
  cursor: default;
}

.popup__info-table table tr td:first-child {
  text-align: left;
}

.popup__info-table table tbody tr td:not(:last-child) {
  border-right: 1px solid var(--va-popup-table-cell-border);
}

.popup__info-table table tr:not(:last-of-type) td {
  border-bottom: 1px solid var(--va-popup-table-cell-border);
}

.popup__info-table table thead {
  background-color: var(--va-popup-table-highlighted);
}

.popup__info-table table thead th {
  border-bottom: 1px solid var(--va-popup-table-header-border);
  position: relative;
}

.popup__info-table table thead tr th:not(:last-child) {
  border-right: 1px solid var(--va-popup-table-header-border);
}

.popup__info-table table thead th:hover::after {
  content: "";
  background-color: var(--va-popup-table-highlighted);
  height: 10000px;
  left: 0;
  position: absolute;
  top: -300px;
  width: 100%;
  z-index: -1;
}

.popup__info-table table tbody td.highlighted,
.popup__info-table table tbody tr.highlighted {
  background-color: var(--va-popup-table-permanent-highlighted);
}

.popup__info-table table tbody tr:hover,
.popup__info-table table tbody tr.highlighted:hover,
.popup__info-table table tbody tr:hover td.highlighted {
  background-color: var(--va-popup-table-highlighted);
}

.popup__info-table-footer {
  font-size: 16px;
  line-height: 16px;
  margin-top: 1em;
  margin-left: 6px;
}
.popup__info-table-footer:empty {
  display: none;
}

.popup__info-table-description,
.popup__info-chart-description {
  margin-top: 1em;
  padding: 0 1em;
}

/* @supports not (text-decoration-style: dashed) {
  .header .link a:hover,
  .footer .link a:hover {
    text-decoration-style: solid;
  }
  
  .touchpoint.clickable {
    text-decoration-style: solid;
  }
} */

/* @supports not (text-decoration-style: dashed) {
  * {
    text-decoration-style: solid;
  }
} */

/* Media queries for an adaptive design */

/* @media screen and (orientation: portrait) and (min-width: 769px) and (max-width: 992px) {
  html {
    transform: rotate(90deg);
    transform-origin: right top;
    width: 100vh;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    right: 0;
  }
} */

/* @media screen and (orientation: landscape) and (max-height: 576px) {
  html {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }
} */

/*
@media screen and (min-width: 577px) {
}

@media screen and (min-width: 769px) {
}

@media screen and (min-width: 993px) {
}

@media screen and (min-width: 1201px) {
}

@media screen and (min-width: 1401px) {
}
*/
