/* SECTION Basic */

/* ANCHOR Media Query */

@media (min-width: 1024px) {
}

@media (max-width: 1023px) {
}

@media (max-width: 767px) {
}

@media (min-height: 901px) and (min-width: 1024px) {
}

@media (max-height: 900px) and (min-width: 1024px) {
}

@media (max-height: 900px) and (min-width: 1024px) {
}

html,
input:-webkit-autofill::first-line {
  font-family: var(--font-family);
}

body {
  background-color: var(--bg);
  height: 100%;
  color: var(--blue-darker);
}

/* ANCHOR Selection */

*::selection {
  background: var(--blue-darker-25);
}

/* !SECTION */

/* SECTION Scrollbars */

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--white-25);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-on-light);
  cursor: pointer;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue-darker);
  cursor: pointer;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  * {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -ms-scrollbar-highlight-color: transparent;
    scrollbar-highlight-color: transparent;
    -ms-scrollbar-arrow-color: var(--scroll-on-light);
    scrollbar-arrow-color: var(--scroll-on-light);
    -ms-scrollbar-face-color: var(--scroll-on-light);
    scrollbar-face-color: var(--scroll-on-light);
  }
}

@supports (scrollbar-width: thin) {
  body {
    scrollbar-color: var(--scroll-on-light) var(--white);
    scrollbar-width: thin;
  }
}

/* !SECTION */

/* SECTION Loader */

/* ANCHOR Animation */

@keyframes dotAnimation {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.loader.horizontal {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .dot {
  border-radius: 100%;
  display: inline-block;
  margin: 2px;
  animation: dotAnimation 1.4s infinite ease-in-out both;
}

.loader .dot.onDark {
  background-color: var(--white);
}

.loader .dot.onLight {
  background-color: var(--blue-darker);
}

.loader .dot.one {
  animation-delay: -0.32s;
}

.loader .dot.two {
  animation-delay: -0.16s;
}

.loader .dot.small {
  width: 10px;
  height: 10px;
}

.loader .dot.medium {
  width: 25px;
  height: 25px;
}

.loader .dot.large {
  width: 50px;
  height: 50px;
}

/* !SECTION */

/* SECTION Divider */

.divider {
  width: 100%;
  height: 3px;
  min-height: 3px;
  border-radius: 3px;
  background-color: var(--blue-med);
}

.divider.vertical {
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: var(--blue-med);
}

/* !SECTION */

/* SECTION Icons */

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon * {
  pointer-events: none;
}

.icon svg * {
  fill: var(--blue-darker);
}

.icon.default {
  width: var(--icon-default);
  height: var(--icon-default);
}

.icon.medium {
  width: var(--icon-medium);
  height: var(--icon-medium);
}

.icon.big {
  width: var(--icon-big);
  height: var(--icon-big);
}

/* !SECTION */

/* SECTION Version */

.version {
  font-size: var(--F10);
  font-weight: var(--extra-bold);
  letter-spacing: 2px;
  color: var(--black-50);
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .version {
    bottom: 10px;
    left: 15px;
  }
}

@media (max-width: 1023px) {
  .version {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .version {
    position: fixed;
  }
}

@media (max-width: 767px) {
  .version {
    position: absolute;
  }
}

/* !SECTION */

/* SECTION Modal */

.modalWrapper {
  background: var(--white);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal {
  padding: var(--spacing-x2);
}

.modalHeader {
  text-align: right;
}

.modalBody {
  padding: var(--spacing-x1);
}

/* !SECTION */

/* SECTION Footer */

footer {
  position: fixed;
  z-index: 1;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  footer {
    bottom: 25px;
    right: 25px;
  }
}

@media (max-width: 1023px) {
  footer {
    bottom: 10px;
    right: 10px;
  }

  .logo.nordisk {
    width: 65px;
  }
}

@media (max-width: 767px) {
}

/* ANCHOR Logo */

@media (min-height: 901px) and (min-width: 1024px) {
  .logo.nordisk {
    width: 100px;
  }
}

@media (max-height: 900px) and (min-width: 1024px) {
  .logo.nordisk {
    width: 80px;
  }
}

/* !SECTION */

/* SECTION Invite link */

.inviteLink .inviteWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inviteLink .inviteWrapper .link {
  font-weight: var(--medium);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  flex: 1 1 0;
  border-radius: 35px;
  background-color: var(--grey-2);
  margin-right: 10px;
  padding: 0 10px;
  white-space: nowrap;
}

.inviteLink .inviteWrapper .link::selection {
  background-color: var(--white);
}

.inviteLink .inviteButton {
  width: 100%;
}

.inviteLink .inviteButton.rightIcon .icon {
  right: 0;
}

.inviteLink .feedback {
  font-size: var(--F12);
  font-weight: var(--medium);
  text-align: center;
  margin-top: 10px;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .inviteLink {
    width: 350px;
  }

  .inviteLink .inviteWrapper .link {
    font-size: var(--F12);
  }
}

@media (max-width: 1023px) {
  .inviteLink {
    width: 100%;
  }

  .inviteLink .inviteWrapper .link {
    font-size: var(--F11);
  }
}

/* !SECTION */

/* SECTION Avatar */

.avatar.field .label {
  text-align: center;
}

.avatar .avatarWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar .image {
  border-radius: 100%;
  overflow: hidden;
  margin: 0 10px;
}

.avatar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .avatar .image {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 1023px) {
  .avatar.field.vertical {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
  }

  .avatar.field.vertical .label {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .avatar .image {
    width: 90px;
    height: 90px;
  }

  .avatar .iconClick.small {
    width: 25px;
    height: 25px;
  }
}

/* !SECTION */

/* SECTION Info Video */

.infoVideo {
  width: 100vw;
  height: var(--app-height);
  display: flex;
  justify-content: center;
  align-items: center;
}

.infoVideo .mainWrapper {
  width: 100vw;
  height: var(--app-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black-25);
  z-index: var(--index-modal);
  pointer-events: none;
}

.infoVideo .videoBox {
  pointer-events: all;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.infoVideo .videoWrapper {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: relative;
  padding-top: 56.25%;
}

.infoVideo .videoWrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  overflow: hidden;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .infoVideo .videoBox {
    width: 860px;
    border-radius: 30px;
  }
}

@media (max-width: 1023px) {
  .infoVideo .videoBox {
    width: calc(100% - 40px);
    border-radius: 15px;
  }
}

@media (min-width: 1440px) {
  .infoVideo .videoBox {
    width: 1100px;
  }
}

@media (min-width: 1920px) {
  .infoVideo .videoBox {
    width: 1220px;
  }
}

@media (min-width: 2560px) {
  .infoVideo .videoBox {
    width: 1600px;
  }
}

@media (min-width: 3840px) {
  .infoVideo .videoBox {
    width: 1940px;
  }
}

/* !SECTION */

/* SECTION Coins */

.coin.big {
  width: 75px;
  height: 70px;
}

.coin.large {
  width: 50px;
  height: 45px;
}

.coin.medium {
  width: 45px;
  height: 40px;
}

.coin.small {
  width: 40px;
  height: 35px;
}

.coin.tiny {
  width: 20px;
  height: 15px;
}

/* !SECTION */

/* SECTION Layout */

.layout {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .layout {
    height: var(--app-height);
  }
}

@media (max-width: 1023px) {
  .layout {
    flex-direction: column;
    min-height: var(--app-height);
  }
  .layout footer {
    position: absolute;
  }
}

/* !SECTION */

/* SECTION Mobile Title */

.pageMobileTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.pageMobileTitle h2 {
  font-weight: var(--black);
  text-transform: uppercase;
}

.pageMobileTitle .icon svg * {
  fill: var(--blue-med);
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .pageMobileTitle {
    display: none;
  }
}

/* !SECTION */

