@import url('colors.css');

.bg-white .nav-link {
    color: var(--grey-dark) !important;
}

    .bg-white .nav-link:hover {
        color: var(--red-light) !important;
    }

nav.bg-white .active {
    color: var(--red-light) !important;
}

.nav-link {
    padding-left: 3rem;
}

.nav {
    box-shadow: 0px 6px 6px #00000029;
}

#products {
    padding: 4rem;
}

.product-card {
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    margin: 48px 0px;
}

.product-details {
    display: flex;
    flex-direction: row;
    padding: 10px 20px 5px 20px;
}

.product-image {
    border-radius: 20px 20px 0px 0px;
}

    .product-image > img {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

.product-card:hover {
    animation-name: hover;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes hover {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.material-icon {
    height: 34px;
    width: 65px;
    /*    border-radius: 5px;*/
    display: flex;
    flex-direction: row;
    font: italic normal bold var(--product-material) "Montserrat", sans-serif;
    margin-top: 0.5rem;
}

.pp {
    background-color: var(--red);
    color: white;
}

    .pp:after {
        content: 'PP';
        margin: auto auto;
    }

.pet {
    background-color: var(--red-lighter);
    color: white;
}

    .pet:after {
        content: 'PET';
        margin: auto auto;
    }

.paging {
    cursor: pointer;
}

    .paging .active {
        color: var(--red-dark)
    }

    .paging a, a.product-link {
        color: inherit !important;
        text-decoration: none !important;
    }

.product-details-margin {
    margin-bottom: 3.25rem;
}

.product-features > img {
    max-width: 105px;
    margin: 0px 12px;
}
@media (max-width:1024px) {
    .material-icon {
        height: 20px;
        width: 43px;
        display: flex;
        flex-direction: row;
        font: italic normal bold var(--product-material) "Montserrat", sans-serif;
        margin-top: 0;
    }

    .product-details-margin {
        margin-bottom: 1.5rem;
    }

    .product-features > img {
        max-width: 43px;
        margin: 0px 0.5rem;
    }
}

    @media (max-width:768px) {
        #products {
            padding: 0px;
        }

        .material-icon {
            height: 19px;
            width: 42px;
            display: flex;
            flex-direction: row;
            font: italic normal bold var(--product-material) "Montserrat", sans-serif;
            margin-top: 0.25rem;
        }

        .product-details-margin {
            margin-bottom: 0.5rem;
        }

        .product-features > img {
            max-width: 43px;
            margin: 0px 0.5rem;
        }
    }

    @media (max-width:375px) {
        #products {
            padding: 0px;
        }

        .material-icon {
            height: 15px;
            min-width: 27px;
            display: flex;
            flex-direction: row;
            font: italic normal bold var(--product-material) "Montserrat", sans-serif;
            margin-top: 0.15rem;
        }

        .product-details-margin {
            margin-top: 0.5rem;
        }

        .product-features > img {
            max-width: 50px;
            margin: 0px 0.15rem;
        }
    }
