* {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-decoration: none;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    vertical-align: baseline;
    -webkit-print-color-adjust: exact !important;
	box-sizing: border-box;
	outline: 0;
    scrollbar-width: thin;
    scrollbar-color: #555 #f5f5f5;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #f5f5f5;
}

*::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

body {
    background: whitesmoke;
    overflow-x: hidden;
}

body:fullscreen::backdrop {
    background: whitesmoke;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    display: block;
    top: 0;
    z-index: 1;
}

.broke {
    position: relative;
    display: inline-block;
    width: calc((100% / 2) - (6px * 1 /2));
    vertical-align: middle;
}

.broke:not(:nth-child(1)) {
    margin-left: 6px;
}

.block {
    background: white;
    box-shadow: 0 0 1px #808080;
}

.box {
    position: relative;
    display: block;
    padding: 5px;
}

.label {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 600;
    color: dimgrey;
    font-style: italic;
    text-decoration: underline;
}

.texttip {
    text-align: center;
}

.texttip>p {
    display: inline-block;
    font-size: 13px;
    color: red;
    text-align: justify;
}

