:root {
    --primary-color: rgb(21, 25, 33);
    --secondary-color: /*rgb(220, 220, 220)*/ lightgrey;
    --primary-font-color: #ffffff;
    --sidebar-width: 420px;
    --sidebar-top-nav-height: 70px;
    --secondary-font-color: #d4af37;
    --top-bar-height: 70px;
    --disabled-font-color: #D3D3D3;
    --space: 10px;
    --primary-semi-light: #8a8a8a;
    --primary-semi-dark: #2e2e2e;
    --primary-light: #fff;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat-Bold';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Hind-Light';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hind/v11/5aU69_a8oxmIdGl4BA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Hind';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/hind/v11/5aU69_a8oxmIdGl4BA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


html, body,.main {
    height: 100%;
    margin:0;
    width: 100%;
    font-family: 'Montserrat' !important;
    overflow-x:hidden;
    background-color:var(--primary-color);
    color: var(--primary-font-color);
}

.main {
    display: flex;
    flex-direction: column !important;
    margin: 0px auto !important;
}
.main-body {
    display: flex;
    flex-direction: column !important;
    margin: 0px auto !important;
    padding: 20px !important;
    min-width: 50vw !important;
}
.main-content {
    flex: 1;
}
a {
    color: var(--primary-font-color);
    text-decoration: none;
}
.header,
.footer {
    flex: none;
    color: #FFFFFF;
    background-color: var(--primary-color);
    padding-left:20px;
}
.footer {
    min-height: 150px;
    padding: 15px;
}

.header {
    justify-content: space-between;
    align-items: center;
    /* Make sure the toolbar will stay on top of the content as it scrolls past. */
    z-index: 2;
    background: var(--primary-color);
    white-space: nowrap;
    background: var(--primary-color);
    z-index: 2;
    margin-bottom: 30px;
}

.parent {
    display: flex;
    padding: 10px;
}
.center img {
    max-width:150px;
    height: auto;
}
.left,
.right {
    flex: 1;
    padding: 3px;
}

/* Styles for demonstration */
.center {
    margin: 0 3px;
    padding: 3px;
}

.flags {
    margin-left: 0px;
    padding-left: 0px;
    align-content: flex-start;
    justify-content: flex-start;
    display: flex;
}
.flags a {
    margin: 6px;
}
.flags img {
    width: 2em;
    height: auto;
}

.proceed-btn {
    width: 100%;
    text-transform: uppercase;
}
.proceed-btn:enabled {
    border: 2px solid #d4af37;
}

.note {
    padding: 0.35em 0.65em;
    padding-left: 0px !important;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    vertical-align: baseline;
}

.view, .error-view {
    display: none;
}
.view.active {
    display: block;
}

.error-view.active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 10;
}

@media (max-width: 968px) {
    .main-body {
        min-width: 90vw !important;
    }
    .header-logo img {
        max-width:100px;
        height: auto;
    }
}