/*******************
WP-ShowNumber plugin styles
******************/

a.mobile_sh.pokaz_telefon {
  display: none;
}

a.pokaz_telefon {
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  background-color: rgba(171, 194, 42, 1.0);
  border: 1px solid rgba(171, 194, 42, 1.0);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font-weight: 700;
  border-radius: 0px;
  padding: 15px 10px;
  min-width: 185px;
  letter-spacing: 0px;
  text-decoration: none;
  text-transform: uppercase;
}
a.pokaz_telefon:hover {
  text-decoration: none;
  background-color: rgba(69, 82, 97, 0.9);
}

.pokaz_telefon-link.sh-hide a.desktop_sh i {
  display: none;
  transition: all 0.5s;
}
.pokaz_telefon-link.sh-show a.desktop_sh i{
  display: inline-block;
  margin-right: 10px;
  transition: all 0.5s;
}

/* gdy mobile */
@media all and (max-width: 900px) {

  a.desktop_sh.pokaz_telefon {
    display: none;
  }
  a.mobile_sh.pokaz_telefon {
    display: inline-flex;
  }
  .pokaz_telefon-link.sh-hide a.mobile_sh i {
    display: none;
    transition: all 0.5s;
  }
  .pokaz_telefon-link.sh-show a.mobile_sh i{
    display: inline-block;
    margin-right: 10px;
    transition: all 0.5s;
  }
  body {
    position: relative;
  }
  a.pokaz_telefon {
    min-height: 50px;
  }
}