/* Filter */
.compat--input {
    margin: 25px 15px 10px 0px;
}
.compat--input input {
    width: 100%;
    border: none;
    background: #ededed;
    padding: 5px;
    font-size: 1.2rem;
}
.compat--manufacturer {
    position: relative;
}
.compat--close .compat--readmore {
    display: none;
}
.compat--open .compat--readmore {
    display: block;
    animation-name: open;
    animation-duration: .4s;
}
.compat--close .compat--dropdown {
    animation-name: flipdown;
    animation-duration: .2s;
    transform: rotate3d(90, 1, 1, 0deg);
}
.compat--open .compat--dropdown {
    animation-name: flipup;
    animation-duration: .2s;
    transform: rotate3d(90, 1, 1, 180deg);
}
.compat--bar {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top-style: solid;
    border-width: 2px;
    border-color: #e2e2e2;
}
.compat--name {
    font-size: 1.4rem;
    color: #333333;
    font-weight: 200;
    margin: auto 0px;
}
.compat--status {
    font-size: 1rem;
    margin: auto 0px;
    line-height: 1.4rem;
    margin-right: 40px;
}
.compat--status__0 {
    color: #d54140;
}
.compat--status__1 {
    color: #ff8f00
}
.compat--status__2 {
    color: green;
}
.compat--status__3 {
    color: #f56f2d;
}
.compat--dropdown {
    font-size: 1.2rem;
    right: 6px;
    top: 16px;
    position: absolute;
    background: #05629c;
    color: white;
    border: none;
    border-radius: 8px;
}
.compat--readmore {
    padding: 20px 30px;
}
.compat--listItem {
    display: list-item;
    margin-left: 25px;
}
.compat--h {
    display: block;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: .25rem;
}
.compat--hh {
    display: block;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: .25rem;
}
.compat--hhh {
    display: block;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: .25rem;
}
@keyframes flipup {
    from {
        transform: rotate3d(90, 1, 1, 0deg);
    }
    to {
        transform: rotate3d(90, 1, 1, 180deg);
    }
}
@keyframes flipdown {
    from {
        transform: rotate3d(90, 1, 1, 180deg);
    }
    to {
        transform: rotate3d(90, 1, 1, 0deg);
    }
}
@keyframes open {
    from {
        opacity: 0;
        display: block;
        transform: translate(0px, -50px);
    }
    to {
        opacity: 1;
        display: block;
        transform: translate(0px, 0px);
    }
}

@media only screen and (max-width: 600px) {
    .compat--name {
        font-size: 1rem;
    }
    .compat--status {
        font-size: .8rem;
    }
    #compat--manufacturer_list {
        max-height: 400px;
        overflow-y: scroll;
    }
}