.filter-button-group {
    display: flex;
    width: 100%;
}

.info-box {
    width: 15rem;
    height: 5rem;
    margin-top: 1rem;
    background: #26275f;
    border-radius: 10px;
    padding: 0.5rem;
    position: relative;
    clip-path: inset(0% 17% 70% 0% round 10px);
    transition: clip-path 450ms ease-in, background 450ms ease-in;
}

.info-box .info-box-mark {
    font-family: Segoe UI;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0rem;
    left: 0.25rem;
    width: 80%;
    height: 2rem;
    transition: color 450ms linear;
    z-index: 2;
}

.info-box .info-box-mark i {
    color: #fff;
}

.info-box .info-box-content {
    padding-top: 0.5rem;
    line-height: 1.7rem;
    color: #ffffff;
}

.group-part-sonuc-elements {
    width: 100%;
    box-sizing: border-box;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.kafile-alt-bilgi {
    width: 100%;
    gap: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 5%;
}


.comments-main {
    margin: 0 auto;
    width: 70%;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comments-main h2 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 35px;
}

.comments {
    width: 95%;
    min-height: 130px;
    transition: all 1s ease;
    animation: fadeEffect 0.6s ease;
    position: relative;
}

.comments .comment_header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 10px;
    align-items: center;
}

.comments .comment_header .total {
    color: #777777;
    font-size: 14px;
}

.comments .comment_header .write_comment_btn {
    margin: 0;
}

.comments .write_comment {
    display: none;
    padding: 20px 0 10px 0;
}

.comments .write_comment input {
    display: block;
    width: 250px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

.comments .write_comment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 150px;
    margin-top: 10px;
}

.comments .write_comment button {
    cursor: pointer;
}

