

/* Start:/local/templates/unmissedtrip/css/reset.css?17746841651263*/
/* Reset and base styles  */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333;
    background-color: #fff;
}

* {
    padding: 0;
    margin: 0;
    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, article {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: normal;
    margin: 0;
}

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: 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;
}

/* End */


/* Start:/local/templates/unmissedtrip/template_styles.css?177478473320213*/
:root {
    --bg: #eef7ff;
    --bg-soft: #f7fbff;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: #ffffff;
    --text: #10233b;
    --muted: #5f7896;
    --line: rgba(33, 84, 143, 0.12);
    --accent: #2f89d9;
    --accent-dark: #1666b4;
    --accent-soft: #d8ebfb;
    --sky: #8bc8ff;
    --shadow: 0 24px 60px rgba(21, 74, 129, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(76, 169, 255, 0.28), transparent 28%),
    radial-gradient(circle at right 18%, rgba(131, 209, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #f6fbff 0%, var(--bg) 48%, #e5f2ff 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 56px;
    min-height: 100svh;;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #65b8ff);
    color: #fff;
    box-shadow: 0 10px 24px rgba(47, 137, 217, 0.28);
}

.brand-text {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.header-action:hover,
.button:hover {
    opacity: 0.9;
}

.header-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-action {
    min-height: 44px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    padding: 56px 0 36px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h1,
.section-heading h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.hero h1 {
    line-height: 0.98;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    max-width: 11ch;
}

.section-heading h1 {
    line-height: 1.08;
    font-weight: 800;
    font-size: clamp(1.9rem, 2.6vw + 0.45rem, 2.75rem);
}

.section-heading h2 {
    line-height: 1.06;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3.3rem);
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(47, 137, 217, 0.14);
    background: rgba(255, 255, 255, 0.68);
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    font-weight: 700;
}

.button:hover,
.header-action:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.header-auth-actions .button-secondary.selected {
    background: rgba(226, 241, 255, 0.86);
}

.header-auth-actions .button-secondary:hover {
    background: rgba(226, 241, 255, 0.86);
    transition: all .3s;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
}

.hero-stats li {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-card,
.feature-card,
.idea-card,
.plan-summary,
.plan-checklist {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 18px;
}

.trip-preview {
    background: radial-gradient(circle at top right, rgba(139, 200, 255, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 247, 255, 0.96) 100%);
    border-radius: calc(var(--radius-xl) - 6px);
    padding: 26px;
}

.trip-preview-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.card-label {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.88rem;
}

.trip-preview h2 {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.status-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 800;
}

.trip-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0;
}

.route-point {
    min-width: 0;
}

.route-day {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.82rem;
}

.route-point strong {
    display: block;
    font-size: 1.15rem;
}

.route-point small {
    color: var(--muted);
    font-size: 0.88rem;
}

.route-line {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(139, 200, 255, 0.24) 100%);
}

.trip-grid,
.feature-grid,
.ideas-grid,
.plan-layout {
    display: grid;
    gap: 18px;
}

.trip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-grid article {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(33, 84, 143, 0.08);
}

.trip-grid p,
.idea-country {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.88rem;
}

.trip-grid strong {
    display: block;
    margin-bottom: 6px;
}

.trip-grid span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.feature-section,
.ideas-section,
.plan-section {
    padding: 48px 0 0;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 28px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 200, 255, 0.28), transparent 68%);
}

.feature-number {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

.feature-card h3,
.idea-card h3,
.plan-summary h3,
.plan-checklist h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.feature-card p,
.idea-card p,
.plan-summary li,
.plan-checklist li {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.ideas-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.idea-card {
    padding: 26px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.idea-card-accent {
    background: linear-gradient(160deg, rgba(30, 112, 186, 0.94) 0%, rgba(96, 183, 255, 0.9) 100%);
    color: #fff;
}

.idea-card-accent p,
.idea-card-accent .idea-country,
.idea-card-accent .idea-meta span {
    color: rgba(255, 255, 255, 0.84);
}

.idea-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.idea-meta span {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(226, 241, 255, 0.86);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
}

.plan-layout {
    grid-template-columns: 1.15fr 0.85fr;
}

.plan-summary,
.plan-checklist {
    padding: 26px;
}

.plan-summary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(237, 247, 255, 0.88) 100%);
}

.plan-checklist {
    background: linear-gradient(180deg, rgba(244, 251, 255, 0.92) 0%, rgba(228, 241, 255, 0.92) 100%);
}

.plan-summary ul,
.plan-checklist ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 12px;
}

@media (max-width: 1024px) {
    .hero,
    .feature-grid,
    .ideas-grid,
    .plan-layout {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 14ch;
    }
}

/* Список поездок (/trips/, common__trips) */
.trips-page.places-page {
    padding-top: 0;
}

.trips-list {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));*/
    /*gap: 22px;*/
    /*margin-top: 4px;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 4px;
}

a.hero-card.trip-card,
a.trip-card {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.trip-card.trip-card--clickable:focus-visible {
    outline: none;
    box-shadow: var(--shadow), 0 0 0 3px rgba(47, 137, 217, 0.35);
}

.trip-card--clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 64px rgba(21, 74, 129, 0.14);
}

.trips-empty {
    padding: 28px 24px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.trips-empty__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.trips-empty__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.98rem;
}

.trips-pager {
    margin: 22px 0 0;
    grid-column: 1 / -1;
}

.trips-pager--top {
    margin: 0 0 22px;
}

.trips-pager .bx-pagination {
    margin: 0;
}

.trips-pager ul.bx-pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trips-pager ul.bx-pagination-list li {
    margin: 0;
}

.trips-pager ul.bx-pagination-list li span,
.trips-pager ul.bx-pagination-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.trips-pager ul.bx-pagination-list li a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.88);
    color: var(--accent-dark);
}

.trips-pager ul.bx-pagination-list li.bx-active span {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: transparent;
}

@media (max-width: 720px) {
    .trips-list {
        grid-template-columns: 1fr;
    }
}

/* Wish places / news (common__places) */
.places-page {
    padding: 12px 0 40px;
}

/* Шапка списка / раздела мест: явная иерархия и «карточка» в стиле сайта */
header.places-page__head.section-heading {
    gap: 0;
    max-width: none;
    width: 100%;
    margin: clamp(28px, 5vw, 52px) 0 clamp(22px, 3.5vw, 32px);
    padding: clamp(22px, 3.8vw, 34px) clamp(22px, 3.2vw, 36px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(237, 247, 255, 0.78) 45%, rgba(216, 235, 251, 0.35) 100%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

header.places-page__head.section-heading::after {
    content: "";
    position: absolute;
    inset: auto -18% -45% auto;
    width: min(220px, 55vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 200, 255, 0.28), transparent 68%);
    pointer-events: none;
}

header.places-page__head .eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 clamp(8px, 1.2vw, 12px);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
}

header.places-page__head h1,
header.places-page__head h2 {
    position: relative;
    z-index: 1;
    max-width: min(22ch, 100%);
    line-height: 1.1;
    letter-spacing: -0.038em;
    font-size: clamp(1.95rem, 2.3vw + 0.65rem, 2.75rem);
}

header.places-page__head .hero-text.places-page__lead {
    position: relative;
    z-index: 1;
    margin: clamp(12px, 2vw, 18px) 0 0;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.62;
    font-weight: 500;
    color: var(--muted);
}

header.places-page__head .places-page__actions {
    position: relative;
    z-index: 1;
    margin-top: clamp(18px, 2.5vw, 26px);
}

@media (max-width: 720px) {
    header.places-page__head.section-heading {
        padding: 20px 20px 22px;
        border-radius: var(--radius-lg);
    }

    header.places-page__head h1,
    header.places-page__head h2 {
        max-width: none;
        font-size: clamp(1.65rem, 6vw + 0.2rem, 2.2rem);
    }
}

.places-page--detail {
    padding-top: 4px;
}

.places-back {
    margin: 0 0 20px;
}

.places-back__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent-dark);
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.places-back__link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 2px;
}

.places-back__link:hover {
    color: var(--accent);
}

.places-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.header-auth-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.header-action--compact {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.92rem;
}

/* Форма добавления места (/wish-places/add/) */
.places-page--add .places-page__head .places-page__actions {
    margin-top: 14px;
}

.place-form {
    padding: 28px 30px 32px;
    max-width: 720px;
    margin-top: 8px;
}

.place-form-alert {
    padding: 20px 22px;
    max-width: 720px;
    margin-bottom: 18px;
}

.place-form-alert--error {
    border: 1px solid rgba(192, 57, 43, 0.35);
    background: rgba(255, 235, 238, 0.55);
}

.place-form-alert--error p {
    margin: 0 0 8px;
    color: #6e1f16;
    font-weight: 600;
    line-height: 1.45;
}

.place-form-alert--error p:last-child {
    margin-bottom: 0;
}

.place-form__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.place-form__field {
    display: grid;
    gap: 8px;
    align-content: start;
}

.place-form__field--full {
    grid-column: 1 / -1;
}

.place-form__label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.place-form__input,
.place-form__textarea {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.place-form__input:focus,
.place-form__textarea:focus {
    outline: none;
    border-color: rgba(47, 137, 217, 0.45);
    box-shadow: 0 0 0 3px rgba(47, 137, 217, 0.18);
}

.place-form__textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.55;
}

/* Кастомная зона загрузки файла */
.place-form__field--upload .place-form__hint {
    margin-top: 6px;
}

.place-form__upload-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.place-form__upload-surface {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(33, 84, 143, 0.22);
    background: linear-gradient(148deg, rgba(255, 255, 255, 0.78) 0%, rgba(216, 235, 251, 0.4) 55%, rgba(255, 255, 255, 0.65) 100%);
    min-height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 22px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
    overflow: hidden;
}

.place-form__upload-box:hover .place-form__upload-surface,
.place-form__upload-box:focus-within .place-form__upload-surface {
    border-color: rgba(47, 137, 217, 0.45);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(47, 137, 217, 0.16);
    background: linear-gradient(148deg, rgba(255, 255, 255, 0.92) 0%, rgba(216, 235, 251, 0.55) 50%, rgba(255, 255, 255, 0.8) 100%);
}

.place-form__upload-box--drag .place-form__upload-surface {
    border-style: solid;
    border-color: var(--accent);
    background: linear-gradient(148deg, rgba(216, 235, 251, 0.72) 0%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow: 0 14px 36px rgba(21, 74, 129, 0.12);
    transform: scale(1.008);
}

.place-form__upload-box--has-file .place-form__upload-surface {
    border-style: solid;
    border-color: rgba(47, 137, 217, 0.32);
}

.place-form__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    font-size: 0;
}

.place-form__upload-ui {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    pointer-events: none;
}

.place-form__upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--accent-soft));
    color: var(--accent-dark);
    box-shadow: 0 10px 26px rgba(47, 137, 217, 0.2);
}

.place-form__upload-icon svg {
    display: block;
}

.place-form__upload-title {
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.place-form__upload-sub {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.45;
    max-width: 280px;
}

.place-form__upload-filename {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--accent-dark);
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    align-self: flex-start;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.place-form__hint {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.place-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.place-form-alert[hidden] {
    display: none !important;
}

.place-form__submit.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 16px;
    }

    .site-header {
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 28px;
        position: static;
    }

    .hero {
        padding-top: 28px;
    }

    .trip-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .place-form {
        padding: 22px 20px 26px;
    }

    .place-form__grid {
        grid-template-columns: 1fr;
    }

    .header-auth-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* End */


/* Start:/local/templates/unmissedtrip/components/bitrix/menu/top-menu/style.min.css?1774776152490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/unmissedtrip/components/bitrix/menu/top-menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */
/* /local/templates/unmissedtrip/css/reset.css?17746841651263 */
/* /local/templates/unmissedtrip/template_styles.css?177478473320213 */
/* /local/templates/unmissedtrip/components/bitrix/menu/top-menu/style.min.css?1774776152490 */
