| 1 |
.frm-payment-method-selector { |
| 2 |
display: flex; |
| 3 |
flex-direction: column; |
| 4 |
gap: 0; |
| 5 |
margin-bottom: 16px; |
| 6 |
border: 1px solid #e0e0e0; |
| 7 |
border-radius: 8px; |
| 8 |
overflow: hidden; |
| 9 |
max-width: 500px; |
| 10 |
} |
| 11 |
|
| 12 |
.frm-payment-method-option { |
| 13 |
display: flex; |
| 14 |
align-items: center; |
| 15 |
gap: 12px; |
| 16 |
padding: 16px; |
| 17 |
cursor: pointer; |
| 18 |
border-bottom: 1px solid #e0e0e0; |
| 19 |
background: #fff; |
| 20 |
transition: background-color 0.15s ease; |
| 21 |
position: relative; |
| 22 |
margin: 0; |
| 23 |
} |
| 24 |
|
| 25 |
.frm-payment-method-option:last-child { |
| 26 |
border-bottom: none; |
| 27 |
} |
| 28 |
|
| 29 |
.frm-payment-method-option:hover { |
| 30 |
background-color: #f9f9fb; |
| 31 |
} |
| 32 |
|
| 33 |
.frm-payment-method-active { |
| 34 |
background-color: #f0f4ff; |
| 35 |
} |
| 36 |
|
| 37 |
.frm-payment-method-active:hover { |
| 38 |
background-color: #f0f4ff; |
| 39 |
} |
| 40 |
|
| 41 |
.frm-payment-method-option input[type="radio"] { |
| 42 |
appearance: none !important; |
| 43 |
-webkit-appearance: none !important; |
| 44 |
width: 20px !important; |
| 45 |
height: 20px !important; |
| 46 |
min-width: 20px !important; |
| 47 |
min-height: 20px !important; |
| 48 |
border: 2px solid #c0c0c0 !important; |
| 49 |
border-radius: 50% !important; |
| 50 |
flex-shrink: 0; |
| 51 |
margin: 0 !important; |
| 52 |
padding: 0 !important; |
| 53 |
cursor: pointer; |
| 54 |
transition: border-color 0.15s ease, background 0.15s ease; |
| 55 |
background: #fff !important; |
| 56 |
box-shadow: none !important; |
| 57 |
outline: none !important; |
| 58 |
} |
| 59 |
|
| 60 |
.frm-payment-method-option input[type="radio"]:checked { |
| 61 |
border-color: #0070ba !important; |
| 62 |
background: radial-gradient(circle, #0070ba 40%, #fff 40%, #fff 100%) !important; |
| 63 |
} |
| 64 |
|
| 65 |
.frm-payment-method-option input[type="radio"]:focus { |
| 66 |
outline: 2px solid rgba(0, 112, 186, 0.3) !important; |
| 67 |
outline-offset: 2px !important; |
| 68 |
} |
| 69 |
|
| 70 |
.frm-payment-method-text { |
| 71 |
display: flex; |
| 72 |
flex-direction: column; |
| 73 |
gap: 2px; |
| 74 |
flex: 1; |
| 75 |
min-width: 0; |
| 76 |
} |
| 77 |
|
| 78 |
.frm-payment-method-label-text { |
| 79 |
font-size: 15px; |
| 80 |
font-weight: 500; |
| 81 |
color: #1a1a2e; |
| 82 |
line-height: 1.3; |
| 83 |
} |
| 84 |
|
| 85 |
.frm-payment-method-desc { |
| 86 |
font-size: 13px; |
| 87 |
color: #6b7280; |
| 88 |
line-height: 1.3; |
| 89 |
} |
| 90 |
|
| 91 |
.frm-payment-method-mark { |
| 92 |
flex-shrink: 0; |
| 93 |
display: flex; |
| 94 |
align-items: center; |
| 95 |
gap: 4px; |
| 96 |
} |
| 97 |
|
| 98 |
.frm-payment-method-mark img, |
| 99 |
.frm-payment-method-mark svg { |
| 100 |
height: 24px; |
| 101 |
width: auto; |
| 102 |
} |
| 103 |
|
| 104 |
.frm-payment-method-google-pay-icon { |
| 105 |
height: 24px; |
| 106 |
} |
| 107 |
|
| 108 |
.frm-payment-method-google-pay-icon svg { |
| 109 |
height: 24px; |
| 110 |
width: auto; |
| 111 |
} |
| 112 |
|
| 113 |
.frm-payment-method-apple-pay-icon { |
| 114 |
height: 24px; |
| 115 |
} |
| 116 |
|
| 117 |
.frm-payment-method-apple-pay-icon svg { |
| 118 |
height: 24px; |
| 119 |
width: auto; |
| 120 |
} |
| 121 |
|
| 122 |
.frm-payment-method-paylater-wrap { |
| 123 |
border-bottom: 1px solid #e0e0e0; |
| 124 |
background: #fff; |
| 125 |
transition: background-color 0.15s ease; |
| 126 |
} |
| 127 |
|
| 128 |
.frm-payment-method-paylater-wrap:hover { |
| 129 |
background-color: #f9f9fb; |
| 130 |
} |
| 131 |
|
| 132 |
.frm-payment-method-paylater-wrap.frm-payment-method-active-wrap { |
| 133 |
background-color: #f0f4ff; |
| 134 |
} |
| 135 |
|
| 136 |
.frm-payment-method-paylater-wrap.frm-payment-method-active-wrap:hover { |
| 137 |
background-color: #f0f4ff; |
| 138 |
} |
| 139 |
|
| 140 |
.frm-payment-method-paylater-wrap.frm-payment-method-active-wrap .frm-payment-method-paylater-msg { |
| 141 |
background-color: #f0f4ff; |
| 142 |
} |
| 143 |
|
| 144 |
.frm-payment-method-paylater-wrap:last-child { |
| 145 |
border-bottom: none; |
| 146 |
} |
| 147 |
|
| 148 |
.frm-payment-method-paylater-wrap .frm-payment-method-option { |
| 149 |
border-bottom: none; |
| 150 |
background: transparent; |
| 151 |
} |
| 152 |
|
| 153 |
.frm-payment-method-paylater-wrap .frm-payment-method-option:hover { |
| 154 |
background: transparent; |
| 155 |
} |
| 156 |
|
| 157 |
.frm-payment-method-paylater-msg { |
| 158 |
padding: 0 16px 12px 48px; |
| 159 |
font-size: 13px; |
| 160 |
color: #6b7280; |
| 161 |
background: transparent; |
| 162 |
} |
| 163 |
|
| 164 |
.frm-payment-method-area { |
| 165 |
margin-top: 16px; |
| 166 |
} |
| 167 |
|
| 168 |
.frm-payment-method-container { |
| 169 |
display: none; |
| 170 |
max-width: 500px; |
| 171 |
} |
| 172 |
|