/* This file is reserved for overriding and extending the template styles. */
.coord-tooltip {
    background: rgba(255,255,255,0.9);
    padding: 4px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    border: 1px solid #3333;
    pointer-events: none;
}

.container {
    border: 0 !important;
    padding-bottom: 40px;
}
.modal-dialog {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

 .modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

 .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
    min-height: 0;
}
.navbar-toggler {
display:none !important;
}
.dropdown-menu-end:after {

display:none
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 1000;
    width: 100%;
    color: black;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    /*border-bottom: 1px solid #d4d4d4;*/
}

.myautocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 1000;
    width: 100%;    
    color: black;
}

.myautocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    /*border-bottom: 1px solid #d4d4d4;*/
}
/*
    .myautocomplete-items div:hover {
        background-color: #e9e9e9;
    }*/
#select2-comuneSelect-container {
    padding-top: 19px !important;
}
.select2-selection {
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--separator) !important;
    background-color: transparent;
}
.inputError {
    border-bottom-color: red !important;
}
.myDisabled {
    background: rgba(var(--separator-rgb), 1) !important;
}
.myDisabledBtn {
    background: rgba(var(--separator-rgb),0.4) !important;
}
.myDisabledLink {
    color: rgba(0, 0, 0, 0.2) !important;
}
.clearfix {
    padding:10px;
    border-radius:5px;
}
.autoElem {
    
    cursor:pointer;
    padding:10px
}
.autoElem:hover {
    background-color: #F2F2F2;
    
}

.roller-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: transparent; /* Sfondo trasparente */
    color: var(--body); /* Puoi cambiarlo per adattarlo al tuo sfondo */
    font-size: 1.2rem;
    padding: 10px 0;
}

.roller-track {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}

.roller-container:hover .roller-track {
    animation-play-state: paused;
}

.roller-text {
    display: inline-block;
    padding-right: 3rem;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
