/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

img {
    width: 100%;
}



/* style */



body {
    font-family: Montserrat, sans-serif;
    color: #e8e8e8;
    background-color: #1a1a2e;
    min-height: 100vh;
}

.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

header.desktop {
    padding: 20px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.row {
    display: flex;
}

header.desktop .row {
    justify-content: space-between;
    align-items: center;
}

.menu ul {
    display: flex;
}

.menu ul li:not(:last-child) {
    padding-right: 25px;
}

.menu ul li a {
    font-size: 16px;
    color: #e8e8e8;
    position: relative;
}

.menu ul li a:before {
    display: block;
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #836FFF;
    bottom: 0;
    left: 0;
    transition: all .4s ease-in-out;
}

.menu ul li a:hover:before {
    width: 100%;
    transition: all .4s ease-in-out;
}

.menu ul li a:hover {
    color: #836FFF;
}

.prof_lang {
    display: flex;
    align-items: center;
}

.logo {
    width: 20%;
}

.dd-container {
    width: 100%!important;
}

header .dd-select {
    width: 100%!important;
    border-radius: unset;
    border: none;
    position: relative;
    cursor: pointer;
    background: transparent!important;
    padding-right: 15px;
}

header .dd-selected {
    padding: 0;
}

header .dd-pointer {
    right: 0;
}

header .dd-pointer-down {
    border: solid 4px transparent;
    border-top: solid 4px #000;
    margin-top: -1px;
}

header .dd-pointer-up {
    border: solid 4px transparent !important;
    border-bottom: solid 4px #000 !important;
    margin-top: -5px;
}

header .dd-option-image, header .dd-selected-image {
    margin-right: 0;
}

.lang_select {
    padding-right: 30px;
}

header .dd-options {
    width: 60px!important;
    left: -10px;
    top: 30px;
    padding: 9px 7px;
    box-shadow: 0px 0px 14px #25252547;
    border: none;
}

header .dd-option {
    padding: 7px;
    border-bottom: 1px solid rgba(37, 37, 37, 0.5);
}

header .dd-option-selected {
    background: none;
}

.profile a {
    color: #e8e8e8;
    padding-right: 40px;
    position: relative;
}

.profile a:after {
    display: block;
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: url("/local/templates/kapussta/img/user.svg");
    right: 0;
    top: -3px;
}

.profile a:hover {
    color: #836FFF;
}

.profile a:before {
    display: block;
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #836FFF;
    bottom: 0;
    left: 0;
    transition: all .4s ease-in-out;
}

.profile a:hover:before {
    width: 58%;
    transition: all .4s ease-in-out;
}

.banner .big {
    width: 67%;
    /*background: url("/local/templates/kapussta/img/ban1.jpeg");*/
    margin-right: 25px;
    background-size: cover;
    position: relative;
}

.bann_cont {
    position: absolute;
    top: 145px;
    left: 150px;
}

.banner .small {
    width: 33%;
}

.banner {
    padding-top: 50px;
}

.banner h1 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    width: 75%;
}

.banner h1 span {
    color: #836FFF;
    font-family: Kodchasan, sans-serif;
}

.banner .spisok {
    padding-top: 50px;
}

.banner .spisok li:not(:last-child) {
    padding-bottom: 7px;
}

.banner .spisok li {
    font-size: 16px;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
    font-weight: 300;
}

.banner .spisok li:before {
    display: block;
    position: absolute;
    content: '';
    width: 15px;
    height: 1px;
    background: #ffffff;
    left: 0;
    top: 9px;
}

.banner .button {
    padding-top: 50px;
    display: flex;
}

.banner .button a {
    font-size: 20px;
    color: #ffffff;
    padding: 12px 40px;
    background: #836FFF;
    font-weight: 300;
    border-radius: 5px;
}

.banner .button a:hover {
    background: #ffffff;
    color: #836FFF;
}

.banner .first {
    margin-bottom: 25px;
   /* background: url("/local/templates/kapussta/img/ban2.jpeg");*/
    background-size: cover;
}

.banner .second {
    /*background: url("/local/templates/kapussta/img/ban3.jpeg");*/
    background-size: cover;
}

.smallest {
    position: relative;
}

.banner h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
}

.banner h4:before {
    display: block;
    position: absolute;
    content: '';
    width: 99px;
    height: 1px;
    background: #ffffff;
    bottom: 0;
    left: 24%;
}

.banner .ban {
    display: flex;
    justify-content: end;
    background-size: cover;
    position: absolute;
    top: 40px;
    right: 80px;
}

.banner .cent {
    text-align: center;
}

.smallest:nth-child(1) {
    margin-bottom: 7px;
}

.banner .cost {
    padding-top: 10px;
    font-family: Kodchasan, sans-serif;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.banner .ban .button {
    padding-top: 35px;
    justify-content: center;
}

.banner .ban .button a {
    font-size: 12px;
    font-weight: 400;
    color: #836FFF;
    padding: 8px 15px;
    background: #ffffff;
    text-transform: unset;
    border-radius: 5px;
}

.banner .ban .button a:hover {
    background: #836FFF;
    color: #ffffff;
}

.workBlock {
    padding: 90px 0;
}

h2 {
    font-size: 36px;
    color: #e8e8e8;
    font-weight: 700;
    padding-bottom: 50px;
    text-transform: uppercase;
}

.font h2 {
    font-family: Kodchasan, sans-serif;
}

.workBlock .col-8 {
    width: 57%;
}

.workBlock .col-4 {
    width: 40%;
}

.workBlock .row {
    justify-content: space-between;
    z-index: 9;
    position: relative;
}

.work .small {
    display: flex;
}

.work .smallWork {
    display: flex;
    width: 33%;
    align-items: end;
    border: 1px solid rgba(131, 111, 255, 0.3);
    border-radius: 5px;
}

.work .smallWork:not(:nth-child(3n)) {
    margin-right: 10px;
}

.work .big {
    margin: 15px 0;
}

.work h3 {
    font-size: 12px;
    font-weight: 700;
    color: #e8e8e8;
    padding-bottom: 10px;
    position: relative;
}

.work h3:before {
    display: block;
    position: absolute;
    content: '';
    width: 97px;
    height: 1px;
    background: #836FFF;
    bottom: 0;
    left: 20px;
}

.work p {
    font-size: 18px;
    font-weight: 400;
    color: #d0d0d0;
    font-family: Kodchasan, sans-serif;
}

.smallWork .content {
    padding: 12px;
    width: 50%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.smallWork .image {
    width: 50%;
}

.smallWork a {
    font-size: 12px;
    padding: 9px 20px;
    border: 1px solid #836FFF;
    background: #836FFF;
    color: #ffffff;
    border-radius: 5px;
}

.smallWork .button {
    display: flex;
}

.smallWork a:hover {
    background: transparent;
    color: #836FFF;
}

.bigWork {
    display: flex;
}

.bigWork .image {
    width: 39%;
}

.bigWork {
    border: 2px solid rgb(131, 111, 255);
    border-radius: 5px;
}

.bigWork .content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.bigWork h3 {
    font-size: 20px;
    border-bottom: 1px solid #252525;
    padding-bottom: 15px;
}

.work .bigWork h3:before {
    display: none;
}

.opis p {
    padding-top: 15px;
    color: #898989;
    font-size: 16px;
    font-weight: 300;
}

.bottomBlock {
    padding-top: 30px;
}

.bigWork .cost p {
    padding-top: 0;
    font-size: 32px;
}

.bottomBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.bottomBlock a {
    font-size: 16px;
    padding: 10px 40px;
    color: #ffffff;
    background: #836FFF;
    border-radius: 5px;
}

.bottomBlock .button {
    display: flex;
}

.chat .message {
    display: flex;
}

.chat .name {
    font-weight: 700;
    color: #e8e8e8;
    font-size: 16px;
    font-family: Kodchasan, sans-serif;
}

.chat .mess {
    font-size: 16px;
    font-weight: 300;
    color: #898989;
    padding: 13px;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.chat .message:not(:last-child) {
    padding-bottom: 15px;
}

.chat {
    overflow: auto;
    height: 749px;
    padding-left: 3px;
    padding-top: 3px;
    padding-bottom: 3px;
}

/*.chat {*/
/*    !* плашка-бегунок и фон *!*/
/*    scrollbar-color: #999 #333;*/
/*}*/
.chat::-webkit-scrollbar {
    width: 5px; /* в основном для вертикальных полос прокрутки */
    height: 10px; /* в основном для горизонтальных полос прокрутки */
}
.chat::-webkit-scrollbar-thumb { /* плашка-бегунок */
    background: #836FFF;
    border-radius: 3px;
}
.chat::-webkit-scrollbar-track { /* фон */
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);
    border-radius: 3px;
}

.workBlock .btnAll {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.workBlock .btnAll a {
    font-size: 16px;
    color: #836FFF;
    padding: 12px 30px;
    border: 1px solid #836FFF;
    border-radius: 5px;
}

.workBlock .btnAll a:hover {
    background: #836FFF;
    color: #ffffff;
}

.workBlock {
    position: relative;
}

.workBlock:before {
    display: block;
    position: absolute;
    content: '';
    width: 215px;
    height: 375px;
    background: url("/local/templates/kapussta/img/dollar.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 140px;
    top: 390px;
}

.workBlock:after {
    display: block;
    position: absolute;
    content: '';
    width: 238px;
    height: 347px;
    background: url("/local/templates/kapussta/img/dollars.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 30px;
    top: 30px;
}

.chat .message {
    padding-right: 9px;
}

.findBlock {
    padding: 80px;
    background: #836FFF;
    position: relative;
}

.findBlock:before {
    display: block;
    position: absolute;
    content: '';
    background: url("/local/templates/kapussta/img/star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 305px;
    height: 220px;
    left: 150px;
    top: 90px;
}

.findBlock:after {
    display: block;
    position: absolute;
    content: '';
    background: url("/local/templates/kapussta/img/hearts.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 395px;
    height: 320px;
    right: 65px;
    top: 30px;
}

.findBlock .row {
    flex-direction: column;
    text-align: center;
}

.findBlock h3 {
    font-size: 30px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 200;
}

.findBlock h2 {
    color: #ffffff;
    padding-bottom: 30px;
    font-weight: 400;
}

.findBlock .opis p {
    padding-top: 0;
    color: #ffffff;
    font-size: 20px;
    width: 30%;
    margin: 0 auto;
}

.findBlock .button {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.findBlock .button a {
    color: #836FFF;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 70px;
    background: #ffffff;
    text-transform: uppercase;
}

.forumBlock .row {
    flex-direction: column;
}

.forumBlock {
    position: relative;
    padding: 80px 0;
}

.forumBlock .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forumBlock h4 {
    font-weight: 700;
    color: #e8e8e8;
    font-size: 16px;
    text-transform: uppercase;
}

.forumBlock .row.input {
    padding-top: 30px;
}

.forumBlock .lang_select {
    padding-right: 0;
}

.forumBlock .dd-select {
    border-radius: unset;
    border: none;
    position: relative;
    cursor: pointer;
    background: unset!important;
    width: 100% !important;
}

.forumBlock .dd-pointer-down {
    display: none;
}

.forumBlock .dd-selected {
    overflow: hidden;
    display: block;
    padding: 0;
    font-weight: 400;
}

.forumBlock .dd-option {
    display: flex;
    align-items: center;
}

.forumBlock .dd-option-text {
    line-height: 1!important;
}

.forumBlock .dd-option-image, .forumBlock .dd-selected-image {
    max-width: 25px;
}

.filter_countries {
    position: relative;
    padding-left: 32px;
}

.filter_countries:before {
    display: block;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: url("/local/templates/kapussta/img/fil.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
}

.filter_countries .dd-options {
    left: -40px;
    top: 30px;
}

.filter__button a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    background: rgba(131, 111, 255, 0.6);
    padding: 5px 10px;
    border-radius: 10px;
}

.filterThemes {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filter__button a:hover {
    background: #836FFF;
}

.headFilter {
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px rgba(131, 111, 255, 0.25);
}

.titleFilter {
    display: flex;
    padding: 10px 30px;
    background: #836FFF;
    border-radius: 10px 10px 0 0;
}

.titleFilter h6 {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
}

.theme__item {
    padding: 25px 30px;
    background: #ffffff;
}

.theme__item .theme {
    display: flex;
    align-items: center;
}

.first_col {
    width: 40%;
}

.second_col {
    width: 25%;
    padding: 0 30px;
}

.third_col {
    width: 35%;
}

.name_chat {
    position: relative;
    padding-left: 45px;
}

.name_chat:before {
    display: block;
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: url("/local/templates/kapussta/img/text.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 10px;
}

.name_chat h6 {
    color: #e8e8e8;
    font-size: 16px;
    text-transform: uppercase;
}

.opis_chat {
    color: #e8e8e8;
    font-size: 12px;
    padding-top: 5px;
}

.quantity_chat h6 {
    color: #e8e8e8;
    font-size: 16px;
}

.message_chat .date p {
    color: #836FFF;
    font-weight: 700;
    font-size: 10px;
}

.message_chat .last p {
    color: #e8e8e8;
    font-weight: 400;
    font-size: 16px;
    padding-top: 3px;
}

.message_chat .from p {
    color: #e8e8e8;
    font-weight: 700;
    font-size: 12px;
    padding-top: 4px;
}

.themes:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #D5D5D5;
}

.themes:not(:first-child) {
    padding-top: 15px;
}

.tableFilter .button {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.tableFilter .button a {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 50px;
    background: #836FFF;
}

.tableFilter {
    z-index: 9;
}

.forumBlock:before {
    display: block;
    position: absolute;
    content: '';
    width: 361px;
    height: 343px;
    background: url("/local/templates/kapussta/img/starbig.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 90px;
    top: 300px;
}

.forumBlock:after {
    display: block;
    position: absolute;
    content: '';
    width: 151px;
    height: 153px;
    background: url("/local/templates/kapussta/img/starbig.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 80px;
    top: 120px;
}

footer {
    background: #5A5578;
    padding: 80px 0;
}

.footBlock {
    display: flex;
    justify-content: space-between;
}

footer .row {
    display: block;
}

footer .menu ul {
    flex-direction: column;
}

footer .menu ul li:not(:last-child) {
    padding-right: 0;
    padding-bottom: 15px;
}

footer .menu ul li a {
    color: #ffffff;
}

.donate {
    display: flex;
    padding: 30px;
    background: #836FFF;
}

.donate .col-4 {
    padding-right: 20px;
    border-right: 1px solid #ffffff;
}

.donate .col-8 {
    padding-left: 20px;
}

.donate h4 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    font-family: Kodchasan, sans-serif;
    position: relative;
}

footer .opis p {
    padding-top: 7px;
    color: #FFFFFE;
    font-size: 16px;
    font-weight: 300;
    width: 50%;
}

.money {
    padding-top: 20px;
    display: flex;
}

.money .btn {
    font-size: 14px;
    padding: 8px 25px;
    background: #089C32;
    color: #ffffff;
    cursor: pointer;
}

.money input {
    margin-right: 10px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    padding: 7px;
    padding-left: 25px;
}

.money input::placeholder {
    color: #f5f5f5;
    font-size: 14px;
}

footer {
    position: relative;
}

footer:before {
    display: block;
    position: absolute;
    content: '';
    width: 151px;
    height: 153px;
    background: url("/local/templates/kapussta/img/starwhite.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 40px;
    top: 40px;
}

footer:after {
    display: block;
    position: absolute;
    content: '';
    width: 190px;
    height: 235px;
    background: url("/local/templates/kapussta/img/starswhite.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 20px;
    top: 40px;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}
.fullwidth {
    width: 100%;
}
.mainforum .tableFilter {
    z-index: 9;
    position: relative;
}
.mainforum .forum-filter-field.forum-filter-footer {
    display: flex;
}
.mainforum div.forum-filter-footer input {
    margin: .2em;
    font-size: 16px;
    padding: 10px 40px;
    color: #ffffff;
    background: #836FFF;
    border: 1px solid #836FFF;
    transition: .3s;
}
.mainforum .forum-info-box.forum-menu-box {
    background: #836FFF;
    /*border-radius: 10px 10px 0 0;*/
    margin-bottom: 0;
}
.mainforum span.forum-menu-item a {
    color: #fff;
    border-bottom: 1px solid #fff;
}
.mainforum div.forum-filter-field span.forum-filter-field-item input, .mainforum select {
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    padding: 10px;
    display: block;
}
.mainforum .forum-filter-field {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}
.mainforum div.forum-filter-footer input:hover {
    background: #fff;
    color: #836FFF;
    transition: .3s;
}
/*.mainforum .third_col {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}*/
.modal {
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); /* фон */
    z-index: 1050;
    opacity: 0; /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in; /* анимация перехода */
    pointer-events: none; /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
}
/* При отображении модального окно */
.modal:target {
    opacity: 1; /* делаем окно видимым */
    pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}
/* ширина модального окна и его отступы от экрана */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 100px auto;
    }
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #2a2a3e;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0;
    outline: 0;
    max-height: 90vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5);
    }
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 40px 5px 40px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eceeef;
    flex-shrink: 0;
}
.modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
    color: #e8e8e8;
}

.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #e8e8e8;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}
/* Стили для закрывающей кнопки в фокусе или наведении */
.close:focus, .close:hover {
    color: #e8e8e8;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}
/* Стили блока основного содержимого окна */
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 5px 40px 40px 40px;
    padding-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    max-height: calc(90vh - 80px);
}

.modal-body:before {
    display: block;
    position: absolute;
    content: '';
    width: 151px;
    height: 153px;
    background: url("/local/templates/kapussta/img/starwhite1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 40px;
    bottom: -30px;
}

.modal-body:after {
    display: block;
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background: url("/local/templates/kapussta/img/starwhite1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 10%;
    bottom: 75px;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
}

.modal-body .forma form .form-group:first-child {
    margin-top: 0;
}

.modal-body input, .modal-body textarea {
    width: 100%;
    padding: 7px 15px;
    border: 1px solid #836FFF;
    border-radius: 5px;
    background: #FFFFFF;
}

.modal-body textarea {
    margin-bottom: 25px;
    height: 100px;
    resize: none;
}

.modal-body .forma {
    width: 100%;
}

.modal-body input:not(:last-child) {
    margin-bottom: 25px;
}

.modal-body input::placeholder, .modal-body textarea::placeholder {
    color: #836FFF;
    opacity: .5;
}

.modal-body input {
    height: 44px;
}
.modal-body input[type="submit"] {
    padding: 12px 50px;
    display: inline-block;
    background: #836FFF;
    color: #FFFFFF;
    font-size: 16px;
}

.modal-body .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9;
}

.modal-body .text {
    padding-top: 30px;
}

.modal-body .text p {
    font-size: 14px;
}

.modal-body .row:before {
    display: block;
    position: absolute;
    content: '';
    width: 118px;
    height: 167px;
    background: url("/local/templates/kapussta/img/dollars.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 170px;
    z-index: -1;
}

.modal-body label {
    font-size: 16px;
    color: #e8e8e8;
    font-weight: 700;
    padding-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body label input {
    margin-top: 10px;
}

.modal-body input[type="file"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.modal-body label span {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    background-color: #836FFF;
    color: #FFFFFF;
    padding: 12px 50px;
    border-radius: 5px;
    font-weight: 400;
}
.news-detail .buttons_blk {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.news-detail  .button:not(:last-child) {
    margin-right: 20px;
}
.news-detail .bottomBlock {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.news-detail .cost {
    margin-bottom: 20px;
}
.news-detail .bigWork .content {
    width: 60%;
}
.news-detail .bigWork .image {
    width: 40%;
}
.news-detail .bigWork h3 {
    font-size: 24px;
    border-bottom: 1px solid #252525;
    padding-bottom: 15px;
    font-weight: 500;
}
.news-detail .opis p {
    padding-top: 15px;
    color: #e8e8e8;
    font-size: 16px;
    font-weight: 400;
}
.mainforum .container {
    z-index: 999;
    position: relative;
}
.mainforum div.forum-header-box {
    background: unset;
    color: #836fff;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    font-size: 27px;
    padding-left: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column-reverse;
}
.mainforum .forum-header-title {
    padding: 0 !important;
    text-transform: uppercase;
}
.mainforum .forum-header-options {
    padding-top: 0;
}
.mainforum div.forum-header-box a {
    color: #a9a9a9;
    font-size: 14px;
}
.mainforum div.forum-header-box a:hover {
    border-bottom: 1px solid;
    color: #836fff;
    text-decoration: none;
}
#workBlock.mainpage .work h3:before {
    left: 50%;
    transform: translateX(-50%);
}
footer .opis {
    display: flex;
    align-items: flex-end;
}
footer .opis p {
    width: 60%;
}
#forumBlock .forum-info-box.forum-rules {
    padding: 30px 30px 30px 60px;
}
#forumBlock table.forum-table th {
    white-space: normal;
    text-align: left;
    width: auto;
    background: 0;
    border: 0;
    padding: 2px;
    margin: 0;
    vertical-align: top;
    font-size: 14px;
}
#forumBlock .forum-profile-edit-inner tr {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 50%;
}
#forumBlock .forum-profile-edit-inner input[type="text"], #forumBlock .forum-profile-edit-inner input[type="file"], #forumBlock .forum-profile-edit-inner textarea, #forumBlock .forum-profile-edit-inner input[type="password"] {
    border: 1px solid #836fff;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    width: 100%;
}
#forumBlock tbody {
    display: flex;
    flex-wrap: wrap;
}
#forumBlock .forum-profile-edit-inner tr:last-child {
    width: 100%;
}

/*Скрыл ненужные разделы лк*/

div#tab_cont_forum_2, div#tab_cont_forum_3, div#tab_cont_forum_4 {
    display: none;
}
#forumBlock .btnAll {
    display: flex;
    padding-top: 50px;
}

#forumBlock .btnAll input {
    font-size: 16px;
    color: #836FFF;
    padding: 10px 35px;
    border: 1px solid #836FFF;
}
#forumBlock  .btnAll input:first-child {
    margin-right: 20px;
}
#forumBlock .authorize-submit-cell input {
    font-size: 16px;
    color: #836FFF;
    padding: 10px 35px;
    border: 1px solid #836FFF;
}
#forumBlock .authorize-submit-cell input:hover {
    background: #836FFF;
    color: #ffffff;
}
#forumBlock .btnAll input:hover {
    background: #836FFF;
    color: #ffffff;
}
.pmlist .forum-pmessages nobr a {
    display: block;
    max-width: 10px;
}
.pmlist table.forum-table th {
    display: inline-flex;
    width: calc(100% / 4) !important;
}
form[action="/forum/topic/new/"] div.forum-filter-field span.forum-filter-field-item {
    display: flex;
    height: 2em;
    float: left;
}
form[action="/forum/topic/new/"] .forums-selector-single {
    min-height: 40px;
}

#forumBlock .forum-topic-list tbody {
    display: table-header-group;
}
#forumBlock .forum-navigation-top {
    border-bottom: 1px solid;
}
form[name="form_auth"] input.bx-auth-input.form-control {
    border: 1px solid #836fff;
    padding: 10px 10px;
    width: 100%;
}
table.bx-auth-table {
    margin-top: 8px;
    width: 100%;
}
#auth label[for="USER_REMEMBER_frm"] {
    padding-bottom: 0;
    padding-left: 10px;
    font-weight: 400;
}
#auth table {
    width: 100%;
}
div.forum-tabs div.forum-tabs-body div.forum-info-box div.forum-info-box-inner {
    padding: 20px 10px 20px 20px;
}
.bx-auth-note {
    background: unset;
    color: #836fff;
    margin-bottom: 20px;
    border: none;
    font-size: 27px;
    padding-left: 0;
    font-weight: 500;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 30px !important;
}
.bx-auth tr {
    display: flex;
    flex-direction: column;
}
#forumBlock .bx-auth tbody {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
td.bx-auth-label {
    text-align: left;
    font-weight: bold;
}
div.bx-auth {
    max-width: 600px;
    margin-top: 16px;
    margin-bottom: 24px;
    margin: 20px auto;
}
.dd-selected-image {
    max-width: 25px!important;
}
p.load {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 40%;
}
.smallWork .image{
    height: 100%;
}
.smallWork .image img{
    object-fit: cover;
    height: 100%;
    border-radius: 5px;
    max-height: 220px;
    min-height: 220px;
}

.work-n-chat .work .smallWork {
    display: flex;
    width: 49%;
    align-items: end;
    border: 1px solid rgba(131, 111, 255, 0.3);
    border-radius: 5px;
}

.work-n-chat .work .smallWork:not(:nth-child(3n)) {
    margin-right: 0;
}

.workBlock {
    padding-bottom: 50px;
}

.work-n-chat .work .small {
    display: flex;
    justify-content: space-between;
}

.bigWork .image{
    height: 100%;
}
.bigWork .image img{
    object-fit: cover;
    height: 100%;
    display: block;
    position: relative;
    max-height: 284px;
    border-radius: 5px;
}

.banner .big {
    max-height: 634px;
}

.banner .small {
    max-height: 634px;
    display: flex;
    flex-direction: column;
}
.banner .small .smallest{
    max-height: 314px;
}

.banner .big .image {
    display: block;
    height: 100%;
}

.banner .big .image img{
    height: 100%;
    object-fit: cover;
}

.banner .small .smallest .image {
    display: block;
    height: 100%;
    position: relative;
    max-height: 314px;
}

.banner .small .smallest .image img{
    height: 100%;
    object-fit: cover;
}

#forumBlock.forumpage tbody {
    display: table-row-group;
}

#forumBlock.forumpage div.forum-filter-field span.forum-filter-field-item {
    display: flex;
    height: auto;
    float: unset;
}

.banner h1 {
    background: #4a4a4a61;
    padding: 10px;
}

.banner h1 span {
    color: #9fffe4;
}

.forumBlock:before {
    z-index: -1;
}
.forumBlock:after {
    z-index: -1;
}
#register .bx-auth a {
    display: none;
}
#auth .button a {
    padding: 12px 50px;
    display: inline-block;
    background: #836FFF;
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}
#register td:first-child {
    margin: 5px 0;
}
#register td:last-child {
    margin: 10px 0;
}
#register thead {
    display: none;
}

#register td:last-child {
    margin: 10px 0;
    padding: 5px;
}
.prof_lang.hidden .lang_select{
    display: none;
}
.langnew {
    margin-right: 20px;
}
.langnew {
    margin-right: 20px;
}
.countries {
    display: flex;
    flex-wrap: wrap;
}

.counrtyitem:not(:nth-child(4n)) {
    margin-right: 6px;
}
.counrtyitem {
    width: 100px;
    margin-bottom: 20px;
    font-size: 14px;
    position: relative;
}
.counrtyitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    transition: .3s;
}
.counrtyitem img {
    max-width: 30px;
    margin-bottom: 10px;
}
.counrtyitem img {
    max-width: 30px;
    margin-bottom: 10px;
    width: 100%;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}
.counrtyitem:hover {
    scale: 1.1;
    transition: .3s;
    background: #dad4ff;
    border-radius: 5px;
    cursor: pointer;
}
.counrtyitem.chosen{
    background: #dad4ff;
    border-radius: 5px;
}
#workBlock.mainpage .bigWork .image img {
    object-fit: cover;
    height: 100%;
    display: block;
    position: relative;
    min-height: 221px;
    max-height: max-content;
}
#workBlock.mainpage .bigWork {
    max-height: 100%;
}
/*#workBlock.mainpage .smallWork {
    max-height: 180px;
}*/
#workBlock.mainpage .news-detail .bigWork,
#workBlock.mainpage .news-detail .bigWork .image img{
    max-height: unset;
}
.container.workcont {
    margin-top: 50px;
}
.work.tgchans .smallWork {
    max-height: unset;
    width: 100%;
    max-width: unset;
}
.work.tgchans .smallWork .content {
    width: 100%;
    display: flex;
}
.work.tgchans .smallWork .content {
    width: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}
 .work.tgchans .title {
    width: 100%;
    text-align: left;
}
 .work.tgchans h3 {
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
    padding-bottom: 10px;
     margin-bottom: 10px;
    position: relative;
     height: 49px;
}
.work.tgchans .smallWork .button {
    display: flex;
    padding-top: 15px;
}
.work.tgchans p {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    height: 36px;
}
.work.tgchans h3:before {
    left: 0 !important;
    transform: unset !important;
}
.work.tgchans {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: space-between;
}
.work.tgchans .small {
    display: flex;
    width: 100%;
    max-width: 24%;
    flex: 1 0 auto;
}
.work.tgchans .cost {
    width: 100%;
    text-align: left;
}
.smallWork .image a {
    border: none;
    padding: 0;
    color: unset;
    font-size: unset;
}
.telegram.onmain {
    margin-bottom: 50px;
}

h3.tgtitle {
    font-size: 20px;
    font-weight: 700;
    color: #e8e8e8;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 10px;
    margin-top: 25px;
    padding-left: 15px;
}
div#countriesBlock {
    padding-top: 90px;
}
div#countriesBlock .forma {
    width: 100%;
}
div#countriesBlock .counrtyitem {
    width: calc(100% / 8 - 36px);
    margin-right: 4px;
    margin-left: 4px;
}
.onlymobile {
    display: none;
}
.onlydesk {
    display: flex;
}

div#countriesBlock .hideblock {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.nodisplay {
    display: none;
}
div#countriesBlock .counrtyitem {
    text-align: center;
}

.min_banners .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.item_mini_banner {
    width: 100%;
    max-width: 16%;
    flex: 1 0 16%;
}

.min_banners {
    padding-top: 80px;
}

div#countriesBlock .countries .hideblock {
    display: none;
}

.countries .closecont {
    display: none;
}

div#countriesBlock .countries .hideblock.active {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.opencont, .closecont {
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.item_mini_banner a {
    display: block;
}

.item_mini_banner img {
    border-radius: 5px;
}

.mini_image_tg {
    margin-bottom: 10px;
    width: 100%;
}

.mini_image_tg img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.work-n-chat img {
    border-radius: 5px 0 0 5px;
}

/*.work.tgchans .small:not(:nth-child(3n)) {
    margin-right: 20px;
}*/

.button_more {
    display: flex;
    justify-content: center;
    width: 100%;
}

.button_more a {
    font-size: 14px;
    padding: 12px 30px;
    border: 1px solid #836FFF;
    background: #836FFF;
    color: #ffffff;
    border-radius: 5px;
}

.button_more a:hover {
    background: transparent;
    color: #836FFF;
}

.work-n-chat .work .smallWork {
    align-items: center;
}

.item_banners_page {
    width: 100%;
    max-width: 24%;
    flex: 1 0 auto;
    border: 1px solid rgba(131, 111, 255, 0.3);
    border-radius: 5px;
    padding: 12px;
    display: block;
}

.item_banners_page img {
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
}

.item_banners_page .title_block {
    padding-top: 12px;
    display: flex;
    align-items: center;
}


.item_banners_page .title_block .title {
    margin-left: 15px;
}

.item_banners_page .title_block h4 {
    font-size: 12px;
    display: flex;
    text-transform: uppercase;
    gap: 10px;
    color: #e8e8e8;
    flex-direction: column;
}

.item_banners_page .title_block span {
    text-transform: uppercase;
    color: #836FFF;
    font-weight: 700;
    font-size: 16px;
}

.hidden{
    display: none !important;
}
.item_banners_page .icon {
    width: 60px;
    height: 60px;
}
.item_banners_page .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
div#workBlock .container.telegram {
    margin-top: 50px;
}
div#workBlock div#min_banners {
    padding: 0;
}
footer {
    margin-top: 50px;
}
/*
.workBlock {
    padding-bottom: 0;
}*/

.videoimagebanners {
    margin-top: 40px;
}

.videoimagebanners .banitems {
    width: 100%;
}
.videoimagebanners .banitem {
    margin: 0 10px;
    height: 350px;
    border: 2px solid #836FFF;
    border-radius: 10px;
    padding: 2px;
    box-sizing: border-box;
    overflow: hidden;
}
.videoimagebanners  video.baniframe,.videoimagebanners  .banitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.videoimagebanners .banitem > * {
    border-radius: 8px;
}

/* Decorative elements for banitems banners */
.videoimagebanners .banitem {
    position: relative;
    overflow: visible;
}

.videoimagebanners .banitem::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('/local/templates/kapussta/img/starwhite1.svg') no-repeat center;
    background-size: contain;
    top: -15px;
    right: -15px;
    z-index: 2;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.videoimagebanners .banitem::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: url('/local/templates/kapussta/img/starwhite.svg') no-repeat center;
    background-size: contain;
    bottom: -10px;
    left: -10px;
    z-index: 2;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite reverse;
    pointer-events: none;
}

.videoimagebanners .banitem:nth-child(even)::before {
    top: -10px;
    left: -15px;
    right: auto;
}

.videoimagebanners .banitem:nth-child(even)::after {
    bottom: -10px;
    right: -10px;
    left: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Hide decorative elements on mobile for better performance */
@media (max-width: 768px) {
    .videoimagebanners .banitem::before,
    .videoimagebanners .banitem::after {
        display: none;
    }
}

/* Decorative elements for banners - rams and stars */
.banner .big::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: url("/local/templates/kapussta/img/starwhite1.svg") no-repeat center;
    background-size: contain;
    top: 20px;
    right: 30px;
    z-index: 1;
    opacity: 0.3;
    animation: float-banner 3s ease-in-out infinite;
}

.banner .big::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: url("/local/templates/kapussta/img/starwhite.svg") no-repeat center;
    background-size: contain;
    bottom: 40px;
    left: 40px;
    z-index: 1;
    opacity: 0.25;
    animation: float-banner 4s ease-in-out infinite reverse;
}

.banner .small .smallest:first-child::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: url("/local/templates/kapussta/img/starwhite1.svg") no-repeat center;
    background-size: contain;
    top: 15px;
    left: 15px;
    z-index: 1;
    opacity: 0.3;
    animation: float-banner 2.5s ease-in-out infinite;
}

.banner .small .smallest:first-child::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("/local/templates/kapussta/img/starwhite.svg") no-repeat center;
    background-size: contain;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.25;
    animation: float-banner 3.5s ease-in-out infinite reverse;
}

.banner .small .smallest:last-child::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: url("/local/templates/kapussta/img/starwhite1.svg") no-repeat center;
    background-size: contain;
    top: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.3;
    animation: float-banner 3s ease-in-out infinite;
}

.banner .small .smallest:last-child::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url("/local/templates/kapussta/img/starwhite.svg") no-repeat center;
    background-size: contain;
    bottom: 25px;
    left: 25px;
    z-index: 1;
    opacity: 0.25;
    animation: float-banner 4s ease-in-out infinite reverse;
}

@keyframes float-banner {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Hide decorative elements on mobile for better performance */
@media (max-width: 768px) {
    .banner .big::before,
    .banner .big::after,
    .banner .small .smallest::before,
    .banner .small .smallest::after {
        display: none;
    }
}

.banner .small .smallest .image:before {
    content: '';
    display: block;
    width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
    background: url(/local/templates/kapussta/img/banshadow.webp);
    background-size: cover;
    rotate: 180deg;
    opacity: .5;
    background-repeat: no-repeat;
}
form[name="ArFilterWork_form"] {
    display: none;
}

.bigWork .image {
    height: 260px;
}
.bigWork .image img {
    max-height: unset;
}
.workpagecat .bigWork a {
    display: block;
    width: 100%;
    height: 100%;
}
#workBlock.mainpage .bigWork .image img {
    max-height: unset;
}




/* new tg */
/*
.work.tgchans .smallWork .content {
    width: 100%;
    display: flex;
    height: 100%;
    padding: 0;
    flex-direction: column;
    max-height: 256px;
    position: relative;
}
.mini_image_tg {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
}
.mini_image_tg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.cont_absolute {
    position: absolute;
    bottom: -30px;
    left: 10px;
    padding: 10px;
    background: #fff;
    width: 93%;
    border-radius: 5px;
    border: 1px solid #836fff;
}
.work.tgchans h3 {
    font-size: 14px;
    font-weight: 700;
    color: #e8e8e8;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    height: auto;
    text-align: center;
    width: 70%;
}
.work.tgchans h3:before {
    left: 50% !important;
    transform: translateX(-50%)!important;
    display: none;
}
.work.tgchans .cost {
    display: none;
}
.work.tgchans .smallWork .button {
    display: flex;
    padding-top: 15px;
    justify-content: center;
}
.smallWork.aos-init.aos-animate {
    padding-bottom: 50px;
    border: none;
}
.work.tgchans {
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
    justify-content: space-between;
}
.work.tgchans .title {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.cont_absolute {
    position: absolute;
    bottom: -30px;
    left: 10px;
    padding: 10px;
    background: #fff;
    width: 93%;
    border-radius: 5px;
    border: 1px solid #836fff;
    transition: .5s;
}
a.smallWork.aos-init.aos-animate:hover .cont_absolute {
    bottom: 50%;
    transform: translateY(50%);
    transition: .5s;
    background: #836fff;
}

a.smallWork.aos-init.aos-animate:hover h3{
    color: #fff;
}*/
