 .centerContact {
  width: 100%;
  height:100%;
  /*border: 13px solid green;*/
  padding: 20px;
  margin-top: 100px;
  text-align: center;
}

.image {
	border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
}
* {
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid grey;
  margin-right:20px;

}

* Create four equal columns */
.column {
  flex: 25%;
  padding: 20px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
    padding: 20px;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
    border: 1px solid grey;

  }
}

	.number{
			margin:100px;
		}
		.minus, .plus{
			margin-top:10px;
      width:30px;
			height: 40px;;
			background:#04AA6D;
			border-radius:0px;
			padding:5px 5px 5px 5px;
			/*border:1px solid #04AA6D;*/
      display: inline-block;
      vertical-align: middle;
      text-align: center;
		}
    .quantity-center{
      width: 100px;
      margin-right: 10px;
    }

    .quantity {
    display: flex;
    align-items: flex-start;
    margin-left: 5px;
    }


    input[type], select, textarea {
      width: 100%;
      
      max-width: 400px;
      padding: 12px;
      border: 0px solid #ccc;
      border-radius: 0px;
      resize: vertical;
      margin:10px 5px 0 5px;
      text-align: left;
      font-family:"Arial";
      }
      
      input[type=submit] {
      background-color: #04AA6D;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 0px;
      cursor: pointer;
      float: center;
      width:25%;
      }
      
      input[type=submit]:hover {
      background-color: #ccc;
      color:#000;
	
  }

    input[type="checkbox"] {

    }
    .removebutton{
      margin:0;
      padding:0;
      background:#212121;
    }
    .copybutton{
      margin:0;
      padding:0;
      background:#212121;

    }

   
   

/* container */
.left-sidebar {
    display:flex;
    flex-wrap:wrap;
    border: 2px solid grey;
}

/* columns */
.left-sidebar > * {
    width:100%;
    padding:1rem;
}

/* tablet breakpoint */
@media (min-width:768px) {
    .left-sidebar > *:nth-child(1) {
        width:calc(100% / 3);
        order:-1;
    }
    .left-sidebar > *:nth-child(2) {
        width:calc(100% / 3 * 2);
        
    }
}

input[type="radio"]{
left: 9px;
    top: 5px;
    width: 15px;
    height: 15px;
    border: 1px solidrgb(78, 134, 146);
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    accent-color: #04AA6D;
}



/* The container */
.containerForm {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser\'s default checkbox */
.containerForm input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.containerForm:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerForm input:checked ~ .checkmark {
  background-color: #04AA6D;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerForm input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerForm .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}