.post-description
{
    font-size: 25px;
    padding: 10px;
    background-color: burlywood;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 20px;
}

.post-name
{
    margin-bottom: 20px;
}

.post-image
{
    text-align: center;
    margin-bottom: 20px;
}

.opinions-block
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.opinion-block
{
    padding: 10px;
    color: #fff;
    width: 32%;
    border-radius: 5px;
    background-size: contain;
}

.hate-block
{
    background-color: brown;
}

.neutral-block
{
    background-color: grey;
}

.love-block
{
    background-color: green;
}

.opinion-action
{
    border: 1px solid;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    opacity: .5;
    transition: all .5s;
    cursor: pointer;
    border-radius: 5px;
}

.opinion-action:hover
{
    opacity: 1;
}

.hate-block .opinion-action
{
    background-color: #ff0000;
}

.neutral-block .opinion-action
{
    background-color: silver;
}

.love-block .opinion-action
{
    background-color: yellowgreen;
}

.opinion-block-title
{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.empty-opinion-block
{
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.new-opinion-title
{
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.opinion-select-block
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.opinion-select
{
    border-radius: 10px;
    padding: 10px;
    opacity: .5;
    box-sizing: border-box;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    font-size: 20px;
    width: 32%;
    transition: opacity .5s;
}

.opinion-select:hover
{
    opacity: 1;
}

.opinion-select.select
{
    border: 3px dashed yellow;
    opacity: 1;
    cursor: default;
}

.opinion-select-love
{
    background-color: green;
}

.opinion-select-neutral
{
    background-color: grey;
}

.opinion-select-hate
{
    background-color: brown;
}

textarea[name="answer_content"]
{
    flex: 1;
    resize: none;
}

.opinion-block-item-user-name
{
    font-weight: bold;
    font-size: 20px;
}

.opinion-block-item-user
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.opinion-block-item
{
    padding: 20px 10px;
    box-sizing: border-box;
    font-size: 18px;
}

.opinion-block-item-content
{
    border-bottom: 3px dashed;
    padding-bottom: 20px;
    word-break: break-word;
}

.opinion-block-item-date
{
    text-align: center;
    font-size: 20px;
    margin: 10px 0;
}

.option-block-item-user-block
{
    text-align: center;
}

.hate-block.opinion-block
{
    background-image: url('/public/img/system/hate.png');
}

.love-block.opinion-block
{
    background-image: url('/public/img/system/love.png');
}

.neutral-block.opinion-block
{
    background-image: url('/public/img/system/neutral.png');
}

.post-creater
{
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

.post-creater-title
{
    margin-right: 15px;
}

.post-create-date
{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 50px;
}

.already-vote
{
    font-size: 25px;
    margin: 25px 0;
}

.already-vote-text
{
    line-height: 1.5;   
}

.delete-opinion-text
{
    cursor: pointer;
}

.prev-delete-opinion
{
    margin: 20px 0; 
    display: inline-block;
}

.not-delete-opinion
{
    display: inline-block;
}

.answer-content-counter
{
    margin: 15px 0;
    font-weight: bold;
}

.opinions-toggle
{
    display: none;
}

.opinion-toggle-item
{
    text-align: center;
    font-size: 25px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    border: 1px dashed #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #fff;
    justify-content: center;
}

.opinion-toggle-item-hate
{
    background-color: brown;
}

.opinion-toggle-item-love
{
    background-color: green;
}

.opinion-toggle-item-neutral
{
    background-color: grey;
}

.opinion-toggle-next
{
    border-left: 1px dashed #fff;
    padding-left: 5px;
}

.opinion-toggle-prev
{
    border-right: 1px dashed #fff;
    padding-right: 5px;
}

.opinion-toggle-text
{
    margin: 0 10px;
}

.opinions-count-block
{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

.opinion-line
{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.opinion-hate-line
{
    background-color: rgba(165,42,42,.5);
    border: 2px dashed rgb(165,42,42);
}

.opinion-neutral-line
{
    background-color: rgba(128,128,128,.5);
    border: 2px dashed rgb(128,128,128);
}

.opinion-love-line
{
    background-color: rgba(0,128,0,.5);
    border: 2px dashed rgba(0,128,0,.5);
}

.opinions-line-block
{
    width: 880px;
    max-width: 95%;
    margin: 0 auto 20px;
    display: flex;
}

.comment-action-trigger
{
    margin-top: 25px;
    font-size: 20px;
}

.comment-form textarea
{
    width: 100%;
}

.comment-counter
{
    background-color: rgba(0,0,0,.7);
    padding: 10px;
}

.comment-buttons
{
    margin-top: 20px;
    display: flex;
}

.comment-buttons .button-ok
{
    margin-right: 25px;
}

.opinion-block-item-content .slider-toggle
{
    margin-top: 20px;
}

.opinion-block-item-content .slider-toggle .slider-line
{
    background-color: #fff;
}

.opinion-block-item-content .slider
{
    background-color: rgba(0,0,0,.7);
    padding: 10px;
    margin-top: 10px;
}

.comment-item-user, .comment-item-date
{
    text-align: center;
}

.comment-item-user
{
    margin-top: 10px;
}

.comment-item-date
{
    margin: 10px;
}

.comment-item-text
{
    margin: 15px 0;
}

.comment-item-user a
{
    color: #fff;
}

.comment-item
{
    padding: 10px 0;
    border-bottom: 1px dashed;
}

.comments-list .comment-item:last-child
{
    border-bottom: none;
}

.delete-comment-trigger
{
    text-align: center;
    font-weight: bold;
    margin: 10px 0 20px;
    cursor: pointer;
}

.delete-comment-trigger span
{
    margin-right: 15px;
}

.delete-comment-buttons
{
    display: flex;
    margin: 20px 0 25px;
    justify-content: center;
}

.delete-comment-buttons .button-cancel
{
    margin-right: 10px;
}

.delete-comment-buttons .button
{
    padding: 5px;
    font-size: 17px;
}

.delete-comment-agree
{
    text-align: center;
}

.post-category-info-block
{
    text-align: center;
}

.post-category-info
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.post-category-info-text
{
    margin-right: 5px;
}

.post-category-info-image img
{
    width: 50px;
    height: 50px;
}

.answer-image
{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border: 1px dashed #fff;
    box-sizing: border-box;
    background-color: rgba(180,180,180,.7);
}

.answer-image img
{
    max-width: 200px;
    margin-right: 15px;
}

.success-youtube-link
{
    color: green;
}

.error-youtube-link
{
    color: #ff0000;
}

.youtube-link-success-informer
{
    margin: 20px 0;
    font-weight: bold;
}

.youtube-video
{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border: 1px dashed #fff;
    background-color: rgba(180,180,180,.7);
}

.yotube-video-title
{
    margin: 20px 0;
    flex: 1;
    min-width: 300px;
}


.youtube-video-image-comment::after
{
    background-color: rgba(0,0,0,.2);
}

.youtube-modal-video
{
    width: 80vw;
    aspect-ratio: 16/9;
    max-height: 70vh;
    margin: 0 auto;
}

.answer-image-informer
{
    margin: 20px 0;
}

.comment-yotube-video-add-buttons-block
{
    width: 100%;
    margin: 20px 0;
}

.comment-yotube-video-add-buttons-block>div
{
    display: inline-block;
}

.youtube-link-success-informer-comment
{
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

@media (max-width: 1099px)
{
    .post-image img
    {
        max-width: 100%;
    }

    .opinion-block
    {
        width: 100%;
    }

    .opinions-toggle
    {
        display: block;
    }

    .opinion-select
    {
        width: 100%;
        margin-bottom: 20px;
    }

    textarea[name="answer_content"]
    {
        width: 100%;
        flex: auto;
    }
}