/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2016-2017,2025 Dan "Ducky" Little
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

@import (inline) "../../node_modules/ol/ol.css";
@import "../../node_modules/font-awesome/less/font-awesome.less";
@import (inline) "../../node_modules/mapskin/css/mapskin.min.css";
@import "modal.less";
@import "icons.less";
@import "catalog.less";
@import "serviceForms.less";
@import "results.less";
@import "coordinates.less";
@import "toolbar.less";
@import "attribution-display.less";
@import "map.less";
@import "editor.less";
@import "progress.less";

.hide {
  display: none;
}

/* Print images are not visible to the user
 * and only used to generate a temporary space
 * to get the image data from them.
 */
.print-image {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 100;
}

.map {
  width: 100%;
  height: 100%;
}

.stop-tool {
  position: absolute;
  top: 10px;
  right: 10px;

  button {
    display: black;
    height: 1.5em;
    width: auto;
    padding: 4px;

    i.stop.tool {
      .fa;

      color: red;

      &:before {
        content: @fa-var-stop;
      }
    }
  }
}

/* Generic style for a box providing "help" text.
 */
.info-box {
  color: black;
  border: solid 1px steelblue;
  border-radius: 3px;
  background-color: lightsteelblue;
  margin: 7px;
  padding: 5px;
  font-size: 10pt;
}

.spinner {
  .fa;
  .fa-spin;

  &:before {
    content: @fa-var-refresh;
  }
}

button {
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background-color: #d5d0d0;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  display: inline-grid;
  place-content: center;

  font: inherit;
  color: currentColor;

  width: 1em;
  height: 1em;
  border: 0.15em solid currentColor;
  margin: 0.5em;
  margin-left: 0;
}

input[type="radio"],
input[type="checkbox"] {
  border-radius: 50%;
  &::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em currentColor;
  }

  &:checked::before {
    transform: scale(1);
  }
}

input[type="checkbox"] {
  border-radius: 10%;
  &::before {
    content: "\2714";
    width: 0.5em;
    height: 0.5em;
    box-shadow: none;
  }
  &:checked::before {
    transform: scale(1) translateY(-0.5em) translateX(-0.125em);
  }
}

button.minimal-button {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  text-align: inherit;
}
