﻿
.hidden {
    display: none !important;
}

.cursor-wait {
    cursor: wait !important;
}

.comment-deletion-modal {
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 14;
}

.comment-delete-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 12px;
    text-align: right;
    background-color: var(--primary-color-reflection);
}

    .comment-delete-button > span {
        text-transform: capitalize;
    }

.comment-interaction-bar {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    align-self: end;
}

.comment-interaction-text {
    font-size: 12px;
    color: black;
}

.comment-interaction-symbol {
    color: gray;
}

@keyframes comment-interaction-text-filling {
    to {
        color: var(--primary-color);
    }
}

.comment-interaction-button:hover > div {
    animation-name: comment-interaction-text-filling;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.comment-interaction-button-touch-screen {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none;
    justify-content: center;
    display: flex;
    width: auto;
   
    cursor: pointer;
    display: flex;
    column-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    color: gray;
    line-height: 30px;
}


.comment-interaction-button {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none;
    justify-content: center;
    display: flex;
    width: auto;
   
    cursor: pointer;
    display: flex;
    column-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    color: gray;
    line-height: 30px;
}

.comment-interaction-holder {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.comment-instruction-text-author-email::before {
    content: "*"
}

.comment-instruction-text-author-email {
    font-size: 12px;
    color: darkred;
}

.sub-comment-interaction-holder {
    background: var(--primary-color-reflection);
    display: flex;
    flex-direction: column;
}

.sub-comment-left-author-block {
    display: flex;
    justify-content: flex-end;
}

.sub-comment-button {
    color: black;
    width: auto;
}

    .sub-comment-button > div {
        font-size: 11px !important;
        line-height: 11px !important;
    }

.sub-comment-sent-on {
    width: auto;
    text-align: right;
    font-style: italic;
}

.sub-comment-author-name {
    overflow-wrap: anywhere;
}

.sub-comment-content {
    padding: 10px;
    
}

.sub-comment-header {
    background-color: #e6e6e6;
    padding: 10px;
   
    font-size: 11px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.sub-comment-section {
    color: black;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    border: 1px solid #e6e6e6;
    margin-left: 20px;
    font-size: 12px;
}

.comment-header-block {
    column-gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #e6f8ff;
    padding: 10px;
}

.comment-author-block {
    overflow-wrap: anywhere;
    display: flex;
    flex-direction: column;
}

.comment-section {
    overflow-wrap: anywhere;
    background-color: var(--primary-color-reflection);
    padding: 10px;
    font-size: 14px;
    
}

.comment-author-name {
    font-size: 14px;
   
}

.comment-author-email {
    font-size: 12px;
   
}

.comment-like-response-container {
    width: 100%;
    justify-content: flex-end;
    display: flex;
}

.comment-block-container {
    color: var(--primary-hover);
    
    border: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    width: 98%;
}

.comment-list-under-container {
    padding-bottom: 10px;
    margin: 20px 10px 20px 10px;
    row-gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comment-block-right-container {
    display: flex;
    flex-direction: column;
}

.comment-sent-date {
   
    align-self: flex-end;
    font-size: 12px;
    font-style: italic;
}

.comment-deletion-author-input {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    padding-left: 5px !important;
    
    width: 100%;
    font-size: 16px;
    padding: 0;
    height: 95%;
    border: none;
    border-radius: 10px;
}

.comment-modal-delete-button {
    text-transform: capitalize;
    font-size: 16px;
    
}

.comment-deletion-text-box-title {
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
   
}

.comment-deletion-author-input-border {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px var(--primary-color) solid;
    color: var(--primary-color);
    height: 40px;
    width: 100%;
}

.comment-deletion-box {
    background-color: var(--primary-color-reflection);
    left: 25%;
    width: 50%;
    top: 50%;
    opacity: 100;
    position: relative;
    padding: 20px;
    display: flex;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
}

.comment-deletion-background {
    opacity: 0.2;
    background-color: black;
    position: absolute;
    width: 100%;
    height: 100%;
}

.comment-deletion-closing {
    align-self: flex-end;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.comment-deletion-highlighted-text {
    text-decoration: underline !important;
    color: darkred !important;
}

.comment-deletion-highlighted-input {
    border: 1px solid darkred !important;
}

.comment-deletion-instruction-text {
    color: darkred;
    font-size: 12px;
    width: 100%;
    font-style: italic;
}
@keyframes comment-interaction-text-filling {
    to {
        color: var(--primary-color);
    }
}

.comment-interaction-button:hover > div {
    animation-name: comment-interaction-text-filling;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}