﻿#contenitorePannelliLaterali {
    overflow: hidden;
    position: absolute;
    top: 50px;
    width: auto;
    right: 0vw;
    height: calc(100vh - 50px);
    padding: 7px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.schedaPopupLaterale {
    display: none;
    height: 100%;
    overflow: hidden;
    padding: 15px;
    position: relative;
    -webkit-box-shadow: 0 8px 12px -4px rgb(105 105 105 / 20%), 0 8px 12px -4px rgb(105 105 105 / 20%);
    box-shadow: 0 8px 12px -4px rgb(105 105 105 / 20%), 0 8px 12px -4px rgb(105 105 105 / 20%);
    background-color: #F2F2F2;
    border-top-left-radius: 1.5vmin;
    border-bottom-left-radius: 1.5vmin;
    border: 2px solid var(--scuro);
    border-right: 0;
}

.contenitoreSchedaLaterale {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.headerSchedaLaterale {
    width: 100%;
    height: 10%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.infoSchedaLaterale {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.chiudiSchedaLaterale {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.iconaChiudiSchedaLaterale {
    font-size: 3.5vmin;
    margin-right: 1vmin;
    cursor: pointer;
}

.titoloSchedaLaterale {
    font-size: 3.5vmin;
    font-weight: bold;
}

.corpoSchedaLaterale {
    width: 100%;
    height: 90%;
    overflow: hidden;
    overflow-y: auto;
}