/*
Theme Name: My Child Theme
Theme URI: http: //pitalsf.org/
Description: This is a custom child theme I have created.
Author: My Name
Author URI: http: //pitalsf.org/
Template: nirvana
Version: 0.1
*/
@import url("../nirvana/style.css");
 /* Style inputs, select elements and textareas */
/* Style the submit button */
#emailtb table, td, th, tr, tbody {
  border-collapse: collapse;
  border: 1px solid black;
  padding: 0;
  font-size:11px;
}

input[type=text], select, textarea{
  background-color: #ffffff;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}


/* Style the container */
.container {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}
/* Floating column for numbers: 5% width */
.col2-5 {
  float: left;
  width: 5%;
  margin-top: 6px;
  text-align:right;
  padding-right:4px;
}

/* Floating column for numbered inputs: 95% width */
.col2-95 {
  float: left;
  width: 95%;
  margin-top: 6px;
}
/* Floating cart title row*/
.titlerow {
  float: left;
  width: 100%;
  border-bottom: 2px solid #060;
}
/* Floating cart title row*/
.totalrow {
  float: left;
  width: 100%;
  border-top: 2px solid #060;
}

/* Floating cart row */
.cartrow {
  float: left;
  width: 100%;
}
/* Floating column for cart item description*/
.ccol1 {
  float: left;
  width: 50%;
  margin-top: 6px;
}
/* Floating column for cart item delete */
.ccol2 {
  float: left;
  width: 25%;
  text-align:right;
  margin-top: 6px;
}
/* Floating column for cart item cost */
.ccol3 {
  float: left;
  width: 25%;
  text-align:right;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
} 
button[type=submit]{
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #009966;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

button[type=submit]:hover {background-color: #006633}

button[type=submit]:active {
  background-color: #006633;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}