* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

* {
    touch-action: manipulation;
}

p, button {
    font-family: 'Db-Adman-x';
}

button.btn-cta,
button.close-popup-btn-cta,
button.btn-confirm,
.footer-link
{
    text-transform: uppercase;
}

.page.full {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    max-height: 100svh;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.page-padding {
    width: 90%;
    height: 100%;
    margin: 0 auto;
}

.image-shadow img {
    width: 100%;
    /* filter: drop-shadow(0 3rem 4rem black); */
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
    display: grid;
    place-content: center;
    background-color: rgba(0,0,0,0.8);
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FDBF0D;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-bottom: 4px solid #FF3D00;
  border-left: 4px solid transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 