.emojibox__container {

    display: block;
    width: 100%;
    max-width: 354px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;

}

.emojibox__content {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

}

.emojibox__emoji {

    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    max-width: 100%;
    height: 56px;
    text-align: center;
    border-radius: 50%;

}

.emojibox__emoji + .emojibox__texts {

    margin: 0 16px;

}

.emojibox__texts {

    flex: 1 1 100%;
    color: var( --primary );

}

.emojibox__texts .text--overline {

    font-weight: 600;
    font-size: 15px;

}

.emojibox__texts .text--title {

    font-size: 16px;

}

/* Effects */
.emojibox__container.shadow {

    box-shadow: 0 16px 24px var( --emojibox-shadow-color );

}

/* Groups, N.B.: Class added to the father */
.emojibox__group .emojibox__container:last-child {

    margin-right: 0;

}

/* Column */
.emojibox__container.column {

    max-width: 100%;
    margin-right: 0;
    text-align: left;

}

.emojibox__container.column .emojibox__content {

    flex-direction: column;
    align-items: start;
    padding-bottom: 75px;

}

.emojibox__container.column .text--overline {

    margin: 22px 0;

}

/* Mobile first */
@media ( min-width: 769px ) {

    .emojibox__content {

        flex-direction: row;
        flex-wrap: nowrap;
        text-align: left;

    }

    .emojibox__texts .text--overline {

        font-size: 20px;

    }

}
