/* ── Gmail-style email compose drawer ── */
.gmail-compose {
font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #fff;
border: 1px solid #dadce0;
overflow: visible;
flex: 1 1 0;
min-height: 0;
display: flex;
flex-direction: column;
border-radius: 12px;
margin-top: 10px;
}
.gmail-toolbar {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 16px;
background: #404040;
color: #fff;
border-radius: 12px 12px 0 0;
}
.gmail-toolbar-title {
font-size: 0.9em;
font-weight: 500;
}
.gmail-toolbar-steps {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
gap: 6px;
margin-left: auto;
flex-shrink: 0;
}
.gmail-toolbar-btn {
background: none;
border: none;
color: #b0b0b0;
cursor: pointer;
padding: 4px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s;
}
.gmail-toolbar-btn:hover {
background: rgba(255, 255, 255, 0.15);
color: #fff;
}
.gmail-banner {
flex-shrink: 0;
display: flex;
gap: 10px;
padding: 10px 16px;
font-size: 0.85em;
line-height: 1.5;
border-bottom: 1px solid #dadce0;
}
.gmail-banner-icon {
flex-shrink: 0;
font-size: 1.1em;
margin-top: 1px;
}
.gmail-banner-text {
flex: 1;
color: #3c4043;
}
.gmail-banner-text strong {
color: #202124;
}
.gmail-banner-warning {
background: #fef7e0;
}
.gmail-banner-tip {
background: #e8f5e9;
}
.gmail-banner-note {
margin-top: 6px;
font-size: 0.92em;
color: #5f6368;
}
.gmail-banner-link {
background: none;
border: none;
padding: 0;
font: inherit;
color: #1a73e8;
text-decoration: underline;
cursor: pointer;
font-weight: 600;
}
.gmail-banner-link:hover {
color: #1557b0;
}
.gmail-fields {
flex-shrink: 0;
border-bottom: 1px solid #dadce0;
}
.gmail-field-row {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-bottom: 1px solid #ebebeb;
min-height: 36px;
}
.gmail-field-row:last-child {
border-bottom: none;
}
.gmail-from-row-constituent {
flex-shrink: 0;
margin-left: 12px;
}
.gmail-from-row-constituent .drawer-constituent-checkbox-wrap {
white-space: nowrap;
}
.gmail-field-label {
font-size: 0.85em;
color: #5f6368;
flex-shrink: 0;
min-width: 52px;
}
.gmail-field-value {
flex: 1;
font-size: 0.9em;
color: #202124;
overflow-wrap: break-word;
word-break: break-word;
}
.gmail-field-input {
flex: 1;
font-size: 0.9em;
color: #202124;
border: none;
outline: none;
background: transparent;
padding: 2px 0;
font-family: inherit;
}
.gmail-field-input:focus {
border-bottom: 2px solid #1a73e8;
margin-bottom: -2px;
}
.gmail-to-chip {
display: inline-flex;
align-items: center;
gap: 6px;
background: #e8eaed;
border-radius: 16px;
padding: 2px 10px 2px 2px;
font-size: 0.9em;
}
.gmail-to-chip-copy {
cursor: pointer;
}
.gmail-to-chip-copy:hover {
background: #dadce0;
}
.gmail-to-chip-copy.gmail-to-chip-copied {
background: #e6f4ea;
}
.gmail-to-chip-copy.gmail-to-chip-copied .gmail-to-chip-text {
color: #137333;
}
.gmail-to-chip-avatar {
width: 24px;
height: 24px;
border-radius: 50%;
background: #1a73e8;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75em;
font-weight: 600;
text-transform: uppercase;
flex-shrink: 0;
}
.gmail-to-chip-text {
color: #3c4043;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.gmail-to-placeholder {
color: #9aa0a6;
font-style: italic;
font-size: 0.88em;
}
/* ── From field: auth verify UI ── */
.gmail-from-row {
background: #fafcff;
}
.gmail-from-input-wrap {
display: flex;
align-items: center;
gap: 6px;
flex: 1;
}
.gmail-from-input {
flex: 1;
font-size: 0.9em;
color: #202124;
border: none;
outline: none;
background: transparent;
padding: 2px 0;
font-family: inherit;
}
.gmail-from-verify-btn {
font-size: 0.78em;
font-weight: 600;
background: #1a73e8;
color: #fff;
border: none;
border-radius: 4px;
padding: 0 12px;
height: 32px;
line-height: 32px;
cursor: pointer;
white-space: nowrap;
box-sizing: border-box;
}
.gmail-from-verify-btn:hover {
background: #1765cc;
}
.gmail-from-verify-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.gmail-from-verify-btn.gmail-from-verify-btn--sending:disabled {
cursor: wait;
}
.gmail-from-verified {
display: flex;
align-items: center;
gap: 6px;
flex: 1;
}
.gmail-from-chip {
display: inline-flex;
align-items: center;
gap: 4px;
background: #e6f4ea;
color: #137333;
border-radius: 16px;
padding: 3px 10px;
font-size: 0.85em;
font-weight: 500;
}
.gmail-from-chip-check {
font-weight: 700;
}
.gmail-from-signout-btn {
background: none;
border: none;
color: #9aa0a6;
font-size: 1.1em;
cursor: pointer;
padding: 0 4px;
line-height: 1;
}
.gmail-from-signout-btn:hover {
color: #d93025;
}
.gmail-from-code-row {
display: flex;
align-items: flex-start;
gap: 8px;
}
.gmail-from-code-wrap {
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
gap: 8px;
flex: 1;
}
.gmail-from-code-hint {
font-size: 0.8em;
color: #5f6368;
}
.gmail-from-code-inputs {
display: flex;
align-items: center;
gap: 6px;
}
.gmail-from-code-input {
width: 90px;
font-size: 0.95em;
font-family: monospace;
letter-spacing: 3px;
text-align: center;
border: 1px solid #dadce0;
border-radius: 4px;
padding: 4px 8px;
outline: none;
}
.gmail-from-code-input:focus {
border-color: #1a73e8;
}
.gmail-from-code-submit {
font-size: 0.78em;
font-weight: 600;
background: #1a73e8;
color: #fff;
border: none;
border-radius: 4px;
padding: 4px 12px;
cursor: pointer;
}
.gmail-from-code-submit:hover {
background: #1765cc;
}
.gmail-from-code-submit:disabled {
opacity: 0.5;
cursor: wait;
}
.gmail-from-code-error {
font-size: 0.8em;
color: #d93025;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.gmail-from-resend-btn {
font-size: 0.78em;
color: #1a73e8;
background: none;
border: none;
cursor: pointer;
padding: 0;
text-decoration: underline;
margin-left: auto;
}
.gmail-from-resend-btn:hover {
color: #1765cc;
}
.gmail-from-resend-btn:disabled {
opacity: 0.5;
cursor: wait;
}
.gmail-from-state {
display: flex;
align-items: center;
flex: 1;
}
.gmail-from-state[hidden] {
display: none !important;
}
/* To field: pill when recipient is set (same look as From chip) */
.gmail-to-value {
display: flex;
align-items: center;
flex: 1;
}
.gmail-to-state {
display: flex;
align-items: center;
flex: 1;
}
.gmail-to-state[hidden] {
display: none !important;
}
.gmail-to-state .gmail-to-input {
flex: 1;
}
.gmail-to-clear-btn {
background: none;
border: none;
color: #9aa0a6;
font-size: 1.1em;
cursor: pointer;
padding: 0 4px;
line-height: 1;
}
.gmail-to-clear-btn:hover {
color: #d93025;
}
/* To chip party colors (same saturation as From green: light bg + darker text) */
.gmail-to-recipient-chip--dem {
background: #e8f0fe;
color: #1967d2;
}
.gmail-to-recipient-chip--rep {
background: #fce8e6;
color: #c5221f;
}
.gmail-subject-row {
font-weight: 500;
}
.gmail-subject-input {
font-weight: 500;
color: #202124;
}
.gmail-body-area {
flex: 1 1 0;
min-height: 0;
padding: 16px;
overflow-y: auto;
display: flex;
flex-direction: column;
}
.gmail-body-text {
flex: 1 1 0;
min-height: 0;
width: 100%;
box-sizing: border-box;
white-space: pre-wrap;
word-break: break-word;
font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 0.88em;
line-height: 1.65;
color: #3c4043;
margin: 0;
padding: 0;
background: transparent;
border: none;
outline: none;
resize: none;
}
.gmail-body-text::placeholder {
color: #9aa0a6;
}
.gmail-body-store {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
opacity: 0;
pointer-events: none;
}
.gmail-attachment-bar {
flex-shrink: 0;
padding: 8px 16px;
border-top: 1px solid #dadce0;
}
.gmail-attachment {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
background: #f8f9fa;
border: 1px solid #dadce0;
border-radius: 8px;
text-decoration: none;
color: #3c4043;
transition: background 0.15s, border-color 0.15s;
}
.gmail-attachment:hover {
background: #e8eaed;
border-color: #c0c4c9;
}
.gmail-attachment-icon {
flex-shrink: 0;
color: #d93025;
display: flex;
align-items: center;
}
.gmail-attachment-info {
display: flex;
flex-direction: column;
gap: 1px;
min-width: 0;
}
.gmail-attachment-name {
font-size: 0.85em;
font-weight: 500;
color: #202124;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.gmail-attachment-desc {
font-size: 0.75em;
color: #5f6368;
}
.gmail-action-bar {
flex-shrink: 0;
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-top: 1px solid #dadce0;
background: #f8f9fa;
flex-wrap: wrap;
}
.gmail-send-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 22px;
background: #1a73e8;
color: #fff;
border: none;
border-radius: 20px;
cursor: pointer;
font-size: 0.88em;
font-weight: 500;
font-family: inherit;
transition: background 0.15s, box-shadow 0.15s;
white-space: nowrap;
}
.gmail-send-btn:hover {
background: #1765cc;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.gmail-send-btn:active {
background: #1558b3;
}
.gmail-send-btn svg {
flex-shrink: 0;
}
.gmail-copy-link {
background: none !important;
border: none !important;
padding: 4px 0 !important;
font-size: 0.8em !important;
color: #5f6368 !important;
min-height: 0;
}
.gmail-copy-link:hover {
background: none !important;
color: #1a73e8 !important;
}
.gmail-copy-link.gmail-copied {
background: none !important;
color: #137333 !important;
border: none !important;
}
.gmail-sent-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 18px;
background: #fff;
color: #1a73e8;
border: 1px solid #dadce0;
border-radius: 20px;
cursor: pointer;
font-size: 0.9em;
font-family: inherit;
font-weight: 500;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gmail-sent-btn:disabled {
color: #9aa0a6;
background: #f1f3f4;
border-color: #dadce0;
cursor: not-allowed;
}
.gmail-sent-btn:disabled:hover {
background: #f1f3f4;
border-color: #dadce0;
color: #9aa0a6;
}
.gmail-sent-btn:hover {
background: #e8f0fe;
border-color: #1a73e8;
}
.gmail-sent-btn:active {
background: #d2e3fc;
}
.gmail-sent-btn svg {
flex-shrink: 0;
}
.gmail-secondary-actions {
display: flex;
gap: 4px;
margin-left: auto;
}
.gmail-copy-btn {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 6px 12px;
background: #fff;
color: #5f6368;
border: 1px solid #dadce0;
border-radius: 16px;
cursor: pointer;
font-size: 0.8em;
font-family: inherit;
transition: background 0.15s, color 0.15s, border-color 0.15s;
white-space: nowrap;
}
.gmail-copy-btn:hover {
background: #e8eaed;
color: #3c4043;
border-color: #c0c4c9;
}
.gmail-copy-btn:active {
background: #dadce0;
}
.gmail-copy-btn svg {
flex-shrink: 0;
}
.gmail-copy-btn.gmail-copied {
background: #e6f4ea;
color: #137333;
border-color: #81c995;
}
.gmail-go-to-call-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 20px;
background: transparent;
color: #1a73e8;
border: 1px solid #dadce0;
border-radius: 20px;
cursor: pointer;
font-size: 0.85em;
font-family: inherit;
font-weight: 500;
transition: background 0.15s;
}
.gmail-go-to-call-btn:hover {
background: #e8f0fe;
}
.gmail-go-to-call-btn svg {
flex-shrink: 0;
color: #1a73e8;
}
/* ── Guide pulse: traveling outline (outline so it’s never covered by children/siblings) ── */
@keyframes guidePulse {
0%,
100% {
outline: 2px solid rgba(26, 115, 232, 0);
}
50% {
outline: 3px solid rgba(26, 115, 232, 0.7);
}
}
@keyframes guidePulseGreen {
0%,
100% {
outline: 2px solid rgba(19, 115, 51, 0);
}
50% {
outline: 3px solid rgba(19, 115, 51, 0.7);
}
}
.guide-pulse {
animation: guidePulse 2s ease-in-out infinite;
border-radius: 6px;
outline-offset: 2px;
position: relative;
z-index: 1;
}
.guide-pulse-green {
animation: guidePulseGreen 2s ease-in-out infinite;
border-radius: 6px;
outline-offset: 2px;
position: relative;
z-index: 1;
}
/* ── Subject verify button ── */
.gmail-subject-verify-btn {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 3px 10px;
font-size: 0.75em;
font-weight: 600;
font-family: inherit;
color: #1a73e8;
background: #e8f0fe;
border: 1px solid #c5d7f5;
border-radius: 12px;
cursor: pointer;
white-space: nowrap;
transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
flex-shrink: 0;
}
.gmail-subject-verify-btn:hover {
background: #d2e3fc;
border-color: #a8c7fa;
}
.gmail-subject-verify-btn.verified {
background: #e6f4ea;
color: #137333;
border-color: #81c995;
pointer-events: none;
}
.gmail-subject-verify-btn svg {
flex-shrink: 0;
}
/* ── Guide step dots ── */
.guide-step-dots {
display: flex;
align-items: center;
gap: 5px;
padding-right: 4px;
flex-shrink: 0;
}
.guide-step-counter {
flex-shrink: 0;
white-space: nowrap;
}
.guide-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transition: background 0.3s, transform 0.3s;
}
.guide-dot.active {
background: #fff;
transform: scale(1.3);
}
.guide-dot.done {
background: #81c995;
}
/* ── Mad Libs body ── */
.madlib-body {
flex: 1 1 0;
min-height: 0;
width: 100%;
box-sizing: border-box;
white-space: pre-wrap;
word-break: break-word;
font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 0.88em;
line-height: 1.65;
color: #3c4043;
margin: 0;
padding: 0;
}
.madlib-blank {
display: inline-block;
border: none;
border-bottom: 2px dashed #a8c7fa;
background: #f0f6ff;
border-radius: 4px 4px 0 0;
padding: 2px 8px;
font-family: inherit;
font-size: 1em;
line-height: 1.4;
color: #1a73e8;
font-weight: 600;
min-width: 2ch;
outline: none;
transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s, padding 0.2s;
vertical-align: baseline;
box-sizing: content-box;
}
.madlib-blank::placeholder {
color: #9ab4dd;
font-weight: 400;
font-style: italic;
}
.madlib-blank:focus {
border-bottom-color: #1a73e8;
border-bottom-style: solid;
background: #e8f0fe;
box-shadow: 0 2px 6px rgba(26, 115, 232, 0.18);
transform: scale(1.03);
}
.madlib-blank.filled {
border-bottom: 1px dashed #dadce0;
background: transparent;
color: inherit;
font-weight: inherit;
padding: 0;
border-radius: 0;
min-width: 0;
}
.madlib-blank.filled:hover {
border-bottom-color: #bdc1c6;
cursor: text;
}
.madlib-blank.filled:focus {
border-bottom: 2px solid #1a73e8;
background: #e8f0fe;
color: #1a73e8;
font-weight: 600;
padding: 2px 8px;
border-radius: 4px 4px 0 0;
min-width: 80px;
box-shadow: 0 2px 6px rgba(26, 115, 232, 0.18);
transform: scale(1.03);
}
.madlib-blank.error {
border-bottom-color: #d93025;
background: #fce8e6;
color: #d93025;
animation: guidePulse 1s ease-in-out 2;
}
.madlib-body [contenteditable]:focus {
outline: none;
background: rgba(26, 115, 232, 0.04);
border-radius: 2px;
}
/* ── Sent-done state ── */
.gmail-sent-btn.sent-done {
background: #e6f4ea;
color: #137333;
border-color: #81c995;
pointer-events: none;
}
.gmail-sent-btn.sent-done svg {
stroke: #137333;
}
.gmail-sent-btn.sent-signin-nudge {
background: #fef3c7;
border-color: #d97706;
color: #92400e;
}
.gmail-sent-btn.sent-signin-nudge svg {
stroke: #92400e;
}
@media (max-width: 480px) {
.gmail-compose {
margin: -16px -18px;
border-radius: 0;
border: none;
box-shadow: none;
}
.gmail-toolbar {
border-radius: 0;
}
.gmail-toolbar-steps {
flex-wrap: wrap;
justify-content: flex-end;
}
.gmail-toolbar-steps .guide-step-counter {
order: 1;
width: 100%;
}
.gmail-toolbar-steps .guide-step-dots {
order: 2;
margin-left: auto;
}
.gmail-action-bar {
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
}
.gmail-send-btn,
.gmail-sent-btn {
flex: 1;
min-width: 0;
justify-content: center;
}
.gmail-to-chip-text {
max-width: 200px;
}
/* Field rows: allow wrap so label/input/buttons stack on narrow screens */
.gmail-field-row {
flex-wrap: wrap;
gap: 6px;
}
.gmail-field-label {
flex-basis: 100%;
min-width: 0;
}
.gmail-from-input-wrap {
flex-wrap: wrap;
gap: 8px;
}
.gmail-from-input-wrap .gmail-field-input,
.gmail-from-input-wrap .gmail-from-input {
min-width: 0;
flex: 1 1 140px;
}
.gmail-subject-row {
flex-wrap: wrap;
}
.gmail-subject-row .gmail-field-label {
flex-basis: auto;
}
.gmail-subject-input {
flex: 1 1 160px;
min-width: 0;
}
.gmail-subject-verify-btn {
flex-shrink: 0;
}
.gmail-banner-text {
min-width: 0;
}
.gmail-body-area {
padding: 12px 14px;
}
.gmail-attachment-bar {
padding: 8px 14px;
}
.gmail-action-bar {
padding: 12px 14px;
}
}
/* Legacy email drawer (for reference / fallback) */
.drawer-email-to-row {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
margin-bottom: 12px;
background: #f2f2f7;
border-radius: 8px;
border: 1px solid #e5e5ea;
font-size: 0.92em;
}
.drawer-email-to-label {
font-weight: 600;
color: #6d6d72;
flex-shrink: 0;
}
.drawer-email-to-value {
color: #1c1c1e;
word-break: break-all;
}
.drawer-email-to-value em {
color: #8e8e93;
font-style: italic;
}
.drawer-copy-only-banner {
padding: 12px 14px;
margin-bottom: 14px;
background: #fff8e1;
border: 1px solid #ffca28;
border-radius: 10px;
font-size: 0.9em;
line-height: 1.5;
color: #5d4e37;
}
.drawer-copy-only-banner strong {
display: block;
margin-bottom: 4px;
color: #3e3428;
}
.drawer-form-group {
margin-bottom: 14px;
}
.drawer-form-group label {
display: block;
font-weight: 600;
font-size: 0.9em;
margin-bottom: 4px;
}
.label-optional {
font-weight: normal;
color: #666;
}
.drawer-radio-row {
display: flex;
gap: 16px;
margin-bottom: 6px;
}
.drawer-radio-label {
font-weight: normal;
cursor: pointer;
}
.drawer-input {
width: 100%;
max-width: 100%;
padding: 8px 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 0.95em;
box-sizing: border-box;
}
.drawer-email-if-yes {
margin-top: 4px;
}
.drawer-btn {
padding: 8px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.92em;
}
.drawer-btn-primary {
background: #1a6b3c;
color: #fff;
}
.drawer-btn-primary:hover {
background: #14502e;
}
.drawer-btn-secondary {
background: #f0f0f0;
color: #333;
border: 1px solid #ccc;
}
.drawer-btn-secondary:hover {
background: #e5e5e5;
}
.drawer-call-only-notice {
padding: 12px 14px;
margin-bottom: 16px;
background: #fff8e1;
border: 1px solid #ffca28;
border-radius: 6px;
font-size: 0.9em;
line-height: 1.5;
}
.drawer-call-only-notice strong {
display: block;
margin-bottom: 4px;
}
.drawer-your-notes {
margin-top: 8px;
font-size: 0.9em;
color: #555;
}
.drawer-email-nudge {
padding: 10px 12px;
margin-bottom: 14px;
background: #e8f5e9;
border: 1px solid #81c784;
border-radius: 6px;
font-size: 0.9em;
}
.drawer-email-no-public {
padding: 12px 14px;
margin-bottom: 16px;
background: #fff8e1;
border: 1px solid #ffca28;
border-radius: 6px;
font-size: 0.9em;
line-height: 1.5;
}
.drawer-email-heading {
margin: 0 0 12px;
font-size: 1em;
font-weight: 600;
}
.drawer-email-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 12px;
}
.drawer-copy-btn,
.drawer-mailto-btn {
padding: 6px 12px;
font-size: 0.85em;
background: #f0f0f0;
border: 1px solid #ccc;
border-radius: 4px;
cursor: pointer;
}
.drawer-copy-btn:hover,
.drawer-mailto-btn:hover {
background: #e0e0e0;
}
.drawer-mailto-btn {
background: #2a5aad;
color: #fff;
border-color: #2a5aad;
}
.drawer-mailto-btn:hover {
background: #1e4a8a;
}
.drawer-email-subject {
font-size: 0.95em;
padding: 8px;
background: #f5f5f5;
border-radius: 4px;
margin-bottom: 8px;
word-break: break-word;
}
.drawer-email-body {
white-space: pre-wrap;
word-break: break-word;
font-family: inherit;
font-size: 0.9em;
padding: 12px;
background: #f5f5f5;
border: 1px solid #ddd;
border-radius: 4px;
margin: 0 0 12px;
line-height: 1.6;
}
.drawer-email-template label {
display: block;
font-weight: bold;
font-size: 0.85em;
margin: 10px 0 4px;
}
.drawer-email-pdf {
margin-top: 12px;
font-size: 0.9em;
}
.drawer-email-pdf a {
color: #2a5aad;
}
.drawer-go-to-call-wrap {
margin-top: 16px;
padding-top: 12px;
border-top: 1px solid #e0e0e0;
}
.drawer-go-to-call-btn {
margin-top: 4px;
}
