
/* Optional: Makes the sample page fill the window. */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;


}

* {
  box-sizing: border-box;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: 15px;

}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto }


.main {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
  height:100%;
  width: 70%;
  max-width: 700px;
  display: block;
}

div[class^='column'], div[class*=' column'] {
  width: 100%;
}

.column-left-content{
  color: #f1f1f1;

}

.column-right-content{
}

/* Create two equal columns that floats next to each other */
.column-left {
  float: left;
  height: auto;
  background-color: #4270B4;
}

.column-right {
  float: left;
  background-color: #f2f2f2;
}

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

/* Style inputs, select elements and textareas*/
input[type=text], select, textarea {
  width: 100%;
}

input[type=range] {
  width: 100%;
}

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

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

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

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

.modal-header {
  padding: 2px 16px;
  background-color: #000000;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}



tr:hover button {
  color: #000;
}

/* button styles */
.increment-btn, .decrement-btn, .remove-btn{
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

.error::-webkit-input-placeholder {
  color: red
}

.increment-btn:focus, .decrement-btn:focus, .remove-btn:focus{
  outline: none;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}


/* 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) {

  div[class^='column'], div[class*=' column'] {
    width: 100%;
  }

  * {
    box-sizing: border-box;

  }

  .main, label, input {
    display: block; /* equal height of the children for responsive layout so they will stack */
  }

  .main {
    width: 100%;
  }

  .columnt-left {
    width: 100%;
  }

}
