

/*--------------------------------------------------------------------------------*/

.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 20px;

    border-bottom: 1px solid #ccc;
}

    .store-voice-item {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

        .store-voice-item-title {
            color: #5c9f55;
            font-size: 20px;

            border-bottom: 1px solid #ccc;

            margin-bottom: 10px;
        }

        .store-voice-item-image-container {
            width: 100%;

            margin-bottom: 10px;
        }

            .store-voice-item-image-container img {
                width: 100%;
                height: 100%;
            }

        .store-voice-item-detail {
            word-wrap: anywhere;
        }




/*--------------------------------------------------------------------------------*/
.store-voice-bottom-navigation {
    background-color: #fff;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    
    padding: 10px 20px;

    margin-bottom: 5px;
}

    .store-voice-bottom-navigation-item {
        display: flex;
        flex-direction: row;

        font-size: 15px;

        flex-shrink: 0;
        flex-basis: 100px;
    }
        .store-voice-bottom-navigation-item-only-text {
            flex: 1 0 auto;
            justify-content: center;
        }

        .store-voice-bottom-navigation-item img {
            margin: 4px 5px 0px 5px;
            height: 16px;
        }

