/*
********************************
Custom CSS
********************************
*/

:root,
[data-bs-theme=light] {
    /* Default border */
    --bs-border-color-translucent: #ededed;
}

*{
    font-family: 'Open Sans', sans-serif !important;
}

body { font-size: 14px; }
.w-icon { width: 14px; }

.b-radius-01 {
    border-radius: 0.15rem;
}

#bodyBoxBg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    z-index: -1;
    background-color: #f5f5f5;
}

.card {
    box-shadow: 0 .125rem .25rem rgba(34,41,47,.075)!important;
    margin-bottom: 2rem;
    transition: all .3s ease-in-out,background 0s,color 0s,border-color 0s;
}


.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(34,41,47,.075)!important;
}

.t-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.bg-company-1{
    background-color: #771AAF!important;
}

.border-bg-company-1 { border-color: #771AAF!important; }

.bg-company-1-light{
    background-color: rgb(119 26 175 / 66%);
}

.bg-company-2{
    background-color: #E45526!important;
}

.border-bg-company-2 { border-color: #E45526!important; }

.bg-grey-site
{
    background-color: #f7f7f7;
}

.border-start-2 { border-left-width: 2px!important; }

.text-gray-800{}

.rounded
{
    /* border-radius: 0.25rem !important; */
    border-radius: 0.15rem !important;
}

.w-full {
    width: 100%;
}

body{
    padding-top: 0;
    background-image: url("https://extra.quint.org/cdn/bootstrap-quint/assets/images/background-login.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.topBarUserName{
    width: 30px;
    height: 30px;
    display: inline-block;
}

/* Bg Gradient Cream */
.bg-gra-cream
{
    background: #f9fcf7; /* Old browsers */
    background: -moz-linear-gradient(top, #f9fcf7 0%, #f5f9f0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f9fcf7 0%,#f5f9f0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f9fcf7 0%,#f5f9f0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */
}

/* Bg Gradient Little grey */
.bg-gra-little-grey
{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f2f2f2+0,ffffff+100&1+0,0+100 */
    background: -moz-linear-gradient(-45deg, rgba(242,242,242,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(242,242,242,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(242,242,242,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* Animazione Blinking */
@keyframes blink {
    0% { color: white; }
    100% { color: yellow; }
}
@-webkit-keyframes blink {
    0% { color: blink; }
    100% { color: yellow; }
}
.blink {
    -webkit-animation: blink 3s linear infinite;
    -moz-animation: blink 3s linear infinite;
    animation: blink 3s linear infinite;
}

/* Animazione highlight */
@keyframes highlight {
    0% { background-color: yellow; }
    100% { background-color: white; }
}
@-webkit-keyframes highlight {
    0% { background-color: yellow; }
    100% { background-color: white; }
}
.highlight {
    -webkit-animation: highlight 1s linear;
    -moz-animation: highlight 1s linear;
    animation: highlight 1s linear;
}

/* header - menu */
@media (max-width: 768px) {
    .offcanvas.text-bg-light .navbar-nav .nav-link {
        color: var(--bs-dropdown-link-color);
    }

    .boxHeaderUser{
        margin-top: 1rem !important;
    }
}

.nav-scroller a.nav-link{
    color: rgb(var(--bs-body-color-rgb)) !important;
}

.nav-scroller a.nav-link:hover{
    background-color: rgb(var(--bs-secondary-bg-rgb)) !important;
    color: rgb(var(--bs-body-color-rgb)) !important;
}

.nav-scroller .nav-link.active{
    background-color: rgb(119 26 175 / 66%);
    color: rgb(var(--bs-white-rgb)) !important;
}


/* Animation delay */

.delay-2d {   -webkit-animation-delay: 0.2s; -moz-animation-delay:0.2s; animation-delay: 0.2s; }
.delay-4d {   -webkit-animation-delay: 0.4s; -moz-animation-delay:0.4s; animation-delay: 0.4s; }
.delay-6d {   -webkit-animation-delay: 0.6s; -moz-animation-delay:0.6s; animation-delay: 0.6s; }
.delay-8d {   -webkit-animation-delay: 0.8s; -moz-animation-delay:0.8s; animation-delay: 0.8s; }
.delay-1s {   -webkit-animation-delay: 1s; -moz-animation-delay:1s; animation-delay: 1s; }
.delay-2s {   -webkit-animation-delay: 2s; -moz-animation-delay:2s; animation-delay: 2s; }

/**
 * ----------------------------------------
 * Animazione: fade-in-fast
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-fast
{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-fast
{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}