.card {
  z-index: 1;

  margin-left: 20%;
  margin-right: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  flex-direction: column;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #d2d2dc;
  border-radius: 20px;
  box-shadow: 0px 0px 5px 0px rgb(161, 163, 164);
  padding: 10px;
}

.card a {
  color: rgb(0, 150, 255);
}
  
.accept-button {
  margin-top: 20px;
  outline:none;
  
  text-align: center;
  padding: 8px;
  border-radius:10px;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  letter-spacing:1px;
  text-shadow:0;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.25s ease;
}

.accept-button:hover {
  color:white;
  background: var(--accent);
}

.accept-button:active {
  letter-spacing: 2px ;
}

.gmap_canvas {
  position: absolute;
  border-radius: 10px;
  overflow:hidden;
  background:none!important;
  height: 100%;
  width: 100%;
}

.map-container {
  border-radius: 10px;
  background-color: rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  flex-direction: column;
  
  height: 100%;
  width: 100%;
}

.inner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-weight: 600;
}

.cookies a {
  text-decoration: none;
  color: #000;
  margin-top: 8px;
}
  
.cookies a:hover {
  text-decoration: none;
  color: blue;
  margin-top: 8px;
}

.icon {
  font-size: 35px;
}
  
@media screen and (max-width: 767px) {
  .container {
    text-align: center;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    min-height: 50vh;
    height: 50vh;
  }
}

@media screen and (min-width: 768px) {
  .container {
    text-align: center;
    width: 49%;
    display: inline-block;
    vertical-align: top;
    min-height: 70vh;
    height: 70vh;
  }
}