
/*
  --------------- Product Panel[left side] Section from Header ------------------------
*/

section {
  position: relative;
  padding-bottom: 5%;
  margin-right: 5%;
}

#title {
    position: relative;
    top: -4%;
    width: 100%;
}

.product {
    display: flex;
    position: relative;
    justify-content: center;
    padding-bottom: 2%;
}

    .product b {
        font-size: 3rem;
        color: #780422;
        align-content: center;
        margin-right: 1%;
        margin-left: 1%;
    }

.product-detail {
    position: relative;
    display: flex;
    justify-content: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 2%;
    padding-bottom: 10%;
}

.product-yt {
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.product-yt a img {
    display: block;
    width: 40vw;
    height: calc(40vw * 0.5625);
}

.deco {
    z-index:-1;
}

.product-detail .deco {
    position: absolute;
    top: 80%;
    left: -8%;
}

.separator {
    position:relative;
    background-color:grey;
    width:0.5%; 
    height:auto;
}

.product-desc {
    font-size: 1.3rem;
    color: black;
}

.product-desc img {
    width: 80%;
}


@media print, screen and (orientation: portrait) {
    .product {
    }
    .product-detail {
        display: block;
    }
    .product b {
        font-size: 1.2rem;
    }
    .product-yt a img {
        width: 80vw;
        height: calc(80vw * 0.5625);
    }
    .product-detail .deco {
        width: 40vw;
    }
    .product-desc {
        margin-top: 20%;
    }
}