/* Disable selection everywhere */
body {
    -webkit-user-select: none; /* Safari / WebView */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in form fields */
input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    width: 100%;
    padding-bottom: 80px;
}

input, select, textarea, .btn {border-radius: 5px!important;}

.navbar.bg-dark {
    background-color: #000!important;
}

.navbar-right a {
    position: relative;
    top: -10px;
}

th {white-space: nowrap!important;}
td {white-space: nowrap!important;}
td.min {width: 10px!important; white-space: nowrap!important;}

.list-group-item {padding-top: 15px; padding-bottom: 15px;}

label.required:after {
    content:" * ";
    color:red;
}

#results h2 {
    font-size: 20px;
}


.daterangepicker {
    font-size: 16px;
    width: 300px;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    min-width: 40px;
    width: 40px;
}

.navbar-brand img {max-height: 35px}

body.center-strasbourg {
    position: relative;
}

body.center-strasbourg::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../img/strasbourg/KG5-logo-black-bkg.png") no-repeat center center;
    background-size: cover;
    opacity: 0.01; /* change opacity here */
    z-index: -1;
}

.center-strasbourg .navbar-brand img {filter: none !important;}
.center-fusionfive .navbar-brand img {filter: invert(1)}


.transition-main {
    transition-property: opacity, transform;
    transition-duration: 250ms;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(0);
    opacity: 1;
}

html.is-animating .transition-main {
    opacity: 0;
    transform: translateX(-1em);
}

html.is-leaving .transition-main {
    transform: translateX(1em);
}


html.is-animating.to-left .transition-main {
    opacity: 0;
    transform: translateX(1em);
}

html.is-leaving.to-left .transition-main {
    transform: translateX(-1em);
}

.modal {
    --bs-modal-footer-border-width: 0;
    --bs-modal-header-border-width: 0;
}

.pwa-installer {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.btn-pwa-installer {
    border-radius: 0!important;
}

.pwa-installer .btn-pwa-installer i {
    font-size: 20px;
    animation: upDown 1s ease-in-out infinite;
    position: fixed;
}

.pwa-installer .btn-pwa-installer b {
    margin-left: 30px;
}






