:root {
  --blue1: #004AFF;
  --blue2: #00C8FF;
  --gray1: #5B7BA0;
  --gray2: #7F9BBB;
  --gray3: #C9DAEC;
  --warning: #DF9E00;
  --grayHighlight: #F6F7F8;
  --lightBlue: #BDDCFF;
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

html {
    height: 100%;
}

.gradient {
    background: var(--blue2) linear-gradient(180deg, var(--blue1), var(--blue2));
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
}

.footer {
    width: 100%;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    font-family: "Graphik Web", serif;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(/static/fonts/Graphik-Black-Web.woff2) format("woff2");
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(/static/fonts/Graphik-Regular-Web.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(/static/fonts/Graphik-Regular-Web.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

.rectangle {
    height: 6px;
    width: 40px;
    background-color: rgba(201,218,236,0.5);
}

.byapptitude {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 5px;
    margin-top: 10px;
}

.footer-text {
    display: flex;
    align-items: center;
}

.footer-text img {
    margin-top: 2px;
    margin-left: 4px;
}

body:not(.is-mobile) .only-mobile {
    display: none;
}

body.is-mobile .only-desktop {
    display: none;
}

body:not(.is-ios) .only-ios {
    display: none;
}

body.is-ios .not-ios {
    display: none;
}

.warning {
    color: var(--warning);
}

.btn-locale{
    color: inherit;
    background: transparent;
    border: unset;
    cursor: pointer;
}

.btn-locale.active{
    font-weight: bold;
}
