:root {
    --tesla-red: #E82127;
    --tesla-blue: #0052FF;
    --tesla-blue-hover: #0041cc;
}

html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;

    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}


* {
    -webkit-tap-highlight-color: transparent;
}


input:focus {
    outline: none;
}

.btn {
    background: #18181b;
    border-radius: 8px;
    padding: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .25em;
    transition: all .15s ease;
}
.btn:active {
    transform: scale(.95);
    background: #27272a;
}

.btn-primary {
    background-color: var(--tesla-blue) !important;
    color: white !important;
}

.btn-primary:active {
    background-color: var(--tesla-blue-hover) !important;
    transform: scale(0.96);
}

button:disabled {
    cursor: not-allowed;
    filter: grayscale(0.5);
}

#progress {
    background-color: var(--tesla-blue) !important;
}