
.breadcrumb {
    font-size: small;
    margin-top: 10px;
}

.images_product_details_main {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
}

.images_section {
    align-self: flex-start;
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.product_details_section {
    align-self: flex-start;
    min-height: 800px;
    display: flex;
    gap: 15px;
    max-width: 45%;
    flex-direction: column;
}

.product_details_section h1 {
    font-size: large;
    color: #2c2c2c;
}
.product_details_section h2 {
    font-size: large;
    color: rgba(74, 74, 74, 0.9)
}

#price {
    font-size: medium;
    font-weight: 500;
    color: darkgreen;
}

.quantity_selection select{
    width: 70px;
}

#add_to_bag{
    padding: 15px;
    border: 1px rgba(44, 44, 44, 0.21) solid;
    display: flex;
    gap: 20px;
}

#add_to_buttons{
    display: flex;
    align-self: flex-end;
    gap: 20px;
    align-items: center;

}

#add_to_bag input, #add_to_bag select{
    margin-bottom: 0;
}

#pills-tab{
    margin-top: 10px;
    margin-bottom: 0;
}

#pills-tab button{
    color: rgba(44, 44, 44, 0.9);
    font-weight: 600;
    background-color: transparent;
    font-size: medium;
    padding: 7px 0;
    border-radius: 0;
}

#pills-tab button.active{
    color: rgba(139,0,0,0.9)!important;
    border-bottom: rgba(139,0,0,0.51) 2px solid!important;
}

.specs_table tr{
    border-top: rgba(44, 44, 44, 0.2) 1px solid;
    border-bottom: rgba(44, 44, 44, 0.2) 1px solid;
    padding: 10px 0;
}

.specs_table td{
    border: none!important;
}

/*IMAGES*/

.list_images {
    width: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-start;
}

.display_image {
    max-width: 450px;
    align-self: flex-start;
    min-height: 100px;
}

.display_image img {
    width: 100%;
    height: auto;
}

.image_thumbnail {
    width: 70px;
    height: auto;
    border: 1px black solid;
    border-radius: 5px;
    align-self: flex-start;
}

.image_thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5%;
}

.image_thumbnail:hover {
    border: 1px hotpink solid;
    box-shadow: 0 0 5px 5px hotpink;
}

.img_active {
    border: 1px hotpink solid;
    box-shadow: 0 0 3px 3px hotpink;

}

#images_carousel {
    display: none;
}

.carousel-inner {
    display: flex;
}

.zoom {
    display: inline-block;
}


@media (max-width: 1200px) {
    .display_image {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .images_product_details_main {
        flex-direction: column;
    }

    .product_details_section {
        min-width: 100%;
        max-width: 100%;
    }

    .display_image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .list_images, .display_image {
        display: none;
    }

    #images_carousel {
        display: block;
    }

    .images_section {
        min-width: 100%;
        display: flex;
        justify-content: center;
    }
}