/* ==========================================================
   Faculdade Malta (sede) — camada base do site
   (tokens, tipografia, header, menu, rodapé, botões)

   Identidade: SOMENTE vermelho e branco. Tons escuros e claros
   são derivados do próprio vermelho (vinho e rosado) — nada de
   cinza, preto ou azul.

   Linguagem própria da sede: editorial premium — títulos em serifa
   (Fraunces, com itálico de destaque) + texto em Manrope, header em
   dois andares (marca branca + barra vermelha), corte diagonal "/"
   como assinatura e rodapé vinho.
   (Picos = editorial/cartaz; Barão = imersivo/arredondado.)

   Convive com bootstrap / style.css / main.css, que as demais
   páginas ainda usam; por isso as classes daqui têm nomes
   próprios (hdr-*, menu-*, btn-s, site-*) para não colidir.
   ========================================================== */

:root {
    --red: #ba1016;
    --red-strong: #a00d13;
    --red-deep: #7c0a0e;
    --ink: #2e0709;
    --ink-soft: #7c4245;
    --tint: #fff5f5;
    --tint-2: #fde5e4;
    --line: #f1d5d4;
    --white: #fff;

    --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --display: "Fraunces", Georgia, "Times New Roman", serif;
    --red-night: #5c070a;
    --wrap: 80rem;
    --gutter: clamp(1rem, 4vw, 2.5rem);
    --header-h: 7.5rem;
    --r: .875rem;
    --r-lg: 1.375rem;
    --ease: cubic-bezier(.2, .75, .25, 1);
    --shadow-sm: 0 .35rem 1rem rgba(124, 10, 14, .07);
    --shadow: 0 1.25rem 2.75rem rgba(124, 10, 14, .14);
}

/* ===================== BASE ===================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body.site-sede {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

.site-sede :is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--display);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.02em;
}

.site-sede .btn {
    font-family: var(--font);
}

.site-sede .btn-danger,
.site-sede .btn-primary {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
    border-radius: var(--r);
}

.site-sede .btn-danger:hover,
.site-sede .btn-primary:hover {
    background-color: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
}

::selection {
    background: var(--red);
    color: var(--white);
}

.site-sede :focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    background: var(--red);
    color: var(--white);
    padding: .75rem 1rem;
    border-radius: var(--r);
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}

.skip-link:focus {
    top: 1rem;
    color: var(--white);
}

/* assinatura: barra diagonal "/" */
.slash {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin: 0 0 .9rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
}

.slash::before {
    content: "";
    width: .45rem;
    height: 1.15rem;
    background: var(--red);
    transform: skewX(-22deg);
}

.slash.on-red {
    color: var(--white);
}

.slash.on-red::before {
    background: var(--white);
}

/* Kicker das páginas internas (legado .section-title) no novo estilo */
.site-sede .section-title {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font);
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red) !important;
    background: transparent !important;
    padding: 0 !important;
}

.site-sede .section-title::before {
    content: "";
    position: static;
    display: inline-block;
    width: .45rem;
    height: 1.15rem;
    border: 0;
    background: var(--red);
    transform: skewX(-22deg);
}

.site-sede .section-title::after {
    display: none !important;
}

/* ===================== BOTÕES ===================== */
.btn-s {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    padding: .95rem 1.45rem;
    border: 2px solid transparent;
    border-radius: var(--r);
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}

.btn-s i {
    transition: transform .2s var(--ease);
}

.btn-s:hover i.bi-arrow-right,
.btn-s:hover i.bi-arrow-up-right {
    transform: translateX(.2rem);
}

.btn-s:active {
    transform: translateY(1px);
}

.btn-red {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 .5rem 1.2rem rgba(186, 16, 22, .25);
}

.btn-red:hover,
.btn-red:focus-visible {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
}

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

.btn-line:hover,
.btn-line:focus-visible {
    background: var(--red);
    color: var(--white);
}

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

.btn-white:hover,
.btn-white:focus-visible {
    background: var(--tint-2);
    border-color: var(--tint-2);
    color: var(--red-deep);
}

.btn-line-white {
    background: transparent;
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
}

.btn-line-white:hover,
.btn-line-white:focus-visible {
    background: var(--white);
    border-color: var(--white);
    color: var(--red);
}

.btn-sm {
    padding: .7rem 1.05rem;
    font-size: .92rem;
}

/* ===================== HEADER (dois andares) ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    transition: box-shadow .3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 .75rem 2rem rgba(124, 10, 14, .14);
}

.hdr-top-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 4.5rem;
}

.brand {
    flex: 0 0 auto;
    display: block;
}

.brand img {
    display: block;
    height: clamp(1.9rem, 3vw, 2.3rem);
    width: auto;
}

.hdr-utils {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-left: auto;
}

.hdr-utils a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .2s ease;
}

.hdr-utils a i {
    color: var(--red);
}

.hdr-utils a:hover {
    color: var(--red);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.header-cta {
    padding: .75rem 1.15rem;
    font-size: .95rem;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: .35rem;
    height: 2.75rem;
    padding: 0 .9rem;
    border: 2px solid var(--line);
    border-radius: var(--r);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.35rem;
    color: var(--red);
}

/* andar 2: barra vermelha */
.hdr-nav {
    background: var(--red);
}

.sheet-handle,
.menu-sheet-cta {
    display: none;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .15rem;
    height: 3rem;
}

.menu-link,
.menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 3rem;
    padding: 0 .95rem;
    background: none;
    border: 0;
    font-family: var(--font);
    font-size: .97rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease;
}

.menu-link:hover,
.menu-trigger:hover,
.menu-group.is-open > .menu-trigger {
    background: var(--red-deep);
    color: var(--white);
}

.menu-trigger i {
    font-size: .72rem;
    transition: transform .25s ease;
}

.menu-group {
    position: relative;
}

.menu-group.is-cta {
    margin-left: auto;
}

.menu-group.is-cta > .menu-trigger {
    height: 2.2rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--red);
    font-weight: 700;
}

.menu-group.is-cta > .menu-trigger:hover,
.menu-group.is-cta.is-open > .menu-trigger {
    background: var(--tint-2);
    color: var(--red-deep);
}

.menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    min-width: 16rem;
    padding: .5rem;
    background: var(--white);
    border-radius: 0 0 var(--r) var(--r);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--red-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(.4rem);
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
}

.menu-group.is-cta .menu-panel {
    left: auto;
    right: 0;
    top: calc(100% + .4rem);
    border-radius: var(--r);
}

.menu-panel a {
    position: relative;
    display: block;
    padding: .55rem .8rem .55rem 1.3rem;
    border-radius: .55rem;
    font-size: .95rem;
    line-height: 1.35;
    color: var(--ink);
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.menu-panel a::before {
    content: "";
    position: absolute;
    left: .6rem;
    top: 50%;
    width: .22rem;
    height: .7rem;
    background: var(--line);
    transform: translateY(-50%) skewX(-22deg);
    transition: background .15s ease;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
    background: var(--tint);
    color: var(--red);
}

.menu-panel a:hover::before {
    background: var(--red);
}

.menu-panel-title {
    margin: .5rem .8rem .3rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
}

.menu-panel.is-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 .5rem;
    min-width: 32rem;
}

.menu-group.is-open > .menu-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.menu-group.is-open > .menu-trigger i {
    transform: rotate(180deg);
}

@media (hover: hover) and (min-width: 1100px) {
    .menu-group:hover > .menu-panel {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1025;
    background: rgba(46, 7, 9, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

@media (max-width: 1279.98px) {
    .hdr-utils a:nth-child(3) {
        display: none;
    }
}

/* ---------- mobile: menu vira "bottom sheet" ---------- */
@media (max-width: 1099.98px) {
    :root {
        --header-h: 4.25rem;
    }

    .hdr-top-inner {
        height: 4.25rem;
        gap: .75rem;
    }

    .hdr-utils {
        display: none;
    }

    .hdr-actions {
        margin-left: auto;
    }

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

    html.menu-open .menu-toggle {
        background: var(--red);
        border-color: var(--red);
        color: var(--white);
    }

    html.menu-open .menu-toggle i {
        color: var(--white);
    }

    .hdr-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
        max-height: calc(100dvh - 5rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--white);
        border-radius: 1.5rem 1.5rem 0 0;
        border-top: 4px solid var(--red);
        box-shadow: 0 -1.5rem 3rem rgba(46, 7, 9, .25);
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
        transform: translateY(105%);
        visibility: hidden;
        transition: transform .45s var(--ease), visibility .45s;
    }

    html.menu-open {
        overflow: hidden;
    }

    html.menu-open .hdr-nav {
        transform: none;
        visibility: visible;
    }

    html.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .sheet-handle {
        display: block;
        width: 3rem;
        height: .3rem;
        margin: .7rem auto .3rem;
        border-radius: 999px;
        background: var(--line);
    }

    .menu-list {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 0;
    }

    .menu-link,
    .menu-trigger {
        width: 100%;
        height: auto;
        justify-content: space-between;
        padding: .95rem .25rem;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-size: 1.15rem;
        font-weight: 600;
    }

    .menu-link:hover,
    .menu-trigger:hover,
    .menu-group.is-open > .menu-trigger {
        background: none;
        color: var(--red);
    }

    .menu-trigger i {
        color: var(--red);
        font-size: .9rem;
    }

    .menu-group.is-cta {
        margin-left: 0;
    }

    .menu-group.is-cta > .menu-trigger {
        height: auto;
        padding: .95rem .25rem;
        border-radius: 0;
        background: none;
        color: var(--red);
    }

    .menu-panel,
    .menu-panel.is-wide,
    .menu-group.is-cta .menu-panel {
        position: static;
        display: none;
        min-width: 0;
        margin: .35rem 0 .75rem;
        padding: .35rem;
        border: 0;
        border-radius: var(--r);
        background: var(--tint);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .menu-group.is-open > .menu-panel {
        display: block;
    }

    .menu-sheet-cta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .6rem;
        padding-top: 1.25rem;
    }

    .menu-sheet-cta .btn-s {
        padding-inline: .75rem;
        font-size: .95rem;
    }
}

@media (max-width: 479.98px) {
    .brand img {
        height: 1.75rem;
    }

    .header-cta {
        padding: .65rem .8rem;
        font-size: .9rem;
    }

    .header-cta i,
    .menu-toggle span {
        display: none;
    }

    .menu-toggle {
        padding: 0 .6rem;
    }
}

@media (max-width: 339.98px) {
    .header-cta {
        display: none;
    }
}

/* Páginas de inscrição usam cabeçalho próprio (.navbar-incricao) */
body:has(.navbar-incricao) .site-header {
    display: none;
}

/* ===================== RODAPÉ (vinho) ===================== */
/* .site-footer zera as regras genéricas de `footer` do main.css */
.site-footer {
    position: relative;
    isolation: isolate;
    display: block;
    max-width: none;
    margin: clamp(3rem, 6vw, 5rem) 0 0;
    padding: 0;
    gap: 0;
    background: var(--red-deep);
    color: var(--white);
    text-align: left;
    overflow: hidden;
}

/* faixas diagonais como textura */
.site-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -4rem;
    width: 30rem;
    height: 100%;
    background: repeating-linear-gradient(-68deg, transparent 0 1.8rem, rgba(255, 255, 255, .045) 1.8rem 3rem);
    pointer-events: none;
}

.site-footer a:not(.btn-s) {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer a:not(.btn-s):hover {
    color: var(--white);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem 3rem;
    padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-statement {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 5.2vw, 4.25rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
}

.footer-statement em {
    display: block;
    font-style: italic;
    font-weight: 500;
    color: var(--tint-2);
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)) auto;
    gap: 2.5rem 2rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand img {
    display: block;
    width: 10.5rem;
    height: auto;
    margin-bottom: 1.1rem;
}

.footer-brand > p {
    max-width: 22rem;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.footer-contact {
    list-style: none;
    display: grid;
    gap: .7rem;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: .95rem;
}

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}

.footer-contact i {
    margin-top: .15rem;
    color: var(--tint-2);
}

.footer-social {
    display: flex;
    gap: .5rem;
}

.site-footer .footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    transition: background .2s ease, color .2s ease;
}

.site-footer .footer-social a:hover {
    background: var(--white);
    color: var(--red);
}

.site-footer .footer-col h3 {
    margin: 0 0 1rem;
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.footer-col a {
    font-size: .96rem;
}

.footer-emec img {
    display: block;
    width: 7rem;
    height: auto;
    border: 3px solid var(--white);
    border-radius: var(--r);
}

.footer-bar {
    background: var(--red-night);
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.footer-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .4rem 1.5rem;
    padding-block: 1.1rem;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 479.98px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-cta .btn-s {
        flex: 1 1 100%;
    }
}

/* ===================== FLUTUANTES ===================== */
.wa-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1020;
    display: flex;
    align-items: center;
    gap: .55rem;
    height: 3.5rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 .8rem 1.8rem rgba(124, 10, 14, .35);
    transition: background .2s ease, transform .25s var(--ease);
}

.wa-float i {
    font-size: 1.55rem;
}

.wa-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .35s var(--ease);
}

.wa-float:hover,
.wa-float:focus-visible {
    background: var(--red-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.wa-float:hover span,
.wa-float:focus-visible span {
    max-width: 12rem;
}

.to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 5.2rem;
    z-index: 1020;
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-items: center;
    padding: 0;
    border: 2px solid var(--red);
    border-radius: var(--r);
    background: var(--white);
    color: var(--red);
    font-size: 1.05rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(.5rem);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s, color .2s;
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    background: var(--red);
    color: var(--white);
}

html.menu-open .wa-float,
html.menu-open .to-top {
    opacity: 0;
    visibility: hidden;
}

/* ===================== ANIMAÇÕES DE ENTRADA ===================== */
html.js [data-reveal] {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* O wow.js às vezes não detecta o viewport e nunca adiciona
   .animated — preferimos conteúdo visível a animação travada. */
.wow {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===================== LEGADO: chat (páginas da IA) ===================== */
.chat-bubble {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-user {
    background-color: var(--red);
    color: var(--white);
    border-top-right-radius: 0;
    margin-left: auto;
    text-align: right;
}

.chat-bot {
    background-color: var(--tint-2);
    color: var(--ink);
    border-top-left-radius: 0;
    margin-right: auto;
    text-align: left;
}

.message {
    display: flex;
    margin: 10px 0;
    max-width: 100%;
}

.message.user {
    justify-content: flex-end;
    align-self: flex-end;
}

.message.bot {
    justify-content: flex-start;
    align-self: flex-start;
}

.bubble {
    padding: 10px 15px;
    border-radius: 20px;
    word-wrap: break-word;
    max-width: 70%;
}

.message.user .bubble {
    background-color: var(--red);
    color: var(--white);
    border-top-right-radius: 0;
}

.message.bot .bubble {
    background-color: var(--tint-2);
    color: var(--ink);
    border-top-left-radius: 0;
}

@keyframes slideIn {
    from { transform: translate(40px, 40px); opacity: 0; }
    to { transform: translate(0, 0); opacity: 1; }
}

/* ===================== LEGADO: select2 (fichas de inscrição) ===================== */
.select2-container {
    border: 2px solid var(--line);
    border-radius: var(--r);
    padding: .3rem .5rem;
}

.select2-container .select2-selection--single {
    height: 38px;
    border: none;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.select2-container .select2-selection__rendered {
    line-height: 36px;
    color: var(--ink);
    padding-left: 12px;
}

.select2-dropdown {
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 var(--r) var(--r);
    box-shadow: var(--shadow);
    z-index: 1051;
}

.select2-results__option--highlighted {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 4px;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.select2-results__options::-webkit-scrollbar {
    width: 5px;
}
