.category-product-div {
    padding: 5px !important;
}



.product-prices-div{
    display: flex;
    flex-direction: column;
    align-items: start;
}


.product-card{
    border: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.dt-sn{
    /* box-shadow: none; */
    padding: 1rem !important;
}

.f-menu.sub-menu.nav{
    z-index: 30000;
}

ul.gallery-options{
    z-index: 0 !important;
}

.bg-pattern{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-image: url("../assets/img/svg/bg-pattern.svg");
    opacity: .05;
}

.card-cart-button{
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}



.wizard-search {
    margin-top: 4rem;
    margin-bottom: 4rem;
    background-color:white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.chip {
    list-style: none;
    border-radius: .5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: .5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: fit-content;
    padding: .25rem 1rem;
    align-items: center;
}

.remove-btn-chip {
    outline: none;
    padding: 0;
    color: red;
    font-size: 1.5rem;
    background-color: transparent;
    border: none;
}

.remove-btn-chip>span {
    height: 24px;
}

.steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.steps .step-title {
    font-size: 16px;
    text-align: center;
}

.mdi-magnify {
    font-size: 2rem;
}

.search-box {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, .125);
    background-color: white;
    border-radius: 1rem;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem
}

.search-box.invalid{
    border: 1px solid red !important;
}

.search-box input {
    outline: none;
    border: none;
    flex: 1 1 0;
    height: 100%;
    background-color: transparent;
}
.data-list{
    border: none;
    cursor: pointer;
}
.result-list{
    background-color: white;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, .125);
}
.message-danger{
    color:red;
}
.chip-container{
    display: flex;
    flex-direction:row;
    gap: 1rem;
    margin-bottom: 2rem;
}
.chip-container > ul{
    display: flex;
    flex-direction:row;
    gap: 1rem;
}
.search-loading{
    display: flex;
    justify-content: center;
}

@media (min-width: 576px) {
    .steps .step-title {
        font-size: 18px;
    }
}
@media (min-width: 768px) {
    .steps .step-title {
        font-size: 20px;
    }
}
@media (min-width: 992px) {
    .steps .step-title {
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    .steps .step-title {
        font-size: 24px;
    }
}
@media (min-width: 1400px) {
    .steps .step-title {
        font-size: 26px;
    }
}


.step-2-list-items{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
}

.step-2-list-items li{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.step-2-list-items li img{
    width: 50px;
    height: 50px;
}

@media (min-width: 768px) {
    .step-2-list-items{
        display: grid;
        grid-template-columns: repeat(4,1fr);
    }
    .step-2-list-items li img{
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .search-card-res .product-card .product-thumb {
        display: inline-block;
        width: 100%;
    }
    .search-card-res .product-card .product-thumb > img {
        max-width: 100%;
        height: 100%;
    }
}