a.category-circle img {
    padding: .3125rem;
    /*border: solid 1px #dee2e6;*/
    border-radius: 50%;
    width: 100%;
    -moz-transition: padding .25s ease-in-out;
    -webkit-transition: padding .25s ease-in-out;
    -o-transition: padding .25s ease-in-out;
    transition: padding .25s ease-in-out;
    box-shadow: 0 0 1px #9ca0a4;
}
a.category-circle:hover img {
    padding: 0;
}
a.category-circle + h5 {
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
a.category-circle:hover + h5 {
    color: #000;
    font-weight: 400;
}
#categories > label {
    display: block;
    border-bottom: solid 1px var(--border-color);
    padding-top: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 300;
    font-size: 1.05em;
}
#categories > label:last-of-type {
    border-bottom: none;
}
#categories > label + div > a {
    border-color: rgba(164, 164, 164, 0.13);
    color: var(--secondary);
    display: block;
    padding: 0.75rem 0.75rem 0.75rem 2.25rem;
}
#categories > label + div > a:hover {
    color: rgb(33, 37, 41);
}
/*#categories label.active-label {*/
    /*color: #1d82cc;*/
    /*font-weight: 400;*/
    /*font-size: 1.15em;*/
/*}*/
#categories > label > svg {
    margin-right: 8px;
    opacity: 0.5;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
#categories > input[type="radio"] {
    display: none;
}
#categories > input[type="radio"]:checked + label,
#categories > input[type="radio"] + label:hover
{
    color: var(--black);
}
#categories > input[type="radio"]:checked + label {
    font-weight: 400;
}
#categories > input[type="radio"]:checked + label svg,
#categories > input[type="radio"] + label:hover svg
{
    opacity: 1;
}
#categories > input[type="radio"] + label + div {
    max-height: 0;
    overflow: hidden;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
#categories > input[type="radio"]:checked + label + div {
    max-height: 1800px;
}
#categories > div > a:after {
    content: '\A';
    white-space: pre;
}
#categories > div > a.active {
    background-color: var(--light);
    color: var(--black);
}
body.dark #categories > div > a.active {
    background-color: var(--bg-default);
}
#categories > div > a:last-child {
    border-bottom-width: 1px;
}

#search-bar input.form-control,
#search-bar button.form-control
{
    font-size: 1em;
    padding: 0.5rem 1rem;
    line-height: 1em;
    min-height: 60px;
    background-color: transparent;
    color: var(--secondary);
}
#search-bar .input-group > .form-control:first-child {
    border-radius: 5px 0 0 5px;
}
#search-bar .input-group > .form-control:nth-child(2) {
    border-radius: 0;
    text-align: left;
    min-width: 130px;
    flex: 0 0 33%;
    height: 60px;
    padding-left: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' height='16'%3E%3Cpath fill='%23999999' d='M 16 3 C 11.042969 3 7 7.042969 7 12 C 7 13.40625 7.570313 15.019531 8.34375 16.78125 C 9.117188 18.542969 10.113281 20.414063 11.125 22.15625 C 13.148438 25.644531 15.1875 28.5625 15.1875 28.5625 L 16 29.75 L 16.8125 28.5625 C 16.8125 28.5625 18.851563 25.644531 20.875 22.15625 C 21.886719 20.414063 22.882813 18.542969 23.65625 16.78125 C 24.429688 15.019531 25 13.40625 25 12 C 25 7.042969 20.957031 3 16 3 Z M 16 5 C 19.878906 5 23 8.121094 23 12 C 23 12.800781 22.570313 14.316406 21.84375 15.96875 C 21.117188 17.621094 20.113281 19.453125 19.125 21.15625 C 17.554688 23.867188 16.578125 25.300781 16 26.15625 C 15.421875 25.300781 14.445313 23.867188 12.875 21.15625 C 11.886719 19.453125 10.882813 17.621094 10.15625 15.96875 C 9.429688 14.316406 9 12.800781 9 12 C 9 8.121094 12.121094 5 16 5 Z M 16 10 C 14.894531 10 14 10.894531 14 12 C 14 13.105469 14.894531 14 16 14 C 17.105469 14 18 13.105469 18 12 C 18 10.894531 17.105469 10 16 10 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
}
#search-bar [type="submit"] {
    padding-left: 1rem;
    padding-right: 1rem;
    border: none;
    border-radius: 0 5px 5px 0;
    height: 60px;
    background-color: transparent;
    color: var(--secondary);
}
#search-bar [type="submit"]:hover {
    color: var(--black);
}
#search-filter {
    /*background-color: #fbfbfb;*/
}
#search-filter > .d-flex {
    flex-wrap: wrap;
}
#search-filter > .d-flex > label {
    position: relative;
    flex-wrap: wrap;
    width: calc((100% - 1rem)/2);
}
#search-filter > .d-flex > label .d-flex .s-w2,
#search-filter > .d-flex > label .d-flex .w2
{
    position: relative;
}
#search-filter > .d-flex > label .suggestions {
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.85);
    left: .625rem;
    right: .625rem;
    padding: .375rem .75rem;
    border-radius: 5px;
    box-shadow: 0 0 1.25rem 0 rgba(0,0,0,.1);
}
#search-filter > .d-flex > label .suggestions p {
    margin-bottom: 5px;
}
#search-filter > .d-flex > label .suggestions p:last-child {
    margin-bottom: 0;
}
/*
#search-filter .d-flex > label:first-child {
    min-width: 10%;
    max-width: 33.333%;
}
*/
#search-filter > .d-flex > label small,
#search-filter > .d-flex > div small
{
    color: var(--gray);
}
#search-filter > .d-flex > div {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: calc((100% - 1rem)/2);
}
#search-filter > .d-flex > div > label {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
#search-filter input[type=number]::-webkit-outer-spin-button,
#search-filter input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#search-filter input[type=number] {
    -moz-appearance: textfield;
}

#search-filter label i.clear-parameter {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' height='14'%3E%3Cpath fill='%23777777' d='M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.3;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    -o-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
}
#search-filter label i.clear-parameter:hover {
    opacity: 0.8;
}
#search-filter select[name="operation"] + i.clear-parameter {
    display: none !important;
}
#search-filter label.price-label i.clear-parameter {
    top: 4px;
}

.details-card .carousel-container .carousel {
    height: 500px;
    background-color: transparent;
}
.details-card .carousel-container .carousel > * > img {
    pointer-events: none;
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    vertical-align: top;
    min-height: 100%;
}
.card .step-circle {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 50%;
    border: solid 1px var(--light);
    margin-right: 5px;
    font-size: 0.9em;
    color: var(--gray);
}
.card.megaphone-block,
.card.more-visible,
.card.to-google
{
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--dark);
}
.card.megaphone-block:before,
.card.more-visible:before,
.card.to-google:before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.25;
    z-index: -1;
    border-radius: 5px;
}
.card.megaphone-block:before {
    background: url('/data/47/board/images/megaphone-block.jpg') center center/cover no-repeat;
    opacity: 0.35;
}
.card.more-visible:before {
    background: url('/data/47/board/images/more-visible.jpg') center center/cover no-repeat;
}
.card.to-google:before {
    background: url('/data/47/board/images/to-google.jpg') center center/cover no-repeat;
}
.details-card dl.parameters {
    margin-bottom: 15px;
    columns: 1;
}
.details-card dl.parameters dt {
    display: inline-block;
    margin-right: 5px;
    font-weight: inherit;
    color: #333;
}
.details-card dl.parameters dd {
    display: inline-block;
    margin: 0;
    font-weight: inherit;
    color: #888;
}
.details-card .carousel-container ul.dots {
    margin: 0;
    position: absolute;
    bottom: 10px;
}
.details-card .carousel-container ul.dots li {
    background-color: var(--white);
}
.category-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}
.category-items > div {
    padding: 0 0.5rem;
}
.category-items > div > .card {
    height: calc(100% - 1rem);
}

.card.product > .image-block {
    margin: 0 -1rem;
    position: relative;
    display: block;
}

@media (max-width: 360px) {
    #search-filter > .d-flex > label,
    #search-filter > .d-flex > div
    {
        width: 100%;
    }
    #search-bar [type="submit"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .details-card dl.parameters {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .details-card .carousel-container .carousel {
        height: 300px;
    }
    .details-card .carousel-container .carousel > * > img {
        min-height: 0;
    }
    #search-bar input.form-control,
    #search-bar button.form-control
    {
        padding: 1rem 0.5rem;
    }
    .details-card dl.parameters {
        columns: 2;
    }
/*
    .card.block-filter .card-header {
        padding: 0.5em 1em;
        background-color: #e1e1e114;
    }
    .card.block-filter .card-header h4 {
        font-size: 1em;
        font-weight: 400;
        color: inherit;
        cursor: pointer;
    }
*/
    .card.block-filter {
        padding: 0.5em 1em;
    }
}
@media (min-width: 768px) {
    #search-filter > .d-flex > label,
    #search-filter > .d-flex > div
    {
        width: calc((100% - 2rem)/3);
    }
    .details-card dl.parameters {
        columns: 2;
    }
}

@media (max-width: 991px) {
    .card #categories {
        display: none;
    }
    .card #categories.opened {
        display: block;
    }
    .details-card dl.parameters {
        columns: 3;
    }
}
@media (min-width: 992px) {
    #search-filter > .d-flex > label,
    #search-filter > .d-flex > div
    {
        width: calc((100% - 3rem)/4);
    }
    .details-card dl.parameters {
        columns: 3;
    }
}