:root {
    --primary-color: var(--brand-green);
    --success-color: green;
    --disabled-color: gray;
    --exposure-color: orange;
    --padding-base: 24px;

    /* Primary Colors */
    --blue-midnight: #01232C;
    --brand-green: #00C57B;
    --orange-web: #F98D00;

    /* Secondary Colors */
    --dark-green: #009960;
    --light-green: #67E7B1;
    --extra-light-green: #F0FDF7;
    --soft-light-green: #FBFEFD;
    --info-blue: #365AC7;
    --info-light-blue: #A0B2E6;
    --beige: #E1D7D3;
    --light-beige: #F0EBE2;

    /* Blues */
    --blue-900: #001040;
    --blue-800: #061F68;
    --blue-700: #13328D;
    --blue-600: #2344AA;
    --blue-500: #365AC7;
    --blue-400: #617FDA;
    --blue-300: #809AEA;
    --blue-200: #A0B2E6;
    --blue-100: #BCC9F1;
    --blue-50: #D8E0F5;

    /* Greens */
    --green-900: #005233;
    --green-800: #007448;
    --green-700: #009960;
    --green-600: #01B16F;
    --green-500: #00C57B;
    --green-400: #17D68E;
    --green-300: #2DDF9C;
    --green-200: #67E7B1;
    --green-100: #A9F8D7;
    --green-50: #dcfef3;

    /* Beiges */
    --beige-900: #826d74;
    --beige-800: #A59088;
    --beige-700: #C2B1AB;
    --beige-600: #D6C8C2;
    --beige-500: #E1D7D3;
    --beige-400: #EAE0DD;
    --beige-300: #F1E9E6;
    --beige-200: #F5ECE7;
    --beige-100: #FCF9F7;

    /* Greyscale */
    --black: #1A1A1A;
    --grey-800: #262626;
    --grey-700: #3D3D3D;
    --grey-600: #4E4E4E;
    --grey-500: #949899;
    --grey-400: #C6CBCC;
    --grey-300: #E1E5E5;
    --grey-200: #EDF1F2;
    --grey-100: #F8F9FA;

    /* Alert Colors */
    /* Success */
    --success: #03D932;
    --success-light: #96F8AC;
    --success-dark: #079026;

    /* Warning */
    --warning: #FFCB45;
    --warning-light: #FFE49E;
    --warning-dark: #C68E01;
    --warning-superdark: #b55807;

    /* Danger */
    --danger: #FF1F1F;
    --danger-light: #F9A2A2;
    --danger-dark: #9F0000;
}

* {
    box-sizing: border-box;
}

body, textarea {
    font-family: "Spline Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
    padding:0px;
    color: var(--black);
}

/* Typography */
h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 145%;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
}

h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 110%;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.body-12-bold {
    font-size: 12px;
    font-weight: 700;
}

.body-12-medium {
    font-size: 12px;
    font-weight: 500;
}

.body-12-regular {
    font-size: 12px;
    font-weight: 400;
}

.hidden {
    display: none !important;
}

input[type=text], input[type=password] {
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--grey-300);
    padding: 4px 8px;
}

.searchbar {
    flex: 1;
    border-radius: 8px;
    border: 1px solid var(--grey-300);
    overflow: hidden;
    display: flex;
}

.searchbar input {
    width: 100%;
    border-radius: 8px;
    border: none;
}

.searchbar input:focus {
    border: none;
    outline: none;
}

.searchbar:focus-within {
    border: 1px solid var(--black);
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
}

.button.primary {
    background: var(--brand-green);
    color: white;
}

.button.secondary {
    background: none;
    color: var(--brand-green);
    border: 1px solid var(--brand-green);
}

.button.tertiary {
    background: none;
    color: var(--brand-green);
    border: none;
}

div#login-wrapper {
    border: 1px var(--grey-300) solid;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 0);
    padding: 32px;
    margin: 0;
    width: 50vw;
    max-width: 600px;
    min-width: 300px;
}
#login-wrapper button {
    background-color: var(--brand-green);
    color: white;
    font-weight: 600;
    border-radius: 32px;
    border: none;
    padding: 8px 16px;
}

/* google button */
.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: WHITE !important;
    background-image: none;
    border: 1px solid #747775 !important;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1f1f1f !important;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
    border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #303030;
    opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #303030;
    opacity: 8%;
}


@media only screen and (max-width: 767px) {
    .hiddenIfMobile {
        display: none !important;
    }
    
    #logo-wrapper h1 {
      
    }
}

/* basic Animation */
.slide-up {
    animation: slideUp 0.2s ease-out;
}
.fade-in {
    animation: fadeIn 0.25s ease-out;
}
.slide-up-fade-in {
    animation: slideUp 0.25s ease-out, fadeIn 0.25s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(25px); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Site Header and Navigation Tabs */
#siteHeader {
  display: flex;
  gap: 16px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid var(--grey-300);
  margin-bottom: 16px;
  padding: 0 16px;
}

#siteHeader h1 {
  margin: 0;
}

#siteHeader h1 a {
    vertical-align: middle;
}

.secondary-tabs {
  display: flex;
  height: 100%;
}

.secondary-tabs a, 
.secondary-tabs .tab {
  padding: 20px 24px;
  text-decoration: none;
  color: var(--grey-500);
  font-weight: 500;
  cursor: pointer;
}

.secondary-tabs a.selected,
.secondary-tabs .tab.active {
  color: var(--blue-midnight);
  border-bottom: 2px solid var(--blue-midnight);
}