
/*!************************************!*\
  !*** ../src/elements/map/map.scss ***!
  \************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.wpce-map-wrapper {
  container: map/inline-size;
}

.wpce-map {
  position: relative;
  aspect-ratio: var(--map-aspect-ratio, 1/1);
  overflow: hidden;
  border-radius: var(--rounded);
}
@container map (width >= 800px) {
  .wpce-map {
    aspect-ratio: var(--map-aspect-ratio, 3/2);
  }
}
@container map (width >= 1000px) {
  .wpce-map {
    aspect-ratio: var(--map-aspect-ratio, 5/3);
  }
}
@container map (width >= 1200px) {
  .wpce-map {
    aspect-ratio: var(--map-aspect-ratio, 16/9);
  }
}
@container map (width >= 1400px) {
  .wpce-map {
    aspect-ratio: var(--map-aspect-ratio, 20/9);
  }
}
.wpce-map > * {
  width: 100%;
  height: 100%;
  border: none;
}

/*# sourceMappingURL=css-wpce--map.css.map*/