/* === CP: Header kontakt + hledání === */

#header .search #formSearchForm fieldset {
  display: flex;
  align-items: stretch;
  width: 100%;
}

#header .search #formSearchForm input.search-input {
  flex: 1 1 auto;
  min-width: 0;
}

#header .search #formSearchForm button[type="submit"][data-testid="searchBtn"] {
  flex: 0 0 62px;
  width: 62px;
  min-width: 62px;
  padding: 0 !important;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  color: transparent !important;
  background-color: var(--color-primary, #279e3b) !important;
  background-image: url("https://www.ceskeploty.cz/user/documents/upload/GRAFIKA/CMS/OSTATNI/ikona-hledat-small.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 22px auto !important;
  border-color: var(--color-primary, #279e3b) !important;
}

#header .search #formSearchForm button[type="submit"][data-testid="searchBtn"]::before,
#header .search #formSearchForm button[type="submit"][data-testid="searchBtn"]::after {
  display: none !important;
  content: none !important;
}

#header .search #formSearchForm button[type="submit"][data-testid="searchBtn"]:hover {
  background-color: var(--color-primary-hover, #279e3b) !important;
  border-color: var(--color-primary-hover, #279e3b) !important;
}

#header .cp-header-contact {
  display: none;
}

/* Kontakt pouze desktop */
@media (min-width: 1200px) {
  body:not(.ordering-process) #header .header-top.cp-header-top--contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  body:not(.ordering-process) #header .header-top.cp-header-top--contact > .site-name-wrapper {
    flex: 0 0 310px;
    max-width: 310px;
  }

  body:not(.ordering-process) #header .header-top.cp-header-top--contact > .search {
    flex: 0 1 425px;
    width: 425px;
    max-width: 425px;
    min-width: 330px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body:not(.ordering-process) #header .header-top.cp-header-top--contact > .navigation-buttons {
    flex: 0 0 auto;
    margin-left: auto;
  }

  #header .cp-header-contact {
    display: flex;
    align-items: center;
    flex: 0 0 240px;
    max-width: 240px;
    margin-left: 58px;
    margin-right: 24px;
    color: #111 !important;
    text-decoration: none !important;
    white-space: nowrap;
  }

  #header .cp-header-contact:hover,
  #header .cp-header-contact:focus {
    color: #111 !important;
    text-decoration: none !important;
  }

  #header .cp-header-contact__avatar {
    position: relative;
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }

  #header .cp-header-contact__avatar img {
    display: block;
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    border-radius: 50%;
    object-fit: cover;
  }

  #header .cp-header-contact__status {
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 12px;
    height: 12px;
    background: #f04b3f;
    border: 2px solid #fff;
    border-radius: 50%;
  }

  #header .cp-header-contact__text {
    display: block;
    min-width: 0;
  }

  #header .cp-header-contact__phone {
    display: block;
    font-family: var(--template-headings-font, "Exo 2"), sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.05;
    color: #111;
  }

  #header .cp-header-contact__hours {
    display: block;
    margin-top: 4px;
    font-family: var(--template-font, "Source Sans 3"), sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
    color: #666;
  }
}

/* Užší desktop / menší notebooky */
@media (min-width: 1200px) and (max-width: 1399px) {
  body:not(.ordering-process) #header .header-top.cp-header-top--contact > .site-name-wrapper {
    flex-basis: 285px;
    max-width: 285px;
  }

  body:not(.ordering-process) #header .header-top.cp-header-top--contact > .search {
    flex-basis: 370px;
    width: 370px;
    max-width: 370px;
    min-width: 310px;
  }

  #header .cp-header-contact {
    flex-basis: 220px;
    max-width: 220px;
    margin-left: 34px;
    margin-right: 18px;
  }

  #header .cp-header-contact__phone {
    font-size: 15px;
  }

  #header .cp-header-contact__hours {
    font-size: 12px;
  }
}

/* Tablet a mobil: kontakt se nezobrazuje */
@media (max-width: 1199.98px) {
  #header .cp-header-contact {
    display: none !important;
  }
}