/* ==========================================
   STETAX PREMIUM TALLY QUOTATION
========================================== */

body{
    background:#f3f4f6;
    font-family:Arial, Helvetica, sans-serif;
    font-size:14px;
    color:#000;
}

.quotation-wrapper{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border:2px solid #000;
    padding:20px;
}

/* HEADER */

.quotation-header{
    border-bottom:2px solid #000;
    padding-bottom:15px;
}

.company-logo{
    max-width:350px;
    max-height:350px;
}

.company-name{
    text-align: right;
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
    text-transform:uppercase;
}

.company-tagline{
    text-align: right;
    font-size:15px;
    font-weight:600;
    color:#555;
    margin-bottom:10px;
}

.company-address{
    text-align: right;
    font-size:13px;
    line-height:22px;
}
/* IMAGES */
.company-logo{
    width: 300px;
    height: auto;
}
/* TITLE */

.quotation-title{
    text-align:center;
    font-size:24px;
    font-weight:700;
    margin-top:20px;
    padding:10px;
    border:2px solid #000;
    letter-spacing:2px;
}

/* TABLES */

.table{
    margin-bottom:0;
}

.table td,
.table th{
    border:1px solid #000 !important;
    vertical-align:middle;
}

.customer-table td{
    font-size:13px;
}

.quotation-table th{
    background:#f1f1f1;
    text-align:center;
    font-size:13px;
    font-weight:700;
}

.quotation-table td{
    padding:6px;
}

.quotation-table input{
    border:none;
    box-shadow:none !important;
    font-size:13px;
}

.quotation-table input:focus{
    border:none;
}

/* TOTALS */

.total-table{
    font-size:15px;
}

.total-table td{
    padding:10px;
}

.grand-total{
    background:#f5f5f5;
    font-size:18px;
    font-weight:700;
}

.grand-total td{
    border-top:2px solid #000 !important;
}

/* WORDS */

.amount-words-box{
    border:1px solid #000;
    padding:15px;
    min-height:100px;
}

.amount-words-box h6{
    font-weight:700;
    margin-bottom:10px;
}

/* TERMS */

.terms-box{
    border:1px solid #000;
    padding:15px;
    margin-top:15px;
}

.terms-box h6{
    font-weight:700;
    margin-bottom:10px;
}

.terms-box ol{
    padding-left:18px;
}

.terms-box li{
    margin-bottom:5px;
}

/* BANK */

.bank-box{
    border:1px solid #000;
    padding:15px;
    min-height:140px;
}

.bank-box h6{
    font-weight:700;
}

/* SIGNATURE */

.signature-box{
    border:1px solid #000;
    min-height:140px;
    padding:15px;
    font-weight:600;
}

/* BUTTONS */

.btn-primary{
    background:#0d6efd;
}

.btn-success{
    background:#198754;
}

/* INPUTS */

.form-control{
    border-radius:0;
    min-height:36px;
}

.form-control:focus{
    box-shadow:none;
    border-color:#000;
}

/* PRINT */

@media print{

    body{
        background:#fff;
    }

    .quotation-wrapper{
        border:none;
        width:100%;
        max-width:100%;
        padding:0;
    }

    .no-print{
        display:none !important;
    }

    .form-control{
        border:none !important;
        padding:0 !important;
        background:transparent !important;
    }

    input{
        border:none !important;
    }

    textarea{
        border:none !important;
    }

}

/* MOBILE */

@media(max-width:768px){

    .company-name{
        font-size:22px;
        text-align:center;
    }

    .company-tagline{
        text-align:center;
    }

    .company-address{
        text-align:center;
    }

    .quotation-title{
        font-size:18px;
    }

    .quotation-table{
        font-size:12px;
    }

}