div.infoPopup{
    position:absolute;
    background-color:#fff;
    filter: drop-shadow(0 0 1px #ddd);
    width: 370px;
    max-width:calc(100% - 10px);
    border-radius: 10px;
    overflow: hidden;

    top:0;
    left:0;
    z-index: 1;
}
div.infoPopup:not(.shown){
    display:none;
}
div.infoPopup .i-title:empty{
    display:none;
}
div.infoPopup .i-title{
    padding: 8px 15px;
    text-align:left;
    font-size: 13px;
    background-color: rgb(0 0 0 / 5%);
}
div.infoPopup .i-content{
    padding: 15px;
    width:100%;
    max-height:400px;
    font-size: 12px;
}
div.infoPopup .i-flag{
    position:absolute;
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;

    border-left: 15px solid white;
}
[infoPopup]{
    cursor:pointer;
}


.infoPopup.temperatureWarning{
    filter: drop-shadow(0 0 14px rgba(0,0,0,0.1));
    box-shadow: 0 0 0 100vw rgba(0,0,0,0.1);
    width: 430px;
}
.infoPopup.temperatureWarning .i-title{
    background-color: red;
    color: #fff;
}
.infoPopup.temperatureWarning .i-content{}

.infoPopup.temperatureWarning .button{
    margin-top:15px;
    font-size:12px;
    background-color: red;
    border-color: red;
}