.detail-user-photo-block
{
    text-align: center;
    margin: 30px 0;
}

.detail-user-photo-block img
{
    border-radius: 10px;
    border: 3px dashed #000;
}

.detail-user-field
{
    font-size: 30px;
    margin-bottom: 15px;
}

.detail-user-field span
{
    font-weight: bold;
}

.user-detail-posts
{
    display: flex;
    flex-wrap: wrap;
}

.user-detail-post
{
    width: 10%;
    margin-right: 20px;
    margin-bottom: 20px;
    background-color: silver;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: all .5s;
    font-size: 25px;
    text-align: center;
    text-decoration: none !important;
    justify-content: center;
    display: flex;
    align-items: center;
}

.user-detail-post:hover
{
    background-color: yellowgreen;
}

.user-detail-answer
{
    display: block;
    text-decoration: none !important;
    margin: 20px 0;
    color: #fff;
    font-size: 22px;
    background-color: silver;
    transition: all .5s;
    padding: 10px;
    word-break: break-word;
}

.user-detail-answer:hover
{
    background-color: yellowgreen;
}

.user-answer-item
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.user-answer-item-inner
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    border: 2px solid;
    box-sizing: border-box;
    margin: 25px 0;
}

.answer-type-hate
{
    border-color: #ff0000;
}

.answer-type-neutral
{
    border-color: grey;
}

.answer-type-love
{
    border-color: green;
}

.user-detail-answer-delimer
{
    margin: 0 20px;
    font-size: 22px;
}

.empty-detail-user-items
{
    font-size: 25px;
    font-weight: bold;
    color: #ff0000;
}

.flex-user-sex-block
{
    display: flex;
    align-items: center;
}

.flex-user-sex-block span
{
    margin-right: 5px;
}

.delete-avatar-accept-block-trigger
{
    display: inline-block;
}

.delete-avatar-accept-buttons
{
    display: flex;
}

.delete-avatar-accept-buttons .button-ok
{
    margin-right: 10px;
}

.last-auth
{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.exit-other-block
{
    margin: 50px 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.exit-other-agreement
{
    width: 100%;
    text-align: center;
}

.exit-other-buttons
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.exit-other-text
{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0;
}

.exit-other-buttons .button-ok
{
    margin-right: 20px;
}

.dialog-link-block
{
    margin-bottom: 25px;
    text-align: center;
}

.dialog-link
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.dialog-link-block img
{
    max-width: 80px;
    margin-right: 20px;
}

.user-answer-preview-image
{
    display: block;
    max-width: 200px;
    margin-top: 20px;
}

.user-answer-preview-youtube-video
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1099px)
{
    .user-detail-post
    {
        width: 100%;
    }

    .user-answer-item
    {
        margin-bottom: 50px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #000;
    }
}