/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

.header-top {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  overflow: hidden; /* aby vnitřní vrstva nečouhala */
  background: black; /* fallback */
}

.header-top::before {
  position: absolute;
  content: '';
  background: white;
  width: 100%;
  height: 100%;
  bottom: 0;
  opacity: 0.95;
  inset: 0;
  background: url('https://www.kominybb.cz/templates/images/slider_center_back.jpg') top center/cover no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}

.header-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.header-top .container {
  position: relative;
  z-index: 2; /* obsah nahoře, barevný */
  color: white;    
}

.ui-autocomplete-input {
    box-shadow: inset 0em 0em 0.2em 0px #830f0f;
}

.header-top-right.col-md-10.col-sm-12.position-static {
    position: relative;
}

@media (min-width: 992px) {
    .header-top-right.col-md-10.col-sm-12.position-static::after {
        position: absolute;
        max-width: 34%;
        content: 'Vaše komíny, naše starost';
        color: black;
        font-size: xx-large;
        font-weight: 900;
        font-family: "AvantGarde", Arial, Helvetica, sans-serif;
        text-shadow: 0ex 0ex 1ex #e3e3e3;
        line-height: 1.1em;
        top: 1em;

        transform: translate3d(0px, 0px, 0px);
        opacity: 1;
        transition-property: -webkit-transform, opacity;
        transition-duration: 400ms;
        transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);    
    }
}