/* colors: #E5DED3 -LIGHT BEIGE
#D56A44 - ORANGE  #495867 - BLUE
/* #1E1E1E - OFF BLACK  #9D988C - GREY  */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{ 
  background-color: #E5DED3;
  max-height: 310rem;
  overflow-x: hidden;
}

nav{
    align-items: center;
    
}
.header {
  background-color: #d5ccbe;
  /* box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1); */
  position: fixed;
  width: 100%;
  z-index: 3;
  align-items: center;
  border-bottom: 2px solid #333;
}

.header ul {
display: flex;
justify-content: center;
width: 100%;
/* align-items: center; */
/* position: absolute; */
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /* background-color: #fff; */
  font-family: 'Aglet Sans', sans-serif;
  flex-wrap: wrap;
}

.header li a {
  display: block;
  padding: 20px 20px;
  /* border-right: 1px solid #f4f4f4; */
  color: #333;
  text-decoration: none;
  font-size: 16px;
  
}
.header img{
    position: absolute;
    max-width: 7rem;
  padding: 0;
  margin-top: .85rem;
}
#order{
    position: relative;
    right: 0;
    margin-right: 10px;
}
   

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
  position: absolute;
  z-index: 1;
}


.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }


/* Menu toggle: */

  @media (min-width: 65em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
    
    
  }

  /* menu toggle^ */
  body {
    font-family:'Aglet Sans', sans-serif;
    font-size: 17px;
    display: flex;
    justify-content: center;
  }
  
  * {
    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%;
    margin-top: 5rem;

  }
  
  .col-50 {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
    margin-top: 5rem;

  }
  
  .col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;
  }
  
  .col-25,
  .col-50,
  .col-75 {
    padding: 0 16px;
  }
  
  .container {
    margin-top: 5rem;
    background-color: #f4f4f4;
    padding: 5px 20px 15px 20px;
    border: 2px solid #333;
    border-radius: 3px;
    filter: drop-shadow(-13px 4px 0px rgba(0, 0, 0, 0.25));

  }
  
  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: #2ccf78;
    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: #2196F3;
  }
  
  hr {
    border: 1px solid lightgrey;
  }
  
  span.price {
    float: right;
    color: grey;
  }