* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    height:100%
}
body {
    font-family: 'Nunito', serif;
    background-image: url('/images/girlsBg.jpeg'); /* Замените URL на ссылку на ваше фоновое изображение */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height:100%
}
#app{
    height: calc(100% - 79px);
}
#app > div{
    height: 100%;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(44, 62, 80, 0.9); /* Полупрозрачный фон */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    font-weight: bold;
    color: #F39C12;
    max-width: 180px;
    display: flex;
    align-content: center;
    gap: 25px;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger-menu .line {
    width: 30px;
    height: 4px;
    background-color: #F39C12;
    margin: 4px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}
a.icon-linc {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(52, 73, 94, 0.9);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    z-index: 999;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.nav-links > a:hover {
    background-color: #F39C12;
}

.burger-menu.active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.burger-menu.active ~ .nav-links {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 100%;
}

.login-container, .pass_content, .registr_body, .login_content {
    background-color: #ffffff; /* Белый фон для контейнера формы */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Тень для контейнера */
    width: 100%;
    max-width: 400px; /* Максимальная ширина контейнера */
}

.login-container h2 {
    margin-bottom: 20px; /* Отступ снизу заголовка */
    text-align: center; /* Центрирование заголовка */
    color: #34495e; /* Цвет заголовка */
}

.mb-2 {
    margin-bottom: 15px; /* Отступ между полями ввода */
}

.form-control {
    width: 100%; /* Ширина полей ввода */
    padding: 10px; /* Внутренний отступ */
    border: 1px solid #ccc; /* Граница поля ввода */
    border-radius: 5px; /* Радиус границы */
    transition: border-color 0.3s ease; /* Плавный переход для цвета границы */
}

.form-control:focus {
    border-color: #F39C12; /* Цвет границы при фокусировке */
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); /* Тень при фокусировке */
}

.invalid-feedback {
    color: #e74c3c; /* Цвет сообщения об ошибке */
    font-size: 14px; /* Размер шрифта сообщения об ошибке */
    margin-top: 5px; /* Отступ сверху */
}

.form-check {
    display: flex; /* Используем flex для выравнивания чекбокса и метки */
    align-items: center; /* Вертикальное выравнивание */
}

.form-check-input {
    margin-right: 10px; /* Отступ справа для чекбокса */
}

.button-content-wrapper {
    display: flex;
    justify-content: center; /* Центрируем содержимое кнопки */
    align-items: center; /* Вертикально выравниваем содержимое кнопки */
}

.wgl-button {
    background-color: #F39C12; /* Цвет кнопки */
    color: white; /* Цвет текста кнопки */
    border: none; /* Без границы */
    border-radius: 5px; /* Радиус границы кнопки */
    padding: 12px; /* Внутренний отступ кнопки */
    cursor: pointer; /* Указатель при наведении */
    width: 100%; /* Ширина кнопки */
    transition: background-color 0.3s ease; /* Плавный переход для цвета кнопки */
}

.wgl-button:hover {
    background-color: #e67e22; /* Цвет кнопки при наведении */
}

.sign-up-text {
    text-align: center; /* Центрирование текста для регистрации */
    margin-top: 15px; /* Отступ сверху для текста регистрации */
}

.sign-up-text a {
    color: #F39C12; /* Цвет ссылки на регистрацию */
    text-decoration: none; /* Без подчеркивания */
}

.sign-up-text a:hover {
    text-decoration: underline; /* Подчеркивание ссылки при наведении */
}
.noBgColor{
    background: transparent!important;
}
.noFix{
    display: block!important;
    height: auto!important;
}
a.btn.btn-link {
    color: #F39C12;
    text-decoration: none;
}
a.btn.btn-link:hover{
    text-decoration: underline;
}
.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}
.list-group-item-action:focus, .list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
    cursor: pointer;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
    margin-bottom: 25px;
}
.page-title{
    margin: 25px 0;
}

#online-users-count{
    width: 100px;
    flex: 1;
    text-align: right;
    padding-right: 30px;
}
#online-users-count span {
    color: #f1c40f;
    font-weight: bold;
}
#online-users-count div {
    display: inline-block;
}
.original, .moder{
    display: flex;
    align-items: center;
}
.original::after {
    content: '';
    width: 17px;
    height: 20px;
    background: url(/images/original.png);
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
}
.rank{
    color: #18db18!important;
}
.moder::before {
    content: '';
    width: 17px;
    height: 20px;
    background: url(/images/moder.png);
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
}
.admin::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/images/admin.png);
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
}
div.skiptranslate:not(.goog-te-gadget) {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-te-gadget-simple {
    margin: 10px;
}
.widget-users__list>a {
    vertical-align: top;
    margin: 4px 5px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.vac-svg-button.vac-user-options {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 1;
    background: #ffffff47;
}
.vac-menu-options.puser {
    background: #fff;
    left: 0;
    right: auto;
    min-width: 125px;
}
.vac-menu-options.puser a.vac-menu-item {
    color: #111;
    text-decoration: none;
    font-size: 13px;
    margin: 0;
    display: block;
    padding: 0px 5px;
    min-height: auto;
}
.vac-menu-options.puser a.vac-menu-item:hover {
    background: #e5e5e5;
    transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.widget-users__list .avatar-char {
    background-color: #eee;
    color: #000
}

.widget-users__list .avatar-char,
.widget-users__list .avatar-img {
    margin: 0
}

.widget-users__list .avatar-img {
    border-radius: 2px;
    border: 1px solid #eeeeee;
}

.widget-users__list .avatar-char {
    line-height: 2.9rem;
    font-size: 1.2rem;
    text-align: center;
    font-style: normal;
}

.widget-users__list .avatar-char, .widget-users__list .avatar-img {
    border-radius: 2px;
    width: 8rem;
    height: 8rem;
    text-transform: uppercase;
}
.widget-users__list .ul-username{
    font-size: 13px;
    width: 8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card.widget-users {
    border: 0;
    padding: 0;
}
.card.widget-users .card-body {
    padding: 0;
}
.tooltip .tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
}
.tooltip .tooltip-arrow::before {
    border-top-color: #000 !important;
    border-width: 6px 6px 0 6px;
}
#hasMessage{
    width: 12px;
    height: 12px;
    background: red;
    margin-right: 15px;
    margin-left: -15px;
    border-radius: 100%;
    display: none;
}
@media only screen and (min-width: 768px) {
    #hasMessage {
        display: none!important;
    }
}
.site-info{
    font-size: 29px;
    max-width: 500px;
    margin-right: 15px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.site-info b {
    color: #f39c12;
    margin: 5px;
}
.site-info p {
    margin-bottom: 20px;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-icons img{
    width: 30px;
}
.mlogo-img{
    display: none;
}
a.story-title {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 36px;
}
p.story-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}
.story-has-grid .single-story-item .side-stick {
    position: absolute;
    width: 3px;
    height: 35px;
    left: 0;
    background-color: rgba(82, 95, 127, .5);
}
.story-has-grid .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #edf1f5;
    background-clip: border-box;
    border: 0 solid transparent;
    border-radius: 5px;
}
span.vac-count {
    font-size: 13px;
    vertical-align: top;
}
span.vac-count[data-count="0"] {
    display: none;
}
.like-dislike-buttons.store-ld > span {
    display: flex;
    align-items: start;
}
.like-dislike-buttons.store-ld > span.active{
    color: #007bff;
}
.store-ld.like-dislike-buttons .icon{
    cursor: pointer;
    font-size: 20px;
    display: block;
}
.store-ld.like-dislike-buttons .vac-media-dislike .icon {
    transform: rotate(180deg);
}
.post-contentld.like-dislike-buttons .icon{
    font-size: 30px;
}
.post-contentld.like-dislike-buttons span.vac-count {
    font-size: 15px;
    vertical-align: top;
}
.post-meta {
    list-style: none;
    display: flex;
    align-content: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 5px;
}
.post-content img, .post-content video{
    max-width: 100%;
    height: auto;
}
.lakm_commenter .ql-container{
    height: auto!important;
}
.lakm_commenter .ql-editor {
    height: 127px !important;
}
@media only screen and (max-width: 1000px) {
    .home-main{
        flex-direction: column;
    }
    .site-info {
        font-size: 25px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .site-info p {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 600px) {
    .login-container, .pass_content, .registr_body, .login_content {
        padding: 10px;
        width: 97%;
    }
    .mlogo-img{
        display: block;
    }
    .logo-img{
        display: none;
    }
    body{
        background-position: right;
    }
}
@media only screen and (max-width: 450px) {
    #online-users-count div {
        display: none;
    }
    #online-users-count span:before {
        content: "";
        display: inline-block;
        background: #07bc0c;
        height: 10px;
        width: 10px;
        border-radius: 50%;
    }
    header {
        padding: 10px;
    }
    #app{
        height: calc(100% - 59px);
    }
    .site-info {
        font-size: 17px;
    }
}
