:root {
    --color-primary: rgb(15, 76, 129);
    --color-primary-hover: rgb(127, 200, 68);
    --color-attention: rgb(5, 129, 1);
    --color-attention-hover: rgb(200, 199, 6);
    --color-background: rgb(241, 238, 230);
    --color-links: rgb(55, 56, 56);
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-border: #e5e5e5;
    --color-white: #ffffff;
    --color-black: #000000;
    --main-close-red: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    opacity: 0;
    user-select: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Images/page_logo.webp');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--color-links);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-outline,
.btn-primary {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

.btn-outline {
    background: transparent;
    color: var(--color-links);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(15, 76, 129, 0.05);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-attention {
    background: var(--color-attention);
    color: var(--color-white);
    border-color: var(--color-attention);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-attention:hover {
    background: var(--color-attention-hover);
    border-color: var(--color-attention-hover);
}

.btn-outline svg,
.btn-primary svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

main:not(.app-main) {
    padding-top: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-card ul {
    margin-top: 1rem;
    color: var(--color-text-light);
    list-style: none;
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

.btn-primary, .btn-attention {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--color-border);
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

footer {
    background: var(--color-links);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-primary-hover);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.floating-contact-btn {
    bottom: 30px;
    width: 60px;
    height: 60px;
}

.floating-up-btn {
    bottom: 100px;
    width: 0;
    height: 0;
    transition: 2s all;
}

.floating-up-btn-show {
    width: 60px;
    height: 60px;
}

.floating-contact-btn, .floating-up-btn {
    position: fixed;
    right: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(15, 76, 129, 0.4);
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.floating-contact-btn:hover,.floating-up-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(127, 200, 68, 0.6);
    background: var(--color-primary-hover);
}

.floating-contact-btn svg,.floating-up-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--color-white);
}

.floating-contact-form {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 33vw;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 998;
    display: none;
    animation: slideUp 0.3s ease;
}

.floating-contact-form.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.floating-contact-form .form-group {
    margin-bottom: 1rem;
}

.floating-contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.floating-contact-form .form-group input,
.floating-contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.floating-contact-form .form-group input:focus,
.floating-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.floating-contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.floating-contact-form .btn-primary {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
}

.floating-contact-form .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-form .close-btn:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact-form {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 90px;
    }

    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-links);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .language-switcher {
        position: absolute;
        right: 60px;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }

    body {
        font-size: 16px;
    }

    .services-section {
        padding: 3rem 1.5rem;
    }

    .lang-flag {
        width: 28px;
        height: 20px;
    }
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-selected:hover {
    border-color: var(--color-primary);
}

.lang-selected img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.lang-selected span {
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-arrow {
    margin-left: 0.25rem;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-dropdown.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 120px;
    z-index: 1000;
}

.language-dropdown.active .lang-dropdown-menu {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: var(--color-background);
}

.lang-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.lang-option span {
    font-size: 0.9rem;
}

.auth-button {
    background: transparent;
    color: var(--color-links);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.auth-button svg {
    width: 18px;
    height: 18px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    overflow-y: scroll;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--color-text);
}

.modal .form-group {
    margin-bottom: 1.25rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

.modal .form-group input, .modal .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.modal .form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal .form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.modal .form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal .form-group-checkbox label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    line-height: 1.4;
}

.modal .form-group-checkbox a {
    color: var(--color-primary);
    text-decoration: none;
}

.modal .form-group-checkbox a:hover {
    text-decoration: underline;
}

.modal .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.modal-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

.password-hint {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .language-dropdown {
        position: absolute;
        right: 60px;
    }

    .auth-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 2rem 1.5rem;
        margin: 0 20px;
    }

    .modal h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 0.75rem 1.5rem;
    }

    .nav-center {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-outline span,
    .btn-primary span:not(.lang-arrow) {
        display: none;
    }

    .btn-outline,
    .btn-primary {
        padding: 0.5rem;
        min-width: 36px;
        justify-content: center;
    }

    .language-dropdown {
        position: static;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
}

.h_slider {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.h_slider img {
    width: 0;
    height: 0;
    opacity: 0;
    transition: all 2s;
    position: absolute;
    top: 0;
}

.h_slider img.hero-show {
    width: 100%;
    height: 100%;
    opacity: 1;
}

#quoteModal.modal-overlay {
    z-index: 10000;
}

#quoteModal .modal {
    max-width: 580px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-form .form-group-full {
    grid-column: 1 / 3;
}

.file-upload-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    background: var(--color-background);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 80px;
}

.file-upload-label:hover {
    border-color: var(--color-primary);
    background: rgba(15, 76, 129, 0.03);
}

.file-upload-label.has-file {
    border-style: solid;
    border-color: var(--color-primary);
    background: rgba(15, 76, 129, 0.05);
}

.file-upload-icon {
    font-size: 1.75rem;
    opacity: 0.6;
}

.file-upload-text {
    flex: 1;
    text-align: center;
}

.file-upload-text .main-text {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.file-upload-text .sub-text {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.file-upload-text .file-name {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.25rem;
    word-break: break-all;
}

.file-remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.file-remove-btn:hover {
    background: rgba(0,0,0,0.05);
    color: #e53935;
}

.quote-form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.btn-quote-open {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-quote-open:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form .form-group-full {
        grid-column: 1;
    }

    #quoteModal .modal {
        padding: 2rem 1.5rem;
    }
}

#themes {
    display: inline-flex;
}

.scene {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin: 100px auto;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    animation: rotateCube 10s infinite linear;
}

.face {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    opacity: 0.9;
}

@keyframes rotateCube {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.cube:hover { animation-play-state: paused; }


video {
    border-radius: 6px;
    box-shadow: 6px 3px 9px 0 #000;
    width: 100%;
    max-width: 600px;
}

#float-block {
    height: 33vh;
    overflow: auto;
}

#float-block > div {
    padding: 6px;
    border-radius: 6px;
    width: 70%;
    margin-bottom: 6px;
}

#float-block .human {
    background-color: var(--color-primary);
    color: #ffffff;
    float: right;
}

#float-block .ai {
    background-color: var(--color-primary-hover);
    color: #000000;
    float: left;
}

.section-docs {
    font-size: 18px;
    padding: 4px;
    box-shadow: 9px 11px 8px 0 #cfcfcf;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    display: flex;
}

.footer-contacts p {
    display: flex;
}

.footer-contacts a {
    margin-left: 6px;
}

rtl {
    width: 100%;
    display: block;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.cookie-popup-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    animation: popupFadeIn 0.3s ease-out;
}

.cookie-popup-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #333333;
    font-size: 18px;
}

.cookie-popup-box p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-popup-box p a {
    color: #0066cc;
    text-decoration: underline;
}
.cookie-popup-box p a:hover {
    text-decoration: none;
}

.cookie-popup-actions {
    text-align: right;
}

.cookie-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn:hover {
    background-color: #0052a3;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-accept {
    text-align: center;
    border-radius: 6px;
    border: 1px dotted #c1c1c1;
}

.form-accept-empty {
    border: 2px solid #c1000b;
    box-shadow: 7px 8px 20px 0 #000000;
    background-color: #ffc7c5;
    font-weight: bolder;
}

.required_error {
    border-color: var(--main-close-red) !important;
}