:root {
    --guide-accent: #bf6430;
    --guide-accent-strong: #8f3f1a;
    --guide-accent-soft: #ffc48d;
    --guide-page-text: #fffaf6;
    --guide-page-muted: rgba(255, 250, 246, 0.78);
    --guide-glass: rgba(66, 24, 11, 0.58);
    --guide-glass-strong: rgba(74, 27, 12, 0.78);
    --guide-glass-border: rgba(255, 210, 176, 0.22);
    --guide-glass-highlight: rgba(255, 244, 234, 0.15);
    --guide-glass-shadow: rgba(43, 10, 2, 0.62);
    --guide-card: rgba(255, 253, 249, 0.86);
    --guide-card-text: #251812;
    --guide-card-muted: #75665d;
    --guide-card-border: rgba(126, 61, 30, 0.16);
    --guide-input: rgba(255, 255, 255, 0.9);
    --guide-input-text: #251812;
    --guide-input-border: rgba(255, 226, 205, 0.22);
    --guide-pill-language-bg: rgba(191, 100, 48, 0.1);
    --guide-pill-language-border: rgba(191, 100, 48, 0.2);
    --guide-pill-activity-bg: rgba(31, 111, 120, 0.1);
    --guide-pill-activity-border: rgba(31, 111, 120, 0.2);
    --guide-profile-panel: rgba(255, 253, 249, 0.82);
    --guide-theme-duration: 800ms;
    --guide-theme-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
    --guide-accent: #c4ff38;
    --guide-accent-strong: #35d04f;
    --guide-accent-soft: #d8ff7d;
    --guide-page-text: #f3fbff;
    --guide-page-muted: rgba(225, 232, 227, 0.78);
    --guide-glass: rgba(3, 22, 10, 0.62);
    --guide-glass-strong: rgba(2, 18, 8, 0.82);
    --guide-glass-border: rgba(196, 255, 56, 0.17);
    --guide-glass-highlight: rgba(211, 255, 149, 0.12);
    --guide-glass-shadow: rgba(0, 0, 0, 0.76);
    --guide-card: rgba(4, 20, 10, 0.86);
    --guide-card-text: #f3fbff;
    --guide-card-muted: #aebbb1;
    --guide-card-border: rgba(196, 255, 56, 0.15);
    --guide-input: rgba(2, 12, 6, 0.82);
    --guide-input-text: #f3fbff;
    --guide-input-border: rgba(196, 255, 56, 0.17);
    --guide-pill-language-bg: rgba(196, 255, 56, 0.1);
    --guide-pill-language-border: rgba(196, 255, 56, 0.2);
    --guide-pill-activity-bg: rgba(53, 208, 79, 0.1);
    --guide-pill-activity-border: rgba(53, 208, 79, 0.2);
    --guide-profile-panel: rgba(4, 20, 10, 0.84);
}

body.tour-guides-page {
    min-height: 100vh;
    color: var(--guide-page-text);
    background: var(--home-bg);
    transition:
        color var(--guide-theme-duration) var(--guide-theme-ease),
        background var(--guide-theme-duration) var(--guide-theme-ease);
}

.tour-guides-page [hidden] {
    display: none !important;
}

.tour-guides-page .tour-guides-home-mesh {
    position: fixed;
}

.tour-guides-page .accommodation-header {
    position: relative;
    z-index: 5;
    background: transparent;
}

.tour-guides-page main {
    position: relative;
    z-index: 1;
}

.tour-guide-profile-mode .tour-guides-hero,
.tour-guide-profile-mode .tour-guides-results-header,
.tour-guide-profile-mode #tourGuideGrid {
    display: none !important;
}

.tour-guide-profile-mode .tour-guides-shell {
    padding-top: clamp(96px, 13vh, 132px);
}

.tour-guide-profile-mode #tourGuideProfile {
    display: block;
}

.tour-guides-hero {
    width: min(100%, 1440px);
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    margin: 0 auto;
    padding: clamp(104px, 14vh, 152px) var(--stay-page-gutter) clamp(52px, 7vw, 88px);
    color: var(--guide-page-text);
}

.tour-guides-hero-copy {
    max-width: 720px;
}

.tour-guides-hero .eyebrow {
    margin: 0 0 14px;
    color: var(--guide-accent-soft);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-guides-hero h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--guide-page-text);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(2.5rem, 5.6vw, 5.2rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.tour-guides-hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 0;
    color: var(--guide-page-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 650;
    line-height: 1.65;
}

.tour-guides-search-card {
    position: relative;
    isolation: isolate;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid var(--guide-glass-border);
    border-radius: 8px;
    background: var(--guide-glass);
    box-shadow:
        0 34px 78px -34px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
    padding: clamp(18px, 2.5vw, 26px);
    color: var(--guide-page-text);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    transition:
        background var(--guide-theme-duration) var(--guide-theme-ease),
        border-color var(--guide-theme-duration) var(--guide-theme-ease),
        box-shadow var(--guide-theme-duration) var(--guide-theme-ease);
}

.tour-guides-search-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 46%;
    background: linear-gradient(180deg, var(--guide-glass-highlight), transparent);
    pointer-events: none;
}

.tour-guides-search-card label {
    position: relative;
    min-width: 0;
    display: grid;
    gap: 8px;
    color: var(--guide-page-muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tour-guides-search-card label.is-custom-select-open {
    z-index: 45;
}

.tour-guides-search-card label:first-child {
    grid-column: 1 / -1;
}

.tour-guides-search-card input,
.tour-guide-select-trigger {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--guide-input-border);
    border-radius: 8px;
    outline: none;
    background: var(--guide-input);
    color: var(--guide-input-text);
    padding: 12px 14px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 750;
    text-transform: none;
    transition:
        background var(--guide-theme-duration) var(--guide-theme-ease),
        color var(--guide-theme-duration) var(--guide-theme-ease),
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.tour-guide-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-inline: 16px 20px;
    font-size: 0.84rem;
    line-height: 1.25;
    text-align: start;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.tour-guides-search-card input::placeholder {
    color: color-mix(in srgb, var(--guide-input-text) 55%, transparent);
}

.tour-guides-search-card input:focus,
.tour-guide-select-trigger:focus-visible,
.tour-guide-custom-select.is-open .tour-guide-select-trigger {
    border-color: var(--guide-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--guide-accent) 20%, transparent);
}

.tour-guide-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.tour-guide-custom-select {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-transform: none;
}

.tour-guide-custom-select.is-open {
    z-index: 40;
}

.tour-guide-select-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-guide-select-chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-inline: 0 3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.82;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 220ms ease, opacity 180ms ease;
}

.tour-guide-custom-select.is-open .tour-guide-select-chevron {
    opacity: 1;
    transform: translateY(2px) rotate(225deg);
}

.tour-guide-select-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 50;
    display: grid;
    gap: 3px;
    max-height: 252px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--nav-dropdown-border, var(--guide-glass-border));
    border-radius: 18px;
    background: var(--nav-dropdown-bg, var(--guide-glass-strong));
    box-shadow:
        0 24px 54px -18px var(--nav-dropdown-shadow, var(--guide-glass-shadow)),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    color: var(--nav-dropdown-text, var(--guide-page-text));
    backdrop-filter: blur(30px) saturate(170%);
    -webkit-backdrop-filter: blur(30px) saturate(170%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px) scale(0.98);
    transform-origin: top center;
    transition:
        opacity 180ms ease,
        transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 240ms,
        background var(--guide-theme-duration) var(--guide-theme-ease),
        border-color var(--guide-theme-duration) var(--guide-theme-ease),
        box-shadow var(--guide-theme-duration) var(--guide-theme-ease);
}

.tour-guide-custom-select.is-open .tour-guide-select-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.tour-guide-select-option {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-radius: 11px;
    outline: none;
    background: transparent;
    color: var(--nav-dropdown-text, var(--guide-page-text));
    padding: 10px 12px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 780;
    line-height: 1.3;
    text-align: start;
    text-transform: none;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tour-guide-select-option:hover,
.tour-guide-select-option:focus-visible,
.tour-guide-select-option.is-selected {
    background: var(--nav-dropdown-hover, rgba(255, 255, 255, 0.08));
    color: var(--nav-icon-active, var(--guide-accent-soft));
}

.tour-guide-select-option:active {
    transform: scale(0.985);
}

.tour-guides-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 0 var(--stay-page-gutter) 128px;
}

.tour-guides-results-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    margin-bottom: 18px;
}

.tour-guides-results-header p {
    margin: 0;
    color: var(--guide-page-text);
    font-size: 0.9rem;
    font-weight: 800;
}

.tour-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.tour-guide-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--guide-card-border);
    border-radius: 8px;
    background: var(--guide-card);
    box-shadow:
        0 24px 52px -30px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition:
        transform 220ms ease,
        background var(--guide-theme-duration) var(--guide-theme-ease),
        border-color var(--guide-theme-duration) var(--guide-theme-ease),
        box-shadow 220ms ease;
}

.tour-guide-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 34px 68px -28px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
}

.tour-guide-card a {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    color: inherit;
    text-decoration: none;
}

.tour-guide-card-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background:
        radial-gradient(circle at 24% 20%, color-mix(in srgb, var(--guide-accent) 24%, transparent), transparent 30%),
        linear-gradient(135deg, rgba(191, 100, 48, 0.18), rgba(31, 111, 120, 0.18));
}

.tour-guide-card-photo::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, rgba(18, 8, 3, 0.38));
    pointer-events: none;
}

.tour-guide-card-photo img,
.tour-guide-profile-photo img,
.tour-guide-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.tour-guide-card-photo img {
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-guide-card:hover .tour-guide-card-photo img {
    transform: scale(1.035);
}

.tour-guide-card-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background: rgba(255, 253, 249, 0.88);
    box-shadow: 0 10px 26px rgba(28, 9, 2, 0.22);
    color: #8f3f1a;
    padding: 6px 9px;
    font-size: 0.72rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tour-guide-card-badge .material-icons {
    font-size: 16px;
}

.tour-guide-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.tour-guide-card h3 {
    margin: 0;
    color: var(--guide-card-text);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.tour-guide-title {
    margin: 0;
    color: var(--guide-accent);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.45;
}

.tour-guide-summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--guide-card-muted);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tour-guide-language-row,
.tour-guide-activity-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tour-guide-language-pill,
.tour-guide-activity-pill {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.2;
}

.tour-guide-language-pill {
    border-color: var(--guide-pill-language-border);
    background: var(--guide-pill-language-bg);
    color: var(--guide-accent);
}

.tour-guide-activity-pill {
    border-color: var(--guide-pill-activity-border);
    background: var(--guide-pill-activity-bg);
    color: var(--guide-accent-strong);
}

.tour-guide-open {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    border-radius: 8px;
    background: var(--guide-accent);
    box-shadow: 0 12px 26px -14px var(--guide-glass-shadow);
    color: var(--ej-page-button-text, #fffaf6);
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 900;
    transition: filter 180ms ease, transform 180ms ease;
}

.tour-guide-card:hover .tour-guide-open {
    filter: brightness(1.06);
}

.tour-guide-open .material-icons {
    font-size: 18px;
}

.tour-guide-open.is-rtl {
    direction: rtl;
}

.tour-guide-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--guide-glass-border);
    border-radius: 8px;
    background: var(--guide-glass);
    box-shadow: 0 24px 52px -30px var(--guide-glass-shadow);
    color: var(--guide-page-text);
    padding: 28px;
    font-weight: 800;
    text-align: center;
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.tour-guide-profile {
    display: grid;
    gap: 14px;
}

.tour-guide-profile-toolbar {
    display: flex;
    justify-content: flex-start;
    direction: ltr;
}

.tour-guide-profile-card {
    overflow: hidden;
    border: 1px solid var(--guide-card-border);
    border-radius: 8px;
    background: var(--guide-profile-panel);
    box-shadow:
        0 34px 78px -34px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    transition:
        background var(--guide-theme-duration) var(--guide-theme-ease),
        border-color var(--guide-theme-duration) var(--guide-theme-ease);
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(18px, 3vw, 34px);
}

.tour-guide-profile-media {
    display: grid;
    gap: 12px;
    align-content: start;
}

.tour-guide-profile-photo {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--guide-card-border);
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 20%, color-mix(in srgb, var(--guide-accent) 24%, transparent), transparent 30%),
        linear-gradient(135deg, rgba(191, 100, 48, 0.18), rgba(31, 111, 120, 0.18));
}

.tour-guide-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: thin;
}

.tour-guide-thumb {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    overflow: hidden;
    border: 1px solid var(--guide-card-border);
    border-radius: 8px;
    background: var(--guide-card);
    padding: 0;
    cursor: pointer;
}

.tour-guide-thumb.is-active {
    outline: 3px solid color-mix(in srgb, var(--guide-accent) 38%, transparent);
}

.tour-guide-thumb.is-hidden {
    display: none;
}

.tour-guide-profile-content {
    display: grid;
    gap: 18px;
    align-content: start;
    min-width: 0;
}

.tour-guide-back {
    width: fit-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--guide-glass-border);
    border-radius: 8px;
    background: var(--guide-glass-strong);
    box-shadow:
        0 18px 34px -22px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
    color: var(--guide-page-text);
    padding: 7px 15px 7px 8px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background var(--guide-theme-duration) var(--guide-theme-ease),
        color var(--guide-theme-duration) var(--guide-theme-ease);
}

.tour-guide-back:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--guide-accent) 45%, var(--guide-glass-border));
    box-shadow:
        0 22px 40px -22px var(--guide-glass-shadow),
        inset 0 1px 0 var(--guide-glass-highlight);
}

.tour-guide-back:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--guide-accent) 42%, transparent);
    outline-offset: 3px;
}

.tour-guide-back .material-icons {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--guide-accent);
    color: #fffaf6;
    font-size: 19px;
    transition: transform 220ms ease, background var(--guide-theme-duration) var(--guide-theme-ease);
}

html[data-theme="dark"] .tour-guide-back .material-icons {
    color: #071008;
}

.tour-guide-profile-content .eyebrow {
    margin: 0 0 8px;
    color: var(--guide-accent);
}

.tour-guide-profile-content h2 {
    margin: 0;
    color: var(--guide-card-text);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
}

.tour-guide-description {
    color: var(--guide-card-muted);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
    white-space: pre-line;
}

.tour-guide-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.tour-guide-contact {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--guide-card-border);
    border-radius: 8px;
    background: var(--guide-card);
    box-shadow: 0 12px 26px -18px var(--guide-glass-shadow);
    color: var(--guide-accent);
    padding: 10px 14px;
    font-weight: 900;
    text-decoration: none;
}

.tour-guide-contact.is-primary {
    border-color: transparent;
    background: var(--guide-accent);
    color: var(--ej-page-button-text, #fffaf6);
}

.tour-guide-contact .material-icons {
    font-size: 18px;
}

html[data-language="ar"] .tour-guides-page {
    direction: rtl;
}

html[data-language="ar"] .tour-guide-language-row,
html[data-language="ar"] .tour-guide-activity-row,
html[data-language="ar"] .tour-guide-contact-grid {
    direction: rtl;
}

html[data-language="ar"] .tour-guide-card-badge {
    right: 12px;
    left: auto;
}

html[data-language="ar"] .tour-guide-back {
    direction: rtl;
    padding: 7px 8px 7px 15px;
}

html[data-language="ar"] .tour-guide-back .material-icons {
    transform: rotate(180deg);
}

@media (max-width: 980px) {
    .tour-guides-hero,
    .tour-guide-profile-card {
        grid-template-columns: 1fr;
    }

    .tour-guides-hero {
        min-height: auto;
        padding-top: 112px;
    }

    .tour-guides-hero-copy {
        max-width: 820px;
    }
}

@media (max-width: 680px) {
    .tour-guides-hero,
    .tour-guides-shell {
        padding-right: 16px;
        padding-left: 16px;
    }

    .tour-guides-hero {
        gap: 26px;
        padding-bottom: 42px;
    }

    .tour-guides-search-card {
        grid-template-columns: 1fr;
    }

    .tour-guides-search-card label:first-child {
        grid-column: auto;
    }

    .tour-guide-grid {
        grid-template-columns: 1fr;
    }

    .tour-guide-profile-card {
        padding: 14px;
    }

    .tour-guide-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-guide-card,
    .tour-guide-card-photo img,
    .tour-guide-open,
    .tour-guide-back,
    .tour-guide-back .material-icons,
    .tour-guide-select-trigger,
    .tour-guide-select-chevron,
    .tour-guide-select-panel,
    .tour-guide-select-option {
        transition: none;
    }
}
