.comments-section{
    width: 100%;
    box-shadow: 4px 4px 4px 0px #6C6AED4D;
    border-radius: calc(var(--dimension-ratio)*12px);
    gap: calc(var(--dimension-ratio)*100px);
    margin: auto;
}
.course-comments-header{
    margin-inline-start: calc(var(--dimension-ratio)*50px);
    margin-top: calc(var(--dimension-ratio)*50px);
    margin-bottom: 0px;
}

.society-video{
    width: calc(var(--dimension-ratio)*1050px);
    height: calc(var(--dimension-ratio)*528px);
}

.comments-container{
    overflow: auto;
    max-height: 1500px;
}


.comments-container::-webkit-scrollbar {
    width: calc(var(--dimension-ratio)*12px); 
    height: calc(var(--dimension-ratio)*12px); 
}

.comments-container::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color); 
    border-radius: 6px; 
}

.comments-container::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 6px;
}

.comments-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--separator-color); 
}

.reply-container::-webkit-scrollbar {
    width: calc(var(--dimension-ratio)*12px); 
    height: calc(var(--dimension-ratio)*12px); 
}

.reply-container::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color); 
    border-radius: 6px; 
}

.reply-container::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 6px;
}

.reply-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--separator-color); 
}

.reply-container{
    overflow: auto;
    max-height: 900px;
}

.comment-box {
    background-color: var(--opinion-background-color);
    border-radius: calc(var(--dimension-ratio)*16px);
    width: 95%;
    margin-top:calc(var(--dimension-ratio)*40px);
    height:calc(var(--dimension-ratio)*88px);
}

.comment-box button {
    width: calc(var(--dimension-ratio)*118px);
    height:60%;
    background-color: var(--main-color);
    color:var(--light-color);
    border-radius: calc(var(--dimension-ratio)*16px);
    cursor: pointer;
}

.comment-input{
    width: 85%;
}

.comment-box input {
    height:calc(var(--dimension-ratio)*70px);
    border: none;
    background: none;
    color: var(--sub-secondary-color);
    padding: calc(var(--dimension-ratio)*7px);
}  

.comment-box input:focus {
    outline: none;
}

.comment-separator{
    border-bottom: 1.5px solid var(--separator-light-color);
    width: 100%;
    margin-top: calc(var(--dimension-ratio)*50px);
}

.comment-container {
    border-bottom: 2px solid var(--separator-light-color);
    background-color: var(--light-color);
    padding: calc(var(--dimension-ratio)*50px);
    gap: calc(var(--dimension-ratio)*20px);
    width: 90%;
}

.comment-header {
    color: var(--secondary-color);
}

.comment-body {
    color: var(--secondary-color);
    width: 95%;
}

.comment-footer {
    color: var(--secondary-color);
    width: 95%;
    display: flex;
    align-items:center;
    justify-content: start;
    gap: calc(var(--dimension-ratio)*20px);
}

.comment-footer span {
    cursor: pointer;
}

.reply-container{
    width: calc(var(--dimension-ratio)*1277px);
}

.show-more{
    color: var(--secondary-color);
    width: 95%;
    height: calc(var(--dimension-ratio)*70px);
    display: flex;
    justify-content: start;
    align-items: center;
}

.show-more p{
    cursor: pointer;
}

@media (max-width: 635px) {
    .comments-section {
        width: 85% !important;
        gap: 0px;
        border-radius: 6px;
    }
    .comment-box {
        height: 36px;
        border-radius: 9px;
    }
    .comment-box input {
        font-size: 13px;
    }
    .comment-input{
        width: 65%;
    }
    .comment-box button {
        font-size: 14px;
        border-radius: 7px;
        width: 59px;
        height: 67%;
    }
    .comment-header{
        font-size: 11.5px;
        line-height: 11px;
    }
    .comment-body{
        font-size: 10px;
        line-height: 13px;
    }
    
    .comment-footer {
        gap: 12px;
    }
    .comment-footer span {
        font-size: 11px;
        line-height: 18px;
    }
    .comment-container {
        border-bottom: 1px solid var(--separator-light-color);
        gap: 9px;
    }
    .show-more p {
        font-size: 9px;
    }
}


