@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#sort-selector.form-control {
    text-align: center;
    width: 200px;
}

.sort-selector-append {
    width: 30px;
}

.reset-button {
    font-family: 'Dosis', 'Times New Roman', Times, serif;
    font-size: 17px;
    text-decoration: none;
    padding: 3px 5px 5px 5px;
    border: 1px transparent;
}

.reset-button:hover {
    border: 1px solid red;
}

.quantity-input {
    width: 50%;
}

.product-card {
    font-family: 'Urbanist', Arial, Helvetica, sans-serif;
    background-color: black;
    border: 1px solid yellow;
}

.product-card:hover {
    color: red;
}

.product-link {
    text-decoration: none;
    color: rgb(0, 255, 0);
}

.product-link {
    text-decoration: none;
    color: rgb(0, 255, 0);
}

.product-name {
    font-size: 25px;
}

.product-image-container {
    height: 170px;
}

.product-image {
    max-width: 50%;
    max-height: 150px;
    border: 1px solid yellow;
}

.product-price {
    font-size: 24px;
    padding: 0;
}

.product-category {
    font-size: 20px;
}

.product-display-img {
    max-width: 90%;
    max-height: 400px;
    border: 2px solid yellow;
    
}

.product-desc {
    text-align: justify;
}

.delivery-blink {
    letter-spacing: 3px;
    font-size: 19px;
    font-weight: 700;
    animation-name: delivery-blink;
    animation-duration: 1.9s;
    animation-iteration-count: 4;
}

.input-group-append button,
.input-group-prepend button {
    border-radius: 0;
}

@keyframes delivery-blink {
    0% {opacity: 1;}
    50% {opacity: 0.1;}
    100% {opacity: 1;}
}

@media (max-width: 991px) {
    .quantity-input {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-desc {
        padding: 0 20px 0px 20px;
    }

    .product-price {
        padding: 0 0 0 20px;
    }

    .quantity-form {
        padding: 0 0 0 20px;
    }

    .quantity-input {
        width: 50%;
    }
}

@media (max-width: 390px) {
    .quantity-input {
        width: 100%;
    }
}