@use "helpers";

body{
    background-color: helpers.$medium;

    .container{
        padding: 20px;
        margin-top: 30px;
        background-color: helpers.$light;
        color: helpers.$textoDark;
        font: normal 15px helpers.$fontRegular;
        
        h2{
            display: block;
            margin: 0px;
            margin-bottom: marginpx;
            color: helpers.$textoDark;
            font: normal 22px helpers.$fontSemibold;
        }
        
        strong{
            font-weight: normal;
            font-family: helpers.$fontSemibold;
        }
    }

    .navbar-header{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;

        .navbar-brand{
            img{
                max-width: 126px;
            }
        }

        .data-impressao{
            .imprimir{
                display: block;
                cursor: pointer;
                outline: 0px;
                width: 190px;
                margin: 0px;
                padding: 10px;
                color: helpers.$textoLight;
                font: normal 14px helpers.$fontRegular;
                text-shadow: initial;
                text-align: center;
                border: none;
                border-radius: 0px;
                box-shadow: none;
                background-color: helpers.$highlight;
                background-image: none;
                @include helpers.transicao(0.4s ease-in-out);

                &:hover,&:focus{
                    background-color: helpers.$success;
                }
            }
        }
    }
    .row{
        margin-right: -15px;
        margin-left: -15px;
    }
    .table{
        tbody>tr>td{
            padding: 8px;
            line-height: 1.42857143;
            vertical-align: top;
            border-top: 1px solid helpers.$borders;
        }
        .thumbnail{
            height: 70px;
            width: 70px;
            display: inline-block;
            vertical-align: top;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;

            .img-prod-pedido{
                max-height: 61px;
                max-width: 61px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translateX(-50%) translateY(-50%);
            }
        }

        .thumbnail-table{
            height: 70px;
            width: 70px;
            display: block;
            vertical-align: top;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;
            float: left;

            ~div{
                display: block;
                vertical-align: top;
                margin-left: 5px;
                float: left;
                width: calc(100% - 75px);
            }
        }
    }
}