body {
	background-image: URL('../img/spikes.png');
}

pre{
  background-color: #EBECE4;
  white-space:pre-wrap;
  word-break: break-word;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
  max-width: 1280px;
}

.col-12 {
  -ms-flex: 12.5%; /* IE10 */
  flex: 12.5%;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-12,
.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

.addr_txt_from .addr_txt_to {
  padding: 0px 16px 5px 16px;
}

input[type=text], input[type=number], textarea, select {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

input[type=text]:focus, input[type=number]:focus, textarea:focus, select:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}

label {
  /* margin-bottom: 10px; */
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: #45a049;
}

.btn-small {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn-small:hover {
  background-color: #45a049;
}

span.price {
  float: right;
  color: grey;
}

[role="alert"] {
  background: url("../img/warning.png") 4px 20px / 18px 18px no-repeat;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 10px;
  background-color: #ff9800; /* orange/yellow */
  color: white;
  margin-bottom: 15px;
}

/* Rate List Formatting */
.rate_list {margin: 0; padding: 0;}
 
div.rate_list {
  margin: 20px;
}
 
.rate_list ul {
  list-style-type: none;
  width: 500px;
}
 
.rate_list h3 {
  font: bold 20px/1.5 Helvetica, Verdana, sans-serif;
  margin: 5px 0 5px 0;
}

.rate_list li img {
  height: 80px;
  float: left;
  margin: 0 15px auto 0;
}
 
.rate_list li p {
  font: 200 14px/1.5 Georgia, Times New Roman, serif;
}
 
.rate_list li {
/*  padding: 10px;	*/
  overflow: auto;
}
 
.rate_list li:hover {
  background: #fefde5;
  cursor: pointer;
}
/* END Rate List Formatting

/* History List Formatting */
.history_list {margin: 0; padding: 0;}
 
div.history_list {
  margin: 20px;
}
 
.history_list ul {
  list-style-type: none;
  width: 500px;
}
 
.history_list h3 {
  font: bold 20px/1.5 Helvetica, Verdana, sans-serif;
  margin: 5px 0 5px 0;
}

.history_list li img {
  height: 80px;
  float: left;
  margin: 0 15px auto 0;
}
 
.history_list li p {
  font: 200 14px/1.5 Georgia, Times New Roman, serif;
}
 
.history_list li {
/*  padding: 10px;	*/
  overflow: auto;
}
 
.history_list li:hover {
  background: #fefde5;
}
/* END History List Formatting


/* with hidden, can't be seen and takes up no space */
.hidden {
	display: none;
	visibility: hidden;
}
/* with invisible, object can't be seen but still takes up space */
.invisible {
	visibility: hidden;
}
.visible {
	visibility: visible;
	vertical-align: middle;
}

/* 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 (and change the direction - make the "cart" column go on top) */
@media only screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
  .col-25 {
    margin-bottom: 20px;
  }
  .col-12 {
    margin-bottom: 15px;
  }
}