html
{
    min-height: 100vh;
}

body, html
{
    padding: 0;
    margin: 0;
}

body
{
    background: linear-gradient(to bottom, antiquewhite, burlywood);
    background-repeat: no-repeat;
}

.logo-block
{
    padding: 10px;
}

.logo-block-inner
{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #000;
}

.logo img
{
    max-width: 100px;
    border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
}

.site-name
{
    font-size: 60px;
    font-weight: bold;
    margin-left: 50px;
}

.red-text
{
    color: #ff0000;
}

.brown-text
{
    color: brown;
}

.green-text
{
    color: green;
}

.silver-text
{
    color: silver;
}

.grey-text
{
    color: grey;
}

.contact-block-item img
{
    max-width: 35px;
    margin-right: 15px;
}

.contact-block-item
{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
}

.contact-block
{
    margin-right: 30px;
}

.site-link
{
    color: blue;
    text-decoration: none !important;
    transition: all .3s;
    cursor: pointer;
    font-weight: bold;
}

.site-link:hover
{
    color: blueviolet;
}

.copyright
{
    font-weight: bold;
    font-size: 25px;
}

.about-project-link
{
    font-size: 25px;
}

.user-block
{
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 2;
    font-size: 17px;
    font-weight: bold;
}

.page
{
    padding: 20px;
    box-sizing: border-box;
}

.form-field
{
    margin: 20px 0;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-field input, .form-field select, .form-field textarea
{
    padding: 10px;
    border-radius: 20px;
    outline: none !important;
    border: 1px solid #999;
    font-size: 15px;
}

.form-field label
{
    font-weight: bold;
    margin-right: 10px;
}

.form-field-anotation
{
    font-size: 17px;
    margin-top: 5px;
    color: sienna;
    font-weight: bold;
}

.form-anotation
{
    font-size: 20px;
    margin: 20px 0;
    color: sienna;
    font-weight: bold;
}

.form-field-anotation
{
    width: 100%;
}

.slider-lines
{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-line
{
    flex: 1;
    height: 1px;
    background-color: #000;
}

.slider-lines .slider-text
{
    padding: 0 25px;
}

.slider-toggle
{
    cursor: pointer;
}

.slider-text
{
    display: flex;
    align-items: center;
}

.slider-arrow
{
    margin: 0 10px;
}

.slider
{
    display: none;
}

.slider-arrow
{
    transition: all .5s;
}

.slider-toggle.opened .slider-arrow
{
    transform: rotate(180deg);
}

.hidden
{
    display: none;
}

.flex-form-field
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flex-form-field>div, .flex-form-field input, .flex-form-field select, .flex-form-field label
{
    margin-right: 20px;
}

.photo-preview, .current-user-avatar
{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #fff;
}

.photo-preview img, .current-user-avatar img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo-preview-empty
{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: silver;
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    left: 0;
    top: 0;
    text-align: center;
}

.width-100
{
    width: 100%;
}

.button
{
    border: 1px solid #fff;
    padding: 10px;
    box-sizing: border-box;
    background-color: grey;
    color: #fff;
    cursor: pointer;
    opacity: .5;
    border-radius: 10px;
    font-size: 20px;
    outline: none !important;
    text-decoration: none !important;
    transition: opacity .5s;
    text-align: center;
}

.button:hover
{
    opacity: 1;
}

.button-ok
{
    background-color: green;
}

.button-default
{
    background-color: #0000ff;
}

.button-cancel
{
    background-color: brown;
}

.require-field-star
{
    position: relative;
    padding: 0 5px;
    bottom: 5px;
    color: #ff0000;
    font-weight: bold;
    font-size: 20px;
}

.accept-error
{
    color: #ff0000;
    margin: 15px 0;
    font-size: 20px;
    font-weight: bold;
}

.margin-30
{
    margin: 30px 0;
}

.form-error
{
    color: #ff0000;
    font-size: 23px;
    margin: 20px 0;
}

.success-reg
{
    font-size: 25px;
}

.medium-text
{
    font-size: 20px;
}

.menu
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu
{
    padding: 20px;
}

.menu-item
{
    text-decoration: none !important;
    background-color: chocolate;
    color: #fff;
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 25px;
    border-right: 1px;
    border-top: 1px;
    border-bottom: 1px;
    border-left: 0;
    border-style: solid;
    transition: all .5s;
}

.menu-item:hover
{
    background-color: coral;
}

.menu .menu-item:first-child
{
    border-left: 1px;
}

.title-block h1
{
    text-align: center;
    margin: 0.67em 0;
    font-size: 40px;
}

.title-block h2
{
    font-size: 30px;
    margin: 0.67em 0;
    text-align: center;
}

.empty-posts
{
    font-size: 20px;
    color: #ff0000;
}

.not-access
{
    color: #ff0000;
    font-size: 25px;
    font-weight: bold;
}

.modal-block
{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
}

.modal-inner-block
{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-width: 90vw;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close
{
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    background-color: #ff0000;
    font-size: 20px;
    border-radius: 50%;
    padding: 6px 10px;
    font-weight: bold;
    opacity: .5;
    cursor: pointer;
    transition: all .5s;
}

.modal-close:hover
{
    transform: rotate(360deg);
    opacity: 1;
}

.min-user-avatar
{
    border-radius: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid silver;
    margin-right: 15px;
}

.bold-text
{
    font-weight: bold;
}

.center-text
{
    text-align: center;
}

.otstup
{
    margin: 20px 0;
}

.hr
{
    border-style: dashed;
}

.unselectable 
{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}

.breadcrumbs
{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 30px;
}

.breadcrumb-separator
{
    margin: 0 10px;
}

.simple-p
{
    font-size: 20px;
}

.simple-ul
{
    font-size: 20px;
}

.sex-change
{
    width: 50px;
    height: 50px;
}

.mobile-menu
{
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    transition: all .5s;
    background-color: chocolate;
    height: 100vh;
    z-index: 100;
}

.mobile-menu.opened
{
    right: 0;
}

.mobile-menu-open
{
    display: none;
    align-items: center;
    font-weight: bold;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 100;
    font-size: 30px;
    border: 1px solid;
    width: 30px;
    height: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.mobile-menu-item
{
    width: 100%;
    display: block;
    padding: 5px 10px;
    color: #fff;
    border: 1px solid brown;
    text-decoration: none;
    font-size: 30px;
    border-bottom: 0;
}

.mobile-menu a:first-of-type
{
    margin-top: 40px;
}

.mobile-menu a:last-of-type
{
    border-bottom: 1px solid brown;
}

.grey-background
{
    display: none;
    z-index: 50;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

body.blocked
{
    overflow-y: hidden;
}

body.blocked .grey-background
{
    display: block;
}

.close-mobile-menu
{
    position: absolute;
    right: 7px;
    top: 5px;
    font-size: 25px;
    color: #ff0000;
    border-radius: 50%;
    padding: 1px 5px;
    background-color: rgba(180,180,180,.7);
}

.user-block-mobile
{
    position: absolute;
    padding: 10px;
    bottom: 75px;
    border: 1px solid brown;
    margin: 5px;
    color: #fff;
    font-size: 17px;
}

.user-block-mobile a
{
    border-bottom: none !important;
}

.message-info-block
{
    width: 100%;
    display: flex;
    align-items: center;
}

.message-info-block img
{
    max-width: 30px;
    margin-right: 10px;
}

.new-message-annotation
{
    font-size: 20px;
    margin: 20px 0;
}

.empty
{
    font-weight: bold;
    font-size: 25px;
    margin: 50px 0;
    text-align: center;
}

.notifications-block
{
    position: absolute;
    left: 20px;
    top: 20px;
    border: 1px solid #000;
    padding: 10px;
    background-color: burlywood;
    font-size: 20px;
    cursor: pointer;
    max-width: 500px;
    z-index: 1;
    max-height: 80vh;
    overflow: auto;
}

.new-notifications
{
    font-weight: bold;
}

.notification-item
{
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    border: 1px dashed #000;
    border-left: none;
    border-right: none;
    transition: background-color .5s;
}

.notification-date
{
    font-size: 16px;
    color: #777;
    margin-right: 10px;
}

.unselectable 
{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                    not supported by any browser */
}

.notifications-block-mobile
{
    margin: 25px 10px;
    padding: 10px 20px;
    border: 1px solid #000;
    background-color: burlywood;
}

.notifications-modal-block
{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.notification-modal-block.opened
{
    display: flex;
}

.notifications-modal-block.opened
{
    display: flex;
}

.notifications-modal-block .notifications-inner
{
    padding: 10px;
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    min-width: calc(93.75vw - 20px);
    max-height: 80vh;
    overflow: auto;
}

.notifications-mobile-close
{
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
    background-color: #ff0000;
    padding: 5px 10px;
    border-radius: 50%;
}

.notifications-mobile-title
{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.notification-item.new
{
    background-color: rgba(255,255,0,.5);
}

.empty-mobile-notification
{
    text-align: center;
    margin: 15px 0;
    color: #ff0000;
    font-weight: bold;
}

.pagination
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-item
{
    margin: 5px;
    font-size: 20px;
}

.pagination-item a, .pagination-item span
{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item span
{
    font-weight: bold;
    background-color: #aaa;
}

.pagination-item a
{
    text-decoration: none !important;
    color: #fff;
    background-color: orange;
    transition: background-color .5s;
}

.pagination-item a:hover
{
    background-color: orangered;
}

.pagination-text
{
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
}

.silver-border
{
    border-color: #999;
}

.answer-image-modal-title
{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    padding-right: 30px;
}

.answer-image-modal-image
{
    text-align: center;
}

.answer-image-modal-image img
{
    max-width: 80vw;
    max-height: 80vh;
}

.category-1:hover
{
    background-color: #d7bf89 !important;
}

.category-2:hover
{
    background-color: #fcdd38 !important;
}

.category-3:hover
{
    background-color: #823ffb !important;
}

.category-4:hover
{
    background-color: #f9775f !important;
}

.category-5:hover
{
    background-color: #62BECA !important;
}

.category-6:hover
{
    background-color: #67C45C !important;
}

.category-7:hover
{
    background-color: #fbA0ef !important;
}

.category-8:hover
{
    background-color: #9CBE59 !important;
}

.category-9:hover
{
    background-color: #50BE94 !important;
}

.category-10:hover
{
    background-color: #faac29 !important;
}

.form-title
{
    font-weight: bold;
    font-size: 20px;
}

.not-answer-post
{
    outline: 2px dashed #ff0000;
    outline-offset: -2px;
}

.new-mobile-menu-open
{
    background-color: orange;
    box-shadow: 0 0 1px 1px orange;
    animation: new-mobile-menu-open-animation 1s;
    animation-iteration-count: infinite;
}

.stand-with-russia
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swr-lines
{
    width: 100%;
}

.swr-line
{
    height: 15vh;
}

.swr-line-white
{
    background-color: #fff;
}

.swr-line-blue
{
    background-color: #0000ff;
}

.swr-line-red
{
    background-color: #ff0000;
}

.swr-text
{
    font-size: calc(1em + 3vw);
    background-color: rgba(0,0,0,.5);
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    position: absolute;
    text-align: center;
}

.youtube-video-image
{
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-video-image::after
{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    display: block;
    position: absolute;
}

.youtube-video-image img
{
    max-width: 150px;
}

.yotube-logo-img
{
    position: absolute;
}

@keyframes new-mobile-menu-open-animation
{
    0%
    {
        box-shadow: 0 0 1px 1px orange;
    }

    50%
    {
        box-shadow: 0 0 7px 7px orange;
    }

    100%
    {
        box-shadow: 0 0 1px 1px orange;
    }
}

@media (max-width: 1099px)
{
    .menu
    {
        display: none;
    }

    .footer>div, .footer>a
    {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .user-block
    {
        display: none;
    }

    .mobile-menu-open
    {
        display: flex;
    }

    .site-name
    {
        font-size: 40px;
    }

    .logo img
    {
        max-width: 60px;
    }

    .site-name
    {
        margin-left: 15px;
    }

    .logo-block-inner
    {
        justify-content: start;
    }

    .mobile-menu
    {
        display: block;
    }

    .form-field label
    {
        margin-bottom: 10px;
    }

    .detail-user-photo-block img
    {
        max-width: 100%;
    }

    .flex-form-field>div
    {
        margin: 20px auto !important;
    }

    .mobile-hide
    {
        display: none;
    }

    .button
    {
        opacity: 1;
    }

    .notifications-block
    {
        display: none;
    }
}

.mt-20 {
    margin-top: 20px;
}