﻿/* Lista di elementi in visualizzazione Celle */
.List_Cell
{
    margin: 5px 0 0 0;
}

    .List_Cell > div
    {
        padding: 5px;
        position: relative;
    }

        .List_Cell > div > a
        {
            position: absolute;
            background-color: transparent;
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            box-shadow: none;
            z-index: 2;
            border: 1px solid #e6e6e6;
            -webkit-transition: all 0.15s ease-in-out;
            -o-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
        }

            .List_Cell > div > a:hover
            {
                box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
            }

                .List_Cell > div > a:hover + div
                {
                    background-color: #fff;
                }

        .List_Cell > div > div input[type=text]
        {
            padding: 0 10px;
            border-radius: 5px;
            border: solid 1px #FCEBCF;
            background: #fff;
            color: #483729;
            text-shadow: 0px 1px 1px rgba(200, 194, 194, 0.75);
            font-size: 12px;
            letter-spacing: 1px;
            -webkit-transition: 0.2s ease all;
            -o-transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -ms-transition: 0.2s ease all;
            transition: 0.2s ease all;
            width: 40%;
            line-height: 25px;
            height: 25px;
            z-index: 3;
            position: relative;
        }

            .List_Cell > div > div input[type=text]:focus
            {
                border: solid 2px #FCEBCF;
                line-height: 25px;
            }









        .List_Cell > div > div
        {
            padding: 10px;
            background-color: #f5f5f5;
            overflow: hidden;
            -webkit-transition: all 0.15s ease-in-out;
            -o-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
        }

            .List_Cell > div > div > .Delete
            {
                position: absolute;
                top: 10px;
                right: 15px;
                font-weight: bold;
                font-size: 14px;
                z-index: 3;
            }

            .List_Cell > div > div > .UnDelete
            {
                display: none;
            }

            .List_Cell > div > div > table
            {
                width: 100%;
                white-space: nowrap;
            }

                .List_Cell > div > div > table tr td
                {
                    vertical-align: top;
                    margin: 0;
                    padding: 0;
                    line-height: 18px;
                }

                    .List_Cell > div > div > table tr td h2
                    {
                        text-transform: capitalize;
                    }



                .List_Cell > div > div > table tr:first-child td:first-child
                {
                    width: 100px;
                    padding: 0 10px;
                }

                .List_Cell > div > div > table tr:first-child td:first-child
                {
                    width: 100px;
                    padding: 0 10px;
                }

                .List_Cell > div > div > table tr td .image
                {
                    border-radius: 50%;
                    box-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
                    overflow: hidden;
                    width: 80px;
                    height: 80px;
                    display: block;
                    text-align: center;
                }

                    .List_Cell > div > div > table tr td .image img
                    {
                        height: 100%;
                    }

                .List_Cell > div > div > table tr td .Enable
                {
                    color: #4CAF50 !important;
                }

                .List_Cell > div > div > table tr td .Disable
                {
                    color: #f70909 !important;
                }

                .List_Cell > div > div > table tr td .fa
                {
                    color: #313534;
                    font-size: 10px !important;
                    margin: 0 10px 0 0;
                }

                .List_Cell > div > div > table tr td > span:nth-of-type(1)
                {
                    font-size: 12px;
                    width: 100px;
                    display: inline-block;
                    color: #313534;
                }

                .List_Cell > div > div > table tr:nth-of-type(2) td > span:nth-of-type(2)
                {
                    font-weight: bold;
                    color: #313534;
                }

                .List_Cell > div > div > table tr:nth-of-type(3) td > span:nth-of-type(2)
                {
                    font-weight: bold;
                }

                .List_Cell > div > div > table tr:nth-of-type(3) td > span:nth-of-type(3)
                {
                    text-transform: lowercase;
                }


/* Lista di elementi in visualizzazione Celle */

.List_Table
{
    width: 100%;
    margin: 10px 0 20px 0;
    border-collapse: collapse;
    border-spacing: 0px;
    font-weight: normal;
}

    .List_Table .Enable
    {
        color: #4CAF50;
    }


    .List_Table .Disable
    {
        color: #f70909;
    }

    .List_Table > tbody > tr .Btn_Standard
    {
        display: inline;
    }

    .List_Table thead > tr > th
    {
        font-family: 'Fjalla One';
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-right: 1px solid rgba(189, 193, 193, 0.4);
        border-bottom: 1px solid rgba(189, 193, 193, 0.4);
        padding: 10px 8px;
        line-height: 10px;
        text-align: left;
        vertical-align: bottom;
        font-size: 11px;
        line-height:12px;
    }


    .List_Table > thead > tr > th input[type=text],
    .List_Table > thead > tr > th select,
    .List_Table > tbody > tr > td input[type=text],
    .List_Table > tfoot > tr > th input[type=text],
    .List_Table > tfoot > tr > th select
    {
        padding: 0 3px;
        border-radius: 5px;
        border: solid 1px #FCEBCF;
        background: #fff;
        color: #483729;
        text-shadow: 0px 1px 1px rgba(200, 194, 194, 0.75);
        font-size: 12px;
        letter-spacing: 1px;
        -webkit-transition: 0.2s ease all;
        -o-transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -ms-transition: 0.2s ease all;
        transition: 0.2s ease all;
        width: 98%;
        line-height: 26px;
        height: 26px;
        z-index: 3;
        position: relative;
        margin: 0;
    }

        .List_Table > thead > tr > th input[type=text]:focus,
        .List_Table > tbody > tr > td input[type=text]:focus
        {
            line-height: 26px;
        }

        .List_Table > thead > tr > th select::-ms-expand,
        .List_Table > tbody > tr > td select::-ms-expand
        {
            background-color: transparent;
            border: none;
            color: #3f7fa4;
        }

    .List_Table thead > tr > th input[type=submit],
    .List_Table thead > tr > th a.Btn_Standard {
        margin: 0;
        line-height: 26px;
        height: 26px;
    }

    .List_Table thead > tr > th:last-of-type
    {
        border-right: none;
    }

    .List_Table > tbody > tr > td
    {
        border-bottom: 1px solid rgba(189, 193, 193, 0.2);
        padding: 10px 8px;
        line-height: 1.84615;
        text-align: left;
        vertical-align: top;
        font-size: 13px;
        font-weight: 600;
    }

    .List_Table > tbody > tr:nth-of-type(2n+1)
    {
        background-color: rgba(242, 243, 243, 0.35);
    }

        .List_Table > tbody > tr:nth-of-type(2n+1):hover
        {
            background-color: #f1f9ff;
        }

    .List_Table > tbody > tr:hover
    {
        background-color: #f1f9ff;
    }

    .List_Table > tbody > tr > td input[type=submit]
    {
        margin: 0;
        height: auto;
        line-height: normal;
        padding: 0;
    }

        .List_Table > tbody > tr > td input[type=submit].Btn_Standard
        {
            height: 40px !important;
        }

    .List_Table > tbody > tr > td select
    {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 0;
        line-height: 26px;
        height: 26px;
        border-radius: 5px;
        border: solid 1px #FCEBCF;
        background: #fff;
        color: #483729;
        width: 98%;
        text-shadow: 0px 1px 1px rgba(200, 194, 194, 0.75);
        font-size: 12px;
        letter-spacing: 1px;
        position: relative;
        margin: 0;
        text-align: left;
    }

    .List_Table > tbody > tr > td textarea
    {
        padding: 0 10px;
        line-height: 20px;
        height: 80px;
        border-radius: 4px;
        border: solid 1px #FCEBCF;
        background: #fff;
        color: #483729;
        width: 100%;
        text-shadow: 0px 1px 1px rgba(200, 194, 194, 0.75);
        font-size: 12px;
        letter-spacing: 1px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
    }
