.underline-custom:after {
    background: var(--bs-secondary-color);
}

.widget-graph {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    box-shadow: inset 0px 0px 14px 3px rgb(255 255 255 / 8%);
    margin: 5px;
}

:root {
    /*--bs-secondary-color: #456c07;*/
    --bs-secondary-color: var(--bs-green-custom);
    --bs-car-nav-color: rgb(255, 255, 255);
    --bs-card-tabelle-color: rgba(1, 5, 59, 0.2);
    /*--bottom-navbar-color:rgba(38, 50, 58, 0.99);*/
    --body-background: rgb(8 8 8);
    --bs-font-sans-serif: "Open Sans Custom", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bottom-navbar-color: var(--bs-dark-custom);
    --bs-dark-custom: #ffffff;
    --bs-blue-custom: #009ddc;
    --bs-blue-custom-trasparent: rgba(0, 157, 220, 0.18);
    --bs-red-custom: #093983;
    --bs-red-custom-trasparent: rgba(178, 25, 41, 0.17);
    --bs-violet-custom: #040025;
    --bs-green-custom: #01091f;
    --bs-green-custom-trasparent: rgba(0, 155, 114, 0.27);
    --bs-yellow-custom: #939802;
    --bs-yellow-custom-trasparent: rgba(145, 125, 1, 0.11);


}

.gradient-text-v-g-y {
    background: -webkit-linear-gradient(var(--bs-violet-custom), var(--bs-green-custom), var(--bs-red-custom));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-r-b {
    background: -webkit-linear-gradient(black, var(--bs-green-custom));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-w-y {
    background: -webkit-linear-gradient(white, yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.background-gradient-green {
    background: radial-gradient(ellipse at top, #e3e2e2, transparent),
    radial-gradient(ellipse at bottom, rgba(117, 169, 4, 0.18), transparent);
}

.background-gradient-blu {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 71%, var(--bs-blue-custom-trasparent) 100%);
}

.gradient-background {

    background: linear-gradient(217deg, rgb(0 0 0 / 73%), rgb(3 3 3 / 97%) 70.71%),
    linear-gradient(127deg, rgb(15 73 119 / 64%), rgb(45 85 94) 70.71%),
    linear-gradient(336deg, rgb(78 97 180 / 93%), rgb(142 142 164) 70.71%)
}

.color-text-menu {
    color: #dedee0;
}

.card-custom {
    background-color: rgb(150 151 154 / 36%); /* rgb(60, 72, 111);*/
    border: none;
}


.link-color-custom {
    color: #83d79b;
}

.card-custom:hover {
    /*background-color: var(--bs-indigo);*/
}

body {
    /*background: rgb(74, 85, 123);*/
    /*background: rgb(3, 17, 51);*/
    /*background: rgb(25 32 51);*/
    background: var(--body-background);
    color: white;

}

.card-body-custom {
    /*background-color: #3c486f;*/
    background-color: rgb(255, 255, 255);
    color: black;
    border-style: none;
    border-radius: 20px;
    box-shadow: -1px -1px 11px 0px rgb(0 0 0 / 14%);
}

input[type='range'] {
    overflow: hidden;
    width: 80px;
    -webkit-appearance: none;
    /*background-color: #9a905d;*/
}

.form-input-custom {
    color: #f3f3fa;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 10px;
    box-shadow: -1px -1px 11px 0px rgba(0, 0, 0, 0.38);
    border: none;
}

select option {
    margin: 40px;
    background: rgb(255, 255, 255);
    color: #000002;
}

select option[selected] {
    background-color: var(--bs-secondary-color);
    color: #000002;
}

.dataTable {
    color: #e3e3e3;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(31, 30, 30, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(12, 12, 12, 0.16);
}

.item-menu-info-utenti {
    margin-top: 4px;
    margin-bottom: 0px;
    color: #000002;
    background-color: #918e8e;
    border-radius: 10px;
    text-align: right;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(46, 47, 47, 0.31);
}

.item-menu-info-utenti:hover {
    background-color: #5a7053;
}

.grow-animation-custom {
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 0.5s;
    -webkit-animation-name: grow;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: grow;
    -moz-animation-duration: 0.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    transition-property: -moz-transform;
    transition-duration: 1s;
    animation-name: grow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes grow {
    from {
        -webkit-transform: scale(1);
    }
    to {
        -webkit-transform: scale(2);
    }
}

@-moz-keyframes grow {
    from {
        -moz-transform: scale(1);
    }
    to {
        -moz-transform: scale(2);
    }
}

@keyframes grow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(2);
    }
}

.profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

.file-upload {
    display: none;
}

.circle {
    border-radius: 100% !important;
    overflow: hidden;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: 72px;
    display: flex;
    align-items: center;
    margin: auto;
}

.circle-recensione {
    overflow: hidden;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: 72px;
    display: flex;
    align-items: center;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
}

.p-image {
    /*position: absolute;*/
    top: 167px;
    right: 30px;
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.p-image:hover {
    transition: all .3s cubic-bezier(var(--bs-secondary-color));
}

.upload-button {
    font-size: 1.2em;
}

.upload-button:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    color: #999;
}

.accordion-item-custom {
    border-bottom-style: none;
    border-bottom-width: 1px;
    border-color: rgb(122, 122, 122);
    box-shadow: -1px 11px 11px 0px rgb(0 0 0 / 14%);
}

.accordion-item-body {
    border-style: None;
    border-radius: 10px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.25);
}

.navbar-custom {
    /*background: rgb(60,72,111);*/
    /*background-color: #19243e;*/
    /*background-color: rgba(38, 50, 58, 0.99);*/
    height: 40px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: #000000;
    box-shadow: 0px 1px 14px -7px rgb(255 255 255 / 63%);
}

.navbar-top-custom {
    -webkit-box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.27);
    box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.27);
    background-color: rgb(0, 0, 0);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.btn-day-calendar {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 22px;
    color: white;
    border-color: transparent;
    padding: 1px;
}

.btn-day-calendardisabled {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 22px;
    color: white;
    border-color: transparent;
    padding: 1px;
}

.btn-day-calendar:hover {
    border-color: #00b779;
    border-style: solid;
}

.calendar thead {
    font-size: 18px;
    color: #5d605d;
}

.dataTables_wrapper {
    font-family: var(--bs-body-font-family);
}

.icon_button {
    font-size: 40px;
    color: var(--bs-secondary-color)
}

.icon_button:hover {
    color: #33c211;
}

.modal-custom {
    background-color: rgb(19 19 24);
    border-radius: 20px;
}

.modal-button-aggiungi {
    background-color: var(--bs-secondary-color);
    border-radius: 20px
}

.modal-button-indietro {
    background-color: dimgrey;
    border-radius: 20px;
    color: black;
}

.accordion-custom {
    background-color: var(--bs-card-tabelle-color);
}

.dropdown-item-custom {
    color: #f5f4f4;
}

.dropdown-item-custom:hover {
    color: var(--bs-secondary-color);
}

.dropdown-menu-show-custom {
    background-color: var(--body-background);
}

.notifiche-foto {
    background: red;
    position: absolute;
    translate: -9px;
    border-radius: 100%;
}

.notifiche-richieste {
    background: #c2203a;
    position: absolute;
    translate: -9px;
    border-radius: 100%;
    transform: translateY(-14px);
}

.notifiche-richieste-bottom {
    background: #c2203a;
    position: absolute;
    translate: 37px;
    border-radius: 100%;
    transform: translateY(-2px);
}

.nav-link {
    color: #bebdbd;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--bs-secondary-color);
    border-radius: 10px;
    color: white !important;
}

.button-wizard {
    font-weight: bold;
    padding: 20px;
    color: #070707;
    font-size: 18px
}

.captcha {

    font-style: italic;
    font-weight: bold;
    font-size: 1em;
    padding: 3px;
    border-radius: 5px;
    text-decoration: line-through;
    color: #a0a0a0;
    background-color: #0c0c0c;
}

.restart a {
    text-decoration: none;
}

.errmsg {
    color: #e30202;
    padding: 5px;
    transition: 0.5s ease;
}

.menu-item:hover {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: var(--bs-secondary-color);
}

.lbl-descrizione {
    color: rgb(16, 16, 16);
    font-style: italic;
}

.widget-card {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bottom-navbar-color);
    color: white;
}

.btn-day-of-week {
    border-radius: 100%;
    height: 45px;
    width: 45px;
    background-color: #4e5d78;
    color: white;
    font-size: 10px;
}

.select2-container--default .select2-selection--single {
    background-color: rgba(0, 183, 121, 0) !important;
    color: black !important;
    border-radius: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: black !important;
    background-color: rgba(255, 255, 255, 0) !important;
    border-radius: 20px !important;
}

.select2-container--default .select2-results > .select2-results__options {
    background-color: var(--bs-car-nav-color);
    color: black;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: var(--bs-car-nav-color);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    color: black !important;
}

.select2-search--dropdown {
    background-color: var(--bs-car-nav-color) !important;
}

.menu-selected-custom {
    background-color: var(--bs-secondary-color) !important;
    color: whitesmoke !important;
}


.modal-backdrop {
    opacity: 0.8 !important;
}

.li-custom {
    margin-top: 5px;
    border-radius: 5px;
    background-color: transparent;
}

.form-check-input:checked {
    background-color: var(--bs-secondary-color) !important;
}

.card-title {
    color: Black !important;
}

p {
    color: #c4c4c4;
}

.side-line {
    background-color: hsla(0, 0%, 73%, .3);
    bottom: -70px;
    left: 60px;
    position: absolute;
    right: auto;
    top: -30px;
    width: 5px;
}

div {
    color: #cecece;
}

button {
    color: whitesmoke;
    border-radius: 20px;
}

.btn {
    color: whitesmoke;
    border-radius: 20px;
    font-size: 14px;
}

.nav-pills .nav-link {
    color: black !important;
}

.card-table-item {
    background-color: white;
    color: white;
    border-radius: 20px;
    font-size: 12px;
}

.navbar-toggler {
    border-radius: 20px !important;
}

/*.select2-container--open .select2-dropdown--below{
    z-index: 10000!important;
}*/

/*.select2-hidden-accessible{
    position:unset!important;
}*/

.modal-content {
    border-style: none !important;
}

.icon-area-personale {
    color: #629105;
}

.button-small {
    font-size: 12px;
}

/* FIX INPUT GOGLE PLACE*/
.pac-container {
    background-color: #FFF;
    z-index: 2001;
    position: fixed;
    display: inline-block;
    float: left;
}

.btn-multi-select {
    background-color: rgba(249, 249, 255, 0.98);
    color: black;
    border-style: solid;
    border-width: 2px;
    border-color: #1b1e44;
}

.btn:hover {
    background-color: whitesmoke;
!important
}

.centered-text-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box-shadow {
    box-shadow: -1px -1px 11px 0px rgb(0 0 0 / 14%);
    border-radius: 30px;
}

.icon-button:hover {
    color: #00adb5;
}

.web-push-button {
    background: #0b80ac63;
}

.dataTables_filter input {
    background-color: rgba(243, 243, 243, 0); /* Colore di sfondo */
    color: white;
    border: 1px solid #ccc; /* Bordo */
    padding: 5px 10px; /* Padding */
    margin-bottom: 10px;
    border-radius: 10px;
}

p {
    color: white;
}