
/* Custom heading font */

.gray {
    color:#A9A9A9;
}

.super-hidden {
    display: none !important;
}

.hidden {
    display: none;
}

.fabric-buttons {
    width: 120px;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .hide {
        display: none;
    }
}

@media (max-width: 767.98px) {
    /* Použití tří teček místo přetečení textu na další řádek */
    .ellipsis {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; 
    }
}

/* Sticky footer */
.container {
min-height: calc(100vh - 50px);
}
.footer {
/* position: fixed;
bottom: 0;
width: 100%; */
/* flex-shrink: none; */
height: 50px;
}

/* Custom translucent site header */

.site-header {
background-color: rgba(132, 132, 132, .85);
-webkit-backdrop-filter: saturate(180%) blur(20px);
backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
color: #000;
transition: ease-in-out color .15s;
}
.site-header a:hover {
color: #fff;
text-decoration: none;
}