<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#slider {
    margin-bottom: 3rem;
}

.search-container {
    width: 70%;
    height: 50px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #acacac;
    box-shadow: 0 4px 4px rgba(172, 172, 172, 0.2);
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
    font-size: 14px;
}

.search-container form {
    height: 100%;
    display: flex;
    align-items: center;
}

.search-container input {
    width: 100%;
    color: #484848;
    font-size: 14px;
    font-family: var(--semibold-font);
    border: none;
}

.search-container input:focus {
    outline: none;
}

.search-container input::placeholder {
    color: #e1d1c1;
    font-size: 13px;
    font-family: var(--regular-font);
}

.search-container button {
    margin-left: 0.7rem;
    background: transparent;
    border: none;
}

.items-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto 7rem;
    background-image: url("../images/bg1.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.items-container .toolbox-title,
.items-container .description {
    width: 93%;
    margin: auto;
}
.items-container .description {
    position: relative;
    top: -1.5rem;
    line-height: 2rem;
    margin-bottom: 5rem;
    text-align: justify;
}
.items-container .items {
    width: 86%;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 2.5rem;
    row-gap: 4rem;
}

.items-container .card {
    height: 23rem;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px;
    border-radius: 17px;
    overflow: hidden;
    padding-bottom: 1rem;
}

.items-container .card .pic {
    width: 100%;
    height: 13rem;
    margin-bottom: 0.1rem;
}

.items-container .card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items-container .card .scoring {
    padding: 0.5rem 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 1px;
}

.items-container .card .scoring input {
    border: none;
}

.items-container .card .title {
    border: none;
    padding: 0.3rem 0.8rem 0;
    font-size: 14px;
    font-family: var(--semibold-font);
    height: 3rem;
    display: flex;
    align-items: center;
}

.items-container .card .title a {
    color: rgb(46, 46, 46);
}

.items-container .card .price {
    width: 91%;
    margin: 8px auto 0.4rem;
    padding-bottom: 14px;
    font-family: var(--bold-font);
    color: var(--primary-color);
    font-size: 14px;
}

.items-container .card .tool-info {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.items-container .card .tool-info span {
    display: inline-block;
    color: #acacac;
    margin-left: 0.2rem;
    font-size: 13.5px;
}

.pagination {
    column-gap: 0.5rem;
    justify-content: center;
    margin-bottom: 7rem;
}

.page-item.disabled .page-link {
    background-color: #c4cdd5;
}

.page-item.disabled .page-link i {
    color: #fff;
}

.page-item.active .page-link {
    color: #4200ff;
    border-color: #4200ff;
    background-color: #fff;
}

.page-link {
    color: #212b36;
    font-family: var(--bold-font);
    border-color: #dfe3e8;
    border-radius: 6px;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link i {
    color: #c4cdd5;
    font-size: 13px;
}

@media screen and (max-width: 1050px) {
    .items-container .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .items-container .items {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2.2rem;
    }

    .search-container {
        width: 85%;
        height: 40px;
    }
}
@media screen and (max-width: 480px) {
    .items-container .description {
        font-size: 14px;
        margin-bottom: 2rem;
    }
}
</pre></body></html>