#img-background {
    width: 100%; 
    height: 400px;
    background-image: url('restaurant.jpg');
    background-size: cover;
}

body {
    background-color: rgb(255, 255, 255);
}

/* * {
    border: 1px solid red;
} */

h1 {
    text-align: center;
    font-size: 35px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
    margin-top: 0px;
    margin-bottom: 0px;
}

header {
    position: relative;
    text-align: center;
    color: white;
}

#ord-txt {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    
}

#logo {
    background-image: url("logo.jpg");
    width: 50px;
    height: 50px;
    position: absolute;
    top: 7%;
    left: 4%;
    border-radius: 50%;
    box-shadow: 2px 2px 4px #000000;
}

#logo-name {
    position: absolute;
    top: 7%;
    left: 8%;
    color: white;
    border-bottom: 1px solid black;
    text-transform: uppercase;
    font-size: medium;
    text-shadow: 2px 2px 4px #000000;
}

#sep1 {
    position: absolute;
    top: 24%;
    left: 50%;
    width: 500px;
    height: 3px;
    background-color: white;
    transform: translate(-50%, -50%);
    
}

.menu {
    position: absolute;
    top: 5%;
    left: 70%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: white;
    background-color: rgb(87, 51, 0);
    border: 2px solid rgb(108, 76, 0);
    box-shadow: 2px 2px 4px #000000;
}

.menu li {
    float: left;
    
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    border-right: 1px solid #bbb;
}

.menu li:last-child {
    border-right: none;
}

.menu li a {
    text-decoration: none;
    display: block;
    color: white;
    width: 60px;
    height: 30px;
    text-align: center;
}

.menu li a:hover {
    background-color: rgb(207, 169, 0);
}

#description {
    position: absolute;
    top: 33%;
    left: 50%;
    width: 600px;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 4px #000000;
    
}

#filter-div {
    height: 30px;
    padding-left: 50px;
    background-color: #fff173;
}

#filter-div select {
    width: 120px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid rgb(79, 55, 0);
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
    display: inline-block;
    margin: 0 20px;
    background-color: rgb(235, 211, 34);
    display: inline-block;
}

.slidecontainer {
    /* Width of the outside container */
    width: 25%;
    position: absolute;
    margin-left: 250px;
    display: inline-block;
}

  
  /* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #604800; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    border-radius: 10px;  
}
  
  /* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #cd9e01; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%; 
}

#footer-social {
    
}

#footer-social a {
    display: block;
    width: 50px;
}

.products {
    
    margin: 40px 250px;
    position: relative;
    
}

.individual-product {
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 20px;
    box-shadow: 2px 2px 4px #000000;
}

.individual-product:hover {
    transform: scale(1.1);
}

.individual-product img {
    width: 100%;
    height: 100%;
}

.individual-product h3 {
    text-align: center;
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
    margin-top: 0px;
    margin-bottom: 0px;
}

.individual-product h4 {
    text-align: center;
    font-size: 12px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(74, 74, 74);
    margin-top: 0px;
    margin-bottom: 0px;
}

.individual-product h4.product-price
{
    text-align: center;
    font-size: 12px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(232, 142, 6);
    margin-top: 0px;
    margin-bottom: 0px;
}



.wrapper{
    width: 25%;
    /* background: #fff; */
    position: absolute;
    margin-left: 50px;
    display: inline-flex;
  }

  .price-input{
    width: 100%;
    display: flex;
    /* margin: 30px 0 35px; */
  }
  .price-input .field{
    display: flex;
    width: 100%;
    /* height: 45px; */
    align-items: center;
  }
  .field input{
    width: 50%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 9px;
    margin-right: 9px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
  }
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .price-input .separator{
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
  }

 .middle{
    width: 850px;
    margin-top: 11px;
 }

  .slider{
    height: 5px;
    position: relative;
    background: #675901;
    border-radius: 5px;
  }
  .slider .progress{
    height: 100%;
    left: 20%;
    right: 40%;
    position: absolute;
    border-radius: 5px;
    background: #dcd109;
  }
  .range-input{
    position: relative;
  }
  .range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #dcd109;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
  }
  input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #dcd109;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
  }