.ticket {
    &-message {
        padding: .5rem 0;
        border-bottom: 1px solid $gray-300;

        &-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: .3rem;
        }

        &-name {
            display: flex;
            align-items: center;

            span {
                margin-left: .2rem;
            }
        }

        &-images {
            display: flex;
            margin-top: .5rem;

            a {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 50px;
                width: 50px;
                padding: .5rem;
                border: 1px solid $gray-300;
                border-radius: $border-radius;
                margin-right: .5rem
            }
        }

        &:last-child {
            border-bottom: 0;
        }
    }

    &-images {
        display: flex;
        margin-top: .5rem;

        a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            padding: .5rem;
            border: 1px solid $gray-300;
            border-radius: $border-radius;
            margin-right: .5rem
        }
    }
}
