@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-BoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Athletics";
  src: url("athletics/Athletics-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
html, body {
  margin: 0px;
  outline: none;
  width: 100vw;
  height: 100vh;
  background-color: white;
  font-family: "Athletics", sans-serif;
  overflow: hidden;
}

#org {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: space-around;
}

.circle {
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  position: relative;
  display: block;
  transform: scale(1);
  transition: all 0.5s ease;
  opacity: 1;
  z-index: 3;
}
.circle .circle-inner, .circle .choosing-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}
.circle .circle-inner .orbit, .circle .circle-inner .level, .circle .choosing-overlay .orbit, .circle .choosing-overlay .level {
  position: relative;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 0px 25px rgba(0, 0, 0, 0);
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  display: flex;
}
.circle .circle-inner .orbit:nth-child(1), .circle .circle-inner .level:nth-child(1), .circle .choosing-overlay .orbit:nth-child(1), .circle .choosing-overlay .level:nth-child(1) {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.02), 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.02);
}
.circle .circle-inner .orbit:nth-child(2), .circle .circle-inner .level:nth-child(2), .circle .choosing-overlay .orbit:nth-child(2), .circle .choosing-overlay .level:nth-child(2) {
  top: -90%;
  left: 10%;
  width: 80%;
  height: 80%;
  box-shadow: inset 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.04), 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.04);
}
.circle .circle-inner .orbit:nth-child(3), .circle .circle-inner .level:nth-child(3), .circle .choosing-overlay .orbit:nth-child(3), .circle .choosing-overlay .level:nth-child(3) {
  top: -160%;
  left: 20%;
  width: 60%;
  height: 60%;
  box-shadow: inset 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.06), 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.06);
}
.circle .circle-inner .orbit:nth-child(4), .circle .circle-inner .level:nth-child(4), .circle .choosing-overlay .orbit:nth-child(4), .circle .choosing-overlay .level:nth-child(4) {
  top: -210%;
  left: 30%;
  width: 40%;
  height: 40%;
  box-shadow: inset 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.08), 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.08);
}
.circle .circle-inner .orbit:nth-child(5), .circle .circle-inner .level:nth-child(5), .circle .choosing-overlay .orbit:nth-child(5), .circle .choosing-overlay .level:nth-child(5) {
  top: -240%;
  left: 40%;
  width: 20%;
  height: 20%;
  box-shadow: inset 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.1), 0px 0px 0px 2.5vh rgba(0, 0, 0, 0.1);
}
.circle .circle-inner .orbit .person, .circle .circle-inner .level .person, .circle .choosing-overlay .orbit .person, .circle .choosing-overlay .level .person {
  position: absolute;
  top: calc(50% - 2vh);
  width: 50%;
  left: 50%;
  transform-origin: 0% 50%;
  display: flex;
  justify-content: flex-end;
  border: solid 1px transparent;
}
.circle .circle-inner .orbit .person .person-inner, .circle .circle-inner .level .person .person-inner, .circle .choosing-overlay .orbit .person .person-inner, .circle .choosing-overlay .level .person .person-inner {
  width: 12vh;
  transition: all 0.5s ease;
  text-align: center;
}
.circle .circle-inner .orbit .person .person-inner .line, .circle .circle-inner .level .person .person-inner .line, .circle .choosing-overlay .orbit .person .person-inner .line, .circle .choosing-overlay .level .person .person-inner .line {
  width: 5px;
  height: 1px;
  background-color: black;
  position: absolute;
  right: 50%;
  top: 30%;
  transform-origin: right;
  opacity: 0;
  transition: all 0.1s ease;
  z-index: 1;
}
.circle .circle-inner .orbit .person .person-inner .line.hide, .circle .circle-inner .level .person .person-inner .line.hide, .circle .choosing-overlay .orbit .person .person-inner .line.hide, .circle .choosing-overlay .level .person .person-inner .line.hide {
  display: none;
}
.circle .circle-inner .orbit .person .person-inner .the-person, .circle .circle-inner .level .person .person-inner .the-person, .circle .choosing-overlay .orbit .person .person-inner .the-person, .circle .choosing-overlay .level .person .person-inner .the-person {
  transform: scale(1);
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 0.5s ease;
  width: 80%;
  margin: auto;
  opacity: 0.5;
  z-index: 2;
  top: calc(-0.6rem - 3px);
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-photo, .circle .circle-inner .level .person .person-inner .the-person .person-photo, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-photo, .circle .choosing-overlay .level .person .person-inner .the-person .person-photo {
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: solid 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 3px;
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-photo.head, .circle .circle-inner .level .person .person-inner .the-person .person-photo.head, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-photo.head, .circle .choosing-overlay .level .person .person-inner .the-person .person-photo.head {
  border-width: 5px;
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-photo .photo-holder, .circle .circle-inner .level .person .person-inner .the-person .person-photo .photo-holder, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-photo .photo-holder, .circle .choosing-overlay .level .person .person-inner .the-person .person-photo .photo-holder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-photo img, .circle .circle-inner .level .person .person-inner .the-person .person-photo img, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-photo img, .circle .choosing-overlay .level .person .person-inner .the-person .person-photo img {
  width: 100%;
  transition: all 0.5s ease;
  filter: grayscale(100%);
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-photo:hover img, .circle .circle-inner .level .person .person-inner .the-person .person-photo:hover img, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-photo:hover img, .circle .choosing-overlay .level .person .person-inner .the-person .person-photo:hover img {
  transition: all 0.5s ease;
  filter: grayscale(0%);
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-name, .circle .circle-inner .orbit .person .person-inner .the-person .person-first-name, .circle .circle-inner .orbit .person .person-inner .the-person .person-job, .circle .circle-inner .level .person .person-inner .the-person .person-name, .circle .circle-inner .level .person .person-inner .the-person .person-first-name, .circle .circle-inner .level .person .person-inner .the-person .person-job, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-name, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-first-name, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-job, .circle .choosing-overlay .level .person .person-inner .the-person .person-name, .circle .choosing-overlay .level .person .person-inner .the-person .person-first-name, .circle .choosing-overlay .level .person .person-inner .the-person .person-job {
  text-align: center;
  font-size: 0.6rem;
  font-weight: bold;
  margin-top: 2px;
  max-width: 10vh;
  text-transform: uppercase;
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-name, .circle .circle-inner .level .person .person-inner .the-person .person-name, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-name, .circle .choosing-overlay .level .person .person-inner .the-person .person-name {
  display: none;
  white-space: nowrap;
}
.circle .circle-inner .orbit .person .person-inner .the-person .person-job, .circle .circle-inner .level .person .person-inner .the-person .person-job, .circle .choosing-overlay .orbit .person .person-inner .the-person .person-job, .circle .choosing-overlay .level .person .person-inner .the-person .person-job {
  font-size: 0.45rem;
  max-width: 12vh;
  display: none;
  text-transform: none;
}
.circle .circle-inner .orbit .person .person-inner .the-person:hover, .circle .circle-inner .orbit .person .person-inner .the-person.highlight, .circle .circle-inner .level .person .person-inner .the-person:hover, .circle .circle-inner .level .person .person-inner .the-person.highlight, .circle .choosing-overlay .orbit .person .person-inner .the-person:hover, .circle .choosing-overlay .orbit .person .person-inner .the-person.highlight, .circle .choosing-overlay .level .person .person-inner .the-person:hover, .circle .choosing-overlay .level .person .person-inner .the-person.highlight {
  transform: scale(1) !important;
  transition: all 0.5s ease;
  opacity: 1;
}
.circle .circle-inner .orbit .person .person-inner .the-person.dim, .circle .circle-inner .level .person .person-inner .the-person.dim, .circle .choosing-overlay .orbit .person .person-inner .the-person.dim, .circle .choosing-overlay .level .person .person-inner .the-person.dim {
  opacity: 0.5;
}
.circle .circle-inner .orbit .person.one-vh, .circle .circle-inner .level .person.one-vh, .circle .choosing-overlay .orbit .person.one-vh, .circle .choosing-overlay .level .person.one-vh {
  width: calc(50% + 1vh);
}
.circle .circle-inner .orbit .person.two-vh, .circle .circle-inner .level .person.two-vh, .circle .choosing-overlay .orbit .person.two-vh, .circle .choosing-overlay .level .person.two-vh {
  width: calc(50% + 2vh);
}
.circle .circle-inner .orbit .person.three-vh, .circle .circle-inner .level .person.three-vh, .circle .choosing-overlay .orbit .person.three-vh, .circle .choosing-overlay .level .person.three-vh {
  width: calc(50% + 3vh);
}
.circle .circle-inner .orbit .person.four-vh, .circle .circle-inner .level .person.four-vh, .circle .choosing-overlay .orbit .person.four-vh, .circle .choosing-overlay .level .person.four-vh {
  width: calc(50% + 4vh);
}
.circle .circle-inner .orbit .person.five-vh, .circle .circle-inner .level .person.five-vh, .circle .choosing-overlay .orbit .person.five-vh, .circle .choosing-overlay .level .person.five-vh {
  width: calc(50% + 5vh);
}
.circle .circle-inner .orbit .person.six-vh, .circle .circle-inner .level .person.six-vh, .circle .choosing-overlay .orbit .person.six-vh, .circle .choosing-overlay .level .person.six-vh {
  width: calc(50% + 6vh);
}
.circle .circle-inner .orbit .person.seven-vh, .circle .circle-inner .level .person.seven-vh, .circle .choosing-overlay .orbit .person.seven-vh, .circle .choosing-overlay .level .person.seven-vh {
  width: calc(50% + 7vh);
}
.circle .circle-inner .orbit .person.eight-vh, .circle .circle-inner .level .person.eight-vh, .circle .choosing-overlay .orbit .person.eight-vh, .circle .choosing-overlay .level .person.eight-vh {
  width: calc(50% + 8vh);
}
.circle .circle-inner .orbit .person.orbit-1, .circle .circle-inner .level .person.orbit-1, .circle .choosing-overlay .orbit .person.orbit-1, .circle .choosing-overlay .level .person.orbit-1 {
  transform: scale(0.95);
}
.circle .circle-inner .orbit .person.orbit-2, .circle .circle-inner .level .person.orbit-2, .circle .choosing-overlay .orbit .person.orbit-2, .circle .choosing-overlay .level .person.orbit-2 {
  transform: scale(0.85);
}
.circle .circle-inner .orbit .person.orbit-3, .circle .circle-inner .level .person.orbit-3, .circle .choosing-overlay .orbit .person.orbit-3, .circle .choosing-overlay .level .person.orbit-3 {
  transform: scale(0.75);
}
.circle .circle-inner .orbit .person.orbit-4, .circle .circle-inner .level .person.orbit-4, .circle .choosing-overlay .orbit .person.orbit-4, .circle .choosing-overlay .level .person.orbit-4 {
  transform: scale(0.65);
}
.circle .circle-inner .orbit.epicenter, .circle .circle-inner .level.epicenter, .circle .choosing-overlay .orbit.epicenter, .circle .choosing-overlay .level.epicenter {
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.circle .circle-inner .orbit.epicenter .person, .circle .circle-inner .level.epicenter .person, .circle .choosing-overlay .orbit.epicenter .person, .circle .choosing-overlay .level.epicenter .person {
  top: calc(50% - 5vh);
  left: auto;
  width: 50%;
  opacity: 0;
}
.circle .circle-inner .orbit.epicenter .person .the-person, .circle .circle-inner .level.epicenter .person .the-person, .circle .choosing-overlay .orbit.epicenter .person .the-person, .circle .choosing-overlay .level.epicenter .person .the-person {
  width: 100%;
  transform: scale(0.7);
  opacity: 0.5;
  transition: all 0.5s ease;
}
.circle .circle-inner .orbit.epicenter .person .the-person .person-photo, .circle .circle-inner .level.epicenter .person .the-person .person-photo, .circle .choosing-overlay .orbit.epicenter .person .the-person .person-photo, .circle .choosing-overlay .level.epicenter .person .the-person .person-photo {
  border-width: 5px;
  width: 5vh;
  height: 5vh;
}
.circle .circle-inner .orbit.epicenter .person .the-person .person-name, .circle .circle-inner .orbit.epicenter .person .the-person .person-job, .circle .circle-inner .level.epicenter .person .the-person .person-name, .circle .circle-inner .level.epicenter .person .the-person .person-job, .circle .choosing-overlay .orbit.epicenter .person .the-person .person-name, .circle .choosing-overlay .orbit.epicenter .person .the-person .person-job, .circle .choosing-overlay .level.epicenter .person .the-person .person-name, .circle .choosing-overlay .level.epicenter .person .the-person .person-job {
  font-size: 0.4rem;
}
.circle .circle-inner .orbit.epicenter .person .the-person .person-name, .circle .circle-inner .level.epicenter .person .the-person .person-name, .circle .choosing-overlay .orbit.epicenter .person .the-person .person-name, .circle .choosing-overlay .level.epicenter .person .the-person .person-name {
  font-size: 0.6rem;
  font-weight: bold;
}
.circle .circle-inner .orbit.epicenter.hide-epicenter .person, .circle .circle-inner .level.epicenter.hide-epicenter .person, .circle .choosing-overlay .orbit.epicenter.hide-epicenter .person, .circle .choosing-overlay .level.epicenter.hide-epicenter .person {
  opacity: 0;
}
.circle .circle-inner .orbit .deps, .circle .circle-inner .level .deps, .circle .choosing-overlay .orbit .deps, .circle .choosing-overlay .level .deps {
  background-color: transparent;
  position: absolute;
  width: calc(240% + 40px);
  height: calc(120% + 20px);
  overflow: hidden;
}
.circle .circle-inner .orbit .dep-circle, .circle .circle-inner .level .dep-circle, .circle .choosing-overlay .orbit .dep-circle, .circle .choosing-overlay .level .dep-circle {
  background-color: transparent;
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  filter: none;
  opacity: 0.5;
  transition: all 0.5s ease;
  transform: rotate(-25deg);
}
.circle .circle-inner .orbit .dep-circle .white-circle, .circle .circle-inner .level .dep-circle .white-circle, .circle .choosing-overlay .orbit .dep-circle .white-circle, .circle .choosing-overlay .level .dep-circle .white-circle {
  background-color: white;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  position: absolute;
  top: 17.5%;
  left: 17.5%;
  transition: all 0.5s ease;
  transform-origin: center;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(25deg);
}
.circle .circle-inner .orbit .dep-circle .white-circle .dep-name, .circle .circle-inner .level .dep-circle .white-circle .dep-name, .circle .choosing-overlay .orbit .dep-circle .white-circle .dep-name, .circle .choosing-overlay .level .dep-circle .white-circle .dep-name {
  width: 90%;
  text-align: center;
}
.circle .circle-inner .orbit .dep-circle .dep-pie, .circle .circle-inner .level .dep-circle .dep-pie, .circle .choosing-overlay .orbit .dep-circle .dep-pie, .circle .choosing-overlay .level .dep-circle .dep-pie {
  background-color: white;
  position: absolute;
  transform-origin: top left;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transition: all 0.001s ease;
  cursor: pointer;
  border-radius: 0px;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.circle .circle-inner .orbit .dep-circle .dep-pie-icon, .circle .circle-inner .level .dep-circle .dep-pie-icon, .circle .choosing-overlay .orbit .dep-circle .dep-pie-icon, .circle .choosing-overlay .level .dep-circle .dep-pie-icon {
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  transform-origin: 0% 50%;
  width: 50%;
  top: 50%;
  left: 50%;
  height: 0%;
  display: none;
}
.circle .circle-inner .orbit .dep-circle .dep-pie-icon img, .circle .circle-inner .level .dep-circle .dep-pie-icon img, .circle .choosing-overlay .orbit .dep-circle .dep-pie-icon img, .circle .choosing-overlay .level .dep-circle .dep-pie-icon img {
  transform-origin: center;
  display: inline-block;
  position: absolute;
  width: 25%;
  right: 13%;
  top: 27%;
}
.circle.middle-circle {
  width: 8vw;
  height: 100vh;
}
.circle.middle-circle .circle-inner.top-half {
  height: 50vh;
}
.circle.middle-circle .circle-inner.top-half .orbit {
  box-shadow: none;
  justify-content: center;
}
.circle.middle-circle .circle-inner.top-half .orbit .person {
  left: unset;
  margin: auto;
}
.circle.middle-circle .circle-inner.top-half .orbit .person .person-photo {
  width: 7vh;
  height: 7vh;
}
.circle.middle-circle .circle-inner.bottom-half {
  height: 50vh;
}
.circle.middle-circle .levels {
  flex-direction: column-reverse;
  justify-content: flex-start;
  display: flex;
}
.circle.middle-circle .levels .level {
  top: unset;
  height: unset;
  box-shadow: none;
  min-height: 15vh;
}
.circle.middle-circle .levels .level:first-child {
  margin-bottom: 10vh;
}
.circle.middle-circle .levels .level .person {
  position: relative;
  left: unset;
  margin: auto;
  transition: all 0.5s ease;
  opacity: 0.3;
}
.circle.middle-circle .levels .level .person.orbit-0, .circle.middle-circle .levels .level .person:hover {
  opacity: 1;
  transition: all 0.5s ease;
}
.circle.middle-circle .circle-0 .person.orbit-1 {
  margin-top: 7vh;
}
.circle .choosing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 5vh rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  display: flex;
  background-color: rgba(255, 255, 255, 0.6);
}
.circle .choosing-overlay .orbit.epicenter .person {
  width: unset;
  opacity: 1;
}
.circle .choosing-overlay .orbit.epicenter .person .the-person {
  opacity: 1;
  transform: scale(0.9);
  margin-top: 1vh;
}
.circle:hover {
  opacity: 1;
  transition: all 0.5s ease;
  transform: scale(1.05);
}
.circle.chosen {
  width: 90vh;
  height: 90vh;
  margin-top: -5vh;
  transition: all 0.5s ease;
  opacity: 1;
  transform: scale(1);
}
.circle.chosen.circle-one {
  margin-left: 20vw;
}
.circle.chosen.circle-two {
  margin-right: 20vw;
}
.circle.chosen .circle-inner .orbit .person .line, .circle.chosen .circle-inner .level .person .line {
  opacity: 0.5;
  transition: all 0.1s ease;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person, .circle.chosen .circle-inner .level .person .person-inner .the-person {
  transform: scale(1);
  opacity: 1;
  transition: all 0.5s ease;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person .person-name, .circle.chosen .circle-inner .level .person .person-inner .the-person .person-name {
  display: none;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person .person-first-name, .circle.chosen .circle-inner .level .person .person-inner .the-person .person-first-name {
  display: inherit;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person .person-job, .circle.chosen .circle-inner .level .person .person-inner .the-person .person-job {
  display: inherit;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person.dim, .circle.chosen .circle-inner .level .person .person-inner .the-person.dim {
  opacity: 0.3;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person.dim ~ .line, .circle.chosen .circle-inner .level .person .person-inner .the-person.dim ~ .line {
  opacity: 0;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person.highlight .person-name, .circle.chosen .circle-inner .level .person .person-inner .the-person.highlight .person-name {
  display: inherit;
  display: none;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person.highlight .person-first-name, .circle.chosen .circle-inner .level .person .person-inner .the-person.highlight .person-first-name {
  display: none;
  display: inherit;
}
.circle.chosen .circle-inner .orbit .person .person-inner .the-person.hide, .circle.chosen .circle-inner .level .person .person-inner .the-person.hide {
  opacity: 0;
  transition: all 0.2s ease;
}
.circle.chosen .circle-inner .orbit .dep-circle, .circle.chosen .circle-inner .level .dep-circle {
  filter: none;
  opacity: 1;
  transition: all 0.5s ease;
}
.circle.chosen .circle-inner .orbit.epicenter .person, .circle.chosen .circle-inner .level.epicenter .person {
  opacity: inherit;
}
.circle.chosen .circle-inner .orbit.epicenter .person .the-person img, .circle.chosen .circle-inner .level.epicenter .person .the-person img {
  filter: grayscale(0%);
}
.circle.chosen.middle-circle {
  width: 10vw;
  height: 100vh;
}
.circle.chosen.middle-circle .person .person-inner .the-person .person-photo img {
  filter: grayscale(100%);
}
.circle.unchosen {
  width: 20vh;
  height: 20vh;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(1);
}
.circle.unchosen.middle-circle {
  width: 10vw;
  height: 100vh;
}
.circle.unchosen .circle-inner .orbit .person {
  opacity: 0.2;
}
.circle.unchosen .circle-inner .orbit .person .line {
  opacity: 0;
  transition: all 0.1s ease;
}
.circle.unchosen .circle-inner .orbit .person .person-inner .the-person {
  transform: scale(0.5);
  opacity: 0.5;
  transition: all 0.5s ease;
}
.circle.unchosen .circle-inner .orbit .person .person-inner .the-person .person-first-name, .circle.unchosen .circle-inner .orbit .person .person-inner .the-person .person-name, .circle.unchosen .circle-inner .orbit .person .person-inner .the-person .person-job {
  display: none;
}
.circle.unchosen .circle-inner .orbit .dep-circle {
  filter: grayscale(100%);
  opacity: 1;
  transition: all 0.5s ease;
}
.circle.unchosen .choosing-overlay .orbit.epicenter {
  display: none;
}

.logo {
  width: 10vw;
  position: fixed;
  top: 1vh;
  left: 2vh;
  max-width: 150px;
}
.logo img {
  width: 100%;
}

.legend {
  position: fixed;
  bottom: 20px;
  left: 20px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 20px;
  padding: 20px;
  z-index: 5;
}
.legend .key-item {
  margin-bottom: 10px;
}
.legend .key-item .key-value {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.legend .key-item .key-value .legend-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
.legend .key-item .key-value .legend-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}
.legend .key-item.orbit .legend-name {
  text-transform: uppercase;
}
.legend .key-item.orbit:nth-child(1) .legend-icon {
  background-color: rgba(0, 0, 0, 0.1);
}
.legend .key-item.orbit:nth-child(2) .legend-icon {
  background-color: rgba(0, 0, 0, 0.07);
}
.legend .key-item.orbit:nth-child(3) .legend-icon {
  background-color: rgba(0, 0, 0, 0.04);
}
.legend .key-item.orbit:nth-child(4) .legend-icon {
  background-color: rgba(0, 0, 0, 0.01);
}
.legend .key-item.highlight .legend-icon, .legend .key-item:hover .legend-icon {
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}
.legend .key-item.highlight .legend-name, .legend .key-item:hover .legend-name {
  color: black;
  transition: all 0.5s ease;
}
.legend .key-item.disabled {
  cursor: not-allowed;
  opacity: 0;
}
.legend .key-item.reset {
  display: none;
}
@media (hover: none) {
  .legend .key-item.reset {
    display: inherit;
  }
}

.reset-choosing {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 7vh;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 2.5rem;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 5;
}
.reset-choosing.show {
  opacity: 1;
  transition: all 0.5s ease;
}

.card-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.card-background.show {
  z-index: 4;
  opacity: 1;
  transition: all 0.5s ease;
}

.card {
  position: fixed;
  top: 10vh;
  left: 10vw;
  right: 10vw;
  bottom: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.card .card-inner {
  background-color: white;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 5vh;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60vw;
  max-width: 700px;
  position: relative;
}
.card .card-inner .person-info {
  display: flex;
  width: 100%;
}
.card .card-inner .person-info .person-photo {
  display: flex;
  flex-direction: column;
}
.card .card-inner .person-info .person-photo .photo-circle {
  width: 10vw;
  height: 10vw;
  border: darkmagenta solid 4px;
  border-radius: 50%;
  overflow: hidden;
}
.card .card-inner .person-info .person-photo .photo-circle img {
  width: 100%;
}
.card .card-inner .person-info .person-photo .reports-to {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
}
.card .card-inner .person-info .person-details {
  display: flex;
  flex-direction: column;
  padding-left: 3vw;
}
.card .card-inner .person-info .person-details .person-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.card .card-inner .person-info .person-details .person-job {
  font-weight: 1.5rem;
  font-weight: bold;
  margin-top: 5px;
}
.card .card-inner .person-info .person-details .person-contact-details {
  display: flex;
  margin-top: 16px;
  align-items: center;
}
.card .card-inner .person-info .person-details .person-contact-details .detail {
  font-size: 0.7rem;
  margin-left: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}
.card .card-inner .person-info .person-details .person-contact-details .detail:first-child {
  margin-left: 0px;
}
.card .card-inner .person-info .person-details .person-contact-details .detail svg {
  margin-right: 5px;
  font-size: 0.8rem;
}
.card .card-inner .person-info .person-details .person-contact-details .detail:visited, .card .card-inner .person-info .person-details .person-contact-details .detail:active, .card .card-inner .person-info .person-details .person-contact-details .detail:hover {
  color: black;
}
.card .card-inner .person-info .person-details .person-bio {
  margin-top: 20px;
  font-size: 0.8rem;
  margin-bottom: 40px;
}
.card .card-inner .person-info .person-details .buttons {
  display: flex;
  justify-content: flex-start;
}
.card .card-inner .person-info .person-details .buttons .button {
  padding: 12px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 0.7rem;
  margin-right: 20px;
  cursor: pointer;
}
.card .card-inner .person-info .person-details .buttons .button svg {
  margin-right: 8px;
  font-size: 0.8rem;
}
.card .card-inner .hr {
  width: 98%;
  margin: auto;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.15);
  margin-top: 40px;
  margin-bottom: 30px;
}
.card .card-inner .all-stars-title {
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
}
.card .card-inner .team {
  display: flex;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  align-items: flex-start;
}
.card .card-inner .team .member {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 20%;
}
.card .card-inner .team .member:first-child {
  margin-left: 0px;
}
.card .card-inner .team .member .member-photo {
  width: 5vw;
  height: 5vw;
  border: solid 5px #bebebe;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 5px;
}
.card .card-inner .team .member .member-photo img {
  width: 100%;
  transform: scale(1.5);
  transform-origin: 50% 5%;
  filter: grayscale(100%);
}
.card .card-inner .team .member .member-name, .card .card-inner .team .member .member-job {
  font-weight: bold;
  color: #bebebe;
  margin-bottom: 2px;
  font-size: 0.8rem;
  text-align: center;
}
.card .card-inner .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}
.card.show {
  transition: all 0.5s ease;
  z-index: 10;
  opacity: 1;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  opacity: 1;
  z-index: 10;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-overlay.hide {
  opacity: 0;
  z-index: 0;
  transition: all 0.5s ease;
}
.loading-overlay .circle.unchosen {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite running;
}

.contact-card {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.contact-card.show {
  display: flex;
}
.contact-card.show .contact-card-inner {
  position: relative;
  padding: 20px;
  background-color: white;
  width: 20vw;
  max-width: 420px;
  min-width: 300px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.contact-card.show .contact-card-inner .inner-group {
  display: flex;
  flex-direction: column;
}
.contact-card.show .contact-card-inner .top-row, .contact-card.show .contact-card-inner .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}
.contact-card.show .contact-card-inner .top-row img, .contact-card.show .contact-card-inner .bottom-row img {
  width: 25%;
}
.contact-card.show .contact-card-inner .top-row .refill, .contact-card.show .contact-card-inner .bottom-row .refill {
  font-weight: normal;
}
.contact-card.show .contact-card-inner .profile-image-row {
  width: 100%;
  text-align: center;
  margin-top: 4vh;
  position: relative;
}
.contact-card.show .contact-card-inner .profile-image-row img {
  width: 80%;
  margin: auto;
}
.contact-card.show .contact-card-inner .profile-image-row .white-gradient {
  height: 40%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, #fff 75%);
}
.contact-card.show .contact-card-inner .bottom-row {
  margin-top: 2vh;
  padding: 0px 20px;
}
.contact-card.show .contact-card-inner .bottom-row img {
  width: 13%;
  min-width: 40px;
  max-width: 70px;
}
.contact-card.show .contact-card-inner .bottom-row .soft-text {
  font-weight: bold;
  font-size: 0.8rem;
  opacity: 0.7;
}
.contact-card.show .contact-card-inner .details-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -50px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.contact-card.show .contact-card-inner .details-row .name {
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-weight: 900;
  letter-spacing: 2px;
  max-width: 90%;
}
.contact-card.show .contact-card-inner .details-row .job-title {
  font-size: 1.2rem;
  font-weight: normal;
}
.contact-card.show .contact-card-inner .qr-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.contact-card.show .contact-card-inner .qr-row img {
  width: 40%;
}
.contact-card.show .contact-card-inner .qr-row .scan-me-cta {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
  border-radius: 5px;
  margin-top: 7px;
  position: relative;
}
.contact-card.show .contact-card-inner .qr-row.with-margin {
  margin-top: 40px;
}
.contact-card.show .contact-card-inner .qr-row.with-margin .sep {
  margin: 20px 0px;
}
.contact-card.show .contact-card-inner .qr-row.with-margin .button {
  background-color: #00AE6F;
  padding: 10px;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}
.contact-card.show .contact-card-inner .contact-card-options {
  position: absolute;
  left: calc(100% + 15px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 30vw;
}
.contact-card.show .contact-card-inner .contact-card-options .contact-card-buttons {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-card.show .contact-card-inner .contact-card-options .contact-card-buttons .cc-button {
  margin-bottom: 15px;
}
.contact-card.show .contact-card-inner .contact-card-options .download-options {
  display: flex;
  flex-direction: column;
}
.contact-card.show .contact-card-inner .contact-card-options .download-options .download-option {
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 0.8rem;
}
.contact-card.show .contact-card-inner .contact-card-options .download-options .download-option:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.contact-card.show .contact-card-inner.dark-card {
  background-color: #002639;
  color: #00AE6F;
}
.contact-card.show .contact-card-inner.dark-card .details-row {
  margin-top: 50px;
}
.contact-card.show .contact-card-inner.dark-card .qr-row img {
  border: solid 10px white;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact-card.show .contact-card-inner.dark-card .bottom-row .soft-text {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */