.left_form{
    float:left;
    clear:both;
}

.right_pricing{
    border-left:2px solid #ddd;
}

.description{
    width: 60px;
    height: 65px;
    clear:both;
    float:left;
    margin:10px 10px 10px 16px;
    padding:10px 10px 10px;
    border:1px solid black;
    box-shadow: 5px 5px 2px 2px rgba(0, 0, 0, .2);
    background-color: beige;
    text-align: center;
    vertical-align: center;
}

.form {
    min-width: 400px;
    min-height: 65px;
    float:left;
    margin: 10px 10px 10px 10px;
    padding:10px 10px 10px;
    border: 1px solid black;
    box-shadow: 5px 5px 2px 2px rgba(0, 0, 0, .2);
}

@media print {
  body * {
    visibility: hidden;
  }
  .left_form, .left_form *, .right_pricing, .right_pricing * {
    visibility: visible;
  }
  .content {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.form_fields{
    clear:both;
}

.form_col{
    float:left;
    max-width:225px;
}

.form_col input[type=text], .form_col input[type=tel],.form_col input[type=email],
.form_col input[type=number], .form_col input[type=date], .form_col select{
    float:right;
    margin:1px 4px 1px 4px;
    max-width:130px;
}

input[type=number]{
    width: 50px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}


table{
    border-collapse: collapse;
    margin:10px 10px 10px 10px;
    box-shadow: 5px 5px 2px 2px rgba(0, 0, 0, .2);
}

table, th, td{
    border:1px solid black;
    padding:10px;
}

.pricing {
    float:left;
}

textarea{
    clear:both;
}


#left_sidebar_container{
    float:left;
}

.left_sidebar{
    float:left;
}

.left_sidebar button{
    width:100px;
    height:50px;
    margin:10px 10px 10px 16px;
    padding:10px 10px 10px;
    border:1px solid black;
    box-shadow: 5px 5px 2px 2px rgba(0, 0, 0, .2);

}




.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% 10% 10% 10%;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    height: auto;
    min-height: 400px;
    box-shadow: 5px 5px 2px 2px rgba(0, 0, 0, .2);
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}