/* MUURI */

.gerpframe {
    position: relative;
    width: 100%;
    top: 3px;
    margin: auto;
}

.item {
    display: block;
    position: absolute;
    margin: 5px;
    padding: 0;
    z-index: 1;
}

.item.muuri-item-dragging {
    z-index: 3;
}

.item.muuri-item-releasing {
    z-index: 2;
}

.item.muuri-item-hidden {
    z-index: 0;
}

.item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* STYlE */

#frame-filter-radio p,
#frame-filter-radio span,
#frame-filter-radio label {
    font-family: 'Montserrat', sans-serif;
}

#mobile-filter-radio-close {
    float: right;
}

#frame-list-img h3 button {
    float: right;
    margin-right: 5%;
}

.accordion-item {
    border: none;
}

.accordion-item hr {
    color: black;
    margin: 0 5% 0 5%;
    opacity: 75%;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

#frame-filter-radio .accordion-button,
#frame-filter-radio .form-check-label {
    font-size: .875em;
}

#frame-filter-radio .accordion-button {
    color: black;
    font-weight: bold;
    background-color: transparent;
}

#frame-filter-radio .form-check-input:checked {
    background-color: #33bdc8;
    border-color: #33bdc8;
}

.muuri img.card-img-top {
    border: none;
    margin-bottom: 0;
    width: 98%;
}

.muuri .card .card-title {
    overflow: hidden;
}

.muuri .card .card-text {
    line-height: 1.2rem;
    height: 2.4rem;
}

/* MEDIA WIDTH */

@media (min-width: 1280px) {
    .item { width: 32%; }
}
@media (max-width: 1279px) {
    .item { width: 32%; }
}
@media (max-width: 1023px) {
    .item { width: 47%; width: calc(50% - 10px); }
}
@media (max-width: 767px) {
    .item { width: 47%; width: calc(50% - 10px); }
}
/*@media (max-width: 576px) {*/
/*    .item { width: 96%; width: calc(100% - 10px); }*/
/*}*/

/* VIRT SIDEBAR */
@media (max-width: 767px) {
    #frame-filter-radio {
        position: fixed;
        z-index: 1000;
        top: var(--sticky-main-menu-height);
        right: 0;
        margin: 0 !important;
        height: 100vh;
        width: 320px;
        overflow-y: auto;
        background: white;
        transition: all 0.4s ease 0s;
        transform: translateX(320px);
    }

    #frame-filter-radio.active {
        right: 320px;
        transition: all 0.4s ease 0s;
    }
}