#locationsTab{
  padding-top: 48px;
}

.tab.row{
  margin: 0;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-weight: bold;
  border-right: 1px solid #0000002b;
  border-bottom: 1px solid #0000002b;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #0e1514;
  color: white;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.location-map img{
  width: 100%;
}

.location-details:not(.last-child){
  margin-bottom: 30px;
}

.tabcontent h3{
  margin-bottom: 30px;
}

.custom-padding{
  padding-top: 35px;
  padding-bottom: 35px;
}

@media screen and (min-width: 992px) {
  .custom-padding{
    padding-left: 35px;
    padding-bottom: 0;
  }
  .tab button {
    flex-grow: 1;
    border-bottom: none;
  }
  .tab button:last-child{
    border-right: none;
  }
}

