body {
  margin: 0;
  padding: 0;
}

.header {
  position: relative;
  height: 270px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("header-background.jpg")
      no-repeat center;
  background-size: cover;
  -webkit-box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
}

.header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background-color: rgba(110, 110, 110, 0.39);
}

.header__title h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 200;
}

.header__title h2 {
  text-align: center;
  font-size: 15px;
  font-weight: 100;
}

.header__title h3 {
  text-align: center;
  font-size: 15px;
}

.header__title p {
  width: 100%;
  margin: 0;
  text-align: center;
}

.content__offer {
  padding: 0 20px;
}

th,
td {
  border-bottom: 1px solid #ddd;
}

.time-cell{
  white-space: nowrap;
}

.offer-list {
  list-style-type: circle;
  padding: 20px;
}

.annotation {
  display: inline-block;
}

.annotation__star {
  vertical-align: super;
  font-weight: 100;
  line-height: 5px;
}

.address,
.contact,
.opening-hours {
  margin: 0 0 20px 1rem;
}

.facebook {
  height: 60px;
  margin: 0 0 20px 1rem;
}

.facebook__logo {
  width: 50px;
  transition: width 0.5s;
  cursor: pointer;
}
.facebook__logo:hover{
  width: 60px;
}
.content__about-me {
  height: 300px;
  width: 200px;
  text-align: center;
}
.about-me__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  vertical-align: middle;
}

.img-wrapper {
  height: 100%;
  text-align: center;
}
.img-helper {
  display: inline-block;
  vertical-align: middle;
}

td {
  padding: 5px 10px 0 0;
}
tr:hover {
  background-color: #f5f5f5;
}

.card-body {
  overflow-y: auto;
  max-height: 300px;
}

.about-me__dialog {
  max-width: 600px;
  background-color: #f5f5f5;
  border-radius: .3rem;
}

.borderless {
  border: none;
}

.card-body::-webkit-scrollbar {
  border-radius: 0.5em;
  width: 1em;
}
.card-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 0.5em;
}
.card-body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 0.5em;
}