html {
    height: 100%; /* показва грида по пълната височина на екрана и фиксира footer в дъното на прозореца (footerfix.js) */
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none; /* Не позволява промяна на размера на текста при завъртане на екрана (landscape/portrait) */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* Remove Gray Highlight When Tapping Links in Mobile Safari */

    scroll-behavior: smooth; /* Smooth scrolling on the whole document */
}

body {
    height: 100%;  /*показва грида по пълната височина на екрана. Ако го има НЕ фиксира footer в дъното на прозореца (footerfix.js) */
    margin: 0;
    padding: 0;
    overflow-y: scroll; /* показва вертикален scrolbar независимо от съдържанието / предотвратява подскачането на съдържанието при динамично зареждане на съдържание */

/*    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #224229;*/

    /* footerfix */
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* *** */
}

body header,
body footer,
body main {
    flex-shrink: 0;
}

body main { flex-grow: 1; }

article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.c { text-align: center; }

.r { text-align: right; }

.hide { display: none; }

.cf { overflow: auto; }

.fl { float: left; }

.fr { float: right; }


@media all and (max-width: 960px) {
    .topspace { height: 60px; }
}

@media all and (min-width: 961px) {
    .topspace { height: 90px; }
}

.link { cursor: pointer; }

.fb-customerchat iframe { bottom: 80px !important; }