:root {
  --primary-bg-color: #ede6da;
  --primary-color: #1c3557;
  --secondary-bg-color: #1c3557;
  --secondary-color: #fff;
  --tertiary-bg-color: #c5e54c;
  --tertiary-color: #1c3557;
  --link-color: #4bacdb;
  --header-bg-color: #fff;
  --btn-bg-color: #c5e54c;
}


body {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
    /*font-family: 'Heading Now Trial', sans-serif;*/
    font-size: 1.3em;
    position: relative;
    min-height: 100vh;
    background-color: var(--primary-bg-color);
    word-wrap: break-word;
}

html {
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--link-color);
}

h1 {
  font-family: "Asap", sans-serif;
}

h2 {
    font-family: "Asap", sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    line-height: 1.5;
}

h3 {
    font-weight: bold;
    font-size: 1.1em;
}

h4 {
    font-weight: bold;
    font-size: 1.0em;
}


/* HEADER */
.header-box {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--secondary-bg-color);
    color: var(--secondary-color);
    opacity: 1;
    z-index: 99;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 20px 20px;
   /* box-shadow: 0 5px 15px 0 #000 !important;*/
}

.header-logo {
    height: 190px;
    padding: 10px 20px;
}

.home-icon {
    color: var(--secondary-color);
    padding-right: 1.5em;
    vertical-align: top;
    font-size: 35px;
}

.header-icon {
    height: 40px;
    margin: auto;
}


/* footer */
.footer {
   /* background-color: var(--secondary-bg-color);
    color: var(--secondary-color);*/
    color: var(--secondary-bg-color);
    background-color: var(--secondary-color);
    padding: 30px 2em;
    border-radius: 20px 20px 0 0;
}

.footer a {
    color: var(--secondary-bg-color);
}


/* content section */
.outer-container {
    padding: 200px 2em 0 2em;
    max-width: 1500px;
    margin: auto;
    min-height: calc(100vh - 100px);
   /* background-color: #fff;*/
}

.content-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 1em;
}

.box-pad-top {
    padding: 10px 0 0 0 !important;
}

.box-pad-right {
    padding: 0 0 0 10px !important;
}

.box-pad-top-right {
    padding: 10px 10px 0 0 !important;
}


.big-btn div {
    font-weight: bold;
    font-size: 1.2em;
    background-color: #fff;
    padding: 1.5em;
    border-radius: 10px;
    margin: 0 0.5em;
    height: 100%;
}

.big-btn {
    color: var(--secondary-color);
}

.big-btn img {
    height: 100px;
    margin: 0 auto 0.5em auto;
}

.btn-round {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    background-color: var(--secondary-bg-color);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2em;
    margin: auto;
    vertical-align: middle;
    line-height: 60px;
}

.btn-rel {
   padding: 1em;
   background-color: #fff;
   color: var(--primary-color);
   border-radius: 5px;
}

.flex-row {
    display: flex;
}

.flex-row .col {
    padding: 0;
}

/* welcome page */
.welcome-logo {
    max-height: 100px;
}

/* materialize overrides */
.dropdown-content li > span {
    color: var(--primary-color) !important;
}

input[type="text"]:not(.browser-default):focus:not([readonly]) {
     border-bottom: 1px solid var(--primary-color) !important;
     box-shadow: 0 1px 0 0 var(--primary-color) !important;
}
.select-wrapper input.select-dropdown:focus {
    border-bottom: var(--primary-color) !important;
}

.new-btn {
   border-radius: 30px;
    background-color: var(--btn-bg-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 1em 2em;
    vertical-align: middle;
    height: auto;
    border: none;
}

/* Drop down menus */
.dropdown {
    position: relative;
}

.dropdown img {
    cursor: pointer;
}

.dropdown-item {
    cursor: pointer;
}

.dropdown-content-language {
    background-color: #fff;
    color: var(--primary-color);
    min-width: 100px !important;
    padding: 12px 16px;
    border-radius: 10px;
}

.dropdown-content-menu {
    background-color: #fff;
    color: var(--primary-color);
    min-width: 200px !important;
    padding: 12px 16px;
    border-radius: 10px;
}

.dropdown-content a {
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
    border: 1px solid red;
}

.welcome-claim-container {
    width: 100%;
    min-height: 300px;
    background-image: url('../img/bg_welcome.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}


datalist {
    position: absolute;
    max-height: 20em;
    border: 0 none;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
}

datalist option {
    font-size: 0.8em;
    padding: 0.3em 1em;
    background-color: #ccc;
    cursor: pointer;
}

/* option active styles */
datalist option:hover, datalist option:focus {
    color: #fff;
    background-color: #036;
    outline: 0 none;
}


/** the cookie consent **/
.js-cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    padding: 16px 20px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.js-cookie-consent a {
    color: #93c5fd;
    text-decoration: underline;
}

.js-cookie-consent button {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.js-cookie-consent button:hover {
    background: var(--primary-color);
}

@media (max-width: 640px) {
    .js-cookie-consent {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: unset;
    }
}


/* ===========================================
 Small - mobile devices
============================================= */
@media only screen and (max-width: 600px) {

    .flex-row {
        display: block;
    }

    .flex-row,.row {
        margin-bottom: 0;
    }


    .big-btn div {
        margin-top: 1em;
    }
}

/* ===========================================
 xlarge scrrens
============================================= */
@media only screen and (min-width: 1200px) {

    .big-btn div {
        margin: 0 1em;
    }
}


