﻿@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.ele_row {
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
    background-color: rgba(255, 255, 255,1);
    border-radius: 5px;
    cursor: default;
    width: 100%;
    height: 130px;
    margin-top: 5px;
    font-size: 16px;
    animation: fadein 1s;
    text-align: left;
}



.ele_row_contenitore_quantita {
    display: inline-block;
    width: 40px;
    height: 120px;
    margin: 5px;
    background-color: dimgray;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    vertical-align: top;
   
}

.ele_row_contenitore_sinistro {
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    width: 85px;
    height: 120px;
    border-radius: 5px;
    border: 1px solid black;
    margin: 5px;
}

    .ele_row_contenitore_sinistro img {
        height: 110%;
        position: relative;
        top: -30%;
    }

.ele_row_contenitore_destro {
    padding: 5px;
    display: inline-block;
    height: 120px;
    width: calc(100% - 150px);
}

.ele_row_titolo {
    height: 22px;
    text-align: center;
    font-weight: bold;
    line-height: normal;
    overflow:hidden;
}



.ele_row_descrizione {
    text-align: center;
    font-style: italic;
    font-weight: normal;
    height:53px;
}

.ele_row_contenitore_tools {
    width: 100%;
}

.ele_row_contenitore_elimina {
    position: relative;
    float: left;
}

.ele_row_prezzo {
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255,0.8);
    color: red;
    border-top: 1px solid black;
    vertical-align: top;
    width: 100%;
    top: 85px;
    z-index: 10;
}



.ele_row_quantita {
    width: 100%;
    height: 40px;
    text-align: center;
    padding: 5px;
}


.bnt {
    padding: 5px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    min-width: 64px;
    color: dimgrey;
    border-bottom: outset;
    border-width: 0.25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255,0.9);
    min-height: 50px;
    text-align: center;
    transition: background-color 0.5s;
}

    .bnt:hover {
        color: orangered;
        background-color: white;
    }

.bnt_label {
    display: table-cell;
    transition: color 1s;
    font-weight: bolder;
    font-size: 16px;
    text-shadow: 0 0 1px;
    text-align: center;
    vertical-align: middle;
    padding-left: 5px;
}

.bnt_icona {
    display: table-cell;
    max-width: 48px;
}

.bnt_img {
    width: 100%;
}

.bnt_acquista {
    color: black;
    cursor: pointer;
    border-radius: 5px;
    border: outset;
    border-width: 0.25px;
    background: linear-gradient(to bottom, gainsboro 10%,#dbdbdb 50%,#d1d1d1 55%,#e4e4e4 100%);
    min-height: 32px;
    opacity: 0.7;
    transition: opacity 0.5s;
    font-weight: bold;
    user-select: none;
}

    .bnt_acquista:hover {
        opacity: 1;
        color: orangered;
    }

.bnt_acquista_img {
    -webkit-flex-direction: column;
    display: flex;
}

.bnt_acquista_label {
    display: flex;
    -webkit-flex-direction: column;
    width: 70%;
    float: left;
    position: relative;
    top: 7px;
    transition: color 1s;

}

.bnt_azioni {
    display: inline-block;
    font-size: 16px;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    border: solid;
    border-width: 0.5px;
    border-color: black;
    background: linear-gradient(to bottom, gainsboro 10%,#dbdbdb 50%,#d1d1d1 55%,#e4e4e4 100%);
    transition: all 0.5s;
    min-height: 40px;
    min-width: 40px;
    text-align: center;
    padding-left: 5px;
    padding-right:5px;
    height:40px;
}

    .bnt_azioni:hover {
        opacity: 1;
        color: orangered;
        background-color: paleturquoise;
    }
