

/*--------------------------------------------------------------------------------*/

.store_voice-top-container {
    background-color: #5c9f55;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px 15px;

    height: 100px;
}

    .store_voice-top-content {
        display: flex;
        flex-direction: row;
        gap: 4px;
        justify-content: flex-start;

        height: 26px;
    }

        .store_voice-top-icon {
            margin-top: 2px;
            height: 26px;
        }
            .store_voice-top-icon img {
                height: 100%;
            }

        .store_voice-top-text {
            color: #fff;

            font-size: 20px;
            font-weight: 600;
        }




/*--------------------------------------------------------------------------------*/
.store-voice-container {
    background-color: #fff;
    
    display: block;
    
    padding: 10px 0px;
}

    .store-voice-item {
        display: flex;
        flex-direction: row;
        gap: 10px;

        margin: 10px 40px;
    }
        .voice-left {
            width: 80px;
            min-width: 80px;

            display: flex;
            flex-direction: column;
            gap: 10px;
        }

            .voice-left-date {
                font-size: 12px;
                font-weight: 500;
            }
            .voice-left-image {
                
            }
                .voice-left-image img {
                    width: 100%;
                }


        .voice-right {
            flex-grow: 1;

            display: flex;
            flex-direction: column;
            gap: 10px;
        }
            .voice-right-top {

            }
                .voice-right-border {
                    border-top: 1px solid #A6A294;
                    margin-top: 10px;
                }

            .voice-right-content {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
                .content-right-title {
                    color: #5A9F4E;
                    font-weight: 600;
                }

                .content-right-value {
                    display: block;
                    font-size: 12px;

                    overflow-wrap: anywhere;
                }



/*--------------------------------------------------------------------------------*/
.pagination-container {
    background-color: #fff;
    
    display: flex;
    flex-direction: row;
    gap: 3px;
    justify-content: center;
    align-items: flex-start;
    
    padding: 10px 0px;
}

    .pagination-item {
        display: flex;
        flex-direction: row;

        padding: 0px 12px;
    }

        .pagination-item.active {
            color: #5A9F4E;
        }

        .pagination-item img {
            height: 14px;
            margin-top: 5px;
        }