html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
max-width: 100%;
font-family: 'Oswald', sans-serif;
scrollbar-color: black transparent;
scrollbar-width: thin;
}
body{
background: #EDEDED; 
}
a {
font-size: 20px;
font-weight: 400;
margin: 5px 0;
color: #333;
background: 0;
border: 0;
text-transform: none;
margin: 0;
padding: 0;
cursor: pointer;
outline: none !important;
text-decoration: none;
}
a:hover {
color: gray;
text-transform: none;
cursor: pointer;
outline: none !important;
text-decoration: underline;
}
::-webkit-scrollbar {
width: 10px; 
height: 10px;
background: black transparent;
}
::-webkit-scrollbar-track {
background: black transparent;
margin: 5px 0;
}
::-webkit-scrollbar-thumb {
background-color: ;
border-radius: 10px;
border: 2px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: black;
}
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
transition: opacity 0.5s ease;
}
body.preload {
overflow: hidden;
}
body.loaded .preloader {
opacity: 0;
pointer-events: none;
}
h1 {
font-size: 3rem;
font-weight: 600;
color: black;
}
h2 {
font-size: clamp(1.7rem, 4vw, 3.5rem);
font-weight: 500;
color: black;
position: relative;
display: inline-block;
overflow: hidden;
transition: color 0.5s ease;
text-align: center;
}
h3 {
font-size: 2.0em;
font-weight: 500;
color: black;
}
p {
font-size: 1.3em;
color: black;
}
section {
margin-top: 20px;
min-height: 1000px;
}
.loader-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s;
}
.loader-overlay[style*="display: none"] {
display: none !important;
}
.circular-loader {
width: 50px;
height: 50px;
animation: rotate 2s linear infinite;
}
.loader-path {
stroke-dasharray: 150, 200;
stroke-dashoffset: -10;
animation: dash 1.5s ease-in-out infinite;
stroke-linecap: round;
}
@keyframes rotate {
100% { transform: rotate(360deg); }
}
@keyframes dash {
0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
50% { stroke-dasharray: 89, 200; stroke-dashoffset: -35; }
100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124; }
}
[data-editable-type="attribute"] {
position: relative !important;
display: inline-block;
}
.edit-pencil {
cursor: pointer;
transition: opacity 0.3s;
border-radius: 15px;
z-index: 1000;
}
[data-editable-type="attribute"] .edit-pencil {
position: absolute;
top: 10px;
right: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
[data-editable]:hover .edit-pencil {
opacity: 1;
}
.editor-overlay {
background: white !important;
animation: editorFadeIn 0.3s ease !important;
padding: 10px !important;
box-shadow: 0 0 10px rgb(0 0 0 / 64%) !important;
z-index: 10000 !important;
min-width: 400px;
}
@keyframes editorFadeIn {
from {
opacity: 0;
transform: translate(-50%, -40%);
}
to {
opacity: 1;
transform: translate(-50%, -50%);
}
}
.editor-overlay textarea {
transition: all 0.3s ease !important;
width: 100% !important;
height: 10vh !important;
color: black !important;
}
.editor-overlay editor-buttons {
display: flex !important;
flex-direction: row !important;
gap: 10px !important;
justify-content: center !important;
}
.editor-overlay textarea:focus {
border-color: #2196F3 !important;
box-shadow: 0 0 8px rgba(33,150,243,0.3) !important;
}
#seo-editor {
position: fixed;
top: 20px;
right: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
z-index: 100;
width: 420px;
transition: transform 0.3s ease;
}
.seo-editor-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border-bottom: 1px solid #eee;
}
.toggle-editor {
background: none;
border: none;
font-size: 1.2em;
cursor: pointer;
padding: 5px;
}
.seo-editor-content {
padding-right: 15px;
padding-left: 15px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
#seo-editor.active .seo-editor-content {
max-height: 500px;
}
.form-group {
position: relative;;
}
.form-group input {
color: black !important;
}
.form-group label {
padding-top: 0px;
display: block;
font-size: 16px;
color: #666;
margin-bottom: 5px;
}
.editable-text {
padding: 8px;
border: 1px solid #eee;
border-radius: 6px;
min-height: 40px;
}
#seo-editor .edit-pencil {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.05);
padding: 5px;
border-radius: 4px;
}
:root {
--background: #FFFFFF;
--surface: #F5F5F7;
--text-primary: #1D1D1F;
--text-secondary: #6E6E73;
--accent: #2E5B2E;
--accent-hover: #1F3F1F;
--border: #D2D2D7;
--shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
--shadow-md: 0 8px 30px rgba(0,0,0,0.08);
--shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
--radius-sm: 18px;
--radius-md: 28px;
--radius-lg: 40px;
--transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.input {
flex: 1;
min-width: 200px;
padding: 14px 20px;
border: 1px solid #D1D1D6;
border-radius: 30px;
font-size: 1rem;
background: #F9F9FB;
outline: none;
transition: border 0.2s, box-shadow 0.2s;
}
.I75577753457 {
margin-top: 0 !important;
}
.I2314140057 {
max-width: 1400px;
margin: 0 auto;
padding: 20px 40px;
}
.I2314140057 p {
color: black;
}
.I02140124057 {
font-size: 1.25rem;
color: var(--text-secondary);
line-height: 1.6;
}
.H00214857 {
position: sticky;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.75);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
z-index: 100;
border-bottom: 1px solid rgba(210, 210, 215, 0.4);
z-index: 10;
}
.H23542300057 {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
padding: 0 40px;
max-width: 1200px;
margin: 0 auto;
}
.I32523525 {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--text-primary);
font-weight: 600;
font-size: 1.3rem;
letter-spacing: -0.02em;
}
.I32523525 i {
font-size: 1.6rem;
color: var(--accent);
}
.H235230057 {
display: flex;
gap: 32px;
list-style: none;
}
.H235230057 a {
text-decoration: none;
color: var(--text-secondary);
font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s;
}
.H235230057 a:hover {
color: var(--text-primary);
}
.H235402350957 {
padding: 10px 24px;
border-radius: 40px;
background: rgba(46, 91, 46, 0.08);
color: var(--accent);
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
transition: background 0.2s;
}
.H235402350957:hover {
background: rgba(46, 91, 46, 0.15);
}
.I02354023057 {
background: var(--background);
display: flex;
align-items: center;
}
.I21340230957 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
bottom: 60px;
position: relative;
}
.I2314230057 {
max-width: 540px;
}
.I2314230057 p {
margin: 32px 0 40px;
}
.I24234657 {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 40px;
}
.I2134021340995457 {
background: #F5F5F7;
border-radius: 30px;
padding: 8px 20px;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 8px;
}
.I2134021340995457 i {
color: var(--accent);
font-size: 1rem;
}
.I2354235457 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 16px 36px;
background: var(--accent);
color: #FFFFFF;
border: none;
border-radius: 40px;
font-weight: 600;
font-size: 1.05rem;
text-decoration: none;
transition: all 0.3s;
box-shadow: 0 8px 24px rgba(46, 91, 46, 0.25);
cursor: pointer;
}
.I2354235457:hover {
background: var(--accent-hover);
box-shadow: 0 12px 32px rgba(46, 91, 46, 0.35);
transform: translateY(-2px);
}
.I2350057 {
background: #F5F5F7;
border-radius: 40px;
padding: 20px;
box-shadow: 0 30px 50px rgba(0,0,0,0.08);
position: relative;
}
.I231423557 {
width: 100%;
height: 380px;
background-color: #eaf0e4;
border-radius: 28px;
position: relative;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.04);
background-image:
linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px),
linear-gradient(0deg, rgba(255,255,255,0.7) 1px, transparent 1px),
radial-gradient(circle at 20% 30%, rgba(150,180,140,0.3) 1px, transparent 1px),
radial-gradient(circle at 80% 70%, rgba(150,180,140,0.25) 1px, transparent 1px);
background-size: 40px 40px, 40px 40px, 20px 20px, 20px 20px;
}
.tree {
position: absolute;
font-size: 1.2rem;
color: #3a5a2a;
z-index: 2;
opacity: 0.7;
pointer-events: none;
}
.tree-1 { top: 10%; left: 10%; }
.tree-2 { top: 15%; right: 15%; }
.tree-3 { bottom: 15%; left: 20%; }
.tree-4 { bottom: 10%; right: 10%; }
.tree-5 { top: 40%; left: 5%; }
.tree-6 { top: 45%; right: 8%; }
.plot {
position: absolute;
background: rgba(255,255,255,0.4);
border: 1px solid rgba(0,0,0,0.05);
border-radius: 4px;
z-index: 1;
}
.plot-1 { top: 20%; left: 15%; width: 30px; height: 20px; }
.plot-2 { top: 30%; left: 55%; width: 40px; height: 25px; }
.plot-3 { top: 60%; left: 25%; width: 35px; height: 22px; }
.plot-4 { top: 70%; left: 60%; width: 28px; height: 18px; }
.pin {
position: absolute;
background: #FFFFFF;
padding: 6px 16px;
border-radius: 30px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
font-weight: 600;
font-size: 0.8rem;
display: flex;
align-items: center;
gap: 6px;
color: var(--accent);
animation: floatPin 3s ease-in-out infinite;
z-index: 5;
}
.pin i {
font-size: 1rem;
color: var(--accent);
}
.pin-1 { top: 20%; left: 20%; animation-delay: 0s; }
.pin-2 { top: 50%; left: 60%; animation-delay: 0.8s; }
.pin-3 { top: 75%; left: 30%; animation-delay: 1.6s; }
@keyframes floatPin {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.I1123448957 {
position: absolute;
bottom: 16px;
left: 16px;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
padding: 6px 14px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 600;
color: var(--text-secondary);
border: 1px solid rgba(0,0,0,0.04);
z-index: 6;
}
.I1234148575757 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 60px;
margin-top: 10px;
}
.I24234857 {
background: var(--background);
border-radius: var(--radius-lg);
padding: 50px 30px 40px;
transition: all 0.3s;
box-shadow: var(--shadow-sm);
display: flex;
flex-direction: column;
align-items: center;
}
.I24234857:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.I23123557 {
width: 72px;
height: 72px;
background: #F0F5F0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 28px;
font-size: 1.8rem;
color: var(--accent);
}
.I24234857 h3 {
margin-bottom: 12px;
}
.I24234857 p {
color: var(--text-secondary);
}
.I1240057 {
background: #FFFFFF;
border-radius: var(--radius-lg);
padding: 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
box-shadow: var(--shadow-lg);
}
.I21343214057 h2 {
margin-bottom: 20px;
}
.I21343214057 .I02140124057 {
margin-bottom: 40px;
}
.I23450900957 {
display: flex;
gap: 12px;
margin-bottom: 32px;
}
.I21354250957 {
padding: 10px 24px;
border: 1px solid var(--border);
background: transparent;
border-radius: 30px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
color: var(--text-secondary);
}
.I21354250957.active {
background: var(--accent);
color: white;
border-color: var(--accent);
}
.I24349057 {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.I2135405712157 {
flex: 1;
min-width: 200px;
padding: 14px 20px;
border: 1px solid #D1D1D6;
border-radius: 30px;
font-size: 1rem;
background: #F9F9FB;
outline: none;
transition: border 0.2s, box-shadow 0.2s;
}
.input:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(46, 91, 46, 0.1);
}
.I2352557057 {
padding: 14px 28px;
background: var(--accent);
color: white;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
display: flex;
align-items: center;
gap: 8px;
}
.I2352557057:hover {
background: var(--accent-hover);
}
.I2352350057 {
background: #F5F5F7;
border-radius: var(--radius-md);
padding: 40px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 280px;
}
.I2352350057 i {
font-size: 3rem;
color: var(--accent);
margin-bottom: 16px;
}
.I2325455230243957 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-top: 60px;
}
.I657856783489834757 {
background: var(--background);
border-radius: var(--radius-md);
padding: 50px;
display: flex;
gap: 30px;
align-items: center;
transition: all 0.3s;
box-shadow: var(--shadow-sm);
}
.I657856783489834757:hover {
transform: scale(1.02);
box-shadow: var(--shadow-md);
}
.I5723454998257 {
width: 64px;
height: 64px;
background: #F0F5F0;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: var(--accent);
flex-shrink: 0;
}
.I5555777199482157 h3 {
margin-bottom: 8px;
}
.I5555777199482157 p {
color: var(--text-secondary);
}
.I213457 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.I21454057 {
text-align: left;
}
.I21454057 h2 {
margin-bottom: 30px;
}
.I21454057 p {
color: var(--text-secondary);
font-size: 1.1rem;
margin-bottom: 24px;
}
.I23235057 {
display: flex;
gap: 60px;
margin-top: 40px;
}
.I231457 {
display: flex;
flex-direction: column;
}
.I12414057 {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent);
line-height: 1.2;
}
.I124857 {
color: var(--text-secondary);
font-size: 1rem;
}
.I124410057 {
background: var(--surface);
border-radius: 40px;
padding: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 400px;
box-shadow: var(--shadow-lg);
text-align: center;
}
.I124410057 i {
font-size: 4rem;
color: var(--accent);
margin-bottom: 24px;
opacity: 0.8;
}
.I124410057 .I570021909459057 {
font-size: 1.5rem;
font-style: italic;
color: var(--text-primary);
max-width: 300px;
margin: 0 auto;
}
.I0000992957 {
display: flex;
gap: 30px;
overflow-x: auto;
padding: 40px 0 20px;
scroll-snap-type: x mandatory;
justify-content: center;
flex-wrap: wrap;
}
.I0009898339555755757 {
flex: 0 0 280px;
background: #FFFFFF;
border-radius: var(--radius-md);
padding: 40px 24px;
box-shadow: var(--shadow-sm);
scroll-snap-align: start;
transition: transform 0.3s;
text-align: center;
}
.I0009898339555755757:hover {
transform: translateY(-8px);
}
.I0009898339555755757 i {
font-size: 2.2rem;
color: var(--accent);
margin-bottom: 20px;
}
.I0009898339555755757 p {
color: var(--text-secondary);
}
.I23523500023557 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 60px;
max-width: 1400px;
}
.I00655757 {
background: var(--background);
border-radius: var(--radius-md);
padding: 50px 30px;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
width: 400px;
border: 1px solid transparent;
}
.I00655757:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: rgba(46, 91, 46, 0.2);
}
.I00655757.popular {
border: 2px solid var(--accent);
transform: scale(1.03);
}
.I00655757.popular:hover {
transform: scale(1.05);
}
.I235235057 {
position: absolute;
top: -14px;
background: var(--accent);
color: white;
padding: 4px 20px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}
.I100002357 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 16px;
}
.I235253005723957 {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
margin: 20px 0;
}
.I235253005723957 span {
font-size: 1.2rem;
font-weight: 500;
color: var(--text-secondary);
}
.I05210457 {
list-style: none;
text-align: left;
width: 100%;
margin: 30px 0;
}
.I05210457 li {
padding: 8px 0;
display: flex;
align-items: center;
gap: 12px;
color: var(--text-secondary);
font-size: 0.95rem;
}
.I05210457 li i {
color: var(--accent);
font-size: 1rem;
width: 20px;
text-align: center;
}
.I23249005782857 {
width: 100%;
padding: 14px;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
border: 2px solid var(--accent);
background: transparent;
color: var(--accent);
margin-top: auto;
}
.I23249005782857:hover {
background: var(--accent);
color: white;
}
.I00655757.popular .I23249005782857 {
background: var(--accent);
color: white;
border: none;
}
.I00655757.popular .I23249005782857:hover {
background: var(--accent-hover);
}
.I2352350057 {
text-align: center;
margin-bottom: 60px;
}
.I2352350571113457 {
max-width: 800px;
margin: 0 auto;
}
.I0005757 {
border-bottom: 1px solid var(--border);
padding: 24px 0;
cursor: pointer;
transition: all 0.2s;
}
.I2220110233409057 {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
font-size: 1.1rem;
gap: 20px;
}
.I2220110233409057 i {
font-size: 1.2rem;
color: var(--accent);
transition: transform 0.3s;
}
.I002909257 {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.3s ease;
padding-right: 40px;
color: var(--text-secondary);
line-height: 1.6;
}
.I0005757.open .I002909257 {
max-height: 200px;
padding-top: 16px;
}
.I0005757.open .I2220110233409057 i {
transform: rotate(45deg);
}
.I002345234857 {
background: #1D1D1F;
color: #AEAEB2;
padding: 30px 0;
text-align: center;
font-size: 0.9rem;
}
.I235423509057 p {
color: white;
}
.I5713457002557 {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.C814212457 {
display: flex;
justify-content: center;
align-items: flex-start;
}
.AU-auth-container {
width: 700px;
padding: 35px;
background: #ffffff;
box-shadow: 7px 9px 9px -4px rgba(0, 0, 0, 0.1);
}
.AU-auth-title {
text-align: center;
margin-bottom: 20px;
}
.AU-error {
background: #ffebee;
color: #c62828;
padding: 10px;
border-radius: 6px;
margin-bottom: 15px;
}
.AU-form {
display: flex;
flex-direction: column;
gap: 16px;
}
.AU-field {
display: flex;
flex-direction: column;
gap: 4px;
}
.AU-label {
font-weight: 500;
font-size: 1em;
color: black;
}
.AU-input { padding: 10px 14px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
transition: 0.2s;
}
.AU-input:focus {
border-color: #2196F3;
outline: none;
box-shadow: 0 0 0 2px rgba(33,150,243,0.2);
}
.AU-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
cursor: pointer;
}
.AU-checkbox input {
width: 18px;
height: 18px;
}
.AU2314557 {
color: black;
}
.AU-button {
background: #cf938b;
color: #fff;
padding: 12px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
font-weight: 600;
transition: 0.2s;
}
.AU-button:hover {
background: #b7867f;
}
.AU-button-login, .AU-button-register {
padding: 6px 14px;
font-size: 14px;
text-decoration: none;
border: 1px solid #000000;
color: #000000;
background: transparent;
transition: 0.2s;
}
.AU-button-login:hover, .AU-button-register:hover {
background: white;
color: black;
}
.cabinet-wrapper {
display: flex;
flex-direction: column;
}
.cabinet-content {
display: flex;
flex: 1;
}
.cabinet-sidebar {
width: 260px;
background: #2d3748;
color: #fff;
padding: 20px 0;
box-sizing: border-box;
display: flex;
flex-direction: column;
box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}
.cabinet-sidebar a {
display: flex;
align-items: center;
gap: 10px;
color: #cbd5e0;
padding: 14px 20px;
text-decoration: none;
transition: all 0.2s;
font-size: 16px;
border-left: 3px solid transparent;
}
.cabinet-sidebar a i {
width: 20px;
text-align: center;
}
.cabinet-sidebar a:hover,
.cabinet-sidebar a.active {
background: #4a5568;
color: #fff;
border-left-color: #63b3ed;
}
.cabinet-sidebar form {
padding: 20px;
margin-top: auto;
}
.cabinet-sidebar button.logout {
width: 100%;
padding: 12px;
background: #e53e3e;
color: #fff;
border: none;
cursor: pointer;
border-radius: 6px;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: background 0.2s;
}
.cabinet-sidebar button.logout:hover {
background: #c53030;
}
.cabinet-main {
flex: 1;
padding: 20px;
overflow-y: auto;
background: #f7fafc;
height: calc(100vh - 130px);
min-height: 500px;
}
.flash-success {
background: #c6f6d5;
color: #22543d;
padding: 12px 16px;
border-radius: 8px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
.flash-error {
background: #fed7d7;
color: #822727;
padding: 12px 16px;
border-radius: 8px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
.map-wrapper {
display: flex;
gap: 20px;
height: calc(100vh - 130px);
min-height: 500px;
}
.map-container {
flex: 1;
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#map {
height: 100%;
width: 100%;
}
.map-layer-switcher {
position: absolute;
top: 15px;
right: 15px;
z-index: 1000;
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
display: flex;
gap: 2px;
padding: 4px;
}
.layer-btn {
padding: 8px 14px;
border: none;
background: #f7fafc;
cursor: pointer;
font-size: 14px;
border-radius: 6px;
transition: all 0.2s;
color: #4a5568;
display: flex;
align-items: center;
gap: 4px;
}
.layer-btn i {
font-size: 14px;
}
.layer-btn.active {
background: #3182ce;
color: white;
box-shadow: 0 2px 6px rgba(49,130,206,0.4);
}
.layer-btn:hover:not(.active) {
background: #edf2f7;
}
.map-sidebar {
width: 320px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
display: flex;
flex-direction: column;
overflow: hidden;
}
.sidebar-header {
padding: 16px;
border-bottom: 1px solid #e2e8f0;
background: #f7fafc;
}
.sidebar-header h3 {
margin: 0 0 10px 0;
font-size: 18px;
color: #2d3748;
display: flex;
align-items: center;
gap: 8px;
}
.sidebar-header input {
width: 100%;
padding: 10px 12px;
border: 1px solid #cbd5e0;
border-radius: 8px;
font-size: 14px;
box-sizing: border-box;
transition: border-color 0.2s;
}
.sidebar-header input:focus {
border-color: #3182ce;
outline: none;
}
.sidebar-list {
flex: 1;
overflow-y: auto;
padding: 10px;
}
.plot-card {
background: white;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 12px;
margin-bottom: 10px;
transition: all 0.2s;
cursor: pointer;
}
.plot-card:hover {
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
border-color: #bcd;
transform: translateY(-2px);
}
.plot-card .card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 6px;
}
.plot-card .plot-name {
font-weight: 600;
font-size: 16px;
color: #2d3748;
display: flex;
align-items: center;
gap: 6px;
}
.plot-card .plot-coords {
font-size: 12px;
color: #a0aec0;
margin-top: 4px;
}
.plot-card .plot-desc {
color: #718096;
font-size: 14px;
line-height: 1.4;
margin: 8px 0;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.plot-card .card-actions {
display: flex;
gap: 8px;
margin-top: 10px;
flex-wrap: wrap;
}
.btn {
padding: 8px 16px;
background: #3182ce;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
display: inline-flex;
align-items: center;
gap: 6px;
transition: background 0.2s;
text-decoration: none;
}
.btn i {
font-size: 13px;
}
.btn:hover {
background: #2b6cb0;
}
.btn-outline {
background: white;
border: 1px solid #3182ce;
color: #3182ce;
}
.btn-outline:hover {
background: #ebf8ff;
}
.btn-sm {
padding: 6px 12px;
font-size: 18px;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 2000;
justify-content: center;
align-items: center;
}
.modal.active {
display: flex;
}
.modal-content {
background: #fff;
padding: 25px;
width: 90%;
max-width: 600px;
max-height: 85vh;
overflow-y: auto;
border-radius: 12px;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-close {
position: absolute;
top: -10px;
right: 12px;
font-size: 48px;
cursor: pointer;
color: #718096;
transition: color 0.2s;
}
.modal-close:hover {
color: #e53e3e;
}
.photo-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 10px;
}
.photo-grid img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 8px;
border: 1px solid #e2e8f0;
cursor: pointer;
transition: transform 0.2s;
}
.photo-grid img:hover {
transform: scale(1.05);
}
.work-item {
background: #f7fafc;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 14px;
margin-bottom: 12px;
}
.work-item h4 {
margin: 0 0 8px;
font-size: 16px;
}
.work-meta {
font-size: 13px;
color: #718096;
margin-bottom: 8px;
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.work-photos {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 10px;
}
.work-photos img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 6px;
border: 1px solid #e2e8f0;
cursor: pointer;
}
.tabs {
display: flex;
gap: 12px;
margin: 15px 0;
border-bottom: 1px solid #e2e8f0;
padding-bottom: 10px;
}
.tabs button {
background: none;
border: none;
padding: 8px 16px;
cursor: pointer;
font-size: 14px;
border-radius: 6px 6px 0 0;
color: #4a5568;
transition: all 0.2s;
}
.tabs button.active {
background: #edf2f7;
color: #2d3748;
font-weight: 600;
}
.maps-choice-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 20px;
}
.maps-choice-btn {
padding: 14px;
background: #f7fafc;
border: 1px solid #cbd5e0;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
gap: 12px;
transition: all 0.2s;
}
.maps-choice-btn:hover {
background: #edf2f7;
border-color: #3182ce;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
color: #2d3748;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 14px;
border: 1px solid #cbd5e0;
border-radius: 8px;
font-size: 15px;
}
.plots-list {
list-style: none;
padding: 0;
margin-top: 20px;
}
.plots-list li {
padding: 16px;
border: 1px solid #e2e8f0;
border-radius: 10px;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
background: #fff;
flex-wrap: wrap;
gap: 10px;
transition: box-shadow 0.2s;
}
.plots-list li:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.plots-list .plot-name {
font-weight: 600;
font-size: 24px;
display: flex;
align-items: center;
gap: 6px;
}
.plots-list .plot-desc {
color: #718096;
font-size: 18px;
max-width: 400px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.plot-actions {
display: flex;
gap: 8px;
}
.share-link-field {
background: #f7fafc;
padding: 10px;
border: 1px solid #e2e8f0;
border-radius: 6px;
word-break: break-all;
margin: 10px 0;
font-family: monospace;
font-size: 13px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 8px;
}
.share-link-field button {
white-space: nowrap;
}
.share-link-field .btn-group {
display: flex;
gap: 6px;
}
.qr-container {
text-align: center;
margin: 15px 0;
}
.qr-container img {
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 5px;
background: white;
}
.modal-actions {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 20px;
flex-wrap: wrap;
}
.hint {
font-size: 0.85rem;
color: #718096;
margin-top: 8px;
}
.status-badge {
padding: 4px 10px;
border-radius: 12px;
font-size: 1.0rem;
font-weight: 600;
display: inline-block;
text-align: center;
}
.status-active {
background: #c6f6d5;
color: #22543d;
}
.status-inactive {
background: #fed7d7;
color: #822727;
}
.share-item {
background: #f9fafb;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 12px;
margin-bottom: 12px;
}
.share-item .share-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 10px;
}
.share-item .share-link {
font-family: monospace;
font-size: 16px;
word-break: break-all;
flex: 1;
min-width: 200px;
}
.share-item .share-actions {
display: flex;
gap: 6px;
flex-wrap: wrap;
}
.modal-content p {
font-size: 18px;
}
.btn-danger {
background: red;
}
.btn-danger:hover {
background: #c91e1e;
}
.leaflet-popup-content-wrapper {
background: #ffffff !important;
border-radius: 12px !important;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
padding: 15px !important;
min-width: 300px !important;
min-height: 100px !important;
position: relative;
overflow: visible !important;
}
.leaflet-popup-content button {
width: 90px;
height: 30px;
background: #3182ce;
border: 0;
border-radius: 7px;
color: white;
}
@media (max-width: 1440px) {
.I0000992957 {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.I1234148575757 {
gap: 20px;
margin-top: 10px;
}
.I23523500023557 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 1400px;
}
.I00655757 {
width: 300px;
}
.I100002357 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 10px;
}
.I235253005723957 {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
margin: 10px 0;
}
}
@media (max-width: 1024px) {
.I1240057 {
grid-template-columns: 1fr;
gap: 60px;
}
.I21340230957,
.I213457 {
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
}
.I1234148575757, .I23523500023557 {
grid-template-columns: repeat(2, 1fr);
}
.I2325455230243957 {
grid-template-columns: 1fr;
}
.I0000992957 {
flex-wrap: nowrap;
overflow-x: auto;
justify-content: flex-start;
}
.I00655757.popular {
transform: scale(1);
}
.I2350057 {
width: 80%;
}
.I2314230057 {
width: 100%;
}
.I2314230057 {
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.I2314230057 h1,p {
text-align: center;
}
.I21454057 {
display: flex;
flex-direction: column;
align-items: center;
}
.I124410057 {
width: 60%;
}
.I23123557 {
width: 64px;
height: 64px;
margin-bottom: 20px;
font-size: 1.8rem;
}
h3 {
font-size: 1.7em;
font-weight: 500;
color: black;
}
p {
font-size: 1.2em;
}
.I23523500023557 {
margin-top: 30px;
}
.I5713457002557 {
gap: 5px;
}
.I235253005723957 {
font-size: 1.5rem;
}
.I05210457 {
list-style: none;
text-align: left;
margin: 15px 0;
}
.I05210457 li {
padding: 5px 0;
align-items: center;
gap: 12px;
font-size: 0.8rem;
}
.I21343214057 {
display: flex;
justify-content: center;
flex-direction: column;
}
.map-wrapper {
height: auto;
min-height: 400px;
flex-direction: column;
}
.map-container {
height: 50vh;
min-height: 350px;
}
.map-sidebar {
width: 100%;
max-height: 400px;
order: 2;
}
.cabinet-sidebar {
width: 220px;
}
.cabinet-sidebar a {
padding: 12px 16px;
font-size: 15px;
}
#map {
height: 100%;
width: 100%;
position: absolute;
}
}
@media (max-width: 768px) {
.H23542300057 {
padding: 0 20px;
}
.H235230057 {
display: none;
}
.I2314140057 {
padding: 10% 20px;
}
.I1240057 {
padding: 40px 30px;
}
.I23235057 {
gap: 20px;
}
section {
margin-top: 20px;
min-height: auto;
}
.I0000992957 {
padding: 30px 0 20px;
gap: 10px;
grid-template-columns: repeat(2, 1fr);
}
.I0009898339555755757 i {
font-size: 1.7rem;
color: var(--accent);
margin-bottom: 15px;
}
h3 {
font-size: 1.2em;
font-weight: 500;
color: black;
}
p {
font-size: 1.0em;
}
.I02140124057 {
font-size: 1.2rem;
}
.I1234148575757, .I23523500023557 {
grid-template-columns: repeat(1, 1fr);
}
.I00655757 {
width: 350px;
}
.I124410057 i {
font-size: 2rem;
color: var(--accent);
margin-bottom: 24px;
opacity: 0.8;
}
.I124410057 .I570021909459057 {
font-size: 1.2rem;
font-style: italic;
color: var(--text-primary);
max-width: 200px;
margin: 0 auto;
}
.I124410057 {
padding: 30px;
min-height: 250px;
}
.I124410057 {
width: 80%;
}
.I2350057 {
width: 90%;
}
.I231423557 {
height: 300px;
border-radius: 20px;
}
.I23235057 {
margin-top: 20px;
}
.I21340230957 {
position: static;
}
.I23450900957 {
justify-content: center;
}
.AU-auth-container {
margin: 20px 10px;
padding: 20px;
}
.cabinet-content {
flex-direction: column;
}
.cabinet-sidebar {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding: 10px;
box-shadow: none;
align-content: center;
align-items: center;
}
.cabinet-sidebar a {
padding: 5px 10px;
border-left: none;
border-bottom: 2px solid transparent;
font-size: 14px;
height: 50px;
gap: 5px;
}
.cabinet-sidebar a.active {
border-bottom-color: #63b3ed;
}
.cabinet-sidebar form {
padding: 10px;
margin-top: 0;
margin-left: auto;
}
.cabinet-main {
padding: 15px;
}
.map-wrapper {
gap: 10px;
}
.map-sidebar.hidden {
display: none;
}
.plots-list li {
flex-direction: column;
align-items: flex-start;
}
.plot-actions {
margin-top: 10px;
width: 100%;
justify-content: flex-start;
}
.modal-content {
width: 95%;
padding: 20px;
max-height: 90vh;
}
.photo-grid img {
width: 90px;
height: 90px;
}
.work-photos img {
width: 70px;
height: 70px;
}
.share-link-field {
flex-direction: column;
align-items: flex-start;
}
.share-item .share-header {
flex-direction: column;
align-items: flex-start;
}
.share-item .share-actions {
width: 100%;
}
.cabinet-sidebar button.logout {
padding: 7px;
border-radius: 5px;
font-size: 14px;
gap: 8px;
}
.layer-btn {
font-size: 12px;
}
.leaflet-popup-close-button {
font-size: 48px !important;
}
.leaflet-popup-content-wrapper {
padding: 10px !important;
min-width: 250px !important;
min-height: 100px !important;
}
}
@media (max-width: 600px) {
.AU-auth-container {
box-shadow: none;
margin: 10px 5px 100px 5px;
}
.AU-form {

gap: 5px;
}
.AU-input {
font-size: 14px;
}
.AU-auth-title {
margin-bottom: 5px;
}
}
@media (max-width: 560px) {
.I24234657 {
display: flex;
gap: 10px;
margin-bottom: 30px;
flex-wrap: wrap;
justify-content: center;
}
.I231423557 {
height: 250px;
border-radius: 20px;
}
.I2354235457 {
font-size: 1.0rem;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: black;
}
.I02140124057 {
font-size: 1.0rem;
}
.I2314230057 p {
margin: 15px 0 20px;
}
.I21454057 p {
font-size: 1.0rem;
margin-bottom: 15px;
}
.I12414057 {
font-size: 1.5rem;
}
.I23235057 {
margin-top: 20px;
text-align: center;
}
.I124410057 {
padding: 20px;
min-height: 200px;
}
.I23123557 {
width: 48px;
height: 48px;
margin-bottom: 15px;
font-size: 1.2rem;
}
.I5713457002557 {
gap: 5px;
margin-bottom: 20px;
}
.I21343214057 .I02140124057 {
margin-bottom: 20px;
}
.I23450900957 {
gap: 10px;
margin-bottom: 20px;
}
.input {
padding: 10px 15px;
border-radius: 10px;
}
.I657856783489834757 {
padding: 30px;
gap: 20px;
}
.I2325455230243957 {
gap: 20px;
margin-top: 20px;
}
.I0000992957 {
padding: 20px 0 20px;
gap: 10px;
grid-template-columns: repeat(1, 1fr);
}
.I00655757 {
width: 300px;
}
}
@media (max-width: 480px) {
.cabinet-sidebar a {
font-size: 14px;
padding: 8px 12px;
gap: 6px;
}
.cabinet-sidebar button.logout {
font-size: 14px;
padding: 10px;
}
.map-container {
height: 40vh;
min-height: 250px;
}
.map-layer-switcher {
top: 10px;
right: 10px;
flex-wrap: wrap;
}
.layer-btn {
padding: 6px 10px;
font-size: 12px;
}
.sidebar-header h3 {
font-size: 16px;
}
.plot-card .plot-name {
font-size: 15px;
}
.btn {
font-size: 12px;
padding: 6px 12px;
}
.btn i {
font-size: 12px;
}
.plot-card .card-actions {
gap: 5px;
}
.plots-list .plot-desc {
max-width: 100%;
}
.modal-content {
padding: 15px;
}
.modal-close{
top: -10px;
right: 12px;
font-size: 48px;
}
.tabs {
gap: 8px;
}
.tabs button {
padding: 6px 12px;
font-size: 13px;
}
.maps-choice-btn {
font-size: 14px;
padding: 12px;
}
}
@media (max-width: 425px) {
.I24349057 {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
}