﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-bottom: var(--footer-h);
}

body.no-scroll {
    overflow: hidden;
}

body.no-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}
:root {
    --footer-h: 48px;
}

.site-footer.fixed-footer { 
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--footer-h);
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.15);
    color: #d0d7de;
    z-index: 1030;
}

.titlePage {
    color: #fff;
}
main.container {
    padding-bottom: 12px;
}

.app-header {
    --h: 52px;
    min-height: var(--h);
    padding-block: .25rem
}

    .app-header .navbar-brand.brand-sm {
        font-size: 1rem;
        font-weight: 700;
        padding: 0;
        line-height: 1
    }

    .app-header .nav-link {
        padding: .25rem .5rem;
        font-size: .95rem
    }

    .app-header .navbar-toggler {
        padding: .15rem .3rem
    }

.nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
    border-bottom: 3px solid #0d6efd;
    border-radius: 0;
}
.start-page {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.start-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 40%;
    color: white;
}

.site-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.site-bg-dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: -1;
    pointer-events: none;
}
.sticky-thead th {
    position: sticky;
    top: 0;
    z-index: 2;
}
#infoUserClientModal .modal-dialog {
    max-width: 1000px;
}
#infoUserClientModal .modal-content {
    max-height: calc(100vh - 4rem);
}
#infoUserClientModal .modal-body {
    overflow-y: auto;
}
#infoUserClientModal .modal-title {
    letter-spacing: .2px
}
informErrorModal .modal-content, #informDoneModal .modal-content {
    padding: .25rem .25rem .5rem;
}

informErrorModal .modal-title, #informDoneModal .modal-title {
    font-size: 1rem;
}

informErrorModal .btn, #informDoneModal .btn {
    border-radius: .75rem;
}

#appLoader {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000; 
}

    #appLoader .app-loader-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.5); 

    }

    #appLoader .app-loader-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 140px;
        padding: 16px 18px;
        border-radius: 14px;
        background: rgba(65, 51, 95, 0.7);
        box-shadow: 0 10px 30px rgba(0,0,0,.15);
        text-align: center;
        font-weight: 500;
    }

    #appLoader .spinner-border {
        width: 2rem;
        height: 2rem;
    }

    #appLoader .app-loader-text {
        font-size: .95rem;
        color: #7d7272;
    }
.infoClientNumber {
    width: 260px;
    display: flex;
    color: white;
    margin-top: 13px;
}
.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    padding: .375rem .75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: #212529;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single:focus,
.select2-container--open .select2-selection--single {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    outline: 0;
}
.select2-results__option--highlighted {
    background-color: #0d6efd;
}

.select2-selection__placeholder {
    color: #6c757d;
}