html, body, #map {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #ececec;
  font-family: 'Nunito', Helvetica, sans-serif;
  font-size: 16px;
}

.header, .judul {
  font-size: large;
  text-transform: capitalize;
  font-weight: bold;
}

.container {
  background: #ececec;
  height: 100%;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 50px 50px auto auto 50px;
  display:grid;
  grid-gap: 8px;
}

.container > div, .subkonten {
    border-radius: 6px;
    box-shadow: 0px 4px 3px -2px #888888;
}

.menu {
  background: white;
  grid-column: 1/-1;
  grid-row: 1/2;
  text-align: center;
}

.menu img {
  height: 100%;
}

.header {
  background: white;
  grid-column: 1/-1;
  grid-row: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar {
  background: white;
  grid-column: 1/-1;
  grid-row: 3/4;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
  padding: 10px;
  height: 200px;
}

.sidebar img {
  grid-column: 1/2;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  background-position: center;
  background-repeat: no-repeat;
}

.sidebar p {
  grid-column: 2/-1;
  text-align: left;
  margin: auto 0;
}

#mapid {
  min-height: 250px;
  border-radius: 6px;
}

.konten {
  grid-column: 1/-1;
  grid-row: 4/5;
  display: grid;
  grid-gap: 4px;
}

.subkonten {
  background: white;
  grid-column: 1/-1;
  display: inherit;
  overflow: hidden;
  padding: 10px;
}

.subkonten p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.teks {
  margin: auto;
  text-align: center;
}

/*Menambahkan angka*/
.subkonten input {
  background: #feff00;
  box-shadow: inset 0px 3px 8px -1px lightgrey;
  border: none;
  text-align: center;
  font-size: large;
  height: 100%;
  width: 100%;
}

.kalkulator {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 30px auto auto auto;
  grid-gap: 10px;
  height: 100%;
}

.judul {
  grid-column: 1/-1;
  margin: auto 0;
  text-align: left;
  color: #777;
}

.subkonten input {
  background: #feff00;
  box-shadow: inset 0px 3px 8px -1px lightgrey;
  border: none;
  text-align: center;
  font-size: large;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  min-height: 30px;
}

.operand1 {
  grid-column: 1/2;
}

.operator {
  grid-column: 2/3;
  text-align: center;
  margin: auto 0;
}

.operand2 {
  grid-column: 3/-1;
}

select {
  width: 100%;
  font-family: "Font Awesome 5 Free", sans-serif;
  background: white;
  border: none;
  color: dodgerblue;
  height: 40px;
  line-height: 40px;
  text-align-last: center;
  text-align: center;
  font-size: large;
  border-radius: 6px;
  box-shadow: 0px 2px 4px 1px lightgrey;
}

option {
  font-family: "Font Awesome 5 Free", sans-serif;
  height: 45px;
  line-height: 45px;
  text-align-last: center;
  text-align: center;
  font-size: large;
}

.samadengan {
  grid-column: 1/-1;
  text-align: center;
  height: 40px;
}

.samadengan button {
  width: 100%;
  height: 100%;
  background: white;
  border: none;
  box-shadow: 0px 2px 4px 1px lightgrey;
  border-radius: 6px;
  min-height: 30px;
}

.hasil {
  grid-column: 1/-1;
  height: 40px;
}

/*------------*/

/*Restoran*/
.restoran {
  height: auto;
  display: grid;
  grid-gap: 10px;
  grid-template-rows: 30px auto;
  grid-template-columns: 1fr;
}

.resto {
  display: grid;
  grid-gap: 10px;
  grid-template-rows: 200px 35px 100px;
  grid-template-columns: 1fr;
  background: #feff00;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0px 2px 4px 1px lightgrey;
}

.resto .namaresto {
  text-align: center;
  margin: auto;
  font-size: 1.5rem;
  font-weight: bold;
}

.resto #gmb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 6px;
}

.resto #rvw {
  text-align: center;
  display: flex;
  padding: 0 10px;
}

i.fas.fa-quote-left {
    margin: auto 5px auto 0;
    font-size: 1.5rem;
}

.review p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: auto 0 auto 5px;
  /* font-style: italic; */
}

/*-------------*/

.footer {
  background: white;
  grid-column: 1/-1;
  grid-row: 5/-1;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
}

@media screen and (min-width:800px) {
  .container {
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 50px 50px auto 50px;
  }

  .konten {
    grid-column: 2/-1;
    grid-row: 3/4;
  }

  .footer {
    grid-row: 4/-1;
  }

  .sidebar {
    grid-column: 1/2;
    min-width: 100px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 455px auto;
  }

  .sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    grid-column: 1/-1;
    grid-row: 1/2
  }

  .sidebar p {
    grid-column: 1/-1;
    grid-row: 2/3;
    text-align: center;
  }

  .resto {
    grid-template-columns: 1fr;
    height: auto;
    grid-template-rows: 100px auto;
  }

  .resto img {
    height: 100px;
  }

  .resto p {
    margin: 0;
  }
}

@media screen and (min-width:1100px) {
  .container {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
