body {
  font-family: Arial;
  font-size: 17px;
  padding: 8px;
  background-color: #fff;
  color: white;
}

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.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-25,
.col-50,
.col-75 {
  padding: 0 70px;
}

.image,
.paypal{
text-align: center;
margin-bottom: 10px;
}

.container {
  background-color: #222;
  padding: 5px 20px 15px 20px;
  border: 1px solid #444;
  border-radius: 3px;
}

input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

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;
}

a {
  color: #ddd;
}

hr {
  border: 1px solid #444;
}

span.price {
  float: right;
  color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}
.image,
.paypal{
text-align: center;
margin-bottom: 10px;
}
}

.radiotext {
    margin: 10px 10px 0px 0px;
}

#customers {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border-radius: 15px;
  padding: 8px;
  color: black;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #d00;
  color: white;
}

#paypal-button-container {
  z-index: -1;
}

.dropbtn {
  background-color: #dd0000;
  color: white;
  border-radius: 7px;
  position: relative;
  z-index: 10;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
   z-index: 10;
}

.dropdown-content {
  display: none;
  position: relative;
  z-index: 10;
  color:white;
  background-color: #222;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  z-index: 10;
  color:white;
  background-color: #222;
  text-decoration: none;
  position: relative;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd; z-index: 10; color:white; background-color: #111;}

.dropdown:hover .dropdown-content {display: block; z-index: 10;}

.dropdown:hover .dropbtn {background-color: #cc0000; z-index: 10;}

.paypal-button {
  text-align: center;
  position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(0%);
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
  
}