main {
    margin-top: 150px;
}

h1.heading {
    color: black;
    font-weight: bold;
    text-align: center;
}

.card a {
    text-decoration: none;
}

.filters {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}

.filter {
    padding: 10px 15px;
    background: #f4f6f5;
    color: black;
    margin: 10px;
}

.filters > .active {
    background: #17b57d !important;
    color: white;
}

/* PRODUCT LISTING */
.product-listing .product {
    cursor: pointer;
    border-radius: 16px;
    border-color: #e7ecf2;
    background: #fff;
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 5%);
}

.product-listing .product:hover {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(205, 214, 222, 0.75);
    -moz-box-shadow: 0px 5px 10px 0px rgba(205, 214, 222, 0.75);
    box-shadow: 0px 5px 10px 0px rgba(205, 214, 222, 0.75);
}
.product-listing .product div.img {
    position: relative;
    background-color: white;
}

.primary_color {
    color: #010483 !important;
}

.product-listing .product .product-title {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #010483;
}

.product-listing .product .subtitle {
    font-size: 18px;
}

.product-listing .product .price-tag {
    font-weight: 700;
    font-size: 18px;
}

.product-listing .product .info-link {
    color: #010483;
    font-weight: 600;
    display: block;
    float: right;
}

.product .product-overlay {
    display: none;
}

.product:hover .product-overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(1, 4, 136, 0.2);
}

.product:hover .product-overlay div {
    cursor: pointer;
    text-align: center;
    color: white;
}

.product-listing .product .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background-color: #1a1d94;
    padding: 10px;
}

.btn-buy-product {
    background: #17b57d !important;
    border: none;
}

.btn-buy-product:hover {
    background: #1acc8d;
}

/* PRODUCT SINGLE PAGE */
.product-page .card {
    border: none;
}

.product-page .product-title {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #010483;
}

.product-page .subtitle {
    font-weight: 400;
    font-size: 17px;
    border: none;
}

.product-page .description {
    font-size: 17px;
}

.product-page .tag {
    position: absolute;
    top: 50px;
    right: 10px;
    color: white;
    background-color: #1a1d94;
    padding: 10px;
}

.product-page .product {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-page .price-tag {
    font-weight: 700;
    font-size: 24px;
}

.page-item.active .page-link {
    background-color: #1a1d94 !important;
    border-color: #1a1d94 !important;
}

a .page-link {
    color: #1a1d94 !important;
}

.product-image-carousel .product-image-container {
    cursor: pointer;
}

.product-image-carousel .active > img {
    border-color: #1a1d94;
    border-width: 2px;
}

.btn-theme-primary {
    border-color: #191d93 !important;
    background-color: #191d93 !important;
}

.btn-theme-primary:hover {
    background-color: #6568b7 !important;
    background-color: #6568b7 !important;
}

#productPaySection > #payBtn {
    min-height: unset;
    padding: 15px 0px;
}

#productPaySection > #payBtn {
    background: #17b57d !important;
}

#productPaySection > #payBtn:hover {
    background: #12da94 !important;
}

/* MOBILE */

@media (max-width: 992px) {
    main {
        margin-top: 50px;
    }

    .product-listing-items {
        display: flex;
        flex-direction: column;
    }
}
