.comment-card {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin: 150px auto 100px;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
}

.comment-content-title-body {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.comment-list {
    width: 90%;
    height: auto;
    padding: 2% 3%;
    margin: 1% auto;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 10px;
    text-align: right;
}

.hidden-comment {
    display: none;
}

.comment-content {
    font-family: "KalamehRegular";
    color: #fff;
}

.comment-author-details {
    font-family: "KalamehRegular";
    color: #f9906f;
}

.more-comments {
    width: 220px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'KalamehRegular';
    font-size: .9rem;
    margin: 2% auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.more-comments i {
    font-size: 1.2rem;
    transform: rotate(-90deg);
}

.more-comments:hover>i {
    transform: rotate(0deg);
}

.comment-signup-btn {
    position: relative;
    width: 250px;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "KalamehMedium";
    margin: 50px auto;
    z-index: 999;
}

.comment-form {
    position: relative;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}

.comment-details {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.comment-details input {
    width: 49.5%;
    height: 40px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 2%;
    margin: 0 0 1%;
}

.comment-comment {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 2%;
}

.comment-btn {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 20px 0;
}

.comment-signup-btn:active,
.comment-btn:active {
    transform: scale(.9);
}

.comment-error {
    width: 100%;
    height: 30px;
    margin: auto;
    background-color: red;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
}