﻿/* 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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@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;
    background: #FFFFFF;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

.h1, .h2, .h3, h1, h2, h3 {
    color: black !important;
    font-weight: lighter;
}

.h4, .h5, .h6, h4, h5, h6 {
    color: black !important;
    font-weight: lighter;
}

.card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 2rem !important;
    border-radius: .1rem;
}
.card-header {
    background: #f00852;
    color: white;
    padding: .3rem;
}

.card-body {
    padding-bottom: .1em !important;
}

hr {
    background-color: rgba(127, 127, 127, .5) !important;
}

a {
    color: #009fff;
    text-decoration: none;
}

    a:hover, a:focus {
        color: #0070c0;
    }

.breadcrumb-item {
    color: rgba(0, 0, 0, 0.7) !important;
}

    .breadcrumb-item:hover {
        color: rgba(0, 0, 0, 0.9) !important;
    }

    .breadcrumb-item a {
        text-decoration: none !important;
        color: inherit;
    }

.card-footer {
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
}

.sidebar-transition {
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
}

#content {
    margin-top: 48px;
}

.modal {
    z-index: 2000;
}

.modal-content {
    z-index: 2000;
}

.modal-backdrop {
    z-index: 1040 !important;
    display: none;
}

.modal-dialog {
    margin: 2px auto;
    z-index: 1100 !important;
}

.border-black {
    border-color: black;
}

.select2-container {
    color: #000;
}

.bg-black {
    background-color: black;
}

.text-ellipsized {
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: none;
    white-space: nowrap;
}

.aliceblue {
    background-color: aliceblue;
    margin-bottom: 10px;
}

.img {
    border-radius: 50%;
}

/*Indeterminate progress bar*/
.indeterminate-progress-bar, .indeterminate-progress-bar > .progress-block {
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.indeterminate-progress-bar {
    height: 25px;
    margin: 0.5em;
    background-color: rgb(214, 214, 214);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}

    .indeterminate-progress-bar > .progress-block {
        -webkit-animation-name: none;
        -webkit-animation-duration: 1.5s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-delay: 0s;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        -webkit-animation-play-state: paused;
        animation-name: none;
        animation-duration: 1.5s;
        animation-timing-function: linear;
        animation-delay: 0s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-play-state: paused;
    }

    .indeterminate-progress-bar.active > .progress-block {
        -webkit-animation-name: bar-movement;
        -webkit-animation-play-state: running;
        animation-name: bar-movement;
        animation-play-state: running;
    }

    .indeterminate-progress-bar.paused > .progress-block {
        -webkit-animation-name: bar-movement;
        -webkit-animation-play-state: paused;
        animation-name: bar-movement;
        animation-play-state: paused;
    }

@-webkit-keyframes bar-movement {
    from {
        left: -1px;
    }

    to {
        left: calc(75% + 1px);
    }
}

@keyframes bar-movement {
    from {
        left: -1px;
    }

    to {
        left: calc(75% + 1px);
    }
}

.progress-block {
    position: relative;
    top: -1px;
    left: -1px;
    width: 25%;
    height: 100%;
    background: rgba(36, 14, 116, 0.43);
}
