:root {
  --second-bg-color: rgba(0, 110, 150, 1);
  /* --second-bg-color: rgba(130, 0, 0, 1); */
}
* {
  box-sizing: border-box;
}
html {
  /*background-color: #ccc;*/
  /* background-color: green; */
}
body {
  background-image: linear-gradient(white, lightgrey, white);
  font-family: Arial;
  font-size: 15px;
  padding: 10px 10px 0px 10px;
  margin: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
header h1 {
  font-family: cursive;
}
footer {
  margin: 100px -10px -10px -10px;
  flex: 100%;
  max-height: 180px;
  background-color: var(--second-bg-color);
  color: white;
  text-align: center;
}
footer .material-icons {
  color: inherit;
}
footer a {
  color: darkgrey;
}
h1 {
  color: var(--second-bg-color);
  font-weight: bold;
  font-size: 50px;
}
a {
  color: gray;
  text-decoration:none;
}
hr {
  border: 1px solid lightgrey;
}
span.price {
  float: right;
  color: grey;
}
input, textarea, button, /*.custom-select*/ select {
  width: 100%;
  margin-bottom: 12px;
  padding: 5px;
  border: 2px solid #ccc;
  border-radius: 25px;
  color: black;
  cursor: pointer;
  outline: none;
}
input[type="text"]:focus,  input[type="number"]:focus,
input[type="tel"]:focus, input[type="email"]:focus,
input[type="search"]:focus, input[type="password"]:focus,
textarea:focus, select:focus {
  border: 2px solid var(--second-bg-color);
  border-radius: 25px;
}
input[type="checkbox"] {
  width: 15px;
  height: 15px;
}
label {
  margin-bottom: 10px;
  display: block;
}
.logo {
  margin: 10px 0 10px 0;
}
.titleContainer {
  display: flex;
  justify-content: center;
}
.loginContainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.headerInfo {
  width:170px;
}
.row.loginInput {
  justify-content: space-between;
}
.avatarContainer {
  display: flex;
  justify-content: center;
}
.avatar {
  vertical-align: middle;
  height: 100px;
  width: 110px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.avatarBig {
  height: 200px;
  width: 220px;
}
.txt-heading {
  margin: 20px 0px;
  text-align: left;
  background: var(--second-bg-color);
  color: white;
  padding: 0px 10px;
  overflow: auto;
  border-radius: 25px
}
.txt-heading h2 {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
}
.add-btn {
  width: 20%;
  margin: 0px;
  padding: 0px;
  position: relative;
  float: right;
}
.add-btn:hover {
  transform: scale(1.04);
}
#product-grid {
  display: inline-block;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 20px;
}
.product-item {
  display: inline-block;
  margin: 8px;
  border: #CCC 1px solid;
  border-radius: 5px;
  width: 240px;
}
.product-item:hover {
  transform: scale(1.005);
  box-shadow: 0px 0px 5px 3px white;
}
.product-title {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  color: white;
  bottom: 21px
}
.product-image {
  height: 200px;
  width: 240px;
}
.product-image img {
  width: 100%;
  height: 200px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.product-footer {
  padding: 5px;
  text-align: center;
}
.product-footer.orderList {
  background-color:#cccccc;
}
.product-price {
  font-size: 1.3em;
  font-weight: bold;
  float: left;
  padding: 5px;
}
.float-left {
  float:left;
}
.float-right {
  float:right;
}
.input-quantity {
  width: 50px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}
.cart-status {
  color: black;
  font-size: 0.8em;
  display:inline-block;
  float:right;
}
.options-list {
  display:none;
}
.remove-btn {
  width: 20%;
  margin-bottom: 12px;
  padding: 5px;
  border: 2px solid #ccc;
  border-radius: 25px;
  color: black;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  /*margin: 0 -16px;*/
}
.col-10 {
  -ms-flex: 10%; /* IE10 */
  flex: 10%;
}
.col-15 {
  -ms-flex: 15%; /* IE10 */
  flex: 15%;
}
.col-20 {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
}
.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-80 {
  -ms-flex: 80%; /* IE10 */
  flex: 80%;
}
.col-85 {
  -ms-flex: 85%; /* IE10 */
  flex: 85%;
}
.col-10,
.col-15,
.col-20,
.col-25,
.col-50,
.col-75,
.col-80,
.col-85 {
  padding: 0 5px;
}
.gallery {
  display: flex;
  justify-content: space-around;
  margin: 15px;
}
.gallery img {
  height: 150px;
  width: 240px;
}
.container {
  background-color: #f2f2f2;
  padding: 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 5px;
}
.pageContainer {
  flex: 70%;
  margin-left: 15%;
  margin-right: 15%;
  padding: 50px;
}
.paymentContainer {
  background-color: #f2f2f2;
  padding: 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 5px;
  width: 50%;
  text-align: center;
}
.description-container {
  flex: auto;
  min-height: 150px;
  margin-top: 5px;
  padding: 10px;
  background-color: white;
  border-radius: 5px;
}
.aboutImage {
  float: right;
  width: 100%;
  height: 200px;
  margin: 0px 0px 15px 20px;
}
.row.signup, .row.payment, .row.page {
  justify-content: space-around;
}
.row.pagination {
  justify-content: center;
}
.pageButton {
  width:40px;
  margin:3px;
}
.pageButton.selectedButton {
  color:white;
  background-color:var(--second-bg-color);
}
/*
.icon-container {
margin-bottom: 20px;
padding: 7px 0;
font-size: 24px;
}*/
.material-icons, .material-icons-outlined{
  color: var(--second-bg-color);
  vertical-align: middle;
}
.btn {
  background-color: var(--second-bg-color);
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17px;
}
.btn:hover {
  background-color: green;
}
.dropButton {
  float: right;
}
.mapcontainer {
  width: 100%;
  height: 300px;
  background-color: #ccc;
  border: #CCC 5px solid;
  border-radius: 5px;
}
.toggle {
  cursor:pointer;
}
.shippingAdress, .updatePassword {
  display: none;
}
@media screen and (max-height: 450px) {
  /*.sidenav {padding-top: 15px;}*/
  .sidenav a {
    font-size: 18px;
  }
  footer {
    max-height: unset;
  }
}
/* 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 (also change the direction - make the "cart" column go on top) */
@media (max-width: 1300px) {
  footer {
    max-height: unset;
  }
}
@media (max-width: 600px) {
  body {
    width: 100%;
  }
  .row {
    flex-direction: column;
  }
  .col-25 {
    margin-bottom: 20px;
  }
  .dropButton {
    float: right;
  }
  .pageContainer {
    margin-left: 0%;
    margin-right: 0%;
    padding: 10px;
  }
}
