﻿/* 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;
    font-size: 1.2rem;
    color: #0366d6;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.container{
    position:relative;
}

.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;
}
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
    line-height: 32px;
}

    /* Lightbox
-------------------------------------------------- */
    .lightbox {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(128,128,128, 0.7);
    z-index: 999;
    top: 0;
    left: 0;
}

        .lightbox .lightboxContent .loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            .lightbox .lightboxContent .loader img {
                margin: auto;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                width: 200px;
                height: 200px;
                position: absolute;
            }

            .lightbox .lightboxContent {
                margin: auto;
                width: 60%;
                height: 60%;
                max-width: 1320px;
                max-height: 800px;
                position: absolute;
                background-color: white;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                border: 2px solid grey;
                overflow: auto;
            }
        .lightbox .lightboxContent .LightHead {
            text-align: center;
            padding: 20px;
            border-bottom: 2px solid grey;
        }

            .lightbox .lightboxContent .LightHead button {
                position: absolute;
                top: 20px;
                right: 20px;
            }
                    .lightbox .lightboxContent .LightHead h4 {
                        font-size: 32px;
                    }

            .lightbox .lightboxContent .Content{
                padding:20px;
            }
                .lightbox .lightboxContent .Content .row{
                    line-height:32px;
                    cursor:pointer;
                }

                    .lightbox .lightboxContent .Content .row:nth-child(2n+1) {
                        background-color: #cee1ed;
                    }

                    .lightbox .lightboxContent .Content .row:hover {
                        background-color: #bbdbf0;
                    }

                .lightbox .lightboxContent .Content input {
                    width: 20px;
                    height: 20px;
                    margin-right: 12px;
                }

#Orders_wrapper{
    position:relative;
}

#Orders_processing {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    background-color: rgb(58 58 62 / 50%);
    z-index: 9;
}

    #Orders_processing img {
        width: 150px;
        height: 150px;
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
    }

                /* 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%;
}

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 */
}

/* navbar settings
-------------------------------------------------- */

#NavbarLogout{
    float: right;
}

.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from{
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}
