﻿/*foglio stile per le card dei chiller*/

.chillerCardContainer {
    position: relative;
    width: 20%;
    height: 80%;
    background-color: var(--cardBg);
    color: white;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-size: 65% auto;
    border-radius: 10px;
}

.emptyImg {
    background-image: url('../asset/img/PNG/chillerCard/empty.png');
}

.C1Img {
    background-image: url('../asset/img/PNG/chillerCard/C1.png');
}

.C2Img {
    background-image: url('../asset/img/PNG/chillerCard/C2.png');
}

.C3Img {
    background-image: url('../asset/img/PNG/chillerCard/C3.png');
}


.chillerSelectIco {
    top: 10px;
    left: 10px;
    display: flex;
    position: absolute;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

    .chillerSelectIco:hover {
        background-color: var(--icoFuncBgHover);
        color: var(--icoFuncColorHover);
        cursor: pointer;
    }

    .chillerSelectIco.selected {
        background-color: var(--navBarA);
        color: white;
        cursor: pointer;
    }

.chillerSelectIcRelativeForMenu {
    position: relative;
}

.menuSelectChiller {
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 999;
    position: absolute;
    left: -5px;
    top: 45px;
    width: max-content;
    height: auto;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    border-color: #77818a;
    border-style: solid;
    border-width: 1px;  
}

.menuItemLabel {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(0.2rem, 1vw, 1rem);
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left:10px;
    padding-right:10px;
}

    .menuItemLabel:hover {
        background-color: #ffed00;  
    }


.chillerEraseIco {
    top: 10px; /*-20*/
    right: 10px; /*-20*/
    display: flex;
    position: absolute;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    color: #f76973;
    border-radius: 20px;
    background-color: white;
}
    .chillerEraseIco:hover {
        color:red;
        cursor: pointer;
    }

.chillerLabel {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(0.75rem, 1vw, 1.25rem);
    color:white;
}


.chillerMenuItemLabelSelect {
    color: white;
    background-color: var(--navBarA);
}

.chillerMenuItemLabelBanned {
    color:grey;
    text-decoration: line-through;
}