﻿/* 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. */
.my-img-container {
    position: relative;
    padding-top: 50%;
    align-content: center;
}

    .my-img-container:before {
        content: " ";
        position: absolute;
        top: 40%;
        left: 40%;
        width: 15px;
        height: 15px;
        border: 1px solid blue;
        border-color: transparent blue transparent blue;
        border-radius: 50%;
        animation: loader 1s linear infinite;
    }

    .my-img-container > img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 80px;
        max-width: 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

@keyframes loader {
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

.quadrat {
    -webkit-animation: NAME-YOUR-ANIMATION 3s; /* Safari 4+ */
    -moz-animation: NAME-YOUR-ANIMATION 3s; /* Fx 5+ */
    -o-animation: NAME-YOUR-ANIMATION 3s; /* Opera 12+ */
    animation: NAME-YOUR-ANIMATION 3s; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes NAME-YOUR-ANIMATION {
    0%, 49% {
        background-color: rgb(197, 197, 197);
    }

    50%, 100% {
        background-color: #FFFFFF;
    }
}

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: 10px;
}
@media (min-width: 768px) {
  html {
    font-size: 12px;
  }
}

.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%;
}

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 */
}
