#principal_section{
    margin-top: 3em;
}
/*--------------------Product img-desc--------------------*/
#product_productBox{
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
    height: 30%;
}

#product_imageBox{
    margin:0 0 2em 0;
    width: 95%;
}

#imgProduct{
    width: 100%;   
}

#product_descBox{
    width: 95%;
}

#product_title{
    border-bottom: 1px solid lightgray;
}

#product_title h1{
    margin: 1%;
   
}
/*--End product img-desc--*/

/*-------------------Info section----------------------*/
/*-------------Container style---------------*/
.container{
    width: 100%;
    height: 60%;
}
.container .ul{
    width: 100%;
    display:flex;
    flex-flow: column nowrap;
    padding-left: 0;
    margin:0;
    border-bottom: lightgray 1px solid;
}
.container .li{
    list-style: none;
    padding: 1em;
    transition: all .5s ease;
    border-radius: 10px 10px 0 0;
}
.container .li.active{
    background-color: #3688a8;
    color: aliceblue;
}
.container .li:hover{
    cursor: pointer;
}.container .li:hover{
    cursor: pointer;
}

.container .subcont{
    min-height: 20vh;
    padding: 1em;
}
.container .block{
    display: none;
    transition: all .5s ease;
}

.container .block.active{
    display: flex;
    flex-direction: column;
}
/*--End container style--*/

/*----------Specifications block----------*/
.block_size{
    min-height: 20vh;
    margin-top: 2em;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.block_item{
    width: 95%;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-top: 2px solid #3688a8;
    border-bottom: 2px solid #3688a8;
}
.block_item.center{
    justify-content: center !important;
}
.titleItem{
    width: 100%;
    display: flex;
    align-items: center;
}

.titleItem a{
    text-decoration: none;
    font-weight: bold;
    margin: 2%;
}
.titleItem p{
    font-weight: bold;
}

/*--------Specifications table-------*/
table{
    width: 96%;
    margin: 2%;
}
table, td{
    padding: 2% 1%;
}
table, td{
    border-bottom: 1px solid lightgray;
    border-collapse: collapse;
}
table .col1{
    width: 70%;
}
table .col2{
    width: 30%;
}
/*--End specifications table--*/
/*--End specifications block--*/


/*--------Versions section *for accessories-------*/
.block_versionItem{
    width: 90%;
    border-top: 2px solid #3688a8;
    border-bottom: 2px solid #3688a8;
    margin-bottom: 2em;
}
.block_versionItem img{
    width: 100%;
}
/*--End versions section--*/

/*--------Map section-------*/
.block_mapItem{
    width: 95%;
    margin-bottom: 2em;
}
.block_mapItem img{
    width: 100%;
}
/*--End map section--*/

/*----------Accessories----------*/
.block_accessories{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product_itemLink{
    width: 100%;
    min-height: 200px;
    padding: 0.5em;
    margin:2%;

    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    border-top: 2px solid #3688a8;
    border-bottom: 2px solid #3688a8;
    transition: 500ms ease-in-out;
}
.product_itemLink:hover{
    background-color: aliceblue;
    transition: 500ms ease-in-out;
}

.product_img{
    width: 40%;
    margin: 0;
    display: flex;
    align-items: center;
}
.product_img img{
    width: 100%;
}

.product_text{
    width: 50%;
    
}
.product_title h4{
    margin: 0em 0em 1em 0em;
}
.product_desc{
    margin: 0;
}
/*--End accessories--*/
/*--End info section--*/

/*--------------------------Media queris----------------------------*/
/*Medium screens (tablets larger than 768px)*/
@media screen and (min-width:768px) {
    #principal_section{
        margin-top: 2em;
    }

    #product_productBox{
        display: flex;
        flex-direction: row;
        align-items:start;
        justify-content: space-between;
        margin: 2em 0 1em 0;
    }
    #product_imageBox{
        margin:0;
        width: 55%;
    }
    #product_descBox{
        width: 40%;
    }

    /*-------------------Info section----------------------*/
    /*-------------Container style---------------*/
    .container .ul{
        flex-flow: row nowrap;
        align-items: center;
    }

    .container .block.active{
        display: flex;
        flex-direction: row;
    }
    .block_item.col1{
        width: 60% !important;
    }
    .block_item.col2{
        width: 30% !important;
    }

    /*--End container style--*/

    /*--------Versions section *for accessories-------*/
    .block_versionItem{
        width: 30%;
    }
    /*--End versions section--*/

    /*--------Map section-------*/
    .block_mapItem.col1{
        width: 60% !important;
    }
    .block_mapItem.col2{
        width:40% !important;
    }
    .block_mapItem.col3{
        width:30% !important;
    }
    /*--End map section--*/

    .product_itemLink{
        width: 43%;
    }
}