@media (min-width: 768px) {
  .maps__container {
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  .maps__iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
  }
  #maps__get-directions {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #022855;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
  .maps__dialog-container.show {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .maps__dialog-container.hidden {
    display: none;
  }
  .maps__dialog {
    width: auto;
    height: calc(100% - 200px);
    margin: 100px 0px;
    background-color: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
  }
  .maps__icon {
    width: 200px;
    height: 200px;
    margin: 0 10px;
    border: 1px solid black;
    border-radius: 25px;
  }
  .maps__icon:hover {
    border: 1px solid red;
    cursor: pointer;
  }
  #maps__close-dialog {
    margin: 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #022855;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .maps__container {
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .maps__iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
  }
  #maps__get-directions {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #022855;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
  .maps__dialog-container.show {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .maps__dialog-container.hidden {
    display: none;
  }
  .maps__dialog {
    width: auto;
    height: auto;
    margin: 10px 0px;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 50px;
  }
  .maps__img-container {
    display: flex;
    justify-content: center;
  }
  .maps__icon {
    width: 90px;
    height: 90px;
    margin: 0 5px;
    border: 1px solid black;
    border-radius: 5px;
  }
  .maps__icon:hover {
    border: 1px solid red;
    cursor: pointer;
  }
  #maps__close-dialog {
    margin: 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #022855;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
}
