﻿:root {
    /* Colors */
    --color-primary: #1D9CE2;
    --color-secondary: #3EBAFF;
    --color-grey-1: #909090;
    --color-almost-black: #2A2A2A;
    --color-almost-black-rgb: 42 42 42;
    --color-lightgrey: #F9F9F9;

    --app-min-width: 300px;
    --app-max-width: 500px;
    --app-header-height: 110px;
    --app-menu-height: 117px;
    --fnol-buttom-buttons-height: 135px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 0.45px;
    -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    line-height: 1;
    font-size: 16px;
    min-width: 300px;
    background-color: #fff;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: var(--app-max-width);
    margin: 0 auto;
    position: relative;
}

.primary-color {
    color: var(--color-primary);
}

.font-weight--600 {
    font-weight: 600;
}
