.shop_container.list [class*="col-"] {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

@media screen and (max-width: 992px) {
    .shop_container.list [class*="col-"] {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}

.shop_container.list .product .pr_action_btn {
    width: 100%;
}

.shop_container.list .product .pr_action_btn .add-to-cart {
    width: 100%;
    margin: 0;
}

.shop_container.list .product_img {
    float: none;
}

.shop_container.list .product_info {
    overflow: visible;
}

.add-to-cart {
    list-style: none;
    position: relative;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    width: auto;
    height: auto;
    padding: 12px 30px;
    background-color: #FF324D;
    border: 1px solid #FF324D;
    color: #fff;
    border-radius: 4px;
}

.add-to-cart:hover {
    color: #FF324D;
    background-color: #ffffff;
}

.add-to-cart-dropdown::after {
    transition: transform, .1s;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    right: 15px;
    top: calc(50% - 10px);
    color: #ffffff;
}

.add-to-cart.is-active {
    background-color: transparent;
    color: #FF324D;
}

.add-to-cart.add-to-cart-dropdown.is-active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.add-to-cart.add-to-cart-dropdown:hover::after {
    color: #FF324D;
}

.add-to-cart.add-to-cart-dropdown.is-active::after {
    color: #FF324D;
    transform: rotate(180deg);
}

.add-to-cart.add-to-cart-dropdown.is-active ul {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
    border: 1px solid #FF324D;
}

.add-to-cart-dropdown ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.15s ease-out;
    background-color: #FF324D;
    color: #ffffff;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.add-to-cart-dropdown ul li {
    width: 100%;
    padding: 15px 0;
    text-align: center;

}

.add-to-cart-dropdown ul li:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.add-to-cart-dropdown ul li:hover {
    color: #FF324D;
    background-color: #ffffff;
}

.main_content {
    min-height: 80vh;
}

ul {
    list-style: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}