style.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. /* общие стили */
  2. @font-face {
  3. font-family: 'Open Sans';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: url('../fonts/OpenSans-Regular.ttf');
  7. }
  8. @font-face {
  9. font-family: 'Open Sans';
  10. font-style: normal;
  11. font-weight: 500;
  12. src: url('../fonts/OpenSans-Medium.ttf');
  13. }
  14. @font-face {
  15. font-family: 'Open Sans';
  16. font-style: normal;
  17. font-weight: 600;
  18. src: url('../fonts/OpenSans-SemiBold.ttf');
  19. }
  20. @font-face {
  21. font-family: 'Open Sans';
  22. font-style: normal;
  23. font-weight: 700;
  24. src: url('../fonts/OpenSans-Bold.ttf');
  25. }
  26. *{
  27. margin: 0;
  28. padding: 0;
  29. box-sizing: border-box;
  30. font-family: 'Open Sans', sans-serif;
  31. }
  32. .container {
  33. margin-left: auto;
  34. margin-right: auto;
  35. width: 1440px;
  36. }
  37. .open-logo {
  38. width: 150px;
  39. }
  40. /* шапка */
  41. header {
  42. z-index: 1;
  43. position: fixed;
  44. left: 0;
  45. top: 0;
  46. height: 60px;
  47. width: 100%;
  48. padding-top: 10px;
  49. background: #fff;
  50. box-shadow: 0px 4px 25px rgba(205, 205, 205, 0.25);
  51. }
  52. .header__container {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. margin-left: 40px;
  57. margin-right: 40px;
  58. }
  59. header ul {
  60. /* margin-right: 50px; */
  61. list-style: none;
  62. display: flex;
  63. justify-content: space-between;
  64. }
  65. header ul li {
  66. margin-left: 27px;
  67. }
  68. header a {
  69. text-decoration: none;
  70. font-size: 14px;
  71. font-weight: 400;
  72. color: #000;
  73. }
  74. header ul .link_active {
  75. margin-left: 0;
  76. padding-top: 2px;
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: space-between;
  80. }
  81. header ul .link_active img {
  82. position: relative;
  83. top: 14px;
  84. }
  85. header ul .link_active a{
  86. font-weight: 600;
  87. color: #4c555e;
  88. }
  89. /* фильтры заказов */
  90. .filters-container {
  91. width: 1146px;
  92. margin-right: auto;
  93. margin-left: auto;
  94. margin-top: 95px;
  95. display: flex;
  96. justify-content: space-between;
  97. flex-wrap: wrap;
  98. }
  99. .filter p {
  100. font-size: 14px;
  101. }
  102. .filter input,
  103. .filter select {
  104. width: 247px;
  105. height: 36px;
  106. margin-top: 6px;
  107. padding-left: 10px;
  108. border: 1px solid #C4C4C4;
  109. border-radius: 3px;
  110. font-weight: 400;
  111. font-size: 14px;
  112. }
  113. .filter select {
  114. padding-left: 5px;
  115. }
  116. .filter #dateFrom,
  117. .filter #dateTo {
  118. width: 103px;
  119. }
  120. .filter input::placeholder {
  121. color: #C4C4C4;
  122. }
  123. select option{
  124. padding: 10px 10px;
  125. color:#0066FF;
  126. display: block;
  127. }
  128. /* таблица с заказами */
  129. .orders_table {
  130. width: 1360px;
  131. margin-top: 40px;
  132. margin-left: auto;
  133. margin-right: auto;
  134. }
  135. .orders_table-container {
  136. min-height: 69vh;
  137. }
  138. .orders_table ul {
  139. width: 100%;
  140. list-style: none;
  141. display: flex;
  142. justify-content: space-between;
  143. }
  144. .orders_table .heading {
  145. border-bottom: 1px solid #E5E5E5;
  146. padding-left: 10px;
  147. padding-right: 10px;
  148. }
  149. .orders_table .heading li {
  150. font-weight: 700;
  151. font-size: 14px;
  152. padding-bottom: 16px;
  153. }
  154. .orders_table .order {
  155. border: 1px solid transparent;
  156. padding-top: 15px;
  157. padding-bottom: 15px;
  158. border-bottom: 1px solid #E5E5E5;
  159. padding: 15px 10px;
  160. }
  161. .orders_table .order li {
  162. font-weight: 400;
  163. font-size: 14px;
  164. }
  165. .orders_table .order:hover {
  166. border: 1px solid #000;
  167. border-radius: 4px;
  168. cursor: pointer;
  169. }
  170. .orders_table .heading_num,
  171. .orders_table .order_num {
  172. width: 65px;
  173. }
  174. .orders_table .heading_status,
  175. .orders_table .order_status {
  176. width: 100px;
  177. }
  178. .orders_table .order .order_status {
  179. font-weight: 600;
  180. font-size: 14px;
  181. color: #27AE60;
  182. }
  183. .orders_table .order_status .green_circle {
  184. display: inline-block;
  185. margin-right: 5px;
  186. height: 8px;
  187. width: 8px;
  188. border-radius: 5px;
  189. background: #27AE60;
  190. }
  191. .orders_table .heading_date,
  192. .orders_table .order_date {
  193. width: 120px;
  194. text-align: center;
  195. }
  196. .orders_table .order_date p {
  197. margin-bottom: 5px;
  198. margin-top: 5px;
  199. }
  200. .orders_table .heading_duration,
  201. .orders_table .order_duration {
  202. width: 120px;
  203. }
  204. .orders_table .heading_tariff,
  205. .orders_table .order_tariff {
  206. width: 95px;
  207. }
  208. .orders_table .order .order_tariff {
  209. font-weight: 600;
  210. font-size: 14px;
  211. color: #A0A0A0;
  212. }
  213. .orders_table .order_tariff .gray_circle {
  214. display: inline-block;
  215. margin-right: 5px;
  216. height: 8px;
  217. width: 8px;
  218. border-radius: 5px;
  219. background: #A0A0A0;
  220. }
  221. .orders_table .heading_cust,
  222. .orders_table .order_cust {
  223. width: 130px;
  224. }
  225. .orders_table .heading_exec,
  226. .orders_table .order_exec {
  227. width: 110px;
  228. }
  229. .orders_table .heading_car,
  230. .orders_table .order_car {
  231. width: 95px;
  232. }
  233. .orders_table .heading_total,
  234. .orders_table .order_total {
  235. width: 80px;
  236. text-align: end;
  237. }
  238. .orders_table .footing {
  239. display: none;
  240. padding-top: 40px;
  241. }
  242. .text-bold {
  243. font-weight: 700 !important;
  244. }
  245. .orders_table .rate {
  246. color: #27AE60;
  247. }
  248. .orders_table .footing a {
  249. font-size: 14px;
  250. color: #0066FF;
  251. text-decoration: none;
  252. }
  253. .orders_table .footing .wishes {
  254. font-weight: 400;
  255. color: #9D9D9D;
  256. }
  257. .order_total {
  258. padding-right: 14px;
  259. }
  260. .order_car {
  261. padding-left: 2px;
  262. }
  263. .empty-list {
  264. width: auto;
  265. height: 614px;
  266. text-align: center;
  267. vertical-align: 100%;
  268. vertical-align: middle;
  269. }
  270. .empty-list p {
  271. line-height: 614px;
  272. font-weight: 400;
  273. font-size: 14px;
  274. }
  275. /* переключение страниц */
  276. .pages {
  277. margin-left: auto;
  278. margin-right: auto;
  279. display: flex;
  280. justify-content: space-between;
  281. }
  282. .pages p {
  283. font-weight: 400;
  284. font-size: 14px;
  285. }
  286. .pages .total {
  287. margin-top: 15px;
  288. }
  289. .pages .back {
  290. margin-right: 40px;
  291. text-decoration: none;
  292. font-weight: 600;
  293. font-size: 14px;
  294. color: #0066FF;
  295. }
  296. .pages .back.disabled {
  297. color: #A6A6A6;
  298. }
  299. .pages .next {
  300. width: 103px;
  301. height: 35px;
  302. background: linear-gradient(226.01deg, #00A4FF -13.24%, #0076C7 119.18%);
  303. border: none;
  304. cursor: pointer;
  305. border-radius: 6px;
  306. font-weight: 700;
  307. font-size: 14px;
  308. color: #fff;
  309. }
  310. .pages .next.disabled {
  311. background: #A6A6A6;
  312. }
  313. /* подвал */
  314. footer {
  315. height: fit-content;
  316. width: 100%;
  317. margin-top: 55px;
  318. padding-top: 15px;
  319. padding-bottom: 15px;
  320. background: #4c555e;
  321. }
  322. footer .container {
  323. display: flex;
  324. align-items: center;
  325. }
  326. footer ul {
  327. margin-left: auto;
  328. list-style: none;
  329. display: flex;
  330. justify-content: space-between;
  331. align-items: center;
  332. }
  333. footer ul li {
  334. margin-left: 20px;
  335. }
  336. footer a {
  337. text-decoration: none;
  338. font-size: 14px;
  339. font-weight: 400;
  340. color: #fff;
  341. }
  342. /* SELECT */
  343. .select {
  344. position: relative;
  345. display: block;
  346. min-width: 220px;
  347. width: 100%;
  348. min-width: 247px;
  349. max-height: 36px;
  350. margin-top: 6px;
  351. }
  352. .select_not_active {
  353. z-index: -1;
  354. }
  355. .select__head {
  356. width: 100%;
  357. max-width: 100%;
  358. border: 1px solid #C4C4C4;
  359. border-radius: 3px;
  360. padding: 8px 10px;
  361. font-size: 14px;
  362. line-height: 18px;
  363. cursor: pointer;
  364. }
  365. .select__head::after {
  366. width: 9px;
  367. height: 6px;
  368. background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgOSA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDQuNSA1TDggMSIgc3Ryb2tlPSIjQTZBNkE2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K") ;
  369. position: absolute;
  370. right: 10px;
  371. bottom: 50%;
  372. transform: translateY(50%);
  373. content: '';
  374. display: block;
  375. transition: .2s ease-in;
  376. }
  377. .select__head.open::after {
  378. width: 9px;
  379. height: 2px;
  380. background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIyIiB2aWV3Qm94PSIwIDAgOSAyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDQuNSAxTDggMSIgc3Ryb2tlPSIjQTZBNkE2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K") ;
  381. }
  382. .select__list {
  383. display: none;
  384. position: absolute;
  385. top: 100%;
  386. left: 0;
  387. right: 0;
  388. background: #fff;
  389. border: 1px solid #C4C4C4;
  390. border-bottom-right-radius: 3px;
  391. border-bottom-left-radius: 3px;
  392. margin-top: 5px;
  393. max-height: 205px;
  394. overflow-x: hidden;
  395. overflow-y: auto;
  396. margin: 0;
  397. padding: 0;
  398. font-size: 14px;
  399. scrollbar-color: dark;
  400. scrollbar-width: thin;
  401. overscroll-behavior: contain;
  402. }
  403. .select__list::-webkit-scrollbar {
  404. width: 7px;
  405. background-color: #F8F9FA;
  406. padding: 5px;
  407. }
  408. .select__list::-webkit-scrollbar-thumb {
  409. border-radius: 10px;
  410. background-color: #D9D9D9;
  411. }
  412. .select__list .select__item {
  413. position: relative;
  414. padding: 10px 12px;
  415. cursor: pointer;
  416. list-style-type: none;
  417. }
  418. .select__list .select__item:hover {
  419. background-color: rgba(224, 229, 231, 0.5);
  420. }
  421. .select__list div {
  422. max-width: 106px;
  423. border-bottom: 1px solid #C4C4C4;
  424. margin-left: 12px;
  425. }
  426. .menu-burger__header {
  427. display: none;
  428. }
  429. .header_nav {
  430. display: flex;
  431. }
  432. .header_nav ul {
  433. height: 26px;
  434. }
  435. .logo_hidden, .user_image_hidden, .user {
  436. display: none;
  437. }
  438. .line_hidden {
  439. display: none;
  440. height: 1px;
  441. width: 106px;
  442. background: #C4C4C4;
  443. margin-bottom: 16px;
  444. }
  445. div.scrollmenu {
  446. overflow: auto;
  447. white-space: nowrap;
  448. }
  449. div.scrollmenu a {
  450. display: inline-block;
  451. color: white;
  452. text-align: center;
  453. padding: 14px;
  454. text-decoration: none;
  455. }
  456. .fixedcol {
  457. background-color: white;
  458. position: sticky;
  459. left: -1px;
  460. }
  461. main {
  462. margin-top: 120px;
  463. }
  464. .main h1 {
  465. font-style: normal;
  466. font-weight: 700;
  467. font-size: 14px;
  468. line-height: 19px;
  469. color: #4c555e;
  470. margin-bottom: 40px;
  471. }
  472. .main ul{
  473. margin-top: 40px;
  474. list-style-type: none;
  475. }
  476. .main li {
  477. padding-top: 15px;
  478. border-top: 1px solid #E5E5E5;
  479. padding-bottom: 15px;
  480. display: flex;
  481. justify-content: space-between;
  482. font-weight: 400;
  483. font-size: 14px;
  484. color: #0066FF;
  485. cursor: pointer;
  486. }
  487. .main li:last-child {
  488. border-bottom: 1px solid #E5E5E5;
  489. }
  490. .main .circle {
  491. width: 8px;
  492. height: 8px;
  493. display: inline-block;
  494. border-radius: 8px;
  495. margin-right: 5px;
  496. }
  497. .main .green {
  498. color: #27AE60;
  499. }
  500. .main .yellow {
  501. color: #F2C94C;
  502. }
  503. .main .red {
  504. color: #EE1010;
  505. }
  506. .main .green span {
  507. background: #27AE60;
  508. }
  509. .main .yellow span {
  510. background: #F2C94C;
  511. }
  512. .main .red span {
  513. background: #EE1010;
  514. }
  515. .mainTwo {
  516. margin-left: 200px;
  517. width: 472px;
  518. }
  519. .mainTwo h1 {
  520. font-style: normal;
  521. font-weight: 700;
  522. font-size: 16px;
  523. line-height: 19px;
  524. color: #000000;
  525. }
  526. .mainTwoThree li {
  527. padding-top: 15px;
  528. padding-bottom: 15px;
  529. display: flex;
  530. justify-content: space-between;
  531. font-weight: 600;
  532. font-size: 14px;
  533. cursor: pointer;
  534. border-bottom: 1px solid #E5E5E5;
  535. color: #000000;
  536. }
  537. .mainTwoThree ul{
  538. margin-top: 30px;
  539. list-style-type: none;
  540. }
  541. .mainTwoThree .font {
  542. font-weight: bold;
  543. text-align: right;
  544. }
  545. .mainTwoThree .poz {
  546. text-align: right;
  547. }
  548. .mainThree {
  549. width: 281px;
  550. }
  551. .mainThree h1 {
  552. font-style: normal;
  553. font-weight: 700;
  554. font-size: 16px;
  555. line-height: 19px;
  556. }
  557. .btn {
  558. background: #4c555e;
  559. color: #FFFFFF;
  560. border: none;
  561. border-radius: 6px;
  562. padding: 8px 28px;
  563. font-weight: 700;
  564. font-size: 14px;
  565. margin-left: auto;
  566. display: block;
  567. margin-top: 40px;
  568. }
  569. .mainTwoThree {
  570. display: flex;
  571. flex-direction: row;
  572. gap: 287px;
  573. margin-top: 40px;
  574. }
  575. .email {
  576. color: #0066FF;
  577. }
  578. .accordion-item__trigger .link-item{
  579. color: #0066FF;
  580. }
  581. .files-item a {
  582. color: #0066FF;
  583. text-decoration: none;
  584. }
  585. .accordion-item {
  586. font-size: 14px;
  587. padding: 0 7px;
  588. border-top: 1px solid #E5E5E5;
  589. border-bottom: 1px solid #E5E5E5;
  590. border-left: 1px solid #FFFFFF;
  591. border-right: 1px solid #FFFFFF;
  592. }
  593. .accordion-item__trigger {
  594. display: flex;
  595. justify-content: space-between;
  596. margin-top: 15px;
  597. margin-bottom: 15px;
  598. cursor: pointer;
  599. }
  600. .accordion-item--active .accordion-item__content {
  601. display: block;
  602. }
  603. .accordion-item--active {
  604. border: 1px solid black;
  605. border-radius: 4px;
  606. }
  607. .accordion-item__content {
  608. display: none;
  609. }
  610. .btn-centered {
  611. margin-right: auto;
  612. margin-left: auto;
  613. margin-bottom: 40px;
  614. }
  615. .files {
  616. width: 315px;
  617. margin-left: 86px;
  618. margin-top: 46px;
  619. }
  620. .files-item {
  621. display: flex;
  622. justify-content: space-between;
  623. margin-bottom: 15px;
  624. }
  625. .nonedisplay {
  626. display: none;
  627. }