styles.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826
  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. @import url('https://fonts.googleapis.com/css?family=Muli');
  5. @font-face {
  6. font-family: "Helvetica Neue";
  7. src: url('../fonts/helveticaneuecyr-light.otf');
  8. }
  9. @font-face {
  10. font-family: "AvenirNextLTPro-Demi";
  11. src: url('../fonts/AvenirNextLTPro-Demi.otf');
  12. }
  13. /* fonts */
  14. body{
  15. font-family: "Helvetica Neue", Arial, sans-serif;
  16. margin: 0;
  17. overflow-x: hidden;
  18. background-color: #F1F1F5;
  19. }
  20. h1,h2,h3{
  21. margin: 0;
  22. font-weight: bold;
  23. }
  24. h1 {
  25. font-size: 32px;
  26. letter-spacing: 1px;
  27. }
  28. h2 {
  29. font-size: 22px;
  30. }
  31. ul,li {
  32. margin: 0;
  33. padding: 0;
  34. list-style-type: none;
  35. }
  36. body * {
  37. box-sizing: border-box;
  38. }
  39. .preload-screen {
  40. position: absolute;
  41. width: 100%;
  42. line-height: 100vh;
  43. background: #1D1D1F;
  44. text-align: center;
  45. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  46. z-index: 15;
  47. }
  48. .preload-screen img{
  49. vertical-align: middle;
  50. }
  51. .overlay {
  52. position: absolute;
  53. width: 100%;
  54. height: 100vh;
  55. background-color: rgba(29,29,31,.6);
  56. z-index: 3;
  57. opacity: 0;
  58. transition: opacity .6s cubic-bezier(.645,.045,.355,1);
  59. pointer-events: none;
  60. }
  61. .overlay2 {
  62. position: absolute;
  63. width: 100%;
  64. height: 100vh;
  65. background-color: rgba(29,29,31,.6);
  66. z-index: 3;
  67. opacity: 0;
  68. transition: opacity .6s cubic-bezier(.645,.045,.355,1);
  69. pointer-events: none;
  70. }
  71. .overlay-active {
  72. pointer-events: auto;
  73. opacity: 1;
  74. }
  75. main.ng-enter{
  76. -webkit-transition: all 2.6s cubic-bezier(.645,.045,.355,1);
  77. transition: all 2.6s cubic-bezier(.645,.045,.355,1);
  78. opacity: 0.6s
  79. }
  80. main.ng-enter-active {
  81. opacity: 1;
  82. }
  83. /* main.ng-enter > div > div {
  84. transition: all 1s ease;
  85. transform: translateY(1000%);
  86. }
  87. main.ng-enter-active > div > div {
  88. transform: translateY(0);
  89. } */
  90. main.ng-enter .meal-item {
  91. transform: translateY(600px);
  92. }
  93. main.ng-enter .meal-item:nth-child(3n + 1) {
  94. transition: all 1s cubic-bezier(.645,.045,.355,1);
  95. }
  96. main.ng-enter .meal-item:nth-child(3n + 2) {
  97. transition: all 1.3s cubic-bezier(.645,.045,.355,1);
  98. }
  99. main.ng-enter .meal-item:nth-child(3n + 3) {
  100. transition: all 1.6s cubic-bezier(.645,.045,.355,1);
  101. }
  102. main.ng-enter.ng-enter-active .meal-item {
  103. transform: translateY(0);
  104. }
  105. main.ng-enter .ready-menu-second {
  106. transition: all 1s ease;
  107. transform: translateY(100%);
  108. opacity: 0;
  109. }
  110. main.ng-enter.ng-enter-active .ready-menu-second {
  111. transform: translateY(0);
  112. opacity: 1;
  113. }
  114. .ready-menu-page-leave-animation {
  115. animation: readyMenuLeave 1s ease both;
  116. z-index: 100;
  117. }
  118. @keyframes readyMenuLeave {
  119. 0% {
  120. transform: translateY(0%);
  121. opacity: 1;
  122. }
  123. 100% {
  124. transform: translateY(-100%);
  125. opacity: 0;
  126. }
  127. }
  128. main.ng-enter .shopping-cart-page .item{
  129. animation: shoppingCartItemsAnimation 1s ease;
  130. }
  131. @keyframes shoppingCartItemsAnimation {
  132. 0% {
  133. opacity: 0;
  134. }
  135. 100% {
  136. opacity: 1;
  137. }
  138. }
  139. /* header-line */
  140. .header-line {
  141. z-index: 20;
  142. position: -webkit-sticky;position: sticky;
  143. top: 0;
  144. width: 100%;
  145. height: 8vh;
  146. background-color: #FFF;
  147. border-bottom: 1px solid rgb(222, 223, 224);
  148. }
  149. .header-line .fa-bars {
  150. display: inline-block;
  151. cursor: pointer;
  152. color: #222;
  153. width: 10%;
  154. padding-left: 25px;
  155. padding-top: 15px;
  156. text-align: left;
  157. font-size: 22px;
  158. }
  159. .header-line .logo {
  160. display: inline-block;
  161. font-family: "Helvetica Neue",Arial,sans-serif;
  162. font-weight: bolder;
  163. font-size: 25px;
  164. letter-spacing: 0.1em;
  165. width: 80%;
  166. text-align: center;
  167. }
  168. .header-line .undefined-btn {
  169. width: 80%;
  170. display: inline-block;
  171. }
  172. .shopping-cart-icon {
  173. position: absolute;
  174. right: 30px;
  175. top: 13px;
  176. font-size: 20px;
  177. font-family: "AvenirNextLTPro-Demi";
  178. letter-spacing: 0.5px;
  179. cursor: pointer;
  180. }
  181. .shopping-cart-icon span{
  182. font-size: 26px;
  183. color: #1D1D1F;
  184. }
  185. .shopping-cart-icon span.animate {
  186. animation: shoppingCartIconAnimation 0.5s ease;
  187. }
  188. @keyframes shoppingCartIconAnimation {
  189. 0% {
  190. transform: scale(1);
  191. }
  192. 50% {
  193. transform: scale(1.2);
  194. }
  195. 100% {
  196. transform: scale(1);
  197. }
  198. }
  199. .login-btn, .sign-out-btn, .delete-item-mode-btn, .user-page-icon {
  200. position: absolute;
  201. right: 80px;
  202. top: 13px;
  203. font-size: 20px;
  204. font-family: "AvenirNextLTPro-Demi";
  205. letter-spacing: 0.5px;
  206. color: #1D1D1F;
  207. cursor: pointer;
  208. }
  209. .delete-item-mode-btn {
  210. left: 100px;
  211. width: 140px;
  212. top: 15px;
  213. letter-spacing: 0;
  214. text-align: center;
  215. }
  216. .login-btn {
  217. right: 92px;
  218. }
  219. .user-page-icon {
  220. right: 215px;
  221. font-size: 26px;
  222. top: 10px;
  223. }
  224. .login-btn span, .sign-out-btn span{
  225. font-size: 25px;
  226. position: relative;
  227. top: 2px;
  228. }
  229. .login-popup {
  230. display: none;
  231. position: absolute;
  232. width: 100%;
  233. height: 100vh;
  234. background: rgba(29, 29, 31,.7);
  235. justify-content: center;
  236. align-items: center;
  237. opacity: 0;
  238. transition: all 0.5s ease;
  239. z-index: 3;
  240. }
  241. .popup-cansel-wrapper {
  242. position: absolute;
  243. width: 100%;
  244. height: 100%;
  245. }
  246. .login-popup .cancel {
  247. position: absolute;
  248. top: 5vh;
  249. right: 5%;
  250. color: rgba(241, 241, 245,1);
  251. font-size: 35px;
  252. cursor: pointer;
  253. z-index: 4;
  254. }
  255. .login-popup-wrapper {
  256. z-index: 4;
  257. width: 540px;
  258. background-color: #fff;
  259. }
  260. .login-popup .btns {
  261. display: flex;
  262. }
  263. .login-popup .btns button {
  264. width: 50%;
  265. background: rgb(241, 241, 245);
  266. border: none;
  267. font-size: 23px;
  268. padding: 25px 0;
  269. text-transform: uppercase;
  270. cursor: pointer;
  271. outline: none;
  272. color: #777;
  273. font-family: "AvenirNextLTPro-Demi";
  274. letter-spacing: 0.5px;
  275. font-weight: normal;
  276. }
  277. .login-popup .btns .btn-active {
  278. background-color: #fff;
  279. color: #1D1D1F;
  280. }
  281. .login-popup .content {
  282. padding: 50px;
  283. text-align: center;
  284. }
  285. .login-popup .content input{
  286. width: 100%;
  287. height: 45px;
  288. margin: 13px 0;
  289. padding-left: 10px;
  290. background: rgb(241, 241, 245);
  291. border: none;
  292. font-size: 20px;
  293. box-shadow: inset 0 0 4px #cacaca;
  294. outline: none;
  295. }
  296. .register .input-invalid {
  297. border: 1px solid rgba(255, 155, 155,1)!important;
  298. }
  299. .login-popup .content span {
  300. color: red;
  301. opacity: 0.7;
  302. font-family: "Muli";
  303. }
  304. .login-popup .content input[type="submit"]{
  305. background: rgba(29, 29, 31,.9);
  306. color: #fff;
  307. margin-bottom: 0;
  308. font-family: "AvenirNextLTPro-Demi";
  309. text-transform: capitalize;
  310. height: 50px;
  311. cursor: pointer;
  312. }
  313. .login-popup input.ng-touched.ng-invalid {
  314. border: 1px solid rgba(255, 155, 155,1);
  315. }
  316. .login-popup input.ng-touched.ng-pristine {
  317. border: 1px solid rgba(255, 155, 155,1);
  318. }
  319. .login-popup .register input.invalid {
  320. border: 1px solid rgba(255, 155, 155,1);
  321. }
  322. /* header-line */
  323. /* navmenu */
  324. .nav-menu {
  325. position: absolute;
  326. top: 0;
  327. left: 0;
  328. height: 100vh;
  329. width: 281px;
  330. background-color: #1D1D1F;
  331. padding: 50px;
  332. padding-top: 100px;
  333. transform: translateX(-281px);
  334. }
  335. .nav-menu span.nav-menu-title{
  336. display: block;
  337. color: #fff;
  338. font-size: 15px;
  339. margin-top: 10px;
  340. margin-bottom: 40px;
  341. }
  342. .nav-menu li {
  343. list-style-type: none;
  344. transition: all .5s cubic-bezier(.39,.575,.565,1);
  345. cursor: pointer;
  346. }
  347. .nav-menu a {
  348. display: block;
  349. padding: 18px 0;
  350. }
  351. .nav-menu li:hover {
  352. transform: translateX(4px);
  353. }
  354. .nav-menu li:hover a{
  355. color: #fff;
  356. }
  357. .nav-menu li a, .nav-menu span{
  358. font-family: "AvenirNextLTPro-Demi", Arial, sans-serif;
  359. color: #9c9c9c;
  360. text-decoration: none;
  361. text-transform: uppercase;
  362. font-size: 12px;
  363. letter-spacing: .2em;
  364. }
  365. .nav-menu li.active-link a{
  366. color: #fff;
  367. }
  368. .nav-menu-icons-wrapper {
  369. position: absolute;
  370. display: -webkit-flex;
  371. display: -ms-flex;
  372. display: flex;
  373. bottom: 0;
  374. left: 0;
  375. width: 100%;
  376. border-top: 1px solid #333;
  377. }
  378. .nav-menu-icon {
  379. display: inline-block;
  380. width: 33.3%;
  381. }
  382. .nav-menu-icon a {
  383. display: block;
  384. font-size: 19px;
  385. color: #BCBCBC;
  386. text-align: center;
  387. padding: 15px 0;
  388. transition: all .5s ease;
  389. }
  390. .nav-menu-icon a:hover {
  391. background-color: #000;
  392. color: #fff;
  393. }
  394. .nav-menu-icon:nth-child(1) a {
  395. border-right: 1px solid #333;
  396. }
  397. .nav-menu-icon:nth-child(2){
  398. }
  399. .nav-menu-icon:nth-child(3) a {
  400. border-left: 1px solid #333;
  401. }
  402. .open-menu {
  403. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  404. transform: translateX(281px)!important;
  405. }
  406. .close-menu {
  407. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  408. transform: translateX(0px);
  409. }
  410. /* navmenu */
  411. /* main-slider */
  412. .main-slider {
  413. height: 100vh;
  414. overflow: hidden;
  415. position: relative;
  416. }
  417. .main-slider-overlay {
  418. z-index: 1;
  419. position: absolute;
  420. width: 100%;
  421. height: 100%;
  422. background: rgba(0,0,0,.35);
  423. }
  424. .main-slider-back-overlay {
  425. z-index: -1;
  426. position: absolute;
  427. width: 100%;
  428. height: 100vh;
  429. opacity: 1;
  430. transition: all 3s ease;
  431. }
  432. .main-slider-back-overlay2 {
  433. z-index: -2;
  434. position: absolute;
  435. width: 100%;
  436. height: 100vh;
  437. opacity: 1;
  438. }
  439. .main-slider img {
  440. max-width: 100%;
  441. }
  442. .main-slider img.ng-enter, .main-slider img.ng-leave {
  443. transition: all 3s ease;
  444. }
  445. .main-slider img.ng-enter {
  446. transform: translateX(100%);
  447. }
  448. .main-slider img.ng-enter-active {
  449. transform: translateX(0);
  450. }
  451. .main-slider img.ng-leave {
  452. transform: translateX(0) translateY(-100.5%);
  453. }
  454. .main-slider img.ng-leave-active {
  455. transform: translateX(-100%) translateY(-100.5%);
  456. }
  457. /* .main-slider img.ng-leave-stagger {
  458. transition-delay: 0.2s;
  459. transition-duration: 0;
  460. } */
  461. .main-slider-content {
  462. position: absolute;
  463. z-index: 1;
  464. width: 100%;
  465. }
  466. .main-slider-text {
  467. text-align: center;
  468. color: #fff;
  469. z-index: 2;
  470. width: 1180px;
  471. margin: 0 auto;
  472. margin-top: 220px;
  473. margin-bottom: 60px;
  474. }
  475. .main-slider-text p {
  476. font-weight: bold;
  477. font-family: 'Montserrat', Arial, sans-serif;
  478. letter-spacing: 2px;
  479. font-size: 56px;
  480. }
  481. .main-slider-buttons {
  482. display: flex;
  483. justify-content: space-around;
  484. z-index: 2;
  485. border: red;
  486. width: 550px;
  487. margin: 0 auto;
  488. }
  489. .main-slider-buttons a {
  490. padding: 12px 32px;
  491. text-decoration: none;
  492. color: #fff;
  493. border: 1px solid rgba(255,255,255,.6);
  494. background: rgba(0,0,0,.5);
  495. font-size: 20px;
  496. font-weight: bold;
  497. font-family: 'Montserrat', Arial, sans-serif;
  498. transition: all ease .5s;
  499. }
  500. .main-slider-buttons a:hover {
  501. background: rgba(150,150,150,.5);
  502. }
  503. .main-slider-bars-wrapper {
  504. display: flex;
  505. margin: 0 auto;
  506. margin-top: 150px;
  507. width: 155px;
  508. justify-content: space-between;
  509. }
  510. .main-slider-bar {
  511. display: inline-block;
  512. width: 46px;
  513. height: 7px;
  514. background: #fff;
  515. cursor: pointer;
  516. opacity: 0.4;
  517. background: #fff;
  518. }
  519. .main-slider-bar-active {
  520. opacity: 0.7;
  521. }
  522. /* main-slider */
  523. /* main-page */
  524. .main-page {
  525. margin-top: -50px;
  526. }
  527. .main-page .about h1,h2 {
  528. font-weight: bolder;
  529. }
  530. .main-page .about {
  531. padding: 60px 0;
  532. /* background: linear-gradient(to bottom,rgb(244, 244, 246), rgb(260, 260, 260)); */
  533. background: rgb(241, 241, 245);
  534. }
  535. .main-page .about-wrapper {
  536. margin: 0 auto;
  537. max-width: 1180px;
  538. }
  539. .main-page .about h1 {
  540. text-align: center;
  541. color: #2A2627;
  542. margin-bottom: 80px;
  543. }
  544. .main-page .about h1::after {
  545. content: '';
  546. display: block;
  547. position: relative;
  548. top: 35px;
  549. left: 0;
  550. right: 0;
  551. margin: 0 auto;
  552. height: 2px;
  553. width: 100px;
  554. background-color: #000;
  555. }
  556. .main-page .about-description {
  557. text-align: center;
  558. margin-bottom: 35px;
  559. }
  560. .main-page .about-item-wrapper {
  561. display: flex;
  562. justify-content: space-between;
  563. }
  564. .main-page .about-item {
  565. width: 30%;
  566. height: 283px;
  567. position: relative;
  568. z-index: 1;
  569. perspective: 600px;
  570. }
  571. .main-page .about-item-description {
  572. font-family: 'Roboto', sans-serif;
  573. letter-spacing: 0.3px;
  574. }
  575. .main-page .about-item-first-side {
  576. text-align: center;
  577. background-color: #fff;
  578. padding: 40px 30px;
  579. box-shadow: 0 0 22px #cacaca;
  580. /* border: 1px solid rgba(29, 29, 31,.1); */
  581. position: absolute;
  582. transform: rotateY(0deg);
  583. /* background: linear-gradient(to top,rgb(252, 252, 252), rgb(260, 260, 260)); */
  584. /* background-color: #fff; */
  585. background: rgb(252, 252, 254);
  586. }
  587. .main-page .about-item-second-side {
  588. display: block;
  589. position: absolute;
  590. background-color: #1D1D1F;
  591. padding: 40px 30px;
  592. box-shadow: 0 0 22px #cacaca;
  593. width: 100%;
  594. height: 272px;
  595. transform: rotateY(90deg);
  596. text-align: center;
  597. cursor: pointer
  598. }
  599. .main-page .about-item-second-side span {
  600. display: inline-block;
  601. color: #fff;
  602. font-size: 29px;
  603. margin-top: 85px;
  604. transform: scale(-1, 1);
  605. opacity: 0;
  606. transition: all 1.6s ease;
  607. }
  608. .main-page .about-item:hover .about-item-first-side {
  609. transition: all 0.3s ease-in;
  610. transform: rotateY(90deg);
  611. }
  612. .main-page .about-item:hover .about-item-second-side {
  613. transition: all 0.3s 0.3s ease-out;
  614. transform: rotateY(180deg);
  615. opacity: 1;
  616. }
  617. .main-page .about-item:hover .about-item-second-side span {
  618. opacity: 1;
  619. }
  620. .main-page .about-item-img {
  621. margin-bottom: 35px;
  622. }
  623. .main-page .about-item-img i {
  624. font-size: 50px;
  625. color: #1D1D1F;
  626. }
  627. .main-page .about-item h2 {
  628. color: #2A2627;
  629. margin-bottom: 25px;
  630. }
  631. .main-page .steps {
  632. padding: 60px 0;
  633. background: rgb(252, 252, 254);
  634. }
  635. .main-page .steps-wrapper {
  636. max-width: 860px;
  637. margin: 0 auto;
  638. }
  639. .main-page h1.steps-title {
  640. text-align: center;
  641. margin-bottom: 30px;
  642. }
  643. .main-page .steps-description {
  644. text-align: center;
  645. font-size: 18px;
  646. margin-bottom: 50px;
  647. }
  648. .main-page .steps-item-wrapper {
  649. display: flex;
  650. justify-content: space-around;
  651. flex-wrap: wrap;
  652. perspective: 600px;
  653. }
  654. .main-page .steps-item {
  655. opacity: 0;
  656. width: 42%;
  657. position: relative;
  658. margin-bottom: 60px;
  659. background: rgb(252, 252, 254);
  660. box-shadow: 0 0 10px #cacaca;
  661. transition: all 1s cubic-bezier(.645,.045,.355,1);
  662. }
  663. .main-page .steps-item:nth-child(1), .main-page .steps-item:nth-child(3) {
  664. transform: translateX(-200%);
  665. }
  666. .main-page .steps-item:nth-child(2), .main-page .steps-item:nth-child(4) {
  667. transform: translateX(200%);
  668. }
  669. /* .main-page .steps-item:hover {
  670. transform-origin: 50% 0%;
  671. transform: rotateX(8deg);
  672. box-shadow: 0 0 20px #cacaca;
  673. } */
  674. .main-page .steps-item-content {
  675. text-align: center;
  676. border: 2px solid rgba(29, 29, 31,.7);
  677. padding: 70px 40px 40px;
  678. font-size: 17px;
  679. font-family: 'Roboto', sans-serif;
  680. height: 200px;
  681. }
  682. .main-page .steps-item-number {
  683. position: absolute;
  684. background: rgba(29, 29, 31,.9);
  685. color: #fff;
  686. font-size: 17px;
  687. font-weight: bold;
  688. padding: 10px 25px;
  689. top: 20px;
  690. left: -10px;
  691. font-style: italic;
  692. box-shadow: 0 0 10px #cacaca;
  693. }
  694. .main-page .steps-item-number::after {
  695. content: '';
  696. display: block;
  697. position: absolute;
  698. top: -10px;
  699. left: 0;
  700. width: 0;
  701. height: 0;
  702. border-style: solid;
  703. border-width: 0 0 10px 10px;
  704. border-color: transparent transparent #000 transparent;
  705. }
  706. .main-page .steps-scroll-class .steps-item:nth-child(1), .steps-scroll-class .steps-item:nth-child(2) {
  707. transform: translateX(0);
  708. opacity: 1;
  709. }
  710. .main-page .steps-scroll-class-second .steps-item:nth-child(3), .steps-scroll-class-second .steps-item:nth-child(4){
  711. transform: translateX(0);
  712. opacity: 1;
  713. }
  714. .main-page .steps-scroll-class-hover .steps-item:hover {
  715. transition: all 0.7s ease;
  716. transform: translateX(0) rotateX(7deg);
  717. transform-origin: 50% 0%;
  718. box-shadow: 0 0 20px #cacaca;
  719. }
  720. .main-page .loyalty-programs {
  721. background: rgb(241, 241, 245);
  722. padding: 60px 0;
  723. }
  724. .main-page .loyalty-programs-wrapper {
  725. max-width: 1024px;
  726. margin: 0 auto;
  727. }
  728. .main-page h1.loyalty-programs-title {
  729. text-align: center;
  730. text-transform: uppercase;
  731. margin-bottom: 60px;
  732. }
  733. .main-page .loyalty-programs-item-wrapper {
  734. display: flex;
  735. justify-content: space-between;
  736. perspective: 1000px;
  737. }
  738. .main-page .loyalty-programs-item {
  739. width: 18%;
  740. text-align: center;
  741. position: relative;
  742. }
  743. .main-page .loyalty-programs-item-circle {
  744. }
  745. .main-page .loyalty-programs-item-circle-front {
  746. display: inline-block;
  747. padding: 30px;
  748. border-radius: 50%;
  749. background: rgb(252, 252, 254);
  750. transition: all 0.3s 0.3s ease-out;
  751. transform: rotateY(90deg);
  752. box-shadow: 0 0 5px #cacaca;
  753. }
  754. .main-page .loyalty-programs-scroll-class-hover .loyalty-programs-item-circle:hover .loyalty-programs-item-circle-front {
  755. transition: all 0.4s 0s ease;
  756. box-shadow: 0 0 10px #cacaca;
  757. transform: scale(1.05);
  758. }
  759. .main-page .loyalty-programs-item-circle-back {
  760. top: 0;
  761. position: absolute;
  762. left: 0;
  763. right: 0;
  764. margin: 0 auto;
  765. width: 113.09px;
  766. padding: 30px;
  767. border-radius: 50%;
  768. background: #1D1D1F;
  769. transition: all 0.3s ease-in;
  770. transform: rotateY(180deg);
  771. box-shadow: 0 0 5px #cacaca;
  772. }
  773. .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-front{
  774. transition: all 0.3s 0.3s ease-out;
  775. }
  776. .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-back{
  777. transition: all 0.3s ease-in;
  778. }
  779. .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-front{
  780. transition: all 0.3s 0.4s ease-out;
  781. }
  782. .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-back{
  783. transition: all 0.3s 0.1s ease-in;
  784. }
  785. .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-front{
  786. transition: all 0.3s 0.5s ease-out;
  787. }
  788. .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-back{
  789. transition: all 0.3s 0.2s ease-in;
  790. }
  791. .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-front{
  792. transition: all 0.3s 0.6s ease-out;
  793. }
  794. .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-back{
  795. transition: all 0.3s 0.3s ease-in;
  796. }
  797. .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-front{
  798. transition: all 0.3s 0.7s ease-out;
  799. }
  800. .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-back{
  801. transition: all 0.3s 0.4s ease-in;
  802. }
  803. .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-front {
  804. transform: rotateY(0deg);
  805. }
  806. .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-back {
  807. transform: rotateY(90deg);
  808. opacity: 0;
  809. }
  810. .main-page .loyalty-programs-item-description {
  811. margin-top: 30px;
  812. font-size: 17px;
  813. font-family: 'Roboto', sans-serif;
  814. }
  815. .main-page .loyalty-programs-item img {
  816. width: 50px;
  817. height: 50px;
  818. }
  819. /* main-page */
  820. /* footer */
  821. .footer {
  822. background-color: #1D1D1F;
  823. padding: 60px 0;
  824. }
  825. .footer-icons {
  826. display: flex;
  827. justify-content: space-between;
  828. margin: 0 auto;
  829. width: 180px;
  830. margin-bottom: 40px;
  831. }
  832. .footer-icon {
  833. width: 33.3%;
  834. cursor: pointer;
  835. }
  836. .footer-icon a {
  837. display: block;
  838. text-align: center;
  839. position: relative;
  840. }
  841. .footer-icon i {
  842. transition: all 0.3s ease;
  843. }
  844. .footer-icon i:nth-of-type(1) {
  845. font-size: 19px;
  846. color: #9c9c9c;
  847. }
  848. .footer-icon i:nth-of-type(2) {
  849. position: absolute;
  850. top: -11px;
  851. left: 0;
  852. right: 0;
  853. margin: 0 auto;
  854. width: 40px;
  855. height: 40px;
  856. border: 1.5px solid rgb(156,156,156);
  857. border-radius: 50%;
  858. }
  859. .footer-icon:hover i:.fa, {
  860. color: #fff!important;
  861. }
  862. .footer-icon:hover i:nth-of-type(2) {
  863. border-color: #F1F1F5;
  864. }
  865. .footer-navbar {
  866. text-align: center;
  867. margin-bottom: 30px;
  868. }
  869. .footer-navbar ul {
  870. display: inline-block;
  871. }
  872. .footer-navbar ul li {
  873. display: inline-block;
  874. padding: 0 10px;
  875. border-right: 1px solid rgba(156,156,156,.5);
  876. }
  877. .footer-navbar ul li:last-child {
  878. border-right: none;
  879. }
  880. .footer-navbar ul a {
  881. text-decoration: none;
  882. color: rgb(156,156,156);
  883. font-size: 18px;
  884. transition: all 0.3s ease;
  885. }
  886. .footer-navbar ul li:hover a {
  887. color: #F1F1F5;
  888. }
  889. .footer-copyright {
  890. color: rgb(156,156,156);
  891. font-family: 'Roboto', sans-serif;
  892. text-align: center;
  893. font-size: 14px;
  894. }
  895. /* footer */
  896. /* select-menu-page */
  897. .select-menu-page {
  898. /* background: rgb(252, 252, 254); */
  899. background: rgb(241, 241, 245);
  900. min-height: 100vh;
  901. }
  902. .select-menu-page .search {
  903. background: linear-gradient(to top,rgba(29, 29, 31,.9),rgba(29, 29, 31,.95));
  904. }
  905. .select-menu-page .search-wrapper {
  906. margin: 0 auto;
  907. max-width: 1024px;
  908. }
  909. .select-menu-page .search-description {
  910. color: #fff;
  911. border-bottom: 1px solid #fff;
  912. padding: 20px 85px;
  913. font-size: 27px;
  914. }
  915. .select-menu-page .search-buttons-wrapper {
  916. display: flex;
  917. justify-content: space-between;
  918. }
  919. .select-menu-page .search-button {
  920. position: relative;
  921. width: 25%;
  922. text-align: center;
  923. padding: 20px 0;
  924. color: #fff;
  925. font-size: 18px;
  926. letter-spacing: 1px;
  927. cursor: pointer;
  928. user-select: none;
  929. /* font-family: 'Roboto'; */
  930. }
  931. .select-menu-page .search-button-active::after {
  932. content: '';
  933. position: absolute;
  934. width: 0;
  935. height: 0;
  936. right: 0;
  937. left: 0;
  938. bottom: 0;
  939. margin: 0 auto;
  940. border-style: solid;
  941. border-width: 0 10px 10px 10px;
  942. border-color: transparent transparent rgb(241, 241, 245) transparent;
  943. }
  944. .select-menu-page .meal-items {
  945. max-width: 1140px;
  946. margin: 0 auto;
  947. display: flex;
  948. justify-content: space-between;
  949. flex-wrap: wrap;
  950. padding: 70px 0;
  951. }
  952. .select-menu-page .meal-item-delete-btn {
  953. transition: all 0.5s ease;
  954. opacity: 0;
  955. position: absolute;
  956. display: flex;
  957. justify-content: center;
  958. align-items: center;
  959. left: -11px;
  960. top: -11px;
  961. z-index: 3;
  962. background: rgba(29, 29, 31,.7);
  963. border-radius: 50%;
  964. width: 26px;
  965. height: 26px;
  966. cursor: pointer;
  967. }
  968. .select-menu-page .meal-item-delete-btn:hover {
  969. background: rgba(29, 29, 31,1);
  970. transform: scale(1.2);
  971. }
  972. .select-menu-page .meal-item-delete-btn span{
  973. color: #fff;
  974. font-size: 20px;
  975. }
  976. /* .select-menu-page .meal-item.ng-leave {
  977. transition: all 1s ease;
  978. opacity: 1;
  979. }
  980. .select-menu-page .meal-item.ng-leave.ng-leave-active {
  981. opacity: 0;
  982. } */
  983. .select-menu-page .meal-item {
  984. position: relative;
  985. perspective: 1000px;
  986. width: 31%;
  987. /* margin-right: 3.5%; */
  988. margin-bottom: 40px;
  989. box-shadow: 0 0 22px #cacaca;
  990. transition: all 0.3s ease;
  991. }
  992. .select-menu-page .meal-item-title {
  993. position: absolute;
  994. z-index: 1;
  995. width: 100%;
  996. top: 0;
  997. left: 0;
  998. overflow: hidden;
  999. }
  1000. .select-menu-page .meal-item-title h2 {
  1001. transition: all 0.4s ease;
  1002. transform: translateX(0px);
  1003. text-align: center;
  1004. padding: 5px 0;
  1005. color: #fff;
  1006. background: rgba(29, 29, 31, 0.7);
  1007. letter-spacing: 0.7px;
  1008. font-weight: normal;
  1009. text-transform: capitalize;
  1010. }
  1011. /* .select-menu-page .meal-item:nth-child(3n + 3) {
  1012. margin-right: 0;
  1013. } */
  1014. .select-menu-page .meal-item-img {
  1015. overflow: hidden;
  1016. }
  1017. .select-menu-page .meal-item img{
  1018. width: 100%;
  1019. transition: all 0.4s ease;
  1020. transform: translateX(0px);
  1021. margin-bottom: -4px;
  1022. }
  1023. .select-menu-page .meal-item-ingredients {
  1024. position: absolute;
  1025. z-index: 2;
  1026. top: 0;
  1027. left: 0;
  1028. height: 100%;
  1029. width: 50%;
  1030. background: rgba(29, 29, 31,0.95);
  1031. transition: all 0.3s ease;
  1032. transform: rotateY(280deg);
  1033. transform-origin: 0 50%;
  1034. color: #fff;
  1035. padding: 12px;
  1036. }
  1037. .select-menu-page .meal-item-ingredients h3 {
  1038. margin: 5px;
  1039. font-weight: normal;
  1040. }
  1041. .select-menu-page .meal-item-ingredients li {
  1042. font-size: 15px;
  1043. font-family: 'Roboto';
  1044. margin: 10px 5px;
  1045. }
  1046. .select-menu-page .meal-item:hover {
  1047. transform: scale(1.05);
  1048. box-shadow: 0 0 30px #cacaca;
  1049. }
  1050. .select-menu-page .meal-item:hover .meal-item-ingredients {
  1051. transform: rotateY(360deg);
  1052. }
  1053. .select-menu-page .meal-item:hover img{
  1054. transform: translateX(50px);
  1055. }
  1056. .select-menu-page .meal-item:hover .meal-item-title h2{
  1057. transform: translate3d(0, -100%, 0);
  1058. opacity: 0;
  1059. }
  1060. .select-menu-page .meal-item:hover .meal-item-bottom-container {
  1061. /* transform: translate3d(0, 100%, 0); */
  1062. background: rgba(29, 29, 31, 0);
  1063. }
  1064. .select-menu-page .meal-item:hover .meal-item-bottom-container button {
  1065. transform: scale(1.2);
  1066. }
  1067. .select-menu-page .meal-item:hover .meal-item-bottom-container span {
  1068. opacity: 0;
  1069. }
  1070. .select-menu-page .meal-item-bottom {
  1071. position: absolute;
  1072. z-index: 1;
  1073. width: 100%;
  1074. bottom: 0;
  1075. left: 0;
  1076. overflow: hidden;
  1077. }
  1078. .select-menu-page .meal-item-bottom-container {
  1079. display: flex;
  1080. transition: all 0.4s ease;
  1081. transform: translateX(0px);
  1082. text-align: center;
  1083. text-transform: capitalize;
  1084. padding: 5px 0;
  1085. background: rgba(29, 29, 31, 0.7);
  1086. }
  1087. .select-menu-page .meal-item-price {
  1088. width: 50%;
  1089. text-align: left;
  1090. }
  1091. .select-menu-page .meal-item-price span{
  1092. color: #fff;
  1093. font-size: 16px;
  1094. position: relative;
  1095. top: 4px;
  1096. left: 15px;
  1097. }
  1098. .select-menu-page .meal-item-btn {
  1099. width: 50%;
  1100. text-align: right;
  1101. }
  1102. .select-menu-page .meal-item-btn button{
  1103. position: relative;
  1104. background: #1D1D1F;
  1105. border: none;
  1106. color: #fff;
  1107. padding: 5px 20px;
  1108. margin-right: 15px;
  1109. cursor: pointer;
  1110. transition: all 0.3s ease;
  1111. outline: none;
  1112. }
  1113. .meal-item-checked-icon {
  1114. position: absolute;
  1115. display: flex;
  1116. z-index: 2;
  1117. font-size: 45px;
  1118. top: 0;
  1119. left: 0;
  1120. height: 100%;
  1121. width: 100%;
  1122. justify-content: center;
  1123. align-items: center;
  1124. opacity: 0.89;
  1125. color: #1D1D1F;
  1126. transition: all 0.3s ease;
  1127. }
  1128. .meal-item-checked-icon.ng-enter {
  1129. opacity: 0;
  1130. transform: scale(1);
  1131. }
  1132. .meal-item-checked-icon.ng-enter.ng-enter-active {
  1133. opacity: 1;
  1134. transform: scale(1.4);
  1135. }
  1136. .selected-meals-btn {
  1137. position: absolute;
  1138. right: 260px;
  1139. top: 11px;
  1140. z-index: 2;
  1141. width: 31px;
  1142. height: 31px;
  1143. border-radius: 50%;
  1144. background: rgba(29, 29, 31,.9);
  1145. color: #fff;
  1146. cursor: pointer;
  1147. transition: all 0.3s ease;
  1148. text-align: center;
  1149. box-shadow: 0 0 5px #cacaca;
  1150. }
  1151. .selected-meals-btn:hover .selected-meals-tip {
  1152. opacity: 1;
  1153. }
  1154. .selected-meals-btn span:nth-child(1){
  1155. position: relative;
  1156. top: 7px;
  1157. }
  1158. .selected-meals-btn-animate {
  1159. transform: scale(1.3);
  1160. }
  1161. .selected-meals-tip {
  1162. position: absolute;
  1163. color: #000;
  1164. right: 40px;
  1165. bottom: 7px;
  1166. font-size: 14px;
  1167. opacity: 0;
  1168. transition: all 0.3s ease;
  1169. letter-spacing: 1.5px;
  1170. }
  1171. .selected-meals {
  1172. position: absolute;
  1173. top: 0;
  1174. right: 0;
  1175. height: 100vh;
  1176. width: 281px;
  1177. background-color: rgb(29, 29, 31);
  1178. padding: 25px;
  1179. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  1180. transform: translateX(281px);
  1181. overflow-y: scroll;
  1182. }
  1183. .selected-meals .selected-meal {
  1184. margin: 13px 0;
  1185. position: relative;
  1186. }
  1187. .selected-meals::-webkit-scrollbar {
  1188. width: 0!important;
  1189. }
  1190. .selected-meals .selected-meal-img {
  1191. width: 100%;
  1192. overflow: hidden;
  1193. height: 40px;
  1194. border-radius: 3px;
  1195. }
  1196. .selected-meals .selected-meal img{
  1197. width: 100%;
  1198. position: relative;
  1199. bottom: 150%;
  1200. }
  1201. .selected-meals .selected-meal-title {
  1202. position: absolute;
  1203. z-index: 1;
  1204. top: 0;
  1205. background: rgba(29, 29, 31, 0.4);
  1206. width: 100%;
  1207. height: 100%;
  1208. }
  1209. .selected-meals .selected-meal-title h2 {
  1210. text-align: center;
  1211. text-transform: capitalize;
  1212. color: #fff;
  1213. letter-spacing: 0.7px;
  1214. font-weight: normal;
  1215. margin-top: 7px;
  1216. }
  1217. .selected-meals .selected-meal-delete {
  1218. position: absolute;
  1219. right: 9px;
  1220. top: 10px;
  1221. height: 20px;
  1222. width: 20px;
  1223. background: rgba(29, 29, 31,1);
  1224. border-radius: 50%;
  1225. text-align: center;
  1226. z-index: 1;
  1227. cursor: pointer;
  1228. opacity: 0.8;
  1229. }
  1230. .selected-meals .selected-meal-delete:hover{
  1231. opacity: 1;
  1232. }
  1233. .selected-meals .selected-meal-delete span {
  1234. color: #F1F1F5;
  1235. position: relative;
  1236. top: 1px;
  1237. }
  1238. .selected-meal.ng-leave {
  1239. transition: all 0.7s ease;
  1240. }
  1241. .selected-meal.ng-leave.ng-leave-active {
  1242. transform: translateX(-100%);
  1243. opacity: 0;
  1244. }
  1245. .selected-meals-type {
  1246. position: relative;
  1247. left: -30px;
  1248. right: -30px;
  1249. bottom: 0px;
  1250. width: 124%;
  1251. padding: 10px 0;
  1252. margin: 40px 0;
  1253. background-color: #F1F1F5;
  1254. text-align: center;
  1255. font-size: 15px;
  1256. font-weight: bold;
  1257. letter-spacing: 3px;
  1258. text-transform: capitalize;
  1259. }
  1260. .selected-meals-type:first-of-type {
  1261. bottom: 25px;
  1262. margin: 0;
  1263. }
  1264. .selected-meals-submit {
  1265. position: relative;
  1266. left: -30px;
  1267. right: -30px;
  1268. bottom: -30px;
  1269. width: 124%;
  1270. background-color: #F1F1F5;
  1271. text-align: center;
  1272. font-size: 15px;
  1273. font-weight: bold;
  1274. letter-spacing: 3px;
  1275. cursor: pointer;
  1276. }
  1277. .selected-meals-submit a {
  1278. display: block;
  1279. padding: 20px 0;
  1280. color: #000;
  1281. text-decoration: none;
  1282. }
  1283. /* select-menu-page */
  1284. /* add-item-page */
  1285. .add-item-page {
  1286. background: #F1F1F5;
  1287. }
  1288. .add-item-page .form-wrapper {
  1289. max-width: 768px;
  1290. margin: 0 auto;
  1291. padding: 70px 0;
  1292. }
  1293. .add-item-page .form-tabs {
  1294. font-size: 16px;
  1295. font-family: 'Roboto';
  1296. }
  1297. .add-item-page .form-tab1 {
  1298. display: inline-block;
  1299. width: 200px;
  1300. text-align: center;
  1301. background: rgba(29, 29, 31,0.7);
  1302. color: rgb(252, 252, 254);
  1303. padding: 15px 0;
  1304. box-shadow: 0px -5px 10px rgba(202, 202, 202, .4);
  1305. cursor: pointer;
  1306. }
  1307. .add-item-page .form-tab2 {
  1308. display: inline-block;
  1309. width: 200px;
  1310. text-align: center;
  1311. background: rgba(29, 29, 31,0.7);
  1312. color: rgb(252, 252, 254);
  1313. padding: 15px 0;
  1314. margin-left: 5px;
  1315. box-shadow: 0px -5px 10px rgba(202, 202, 202, .4);
  1316. cursor: pointer;
  1317. }
  1318. .add-item-page .form-tab-active {
  1319. background: #FCFCFC;
  1320. color: #000;
  1321. }
  1322. .add-item-page form {
  1323. padding: 50px;
  1324. background: #FCFCFE;
  1325. box-shadow: 0 0 22px #cacaca;
  1326. text-align: center;
  1327. }
  1328. .add-item-page form h2 {
  1329. text-align: center;
  1330. letter-spacing: 0.5px;
  1331. color: #1D1D1F;
  1332. }
  1333. .add-item-page form input, .add-item-page form select, .add-item-page form textarea {
  1334. width: 80%;
  1335. margin: 15px 0;
  1336. background-color: #F1F1F5;
  1337. height: 35px;
  1338. border: none;
  1339. box-shadow: inset 0 0 8px #cacaca;
  1340. padding: 0 10px;
  1341. font-size: 18px;
  1342. font-family: 'Roboto', sans-serif;
  1343. outline: none;
  1344. }
  1345. .add-item-page form textarea {
  1346. resize: vertical;
  1347. height: 70px;
  1348. }
  1349. .add-item-page form .ingredient-wrapper input {
  1350. width: 80%;
  1351. margin-left: 5%;
  1352. }
  1353. .add-item-page form .ingredient-wrapper span {
  1354. width: 5%;
  1355. font-size: 22px;
  1356. opacity: .4;
  1357. transition: all .3s ease;
  1358. cursor: pointer;
  1359. }
  1360. .add-item-page form .ingredient-wrapper span:hover {
  1361. opacity: .8;
  1362. }
  1363. .add-item-page form button {
  1364. display: inline-block;
  1365. width: 150px;
  1366. height: 35px;
  1367. border: none;
  1368. box-shadow: 0 0 5px #cacaca;
  1369. font-family: 'Roboto', sans-serif;
  1370. font-size: 15px;
  1371. margin: 15px 0;
  1372. cursor: pointer;
  1373. background: rgba(29, 29, 31,.85);
  1374. color: #fff;
  1375. outline: none;
  1376. }
  1377. /* add-item-page */
  1378. /* ready-menu-page */
  1379. .ready-menu-page {
  1380. background: rgba(29, 29, 31,1);
  1381. border-bottom: 1px solid #1D1D1F;
  1382. min-height: 92vh;
  1383. }
  1384. .ready-menu-page-wrapper {
  1385. text-align: center;
  1386. position: relative;
  1387. }
  1388. .ready-menu-page .read-menu-title {
  1389. position: absolute;
  1390. z-index: 1;
  1391. text-align: center;
  1392. width: 100%;
  1393. }
  1394. .ready-menu-page .read-menu-title h1 {
  1395. color: #F1F1F5;
  1396. display: inline-block;
  1397. margin-top: 40px;
  1398. font-size: 40px;
  1399. font-weight: normal;
  1400. }
  1401. .ready-menu-page .read-menu-title h1::after {
  1402. content: '';
  1403. position: absolute;
  1404. top: 110px;
  1405. left: 0;
  1406. right: 0;
  1407. margin: 0 auto;
  1408. height: 1px;
  1409. width: 120px;
  1410. background: #F1F1F5;
  1411. }
  1412. .ready-menu-page .items-wrapper {
  1413. display: flex;
  1414. justify-content: center;
  1415. }
  1416. .ready-menu-page .item {
  1417. width: 30%;
  1418. color: #F1F1F5;
  1419. position: relative;
  1420. }
  1421. .ready-menu-page .img-wrapper {
  1422. overflow: hidden;
  1423. }
  1424. .ready-menu-page .img-wrapper .img-overlay {
  1425. position: absolute;
  1426. width: 100%;
  1427. height: 100%;
  1428. top: 0;
  1429. left: 0;
  1430. background: rgba(29, 29, 31,.9);
  1431. transition: all 1s ease;
  1432. }
  1433. .ready-menu-second .adaptive-price {
  1434. display: none;
  1435. text-align: center;
  1436. font-size: 27px;
  1437. margin-bottom: 20px;
  1438. }
  1439. .ready-menu-page .img-wrapper img {
  1440. height: 92vh;
  1441. }
  1442. .ready-menu-page .item:hover .img-overlay {
  1443. background: rgba(29, 29, 31,0.2);
  1444. }
  1445. .ready-menu-page .item:hover .item-details-btn {
  1446. background: rgba(29, 29, 31,0);
  1447. }
  1448. .ready-menu-page .item:hover .item-icon {
  1449. transform: scale(1.05);
  1450. }
  1451. .ready-menu-page .item-content {
  1452. position: absolute;
  1453. top: 0;
  1454. width: 100%;
  1455. height: 100%;
  1456. text-align: center;
  1457. }
  1458. .ready-menu-page .item-icon {
  1459. transition: all 1s ease;
  1460. display: inline-block;
  1461. margin-top: 50%;
  1462. background: url('../images/ready-menu/item-sprites/ico-sprite_01.png') no-repeat center;
  1463. width: 140px;
  1464. height: 140px;
  1465. z-index: 2;
  1466. border-radius: 50%;
  1467. background-color: #fff;
  1468. opacity: .85;
  1469. }
  1470. .ready-menu-page .item:nth-child(2) .item-icon {
  1471. background: url('../images/ready-menu/item-sprites/ico-sprite_02.png') no-repeat center;
  1472. background-color: #fff;
  1473. }
  1474. .ready-menu-page .item:nth-child(3) .item-icon {
  1475. background: url('../images/ready-menu/item-sprites/ico-sprite_03.png') no-repeat center;
  1476. background-color: #fff;
  1477. }
  1478. .ready-menu-page .item-name {
  1479. margin-top: 50px;
  1480. font-size: 25px;
  1481. text-transform: uppercase;
  1482. }
  1483. .ready-menu-page .item-details-btn {
  1484. display: inline-block;
  1485. font-size: 15px;
  1486. border: 1px solid #F1F1F5;
  1487. transition: all 1s ease;
  1488. text-transform: uppercase;
  1489. margin-top: 50px;
  1490. cursor: pointer;
  1491. background: rgba(29, 29, 31,1)
  1492. }
  1493. .ready-menu-page .item-details-btn a{
  1494. display: block;
  1495. padding: 12px 22px;
  1496. text-decoration: none;
  1497. color: #F1F1F5;
  1498. width: 100%;
  1499. height: 100%;
  1500. }
  1501. .ready-menu-page .item-details-btn:hover {
  1502. background: rgba(29, 29, 31,0.6)!important;
  1503. }
  1504. /* ready-menu-page */
  1505. /* ready-menu-second */
  1506. .ready-menu-second {
  1507. background: rgb(241, 241, 245);
  1508. padding: 100px 0;
  1509. min-height: 92vh;
  1510. }
  1511. .ready-menu-second-wrapper {
  1512. width: 1140px;
  1513. margin: 0 auto;
  1514. }
  1515. .ready-menu-second .item {
  1516. display: flex;
  1517. /* background: #FCFCFE;
  1518. box-shadow: 0 0 22px #cacaca; */
  1519. margin: 100px 0;
  1520. perspective: 2000px;
  1521. }
  1522. .ready-menu-second .item:first-child {
  1523. margin-top: 0;
  1524. }
  1525. .ready-menu-second .item:last-child {
  1526. margin-bottom: 0;
  1527. }
  1528. .diet-item-delete-btn {
  1529. transition: all 0.5s ease;
  1530. opacity: 0;
  1531. position: absolute;
  1532. display: flex;
  1533. justify-content: center;
  1534. align-items: center;
  1535. left: -11px;
  1536. top: -11px;
  1537. z-index: 3;
  1538. background: rgba(29, 29, 31,.7);
  1539. border-radius: 50%;
  1540. width: 26px;
  1541. height: 26px;
  1542. cursor: pointer;
  1543. }
  1544. .diet-item-delete-btn span{
  1545. color: #fff;
  1546. font-size: 20px;
  1547. }
  1548. .diet-item-delete-btn:hover {
  1549. background: rgba(29, 29, 31,1);
  1550. transform: scale(1.2);
  1551. }
  1552. .ready-menu-second .item-img {
  1553. width: 50%;
  1554. box-shadow: 0 0 22px #cacaca;
  1555. transform-origin: 100% 50%;
  1556. transform: rotateY(90deg);
  1557. transition: all 1s ease;
  1558. visibility: hidden;
  1559. opacity: 0.5;
  1560. }
  1561. /* .ready-menu-second .item:nth-child(1) .item-img{
  1562. transform: rotateY(0deg);
  1563. } */
  1564. .ready-menu-second .item-img img{
  1565. width: 100%;
  1566. margin-bottom: -4px;
  1567. }
  1568. .ready-menu-second .item-content {
  1569. width: 50%;
  1570. padding: 50px;
  1571. background: #FCFCFE;
  1572. box-shadow: 0 0 22px #cacaca;
  1573. transform-origin: 0% 50%;
  1574. transform: rotateY(-90deg);
  1575. transition: all 1s ease;
  1576. visibility: hidden;
  1577. opacity: 0.5;
  1578. }
  1579. /* .ready-menu-second .item:nth-child(1) .item-content {
  1580. transform: rotateY(0deg);
  1581. } */
  1582. .ready-menu-second .item-title h1{
  1583. font-weight: normal;
  1584. }
  1585. .ready-menu-second .item-center {
  1586. margin: 29px 0;
  1587. display: flex;
  1588. justify-content: space-between;
  1589. align-items: center;
  1590. }
  1591. .ready-menu-second .item-price {
  1592. width: 75%;
  1593. font-size: 27px;
  1594. display: flex;
  1595. justify-content: space-between;
  1596. align-items: center;
  1597. }
  1598. .ready-menu-second .item-price select{
  1599. width: 101px;
  1600. height: 43px;
  1601. padding: 10px;
  1602. font-size: 17px;
  1603. outline: none;
  1604. border: 1px solid #000;
  1605. font-family: 'Muli',sans-serif;
  1606. }
  1607. .ready-menu-second .item-button {
  1608. width: 25%;
  1609. }
  1610. .ready-menu-second .item-button button{
  1611. font-size: 20px;
  1612. padding: 10px 25px;
  1613. border: none;
  1614. background: rgba(29, 29, 31,.85);
  1615. color: #fff;
  1616. cursor: pointer;
  1617. outline: none;
  1618. }
  1619. .ready-menu-second .item-description{
  1620. font-size: 16.1px;
  1621. font-family: 'Muli';
  1622. }
  1623. .ready-menu-second .item-numbers {
  1624. font-family: 'Muli';
  1625. font-size: 17px;
  1626. display: flex;
  1627. justify-content: space-between;
  1628. align-items: center;
  1629. margin-top: 29px;
  1630. }
  1631. .ready-menu-second .item-numbers-text {
  1632. width: 40%;
  1633. }
  1634. .ready-menu-second .item-numbers-calories {
  1635. position: relative;
  1636. width: 53px;
  1637. line-height: 51px;
  1638. text-align: center;
  1639. border: 1px solid #000;
  1640. border-radius: 50%;
  1641. }
  1642. .ready-menu-second .item-numbers-calories::after {
  1643. position: absolute;
  1644. left: 0;
  1645. right: 0;
  1646. width: 50px;
  1647. margin: 0 auto;
  1648. display: block;
  1649. content: 'calories';
  1650. line-height: 30px;
  1651. font-size: 14px;
  1652. color: #222;
  1653. }
  1654. .ready-menu-second .item-numbers-proteins {
  1655. position: relative;
  1656. width: 53px;
  1657. line-height: 51px;
  1658. text-align: center;
  1659. border: 1px solid #000;
  1660. border-radius: 50%;
  1661. }
  1662. .ready-menu-second .item-numbers-proteins::after {
  1663. position: absolute;
  1664. left: 0;
  1665. right: 0;
  1666. width: 50px;
  1667. margin: 0 auto;
  1668. display: block;
  1669. content: 'proteins';
  1670. line-height: 30px;
  1671. font-size: 14px;
  1672. color: #222;
  1673. }
  1674. .ready-menu-second .item-numbers-fats {
  1675. position: relative;
  1676. width: 53px;
  1677. line-height: 51px;
  1678. text-align: center;
  1679. border: 1px solid #000;
  1680. border-radius: 50%;
  1681. }
  1682. .ready-menu-second .item-numbers-fats::after {
  1683. position: absolute;
  1684. left: 0;
  1685. right: 0;
  1686. width: 50px;
  1687. margin: 0 auto;
  1688. display: block;
  1689. content: 'fats';
  1690. line-height: 30px;
  1691. font-size: 14px;
  1692. color: #222;
  1693. }
  1694. .ready-menu-second .item-numbers-carbs {
  1695. position: relative;
  1696. width: 53px;
  1697. line-height: 51px;
  1698. text-align: center;
  1699. border: 1px solid #000;
  1700. border-radius: 50%;
  1701. }
  1702. .ready-menu-second .item-numbers-carbs::after {
  1703. position: absolute;
  1704. left: 0;
  1705. right: 0;
  1706. width: 50px;
  1707. margin: 0 auto;
  1708. display: block;
  1709. content: 'carbs';
  1710. line-height: 30px;
  1711. font-size: 14px;
  1712. color: #222;
  1713. }
  1714. .ready-menu-second-scroll-class .item-img, .ready-menu-second-scroll-class .item-content {
  1715. transform: rotateY(0deg);
  1716. visibility: visible;
  1717. opacity: 1;
  1718. }
  1719. /* ready-menu-second */
  1720. /* shopping-cart-page */
  1721. .shopping-cart-page {
  1722. padding-bottom: 50px;
  1723. perspective: 600px;
  1724. }
  1725. .shopping-cart-page .title h1 {
  1726. text-align: center;
  1727. margin: 50px 0;
  1728. font-family: "AvenirNextLTPro-Demi";
  1729. color: #1D1D1F;
  1730. font-weight: 200;
  1731. color: #555;
  1732. }
  1733. .shopping-cart-page .items-wrapper-header {
  1734. width: 1170px;
  1735. margin: 0 auto;
  1736. background: #FCFCFE;
  1737. display: flex;
  1738. padding: 45px 50px 30px;
  1739. border-bottom: 1px solid #ccc;
  1740. font-family: "AvenirNextLTPro-Demi";
  1741. color: #1D1D1F;
  1742. box-shadow: 0 0px 15px rgba(202, 202, 202,1);
  1743. font-size: 18px;
  1744. }
  1745. .shopping-cart-page .items-wrapper-header .product{
  1746. width: 60%;
  1747. text-align: left;
  1748. }
  1749. .shopping-cart-page .items-wrapper-header .duration{
  1750. width: 20%;
  1751. text-align: center;
  1752. }
  1753. .shopping-cart-page .items-wrapper-header .price{
  1754. width: 20%;
  1755. text-align: right;
  1756. }
  1757. .shopping-cart-page .items-wrapper {
  1758. width: 1170px;
  1759. margin: 0 auto;
  1760. box-shadow: 0 4px 15px rgba(202, 202, 202,0.9);
  1761. }
  1762. .shopping-cart-page .item {
  1763. background: #FCFCFE;
  1764. display: flex;
  1765. padding: 40px;
  1766. border-bottom: 1px solid #ccc;
  1767. font-family: "Muli";
  1768. }
  1769. .shopping-cart-page .item.ng-leave {
  1770. animation: shoppingCartItemLeave 1s ease;
  1771. }
  1772. @keyframes shoppingCartItemLeave {
  1773. 0% {
  1774. opacity: 1;
  1775. }
  1776. 100% {
  1777. opacity: .1;
  1778. }
  1779. }
  1780. .shopping-cart-page .item-img {
  1781. width: 20%;
  1782. }
  1783. .shopping-cart-page .item-img img{
  1784. width: 100%;
  1785. }
  1786. .shopping-cart-page .item-title{
  1787. width: 40%;
  1788. padding: 10px 30px;
  1789. }
  1790. .shopping-cart-page .item-title h3{
  1791. margin-bottom: 80px;
  1792. font-weight: normal;
  1793. }
  1794. .shopping-cart-page .item-title button{
  1795. font-size: 18px;
  1796. text-transform: uppercase;
  1797. background: none;
  1798. border: 1px solid #ccc;
  1799. padding: 5px 10px;
  1800. color: #1D1D1F;
  1801. font-weight: normal;
  1802. outline: none;
  1803. cursor: pointer;
  1804. }
  1805. .shopping-cart-page .item-duration {
  1806. width: 20%;
  1807. padding: 10px 0;
  1808. font-size: 20px;
  1809. text-align: center;
  1810. }
  1811. .shopping-cart-page .item-price {
  1812. width: 20%;
  1813. padding: 10px 0;
  1814. font-size: 20px;
  1815. text-align: right;
  1816. }
  1817. .shopping-cart-page .no-selected {
  1818. width: 1170px;
  1819. margin: 0 auto;
  1820. background: #FCFCFE;
  1821. text-align: center;
  1822. font-size: 19px;
  1823. padding: 20px 0;
  1824. border-bottom: 1px solid #ccc;
  1825. text-transform: uppercase;
  1826. letter-spacing: 0.3px;
  1827. font-weight: lighter;
  1828. color: #333;
  1829. font-family: 'Muli', sans-serif;
  1830. box-shadow: rgb(202, 202, 202) 0px 5px 15px;
  1831. }
  1832. .shopping-cart-page .items-footer {
  1833. width: 1170px;
  1834. margin: 0 auto;
  1835. background: #FCFCFE;
  1836. box-shadow: rgb(202, 202, 202) 0px 5px 15px;
  1837. transition: all 1s ease;
  1838. }
  1839. .shopping-cart-page .items-footer .total-price {
  1840. padding: 30px;
  1841. text-align: right;
  1842. font-size: 20px;
  1843. font-weight: bold;
  1844. font-family: "Muli";
  1845. }
  1846. .shopping-cart-page .items-footer .btns {
  1847. padding: 30px;
  1848. padding-top: 20px;
  1849. text-align: right;
  1850. }
  1851. .shopping-cart-page .items-footer .btns button {
  1852. font-size: 18px;
  1853. text-transform: uppercase;
  1854. background: none;
  1855. border: 1px solid #ccc;
  1856. font-weight: normal;
  1857. border-radius: 2px;
  1858. margin-left: 5px;
  1859. }
  1860. .shopping-cart-page .items-footer .btns button a{
  1861. display: block;
  1862. text-decoration: none;
  1863. color: #1D1D1F;
  1864. padding: 8px 13px;
  1865. }
  1866. .shopping-cart-page .items-footer .btns button:nth-child(2) {
  1867. background: #1D1D1F;
  1868. color: #FCFCFE;
  1869. padding: 8px 13px;
  1870. border: none;
  1871. cursor: pointer;
  1872. }
  1873. .shopping-cart-page .order-success-wrapper {
  1874. display: flex;
  1875. align-items: center;
  1876. justify-content: center;
  1877. height: 88vh;
  1878. overflow: hidden;
  1879. }
  1880. .shopping-cart-page .order-success-wrapper.ng-enter {
  1881. transform-origin: 50% 0;
  1882. animation: orderSuccess 2s ease;
  1883. opacity: 0.3;
  1884. }
  1885. @keyframes orderSuccess {
  1886. 0%{transform:rotateX(-90deg)}
  1887. 30%{transform:rotateX(20deg)}
  1888. 65%{
  1889. transform:rotateX(-15deg);
  1890. opacity: 1;
  1891. }
  1892. 100%{
  1893. transform:rotateX(0deg);
  1894. opacity: 1;
  1895. }
  1896. }
  1897. /* @keyframes orderSuccess {
  1898. 0% {
  1899. transform: translateY(-300%);
  1900. opacity: 0;
  1901. }
  1902. 100% {
  1903. transform: translateY(0);
  1904. opacity: 1;
  1905. }
  1906. } */
  1907. .shopping-cart-page .order-success-wrapper .order-success {
  1908. display: block;
  1909. width: 768px;
  1910. box-shadow: 0 4px 15px rgba(202, 202, 202,0.9);
  1911. background: #FCFCFE;
  1912. padding: 50px 40px;
  1913. border-bottom: 1px solid #ccc;
  1914. font-family: "Muli";
  1915. text-align: center;
  1916. }
  1917. .shopping-cart-page .order-success-wrapper .order-success h1 {
  1918. margin-bottom: 50px;
  1919. font-weight: lighter;
  1920. font-family: "AvenirNextLTPro-Demi";
  1921. text-transform: uppercase;
  1922. letter-spacing: 0.3px;
  1923. }
  1924. .shopping-cart-page .order-success-btns {
  1925. text-align: center;
  1926. }
  1927. .shopping-cart-page .order-success-btns button {
  1928. font-size: 18px;
  1929. text-transform: uppercase;
  1930. background: none;
  1931. border: 1px solid #ccc;
  1932. font-weight: normal;
  1933. border-radius: 2px;
  1934. margin: 0 15px;
  1935. transition: all .5s ease;
  1936. }
  1937. .shopping-cart-page .order-success-btns button:hover {
  1938. background: rgba(241, 241, 245,0.4);
  1939. color: #FCFCFE;
  1940. /* border: 1px solid rgba(241, 241, 245,0.1); */
  1941. }
  1942. .shopping-cart-page .order-success-btns button:hover a {
  1943. /* color: #FCFCFE; */
  1944. }
  1945. .shopping-cart-page .order-success-btns button a{
  1946. display: block;
  1947. text-decoration: none;
  1948. color: #1D1D1F;
  1949. padding: 8px 13px;
  1950. }
  1951. /* .shopping-cart-page .shopping-cart-footer-animate {
  1952. animation: shoppingCartFooter 1s ease;
  1953. }
  1954. @keyframes shoppingCartFooter {
  1955. 0%{
  1956. opacity: 1;
  1957. }
  1958. 100% {
  1959. opacity: 0;
  1960. }
  1961. } */
  1962. /* shopping-cart-page */
  1963. /* user-page */
  1964. .user-page {
  1965. background: #FCFCFE;
  1966. padding: 50px 0;
  1967. min-height: 92vh;
  1968. }
  1969. .user-page-wrapper {
  1970. max-width: 1024px;
  1971. margin: 0 auto;
  1972. display: flex;
  1973. box-shadow: 0 0 22px #cacaca;
  1974. }
  1975. .user-page .navigation {
  1976. width: 25%;
  1977. background: #1D1D1F;
  1978. text-align: center;
  1979. }
  1980. .user-page .navigation-profile {
  1981. color: #fff;
  1982. font-family: 'Muli', sans-serif;
  1983. }
  1984. .user-page .navigation .profile-img {
  1985. display: inline-block;
  1986. background: #FCFCFE;
  1987. border-radius: 50%;
  1988. width: 40%;
  1989. overflow: hidden;
  1990. text-align: center;
  1991. margin-top: 30px;
  1992. position: relative;
  1993. width: 100px;
  1994. height: 100px;
  1995. }
  1996. .user-page .navigation .profile-img img {
  1997. position: absolute;
  1998. width: 115%;
  1999. height: 115%;
  2000. left: -8px;
  2001. top: 5px;
  2002. }
  2003. .user-page .navigation .profile-name {
  2004. margin-top: 20px;
  2005. letter-spacing: 0.3px;
  2006. font-size: 20px;
  2007. }
  2008. .user-page .navigation .profile-change-img-btn {
  2009. display: inline-block;
  2010. border: 1px solid #fff;
  2011. border-radius: 20px;
  2012. padding: 5px 10px;
  2013. margin-top: 20px;
  2014. font-size: 15px;
  2015. cursor: pointer;
  2016. }
  2017. .user-page .navigation label {
  2018. cursor: pointer;
  2019. }
  2020. .user-page .navigation #select-file {
  2021. position: absolute;
  2022. visibility: hidden;
  2023. z-index: -1;
  2024. }
  2025. .user-page .navigation-btns {
  2026. color: #F1F1F5;
  2027. font-family: "AvenirNextLTPro-Demi";
  2028. letter-spacing: 0.3px;
  2029. text-transform: uppercase;
  2030. margin-top: 20px;
  2031. }
  2032. .user-page .navigation-btns .navigation-btn {
  2033. padding: 35px 0;
  2034. font-size: 13px;
  2035. transition: all 0.5s ease;
  2036. cursor: pointer;
  2037. letter-spacing: 0.3px;
  2038. }
  2039. .user-page .navigation-btns span {
  2040. display: block;
  2041. font-size: 40px;
  2042. margin-bottom: 10px;
  2043. }
  2044. .user-page .navigation-btn-active {
  2045. background: #171719;
  2046. border-left: 3px solid #F1F1F5;
  2047. }
  2048. .user-page .content {
  2049. background: #F1F1F5;
  2050. width: 75%;
  2051. padding: 50px 0;
  2052. position: relative;
  2053. }
  2054. .user-page .content .personl-info-wrapper {
  2055. max-width: 640px;
  2056. margin: 0 auto;
  2057. background: #FCFCFE;
  2058. padding: 40px;
  2059. box-shadow: 0 0 11px rgba(202, 202, 202,.3);
  2060. }
  2061. .user-page .content .personl-info-wrapper h2{
  2062. margin: 0px 0 20px;
  2063. font-family: "AvenirNextLTPro-Demi";
  2064. letter-spacing: 0.3px;
  2065. }
  2066. .user-page .content .personal-info-item {
  2067. display: flex;
  2068. font-family: 'Muli', sans-serif;
  2069. padding: 15px 0;
  2070. border-bottom: 1px solid rgba(29, 29, 31,0.1);
  2071. font-size: 16px;
  2072. }
  2073. .user-page .content .personal-info-item-title {
  2074. width: 40%;
  2075. color: #666;
  2076. display: flex;
  2077. align-items: center;
  2078. }
  2079. .user-page .content .personal-info-item-value {
  2080. width: 60%;
  2081. color: #000;
  2082. }
  2083. .user-page .content .personal-info-adit-btn {
  2084. text-align: center;
  2085. cursor: pointer;
  2086. }
  2087. .user-page .content .personal-info-adit-btn span{
  2088. display: inline-block;
  2089. margin-top: 40px;
  2090. font-family: 'Muli', sans-serif;
  2091. padding: 8px 13px;
  2092. background: rgba(29, 29, 31,0.9);
  2093. color: #fff;
  2094. }
  2095. .user-page .content .personal-info input, .user-page .content .personal-info select {
  2096. font-family: 'Muli', sans-serif;
  2097. font-size: 16px;
  2098. border: 1px solid rgba(29, 29, 31,.1);
  2099. box-shadow: inset 0 0 1px #cacaca;
  2100. padding: 5px 5px;
  2101. height: 30px;
  2102. }
  2103. .user-page .content .personal-info input::placeholder {
  2104. color: #c1c1c1;
  2105. }
  2106. .user-page .content .edit-active .personal-info-item {
  2107. padding: 10px 0;
  2108. }
  2109. .user-page .content .personal-info-item:nth-child(4) input {
  2110. width: 25%;
  2111. }
  2112. .user-page .content .personal-info-item:nth-child(4) select {
  2113. position: relative;
  2114. top: 2px;
  2115. }
  2116. .user-page .content .personal-info-item:nth-child(6) select {
  2117. width: 207px;
  2118. }
  2119. .user-page .content .personal-info-item:nth-child(7) select {
  2120. width: 207px;
  2121. }
  2122. .user-page .content .your-diets {
  2123. max-width: 680px;
  2124. margin: 0 auto;
  2125. background: #FCFCFE;
  2126. box-shadow: 0 0 11px rgba(202, 202, 202,.3);
  2127. }
  2128. .user-page .your-diets .header {
  2129. border-bottom: 1px solid #ccc;
  2130. display: flex;
  2131. font-family: "AvenirNextLTPro-Demi";
  2132. color: #1D1D1F;
  2133. padding: 20px 20px 10px;
  2134. }
  2135. .user-page .your-diets .no-diets-user-page {
  2136. text-align: center;
  2137. font-family: 'Muli', sans-serif;
  2138. padding: 17px 0;
  2139. text-transform: uppercase;
  2140. letter-spacing: 0.3px;
  2141. }
  2142. .user-page .your-diets .header .product {
  2143. width: 40%;
  2144. text-align: left;
  2145. }
  2146. .user-page .your-diets .header .duration {
  2147. width: 20%;
  2148. text-align: center;
  2149. }
  2150. .user-page .your-diets .header .days-left {
  2151. width: 20%;
  2152. text-align: center;
  2153. }
  2154. .user-page .your-diets .header .price {
  2155. width: 20%;
  2156. text-align: right;
  2157. }
  2158. .user-page .your-diets .items-wrapper {
  2159. font-family: 'Muli', sans-serif;
  2160. }
  2161. .user-page .your-diets .item {
  2162. display: flex;
  2163. border-bottom: 1px solid #ccc;
  2164. padding: 20px;
  2165. }
  2166. .user-page .your-diets .item-product {
  2167. width: 40%;
  2168. }
  2169. .user-page .your-diets .item-product-name {
  2170. margin-bottom: 0px;
  2171. }
  2172. .user-page .your-diets .item-product-img img{
  2173. width: 50%;
  2174. }
  2175. .user-page .your-diets .item-duration {
  2176. width: 20%;
  2177. text-align: center;
  2178. }
  2179. .user-page .your-diets .item-days-left {
  2180. width: 20%;
  2181. text-align: center;
  2182. }
  2183. .user-page .your-diets .item-price {
  2184. width: 20%;
  2185. text-align: right;
  2186. }
  2187. .user-page .write-us .write-message, .messages-page .write-message {
  2188. position: absolute;
  2189. bottom: 0;
  2190. display: inline-block;
  2191. background-color: #fff;
  2192. width: 100%;
  2193. display: flex;
  2194. align-items: center;
  2195. box-shadow: rgba(202, 202, 202, 0.3) 0px 0px 20px;
  2196. }
  2197. .user-page .write-us .write-input, .messages-page .write-input {
  2198. width: 90%;
  2199. text-align: center;
  2200. padding: 46px 0;
  2201. }
  2202. .messages-page .write-input {
  2203. padding: 30px 0;
  2204. }
  2205. .user-page .write-us .write-input input, .messages-page .write-input input{
  2206. width: 90%;
  2207. font-family: 'Muli', sans-serif;
  2208. border: none;
  2209. outline: none;
  2210. font-size: 16px;
  2211. padding: 10px;
  2212. border: 1px solid #ccc;
  2213. border-radius: 10px;
  2214. }
  2215. .user-page .write-us .write-btn, .messages-page .write-btn {
  2216. width: 13%;
  2217. }
  2218. .user-page .write-us .write-btn-wrapper, .messages-page .write-btn-wrapper {
  2219. display: inline-block;
  2220. background: rgba(29, 29, 31,1);
  2221. border-radius: 50%;
  2222. color: #fff;
  2223. padding: 15px;
  2224. cursor: pointer;
  2225. }
  2226. .user-page .chat, .messages-page .chat {
  2227. padding: 30px;
  2228. padding-top: 50px;
  2229. padding-bottom: 30px;
  2230. margin-top: -50px;
  2231. overflow-y: scroll;
  2232. height: 80vh;
  2233. }
  2234. .messages-page .chat {
  2235. padding-bottom: 70px;
  2236. }
  2237. .user-page .chat .user-message, .messages-page .chat .user-message {
  2238. display: flex;
  2239. margin-bottom: 30px;
  2240. }
  2241. .user-page .chat .admin-message, .messages-page .chat .admin-message {
  2242. display: flex;
  2243. flex-direction: row-reverse;
  2244. margin-bottom: 30px;
  2245. }
  2246. .user-page .chat .user-message .message-info, .messages-page .chat .user-message .message-info {
  2247. text-align: center;
  2248. }
  2249. .user-page .chat .admin-message .message-info, .messages-page .chat .admin-message .message-info {
  2250. text-align: center;
  2251. }
  2252. .user-page .chat .user-message .message-img, .messages-page .chat .user-message .message-img {
  2253. display: inline-block;
  2254. width: 60px;
  2255. height: 60px;
  2256. background: #FCFCFE;
  2257. border-radius: 50%;
  2258. overflow: hidden;
  2259. margin-bottom: 10px;
  2260. }
  2261. .user-page .chat .admin-message .message-img, .messages-page .chat .admin-message .message-img {
  2262. display: inline-block;
  2263. width: 60px;
  2264. height: 60px;
  2265. background: #FCFCFE;
  2266. border-radius: 50%;
  2267. overflow: hidden;
  2268. margin-bottom: 10px;
  2269. }
  2270. .user-page .chat .user-message .message-img img, .messages-page .chat .user-message .message-img img {
  2271. width: 120%;
  2272. position: relative;
  2273. right: 6px;
  2274. }
  2275. .user-page .chat .admin-message .message-img img, .messages-page .chat .admin-message .message-img img {
  2276. width: 120%;
  2277. position: relative;
  2278. right: 6px;
  2279. }
  2280. .user-page .chat .user-message .message-date, .messages-page .chat .user-message .message-date {
  2281. text-align: center;
  2282. font-size: 14px;
  2283. color: #919699;
  2284. }
  2285. .user-page .chat .admin-message .message-date, .messages-page .chat .admin-message .message-date {
  2286. text-align: center;
  2287. font-size: 14px;
  2288. color: #919699;
  2289. }
  2290. .user-page .chat .user-message .message-text-wrapper, .messages-page .chat .user-message .message-text-wrapper {
  2291. display: inline-block;
  2292. position: relative;
  2293. padding: 20px;
  2294. background: #fff;
  2295. margin-left: 30px;
  2296. margin-right: 92px;
  2297. border-radius: 10px;
  2298. font-family: 'Muli', sans-serif;
  2299. box-shadow: 0 0 10px rgba(202, 202, 202, .3);
  2300. }
  2301. .user-page .chat .admin-message .message-text-wrapper, .messages-page .chat .admin-message .message-text-wrapper {
  2302. display: inline-block;
  2303. position: relative;
  2304. padding: 20px;
  2305. background: #fff;
  2306. margin-left: 92px;
  2307. margin-right: 30px;
  2308. border-radius: 10px;
  2309. font-family: 'Muli', sans-serif;
  2310. box-shadow: 0 0 10px rgba(202, 202, 202, .3);
  2311. }
  2312. .user-page .chat .user-message .message-text-wrapper::before, .messages-page .chat .user-message .message-text-wrapper::before {
  2313. content: '';
  2314. position: absolute;
  2315. width: 0;
  2316. height: 0;
  2317. left: -15px;
  2318. top: 20px;
  2319. border-style: solid;
  2320. border-width: 10px 15px 10px 0;
  2321. border-color: transparent #fff transparent transparent;
  2322. }
  2323. .user-page .chat .admin-message .message-text-wrapper::before, .messages-page .chat .admin-message .message-text-wrapper::before {
  2324. content: '';
  2325. position: absolute;
  2326. width: 0;
  2327. height: 0;
  2328. right: -15px;
  2329. top: 20px;
  2330. border-style: solid;
  2331. border-width: 10px 0 10px 15px;
  2332. border-color: transparent transparent transparent #fff;
  2333. }
  2334. .user-page .chat .user-message .message-name, .messages-page .chat .user-message .message-name {
  2335. color: #1D1D1F;
  2336. font-size: 17px;
  2337. font-family: "AvenirNextLTPro-Demi";
  2338. margin-bottom: 10px;
  2339. }
  2340. .user-page .chat .admin-message .message-name, .messages-page .chat .admin-message .message-name {
  2341. color: #1D1D1F;
  2342. font-size: 17px;
  2343. font-family: "AvenirNextLTPro-Demi";
  2344. margin-bottom: 10px;
  2345. }
  2346. /* user-page */
  2347. /* messages-page */
  2348. .messages-page {
  2349. background: #FCFCFE;
  2350. padding: 50px 0;
  2351. min-height: 92vh;
  2352. }
  2353. .messages-page-wrapper {
  2354. max-width: 1024px;
  2355. margin: 0 auto;
  2356. display: flex;
  2357. box-shadow: 0 0 22px #cacaca;
  2358. }
  2359. .messages-page .select-dialog {
  2360. width: 25%;
  2361. background: #1D1D1F;
  2362. min-height: 85vh;
  2363. }
  2364. .messages-page .select-dialog .item {
  2365. display: flex;
  2366. padding: 20px;
  2367. font-family: 'Muli', sans-serif;
  2368. border-bottom: 1px solid #333;
  2369. transition: all 0.5s ease;
  2370. cursor: pointer;
  2371. }
  2372. .messages-page .select-dialog .item-img {
  2373. display: inline-block;
  2374. width: 50px;
  2375. height: 50px;
  2376. background: #FCFCFE;
  2377. border-radius: 50%;
  2378. overflow: hidden;
  2379. }
  2380. .messages-page .select-dialog .item-img img{
  2381. width: 120%;
  2382. position: relative;
  2383. top: 2px;
  2384. right: 5px;
  2385. }
  2386. .messages-page .select-dialog .item-name {
  2387. color: #fff;
  2388. margin: 5px 20px;
  2389. font-size: 15.9px;
  2390. }
  2391. .messages-page .dialog {
  2392. width: 75%;
  2393. position: relative;
  2394. background: #F1F1F5;
  2395. padding: 50px 0;
  2396. }
  2397. .messages-page .item-active{
  2398. background-color: #171719;
  2399. border-left: 3px solid #F1F1F5;
  2400. }
  2401. /* messages-page */