.tabs-wrapper {
    /*border: 1px solid #eee;*/
    border-radius: 2px;
    background-clip: padding-box;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 10px 0;
}

.tabs-wrapper .tabs-group {
    padding: 0;
    position: relative;
    overflow-y: hidden;
}

.tabs-wrapper .tabs-group .title {
    float: left;
    padding: 15px 0;
    width: 40px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    text-align: right;
    font-size: 14px;
}

.tabs-wrapper .tabs-group ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 60px;
}

.tabs-wrapper .tabs-group ul > li {
    float: left;
    padding: 10px 12px;
}

.tabs-wrapper .tabs-group ul > li > a {
    display: block;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    background-clip: padding-box;
    color: #919191;
    font-size: 14px;
}

.tabs-wrapper .tabs-group ul > li.active > a,
.tabs-wrapper .tabs-group ul > li:focus > a,
.tabs-wrapper .tabs-group ul > li:hover > a {
    color: #007bff;
}

.nav-pills > li > a {
    padding: 6px 12px;
    border: none;
}

.search-form input {
    outline: none;
}

.search-form input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

.search-form input::-webkit-search-decoration,
.search-form input::-webkit-search-cancel-button {
    display: none; /* remove the search and cancel icon */
}

.search-form input[type=search] {
    background: #dddddd;
    padding: 7px 10px 6px 12px;
    width: 30px;

    border-radius: 3px;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    border: solid 1px #dddddd;
}

.search-form {
    float: left;
}

.search-form:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f002";
    float: left;
    margin-right: -33px;
    width: 33px;
    text-align: center;
    position: relative;
    padding: 0.7rem 0 0.275rem 0;
    line-height: 1.6;
    pointer-events: none;
    color: #495057;
}

.search-form input[type=search] {
    width: 130px;
    background-color: #fff;
}

.search-form input:-moz-placeholder {
    color: #999;
}

.search-form input::-webkit-input-placeholder {
    color: #999;
}

.search-form input[type=search] {
    padding-left: 32px;
}

.filter-checkbox {
    padding-top: 5px;
}

.filter-checkbox input {
    float: left;
    margin: 5px 5px 0 0;
}

.filter-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    color: #616161;
}

@media (min-width: 1200px) {
    .addon-list .addon-item .addon-img .img-responsive {
        min-height: 175px;
    }
}

@media (max-width: 767px) {
    .addon-filter {
        padding-top: 50px;
    }

    .addon-filter .addon-post {
        top: 0;
        position: absolute;
        left: 0;
        right: inherit;
        width: 100%;
    }

    .addon-filter .addon-post .search-form {
        display: block;
        width: 100%;
    }

    .search-form input[type=search] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }
}
.addon-item .preview-img::before {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.addon-item .preview-intro {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    line-height: 20px;
    text-align: center;
    z-index: 10;
    background: #000;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    padding: 20px;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addon-item:hover .preview-img::before {
    opacity: 1;
}

.addon-item:hover .preview-intro {
    opacity: .7;
    visibility: visible;
}