.prddetails{
    width: 100%;
    overflow: hidden;
    display: none;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid rgba(160, 179, 143, 0.8);
    /* cursor: pointer; */
    background-color: rgba(195, 218, 175, 0.4);
}

.photocontainer{
    width: 100%;
    display:grid;
    grid-template-columns: 1fr;
    padding: 6px 0px;
    cursor: pointer;
}
/* .photocontainer:hover .productphoto{
    opacity: 0;
} */

.bgphoto{
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    border: 1px solid rgba(160, 179, 143, 0.8);
    border-radius: 10px;
}
.productphoto{
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    border: 1px solid rgba(160, 179, 143, 0.8);
    border-radius: 10px;
    display: none;
    transition: opacity 250ms ease-in;
}

.deatileddescription{
    width: 100%;
    margin: 0 10px;
}

.dropdown{
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 80%;
}

.dropdown-content{
    display: none;
    /* display: block; */
    bottom: 50px;
    position: absolute;
    background-color: rgba(231, 244, 222, 1);
    min-width: 160px;
    width: 100%;
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 6px 6px;
    z-index: 1;
    cursor: pointer;
}

.showasblock {
    display: block;
}

.dropdownbtn{
    font-family: inherit;
    font-size: 14px;
    background: none;
    border: 1px solid rgba(160, 179, 143, 0.8);
    border-radius: 10px;
    height: 35px;
    margin: 3px 0;
    padding: 0px 10px;
    color: #000;
    width: 100%;
}
.dropdownbtn:focus {
    outline: none;
}
.dropdownbtn:enabled:hover{
    background-color: rgba(160, 179, 143, 0.8);
    cursor: pointer;
}
.dropdownbtn:enabled:active {
    background: rgba(160, 179, 143, 0.8);
}
.dropdownbtn:disabled{
    color: #888;
    border: 1px solid rgba(0,0,0,0);
}

.dropdownicon{
    float: right;
    border-left: 1px solid rgba(160, 179, 143, 0.8);
    padding-left: 5px;
    margin-left: 5px;
}

.addtobasketbutton{
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0 0 0;
}

@media only screen and (max-width:600px) {
    /* For mobile phones: */
    .prddetails{
        margin: 0;
        /* padding: 15px 0px; */
        border-radius: 0;
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }
}