* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
    /* 
    header {
        background-color: #acacac;
    } */

header ul li {
    background-color: rgba(248, 44, 44, 0.5);

}
img{
    width: 100%;
}

.wrapper {
    width: 90%;
    margin: auto;
    text-align: left;
    margin-top: 9rem;
    display: grid;
    grid-template-columns: 40% 60%;
    padding-bottom: 100px;
}

.product-title {
    color: #8E8E8E;
    font-size: 7vh;
    font-weight: 600;
    line-height: 1;
}

.gallary-wrapper {
    grid-column: 1/2;
    grid-row: 1/7;
    padding-right: 20px;
}

.product-sciname {
    margin-top: 10px;
    color: rgba(142, 142, 142, 0.77);
    font-size: 4vh;
    font-weight: 400;
    line-height: 1;
}

.product-plantfamily {
    margin-top: 10px;
    color: rgba(142, 142, 142, 0.87);
    font-size: 3.5vh;
    font-weight: 500;
    font-style: italic;
    line-height: 1;

}

.product-tags {
    margin: 20px 0px;
}

.type {
    color: #ffffff;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 15px;
    background-color: rgba(15, 184, 0, 0.8);
    text-decoration: none;
    margin-right: 10px;
}

.rooted {
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 15px;
    background-color: #8E8E8E;
    text-decoration: none;
}

.product-description p {
    color: #4e4e4e;
    padding-left: 20px 0px 20px 0px;
    text-align: left;
    font-size: 2.5vh;
}

.contact-btn {
    text-align: center;
    align-self: center;
    color: #ffffff;
    font-size: 16px;
    padding: 8px 0px;
    border-radius: 5px;
    background-color: rgba(15, 184, 0, 0.8);
    text-decoration: none;
}

@media (max-width: 700px) {
    .wrapper {
        margin-top: 10vh;
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 30px;
        line-height: normal;
    }

    .gallary-wrapper {
        margin: 10px 0px;
        grid-column: auto;
        grid-row: auto;
    }

    .product-sciname {
        font-size: 24px;
    }

    .product-plantfamily {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0px;
    }

    .product-description p {
        padding: 10px 0px;
    }
    .product-description p {
        font-family: 'Open Sans', sans-serif;
        padding-left: 20px 0px 20px 0px;
        text-align: left;
    }
}

/* Modal CSS */
/* Modal - Image Full Height show */
.modal
{
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-out;
    z-index: 5;
}

.arrow
{
    height: 50px;
    position: absolute;
    transition: all 0.5s ease;
    z-index: 10;
}

#prv-btn
{
    /* inset: 0;
    margin: auto; */
    /* transform: translate(40vw, -45vh); */
    transform: translate(-42vw, 45vh);
}

#nxt-btn
{
    transform: translate(38vw, 45vh);

}

.modal.open
{
    opacity: 1;
    pointer-events: all;
}

.full-img
{
    position: absolute; 
    height: 80%;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.25s ease-out;
}

.full-img.open
{
    transform: translate(-50%, -50%) scale(1);
}

.outer-box
{
    position: absolute; 
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.25s ease-out;
    display: none;
}

.modal p
{
    text-align: center;
    width: 70%;
    color: rgb(209, 209, 209);
    font-weight: 500;
    font-size: 20px;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -5%);
}

@media (max-width: 700px) 
{
    .full-img
    {
        height: auto;
        width: 90%;
    }

    .outer-box
    {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        height: auto;
        width: 90vw;
    }

    
    #prv-btn
    {
        display: none;
    }

    #nxt-btn
    {
        display: none;
    }
}