@spacing: 10px;

.gmp-embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: @spacing;
}
.gmp-embed-responsive .gmp-travel-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100% !important;
  width: 100% !important;
  border: 0;
}
.gmp-embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.gmp-embed-responsive-4by3 {
  padding-bottom: 150%;

  @media (min-width: 480px) {
    padding-bottom: 75%;
  }
}

.gmp-widget-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 1;
  transition: 0.75s ease all;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0,0.12), 0 1px 2px rgba(0, 0, 0,0.24);
}

.gmp-widget-loader.gmp-hide-widget {
  opacity: 0;
  pointer-events: none;
}

.gmp-widget-loader img {
  width: 50%;
  display: block;
  margin: 0 auto;
  animation: widgetloading linear 1s;
  animation-iteration-count: infinite;

  @media (min-width: 480px) {
    width: 25%;
  }
}

@keyframes widgetloading {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gmp-widget-invalid-travel {
  text-align: center;
  font-weight: bold;
  padding: @spacing * 3;
}
