/* rem and em do NOT depend on html font-size in media queries! Instead, 1rem = 1em = 16px */
/* Use em in media queries. Use rem instead of px in most cases for responsive */

/* RESPONSIVE BREAKPOINTS
    For desktop = 61.875em (990px)
*/

:root {
    /* COLOR VARIABLES */
    --Primary-100: #7455FE;
    --Primary-200: #00BD8E;
    --Primary-300: #01BCFE;

    --Neutral-900: #1A1A1C;
    --Neutral-800: #3A3A3C;
    --Neutral-700: #48484A;
    --Neutral-600: #636366;
    --Neutral-500: #8E8E93;
    --Neutral-400: #AEAEB2;
    --Neutral-300: #C7C7CC;
    --Neutral-200: #DFDFDF;
    --Neutral-100: #E7E7E9;
    --Neutral-50: #F4F4F4;

    --Foundation-Purple-blue-1: #F1EEFF;
    --Foundation-Blue-blue-50: #ECF8FF;
    --Foundation-Green-green-50: #EFF9F6;
    --Foundation-Blue-blue-200: #A7E0FF;
    --Foundation-Green-green-200: #A4E1CB;

    --Function-Success: #0FAF7D;
    --Function-Error: #F1495E;
    --Function-Infor: #00A9FF;

    --text-color: var(--Neutral-700);
    --white: #fff;

    /* FONT VARIABLES*/
    --font-primary: 'SF Pro Text', sans-serif;
  
    /* DEFAULT LAYOUT VARIABLES*/
    --mobile-default-layout-header-height: 6.8rem;
    --desktop-default-layout-horizontal-space: 4.8rem;
    --mobile-default-layout-horizontal-space: 1.6rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    /* 10px/16px = 62.5% -> 1rem = 10px */
    font-size: 62.5%; 
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

a[href] {
    color: var(--text-color);
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */   
input[type='number'] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* START BUTTONS */
/* Base Button */
.custom-btn,
.custom-btn:link,
.custom-btn:visited {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background-color: transparent;
    transition: all 0.3s;
}

/* Primary Button */
.custom-btn--primary,
.custom-btn--primary:link,
.custom-btn--primary:visited {
    background-color: var(--Primary-100);
    color: var(--white);
}

.custom-btn--primary:hover,
.custom-btn--primary:active {
    background-color: #8266fe;
}

/* Secondary Button */
.custom-btn--secondary,
.custom-btn--secondary:link,
.custom-btn--secondary:visited {
    background-color: var(--Neutral-800);
    color: var(--white);
}

.custom-btn--secondary:hover,
.custom-btn--secondary:active {
    background-color: #474747;
}

/* Extra Format Button */
.custom-btn.custom-btn--xs {
    padding: 0.8rem 1.6rem;
}

.custom-btn.custom-btn--sm {
    padding: 1.2rem 1.6rem;
}

.custom-btn.custom-btn--md {
    padding: 1.2rem 2rem;
}

.custom-btn.custom-btn--lg {
    padding: 1.6rem 2rem;
}

.custom-btn.custom-btn--rounded-md {
    border-radius: 0.8rem;
}

.custom-btn.custom-btn--rounded-lg {
    border-radius: 1.2rem;
}
/* END BUTTONS */


/* START SCROLLBAR CSS */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #d0d5dd;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #667085;
}
/* END SCROLLBAR CSS */

/* START FONTS EMBEDED */
@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-RegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-SemiboldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../font/SF-Pro-Text-HeavyItalic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
}
/* END FONTS EMBEDED */
