An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1083 lines
23 KiB

3 years ago
  1. /* All Menus */
  2. .current-menu-item {
  3. background: #ddd;
  4. }
  5. /* Above Header Menu */
  6. #aboveheadermenu,
  7. #aboveheadermenu ul,
  8. #aboveheadermenu ul li,
  9. #aboveheadermenu ul li a,
  10. #aboveheadermenu #menu-button {
  11. margin: 0;
  12. padding: 0;
  13. border: 0;
  14. list-style: none;
  15. line-height: 1;
  16. display: block;
  17. position: relative;
  18. -webkit-box-sizing: border-box;
  19. -moz-box-sizing: border-box;
  20. box-sizing: border-box;
  21. }
  22. #aboveheadermenu:after,
  23. #aboveheadermenu > ul:after {
  24. content: ".";
  25. display: block;
  26. clear: both;
  27. visibility: hidden;
  28. line-height: 0;
  29. height: 0;
  30. }
  31. #aboveheadermenu #menu-button {
  32. display: none;
  33. }
  34. #aboveheadermenu {
  35. font-family: "IM Fell English", serif;
  36. background: #fff;
  37. border-bottom: solid 1px #ddd;
  38. border-top: solid 1px #ddd;
  39. }
  40. #aboveheadermenu > ul > li {
  41. float: left;
  42. }
  43. #aboveheadermenu.align-center > ul {
  44. font-size: 0;
  45. text-align: center;
  46. }
  47. #aboveheadermenu.align-center > ul > li {
  48. display: inline-block;
  49. float: none;
  50. }
  51. #aboveheadermenu.align-center ul ul {
  52. text-align: left;
  53. }
  54. #aboveheadermenu.align-right > ul > li {
  55. float: right;
  56. }
  57. #aboveheadermenu > ul > li > a {
  58. padding: 0.5em;
  59. font-size: 0.9em;
  60. letter-spacing: 1px;
  61. text-decoration: none;
  62. color: #333;
  63. font-weight: 700;
  64. }
  65. #aboveheadermenu > ul > li:hover > a {
  66. background: #333;
  67. color: #ddd;
  68. }
  69. /*
  70. #aboveheadermenu > ul > li.has-sub > a {
  71. padding-right: 30px;
  72. }
  73. #aboveheadermenu > ul > li.has-sub > a:after {
  74. position: absolute;
  75. top: 22px;
  76. right: 11px;
  77. width: 8px;
  78. height: 2px;
  79. display: block;
  80. background: #dddddd;
  81. content: '';
  82. }
  83. #aboveheadermenu > ul > li.has-sub > a:before {
  84. position: absolute;
  85. top: 19px;
  86. right: 14px;
  87. display: block;
  88. width: 2px;
  89. height: 8px;
  90. background: #dddddd;
  91. content: '';
  92. -webkit-transition: all .25s ease;
  93. -moz-transition: all .25s ease;
  94. -ms-transition: all .25s ease;
  95. -o-transition: all .25s ease;
  96. transition: all .25s ease;
  97. }
  98. #aboveheadermenu > ul > li.has-sub:hover > a:before {
  99. top: 23px;
  100. height: 0;
  101. }
  102. #aboveheadermenu ul ul {
  103. position: absolute;
  104. left: -9999px;
  105. }
  106. #aboveheadermenu.align-right ul ul {
  107. text-align: right;
  108. }
  109. #aboveheadermenu ul ul li {
  110. height: 0;
  111. -webkit-transition: all .25s ease;
  112. -moz-transition: all .25s ease;
  113. -ms-transition: all .25s ease;
  114. -o-transition: all .25s ease;
  115. transition: all .25s ease;
  116. }
  117. #aboveheadermenu li:hover > ul {
  118. left: auto;
  119. }
  120. #aboveheadermenu.align-right li:hover > ul {
  121. left: auto;
  122. right: 0;
  123. }
  124. #aboveheadermenu li:hover > ul > li {
  125. height: 35px;
  126. }
  127. #aboveheadermenu ul ul ul {
  128. margin-left: 100%;
  129. top: 0;
  130. }
  131. #aboveheadermenu.align-right ul ul ul {
  132. margin-left: 0;
  133. margin-right: 100%;
  134. }
  135. #aboveheadermenu ul ul li a {
  136. border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  137. padding: 11px 15px;
  138. width: 170px;
  139. font-size: 12px;
  140. text-decoration: none;
  141. color: #dddddd;
  142. font-weight: 400;
  143. background: #333333;
  144. }
  145. #aboveheadermenu ul ul li:last-child > a,
  146. #aboveheadermenu ul ul li.last-item > a {
  147. border-bottom: 0;
  148. }
  149. #aboveheadermenu ul ul li:hover > a,
  150. #aboveheadermenu ul ul li a:hover {
  151. color: #ffffff;
  152. }
  153. #aboveheadermenu ul ul li.has-sub > a:after {
  154. position: absolute;
  155. top: 16px;
  156. right: 11px;
  157. width: 8px;
  158. height: 2px;
  159. display: block;
  160. background: #dddddd;
  161. content: '';
  162. }
  163. #aboveheadermenu.align-right ul ul li.has-sub > a:after {
  164. right: auto;
  165. left: 11px;
  166. }
  167. #aboveheadermenu ul ul li.has-sub > a:before {
  168. position: absolute;
  169. top: 13px;
  170. right: 14px;
  171. display: block;
  172. width: 2px;
  173. height: 8px;
  174. background: #dddddd;
  175. content: '';
  176. -webkit-transition: all .25s ease;
  177. -moz-transition: all .25s ease;
  178. -ms-transition: all .25s ease;
  179. -o-transition: all .25s ease;
  180. transition: all .25s ease;
  181. }
  182. #aboveheadermenu.align-right ul ul li.has-sub > a:before {
  183. right: auto;
  184. left: 14px;
  185. }
  186. #aboveheadermenu ul ul > li.has-sub:hover > a:before {
  187. top: 17px;
  188. height: 0;
  189. }
  190. */
  191. #aboveheadermenu.small-screen {
  192. width: 100%;
  193. }
  194. #aboveheadermenu.small-screen ul {
  195. width: 100%;
  196. display: none;
  197. }
  198. #aboveheadermenu.small-screen.align-center > ul {
  199. text-align: left;
  200. }
  201. #aboveheadermenu.small-screen ul li {
  202. width: 100%;
  203. border-top: 1px solid rgba(120, 120, 120, 0.2);
  204. }
  205. #aboveheadermenu.small-screen ul ul li,
  206. #aboveheadermenu.small-screen li:hover > ul > li {
  207. height: auto;
  208. }
  209. #aboveheadermenu.small-screen ul li a,
  210. #aboveheadermenu.small-screen ul ul li a {
  211. width: 100%;
  212. border-bottom: 0;
  213. }
  214. #aboveheadermenu.small-screen > ul > li {
  215. float: none;
  216. }
  217. #aboveheadermenu.small-screen ul ul li a {
  218. padding-left: 25px;
  219. }
  220. #aboveheadermenu.small-screen ul ul ul li a {
  221. padding-left: 35px;
  222. }
  223. #aboveheadermenu.small-screen ul ul li a {
  224. color: #dddddd;
  225. background: none;
  226. }
  227. #aboveheadermenu.small-screen ul ul li:hover > a,
  228. #aboveheadermenu.small-screen ul ul li.active > a {
  229. color: #ffffff;
  230. }
  231. #aboveheadermenu.small-screen ul ul,
  232. #aboveheadermenu.small-screen ul ul ul,
  233. #aboveheadermenu.small-screen.align-right ul ul {
  234. position: relative;
  235. left: 0;
  236. width: 100%;
  237. margin: 0;
  238. text-align: left;
  239. }
  240. #aboveheadermenu.small-screen > ul > li.has-sub > a:after,
  241. #aboveheadermenu.small-screen > ul > li.has-sub > a:before,
  242. #aboveheadermenu.small-screen ul ul > li.has-sub > a:after,
  243. #aboveheadermenu.small-screen ul ul > li.has-sub > a:before {
  244. display: none;
  245. }
  246. #aboveheadermenu.small-screen #menu-button {
  247. display: block;
  248. padding: 17px;
  249. color: #dddddd;
  250. cursor: pointer;
  251. font-size: 12px;
  252. text-transform: uppercase;
  253. font-weight: 700;
  254. }
  255. #aboveheadermenu.small-screen #menu-button:after {
  256. position: absolute;
  257. top: 22px;
  258. right: 17px;
  259. display: block;
  260. height: 4px;
  261. width: 20px;
  262. border-top: 2px solid #dddddd;
  263. border-bottom: 2px solid #dddddd;
  264. content: '';
  265. }
  266. #aboveheadermenu.small-screen #menu-button:before {
  267. position: absolute;
  268. top: 16px;
  269. right: 17px;
  270. display: block;
  271. height: 2px;
  272. width: 20px;
  273. background: #dddddd;
  274. content: '';
  275. }
  276. #aboveheadermenu.small-screen #menu-button.menu-opened:after {
  277. top: 23px;
  278. border: 0;
  279. height: 2px;
  280. width: 15px;
  281. background: #ffffff;
  282. -webkit-transform: rotate(45deg);
  283. -moz-transform: rotate(45deg);
  284. -ms-transform: rotate(45deg);
  285. -o-transform: rotate(45deg);
  286. transform: rotate(45deg);
  287. }
  288. #aboveheadermenu.small-screen #menu-button.menu-opened:before {
  289. top: 23px;
  290. background: #ffffff;
  291. width: 15px;
  292. -webkit-transform: rotate(-45deg);
  293. -moz-transform: rotate(-45deg);
  294. -ms-transform: rotate(-45deg);
  295. -o-transform: rotate(-45deg);
  296. transform: rotate(-45deg);
  297. }
  298. #aboveheadermenu.small-screen .submenu-button {
  299. position: absolute;
  300. z-index: 99;
  301. right: 0;
  302. top: 0;
  303. display: block;
  304. border-left: 1px solid rgba(120, 120, 120, 0.2);
  305. height: 46px;
  306. width: 46px;
  307. cursor: pointer;
  308. }
  309. #aboveheadermenu.small-screen .submenu-button.submenu-opened {
  310. background: #262626;
  311. }
  312. #aboveheadermenu.small-screen ul ul .submenu-button {
  313. height: 34px;
  314. width: 34px;
  315. }
  316. #aboveheadermenu.small-screen .submenu-button:after {
  317. position: absolute;
  318. top: 22px;
  319. right: 19px;
  320. width: 8px;
  321. height: 2px;
  322. display: block;
  323. background: #dddddd;
  324. content: '';
  325. }
  326. #aboveheadermenu.small-screen ul ul .submenu-button:after {
  327. top: 15px;
  328. right: 13px;
  329. }
  330. #aboveheadermenu.small-screen .submenu-button.submenu-opened:after {
  331. background: #ffffff;
  332. }
  333. #aboveheadermenu.small-screen .submenu-button:before {
  334. position: absolute;
  335. top: 19px;
  336. right: 22px;
  337. display: block;
  338. width: 2px;
  339. height: 8px;
  340. background: #dddddd;
  341. content: '';
  342. }
  343. #aboveheadermenu.small-screen ul ul .submenu-button:before {
  344. top: 12px;
  345. right: 16px;
  346. }
  347. #aboveheadermenu.small-screen .submenu-button.submenu-opened:before {
  348. display: none;
  349. }
  350. #aboveheadermenu.small-screen.select-list {
  351. padding: 5px;
  352. background: #333;
  353. }
  354. /* Below Header Menu */
  355. #belowheadermenu,
  356. #belowheadermenu ul,
  357. #belowheadermenu ul li,
  358. #belowheadermenu ul li a,
  359. #belowheadermenu #menu-button {
  360. margin: 0;
  361. padding: 0;
  362. border: 0;
  363. list-style: none;
  364. line-height: 1;
  365. display: block;
  366. position: relative;
  367. -webkit-box-sizing: border-box;
  368. -moz-box-sizing: border-box;
  369. box-sizing: border-box;
  370. }
  371. #belowheadermenu:after,
  372. #belowheadermenu > ul:after {
  373. content: ".";
  374. display: block;
  375. clear: both;
  376. visibility: hidden;
  377. line-height: 0;
  378. height: 0;
  379. }
  380. #belowheadermenu #menu-button {
  381. display: none;
  382. }
  383. #belowheadermenu {
  384. font-family: "IM Fell English", serif;
  385. background: #fff;
  386. border-top: solid 1px #333;
  387. }
  388. #belowheadermenu > ul > li {
  389. float: left;
  390. }
  391. #belowheadermenu.align-center > ul {
  392. font-size: 0;
  393. text-align: center;
  394. }
  395. #belowheadermenu.align-center > ul > li {
  396. display: inline-block;
  397. float: none;
  398. }
  399. #belowheadermenu.align-center ul ul {
  400. text-align: left;
  401. }
  402. #belowheadermenu.align-right > ul > li {
  403. float: right;
  404. }
  405. #belowheadermenu > ul > li > a {
  406. padding: 17px;
  407. font-size: 1.1em;
  408. letter-spacing: 1px;
  409. text-decoration: none;
  410. color: #333;
  411. font-weight: 700;
  412. }
  413. #belowheadermenu > ul > li:hover > a {
  414. background: #333;
  415. color: #ddd;
  416. }
  417. #belowheadermenu > ul > li.has-sub > a {
  418. padding-right: 30px;
  419. }
  420. #belowheadermenu > ul > li.has-sub > a:after {
  421. position: absolute;
  422. top: 22px;
  423. right: 11px;
  424. width: 8px;
  425. height: 2px;
  426. display: block;
  427. background: #333;
  428. content: '';
  429. }
  430. #belowheadermenu > ul > li.has-sub > a:before {
  431. position: absolute;
  432. top: 19px;
  433. right: 14px;
  434. display: block;
  435. width: 2px;
  436. height: 8px;
  437. background: #333;
  438. content: '';
  439. -webkit-transition: all .25s ease;
  440. -moz-transition: all .25s ease;
  441. -ms-transition: all .25s ease;
  442. -o-transition: all .25s ease;
  443. transition: all .25s ease;
  444. }
  445. #belowheadermenu > ul > li.has-sub:hover > a:after,
  446. #belowheadermenu > ul > li.has-sub:hover > a:before {
  447. background: #ddd;
  448. }
  449. #belowheadermenu > ul > li.has-sub:hover > a:before {
  450. top: 23px;
  451. height: 0;
  452. }
  453. #belowheadermenu ul ul {
  454. position: absolute;
  455. left: -9999px;
  456. }
  457. #belowheadermenu.align-right ul ul {
  458. text-align: right;
  459. }
  460. #belowheadermenu ul ul li {
  461. height: 0;
  462. -webkit-transition: all .25s ease;
  463. -moz-transition: all .25s ease;
  464. -ms-transition: all .25s ease;
  465. -o-transition: all .25s ease;
  466. transition: all .25s ease;
  467. }
  468. #belowheadermenu li:hover > ul {
  469. left: auto;
  470. }
  471. #belowheadermenu.align-right li:hover > ul {
  472. left: auto;
  473. right: 0;
  474. }
  475. #belowheadermenu li:hover > ul > li {
  476. height: 55px;
  477. }
  478. #belowheadermenu ul ul ul {
  479. margin-left: 100%;
  480. top: 0;
  481. }
  482. #belowheadermenu.align-right ul ul ul {
  483. margin-left: 0;
  484. margin-right: 100%;
  485. }
  486. #belowheadermenu ul ul li a {
  487. border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  488. padding: 11px 15px;
  489. width: 170px;
  490. font-size: 1.1em;
  491. text-decoration: none;
  492. color: #dddddd;
  493. font-weight: 400;
  494. background: #333333;
  495. }
  496. #belowheadermenu ul ul li:last-child > a,
  497. #belowheadermenu ul ul li.last-item > a {
  498. border-bottom: 0;
  499. }
  500. #belowheadermenu ul ul li:hover > a,
  501. #belowheadermenu ul ul li a:hover {
  502. color: #ffffff;
  503. }
  504. #belowheadermenu ul ul li.has-sub > a:after {
  505. position: absolute;
  506. top: 16px;
  507. right: 11px;
  508. width: 8px;
  509. height: 2px;
  510. display: block;
  511. background: #dddddd;
  512. content: '';
  513. }
  514. #belowheadermenu.align-right ul ul li.has-sub > a:after {
  515. right: auto;
  516. left: 11px;
  517. }
  518. #belowheadermenu ul ul li.has-sub > a:before {
  519. position: absolute;
  520. top: 13px;
  521. right: 14px;
  522. display: block;
  523. width: 2px;
  524. height: 8px;
  525. background: #dddddd;
  526. content: '';
  527. -webkit-transition: all .25s ease;
  528. -moz-transition: all .25s ease;
  529. -ms-transition: all .25s ease;
  530. -o-transition: all .25s ease;
  531. transition: all .25s ease;
  532. }
  533. #belowheadermenu.align-right ul ul li.has-sub > a:before {
  534. right: auto;
  535. left: 14px;
  536. }
  537. #belowheadermenu ul ul > li.has-sub:hover > a:before {
  538. top: 17px;
  539. height: 0;
  540. }
  541. #belowheadermenu.small-screen {
  542. width: 100%;
  543. }
  544. #belowheadermenu.small-screen ul {
  545. width: 100%;
  546. display: none;
  547. }
  548. #belowheadermenu.small-screen.align-center > ul {
  549. text-align: left;
  550. }
  551. #belowheadermenu.small-screen ul li {
  552. width: 100%;
  553. border-top: 1px solid rgba(120, 120, 120, 0.2);
  554. background: #333;
  555. }
  556. #belowheadermenu.small-screen ul ul li,
  557. #belowheadermenu.small-screen li:hover > ul > li {
  558. height: auto;
  559. }
  560. #belowheadermenu.small-screen ul li a,
  561. #belowheadermenu.small-screen ul ul li a {
  562. width: 100%;
  563. border-bottom: 0;
  564. color: #eee;
  565. }
  566. #belowheadermenu.small-screen > ul > li {
  567. float: none;
  568. }
  569. #belowheadermenu.small-screen ul ul li a {
  570. padding-left: 25px;
  571. }
  572. #belowheadermenu.small-screen ul ul ul li a {
  573. padding-left: 35px;
  574. }
  575. #belowheadermenu.small-screen ul ul li a {
  576. color: #dddddd;
  577. background: none;
  578. font-size: 1.2em;
  579. }
  580. #belowheadermenu.small-screen ul ul li:hover > a,
  581. #belowheadermenu.small-screen ul ul li.active > a {
  582. color: #ffffff;
  583. }
  584. #belowheadermenu.small-screen ul ul,
  585. #belowheadermenu.small-screen ul ul ul,
  586. #belowheadermenu.small-screen.align-right ul ul {
  587. position: relative;
  588. left: 0;
  589. width: 100%;
  590. margin: 0;
  591. text-align: left;
  592. }
  593. #belowheadermenu.small-screen > ul > li.has-sub > a:after,
  594. #belowheadermenu.small-screen > ul > li.has-sub > a:before,
  595. #belowheadermenu.small-screen ul ul > li.has-sub > a:after,
  596. #belowheadermenu.small-screen ul ul > li.has-sub > a:before {
  597. display: none;
  598. }
  599. #belowheadermenu.small-screen #menu-button {
  600. display: block;
  601. padding: 17px;
  602. color: #eee;
  603. background: #333;
  604. cursor: pointer;
  605. font-size: 1.1em;
  606. font-weight: 700;
  607. }
  608. #belowheadermenu.small-screen #menu-button:after {
  609. position: absolute;
  610. top: 22px;
  611. right: 17px;
  612. display: block;
  613. height: 4px;
  614. width: 20px;
  615. border-top: 2px solid #dddddd;
  616. border-bottom: 2px solid #dddddd;
  617. content: '';
  618. }
  619. #belowheadermenu.small-screen #menu-button:before {
  620. position: absolute;
  621. top: 16px;
  622. right: 17px;
  623. display: block;
  624. height: 2px;
  625. width: 20px;
  626. background: #dddddd;
  627. content: '';
  628. }
  629. #belowheadermenu.small-screen #menu-button.menu-opened:after {
  630. top: 23px;
  631. border: 0;
  632. height: 2px;
  633. width: 15px;
  634. background: #ffffff;
  635. -webkit-transform: rotate(45deg);
  636. -moz-transform: rotate(45deg);
  637. -ms-transform: rotate(45deg);
  638. -o-transform: rotate(45deg);
  639. transform: rotate(45deg);
  640. }
  641. #belowheadermenu.small-screen #menu-button.menu-opened:before {
  642. top: 23px;
  643. background: #ffffff;
  644. width: 15px;
  645. -webkit-transform: rotate(-45deg);
  646. -moz-transform: rotate(-45deg);
  647. -ms-transform: rotate(-45deg);
  648. -o-transform: rotate(-45deg);
  649. transform: rotate(-45deg);
  650. }
  651. #belowheadermenu.small-screen .submenu-button {
  652. position: absolute;
  653. z-index: 99;
  654. right: 0;
  655. top: 0;
  656. display: block;
  657. border-left: 1px solid rgba(120, 120, 120, 0.2);
  658. height: 46px;
  659. width: 46px;
  660. cursor: pointer;
  661. }
  662. #belowheadermenu.small-screen .submenu-button.submenu-opened {
  663. background: #262626;
  664. }
  665. #belowheadermenu.small-screen ul ul .submenu-button {
  666. height: 34px;
  667. width: 34px;
  668. }
  669. #belowheadermenu.small-screen .submenu-button:after {
  670. position: absolute;
  671. top: 22px;
  672. right: 19px;
  673. width: 8px;
  674. height: 2px;
  675. display: block;
  676. background: #dddddd;
  677. content: '';
  678. }
  679. #belowheadermenu.small-screen ul ul .submenu-button:after {
  680. top: 15px;
  681. right: 13px;
  682. }
  683. #belowheadermenu.small-screen .submenu-button.submenu-opened:after {
  684. background: #ffffff;
  685. }
  686. #belowheadermenu.small-screen .submenu-button:before {
  687. position: absolute;
  688. top: 19px;
  689. right: 22px;
  690. display: block;
  691. width: 2px;
  692. height: 8px;
  693. background: #dddddd;
  694. content: '';
  695. }
  696. #belowheadermenu.small-screen ul ul .submenu-button:before {
  697. top: 12px;
  698. right: 16px;
  699. }
  700. #belowheadermenu.small-screen .submenu-button.submenu-opened:before {
  701. display: none;
  702. }
  703. #belowheadermenu.small-screen.select-list {
  704. padding: 5px;
  705. }
  706. #belowheadermenu.small-screen ul li.current-menu-item {
  707. background: #eee;
  708. }
  709. #belowheadermenu.small-screen ul li.current-menu-item a {
  710. color: #333;
  711. }
  712. #belowheadermenu.small-screen ul li.current-menu-item:hover {
  713. background: #333;
  714. }
  715. #belowheadermenu.small-screen ul li.current-menu-item:hover a {
  716. color: #eee;
  717. }
  718. #belowheadermenu.small-screen ul ul li.current-menu-item {
  719. background: #eee;
  720. }
  721. #belowheadermenu.small-screen ul ul li.current-menu-item a {
  722. color: #333;
  723. }
  724. /* Footer Menu */
  725. /* Mobile menu items moved to mobile.css */
  726. #footermenu li.current-menu-item a {
  727. color: #333;
  728. }
  729. #footermenu,
  730. #footermenu ul,
  731. #footermenu ul li,
  732. #footermenu ul li a,
  733. #footermenu #menu-button {
  734. margin: 0;
  735. padding: 0;
  736. border: 0;
  737. list-style: none;
  738. line-height: 1;
  739. display: block;
  740. position: relative;
  741. -webkit-box-sizing: border-box;
  742. -moz-box-sizing: border-box;
  743. box-sizing: border-box;
  744. }
  745. #footermenu:after,
  746. #footermenu > ul:after {
  747. content: ".";
  748. display: block;
  749. clear: both;
  750. visibility: hidden;
  751. line-height: 0;
  752. height: 0;
  753. }
  754. #footermenu #menu-button {
  755. display: none;
  756. }
  757. #footermenu {
  758. font-family: 'IM Fell English', sans-serif;
  759. background: #333333;
  760. }
  761. #footermenu > ul > li {
  762. float: left;
  763. }
  764. #footermenu.align-center > ul {
  765. font-size: 0;
  766. text-align: center;
  767. }
  768. #footermenu.align-center > ul > li {
  769. display: inline-block;
  770. float: none;
  771. }
  772. #footermenu.align-center ul ul {
  773. text-align: left;
  774. }
  775. #footermenu.align-right > ul > li {
  776. float: right;
  777. }
  778. #footermenu > ul > li > a {
  779. padding: 17px;
  780. font-size: 12px;
  781. letter-spacing: 1px;
  782. text-decoration: none;
  783. color: #dddddd;
  784. font-weight: 700;
  785. }
  786. #footermenu > ul > li:hover > a {
  787. color: #ffffff;
  788. }
  789. #footermenu > ul > li.has-sub > a {
  790. padding-right: 30px;
  791. }
  792. #footermenu > ul > li.has-sub > a:after {
  793. position: absolute;
  794. top: 22px;
  795. right: 11px;
  796. width: 8px;
  797. height: 2px;
  798. display: block;
  799. background: #dddddd;
  800. content: '';
  801. }
  802. #footermenu > ul > li.has-sub > a:before {
  803. position: absolute;
  804. top: 19px;
  805. right: 14px;
  806. display: block;
  807. width: 2px;
  808. height: 8px;
  809. background: #dddddd;
  810. content: '';
  811. -webkit-transition: all .25s ease;
  812. -moz-transition: all .25s ease;
  813. -ms-transition: all .25s ease;
  814. -o-transition: all .25s ease;
  815. transition: all .25s ease;
  816. }
  817. #footermenu > ul > li.has-sub:hover > a:before {
  818. top: 23px;
  819. height: 0;
  820. }
  821. #footermenu ul ul {
  822. position: absolute;
  823. left: -9999px;
  824. }
  825. #footermenu.align-right ul ul {
  826. text-align: right;
  827. }
  828. #footermenu ul ul li {
  829. height: 0;
  830. -webkit-transition: all .25s ease;
  831. -moz-transition: all .25s ease;
  832. -ms-transition: all .25s ease;
  833. -o-transition: all .25s ease;
  834. transition: all .25s ease;
  835. }
  836. #footermenu li:hover > ul {
  837. left: auto;
  838. }
  839. #footermenu.align-right li:hover > ul {
  840. left: auto;
  841. right: 0;
  842. }
  843. #footermenu li:hover > ul > li {
  844. height: 35px;
  845. }
  846. #footermenu ul ul ul {
  847. margin-left: 100%;
  848. top: 0;
  849. }
  850. #footermenu.align-right ul ul ul {
  851. margin-left: 0;
  852. margin-right: 100%;
  853. }
  854. #footermenu ul ul li a {
  855. border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  856. padding: 11px 15px;
  857. width: 170px;
  858. font-size: 12px;
  859. text-decoration: none;
  860. color: #dddddd;
  861. font-weight: 400;
  862. background: #333333;
  863. }
  864. #footermenu ul ul li:last-child > a,
  865. #footermenu ul ul li.last-item > a {
  866. border-bottom: 0;
  867. }
  868. #footermenu ul ul li:hover > a,
  869. #footermenu ul ul li a:hover {
  870. color: #ffffff;
  871. }
  872. #footermenu ul ul li.has-sub > a:after {
  873. position: absolute;
  874. top: 16px;
  875. right: 11px;
  876. width: 8px;
  877. height: 2px;
  878. display: block;
  879. background: #dddddd;
  880. content: '';
  881. }
  882. #footermenu.align-right ul ul li.has-sub > a:after {
  883. right: auto;
  884. left: 11px;
  885. }
  886. #footermenu ul ul li.has-sub > a:before {
  887. position: absolute;
  888. top: 13px;
  889. right: 14px;
  890. display: block;
  891. width: 2px;
  892. height: 8px;
  893. background: #dddddd;
  894. content: '';
  895. -webkit-transition: all .25s ease;
  896. -moz-transition: all .25s ease;
  897. -ms-transition: all .25s ease;
  898. -o-transition: all .25s ease;
  899. transition: all .25s ease;
  900. }
  901. #footermenu.align-right ul ul li.has-sub > a:before {
  902. right: auto;
  903. left: 14px;
  904. }
  905. #footermenu ul ul > li.has-sub:hover > a:before {
  906. top: 17px;
  907. height: 0;
  908. }
  909. #footermenu.small-screen {
  910. width: 100%;
  911. }
  912. #footermenu.small-screen ul {
  913. width: 100%;
  914. display: none;
  915. }
  916. #footermenu.small-screen.align-center > ul {
  917. text-align: left;
  918. }
  919. #footermenu.small-screen ul li {
  920. width: 100%;
  921. border-top: 1px solid rgba(120, 120, 120, 0.2);
  922. }
  923. #footermenu.small-screen ul ul li,
  924. #footermenu.small-screen li:hover > ul > li {
  925. height: auto;
  926. }
  927. #footermenu.small-screen ul li a,
  928. #footermenu.small-screen ul ul li a {
  929. width: 100%;
  930. border-bottom: 0;
  931. }
  932. #footermenu.small-screen > ul > li {
  933. float: none;
  934. }
  935. #footermenu.small-screen ul ul li a {
  936. padding-left: 25px;
  937. }
  938. #footermenu.small-screen ul ul ul li a {
  939. padding-left: 35px;
  940. }
  941. #footermenu.small-screen ul ul li a {
  942. color: #dddddd;
  943. background: none;
  944. }
  945. #footermenu.small-screen ul ul li:hover > a,
  946. #footermenu.small-screen ul ul li.active > a {
  947. color: #ffffff;
  948. }
  949. #footermenu.small-screen ul ul,
  950. #footermenu.small-screen ul ul ul,
  951. #footermenu.small-screen.align-right ul ul {
  952. position: relative;
  953. left: 0;
  954. width: 100%;
  955. margin: 0;
  956. text-align: left;
  957. }
  958. #footermenu.small-screen > ul > li.has-sub > a:after,
  959. #footermenu.small-screen > ul > li.has-sub > a:before,
  960. #footermenu.small-screen ul ul > li.has-sub > a:after,
  961. #footermenu.small-screen ul ul > li.has-sub > a:before {
  962. display: none;
  963. }
  964. #footermenu.small-screen #menu-button {
  965. display: block;
  966. padding: 17px;
  967. color: #dddddd;
  968. cursor: pointer;
  969. font-size: 12px;
  970. text-transform: uppercase;
  971. font-weight: 700;
  972. }
  973. #footermenu.small-screen #menu-button:after {
  974. position: absolute;
  975. top: 22px;
  976. right: 17px;
  977. display: block;
  978. height: 4px;
  979. width: 20px;
  980. border-top: 2px solid #dddddd;
  981. border-bottom: 2px solid #dddddd;
  982. content: '';
  983. }
  984. #footermenu.small-screen #menu-button:before {
  985. position: absolute;
  986. top: 16px;
  987. right: 17px;
  988. display: block;
  989. height: 2px;
  990. width: 20px;
  991. background: #dddddd;
  992. content: '';
  993. }
  994. #footermenu.small-screen #menu-button.menu-opened:after {
  995. top: 23px;
  996. border: 0;
  997. height: 2px;
  998. width: 15px;
  999. background: #ffffff;
  1000. -webkit-transform: rotate(45deg);
  1001. -moz-transform: rotate(45deg);
  1002. -ms-transform: rotate(45deg);
  1003. -o-transform: rotate(45deg);
  1004. transform: rotate(45deg);
  1005. }
  1006. #footermenu.small-screen #menu-button.menu-opened:before {
  1007. top: 23px;
  1008. background: #ffffff;
  1009. width: 15px;
  1010. -webkit-transform: rotate(-45deg);
  1011. -moz-transform: rotate(-45deg);
  1012. -ms-transform: rotate(-45deg);
  1013. -o-transform: rotate(-45deg);
  1014. transform: rotate(-45deg);
  1015. }
  1016. #footermenu.small-screen .submenu-button {
  1017. position: absolute;
  1018. z-index: 99;
  1019. right: 0;
  1020. top: 0;
  1021. display: block;
  1022. border-left: 1px solid rgba(120, 120, 120, 0.2);
  1023. height: 46px;
  1024. width: 46px;
  1025. cursor: pointer;
  1026. }
  1027. #footermenu.small-screen .submenu-button.submenu-opened {
  1028. background: #262626;
  1029. }
  1030. #footermenu.small-screen ul ul .submenu-button {
  1031. height: 34px;
  1032. width: 34px;
  1033. }
  1034. #footermenu.small-screen .submenu-button:after {
  1035. position: absolute;
  1036. top: 22px;
  1037. right: 19px;
  1038. width: 8px;
  1039. height: 2px;
  1040. display: block;
  1041. background: #dddddd;
  1042. content: '';
  1043. }
  1044. #footermenu.small-screen ul ul .submenu-button:after {
  1045. top: 15px;
  1046. right: 13px;
  1047. }
  1048. #footermenu.small-screen .submenu-button.submenu-opened:after {
  1049. background: #ffffff;
  1050. }
  1051. #footermenu.small-screen .submenu-button:before {
  1052. position: absolute;
  1053. top: 19px;
  1054. right: 22px;
  1055. display: block;
  1056. width: 2px;
  1057. height: 8px;
  1058. background: #dddddd;
  1059. content: '';
  1060. }
  1061. #footermenu.small-screen ul ul .submenu-button:before {
  1062. top: 12px;
  1063. right: 16px;
  1064. }
  1065. #footermenu.small-screen .submenu-button.submenu-opened:before {
  1066. display: none;
  1067. }
  1068. #footermenu.small-screen.select-list {
  1069. padding: 5px;
  1070. }