@media only screen and (min-width: 1199px) {
  .mobile-info {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  body, div {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overscroll-behavior: contain;
  }

  body::-webkit-scrollbar, div::-webkit-scrollbar {
    display: none !important;
  }

  .desktop-info {
    display: none;
  }

  .mobile-info {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

}

.mobile-info .mobile-header {
  display: flex;
  width: 90vw;
  margin-bottom: 2.88vh;
  margin-top: 3.86vh;
}

.mobile-info .mobile-header .close-scan {
  margin-left: auto;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 49px;
  font-size: 1.25rem;
  text-align: center;
  border-width: 1px;
  border-radius: 3px;
  border-style: solid;
}

.mobile-info > :not(div[id*=scan-custom-component]) {
  z-index: 3;
}

.mobile-info h1.scan-title {
  line-height: 100%;
  margin-bottom: 1.6vh;
  font-weight: 600;
}

.mobile-info h2.scan-subtitle {
  line-height: 100%;
  font-weight: 400;
}

.mobile-info form {
  position: absolute;
  width: 90vw;
  z-index: 3;
}

.mobile-info form .modal-scan-types--chose-drink {
  display: grid;
  grid-template-columns: repeat(auto-fit, 122px);
  justify-content: center;
  gap: 10px;
  grid-gap: 10px;
}

.mobile-info form .modal-scan-types--drink-option {
  display: flex;
  align-items: center;
  width: 100%;
  height: 28px;
}

.mobile-info form .modal-scan-types--chose-drink input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 122px;
  height: 28px;
  border-style: solid;
  display: grid;
  place-items: center;
  position: absolute;
  transition: 200ms background-color ease-in-out, 200ms border-color ease-in-out; 
}

.mobile-info form .modal-scan-types--chose-drink input[type="radio"]:checked + label {
  padding: 0px 12px 0px 8px;
  line-height: 100%;
}

.mobile-info form .modal-scan-types--chose-drink label {
  padding: 0px 12px;
  width: 100%;
  line-height: 80%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.mobile-info form .modal-scan-types--chose-drink label::before {
  content: '\ea10';
  opacity: 0;
  width: 0;
  position: relative;
  left: -5000%;
  transition: 200ms opacity ease-in-out, 200ms width ease-in-out;
  font-family: 'Icomoon';
}

.mobile-info form .modal-scan-types--chose-drink input[type="radio"]:checked + label::before {
  opacity: 1;
  margin-right: 4px;
  left: 0;
}


[id*=scan-container-custom-component] .scan-loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms ease-in-out;
}

[id*=scan-container-custom-component] .scan-loader .spinner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


[id*=scan-container-custom-component] .scan-loader .spinner-container span {
  display: block;
  height: 50px;
  width: 50px;
  position: relative;
  border-width: 4px;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
  animation: button-loading-spinner 1s ease infinite;
}

[id*=scan-container-custom-component] .scan-loader.is-loading {
  opacity: 1;
  pointer-events: inherit;
}

@keyframes button-loading-spinner {
  to {
  transform: rotate(1turn);
  }
}

@keyframes loading {
  0%,
  20%,
  80%,
  100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.5);
  }
}