:root {
    color-scheme: light;
}

@font-face {
    font-family: "lufga-regular";
    src: url("/assets/fonts/Lufga/LufgaRegular.ttf");
}

@font-face {
    font-family: "lufga-light";
    src: url("/assets/fonts/Lufga/LufgaLight.ttf");
}

@font-face {
    font-family: "lufga-thin";
    src: url("/assets/fonts/Lufga/LufgaThin.ttf");
}

@font-face {
    font-family: "lufga-semibold";
    src: url("/assets/fonts/Lufga/LufgaSemiBold.ttf");
}

@font-face {
    font-family: "spacegrotesk-regular";
    src: url("/assets/fonts/SpaceGrotesk/SpaceGrotesk-Regular.otf");
}

@font-face {
    font-family: "spacegrotesk-semibold";
    src: url("/assets/fonts/SpaceGrotesk/SpaceGrotesk-Medium.otf");
}

@font-face {
    font-family: "spacegrotesk-light";
    src: url("/assets/fonts/SpaceGrotesk/SpaceGrotesk-Light.otf");
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: lufga-regular, sans-serif;
    color: #1D1950;
    background-color: white;
}

html, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, .noOverscroll {
    overscroll-behavior: none;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;

}


*:focus {
    outline: none;
}

h4 {
    font-family: spacegrotesk-semibold;
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
}

#app {
    height: 100%;
}

.dots {
    background-color: white;
    background: url("/assets/images/DotPatternBottomUp.png") no-repeat 0vw 60vh;
    background-size: 102vw;
}

.desktopBackgroundDots {
    height: 100px;
    background-image: url("/assets/images/DotPatternTopDown.png");
    background-repeat: no-repeat;
    background-size: 100% 100px;
    background-position: 0vw 60%;

}


.pageTitle {
    color: white;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 1rem;
    padding: 0 1rem 1rem;
    font-size: 28px;
    background-color: #6f67f3;
}

.pageTitle.overlapped {
    margin-bottom: -50px;
    padding-bottom: 60px;
}

.subtle-shadow {
    -webkit-box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.17);
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.17);
}

.medium-shadow {
    -webkit-box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.25);
}


.deep-shadow {
    -webkit-box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.9);
}

.bottom-shadow {
    -webkit-box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 9px -2px rgba(0, 0, 0, 0.26);
}


.spinning {
    animation-name: spinning;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spinning {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pulsing {
    animation-duration: 1500ms;
    animation-name: pulse;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-box: fill-box;
}

@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1) rotate(0deg);
    }


    50% {
        transform: scale3d(.8, .8, 1) rotate(180deg);
    }

    100% {
        transform: scale3d(1, 1, 1) rotate(360deg);
    }

}


.phoneLink {
    display: block;
    width: 100%;
    background-color: var(--ion-color-secondary);
    color: white;
    border-radius: 5px;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    margin: 5px 0;
    font-size: 12px;

}

.directionsLink {
    display: block;
    width: 100%;
    background-color: var(--ion-color-primary);
    color: white;
    border-radius: 5px;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    margin: 5px 0;
    font-size: 12px;

}


.iconVerticalSpacer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 3px;
}


ion-button {
    font-family: lufga-regular;
    text-transform: uppercase;
}
