﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #e1e7e9;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    /*padding-left: 15px;
    padding-right: 15px;*/
    padding-left: 8px;
    padding-right: 8px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/*This is specifically for the checkout page text input fields*/
.txt-input {
    max-width: 99% !important;
    background-color: #fff !important;
}

/*This is to make the price input field smaller on the inventory page*/
.price-input {
    max-width: 80px !important;
    text-align: right;
}
.qty-input {
    max-width: 80px !important;
    float:right;
}
/*This is to style the prebook checkbox on the checkout page*/
.pb-input {
    max-width: 28px !important;
}
/*This is to enlarge the invoice PDF viewer after checkout is complete*/
.pdfobject-container {
    height: 100rem !important;
}
/*This is to make entire table row clickable in the customer selection*/
.table-row {
    cursor: pointer;
}

/*This is to resize the canvas on the checkout page*/
/*.canvas-size {
    width: 600px;
   
}*/
/*@media (max-width: 629px) {
  .canvas-size {
    width: 500px !important;
   
  }
}
@media (max-width: 530px) {
    .canvas-size {
        width: 400px !important;
    }
}
@media (max-width: 430px) {
    .canvas-size {
        width: 350px !important;
    }
}
@media (max-width: 380px) {
    .canvas-size {
        width: 300px !important;
    }
}*/
/*This aligns the "Is Prebook" label with the checkbox on the checkout page*/
.pb-label {
    margin-top: 10px;
    margin-right: 15px;
    float: left !important;
} 