| 1 |
#frm-deactivation-modal { |
| 2 |
--padding: 24px; |
| 3 |
} |
| 4 |
.frm_screen_reader { |
| 5 |
border: 0; |
| 6 |
clip: rect(1px, 1px, 1px, 1px); |
| 7 |
-webkit-clip-path: inset(50%); |
| 8 |
clip-path: inset(50%); |
| 9 |
height: 1px; |
| 10 |
margin: -1px; |
| 11 |
overflow: hidden; |
| 12 |
padding: 0; |
| 13 |
position: absolute; |
| 14 |
width: 1px; |
| 15 |
word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ |
| 16 |
} |
| 17 |
#frm-deactivation-modal-icon { |
| 18 |
position: absolute; |
| 19 |
top: calc(var(--padding) - 1px); |
| 20 |
left: var(--padding); |
| 21 |
width: 20px; |
| 22 |
height: 20px; |
| 23 |
} |
| 24 |
#frm-deactivation-modal .frm-modal-close { |
| 25 |
position: absolute; |
| 26 |
top: 20px; |
| 27 |
right: var(--padding); |
| 28 |
z-index: 1000; |
| 29 |
} |
| 30 |
#frm-deactivation-modal .frm_form_title { |
| 31 |
padding: 20px var(--padding) 12px calc(28px + var(--padding)); |
| 32 |
margin-top: 0; |
| 33 |
border-bottom: 1px solid #f2f4f7; |
| 34 |
font-weight: 400; |
| 35 |
font-size: 14px; |
| 36 |
line-height: 26px; |
| 37 |
} |
| 38 |
#frm-deactivation-modal .frm_description, |
| 39 |
#frm-deactivation-modal .frm_form_field { |
| 40 |
padding-left: var(--padding); |
| 41 |
padding-right: var(--padding); |
| 42 |
} |
| 43 |
#frm-deactivation-modal .frm_description p { |
| 44 |
font-size: 12px; |
| 45 |
margin-top: 16px; |
| 46 |
margin-bottom: 16px; |
| 47 |
color: #667085; |
| 48 |
} |
| 49 |
#frm-deactivation-modal .inside { |
| 50 |
padding-left: 0; |
| 51 |
padding-right: 0; |
| 52 |
} |
| 53 |
#frm-deactivation-modal .frm_radio { margin-bottom: 15px; } |
| 54 |
#frm-deactivation-modal .frm_radio .frm_form_field { |
| 55 |
padding-left: 0; |
| 56 |
padding-right: 0; |
| 57 |
margin-bottom: -5px; |
| 58 |
} |
| 59 |
#frm-deactivation-modal .frm_radio .frm_form_field textarea { |
| 60 |
margin-top: 5px; |
| 61 |
height: 65px; |
| 62 |
border-radius: 8px; |
| 63 |
padding: 5px 12px; |
| 64 |
font-size: 14px; |
| 65 |
} |
| 66 |
#frm-deactivation-modal .frm_radio .frm_form_field textarea:focus { border-color: #4199FD; box-shadow: none; } |
| 67 |
#frm-deactivation-modal .frm_radio .frm_form_field textarea::placeholder { color: #98A2B3; } |
| 68 |
#frm-deactivation-modal .frm_radio .frm_html_container { |
| 69 |
padding: 6px; |
| 70 |
background-color: #F9FAFB; |
| 71 |
margin-top: 8px; |
| 72 |
margin-bottom: 15px; |
| 73 |
border-radius: 8px; |
| 74 |
} |
| 75 |
#frm-deactivation-modal .frm_radio .frm_html_container p { |
| 76 |
margin: 0; |
| 77 |
font-size: 14px; |
| 78 |
line-height: 20px; |
| 79 |
color: #667085; |
| 80 |
} |
| 81 |
#frm-deactivation-modal input[name="item_key"] + div, |
| 82 |
#frm-deactivation-modal .frm_primary_label { display: none; } |
| 83 |
#frm-deactivation-modal .frm_submit { text-align: right; margin-top: 38px; } |
| 84 |
#frm-deactivation-modal .frm_button_submit { margin-right: 0; } |
| 85 |
#frm-deactivation-modal .frm-skip-link { |
| 86 |
color: #98A2B3; |
| 87 |
display: inline-block; |
| 88 |
font-size: 14px; |
| 89 |
line-height: 40px; |
| 90 |
padding: 0 13px; |
| 91 |
} |
| 92 |
|