﻿/* 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. */
.body-content {
    padding: 30px;
}

@media screen and (max-width: 1024px) {
    .body-content {
        padding: 20px;
    }
}


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: var(--main-azure-color) !important;
    border-color: var(--main-azure-color) !important;
}

.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,body {
  position: relative;
  min-height: 100%;
}

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 */
}


.mdl-checkbox {
    height: auto;
}

.mdl-checkbox__label {
    line-height: 24px;
}


/**/



:root {
    --secondary-color: #033F50;
    --main-blue-color: #033F50; /* rgb(3, 63, 80) */
    --main-azure-color: #36B9D0; /* rgb(54, 185, 208) */
    --main-green-color: #2FAA5A; /* rgb(47, 170, 90) */
    --main-light-sea-green-color: #09AD9F; /* rgb(9, 173, 159) */
    --main-yellow-green-color: #B9CE18; /* rgb(185, 206, 24) */
    --main-orange-color: #FF4000; /* rgb(255, 64, 0) */
    --main-background-color: #F6F9FC; /* rgb(246, 249, 252) */
    --main-white-color: #FFFFFF; /* rgb(255, 255, 255) */
    --main-black-color: #000000; /* rgb(0, 0, 0) */
    --font-dark-grey-color: #4A4A4A; /* rgb(74, 74, 74) */
    --font-grey-color: #6C757D; /* rgb(108, 117, 125) */
    --font-light-grey-color: #98A6AD; /* rgb(152, 166, 173) */
    --status-red-color: #D0021B; /* rgb(208, 2, 27) */
    --status-green-color: #28A745; /* rgb(40, 167, 69) */
    --status-yellow-color: #FFBC01; /* rgb(255, 188, 1) */
    --status-error-red-color: #D0021B; /* rgb(208, 2, 27) */
    --warning-yellow-color: #FFF2CC; /* rgb(255, 242, 204) */
    --font-regular-weight: 400;
    --font-medium-weight: 500;
    --font-bold-weight: 700;
}

/* TABELLE E ACCORDION */
.sfs-accordion {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

    .sfs-accordion .card-header {
        padding: 0;
        background-color: var(--main-blue-color);
        border: none;
        border-radius: 0;
    }

        .sfs-accordion .card-header .btn {
            padding: 10px 15px;
            color: var(--main-white-color);
            font-size: 16px;
            font-weight: var(--font-medium-weight);
            width: 100%;
            text-align: left;
        }

    .sfs-accordion .card-body {
        padding: 15px;
        border-radius: 0;
    }

    .sfs-accordion .list-group-item, .sfs-table .list-group-item {
        padding: 10px 15px;
        margin-bottom: -1px;
        border: 1px solid #DFDFDF;
    }

        .sfs-accordion .list-group-item:first-child, .sfs-table .list-group-item:first-child {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

        .sfs-accordion .list-group-item:last-child, .sfs-table .list-group-item:last-child {
            margin-bottom: 0;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }


