﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-family: Roboto;
  color: var(--gbi-black);
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}


:root {
    --gbi-background: white;
    --gbi-orange: #E37222;
    --gbi-black: #454545;
    --gbi-light-orange: #FABE8C;
    --gbi-blue: #005B82;
    --gbi-neutral-1: #FAFAFA;
    --gbi-neutral-2: #E9E9E9;
    --gbi-neutral-3: #787878;
    --gbi-white: #FFFFFF;
}

.bg-blue {
    background-color: var(--gbi-blue);
}

.bg-gbi {
/*    background-color: #E5E5E5; */
    background-color: #FFFFFF;
}

.login-form {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gbi-background);
    padding: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    min-width: 20%;
    max-width: 425px;
}

.login-form img {
    width: 72px;
    height: 72px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-form .header {
    text-align: center;
}
.login-form button {
    background-color: var(--gbi-orange);
    color: white;
    width: 100%;
}

.login-form p {
    text-align: center;
    text-decoration: underline;
}

#forgot-password {
    color: black;
}

.login-form .validation-summary-errors {
    text-align: center;
}
.login-form .validation-summary-errors ul {
    list-style: none;
    margin-left: -40px
}

.antealogo {
    display: block;
    float: right;
}

.antealogo img {
    width: 150px;
}

.headerheader {
    height: 100px;
    border-bottom: solid;
    border-bottom-width: 4px;
    border-bottom-color: var(--gbi-orange);
}

.headerheader .imageleft {
    height: 75px;
    margin: 5px;
    float: left;
}

.headerheader .imageright {
    height: 75px;
    margin: 5px;
    float: right;
}

.headerheader .imageright img {
    height: 100%;
}

.headerheader .imageleft img {
    height: 100%;
}

@media (max-width: 414px) {
    .antealogo img {
        width: 75px;
    }
    .login-form img {
        width: 37px;
        height: 37px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.tilescontainer {
    margin-left: 20%;
    margin-right: 20%;
    list-style-type: none;
}

@media (max-width: 414px) {
    .tilescontainer {
        margin-left: 0%;
        margin-right: 0%;
        justify-content: center;
    }
}

.welcome-message {
    margin: 20px;
    text-align: center;
    font-size: large;
}

@media (max-width: 414px) {
    .welcome-message {
        font-size: 12px;
    }
}

.tilecontainer {
    width: 250px;
    height: 175px;
    margin: 10px;
    background-image: url('../img/tile.png');
    background-repeat: no-repeat;
    background-size: 250px 175px;
    float: left;
    position: relative;
    cursor:pointer;
    overflow: hidden;
}

.tilemenu {
    float: right;
    text-align: center;
    vertical-align: bottom;
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 3;
}

.btn-tilemenu {
    color: black;
    cursor: pointer;
    margin-left: 5px;
}

.tile {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    z-index: 2;
}

@media (max-width: 414px) {
    .tilecontainer {
        width: 150px;
        height: 75px;
    }
    .tiletext label {
        font-size: 9px;
    }
}

.tilebg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tilebg img {
    width: 100%;
    height: 100%;
}

.tilecontent {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 15%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
}

.tileimage {
    width: 30%;
    float: left;
    position: relative;
    top: 50%;
    margin-top: -25%;
}

.tileimage img {
    width: 100%;
}

.tiletext {
    width: 65%;
    float: right;
    position: relative;
    top: 50%;
    margin-top: -25%;
}

.tiletext label {
    text-align: left;
    color: var(--gbi-black);
    cursor:pointer;
}

.nav-image {
    float: left;
    margin-right: 10px;
}
@media (max-width: 414px) {
    .nav-image {
        display: none;
    }
}

.nav-image img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.nav-item > .active {
    color: var(--gbi-light-orange) !important;
}

.nav-item > .active::after {
    content: "";
    position: relative;
    left: -50%;
    top: 50px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--gbi-orange);
    color: var(--gbi-light-orange);
}

.dropdown-toggle::after {
    display: inline-block;
    width: .5em;
    height: .5em;
    margin: -.3em 0 0 .4em;
    vertical-align: middle;
    content: "";
    border: .1em solid;
    border-width: 0 .15em .15em 0;
    transform: rotateZ(45deg)
}

.navbar {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.pageTitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    float: left;
}

.btn-add {
    background-color: var(--gbi-orange) !important;
    color: white !important;
}

.btn-table {
    background-color: transparent !important;
    color: black;
}

.toolbaritem {
    margin-left: 5px;
}

.tableCommand {
    float: right;
}

.tableCommand > a {
    cursor: pointer;
    font-size: 16px;
}

.table td, .table th {
    border-top: none;
}

.table .empty {
    background-color: transparent !important;
}

.thumbnail {
    height: 30px;
    width: 30px;
}

.thumbnail-lg {
    height: 50px;
    width: 50px;
}

.addTileButton {
    float: right;
}


.voorwaarden {
    font-size: smaller;
    font-style: italic;
}

.dropdown-toggle::after {
    display: none !important;
}

.toolbar {
    margin-left: 5px;
}

.cookie-wall {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    align-items: center;
    background-color: #0000008c;
    z-index: 999;
}

    .cookie-wall.hide {
        display: none !important;
    }

.cookie-wall-content {
    color: black;
    max-width: 700px;
    padding: 25px;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: white;
    margin: 0 auto;
}

    .cookie-wall-content h3 {
        margin-bottom: 20px;
    }

.cookie-preferences-list {
    list-style: none;
    padding: 0;
}

    .cookie-preferences-list li {
        margin-bottom: 5px;
    }

.cookie-selection {
    display: flex;
    justify-content: space-between;
    border: 1px solid #e1e1e1;
    padding: 0 15px;
    align-items: center;
}

    .cookie-selection a {
        color: black;
        height: 55px;
        display: flex;
        align-items: center;
        flex: 1;
    }

        .cookie-selection a:hover {
            text-decoration: none;
        }

.cookie-wall .collapse, .cookie-wall .collapsing {
    padding: 5px;
}

.cookie-wall .zmdi-plus {
    margin-right: 10px;
}

.cookie-wall .second {
    display: none;
}

.cookie-wall .check-list {
    list-style: none;
    padding: 0;
}

    .cookie-wall .check-list i {
        margin-right: 5px;
    }

.cookie-wall .btn-container {
    margin-top: 20px;
}

.cookie-wall .always-active {
    color: #6b6b6b;
}
.login-header-container {
    display: flex;
    justify-content: space-between;
}

.login-header-container img {
    width: 100%;
}

    .login-header-container .antea-logo {
        width: 180px;
        margin: 25px;
    }

    .login-header-container .gbi-logo {
        width: 155px;
        margin: 25px;
    }