styles.css 51 KB

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