| 1 |
@charset "UTF-8"; |
| 2 |
.intl-tel-input { |
| 3 |
position: relative; |
| 4 |
display: inline-block; |
| 5 |
} |
| 6 |
.intl-tel-input * { |
| 7 |
box-sizing: border-box; |
| 8 |
-moz-box-sizing: border-box; |
| 9 |
} |
| 10 |
.intl-tel-input .hide { |
| 11 |
display: none; |
| 12 |
} |
| 13 |
.intl-tel-input .v-hide { |
| 14 |
visibility: hidden; |
| 15 |
} |
| 16 |
.intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] { |
| 17 |
position: relative; |
| 18 |
z-index: 0; |
| 19 |
margin-top: 0 !important; |
| 20 |
margin-bottom: 0 !important; |
| 21 |
padding-right: 36px; |
| 22 |
margin-right: 0; |
| 23 |
} |
| 24 |
.intl-tel-input .flag-container { |
| 25 |
position: absolute; |
| 26 |
top: 0; |
| 27 |
bottom: 0; |
| 28 |
right: 0; |
| 29 |
padding: 1px; |
| 30 |
} |
| 31 |
.intl-tel-input .flag-container .arrow { |
| 32 |
font-size: 6px; |
| 33 |
margin-left: 5px; |
| 34 |
} |
| 35 |
.intl-tel-input .flag-container .arrow.up:after { |
| 36 |
content: "▲"; |
| 37 |
} |
| 38 |
.intl-tel-input .flag-container .arrow.down:after { |
| 39 |
content: "▼"; |
| 40 |
} |
| 41 |
.intl-tel-input .selected-flag { |
| 42 |
z-index: 1; |
| 43 |
position: relative; |
| 44 |
width: 36px; |
| 45 |
height: 100%; |
| 46 |
display: flex; |
| 47 |
justify-content: center; |
| 48 |
align-items: center; |
| 49 |
} |
| 50 |
.intl-tel-input .country-list { |
| 51 |
position: absolute; |
| 52 |
z-index: 2; |
| 53 |
list-style: none; |
| 54 |
text-align: left; |
| 55 |
padding: 0; |
| 56 |
margin: 0 0 0 -1px; |
| 57 |
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); |
| 58 |
background-color: white; |
| 59 |
border: 1px solid #CCC; |
| 60 |
white-space: nowrap; |
| 61 |
max-height: 200px; |
| 62 |
overflow-y: scroll; |
| 63 |
-webkit-overflow-scrolling: touch; |
| 64 |
} |
| 65 |
.intl-tel-input .country-list .divider { |
| 66 |
padding-bottom: 5px; |
| 67 |
margin-bottom: 5px; |
| 68 |
border-bottom: 1px solid #CCC; |
| 69 |
} |
| 70 |
.intl-tel-input .country-list.dropup { |
| 71 |
bottom: 100%; |
| 72 |
margin-bottom: -1px; |
| 73 |
} |
| 74 |
.intl-tel-input .country-list .flag-box { |
| 75 |
display: inline-block; |
| 76 |
width: 20px; |
| 77 |
} |
| 78 |
@media (max-width: 500px) { |
| 79 |
.intl-tel-input .country-list { |
| 80 |
white-space: normal; |
| 81 |
} |
| 82 |
} |
| 83 |
.intl-tel-input .country-list .country { |
| 84 |
padding: 5px 10px; |
| 85 |
} |
| 86 |
.intl-tel-input .country-list .country .dial-code { |
| 87 |
color: #999; |
| 88 |
} |
| 89 |
.intl-tel-input .country-list .country.highlight { |
| 90 |
background-color: rgba(0, 0, 0, 0.05); |
| 91 |
} |
| 92 |
.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code { |
| 93 |
vertical-align: middle; |
| 94 |
} |
| 95 |
.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name { |
| 96 |
margin-right: 6px; |
| 97 |
} |
| 98 |
.intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel] { |
| 99 |
padding-right: 6px; |
| 100 |
padding-left: 52px; |
| 101 |
margin-left: 0; |
| 102 |
} |
| 103 |
.intl-tel-input.allow-dropdown .flag-container { |
| 104 |
right: auto; |
| 105 |
left: 0; |
| 106 |
width: 100%; |
| 107 |
} |
| 108 |
.intl-tel-input.allow-dropdown .selected-flag { |
| 109 |
width: 46px; |
| 110 |
} |
| 111 |
.intl-tel-input.allow-dropdown .flag-container:hover { |
| 112 |
cursor: pointer; |
| 113 |
} |
| 114 |
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag { |
| 115 |
background-color: rgba(0, 0, 0, 0.05); |
| 116 |
} |
| 117 |
.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover { |
| 118 |
cursor: default; |
| 119 |
} |
| 120 |
.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag { |
| 121 |
background-color: transparent; |
| 122 |
} |
| 123 |
.intl-tel-input.allow-dropdown.separate-dial-code .selected-flag { |
| 124 |
background-color: rgba(0, 0, 0, 0.05); |
| 125 |
display: table; |
| 126 |
} |
| 127 |
.intl-tel-input.allow-dropdown.separate-dial-code .selected-dial-code { |
| 128 |
display: table-cell; |
| 129 |
vertical-align: middle; |
| 130 |
padding-left: 28px; |
| 131 |
} |
| 132 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input[type=tel] { |
| 133 |
padding-left: 76px; |
| 134 |
} |
| 135 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 .selected-flag { |
| 136 |
width: 70px; |
| 137 |
} |
| 138 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input[type=tel] { |
| 139 |
padding-left: 84px; |
| 140 |
} |
| 141 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 .selected-flag { |
| 142 |
width: 78px; |
| 143 |
} |
| 144 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input[type=tel] { |
| 145 |
padding-left: 92px; |
| 146 |
} |
| 147 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 .selected-flag { |
| 148 |
width: 86px; |
| 149 |
} |
| 150 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input[type=tel] { |
| 151 |
padding-left: 100px; |
| 152 |
} |
| 153 |
.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 .selected-flag { |
| 154 |
width: 94px; |
| 155 |
} |
| 156 |
.intl-tel-input.iti-container { |
| 157 |
position: absolute; |
| 158 |
top: -1000px; |
| 159 |
left: -1000px; |
| 160 |
z-index: 1060; |
| 161 |
padding: 1px; |
| 162 |
} |
| 163 |
.intl-tel-input.iti-container:hover { |
| 164 |
cursor: pointer; |
| 165 |
} |
| 166 |
|
| 167 |
.iti-mobile .intl-tel-input.iti-container { |
| 168 |
top: 30px; |
| 169 |
bottom: 30px; |
| 170 |
left: 30px; |
| 171 |
right: 30px; |
| 172 |
position: fixed; |
| 173 |
} |
| 174 |
.iti-mobile .intl-tel-input .country-list { |
| 175 |
max-height: 100%; |
| 176 |
width: 100%; |
| 177 |
-webkit-overflow-scrolling: touch; |
| 178 |
} |
| 179 |
.iti-mobile .intl-tel-input .country-list .country { |
| 180 |
padding: 10px 10px; |
| 181 |
line-height: 1.5em; |
| 182 |
} |
| 183 |
|
| 184 |
.iti-flag { |
| 185 |
width: 20px; |
| 186 |
} |
| 187 |
.iti-flag.be { |
| 188 |
width: 18px; |
| 189 |
} |
| 190 |
.iti-flag.ch { |
| 191 |
width: 15px; |
| 192 |
} |
| 193 |
.iti-flag.mc { |
| 194 |
width: 19px; |
| 195 |
} |
| 196 |
.iti-flag.ne { |
| 197 |
width: 18px; |
| 198 |
} |
| 199 |
.iti-flag.np { |
| 200 |
width: 13px; |
| 201 |
} |
| 202 |
.iti-flag.va { |
| 203 |
width: 15px; |
| 204 |
} |
| 205 |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) { |
| 206 |
.iti-flag { |
| 207 |
background-size: 5630px 15px; |
| 208 |
} |
| 209 |
} |
| 210 |
.iti-flag.ac { |
| 211 |
height: 10px; |
| 212 |
background-position: 0px 0px; |
| 213 |
} |
| 214 |
.iti-flag.ad { |
| 215 |
height: 14px; |
| 216 |
background-position: -22px 0px; |
| 217 |
} |
| 218 |
.iti-flag.ae { |
| 219 |
height: 10px; |
| 220 |
background-position: -44px 0px; |
| 221 |
} |
| 222 |
.iti-flag.af { |
| 223 |
height: 14px; |
| 224 |
background-position: -66px 0px; |
| 225 |
} |
| 226 |
.iti-flag.ag { |
| 227 |
height: 14px; |
| 228 |
background-position: -88px 0px; |
| 229 |
} |
| 230 |
.iti-flag.ai { |
| 231 |
height: 10px; |
| 232 |
background-position: -110px 0px; |
| 233 |
} |
| 234 |
.iti-flag.al { |
| 235 |
height: 15px; |
| 236 |
background-position: -132px 0px; |
| 237 |
} |
| 238 |
.iti-flag.am { |
| 239 |
height: 10px; |
| 240 |
background-position: -154px 0px; |
| 241 |
} |
| 242 |
.iti-flag.ao { |
| 243 |
height: 14px; |
| 244 |
background-position: -176px 0px; |
| 245 |
} |
| 246 |
.iti-flag.aq { |
| 247 |
height: 14px; |
| 248 |
background-position: -198px 0px; |
| 249 |
} |
| 250 |
.iti-flag.ar { |
| 251 |
height: 13px; |
| 252 |
background-position: -220px 0px; |
| 253 |
} |
| 254 |
.iti-flag.as { |
| 255 |
height: 10px; |
| 256 |
background-position: -242px 0px; |
| 257 |
} |
| 258 |
.iti-flag.at { |
| 259 |
height: 14px; |
| 260 |
background-position: -264px 0px; |
| 261 |
} |
| 262 |
.iti-flag.au { |
| 263 |
height: 10px; |
| 264 |
background-position: -286px 0px; |
| 265 |
} |
| 266 |
.iti-flag.aw { |
| 267 |
height: 14px; |
| 268 |
background-position: -308px 0px; |
| 269 |
} |
| 270 |
.iti-flag.ax { |
| 271 |
height: 13px; |
| 272 |
background-position: -330px 0px; |
| 273 |
} |
| 274 |
.iti-flag.az { |
| 275 |
height: 10px; |
| 276 |
background-position: -352px 0px; |
| 277 |
} |
| 278 |
.iti-flag.ba { |
| 279 |
height: 10px; |
| 280 |
background-position: -374px 0px; |
| 281 |
} |
| 282 |
.iti-flag.bb { |
| 283 |
height: 14px; |
| 284 |
background-position: -396px 0px; |
| 285 |
} |
| 286 |
.iti-flag.bd { |
| 287 |
height: 12px; |
| 288 |
background-position: -418px 0px; |
| 289 |
} |
| 290 |
.iti-flag.be { |
| 291 |
height: 15px; |
| 292 |
background-position: -440px 0px; |
| 293 |
} |
| 294 |
.iti-flag.bf { |
| 295 |
height: 14px; |
| 296 |
background-position: -460px 0px; |
| 297 |
} |
| 298 |
.iti-flag.bg { |
| 299 |
height: 12px; |
| 300 |
background-position: -482px 0px; |
| 301 |
} |
| 302 |
.iti-flag.bh { |
| 303 |
height: 12px; |
| 304 |
background-position: -504px 0px; |
| 305 |
} |
| 306 |
.iti-flag.bi { |
| 307 |
height: 12px; |
| 308 |
background-position: -526px 0px; |
| 309 |
} |
| 310 |
.iti-flag.bj { |
| 311 |
height: 14px; |
| 312 |
background-position: -548px 0px; |
| 313 |
} |
| 314 |
.iti-flag.bl { |
| 315 |
height: 14px; |
| 316 |
background-position: -570px 0px; |
| 317 |
} |
| 318 |
.iti-flag.bm { |
| 319 |
height: 10px; |
| 320 |
background-position: -592px 0px; |
| 321 |
} |
| 322 |
.iti-flag.bn { |
| 323 |
height: 10px; |
| 324 |
background-position: -614px 0px; |
| 325 |
} |
| 326 |
.iti-flag.bo { |
| 327 |
height: 14px; |
| 328 |
background-position: -636px 0px; |
| 329 |
} |
| 330 |
.iti-flag.bq { |
| 331 |
height: 14px; |
| 332 |
background-position: -658px 0px; |
| 333 |
} |
| 334 |
.iti-flag.br { |
| 335 |
height: 14px; |
| 336 |
background-position: -680px 0px; |
| 337 |
} |
| 338 |
.iti-flag.bs { |
| 339 |
height: 10px; |
| 340 |
background-position: -702px 0px; |
| 341 |
} |
| 342 |
.iti-flag.bt { |
| 343 |
height: 14px; |
| 344 |
background-position: -724px 0px; |
| 345 |
} |
| 346 |
.iti-flag.bv { |
| 347 |
height: 15px; |
| 348 |
background-position: -746px 0px; |
| 349 |
} |
| 350 |
.iti-flag.bw { |
| 351 |
height: 14px; |
| 352 |
background-position: -768px 0px; |
| 353 |
} |
| 354 |
.iti-flag.by { |
| 355 |
height: 10px; |
| 356 |
background-position: -790px 0px; |
| 357 |
} |
| 358 |
.iti-flag.bz { |
| 359 |
height: 14px; |
| 360 |
background-position: -812px 0px; |
| 361 |
} |
| 362 |
.iti-flag.ca { |
| 363 |
height: 10px; |
| 364 |
background-position: -834px 0px; |
| 365 |
} |
| 366 |
.iti-flag.cc { |
| 367 |
height: 10px; |
| 368 |
background-position: -856px 0px; |
| 369 |
} |
| 370 |
.iti-flag.cd { |
| 371 |
height: 15px; |
| 372 |
background-position: -878px 0px; |
| 373 |
} |
| 374 |
.iti-flag.cf { |
| 375 |
height: 14px; |
| 376 |
background-position: -900px 0px; |
| 377 |
} |
| 378 |
.iti-flag.cg { |
| 379 |
height: 14px; |
| 380 |
background-position: -922px 0px; |
| 381 |
} |
| 382 |
.iti-flag.ch { |
| 383 |
height: 15px; |
| 384 |
background-position: -944px 0px; |
| 385 |
} |
| 386 |
.iti-flag.ci { |
| 387 |
height: 14px; |
| 388 |
background-position: -961px 0px; |
| 389 |
} |
| 390 |
.iti-flag.ck { |
| 391 |
height: 10px; |
| 392 |
background-position: -983px 0px; |
| 393 |
} |
| 394 |
.iti-flag.cl { |
| 395 |
height: 14px; |
| 396 |
background-position: -1005px 0px; |
| 397 |
} |
| 398 |
.iti-flag.cm { |
| 399 |
height: 14px; |
| 400 |
background-position: -1027px 0px; |
| 401 |
} |
| 402 |
.iti-flag.cn { |
| 403 |
height: 14px; |
| 404 |
background-position: -1049px 0px; |
| 405 |
} |
| 406 |
.iti-flag.co { |
| 407 |
height: 14px; |
| 408 |
background-position: -1071px 0px; |
| 409 |
} |
| 410 |
.iti-flag.cp { |
| 411 |
height: 14px; |
| 412 |
background-position: -1093px 0px; |
| 413 |
} |
| 414 |
.iti-flag.cr { |
| 415 |
height: 12px; |
| 416 |
background-position: -1115px 0px; |
| 417 |
} |
| 418 |
.iti-flag.cu { |
| 419 |
height: 10px; |
| 420 |
background-position: -1137px 0px; |
| 421 |
} |
| 422 |
.iti-flag.cv { |
| 423 |
height: 12px; |
| 424 |
background-position: -1159px 0px; |
| 425 |
} |
| 426 |
.iti-flag.cw { |
| 427 |
height: 14px; |
| 428 |
background-position: -1181px 0px; |
| 429 |
} |
| 430 |
.iti-flag.cx { |
| 431 |
height: 10px; |
| 432 |
background-position: -1203px 0px; |
| 433 |
} |
| 434 |
.iti-flag.cy { |
| 435 |
height: 14px; |
| 436 |
background-position: -1225px 0px; |
| 437 |
} |
| 438 |
.iti-flag.cz { |
| 439 |
height: 14px; |
| 440 |
background-position: -1247px 0px; |
| 441 |
} |
| 442 |
.iti-flag.de { |
| 443 |
height: 12px; |
| 444 |
background-position: -1269px 0px; |
| 445 |
} |
| 446 |
.iti-flag.dg { |
| 447 |
height: 10px; |
| 448 |
background-position: -1291px 0px; |
| 449 |
} |
| 450 |
.iti-flag.dj { |
| 451 |
height: 14px; |
| 452 |
background-position: -1313px 0px; |
| 453 |
} |
| 454 |
.iti-flag.dk { |
| 455 |
height: 15px; |
| 456 |
background-position: -1335px 0px; |
| 457 |
} |
| 458 |
.iti-flag.dm { |
| 459 |
height: 10px; |
| 460 |
background-position: -1357px 0px; |
| 461 |
} |
| 462 |
.iti-flag.do { |
| 463 |
height: 13px; |
| 464 |
background-position: -1379px 0px; |
| 465 |
} |
| 466 |
.iti-flag.dz { |
| 467 |
height: 14px; |
| 468 |
background-position: -1401px 0px; |
| 469 |
} |
| 470 |
.iti-flag.ea { |
| 471 |
height: 14px; |
| 472 |
background-position: -1423px 0px; |
| 473 |
} |
| 474 |
.iti-flag.ec { |
| 475 |
height: 14px; |
| 476 |
background-position: -1445px 0px; |
| 477 |
} |
| 478 |
.iti-flag.ee { |
| 479 |
height: 13px; |
| 480 |
background-position: -1467px 0px; |
| 481 |
} |
| 482 |
.iti-flag.eg { |
| 483 |
height: 14px; |
| 484 |
background-position: -1489px 0px; |
| 485 |
} |
| 486 |
.iti-flag.eh { |
| 487 |
height: 10px; |
| 488 |
background-position: -1511px 0px; |
| 489 |
} |
| 490 |
.iti-flag.er { |
| 491 |
height: 10px; |
| 492 |
background-position: -1533px 0px; |
| 493 |
} |
| 494 |
.iti-flag.es { |
| 495 |
height: 14px; |
| 496 |
background-position: -1555px 0px; |
| 497 |
} |
| 498 |
.iti-flag.et { |
| 499 |
height: 10px; |
| 500 |
background-position: -1577px 0px; |
| 501 |
} |
| 502 |
.iti-flag.eu { |
| 503 |
height: 14px; |
| 504 |
background-position: -1599px 0px; |
| 505 |
} |
| 506 |
.iti-flag.fi { |
| 507 |
height: 12px; |
| 508 |
background-position: -1621px 0px; |
| 509 |
} |
| 510 |
.iti-flag.fj { |
| 511 |
height: 10px; |
| 512 |
background-position: -1643px 0px; |
| 513 |
} |
| 514 |
.iti-flag.fk { |
| 515 |
height: 10px; |
| 516 |
background-position: -1665px 0px; |
| 517 |
} |
| 518 |
.iti-flag.fm { |
| 519 |
height: 11px; |
| 520 |
background-position: -1687px 0px; |
| 521 |
} |
| 522 |
.iti-flag.fo { |
| 523 |
height: 15px; |
| 524 |
background-position: -1709px 0px; |
| 525 |
} |
| 526 |
.iti-flag.fr { |
| 527 |
height: 14px; |
| 528 |
background-position: -1731px 0px; |
| 529 |
} |
| 530 |
.iti-flag.ga { |
| 531 |
height: 15px; |
| 532 |
background-position: -1753px 0px; |
| 533 |
} |
| 534 |
.iti-flag.gb { |
| 535 |
height: 10px; |
| 536 |
background-position: -1775px 0px; |
| 537 |
} |
| 538 |
.iti-flag.gd { |
| 539 |
height: 12px; |
| 540 |
background-position: -1797px 0px; |
| 541 |
} |
| 542 |
.iti-flag.ge { |
| 543 |
height: 14px; |
| 544 |
background-position: -1819px 0px; |
| 545 |
} |
| 546 |
.iti-flag.gf { |
| 547 |
height: 14px; |
| 548 |
background-position: -1841px 0px; |
| 549 |
} |
| 550 |
.iti-flag.gg { |
| 551 |
height: 14px; |
| 552 |
background-position: -1863px 0px; |
| 553 |
} |
| 554 |
.iti-flag.gh { |
| 555 |
height: 14px; |
| 556 |
background-position: -1885px 0px; |
| 557 |
} |
| 558 |
.iti-flag.gi { |
| 559 |
height: 10px; |
| 560 |
background-position: -1907px 0px; |
| 561 |
} |
| 562 |
.iti-flag.gl { |
| 563 |
height: 14px; |
| 564 |
background-position: -1929px 0px; |
| 565 |
} |
| 566 |
.iti-flag.gm { |
| 567 |
height: 14px; |
| 568 |
background-position: -1951px 0px; |
| 569 |
} |
| 570 |
.iti-flag.gn { |
| 571 |
height: 14px; |
| 572 |
background-position: -1973px 0px; |
| 573 |
} |
| 574 |
.iti-flag.gp { |
| 575 |
height: 14px; |
| 576 |
background-position: -1995px 0px; |
| 577 |
} |
| 578 |
.iti-flag.gq { |
| 579 |
height: 14px; |
| 580 |
background-position: -2017px 0px; |
| 581 |
} |
| 582 |
.iti-flag.gr { |
| 583 |
height: 14px; |
| 584 |
background-position: -2039px 0px; |
| 585 |
} |
| 586 |
.iti-flag.gs { |
| 587 |
height: 10px; |
| 588 |
background-position: -2061px 0px; |
| 589 |
} |
| 590 |
.iti-flag.gt { |
| 591 |
height: 13px; |
| 592 |
background-position: -2083px 0px; |
| 593 |
} |
| 594 |
.iti-flag.gu { |
| 595 |
height: 11px; |
| 596 |
background-position: -2105px 0px; |
| 597 |
} |
| 598 |
.iti-flag.gw { |
| 599 |
height: 10px; |
| 600 |
background-position: -2127px 0px; |
| 601 |
} |
| 602 |
.iti-flag.gy { |
| 603 |
height: 12px; |
| 604 |
background-position: -2149px 0px; |
| 605 |
} |
| 606 |
.iti-flag.hk { |
| 607 |
height: 14px; |
| 608 |
background-position: -2171px 0px; |
| 609 |
} |
| 610 |
.iti-flag.hm { |
| 611 |
height: 10px; |
| 612 |
background-position: -2193px 0px; |
| 613 |
} |
| 614 |
.iti-flag.hn { |
| 615 |
height: 10px; |
| 616 |
background-position: -2215px 0px; |
| 617 |
} |
| 618 |
.iti-flag.hr { |
| 619 |
height: 10px; |
| 620 |
background-position: -2237px 0px; |
| 621 |
} |
| 622 |
.iti-flag.ht { |
| 623 |
height: 12px; |
| 624 |
background-position: -2259px 0px; |
| 625 |
} |
| 626 |
.iti-flag.hu { |
| 627 |
height: 10px; |
| 628 |
background-position: -2281px 0px; |
| 629 |
} |
| 630 |
.iti-flag.ic { |
| 631 |
height: 14px; |
| 632 |
background-position: -2303px 0px; |
| 633 |
} |
| 634 |
.iti-flag.id { |
| 635 |
height: 14px; |
| 636 |
background-position: -2325px 0px; |
| 637 |
} |
| 638 |
.iti-flag.ie { |
| 639 |
height: 10px; |
| 640 |
background-position: -2347px 0px; |
| 641 |
} |
| 642 |
.iti-flag.il { |
| 643 |
height: 15px; |
| 644 |
background-position: -2369px 0px; |
| 645 |
} |
| 646 |
.iti-flag.im { |
| 647 |
height: 10px; |
| 648 |
background-position: -2391px 0px; |
| 649 |
} |
| 650 |
.iti-flag.in { |
| 651 |
height: 14px; |
| 652 |
background-position: -2413px 0px; |
| 653 |
} |
| 654 |
.iti-flag.io { |
| 655 |
height: 10px; |
| 656 |
background-position: -2435px 0px; |
| 657 |
} |
| 658 |
.iti-flag.iq { |
| 659 |
height: 14px; |
| 660 |
background-position: -2457px 0px; |
| 661 |
} |
| 662 |
.iti-flag.ir { |
| 663 |
height: 12px; |
| 664 |
background-position: -2479px 0px; |
| 665 |
} |
| 666 |
.iti-flag.is { |
| 667 |
height: 15px; |
| 668 |
background-position: -2501px 0px; |
| 669 |
} |
| 670 |
.iti-flag.it { |
| 671 |
height: 14px; |
| 672 |
background-position: -2523px 0px; |
| 673 |
} |
| 674 |
.iti-flag.je { |
| 675 |
height: 12px; |
| 676 |
background-position: -2545px 0px; |
| 677 |
} |
| 678 |
.iti-flag.jm { |
| 679 |
height: 10px; |
| 680 |
background-position: -2567px 0px; |
| 681 |
} |
| 682 |
.iti-flag.jo { |
| 683 |
height: 10px; |
| 684 |
background-position: -2589px 0px; |
| 685 |
} |
| 686 |
.iti-flag.jp { |
| 687 |
height: 14px; |
| 688 |
background-position: -2611px 0px; |
| 689 |
} |
| 690 |
.iti-flag.ke { |
| 691 |
height: 14px; |
| 692 |
background-position: -2633px 0px; |
| 693 |
} |
| 694 |
.iti-flag.kg { |
| 695 |
height: 12px; |
| 696 |
background-position: -2655px 0px; |
| 697 |
} |
| 698 |
.iti-flag.kh { |
| 699 |
height: 13px; |
| 700 |
background-position: -2677px 0px; |
| 701 |
} |
| 702 |
.iti-flag.ki { |
| 703 |
height: 10px; |
| 704 |
background-position: -2699px 0px; |
| 705 |
} |
| 706 |
.iti-flag.km { |
| 707 |
height: 12px; |
| 708 |
background-position: -2721px 0px; |
| 709 |
} |
| 710 |
.iti-flag.kn { |
| 711 |
height: 14px; |
| 712 |
background-position: -2743px 0px; |
| 713 |
} |
| 714 |
.iti-flag.kp { |
| 715 |
height: 10px; |
| 716 |
background-position: -2765px 0px; |
| 717 |
} |
| 718 |
.iti-flag.kr { |
| 719 |
height: 14px; |
| 720 |
background-position: -2787px 0px; |
| 721 |
} |
| 722 |
.iti-flag.kw { |
| 723 |
height: 10px; |
| 724 |
background-position: -2809px 0px; |
| 725 |
} |
| 726 |
.iti-flag.ky { |
| 727 |
height: 10px; |
| 728 |
background-position: -2831px 0px; |
| 729 |
} |
| 730 |
.iti-flag.kz { |
| 731 |
height: 10px; |
| 732 |
background-position: -2853px 0px; |
| 733 |
} |
| 734 |
.iti-flag.la { |
| 735 |
height: 14px; |
| 736 |
background-position: -2875px 0px; |
| 737 |
} |
| 738 |
.iti-flag.lb { |
| 739 |
height: 14px; |
| 740 |
background-position: -2897px 0px; |
| 741 |
} |
| 742 |
.iti-flag.lc { |
| 743 |
height: 10px; |
| 744 |
background-position: -2919px 0px; |
| 745 |
} |
| 746 |
.iti-flag.li { |
| 747 |
height: 12px; |
| 748 |
background-position: -2941px 0px; |
| 749 |
} |
| 750 |
.iti-flag.lk { |
| 751 |
height: 10px; |
| 752 |
background-position: -2963px 0px; |
| 753 |
} |
| 754 |
.iti-flag.lr { |
| 755 |
height: 11px; |
| 756 |
background-position: -2985px 0px; |
| 757 |
} |
| 758 |
.iti-flag.ls { |
| 759 |
height: 14px; |
| 760 |
background-position: -3007px 0px; |
| 761 |
} |
| 762 |
.iti-flag.lt { |
| 763 |
height: 12px; |
| 764 |
background-position: -3029px 0px; |
| 765 |
} |
| 766 |
.iti-flag.lu { |
| 767 |
height: 12px; |
| 768 |
background-position: -3051px 0px; |
| 769 |
} |
| 770 |
.iti-flag.lv { |
| 771 |
height: 10px; |
| 772 |
background-position: -3073px 0px; |
| 773 |
} |
| 774 |
.iti-flag.ly { |
| 775 |
height: 10px; |
| 776 |
background-position: -3095px 0px; |
| 777 |
} |
| 778 |
.iti-flag.ma { |
| 779 |
height: 14px; |
| 780 |
background-position: -3117px 0px; |
| 781 |
} |
| 782 |
.iti-flag.mc { |
| 783 |
height: 15px; |
| 784 |
background-position: -3139px 0px; |
| 785 |
} |
| 786 |
.iti-flag.md { |
| 787 |
height: 10px; |
| 788 |
background-position: -3160px 0px; |
| 789 |
} |
| 790 |
.iti-flag.me { |
| 791 |
height: 10px; |
| 792 |
background-position: -3182px 0px; |
| 793 |
} |
| 794 |
.iti-flag.mf { |
| 795 |
height: 14px; |
| 796 |
background-position: -3204px 0px; |
| 797 |
} |
| 798 |
.iti-flag.mg { |
| 799 |
height: 14px; |
| 800 |
background-position: -3226px 0px; |
| 801 |
} |
| 802 |
.iti-flag.mh { |
| 803 |
height: 11px; |
| 804 |
background-position: -3248px 0px; |
| 805 |
} |
| 806 |
.iti-flag.mk { |
| 807 |
height: 10px; |
| 808 |
background-position: -3270px 0px; |
| 809 |
} |
| 810 |
.iti-flag.ml { |
| 811 |
height: 14px; |
| 812 |
background-position: -3292px 0px; |
| 813 |
} |
| 814 |
.iti-flag.mm { |
| 815 |
height: 14px; |
| 816 |
background-position: -3314px 0px; |
| 817 |
} |
| 818 |
.iti-flag.mn { |
| 819 |
height: 10px; |
| 820 |
background-position: -3336px 0px; |
| 821 |
} |
| 822 |
.iti-flag.mo { |
| 823 |
height: 14px; |
| 824 |
background-position: -3358px 0px; |
| 825 |
} |
| 826 |
.iti-flag.mp { |
| 827 |
height: 10px; |
| 828 |
background-position: -3380px 0px; |
| 829 |
} |
| 830 |
.iti-flag.mq { |
| 831 |
height: 14px; |
| 832 |
background-position: -3402px 0px; |
| 833 |
} |
| 834 |
.iti-flag.mr { |
| 835 |
height: 14px; |
| 836 |
background-position: -3424px 0px; |
| 837 |
} |
| 838 |
.iti-flag.ms { |
| 839 |
height: 10px; |
| 840 |
background-position: -3446px 0px; |
| 841 |
} |
| 842 |
.iti-flag.mt { |
| 843 |
height: 14px; |
| 844 |
background-position: -3468px 0px; |
| 845 |
} |
| 846 |
.iti-flag.mu { |
| 847 |
height: 14px; |
| 848 |
background-position: -3490px 0px; |
| 849 |
} |
| 850 |
.iti-flag.mv { |
| 851 |
height: 14px; |
| 852 |
background-position: -3512px 0px; |
| 853 |
} |
| 854 |
.iti-flag.mw { |
| 855 |
height: 14px; |
| 856 |
background-position: -3534px 0px; |
| 857 |
} |
| 858 |
.iti-flag.mx { |
| 859 |
height: 12px; |
| 860 |
background-position: -3556px 0px; |
| 861 |
} |
| 862 |
.iti-flag.my { |
| 863 |
height: 10px; |
| 864 |
background-position: -3578px 0px; |
| 865 |
} |
| 866 |
.iti-flag.mz { |
| 867 |
height: 14px; |
| 868 |
background-position: -3600px 0px; |
| 869 |
} |
| 870 |
.iti-flag.na { |
| 871 |
height: 14px; |
| 872 |
background-position: -3622px 0px; |
| 873 |
} |
| 874 |
.iti-flag.nc { |
| 875 |
height: 10px; |
| 876 |
background-position: -3644px 0px; |
| 877 |
} |
| 878 |
.iti-flag.ne { |
| 879 |
height: 15px; |
| 880 |
background-position: -3666px 0px; |
| 881 |
} |
| 882 |
.iti-flag.nf { |
| 883 |
height: 10px; |
| 884 |
background-position: -3686px 0px; |
| 885 |
} |
| 886 |
.iti-flag.ng { |
| 887 |
height: 10px; |
| 888 |
background-position: -3708px 0px; |
| 889 |
} |
| 890 |
.iti-flag.ni { |
| 891 |
height: 12px; |
| 892 |
background-position: -3730px 0px; |
| 893 |
} |
| 894 |
.iti-flag.nl { |
| 895 |
height: 14px; |
| 896 |
background-position: -3752px 0px; |
| 897 |
} |
| 898 |
.iti-flag.no { |
| 899 |
height: 15px; |
| 900 |
background-position: -3774px 0px; |
| 901 |
} |
| 902 |
.iti-flag.np { |
| 903 |
height: 15px; |
| 904 |
background-position: -3796px 0px; |
| 905 |
} |
| 906 |
.iti-flag.nr { |
| 907 |
height: 10px; |
| 908 |
background-position: -3811px 0px; |
| 909 |
} |
| 910 |
.iti-flag.nu { |
| 911 |
height: 10px; |
| 912 |
background-position: -3833px 0px; |
| 913 |
} |
| 914 |
.iti-flag.nz { |
| 915 |
height: 10px; |
| 916 |
background-position: -3855px 0px; |
| 917 |
} |
| 918 |
.iti-flag.om { |
| 919 |
height: 10px; |
| 920 |
background-position: -3877px 0px; |
| 921 |
} |
| 922 |
.iti-flag.pa { |
| 923 |
height: 14px; |
| 924 |
background-position: -3899px 0px; |
| 925 |
} |
| 926 |
.iti-flag.pe { |
| 927 |
height: 14px; |
| 928 |
background-position: -3921px 0px; |
| 929 |
} |
| 930 |
.iti-flag.pf { |
| 931 |
height: 14px; |
| 932 |
background-position: -3943px 0px; |
| 933 |
} |
| 934 |
.iti-flag.pg { |
| 935 |
height: 15px; |
| 936 |
background-position: -3965px 0px; |
| 937 |
} |
| 938 |
.iti-flag.ph { |
| 939 |
height: 10px; |
| 940 |
background-position: -3987px 0px; |
| 941 |
} |
| 942 |
.iti-flag.pk { |
| 943 |
height: 14px; |
| 944 |
background-position: -4009px 0px; |
| 945 |
} |
| 946 |
.iti-flag.pl { |
| 947 |
height: 13px; |
| 948 |
background-position: -4031px 0px; |
| 949 |
} |
| 950 |
.iti-flag.pm { |
| 951 |
height: 14px; |
| 952 |
background-position: -4053px 0px; |
| 953 |
} |
| 954 |
.iti-flag.pn { |
| 955 |
height: 10px; |
| 956 |
background-position: -4075px 0px; |
| 957 |
} |
| 958 |
.iti-flag.pr { |
| 959 |
height: 14px; |
| 960 |
background-position: -4097px 0px; |
| 961 |
} |
| 962 |
.iti-flag.ps { |
| 963 |
height: 10px; |
| 964 |
background-position: -4119px 0px; |
| 965 |
} |
| 966 |
.iti-flag.pt { |
| 967 |
height: 14px; |
| 968 |
background-position: -4141px 0px; |
| 969 |
} |
| 970 |
.iti-flag.pw { |
| 971 |
height: 13px; |
| 972 |
background-position: -4163px 0px; |
| 973 |
} |
| 974 |
.iti-flag.py { |
| 975 |
height: 11px; |
| 976 |
background-position: -4185px 0px; |
| 977 |
} |
| 978 |
.iti-flag.qa { |
| 979 |
height: 8px; |
| 980 |
background-position: -4207px 0px; |
| 981 |
} |
| 982 |
.iti-flag.re { |
| 983 |
height: 14px; |
| 984 |
background-position: -4229px 0px; |
| 985 |
} |
| 986 |
.iti-flag.ro { |
| 987 |
height: 14px; |
| 988 |
background-position: -4251px 0px; |
| 989 |
} |
| 990 |
.iti-flag.rs { |
| 991 |
height: 14px; |
| 992 |
background-position: -4273px 0px; |
| 993 |
} |
| 994 |
.iti-flag.ru { |
| 995 |
height: 14px; |
| 996 |
background-position: -4295px 0px; |
| 997 |
} |
| 998 |
.iti-flag.rw { |
| 999 |
height: 14px; |
| 1000 |
background-position: -4317px 0px; |
| 1001 |
} |
| 1002 |
.iti-flag.sa { |
| 1003 |
height: 14px; |
| 1004 |
background-position: -4339px 0px; |
| 1005 |
} |
| 1006 |
.iti-flag.sb { |
| 1007 |
height: 10px; |
| 1008 |
background-position: -4361px 0px; |
| 1009 |
} |
| 1010 |
.iti-flag.sc { |
| 1011 |
height: 10px; |
| 1012 |
background-position: -4383px 0px; |
| 1013 |
} |
| 1014 |
.iti-flag.sd { |
| 1015 |
height: 10px; |
| 1016 |
background-position: -4405px 0px; |
| 1017 |
} |
| 1018 |
.iti-flag.se { |
| 1019 |
height: 13px; |
| 1020 |
background-position: -4427px 0px; |
| 1021 |
} |
| 1022 |
.iti-flag.sg { |
| 1023 |
height: 14px; |
| 1024 |
background-position: -4449px 0px; |
| 1025 |
} |
| 1026 |
.iti-flag.sh { |
| 1027 |
height: 10px; |
| 1028 |
background-position: -4471px 0px; |
| 1029 |
} |
| 1030 |
.iti-flag.si { |
| 1031 |
height: 10px; |
| 1032 |
background-position: -4493px 0px; |
| 1033 |
} |
| 1034 |
.iti-flag.sj { |
| 1035 |
height: 15px; |
| 1036 |
background-position: -4515px 0px; |
| 1037 |
} |
| 1038 |
.iti-flag.sk { |
| 1039 |
height: 14px; |
| 1040 |
background-position: -4537px 0px; |
| 1041 |
} |
| 1042 |
.iti-flag.sl { |
| 1043 |
height: 14px; |
| 1044 |
background-position: -4559px 0px; |
| 1045 |
} |
| 1046 |
.iti-flag.sm { |
| 1047 |
height: 15px; |
| 1048 |
background-position: -4581px 0px; |
| 1049 |
} |
| 1050 |
.iti-flag.sn { |
| 1051 |
height: 14px; |
| 1052 |
background-position: -4603px 0px; |
| 1053 |
} |
| 1054 |
.iti-flag.so { |
| 1055 |
height: 14px; |
| 1056 |
background-position: -4625px 0px; |
| 1057 |
} |
| 1058 |
.iti-flag.sr { |
| 1059 |
height: 14px; |
| 1060 |
background-position: -4647px 0px; |
| 1061 |
} |
| 1062 |
.iti-flag.ss { |
| 1063 |
height: 10px; |
| 1064 |
background-position: -4669px 0px; |
| 1065 |
} |
| 1066 |
.iti-flag.st { |
| 1067 |
height: 10px; |
| 1068 |
background-position: -4691px 0px; |
| 1069 |
} |
| 1070 |
.iti-flag.sv { |
| 1071 |
height: 12px; |
| 1072 |
background-position: -4713px 0px; |
| 1073 |
} |
| 1074 |
.iti-flag.sx { |
| 1075 |
height: 14px; |
| 1076 |
background-position: -4735px 0px; |
| 1077 |
} |
| 1078 |
.iti-flag.sy { |
| 1079 |
height: 14px; |
| 1080 |
background-position: -4757px 0px; |
| 1081 |
} |
| 1082 |
.iti-flag.sz { |
| 1083 |
height: 14px; |
| 1084 |
background-position: -4779px 0px; |
| 1085 |
} |
| 1086 |
.iti-flag.ta { |
| 1087 |
height: 10px; |
| 1088 |
background-position: -4801px 0px; |
| 1089 |
} |
| 1090 |
.iti-flag.tc { |
| 1091 |
height: 10px; |
| 1092 |
background-position: -4823px 0px; |
| 1093 |
} |
| 1094 |
.iti-flag.td { |
| 1095 |
height: 14px; |
| 1096 |
background-position: -4845px 0px; |
| 1097 |
} |
| 1098 |
.iti-flag.tf { |
| 1099 |
height: 14px; |
| 1100 |
background-position: -4867px 0px; |
| 1101 |
} |
| 1102 |
.iti-flag.tg { |
| 1103 |
height: 13px; |
| 1104 |
background-position: -4889px 0px; |
| 1105 |
} |
| 1106 |
.iti-flag.th { |
| 1107 |
height: 14px; |
| 1108 |
background-position: -4911px 0px; |
| 1109 |
} |
| 1110 |
.iti-flag.tj { |
| 1111 |
height: 10px; |
| 1112 |
background-position: -4933px 0px; |
| 1113 |
} |
| 1114 |
.iti-flag.tk { |
| 1115 |
height: 10px; |
| 1116 |
background-position: -4955px 0px; |
| 1117 |
} |
| 1118 |
.iti-flag.tl { |
| 1119 |
height: 10px; |
| 1120 |
background-position: -4977px 0px; |
| 1121 |
} |
| 1122 |
.iti-flag.tm { |
| 1123 |
height: 14px; |
| 1124 |
background-position: -4999px 0px; |
| 1125 |
} |
| 1126 |
.iti-flag.tn { |
| 1127 |
height: 14px; |
| 1128 |
background-position: -5021px 0px; |
| 1129 |
} |
| 1130 |
.iti-flag.to { |
| 1131 |
height: 10px; |
| 1132 |
background-position: -5043px 0px; |
| 1133 |
} |
| 1134 |
.iti-flag.tr { |
| 1135 |
height: 14px; |
| 1136 |
background-position: -5065px 0px; |
| 1137 |
} |
| 1138 |
.iti-flag.tt { |
| 1139 |
height: 12px; |
| 1140 |
background-position: -5087px 0px; |
| 1141 |
} |
| 1142 |
.iti-flag.tv { |
| 1143 |
height: 10px; |
| 1144 |
background-position: -5109px 0px; |
| 1145 |
} |
| 1146 |
.iti-flag.tw { |
| 1147 |
height: 14px; |
| 1148 |
background-position: -5131px 0px; |
| 1149 |
} |
| 1150 |
.iti-flag.tz { |
| 1151 |
height: 14px; |
| 1152 |
background-position: -5153px 0px; |
| 1153 |
} |
| 1154 |
.iti-flag.ua { |
| 1155 |
height: 14px; |
| 1156 |
background-position: -5175px 0px; |
| 1157 |
} |
| 1158 |
.iti-flag.ug { |
| 1159 |
height: 14px; |
| 1160 |
background-position: -5197px 0px; |
| 1161 |
} |
| 1162 |
.iti-flag.um { |
| 1163 |
height: 11px; |
| 1164 |
background-position: -5219px 0px; |
| 1165 |
} |
| 1166 |
.iti-flag.us { |
| 1167 |
height: 11px; |
| 1168 |
background-position: -5241px 0px; |
| 1169 |
} |
| 1170 |
.iti-flag.uy { |
| 1171 |
height: 14px; |
| 1172 |
background-position: -5263px 0px; |
| 1173 |
} |
| 1174 |
.iti-flag.uz { |
| 1175 |
height: 10px; |
| 1176 |
background-position: -5285px 0px; |
| 1177 |
} |
| 1178 |
.iti-flag.va { |
| 1179 |
height: 15px; |
| 1180 |
background-position: -5307px 0px; |
| 1181 |
} |
| 1182 |
.iti-flag.vc { |
| 1183 |
height: 14px; |
| 1184 |
background-position: -5324px 0px; |
| 1185 |
} |
| 1186 |
.iti-flag.ve { |
| 1187 |
height: 14px; |
| 1188 |
background-position: -5346px 0px; |
| 1189 |
} |
| 1190 |
.iti-flag.vg { |
| 1191 |
height: 10px; |
| 1192 |
background-position: -5368px 0px; |
| 1193 |
} |
| 1194 |
.iti-flag.vi { |
| 1195 |
height: 14px; |
| 1196 |
background-position: -5390px 0px; |
| 1197 |
} |
| 1198 |
.iti-flag.vn { |
| 1199 |
height: 14px; |
| 1200 |
background-position: -5412px 0px; |
| 1201 |
} |
| 1202 |
.iti-flag.vu { |
| 1203 |
height: 12px; |
| 1204 |
background-position: -5434px 0px; |
| 1205 |
} |
| 1206 |
.iti-flag.wf { |
| 1207 |
height: 14px; |
| 1208 |
background-position: -5456px 0px; |
| 1209 |
} |
| 1210 |
.iti-flag.ws { |
| 1211 |
height: 10px; |
| 1212 |
background-position: -5478px 0px; |
| 1213 |
} |
| 1214 |
.iti-flag.xk { |
| 1215 |
height: 15px; |
| 1216 |
background-position: -5500px 0px; |
| 1217 |
} |
| 1218 |
.iti-flag.ye { |
| 1219 |
height: 14px; |
| 1220 |
background-position: -5522px 0px; |
| 1221 |
} |
| 1222 |
.iti-flag.yt { |
| 1223 |
height: 14px; |
| 1224 |
background-position: -5544px 0px; |
| 1225 |
} |
| 1226 |
.iti-flag.za { |
| 1227 |
height: 14px; |
| 1228 |
background-position: -5566px 0px; |
| 1229 |
} |
| 1230 |
.iti-flag.zm { |
| 1231 |
height: 14px; |
| 1232 |
background-position: -5588px 0px; |
| 1233 |
} |
| 1234 |
.iti-flag.zw { |
| 1235 |
height: 10px; |
| 1236 |
background-position: -5610px 0px; |
| 1237 |
} |
| 1238 |
|
| 1239 |
.iti-flag { |
| 1240 |
width: 20px; |
| 1241 |
height: 15px; |
| 1242 |
box-shadow: 0px 0px 1px 0px #888; |
| 1243 |
background-image: url(images/flags.ae531914.png); |
| 1244 |
background-repeat: no-repeat; |
| 1245 |
background-color: #DBDBDB; |
| 1246 |
background-position: 20px 0; |
| 1247 |
} |
| 1248 |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) { |
| 1249 |
.iti-flag { |
| 1250 |
background-image: url(images/flags@2x.140042eb.png); |
| 1251 |
} |
| 1252 |
} |
| 1253 |
|
| 1254 |
.iti-flag.np { |
| 1255 |
background-color: transparent; |
| 1256 |
} |
| 1257 |
|
| 1258 |
|