* {
    box-sizing: border-box;
}
body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Titillium Web";
    background-color: white;
    color: #000000;
}
a {
    color: #000000;
}
a:visited,
a:focus {
    color: #000000;
}
a:hover {
    color: #297A38;
}
a.dropdown-item {
    padding-left: 10px;
}
#show-element {
    height: 100%;
    width: 100%;
}
#show-element.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
button {
    height: 56px;
    width: 100%;
    max-width: 420px;
    background-color: #297A38;
    padding: 14px 28px;
    color: white;
    font-size: 19.8px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 0px;
    border-radius: 6px;
    transition: background-color 0.2s;
}
button > span {
    font-size: 21px;
}
button.medium {
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 5px;
}
button.medium > span {
    font-size: 18px;
}
button.small {
    height: 40px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 4px;
}
button.small > span {
    font-size: 16px;
}
button:hover {
    background-color: #1a4822;
}
button:focus {
    outline: none;
}
button:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
button.icon-button {
    height: 32px;
    width: 32px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
button.with-icon {
    padding-left: 10px;
    padding-right: 10px;
}
button.with-icon > span:first-of-type {
    margin-right: 10px;
}
input {
    background-color: transparent;
    border: 0 !important;
    border-bottom: 1px solid black !important;
    box-shadow: none;
    flex: 1;
    padding: 10px 10px 11px;
    color: #000000;
    font-size: 18px;
    letter-spacing: -0.32px;
    line-height: 40px;
}
input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #505051;
    opacity: 1;
    /* Firefox */
    text-transform: uppercase;
    font-size: 16px;
}
input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #505051;
    text-transform: uppercase;
    font-size: 16px;
}
input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #505051;
    text-transform: uppercase;
    font-size: 16px;
}
input:focus {
    outline: none;
    border-bottom: 2px solid #297A38 !important;
    padding-bottom: 10px;
}
.structure, .person-result, structure-no-children, .levSup, .ente, .privacy > div > a, .rooms-result {
    cursor: pointer;
}
.input-container {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
#free-search .input-container.org {
    height: auto;
}
.input-container .icon {
    position: absolute;
    top: 17.5px;
    left: 10px;
    height: 25px;
}
.input-container input {
    padding-left: 60px;
}
.input-container .icon-button {
    position: absolute;
    right: 0;
}
.input-container.small {
    height: 40px;
}
.input-container.small .icon {
    top: 0px;
    height: 18px;
    margin-right: 20px;
}
.input-container.small .icon.glyphicon {
    top: 10px;
    font-size: 18px;
}
@media only screen and (max-width: 991px) {
    .input-container.small .icon {
        top: 10px;
    }
}
.input-container.small input {
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 28px;
    padding-left: 48px;
}
@media only screen and (max-width: 991px) {
    .input-container.hide-icon-on-mobile .icon {
        display: none;
    }
    .input-container.hide-icon-on-mobile input {
        padding-left: 10px;
    }
}
@media only screen and (max-width: 991px) {
    .container {
        width: 100%;
    }
}
@media only screen and (min-width: 640px) and (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 970px;
    }
}
@media only screen and (min-width: 992px) {
    .container {
        width: 100%;
        max-width: 1450px;
    }
}
#contenuto {
    min-height: calc(100vh - 152px - 180px);
}
@media only screen and (max-width: 991px) {
    #contenuto {
        padding: 0;
    }
}
.no-padding {
    padding: 0 !important;
}
@media only screen and (min-width: 992px) {
    .visible-md-down {
        display: none !important;
    }
}
@media only screen and (max-width: 991px) {
    .visible-lg-up {
        display: none !important;
    }
}
.slide-right {
    animation: slide-right 1s forwards;
    -webkit-animation: slide-right 1s forwards;
    animation-delay: 0.2s;
    transform: translateX(-10%);
    opacity: 0;
}
@keyframes slide-right {
    0% {
        transform: translateX(-10%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-right {
    0% {
        transform: translateX(-10%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
.slide-left {
    animation: slide-left 1s forwards;
    -webkit-animation: slide-left 1s forwards;
    animation-delay: 0.2s;
    transform: translateX(10%);
    opacity: 0;
}
@keyframes slide-left {
    0% {
        transform: translateX(10%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-left {
    0% {
        transform: translateX(10%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
.slide-right-full {
    animation: slide-right-full 1s forwards;
    -webkit-animation: slide-right-full 1s forwards;
    animation-delay: 0.2s;
    transform: translateX(-100%);
    opacity: 0;
}
@keyframes slide-right-full {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-right-full {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
.slide-left-full {
    animation: slide-left-full 1s forwards;
    -webkit-animation: slide-left-full 1s forwards;
    animation-delay: 0.2s;
    transform: translateX(100%);
    opacity: 0;
}
@keyframes slide-left-full {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-left-full {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
.slide-up {
    animation: slide-up 1s forwards;
    -webkit-animation: slide-up 1s forwards;
    animation-delay: 0.2s;
    transform: translateY(20%);
    opacity: 0;
}
@keyframes slide-up {
    0% {
        transform: translateY(20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-up {
    0% {
        transform: translateY(20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
.popup {
    animation: popup 1s forwards;
    -webkit-animation: popup 1s forwards;
    transform: scale(0.6);
    opacity: 0;
}
@keyframes popup {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes popup {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.slide-down {
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    transform: translateY(-20%);
    opacity: 0;
}
@keyframes slide-down {
    0% {
        transform: translateY(-20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slide-down {
    0% {
        transform: translateY(-20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
.slide-right-reverse {
    animation: slide-right-reverse 0.8s forwards;
    -webkit-animation: slide-right-reverse 0.8s forwards;
}
@keyframes slide-right-reverse {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(-10%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-right-reverse {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(-10%);
        opacity: 0;
    }
}
.slide-left-reverse {
    animation: slide-left-reverse 0.8s forwards;
    -webkit-animation: slide-left-reverse 0.8s forwards;
}
@keyframes slide-left-reverse {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(10%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-left-reverse {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(10%);
        opacity: 0;
    }
}
.slide-right-reverse-full {
    animation: slide-right-reverse-full 0.8s forwards;
    -webkit-animation: slide-right-reverse-full 0.8s forwards;
}
@keyframes slide-right-reverse-full {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-right-reverse-full {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}
.slide-left-reverse-full {
    animation: slide-left-reverse-full 0.8s forwards;
    -webkit-animation: slide-left-reverse-full 0.8s forwards;
}
@keyframes slide-left-reverse-full {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-left-reverse-full {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
.slide-up-reverse {
    animation: slide-up-reverse 0.8s forwards;
    -webkit-animation: slide-up-reverse 0.8s forwards;
}
@keyframes slide-up-reverse {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform: translateY(20%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-up-reverse {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform: translateY(20%);
        opacity: 0;
    }
}
.slide-down-reverse {
    animation: slide-down-reverse 0.8s forwards;
    -webkit-animation: slide-down-reverse 0.8s forwards;
}
@keyframes slide-down-reverse {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform: translateY(-20%);
        opacity: 0;
    }
}
@-webkit-keyframes slide-down-reverse {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform: translateY(-20%);
        opacity: 0;
    }
}
@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-5px);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}
@-webkit-keyframes drop {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes drop {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.drop {
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.slide-down-list > *:nth-child(1) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.slide-down-list > *:nth-child(2) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.slide-down-list > *:nth-child(3) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.slide-down-list > *:nth-child(4) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.slide-down-list > *:nth-child(5) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.slide-down-list > *:nth-child(6) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.slide-down-list > *:nth-child(7) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.slide-down-list > *:nth-child(8) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.slide-down-list > *:nth-child(9) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.slide-down-list > *:nth-child(10) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.slide-down-list > *:nth-child(11) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    animation-delay: 1.1s;
}
.slide-down-list > *:nth-child(12) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
.slide-down-list > *:nth-child(13) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    animation-delay: 1.3s;
}
.slide-down-list > *:nth-child(14) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    animation-delay: 1.4s;
}
.slide-down-list > *:nth-child(15) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.slide-down-list > *:nth-child(16) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
.slide-down-list > *:nth-child(17) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    animation-delay: 1.7s;
}
.slide-down-list > *:nth-child(18) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.8s;
    -moz-animation-delay: 1.8s;
    animation-delay: 1.8s;
}
.slide-down-list > *:nth-child(19) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 1.9s;
    -moz-animation-delay: 1.9s;
    animation-delay: 1.9s;
}
.slide-down-list > *:nth-child(20) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
.slide-down-list > *:nth-child(21) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    animation-delay: 2.1s;
}
.slide-down-list > *:nth-child(22) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    animation-delay: 2.2s;
}
.slide-down-list > *:nth-child(23) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    animation-delay: 2.3s;
}
.slide-down-list > *:nth-child(24) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    animation-delay: 2.4s;
}
.slide-down-list > *:nth-child(25) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.slide-down-list > *:nth-child(26) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    animation-delay: 2.6s;
}
.slide-down-list > *:nth-child(27) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.7s;
    -moz-animation-delay: 2.7s;
    animation-delay: 2.7s;
}
.slide-down-list > *:nth-child(28) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.8s;
    -moz-animation-delay: 2.8s;
    animation-delay: 2.8s;
}
.slide-down-list > *:nth-child(29) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 2.9s;
    -moz-animation-delay: 2.9s;
    animation-delay: 2.9s;
}
.slide-down-list > *:nth-child(30) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    animation-delay: 3s;
}
.slide-down-list > *:nth-child(31) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.1s;
    -moz-animation-delay: 3.1s;
    animation-delay: 3.1s;
}
.slide-down-list > *:nth-child(32) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.2s;
    -moz-animation-delay: 3.2s;
    animation-delay: 3.2s;
}
.slide-down-list > *:nth-child(33) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.3s;
    -moz-animation-delay: 3.3s;
    animation-delay: 3.3s;
}
.slide-down-list > *:nth-child(34) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.4s;
    -moz-animation-delay: 3.4s;
    animation-delay: 3.4s;
}
.slide-down-list > *:nth-child(35) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    animation-delay: 3.5s;
}
.slide-down-list > *:nth-child(36) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.6s;
    -moz-animation-delay: 3.6s;
    animation-delay: 3.6s;
}
.slide-down-list > *:nth-child(37) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.7s;
    -moz-animation-delay: 3.7s;
    animation-delay: 3.7s;
}
.slide-down-list > *:nth-child(38) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.8s;
    -moz-animation-delay: 3.8s;
    animation-delay: 3.8s;
}
.slide-down-list > *:nth-child(39) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 3.9s;
    -moz-animation-delay: 3.9s;
    animation-delay: 3.9s;
}
.slide-down-list > *:nth-child(40) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    animation-delay: 4s;
}
.slide-down-list > *:nth-child(41) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.1s;
    -moz-animation-delay: 4.1s;
    animation-delay: 4.1s;
}
.slide-down-list > *:nth-child(42) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.2s;
    -moz-animation-delay: 4.2s;
    animation-delay: 4.2s;
}
.slide-down-list > *:nth-child(43) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.3s;
    -moz-animation-delay: 4.3s;
    animation-delay: 4.3s;
}
.slide-down-list > *:nth-child(44) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.4s;
    -moz-animation-delay: 4.4s;
    animation-delay: 4.4s;
}
.slide-down-list > *:nth-child(45) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.5s;
    -moz-animation-delay: 4.5s;
    animation-delay: 4.5s;
}
.slide-down-list > *:nth-child(46) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.6s;
    -moz-animation-delay: 4.6s;
    animation-delay: 4.6s;
}
.slide-down-list > *:nth-child(47) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.7s;
    -moz-animation-delay: 4.7s;
    animation-delay: 4.7s;
}
.slide-down-list > *:nth-child(48) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.8s;
    -moz-animation-delay: 4.8s;
    animation-delay: 4.8s;
}
.slide-down-list > *:nth-child(49) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 4.9s;
    -moz-animation-delay: 4.9s;
    animation-delay: 4.9s;
}
.slide-down-list > *:nth-child(50) {
    transform: translateY(-20%);
    opacity: 0;
    animation: slide-down 1s forwards;
    -webkit-animation: slide-down 1s forwards;
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    animation-delay: 5s;
}
@media only screen and (max-width: 991px) {
    .no-mobile-anim {
        transform: translate(0%, 0%);
        animation: none;
        opacity: 1;
        -webkit-animation: none;
    }
}

.header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.header .tophead {
    height: 58px;
    background-color: #297A38;
    display: flex;
    align-items: center;
}
.header .tophead .logo.small {
    height: 32px;
    margin-left: 20px;
}
@media only screen and (min-width: 992px) {
    .header .tophead .logo.small {
        display: none;
    }
}
.header .container {
    min-height: 94px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header .container .menu-toggle {
    height: 18px;
    margin: 24px 24px 24px 0;
    cursor: pointer;
}
@media only screen and (min-width: 992px) {
    .header .container .menu-toggle {
        display: none;
    }
}
.header .container .logo {
    height: 46px;
    margin: 24px 24px 24px 0;
}
@media only screen and (max-width: 991px) {
    .header .container .logo {
        display: none;
    }
}
.header .container .title {
    color: #576071;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.75px;
    line-height: 27px;
    margin: 0;
}
.footer {
    background-color: #003354;
    min-height: 180px;
    padding: 50px 45px;
    margin-top: 55px;
}
@media only screen and (max-width: 991px) {
    .footer {
        padding: 35px;
    }
}

.navbar {
    background-color: white;
    border: 0px;
    margin-bottom: 0px;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}
.navbar .container {
    min-height: unset;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.navbar .container ul {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    flex: 1;
}
.navbar .container ul li {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 28px;
    margin-right: 55px;
}
.navbar .container ul li a {
    text-decoration: none;
}
.navbar .container ul li:hover,
.navbar .container ul li.active {
    color: #297A38;
}
.navbar .container ul li:hover a,
.navbar .container ul li.active a {
    color: #297A38;
}
.navbar .container .nav-extra {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 28px;
    text-decoration: none;
}
.navbar .container .nav-extra .nav-icon {
    height: 20px;
    margin-right: 10px;
}
@media only screen and (max-width: 991px) {
    .navbar {
        position: absolute;
        left: 0;
        right: 0;
        top: 152px;
        min-height: 0;
        z-index: 500;
    }
    .navbar .container {
        width: 100%;
        padding: 0;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .navbar .container ul {
        width: 100%;
        flex-direction: column;
    }
    .navbar .container ul li {
        width: 100%;
        padding: 15px;
        font-weight: 400;
        font-size: 16px;
        margin-right: 0;
        border-bottom: 1px solid #ededed;
        background-color: white;
    }
    .navbar .container .nav-extra {
        font-size: 16px;
        font-weight: 400;
        padding: 15px;
    }
    .navbar .container .nav-extra .nav-icon {
        height: 15px;
        margin-right: 10px;
    }
}
@media only screen and (min-width: 992px) {
    .navbar {
        display: block;
    }
}
.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-size: 16px;
    letter-spacing: -0.07px;
    line-height: 24px;
}
h1.dashboard-title {
    color: #576071;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: -2.1px;
    line-height: 76px;
    margin: 33px 0;
}
@media only screen and (max-width: 991px) {
    h1.dashboard-title {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.75px;
        line-height: 27px;
    }
}
.dashboard-grid {
    margin-top: -33px;
}
@media only screen and (max-width: 991px) {
    .dashboard-grid {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }
    .dashboard-grid > div {
        padding: 0;
    }
}
.dashboard-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    background-color: #EAF0E9;
    margin-top: 33px;
}
.dashboard-card img {
    height: 90px;
}
@media only screen and (max-width: 991px) {
    .dashboard-card {
        min-height: 160px;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    .dashboard-card img {
        height: 60px;
    }
}
.login-container {
    width: 100%;
    min-height: calc(100vh - 152px - 180px - 50px);
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EAF0E9;
}
.login-container form {
    margin: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media only screen and (max-width: 991px) {
    .login-container form {
        align-items: center;
        margin: 10%;
    }
}
@media only screen and (max-width: 991px) {
    .login-container {
        min-height: calc(100vh - 152px - 180px);
        margin-top: 0;
        margin-bottom: 0;
    }
}
.search-start {
    width: 100%;
    min-height: calc(100% - 50px);
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EAF0E9;
}
.search-start .element {
    flex: 1;
    padding: 50px;
}
.search-start .element form {
    margin-left: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
@media only screen and (max-width: 991px) {
    .search-start .element form {
        align-items: center;
        margin-left: 0;
    }
}
.search-start > img {
    max-height: 450px;
    margin: 50px;
}
@media only screen and (max-width: 991px) {
    .search-start {
        flex-direction: column;
        margin-top: 0px;
        margin-bottom: 0px;
        background-color: white;
    }
    .search-start .element {
        width: 100%;
        background-color: #EDECEC;
        padding: 5px 15px 15px;
    }
    .search-start .element .input-container {
        margin-bottom: 0;
    }
    .search-start .element .input-container input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: transparent;
    }
    .search-start .element .input-container input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: default;
    }
    .search-start .element .input-container input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: transparent;
    }
    .search-start > img {
        width: 100%;
        margin: 50px 0;
    }
}
.search-container {
    width: 100%;
    min-height: calc(100% - 50px);
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
@media only screen and (max-width: 991px) {
    .search-container {
        flex-direction: column;
        margin-top: 0px;
        margin-bottom: 0px;
        background-color: white;
    }
}
.search-container .sidebar {
    width: 100%;
    max-width: 356px;
    margin-right: 20px;
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar {
        margin-right: 0;
        max-width: 100%;
    }
    .search-container .sidebar form {
        width: 100%;
        background-color: #EDECEC;
        padding: 5px 15px 15px;
    }
    .search-container .sidebar form .input-container {
        margin-bottom: 0;
    }
    .search-container .sidebar form .input-container input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: transparent;
    }
    .search-container .sidebar form .input-container input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: transparent;
    }
    .search-container .sidebar form .input-container input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: transparent;
    }
}
.search-container .sidebar .results .results-header {
    height: 28px;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar .results .results-header {
        height: auto;
        margin: 0;
        padding: 20px 15px;
        border-bottom: 1px solid #CCCCCC;
    }
}
.search-container .sidebar .results .suggestions-header {
    color: #297A38;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.33px;
    line-height: 16px;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 15px;
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar .results .suggestions-header {
        margin: 20px 15px 10px;
    }
}
.search-container .sidebar .results .suggestions-header a {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
    color: #000000;
    text-transform: none;
    text-decoration: none;
}
.search-container .sidebar .results .suggestions-header a > span:first-of-type {
    text-decoration: underline;
    margin-right: 5px;
}
.search-container .sidebar .results ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
.search-container .sidebar .results ul > * {
    text-decoration: none;
    border-bottom: 1px solid #CCCCCC;
}
.search-container .sidebar .results ul > * li {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
    padding: 25px 15px 25px 12px;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}
.search-container .sidebar .results ul > * li .result-icon {
    margin-right: 10px;
}
.search-container .sidebar .results ul > * li .arrow-icon {
    margin-left: auto;
    color: rgba(0, 0, 0, 0.54);
    opacity: 0;
}
@media only screen and (min-width: 992px) {
    .search-container .search-detail-container .search-detail-header .search-detail-title.competenze h4 {
        font-size: 26px;
    }
    .search-container .sidebar .results.orgs .entry-point {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .search-container .sidebar .results.orgs .entry-point .arrow-icon {
        display: none;
    }
    .search-container .sidebar .results.orgs ul > a.structure, .search-container .sidebar .results.orgs ul > a.structure-no-children {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .search-container .sidebar .results.orgs ul > a.structure .mob-struct li:first-child, .search-container .sidebar .results.orgs ul > a.structure-no-children .mob-struct li:first-child {
        padding: 25px 15px 10px 12px;
    }
    .search-container .sidebar .results.orgs ul > a .mob-struct {
        cursor: pointer;
    }
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar .results.orgs {
        margin-left: 15px;
        margin-right: 15px;
    }
    .search-container .sidebar .results.orgs .suggestions-header {
        margin: 20px 0px 10px;
    }
    .search-container .search-detail-container .search-detail-header .search-detail-title.competenze {
        margin-bottom: 10px;
    }
    .search-container .search-detail-container .search-detail-header .search-detail-title.competenze h4 {
        font-size: 14px;
    }
    .search-container .sidebar .results.orgs ul > * li .arrow-icon {
        opacity: 1;
    }
    .search-container .sidebar .results.orgs ul > a > li {
        padding: 0;
        height: 60px;
        justify-content: space-between;
    }
    .search-container .sidebar .results.orgs ul > a .mob-struct li:first-child {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: unset;
        padding: 0 12px;
    }
    .search-container .sidebar .results.orgs ul > a .mob-struct li.position {
        padding-top: 5px;
    }
    .search-container .sidebar .results.orgs ul > * li > span:first-child {
        max-width: 80%;
    }
    .search-container .sidebar .results.orgs ul > * li > span.arrow-icon {
        height: 100%;
        display: flex;
        align-items: center;
        width: 45px;
        justify-content: center;
        border-left: 1px solid grey;
        border-right: 1px solid grey;
    }
    .search-container .sidebar .results.orgs ul > * {
        text-decoration: none;
        border-bottom: 1px solid #CCCCCC;
        border-top: 1px solid #CCCCCC;
    }
    .search-container .sidebar .results.orgs ul .mob-struct {
        display: flex;
        flex-direction: column;
    }
    .search-container .sidebar .results.orgs ul > a.structure,  .search-container .sidebar .results.orgs ul > a.structure-no-children{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .search-container .sidebar .results.orgs ul > a.structure .mob-struct, .search-container .sidebar .results.orgs ul > a.structure-no-children .mob-struct {
        display: flex;
        flex-direction: column;
        height: 70px;
        justify-content: center;
        width: 87%;
    }
    .search-container .sidebar .results.orgs ul > a.structure .mob-struct span:first-child, .search-container .sidebar .results.orgs ul > a.structure-no-children .mob-struct span:first-child {
        font-weight: 700;
        margin-bottom: 5px;
    }
    .search-container .sidebar .results.orgs ul > a.structure .arrow-icon, .search-container .sidebar .results.orgs ul > a.structure-no-children .arrow-icon {
        height: 100%;
        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-left: 1px solid grey;
        border-right: 1px solid grey;
        position: relative;
        line-height: 3;
    }
    .search-container .sidebar .results .entry-point {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }
    .search-container .sidebar .results .entry-point .mob-struct {
        width: 87%;
    }
    .search-container .sidebar .results .entry-point .arrow-icon {
        height: 100%;
        display: flex;
        align-items: center;
        width: 45px;
        border-left: 1px solid grey;
        border-right: 1px solid grey;
        justify-content: center;
    }
    .search-container .sidebar .results.orgs .suggestions-header button {
        width: 50%;
        font-size: 14px;
        height: 35px;
        padding: 0;
    }
    .search-container .sidebar .results.orgs .suggestions-header {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }
}
.search-container .sidebar .results ul > * li:hover,
.search-container .sidebar .results ul > * li.active {
    color: #297A38;
    background-color: transparent;
    border-left: 3px solid transparent;
}
.search-container .sidebar .results ul > * li.active .arrow-icon {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    opacity: 0;
}
.search-container .sidebar .results ul > * li.subitem-lv1 {
    margin-left: 15px;
}
.search-container .sidebar .results ul > * li.subitem-lv2 {
    margin-left: 30px;
}
.search-container .sidebar .results ul > * li.leaf:hover,
.search-container .sidebar .results ul > * li.leaf.active {
    color: #297A38;
    background-color: #EAF0E9;
    border-left: 3px solid #297A38;
}
.search-container .sidebar .results ul > * li.leaf.active .arrow-icon {
    opacity: 1;
}
.search-container .sidebar .results ul > * li.leaf .arrow-icon {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar .results ul > * li.leaf .arrow-icon {
        animation: none;
        -webkit-animation: none;
    }
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar .results ul > * li.leaf .arrow-icon {
        opacity: 1;
    }
}
.search-container .sidebar.advanced form {
    height: auto;
    display: block;
    flex-direction: column;
}
.search-container .sidebar.advanced form input {
    margin-bottom: 20px;
}
.search-container .sidebar.advanced form input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #505051;
}
.search-container .sidebar.advanced form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #505051;
}
.search-container .sidebar.advanced form input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #505051;
}
@media only screen and (max-width: 991px) {
    .search-container .sidebar.advanced {
        margin-right: 0px;
        padding: 0 20px 20px;
    }
    .search-container .sidebar.advanced form {
        padding-top: 10px;
    }
    .search-container .sidebar.advanced form .input-container {
        margin-bottom: 20px;
    }
    .search-container .sidebar.advanced form .input-container input {
        margin-bottom: 0px;
    }
}
.search-container .sidebar .bottom-box {
    flex: 1;
    display: flex;
    align-items: flex-end;
}
.search-container .sidebar .bottom-box-no-end {
    flex: 1;
    display: flex;
}
.search-container .search-detail-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.search-container .search-detail-container.placeholder {
    background-color: #EAF0E9;
    padding: 50px;
    align-items: center;
}
.search-container .search-detail-container.placeholder > img {
    max-height: 400px;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container.placeholder {
        background-color: white;
    }
    .search-container .search-detail-container.placeholder > img {
        width: 100%;
        margin-top: 50px;
    }
}
.search-container .search-detail-container .select-search-detail-message {
    height: 28px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 15px;
}
.search-container .search-detail-container.placeholder-alt {
    flex-direction: row;
}
.search-container .search-detail-container.placeholder-alt > img {
    max-height: 450px;
}
.search-container .search-detail-container.placeholder-alt .select-search-detail-message {
    font-size: 20px;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container.placeholder-alt {
        flex-direction: column;
    }
}
.search-container .search-detail-container .search-detail-item {
    background-color: #EAF0E9;
    padding: 25px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    cursor: default;
}



@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item {
        padding: 20px;
        min-height: calc(100vh - 152px - 180px);
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item.structure {
        padding: 20px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .slide-up {
        min-height: unset;
    }
}

.search-container .search-detail-container .search-detail-item .search-detail-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-title {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 15px;
        padding-bottom: 5px;
        margin-bottom: 0px;
        border-bottom: 1px dashed rgba(41, 122, 56, 0.36);
    }
}
.search-container .search-detail-container .search-detail-item .search-detail-title h4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -0.2px;
    line-height: 30px;
    padding: 0;
    margin: 0;
}
.search-container .search-detail-container .search-detail-item .search-detail-title h4 > span {
    font-size: 30px;
    margin-right: 15px;
}
.search-container .search-detail-container .search-detail-item .search-detail-title > a {
    margin-left: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 15px;
    color: #297A38;
    text-decoration: underline;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-title > a {
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 20px;
    }
}
.search-container .search-detail-container .search-detail-item .people-list,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list {
    margin-bottom: 30px;
}
.search-container .search-detail-container .search-detail-item .people-list > div,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.search-container .search-detail-container .search-detail-item .people-list > div a,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a {
    width: 100%;
    border-bottom: 1px solid rgba(41, 122, 56, 0.36);
    border-left: 3px solid transparent;
    padding: 20px 20px 20px 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.search-container .search-detail-container .search-detail-item .people-list > div a .name,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a .name {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.search-container .search-detail-container .search-detail-item .people-list > div a .name > span:first-of-type,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a .name > span:first-of-type {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
    color: #1a4822;
    text-transform: uppercase;
    text-decoration: underline;
    padding-bottom: 5px;
}
.search-container .search-detail-container .search-detail-item .people-list > div a .name > span:last-of-type,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a .name > span:last-of-type {
    color: #000000;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 16px;
}
.search-container .search-detail-container .search-detail-item .people-list > div a:hover,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a:hover {
    background-color: #D5E5D8;
    border-left-color: #297A38;
}
.search-container .search-detail-container .search-detail-item .people-list > div .arrow-icon,
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div .arrow-icon {
    margin-left: auto;
    color: rgba(0, 0, 0, 0.54);
}
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a .name > span:first-of-type {
    color: #000000;
    font-size: 14.4px;
    letter-spacing: -0.24px;
    line-height: 19.2px;
    text-decoration: none;
}
.search-container .search-detail-container .search-detail-item .mobile-collaborators-list > div a .name > span:last-of-type {
    color: #000000;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 16px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-info-container {
        flex-direction: column;
    }
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list {
    flex: 1;
    margin-bottom: 30px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-info-label {
    color: #000000;
    font-size: 18px;
    letter-spacing: -0.26px;
    line-height: 28px;
    font-weight: bold;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-info-label {
        margin-left: 25px;
    }
    .search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-info-label:first-of-type {
        margin-left: 0;
    }
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-title .search-detail-info-label {
    font-size: 14px;
    letter-spacing: -0.22px;
    line-height: 28px;
    margin-left: 0px !important;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-detail-title .search-detail-info-label:first-of-type {
    padding-left: 0;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list > div .search-detail-info {
    border-bottom: 1px dashed rgba(41, 122, 56, 0.36);
    padding: 15px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list > div .search-detail-info {
        flex-wrap: wrap;
        max-width: 100%;
    }
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list > div .search-detail-info a {
    color: #297A38;
    text-decoration: underline;
    font-size: 16px;
    letter-spacing: -0.26px;
    line-height: 28px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-inline-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.26px;
    line-height: 28px;
    text-decoration: none !important;
    color: #000000;
    text-transform: uppercase;
    padding: 15px 0;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list .search-inline-button > span:last-of-type {
    text-decoration: underline !important;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    background-color: #D5E5D8;
    padding: 25px;
    margin-left: 25px;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar {
        width: 100%;
        margin-left: 0;
        background-color: transparent;
        padding: 0px;
    }
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .search-detail-info-section-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #000000;
    font-size: 16px;
    letter-spacing: -0.26px;
    line-height: 28px;
    font-weight: bold;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-mobile-header {
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.33px;
    line-height: 23px;
    text-transform: uppercase;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-mobile-header a {
    color: #1a4822;
    text-decoration: underline;
    text-transform: none;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list {
    margin-bottom: 30px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-bottom: 1px solid rgba(41, 122, 56, 0.36);
    padding: 20px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a {
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a .single {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a .single > span:first-of-type {
    color: #1a4822;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a:hover .single > span:first-of-type {
    text-decoration: underline;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a .collapse-icon {
    margin-left: auto;
    color: rgba(0, 0, 0, 0.54);
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a .collapse-icon::before {
    content: "-";
    color: primary-color-dark;
    text-decoration: none;
    font-size: 24px;
    line-height: 16px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > a.collapsed .collapse-icon::before {
    content: "+";
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > div:last-of-type > div {
    margin: 10px 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 24px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > div:last-of-type > div .search-detail-collaborator-label {
    color: #000000;
    font-weight: bold;
    padding-left: 0;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 24px;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > div:last-of-type > div a {
    color: #297A38;
    text-decoration: underline;
    margin-left: 0.2rem;
}
.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-sidebar .collaborators-list > div > div > div:last-of-type > a {
    color: #297A38;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
}
.search-container .search-detail-container .search-detail-header {
    background-color: #D5E5D8;
    padding: 25px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.search-container .search-detail-container .search-detail-header .search-detail-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-header .search-detail-title {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
.search-container .search-detail-container .search-detail-header .search-detail-title h4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -0.2px;
    line-height: 30px;
    padding: 0;
    margin: 0;
}
.search-container .search-detail-container .search-detail-header .search-detail-title h4 > span {
    font-size: 30px;
    margin-right: 15px;
}
.search-container .search-detail-container .search-detail-header .search-detail-title a {
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 15px;
    color: #1a4822;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.search-container .search-detail-container .search-detail-header .search-detail-title a > span:last-of-type {
    text-decoration: underline;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-header .search-detail-title a {
        margin-left: 0;
        margin-bottom: 20px;
    }
}
.search-container .search-detail-container .search-detail-header .search-detail-header-info a {
    color: #1a4822;
    margin-left: 5px;
}
@media only screen and (max-width: 991px) {
    .search-container .search-detail-container .search-detail-header .search-detail-header-info {
        display: flex;
        flex-wrap: wrap;
    }
    .search-container .search-detail-container .search-detail-header .search-detail-header-info > span {
        margin-left: 0px !important;
    }
}
@media only screen and (max-width: 991px) {
    .search-container.mobile-person-container {
/*        overflow: hidden;*/
        position: relative;
        transition: height 0.6s;
    }
    .search-container.mobile-person-container > div {
        left: 0;
        top: 0;
        right: 0;
        transition: transform 0.6s;
    }
    .search-container.mobile-person-container > div.move-to-absolute {
        position: absolute;
    }
    .search-container.mobile-person-container #person-detail {
        transform: translateX(100%);
        z-index: 100;
    }
    .search-container.mobile-person-container #lista_responsabili {
        transform: translateX(100%);
        z-index: 200;
    }
    .search-container.mobile-person-container #lista_collaboratori {
        transform: translateX(100%);
        z-index: 300;
    }
}

.search-start .segnalazione {
    flex: auto;
}

.segnalazione-form .input-container input::placeholder {
    color: #505051 !important;
}
.segnalazione-form .input-container.pl-5 input {
    padding-left: 5px;
}
.segnalazione-form .input-container.pl-5 + .input-container {
    margin: 50px 0;
}

#privacy-div {
    max-width: 100%;
}

.segnalazione-form .input-container.privacy {
    justify-content: space-between;
}
.segnalazione-form .input-container.privacy label {
    margin-bottom: 0;
    padding-left: 5px;
    color: #505051;
    opacity: 1;
    text-transform: uppercase;
    font-size: 16px;
}

.segnalazione-form .input-container.privacy div:last-child input[type="checkbox"] {
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin-top: 0;
}
.segnalazione-form .input-container textarea {
    width: 100%;
    padding: 5px;
    resize: none;
    overflow: auto;
}
.segnalazione-form .input-container textarea::placeholder {
    color: #505051;
    opacity: 1;
    text-transform: uppercase;
    font-size: 16px;
}
.segnalazione-form .message .text-danger {
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #d92828;
}
.segnalazione-form .message .text-success {
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #297A38;
}
.message .text-danger {
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #d92828;
}
.message .text-success {
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #297A38;
}
.segnalazione-form a {
    color: #297A38;
    text-decoration: underline;
    font-size: 16px;
    letter-spacing: -0.26px;
    line-height: 28px;
}
.segnalazione-form .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 420px;
    margin-bottom: 30px;
}
.segnalazione-form .actions button {
    width: 40%;
    max-width: 150px;
}
.segnalazione-form .actions button:first-child {
    margin-left: auto;
}
.segnalazione-form .actions button + button {
    margin-left: 15px;
}
.segnalazione-form .actions button[type="reset"] {
    border: 2px solid #297A38;
    background: #ffffff;
    color: #297A38;
}
.segnalazione-form .actions button[type="reset"]:hover {
    border-color: #1a4822;
    color: #1a4822;
}

.leaf {
    cursor: pointer;
}
.err-message {
    color: red;
    font-size: 16px;
    margin-top: 10px;
}
.succ-message {
    color: rgb(41, 122, 56);
    font-size: 16px;
    margin-top: 10px;
}
.logout-button {
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    background-color: #297A38;
    color: white !important;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
}
.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: .5em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent;
}
.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.btn-group.dropleft > .btn.btn-secondary.dropdown-toggle {
    color: white;
    text-decoration: none;
    background-color: #297A38;
}
.font-size-14 {
    font-size: 14px;
}
.ui-menu {
    background-color: #EAF0E9;
    max-width: 370px;
    list-style: none
}
.ui-menu-item {
    border-bottom: 1px dotted black;
}
.ui-state-focus {
    border: 1px solid #999999;
    background-color: white;
    font-weight: bold;
    color: #212121;
}
.ui-helper-hidden-accessible {
    display:none;
}


.search-container .sidebar .results a.active.structure > li,
.search-container .sidebar .results a.structure-no-children > li,
.search-container .sidebar .results a.children > li,
.search-container .sidebar .results a.name-surname.leaf.structure > li,
.search-container .sidebar .results a.structure.result > li{
    padding-bottom: 5px;
    margin-left: 0px;
}


.search-container .sidebar .results ul > * li.position.child,
.search-container .sidebar .results a.name-surname.leaf.structure > li.position,
.search-container .sidebar .results a.structure.result > li.position {
    padding: 0px 15px 5px 12px;
    text-transform: none;
    font-weight: normal;
    margin-left: 0px;
}

.search-container .sidebar .results ul > * li.position.parent {
    padding: 0px 15px 5px 12px;
    text-transform: none;
    font-weight: normal;
    color: #000000;
    margin-left: 0px;
}

.search-container .sidebar .results ul > a.child {
    margin-left: 15px;
}

@media only screen and (min-width: 991px) {
    .search-container .sidebar .results a.child:hover,
    .search-container .sidebar .results a.leaf.active,
    .search-container .sidebar .results a.name-surname.leaf.structure:hover,
    .search-container .sidebar .results a.structure.result:hover {
        color: #297A38;
        background-color: #EAF0E9;
        border-left: 3px solid #297A38;
    }
}

.search-container .sidebar .results a.active.structure > li {
    color: #297A38;
}

.search-container .sidebar .results ul > * li.position.parent,
.search-container .sidebar .results ul > * li.position.parent:hover {
    color: #000000;
}


.search-container .sidebar .results a.leaf.active > li .arrow-icon {
    opacity: 1;
}
.search-container .sidebar .results a.leaf > li .arrow-icon {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.search-container .search-detail-container .search-detail-item .search-detail-title h4.room-title {
    font-size: 15px;
}

.search-container .search-detail-container .search-detail-item .people-list > div a .name.room-person > span:first-of-type {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.23px;
    line-height: 16px;
    color: #000000;
    text-transform: none;
    text-decoration: none;
    padding-bottom: 5px;
}

.search-container .search-detail-container .search-detail-item .people-list > div a .name.room-person > span:last-of-type {
    color: #297A38;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 16px;
}

.search-container .search-detail-container .search-detail-item .search-detail-info-container .search-detail-info-list > div .search-detail-info a.interno {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: -0.26px;
    line-height: 28px;
}

.mobile-contact-buttons {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.small.with-icon > a {
    color: #ffffff;
}


.fading-border {
    position: relative;
}

.fading-border::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #358624 0%, transparent 100%);
}

