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