/*To apply a different background color for the app above when being launched from the home screen with "display": "standalone", use conditional CSS:*/
@media all and (display-mode: standalone) {
    body {
        background-color: #ffffff;
    }
}

.pwa {
    text-align: center;
}

.a2hs-prompt, .ios-prompt{
    display: none;
    position: absolute;
    margin: 0 1rem 1rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 32px);
}

/* Style jak Bootstrap .btn, ale bez white-space: nowrap; */
.ios-prompt-msg {
    /*.btn*/
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 6px;

    display: inline-block;
    text-decoration: none;
    text-align: center;
    /*white-space: nowrap;*/
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    
        color: #333;
    background-color: #fff;
    border-color: #ccc;

    /*.btn-default*/
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.ios-prompt-msg:hover {
    /*.btn:hover*/
    color: #333;
    text-decoration: none;
    /*.btn-default:hove*/
        color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.share_svg {
  display: inline-block; 
  margin-top: -3px; 
  margin-bottom: 3px; 
  height: 20px; 
  width: auto;
}
