styles.css 24 KB

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