

/* Start:/local/templates/mapkarta_main/css/style.css?17641561695374*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap');

:root {
    --bg-0: #f6f6f6;
    --bg-1: #ffffff;
    --ink-1: #2e2e2e;
    --ink-2: #5c5c5c;
    --ink-3: #8c8c8c;
    --light-green: #b5fbbe;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg-0);
    color: var(--ink-1);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

header {
    color: var(--ink-1);
    padding: 24px 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 32px 32px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.header-right .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 1600px;
}

.btn {
    display: block;
    background: #0074fe;
    height: 40px;
    font-size: 18px;
    color: #fff;
    padding: 4px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn:disabled {
    background: #333;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn:hover {
    background: #015dc8;
}

hr {
    border: none;
    height: 1px;
    background: var(--ink-2);
}

.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 200px auto;
    max-width: 500px;
}

.orders-wrapper {
    padding: 0 16px 24px;
}

.orders-head {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.orders-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.orders-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.orders-content {
    margin: 24px 0;
}


.orders-sort {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: var(--ink-2);
}

.orders-sort label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.orders-sort select {
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}


.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
    background: var(--bg-1);
    color: var(--ink-1);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}

.popup form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 900;
    display: none;
}

.popup-create-order label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-1);
}

.popup-create-order input,
.popup-create-order textarea {
    margin-top: 4px;
    padding: 8px 12px;
    border: 1px solid var(--ink-2);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-create-order textarea {
    resize: none;
}

.popup-create-order input:focus,
.popup-create-order textarea:focus {
    border-color: var(--ink-1);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}

.popup-result .btn {
    margin: 20px auto 0;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s ease;
    color: var(--ink-2);
}

.popup-close svg {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--ink-1);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    z-index: 9999;
}

@media (max-width: 690px) {

    header {
        padding: 24px 16px 0;
    }

    .header-right {
        padding: 0;
    }

    .orders-title {
        font-size: 24px;
    }

    .orders-sort {
        display: flex;
        flex-direction: column;
        font-size: 12px;
    }

    .orders-sort select {
        font-size: 12px;
    }

    .btn {
        font-size: 14px;
    }

    .orders-actions {
        align-items: flex-end;
    }
}

@media (max-width: 480px) {
    .popup-title {
        font-size: 20px;
    }

    .popup {
        max-width: 80%;
        width: 350px;
        padding: 12px 24px;
    }

    .popup-create-order label {
        font-size: 12px;
    }

    .btn {
        height: 36px;
    }
}
/* End */
/* /local/templates/mapkarta_main/css/style.css?17641561695374 */
