/** tailwind - style reset */

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

img, video {
    max-width: 100%;
    height: auto;
}


img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

/* tailwind-base  */
.scrollbar-rounded-full {
    scrollbar-width: thin;

}

.overflow-hidden {
    overflow: hidden;
}

.scrollbar-thin {
    scrollbar-width: thin;
}

.scrollbar-thumb-alblue-400 {
}

.min-w-screen {
    min-width: 100vw;
}

.flex {
    display: flex !important;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.flex-row {
    flex-direction: row;
}

.items-stretch {
    align-items: stretch;
}

.min-w-full {
    min-width: 100%;
}

.h-max {
    height: max-content;
}

.min-h-full {
    min-height: 100%;
}

.flex-col {
    flex-direction: column;
}

.m-10 {
    margin: 2.5rem;
}

.grow {
    flex-grow: 1;
}

.items-center {
    align-items: center;
}

.self-center {
    align-self: center;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.gap-3 {
    gap: 0.75rem;
}

.h-16 {
    height: 4rem;
}

.w-full {
    width: 100%;
}

.w-3_4 {
    width: 75%;
}

.rounded {
    border-radius: 0.25rem;
}

.font-satoshi {
    font-family: 'Satoshi-Variable', sans-serif;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.relative {
    position: relative;
}

.cursor-pointer {
    cursor: pointer;
}

.p-4 {
    padding: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.opacity-40 {
    opacity: 0.4;
}

.h-12 {
    height: 3rem !important;
}

.w-max {
    width: max-content;
}

button.app-button:disabled {
    background: #f2f0f5;
    opacity: 1;
    color: #c9c8cc;
}

button.app-button.main-app-button:disabled {
    background: linear-gradient(152.19deg, #612cd2 12.08%, #687de7 96.81%);
    opacity: 0.3;
    color: #c9c8cc;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.h-3_4 {
    height: 75%;
}

.flex-col {
    flex-direction: column !important;
}

.justify-center {
    justify-content: center !important;
}

.h-full {
    height: 100%;
}

.justify-around {
    justify-content: space-around !important;
}

.w-fit {
    width: fit-content !important;
}

.text-center {
    text-align: center;
}

.line-height {
    line-height: 1.2;
}

.absolute {
    position: absolute;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.self-stretch {
    align-self: stretch;
}

.grow {
    flex-grow: 1 !important;
}

.right-0 {
    right: 0px !important;
}

.top-0 {
    top: 0px !important;
}

/** input overdrive file */

:root {
    --main-input-bg-color: #f2f0f5;
}

button.app-button {
    outline: none;
    border: none;
    color: white;
    border-radius: 4px;
    background: linear-gradient(152.19deg, #612cd2 12.08%, #687de7 96.81%);
    font-size: 100%;
    font-weight: inherit;
    margin: 0;
    font-family: inherit;
    line-height: inherit;
}

/* Changes the default browser bg color */
input.app-input,
input.app-input:-webkit-autofill,
input.app-input:-webkit-autofill:hover,
input.app-input:-webkit-autofill:focus,
input.app-input:-webkit-autofill:active {
    outline: none;
    -webkit-box-shadow: 0 0 0 30px var(--main-input-bg-color) inset !important;
    background-color: var(--main-input-bg-color);
    transition: border 100ms ease-in-out;
}

input.app-input,
input.app-input:-webkit-autofill {
    border: 2px solid transparent;
}

input.app-input:focus,
input.app-input:active,
input.app-input:-webkit-autofill:hover,
input.app-input:-webkit-autofill:focus,
input.app-input:-webkit-autofill:active {
    border: 2px solid #e4e0ee;
}
