﻿/* STYLES 25.01.2025
Developer: lapse.site
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #eee;
    --bg2: #fff;
    --bg3: #000;
    --text: #000;
    --text1: #fff;
    --text2: #c0c0c0;
    --color1: #659ed8;
    --color2: #5e91c4;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 30px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* HEADER */
header {
    position: relative;
    background: linear-gradient(to right, #2c8673 -20%, #3b5e74 100%);
    border-bottom: 1px solid var(--light);
    color: #fff;
    padding: 10px 0;
    padding-left: 80px;
}

@media (max-width: 860px) {
    header {
        padding-left: 0;
    }
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
}

.header-logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 20px;
}

/* HEADER SEARCH */
.header-search {
    margin-right: auto;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: auto;
        margin-right: 0;
    }
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: var(--radius);
    padding: 0 0 0 10px;
}

@media (max-width: 860px) {
    .header-search form {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: #468881;
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active form {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search .fa-magnifying-glass, .header-search .fa-xmark {
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #d4d4d4;
    font-size: 16px;
    text-align: center;
}

.header-search form input {
    background: none;
    padding: 0;
    width: 250px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search form input::placeholder {
    color: #d4d4d4;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

/* HEADER USER */
.header-user > a {
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.header-user > a img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10px;
}

@media (max-width: 860px) {
    .header-user > a span, .header-user > a i {
        display: none;
    }
}

.header-user > a i:last-child {
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.header-user.active > a i:last-child {
    transform: rotate(180deg);
}

.header-user > div {
    position: absolute;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    top: 100%;
    right: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user > div a {
    display: block;
    padding: 5px 10px;
}

.header-user > div a:last-child {
    color: #f44336;
}

.header-user > div a:hover {
    color: var(--color1);
}

.header-user > div a i {
    margin-right: 10px;
}

/* ASIDE, MAIN */
aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    color: #fff;
    padding: 0 0 30px 0;
    height: 100%;
    transition: 0.3s;
    z-index: 2;
}

@media (max-width: 860px) {
    aside {
        top: unset;
        bottom: 0;
        width: 100%;
        height: 60px;
        flex-direction: row;
        padding: 0;
    }
}

.aside-logo {
    display: block;
    width: 100%;
    padding: 28px 10px 15px;
    border-bottom: 1px solid var(--light);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .aside-logo {
        display: none;
    }
}

.aside-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: auto;
    font-size: 14px;
}

@media (max-width: 860px) {
    .aside-menu {
        flex-direction: row;
        margin-bottom: 0;
    }
}

.aside-menu a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    color: var(--text2);
    border-radius: var(--radius);
    line-height: 50px;
    font-size: 20px;
    text-align: center;
}

.aside-menu a:hover {
    background: var(--light);
    color: var(--color2);
}

.aside-menu a:last-child {
    color: #FF5722;
}

main {
    margin-left: 80px;
    transition: 0.3s;
}

@media (max-width: 860px) {
    main {
        margin-left: 0;
    }
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: -20%;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    left: 50%;
    bottom: 100%;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* PLOT LOGIN */
.plots-login {
    position: fixed;
    background: url(/images/bg.jpg) no-repeat left/cover;
    box-shadow: inset 0 999px rgb(0 0 0 / 60%);
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.plots-login:before {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.2);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.plots-login form {
    background: var(--bg2);
    border-radius: var(--radius);
    box-shadow: 0 0 2px rgb(0 0 0 / 8%), 0 2px 24px rgb(0 0 0 / 6%);
    width: 100%;
    max-width: 480px;
    padding: 60px;
    text-align: center;
}

@media (max-width: 860px) {
    .plots-login form {
        width: 100%;
        max-width: 95%;
        padding: 40px 30px;
    }
}

.plots-login_code {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin: 20px 0;
}

.plots-login_code input {
    background: #eee;
    width: 40px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* PLOTS PAGINATION */
.plot-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    margin-top: 30px;
}

.plot-pagination a {
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.plot-pagination a.active {
    background: var(--color1);
    color: #fff;
}

.plot-pagination a:hover {
    background: var(--color2);
    color: #fff;
}

/* PLOT HEAD */
.plot-head {
    position: relative;
    background: linear-gradient(to right, #2c8673 -20%, #3b5e74 100%);
    color: #fff;
    margin-top: -30px;
    margin-bottom: -40px;
    padding: 30px 0 70px;
}

.plot-head .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
}

@media (max-width: 860px) {
    .plot-head .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.plot-head h2 {
    margin-bottom: 0;
}

.plot-head_speedbar {
    color: var(--text2);
    font-size: 14px;
}

.plot-head_speedbar > span {
    color: #fff;
}

.plot-head_speedbar > span:before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: #c0c0c0;
    margin: 0 5px;
    font-size: 12px;
}

/* ADMIN PLOT FORM */
.plot-form {
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: var(--radius);
}

.plot-form .e-flex > label {
    min-width: 150px;
}

.plot-form .e-float img {
    width: 150px;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.plot-form_link {
    align-items: center;
    grid-gap: 10px;
    margin-top: 30px;
}

.plot-form_link a {
    display: inline-block;
    background: var(--color1);
    border-radius: var(--radius);
    color: var(--text1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.plot-form_link a:hover {
    opacity: 0.8;
}

/* PLOT SEARCH */
.plot-search {
    display: flex;
    align-items: center;
    background: var(--bg2);
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    padding: 3px 3px 3px 20px;
    margin-bottom: 40px;
}

/* PLOT ITEM */
.plot-item {
    display: inline-block;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
}

.plot-item a[onclick] {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 50px;
}

/* PROMO QYC */
@keyframes qyclogo1 {
    0% {
        transform: translate(240.271754px, 513.93512px) rotate(-26.476892deg);
    }

    30% {
        transform: translate(250.720135px, 477.377206px) rotate(0deg);
    }

    100% {
        transform: translate(250.720135px, 477.377206px) rotate(0deg);
    }
}

@keyframes qyclogo2 {
    0% {
        transform: translate(200.339198px, 604.837405px) rotate(18.094642deg);
    }

    30% {
        transform: translate(193.968408px, 636.182547px) rotate(0deg);
    }

    100% {
        transform: translate(193.968408px, 636.182547px) rotate(0deg);
    }
}

.anim #qyclogo1 {
    animation: qyclogo1 3000ms 1s linear 1 normal forwards;
}

.anim #qyclogo2 {
    animation: qyclogo2 3000ms 1s linear 1 normal forwards;
}

.promo-header {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.promo-header > a {
    position: relative;
    background: linear-gradient(270deg, #707eb0, #485276);
    padding-top: 10px;
    border-radius: 0 0 20px 20px;
    width: 90px;
    height: 90px;
    overflow: hidden;
}

.promo-header svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.promo-hello {
    position: relative;
}

.promo-hello:before {
    content: "";
    position: absolute;
    background: rgb(2 5 11 / 70%);
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
}

.promo-hello_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 250px 0;
    color: #fff;
    text-align: center;
    z-index: 2;
}

@media (max-width: 860px) {
    .promo-hello_content {
        padding: 150px 0;
    }
}

.promo-hello_number {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 40px;
    font-weight: bold;
    opacity: 0.2;
}

.promo-hello_content h1 {
    text-transform: uppercase;
    margin-bottom: 0;
}

.promo-hello_content > span {
    display: block;
    color: #c0c0c0;
    font-size: 20px;
    margin-bottom: 30px;
}

.promo-hello_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px 60px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

.promo-hello_meta span {
    display: block;
    color: #c0c0c0;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}

.promo-invit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(15deg, rgb(24 49 66), rgb(124 170 217));
    color: #fff;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 80px;
    padding: 100px 0;
    text-align: center;
    margin-top: -80px;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 860px) {
    .promo-invit {
        width: 100%;
        border-radius: 0;
        margin-top: 0;
        padding: 60px 30px;
    }
}

.promo-invit:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: url(https://img1.liveinternet.ru/images/attach/c/7/94/923/94923205_SR.png) center/contain;
}

.promo-invit_subtitle {
    display: inline-block;
    color: #f7f7f7;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

.promo-invit_title {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.promo-invit_date {
    display: inline-block;
    font-size: 25px;
    padding: 15px 0;
    border-top: 3px solid #d2bb81;
    border-bottom: 3px solid #d2bb81;
}

.promo-invit_link {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    margin-top: 60px;
}

.promo-invit_link a {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #d2bb81, #80724f);
    color: #fff;
    box-shadow: 0px 5px 20px rgb(85 78 63 / 80%);
    border: 1px solid var(--light);
    padding: 10px 70px 10px 20px;
    border-radius: var(--radius);
}

.promo-invit_link a img {
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 50px;
    height: auto;
}

.promo-etap {
    text-align: center;
}

.promo-etap ul {
    position: relative;
    overflow: hidden;
}

.promo-etap ul:before {
    content: "";
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 26vw;
    border-left: 3px dotted #d2bb81;
    z-index: -1;
}

@media (max-width: 860px) {
    .promo-etap ul:before {
        left: 15vw;
    }
}

.promo-etap ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    grid-gap: 30px;
    padding-bottom: 80px;
    overflow: hidden;
}

.promo-etap li img {
    background: #fff;
    border: 3px solid #d2bb81;
    padding: 2px;
    width: 150px;
    height: auto;
    aspect-ratio: 16/16;
    border-radius: 50%;
}

@media (max-width: 860px) {
    .promo-etap li img {
        width: 120px;
    }
}

.promo-etap li div h3 {
    color: #3e656c;
}

.promo-etap li div span {
    display: block;
    color: #5f5f5f;
    margin-top: -25px;
    font-size: 14px;
}

.promo-2gis {
    background: #183142;
    color: #fff;
    padding: 40px 0;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    text-align: center;
}

.promo-2gis .promo-hello_meta {
    margin-bottom: 40px;
}

.promo-2gis iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
}

@media (max-width: 860px) {
    .promo-2gis iframe {
        aspect-ratio: 16/16;
    }
}

/* BADGE */
.badge {
    display: inline-block;
    border-radius: var(--radius);
    padding: 5px 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.badge-red {
    background: #ff4954;
}

.badge-yellow {
    background: #ffde56;
}

.badge-green {
    background: #3cd458;
}

.badge-blue {
    background: #50a1ff;
}

/* FOOTER */
footer {
    position: relative;
    background: #343434;
    padding: 30px 0;
}

footer .container {
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--text2);
    opacity: 0.3;
}

.footer-menu {
    color: var(--text2);
    border-bottom: 1px dashed;
    font-size: 12px;
}

@media (max-width: 860px) {
    .footer-menu {
        margin: 0 auto;
        margin-top: 20px;
        font-size: 14px;
    }
}

.footer-dev {
    position: absolute;
    bottom: -20px;
    right: 0;
    color: #676e79;
    font-size: 10px;
}

.footer-dev a {
    color: var(--color1);
    margin-left: 5px;
}

