@charset "utf-8";

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --baro-navy: #123d78;
    --baro-navy-dark: #092a57;
    --baro-gold: #d5a51f;
    --baro-bg: #f4f6f9;
    --baro-text: #18202b;
    --baro-sub: #68717d;
    --baro-line: #e4e8ee;
    --baro-white: #fff;
}

.baro-consult-wrap,
.baro-consult-list,
.baro-consult-view,
.baro-modal,
.baro-consult-wrap *,
.baro-consult-list *,
.baro-consult-view *,
.baro-modal * {
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif !important;
}

.baro-consult-wrap,
.baro-consult-list,
.baro-consult-view {
    width: 100%;
    min-height: 100vh;
    padding: 44px 20px 80px;
    background: var(--baro-bg);
    color: var(--baro-text);
}

.baro-consult-inner,
.baro-consult-list-inner,
.baro-consult-view-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.baro-consult-head,
.baro-consult-list-head,
.baro-consult-view-head {
    margin-bottom: 26px;
}

.baro-consult-kicker,
.baro-consult-list-head span,
.baro-consult-view-head span {
    display: block;
    margin-bottom: 8px;
    color: var(--baro-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
}

.baro-consult-head h2,
.baro-consult-list-head h2,
.baro-consult-view-head h2 {
    margin: 0;
    color: var(--baro-text);
    font-size: 36px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -.045em;
}

.baro-consult-head p,
.baro-consult-list-head p,
.baro-consult-view-head p {
    margin: 12px 0 0;
    color: var(--baro-sub);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.baro-consult-card,
.baro-consult-detail {
    padding: 34px;
    border: 1px solid var(--baro-line);
    border-radius: 24px;
    background: var(--baro-white);
    box-shadow: 0 14px 40px rgba(21, 43, 73, .06);
}

.baro-consult-field + .baro-consult-field {
    margin-top: 24px;
}

.baro-consult-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--baro-text);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.baro-consult-field label span {
    color: #d54b4b;
}

.baro-consult-field input {
    display: block;
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid #d9dee6;
    border-radius: 14px;
    background: #fff;
    color: var(--baro-text);
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.baro-consult-field input::placeholder {
    color: #a6adb7;
}

.baro-consult-field input:focus {
    border-color: var(--baro-navy);
    box-shadow: 0 0 0 4px rgba(18, 61, 120, .08);
}

.baro-agreement-box {
    margin-top: 30px;
    padding: 8px 18px;
    border: 1px solid var(--baro-line);
    border-radius: 16px;
    background: #f9fafc;
}

.baro-agreement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 64px;
}

.baro-agreement-row + .baro-agreement-row {
    border-top: 1px solid var(--baro-line);
}

.baro-check-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    cursor: pointer;
}

.baro-check-label input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.baro-check-ui {
    position: relative;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    margin-right: 11px;
    border: 1px solid #bcc4cf;
    border-radius: 6px;
    background: #fff;
}

.baro-check-label input:checked + .baro-check-ui {
    border-color: var(--baro-navy);
    background: var(--baro-navy);
}

.baro-check-label input:checked + .baro-check-ui::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.baro-check-label strong {
    overflow: hidden;
    color: var(--baro-text);
    font-size: 17px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.baro-check-label em {
    margin-left: 5px;
    color: var(--baro-sub);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}

.baro-terms-open {
    flex: 0 0 auto;
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid #7b8490;
    background: transparent;
    color: #5e6671;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.baro-consult-submit {
    margin-top: 24px;
    text-align: center;
}

.baro-consult-submit button {
    width: 100%;
    height: 62px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--baro-navy), var(--baro-navy-dark));
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(18, 61, 120, .2);
}

.baro-consult-submit button:disabled {
    opacity: .65;
    cursor: default;
}

.baro-consult-submit p {
    margin: 12px 0 0;
    color: #89919c;
    font-size: 14px;
    line-height: 1.5;
}

.baro-captcha-field {
    margin-top: 26px !important;
}

.baro-captcha {
    overflow: hidden;
}

/* Modal */
body.baro-modal-open {
    overflow: hidden;
}

.baro-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.baro-modal.is-open {
    display: flex;
}

.baro-modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(8, 17, 30, .7);
    backdrop-filter: blur(4px);
}

.baro-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.baro-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--baro-line);
}

.baro-modal-head h3 {
    margin: 0;
    color: var(--baro-text);
    font-size: 23px;
    font-weight: 600;
}

.baro-modal-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f0f2f5;
    color: #4c5561;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
}

.baro-modal-body {
    max-height: calc(100vh - 230px);
    padding: 26px;
    overflow-y: auto;
}

.baro-modal-body p {
    margin: 0;
    color: #4f5864;
    font-size: 17px;
    line-height: 1.7;
}

.baro-modal-body dl {
    margin: 22px 0;
    border-top: 1px solid var(--baro-line);
}

.baro-modal-body dl > div {
    padding: 18px 0;
    border-bottom: 1px solid var(--baro-line);
}

.baro-modal-body dt {
    margin-bottom: 7px;
    color: var(--baro-text);
    font-size: 16px;
    font-weight: 600;
}

.baro-modal-body dd {
    margin: 0;
    color: var(--baro-sub);
    font-size: 16px;
    line-height: 1.6;
}

.baro-modal-body .baro-modal-note {
    color: #7d4f00;
    font-size: 15px;
}

.baro-modal-foot {
    display: flex;
    gap: 10px;
    padding: 18px 26px 24px;
    border-top: 1px solid var(--baro-line);
}

.baro-modal-foot button {
    flex: 1;
    height: 52px;
    border-radius: 13px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.baro-modal-close-btn {
    border: 1px solid #d6dbe2;
    background: #fff;
    color: #515a66;
}

.baro-modal-confirm {
    border: 0;
    background: var(--baro-navy);
    color: #fff;
}

/* Admin list */
.baro-consult-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.baro-list-write,
.baro-list-delete,
.baro-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #d5dae2;
    border-radius: 13px;
    background: #fff;
    color: var(--baro-navy);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.baro-list-write,
.baro-view-call {
    border-color: var(--baro-navy);
    background: var(--baro-navy);
    color: #fff;
}

.baro-consult-table {
    overflow: hidden;
    border: 1px solid var(--baro-line);
    border-radius: 20px;
    background: #fff;
}

.baro-consult-table-head,
.baro-consult-table-row {
    display: grid;
    grid-template-columns: 80px 1.1fr 1.2fr 1fr 1fr 1fr .8fr 1fr;
    align-items: center;
}

.baro-consult-table-head {
    min-height: 58px;
    background: #eef2f7;
    color: #4d5662;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.baro-consult-table-row {
    min-height: 66px;
    border-top: 1px solid var(--baro-line);
    color: #444d58;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
}

.baro-consult-table-row:hover {
    background: #fafbfd;
}

.baro-consult-empty,
.baro-list-lock {
    padding: 70px 20px;
    border: 1px solid var(--baro-line);
    border-radius: 20px;
    background: #fff;
    color: var(--baro-sub);
    font-size: 16px;
    text-align: center;
}

.baro-list-lock strong {
    display: block;
    margin-bottom: 8px;
    color: var(--baro-text);
    font-size: 20px;
    font-weight: 600;
}

.baro-list-lock p {
    margin: 0;
}

.baro-agree-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf0f3;
    color: #737b85;
    font-size: 13px;
    font-weight: 600;
}

.baro-agree-badge.is-yes {
    background: #e5f3ec;
    color: #28734f;
}

.baro-consult-list-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}

.baro-list-delete {
    color: #b53b3b;
}

.baro-list-page .pg_wrap {
    margin: 0;
}

/* Detail */
.baro-consult-detail dl {
    margin: 0;
}

.baro-consult-detail dl > div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--baro-line);
}

.baro-consult-detail dl > div:first-child {
    padding-top: 0;
}

.baro-consult-detail dl > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.baro-consult-detail dt {
    color: var(--baro-sub);
    font-size: 16px;
    font-weight: 500;
}

.baro-consult-detail dd {
    margin: 0;
    color: var(--baro-text);
    font-size: 18px;
    font-weight: 600;
}

.baro-consult-detail dd a {
    color: var(--baro-navy);
    text-decoration: none;
}

.baro-consult-view-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.baro-view-delete {
    color: #b43f3f;
}

@media (max-width: 800px) {
    .baro-consult-wrap,
    .baro-consult-list,
    .baro-consult-view {
        padding: 34px 18px 70px;
    }

    .baro-consult-head h2,
    .baro-consult-list-head h2,
    .baro-consult-view-head h2 {
        font-size: 34px;
    }

    .baro-consult-card,
    .baro-consult-detail {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .baro-consult-field label {
        font-size: 18px;
    }

    .baro-consult-field input {
        height: 58px;
        font-size: 18px;
    }

    .baro-consult-table-head {
        display: none;
    }

    .baro-consult-table {
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 0;
        overflow: visible;
        background: transparent;
    }

    .baro-consult-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        min-height: auto;
        padding: 18px;
        border: 1px solid var(--baro-line);
        border-radius: 16px;
        background: #fff;
        text-align: left;
    }

    .baro-consult-table-row > div {
        font-size: 15px;
    }

    .baro-consult-detail dl > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }
}

@media (max-width: 480px) {
    .baro-consult-wrap,
    .baro-consult-list,
    .baro-consult-view {
        padding-left: 16px;
        padding-right: 16px;
    }

    .baro-consult-head h2,
    .baro-consult-list-head h2,
    .baro-consult-view-head h2 {
        font-size: 32px;
    }

    .baro-consult-head p,
    .baro-consult-list-head p,
    .baro-consult-view-head p {
        font-size: 16px;
    }

    .baro-consult-card {
        padding: 22px 17px;
    }

    .baro-agreement-box {
        padding-left: 14px;
        padding-right: 14px;
    }

    .baro-agreement-row {
        min-height: 68px;
    }

    .baro-check-label strong {
        font-size: 16px;
    }

    .baro-check-label em,
    .baro-terms-open {
        font-size: 14px;
    }

    .baro-modal {
        align-items: flex-end;
        padding: 0;
    }

    .baro-modal-dialog {
        max-height: 90vh;
        border-radius: 22px 22px 0 0;
    }

    .baro-modal-head {
        padding: 21px 20px;
    }

    .baro-modal-body {
        max-height: calc(90vh - 190px);
        padding: 22px 20px;
    }

    .baro-modal-foot {
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
    }

    .baro-consult-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .baro-consult-list-head .baro-list-write {
        width: 100%;
    }

    .baro-consult-view-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .baro-view-btn {
        width: 100%;
    }
}


/* =========================
   GNUBOARD CAPTCHA
========================= */
.baro-captcha-field {
    margin-top: 28px !important;
}

.baro-captcha-field > label {
    margin-bottom: 12px;
}

.baro-captcha {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--baro-line);
    border-radius: 16px;
    background: #f8fafc;
    overflow: visible;
}

.baro-captcha #captcha {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-areas:
        "image input"
        "buttons input"
        "guide guide";
    align-items: center;
    gap: 10px 14px;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.baro-captcha #captcha_img {
    grid-area: image;
    display: block !important;
    width: 150px !important;
    height: 58px !important;
    margin: 0 !important;
    border: 1px solid #d9dee6 !important;
    border-radius: 10px !important;
    background: #fff;
    object-fit: cover;
}

.baro-captcha #captcha_key {
    grid-area: input;
    width: 100% !important;
    min-width: 0 !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid #d9dee6 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--baro-text) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 58px !important;
    text-align: left !important;
    box-shadow: none !important;
    outline: none !important;
}

.baro-captcha #captcha_key:focus {
    border-color: var(--baro-navy) !important;
    box-shadow: 0 0 0 4px rgba(18, 61, 120, .08) !important;
}

.baro-captcha #captcha_audio,
.baro-captcha #captcha_reload {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d7dce4 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--baro-navy) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer;
}

.baro-captcha #captcha_audio:hover,
.baro-captcha #captcha_reload:hover {
    border-color: var(--baro-navy) !important;
    background: #eef3f9 !important;
}

.baro-captcha #captcha_audio {
    grid-area: buttons;
    justify-self: start;
}

.baro-captcha #captcha_reload {
    grid-area: buttons;
    justify-self: start;
    margin-left: 54px !important;
}

.baro-captcha #captcha_info {
    grid-area: guide;
    display: block !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    color: var(--baro-sub) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: -.02em;
}

.baro-captcha #captcha_mp3 {
    display: none !important;
}

@media (max-width: 480px) {
    .baro-captcha {
        padding: 15px;
    }

    .baro-captcha #captcha {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 9px 11px;
    }

    .baro-captcha #captcha_img {
        width: 130px !important;
        height: 54px !important;
    }

    .baro-captcha #captcha_key {
        height: 54px !important;
        padding: 0 13px !important;
        font-size: 17px !important;
        line-height: 54px !important;
    }

    .baro-captcha #captcha_audio,
    .baro-captcha #captcha_reload {
        width: 42px !important;
        height: 40px !important;
    }

    .baro-captcha #captcha_reload {
        margin-left: 49px !important;
    }

    .baro-captcha #captcha_info {
        font-size: 13px !important;
    }
}

@media (max-width: 360px) {
    .baro-captcha #captcha {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "buttons"
            "input"
            "guide";
    }

    .baro-captcha #captcha_img {
        width: 100% !important;
        max-width: 180px;
    }

    .baro-captcha #captcha_key {
        width: 100% !important;
    }
}


/* =========================
   GNUBOARD CAPTCHA - NO AUDIO
   이미지 + 새로고침 + 입력창 한 줄 배치
========================= */
.baro-captcha-field {
    margin-top: 28px !important;
}

/* 상단 자동등록방지 라벨 숨김 */
.baro-captcha-field > label {
    display: none !important;
}

.baro-captcha {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--baro-line);
    border-radius: 16px;
    background: #f8fafc;
    overflow: visible;
}

.baro-captcha #captcha {
    display: grid !important;
    grid-template-columns: 150px 48px minmax(0, 1fr);
    grid-template-areas: "image reload input";
    align-items: center;
    gap: 10px;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

/* CAPTCHA 내부 자동등록방지 문구 숨김 */
.baro-captcha #captcha legend,
.baro-captcha #captcha label,
.baro-captcha #captcha h3,
.baro-captcha #captcha strong,
.baro-captcha #captcha_info {
    display: none !important;
}

/* 음성 버튼 제거 */
.baro-captcha #captcha_audio,
.baro-captcha #captcha_mp3 {
    display: none !important;
}

.baro-captcha #captcha_img {
    grid-area: image;
    display: block !important;
    width: 150px !important;
    height: 58px !important;
    margin: 0 !important;
    border: 1px solid #d9dee6 !important;
    border-radius: 10px !important;
    background: #fff;
    object-fit: cover;
}

/* 입력창 */
.baro-captcha #captcha_key {
    grid-area: input;
    width: 100% !important;
    min-width: 0 !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid #d9dee6 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--baro-text) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 58px !important;
    text-align: left !important;
    box-shadow: none !important;
    outline: none !important;
}

.baro-captcha #captcha_key:focus {
    border-color: var(--baro-navy) !important;
    box-shadow: 0 0 0 4px rgba(18, 61, 120, .08) !important;
}

/* 새로고침 버튼 */
.baro-captcha #captcha_reload {
    grid-area: reload;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #d7dce4 !important;
    border-radius: 12px !important;
    background: #fff !important;
    background-image: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-indent: -9999px !important;
    cursor: pointer;
}

/* 서버 이미지 경로와 무관하게 보이는 새로고침 아이콘 */
.baro-captcha #captcha_reload::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 19px;
    height: 19px;
    border: 2px solid var(--baro-navy);
    border-left-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.baro-captcha #captcha_reload::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 12px;
    width: 0;
    height: 0;
    border-right: 6px solid var(--baro-navy);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: rotate(32deg);
}

.baro-captcha #captcha_reload:hover {
    border-color: var(--baro-navy) !important;
    background: #eef3f9 !important;
}

@media (max-width: 480px) {
    .baro-captcha {
        padding: 14px;
    }

    .baro-captcha #captcha {
        grid-template-columns: 132px 44px minmax(0, 1fr);
        gap: 8px;
    }

    .baro-captcha #captcha_img {
        width: 132px !important;
        height: 54px !important;
    }

    .baro-captcha #captcha_reload {
        width: 44px !important;
        height: 44px !important;
    }

    .baro-captcha #captcha_reload::after {
        left: 11px;
        top: 10px;
    }

    .baro-captcha #captcha_key {
        height: 54px !important;
        padding: 0 13px !important;
        font-size: 17px !important;
        line-height: 54px !important;
    }
}

@media (max-width: 380px) {
    .baro-captcha {
        padding: 12px;
    }

    .baro-captcha #captcha {
        grid-template-columns: 112px 42px minmax(0, 1fr);
        gap: 7px;
    }

    .baro-captcha #captcha_img {
        width: 112px !important;
        height: 50px !important;
    }

    .baro-captcha #captcha_reload {
        width: 42px !important;
        height: 42px !important;
    }

    .baro-captcha #captcha_key {
        height: 50px !important;
        padding: 0 10px !important;
        font-size: 16px !important;
        line-height: 50px !important;
    }
}

/* =========================
   CONSULT STATUS - ADMIN LIST
========================= */
.baro-consult-table-head,
.baro-consult-table-row {
    grid-template-columns: 58px 1fr 1.25fr 1fr 1fr 1fr .8fr 1.05fr .9fr;
}

.baro-consult-table-row {
    cursor: pointer;
}

.baro-status-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 7px;
}

.baro-consult-status {
    width: 100%;
    min-width: 94px;
    height: 40px;
    padding: 0 28px 0 11px;
    border: 1px solid #d5dbe3;
    border-radius: 10px;
    background-color: #fff;
    color: #4f5965;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.baro-consult-status.is-wait {
    border-color: #d9dde3;
    background-color: #f1f3f5;
    color: #616a75;
}

.baro-consult-status.is-call {
    border-color: #b8d1ee;
    background-color: #eaf3ff;
    color: #185a9d;
}

.baro-consult-status.is-meeting {
    border-color: #c7dfce;
    background-color: #eaf7ee;
    color: #287247;
}

.baro-consult-status:focus {
    border-color: #123d78;
    box-shadow: 0 0 0 3px rgba(18, 61, 120, .1);
}

.baro-consult-status:disabled {
    cursor: wait;
    opacity: .65;
}

.baro-status-saving {
    min-height: 14px;
    color: #7a828c;
    font-size: 11px;
    line-height: 1;
}

@media (max-width: 800px) {
    .baro-status-cell {
        align-items: stretch;
        padding: 0;
    }

    .baro-consult-status {
        width: 100%;
        height: 44px;
        font-size: 15px;
    }
}


.baro-status-saving{
    display:none !important;
}

.baro-status-cell{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:7px;
}

.baro-consult-table-row{
    align-items:center;
}
