html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.hidden{
    display:none !important;
}
.hidden.show {
    display: initial !important;
}

/**/
.filter-block {
    border-bottom: 1px solid #999;
    padding-bottom: 12px;
}

.sort-option {
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.25px;
}
.sort-option.active,
.sort-option:hover {
    font-weight: 600;
    letter-spacing: 0;
}

/*komponenty ->*/
.checkbox input {
    height: 0px;
    position: absolute;
    width: 0px;
    left: 0px;
    top: 0px;
    pointer-events: none;
    opacity: 0;
}
.checkbox label {
    cursor: pointer;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
}
.checkbox .checkbox-box {
    cursor: pointer;
    background-position: 0% 0%;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    margin: 6px 6px 6px 0;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(147, 150, 154);
    background-color: #fff;
}
.checkbox input:checked ~ label .checkbox-box {
    background-color: #4054b2;
    border: none;
}

.checkbox .checkbox-label {
    display: flex;
    position: relative;
    z-index: 0;
    height: 20px;
    -moz-box-align: center;
    align-items: center;
}

.expand-button {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 0px;
    border: 0px none;
    color: inherit;
    cursor: pointer;
    text-align: initial;
    margin: 0px;
    outline: 0px;
    padding: 0px;
    position: relative;
    text-decoration: none;
    position: relative;
    width: 100%;
    padding: 16px 0px;
}
.expand-button .expand-label{
    margin: 0px;
    color: rgb(14, 14, 15);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-wrap: normal;
    font-weight: 600;
    font-size: 1rem;
    padding-right: 24px;
}
.expand-button .expand-icon{
    position: absolute;
    right: 0;
    top: 18px;
    transition: transform 0.3s ease 0s;
}
.expand-container.expanded > .expand-button .expand-icon {
    transform: rotateZ(180deg);
}
.expand-content {
    display: none;
}
.expand-container.expanded>.expand-content{
    display: block;
}
