﻿/* 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;
}

.w-full {
    width: 100% !important;
}
.bubble {
    padding: 1rem;
    background: rgba(0, 0, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: .925rem;
    
    transition: all 120ms ease-in-out;
    width: fit-content;
}
.bubble:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.bubble.is-warning {
    background: #ffd60a !important;
}

.search-bar {
    /*max-width: 500px;*/
    margin: auto auto;
}

.search-bar .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar .form-control {
    border: none;
    padding-left: 20px;
}

.search-bar .btn {
    border: none;
    padding: 10px 20px;
}

.cursor-pointer {
    cursor: pointer;
}

.text-salmon {
    color: #ff8c69;
}
.bg-salmon {
    background-color: #ff8c69;
}

.bg-salmon-15 {
    background-color: rgba(	255, 140, 105, .15)
}

.w-fit {
    width: fit-content;
}

.min-w-30 {
    min-width: 30vw;
}

/* 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 */
}


table {

}

    table td {
        padding: 3px !important;
        font-size: small;
    }

    table th {
        padding: 3px !important;
        font-size: smaller;
    }


hr {
    margin:2px,0px,0px,0px;
}

.btn {
    font-size:0.8rem !important;
    margin:0px;
    padding: 8px 1rem;
}

.form-control {
    padding: 2px 5px 2px 5px;
    font-size: 14px;
}
.row {
font-size:14px;
}

.btn {
}

.card-inverse .card-text {
color:white;
}

.page-titles {
    margin-bottom:15px;
    padding-top:15px;
    padding-bottom:10px;
}



.pulse-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 178, 43,0.8);
    box-shadow: 0 0 0 0 rgba(255, 178, 43, 1);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 43, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 178, 43, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 43, 0);
    }
}

.text-black-full {
    color: #000 !important;
}

table.rz-grid-table > thead > tr > th
{
    background-color: initial !important;
}