*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    margin: 2% 1%;
}

.container .section{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

.container .section .left{
    width: 25%;
}

    .container .section .left .card-top{
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        font-size: 21px;
        padding: 9px 15px;
    } 

        
    .container .section .left .related-card{
        width: 100%;
        height: 75px;
        text-decoration: none;
        cursor: pointer;
        font-family: 'Roboto', sans-serif;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }
    .container .section .left .related-card-img{
        width: 40%;
        height: 75px;
        overflow: hidden;
    }
    .container .section .left .related-card-img img{
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .container .section .left .related-card-text{
        width: calc(60% - 10px);
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .container .section .left .related-card-text .related-card-top{
        font-size: 12px;
        font-weight: 600;
        color: black;
    }
    .container .section .left .related-card-text .related-card-top:hover{
        text-decoration: underline;
    }

    .container .section .left .related-card-text .related-card-body{
        font-size: 11px;
        color: rgb(175, 175, 175);
        margin-top: 6px;
    }
    .container .section .left .related-card-text .related-card-body:hover{
        text-decoration: underline;
    }
    .container .section .left .related-card-text .related-card-bottom{
        font-size: 11px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container .section .left .related-card-text .related-card-bottom .related-left{
        font-size: 11px;
        color: rgb(175, 175, 175);
    }
    .container .section .left .related-card-text .related-card-bottom .related-left:hover{
        color: rgb(175, 175, 175);
        text-decoration: underline;
    }
    .container .section .left .related-card-text .related-card-bottom .related-right span{
        font-size: 13px;
        padding: 6px 20px;
        border: 1px solid rgb(175, 175, 175);
        color: rgb(134, 134, 134);
        border-radius: 2px;
        font-stretch: expanded;
    }

.container .section .mid{
    width: 46%;
}
.container .section .mid .quesdetails{
    width: 100%;
}
.container .section .mid .quesdetails table{
    width: 100%;
}

.container .section .mid .quesdetails table,
.container .section .mid .quesdetails th,
.container .section .mid .quesdetails td{
    padding: 10px;
	border: 1px solid lightgray;
	border-collapse: collapse;
	text-align: center;
}

.container .section .mid .quesdetails td{
    font-size: 18px;
}

.container .section .mid .quesdetails table tr:nth-child(odd){
    background-color: lightblue;
}

.container .section .mid .quesdetails table tr:nth-child(even){
    background-color: #ededed;
}

.container .section .mid .quesdetails table th{
    background-color: blue;
	color: white;
}


.container .section .mid .imagebar{
    width: 100%;
    margin-top: 10px;
}
.container .section .mid .imagebar img{
    width: 100%;
    height: auto;
    overflow: hidden;
}


.commentBar .commentlist{
    margin: 20px 0;
}
.commentBar .commentlist h2{
    position: relative;
    color: black;
    font-weight: 500;
    margin-top: 0;
}

.commentBar .commentlist h2:before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 121px;
    height: 2px;
    background: red;
}

.commentBar .commentlist div:nth-child(2){
    margin-top: 20px;
}

.commentBar .commentlist div{
    margin: 12px 0;
    background: rgba(241,242,246,255);
    width: fit-content;
    padding: 4px 15px 6px 10px;
    min-width: 70%;
    border-radius: 6px;
}
.commentBar .commentlist div h3{
    font-size: 18px;
    font-weight: 700;
}
.commentBar .commentlist div p{
    margin-top: 2px;
    font-size: 15px;
    overflow-wrap: break-word;
    width: 100%;
}

.commentBar{
    margin-top: 5%;
    width: 100%;
}

.commentBar .underline{
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.commentBar .errmsg1, .container .commentBar .errmsg2{
    display: none;
    color: red;
}

.commentBar textarea{
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    resize: none;
    outline: none;
}

.commentBar textarea:focus{
    box-shadow: 0 0 5px 0 #4ca1af;
}

.commentBar .form{
    margin-top: 15px;
}

.commentBar .form .label{
    margin-top: 8px;
}

.commentBar .form input{
    width: 90%;
    max-width: 400px;
    padding: 5px;
    font-size: 16px;
    margin-top: 5px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.commentBar .form input:focus{
    box-shadow: 0 0 2px 0 black;
}

.commentBar .form h3{
    font-weight: 300;
}

.commentBar .replybtn{
    line-height: 90px;
    width: fit-content;
}

.commentBar .replybtn span{
    background: #0f3959;
    color: #fff;
    border: none;
    max-width: 160px;
    font-size: 20px;
    padding: 8px 50px;
    transition: 0.2s;
}

.commentBar .replybtn span:hover{
    cursor: pointer;
    opacity: 0.9;
}


@media screen and (max-width: 900px) {
    .commentBar{
        display: flex;
        flex-direction: column;
    }

    .commentBar input{
        width: 100%
    }
    
    .commentBar button{
        width: 100%;
        margin-top: 7px;
    }
}

.container .section .right{
    width: 25%;
}

.container .section .right .card-top{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 21px;
    padding: 9px 15px;
} 
    
.container .section .right .related-card{
    width: 100%;
    height: 75px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.container .section .right .related-card-img{
    width: 40%;
    height: 75px;
    overflow: hidden;
}
.container .section .right .related-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .section .right .related-card-text{
    width: calc(60% - 10px);
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.container .section .right .related-card-text .related-card-top{
    font-size: 13px;
    font-weight: 600;
    color: black;
}
.container .section .right .related-card-text .related-card-top:hover{
    text-decoration: underline;
}

.container .section .right .related-card-text .related-card-body{
    font-size: 13px;
    color: black;
}
.container .section .right .related-card-text .related-card-body:hover{
    text-decoration: underline;
}
.container .section .right .related-card-text .related-card-bottom{
    font-size: 14px;
    color: black;
}

.container .section .right .related-card-text .related-card-bottom:hover{
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
    .container .section{
        display: flex;
        flex-direction: column;
        justify-content: unset;
        width: 100%;
    }
    
    .container .section .left{
        width: 100%;
        margin-top: 30px;
    }
    .container .section .mid{
        width: 100%;
        order: -2;
    }
    .container .section .right{
        width: 100%;
        order: -1;
        margin-top: 20px;
    }
}

.bsn_weblink{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }
        .bsn_weblink .fa {
          padding: 10px;
          font-size: 18px;
          width: 100%;
          text-align: center;
          text-decoration: none;
          margin: 5px 2px;
          border-radius: 10px;
          color: white;
        }
        .bsn_weblink .fa:hover {
            opacity: 0.8;
        }
        .bsn_weblink .fa-whatsapp {
          background: #00c02d;
        }
        .bsn_weblink .fa-share {
          background: #0f0e13;
        }