product-details.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. /*========================================
  2. PRODUCT DETAILS PAGE STYLE
  3. =========================================*/
  4. .details-sub-name {
  5. font-size: 15px;
  6. }
  7. .details-gallery {
  8. position: relative;
  9. }
  10. .details-label-group {
  11. position: absolute;
  12. top: 20px;
  13. left: 20px;
  14. z-index: 1;
  15. display: -webkit-box;
  16. display: -ms-flexbox;
  17. display: flex;
  18. -webkit-box-orient: vertical;
  19. -webkit-box-direction: normal;
  20. -ms-flex-direction: column;
  21. flex-direction: column;
  22. }
  23. .details-label {
  24. font-size: 14px;
  25. padding: 6px 20px;
  26. margin-bottom: 6px;
  27. line-height: 13px;
  28. border-radius: 50px;
  29. text-transform: capitalize;
  30. text-align: center;
  31. color: var(--white);
  32. }
  33. .details-label:last-child {
  34. margin-bottom: 0px;
  35. }
  36. .details-label.off {
  37. background: var(--red);
  38. }
  39. .details-label.new {
  40. background: var(--black);
  41. }
  42. .details-label.sale {
  43. background: var(--orange);
  44. }
  45. .details-label.feat {
  46. background: var(--purple);
  47. }
  48. .details-label.rate {
  49. background: var(--yellow);
  50. }
  51. .details-preview {
  52. margin-bottom: 16px;
  53. }
  54. .details-preview li img {
  55. width: 100%;
  56. border-radius: 8px;
  57. }
  58. .details-thumb li {
  59. margin: 0px 8px;
  60. cursor: pointer;
  61. }
  62. .details-thumb li img {
  63. width: 100%;
  64. border-radius: 8px;
  65. border: 1px solid var(--white);
  66. }
  67. .details-thumb .slick-current img {
  68. border: 1px solid #5f6472;
  69. }
  70. .product-navigation {
  71. margin-bottom: 25px;
  72. padding: 20px 25px;
  73. border-radius: 8px;
  74. background: var(--white);
  75. display: -webkit-box;
  76. display: -ms-flexbox;
  77. display: flex;
  78. -webkit-box-align: center;
  79. -ms-flex-align: center;
  80. align-items: center;
  81. -webkit-box-pack: justify;
  82. -ms-flex-pack: justify;
  83. justify-content: space-between;
  84. }
  85. .product-navigation li a {
  86. color: var(--text);
  87. text-transform: capitalize;
  88. position: relative;
  89. transition: all linear .3s;
  90. -webkit-transition: all linear .3s;
  91. -moz-transition: all linear .3s;
  92. -ms-transition: all linear .3s;
  93. -o-transition: all linear .3s;
  94. }
  95. .product-navigation li a:hover {
  96. color: var(--primary);
  97. }
  98. .product-navigation li a:hover .product-nav-popup {
  99. visibility: visible;
  100. opacity: 1;
  101. }
  102. .product-nav-popup {
  103. position: absolute;
  104. top: 30px;
  105. left: 50%;
  106. z-index: 3;
  107. width: 100px;
  108. height: auto;
  109. visibility: hidden;
  110. opacity: 0;
  111. padding: 10px;
  112. border-radius: 8px;
  113. -webkit-transform: translateX(-50%);
  114. transform: translateX(-50%);
  115. background: var(--white);
  116. border: 1px solid var(--border);
  117. -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  118. box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  119. transition: all linear .3s;
  120. -webkit-transition: all linear .3s;
  121. -moz-transition: all linear .3s;
  122. -ms-transition: all linear .3s;
  123. -o-transition: all linear .3s;
  124. }
  125. .product-nav-popup::before {
  126. position: absolute;
  127. content: "";
  128. z-index: -1;
  129. top: -3px;
  130. left: 50%;
  131. width: 12px;
  132. height: 12px;
  133. border-radius: 3px;
  134. -webkit-transform: rotate(45deg) translateX(-50%);
  135. transform: rotate(45deg) translateX(-50%);
  136. background: var(--white);
  137. border-top: 1px solid var(--border);
  138. border-left: 1px solid var(--border);
  139. }
  140. .product-nav-popup img {
  141. width: 100%;
  142. }
  143. .product-nav-popup small {
  144. font-size: 14px;
  145. line-height: 18px;
  146. display: inline-block;
  147. }
  148. .details-content {
  149. padding: 35px 35px;
  150. border-radius: 8px;
  151. background: var(--white);
  152. }
  153. .details-name {
  154. font-size: 26px;
  155. line-height: 34px;
  156. margin-bottom: 5px;
  157. text-transform: capitalize;
  158. }
  159. .details-name a {
  160. color: var(--black);
  161. transition: all linear .3s;
  162. -webkit-transition: all linear .3s;
  163. -moz-transition: all linear .3s;
  164. -ms-transition: all linear .3s;
  165. -o-transition: all linear .3s;
  166. }
  167. .details-name a:hover {
  168. color: var(--primary);
  169. }
  170. .details-meta {
  171. margin-bottom: 12px;
  172. display: -webkit-box;
  173. display: -ms-flexbox;
  174. display: flex;
  175. -webkit-box-align: center;
  176. -ms-flex-align: center;
  177. align-items: center;
  178. -webkit-box-pack: start;
  179. -ms-flex-pack: start;
  180. justify-content: flex-start;
  181. flex-wrap: wrap;
  182. }
  183. .details-meta p {
  184. font-size: 13px;
  185. margin-right: 20px;
  186. white-space: wrap;
  187. text-transform: uppercase;
  188. color: var(--placeholder);
  189. }
  190. .details-meta span,
  191. .details-meta a {
  192. margin-left: 5px;
  193. color: var(--placeholder);
  194. }
  195. .details-meta a:hover {
  196. text-decoration: underline;
  197. color: var(--primary);
  198. }
  199. .details-rating {
  200. display: -webkit-box;
  201. display: -ms-flexbox;
  202. display: flex;
  203. -webkit-box-align: center;
  204. -ms-flex-align: center;
  205. align-items: center;
  206. -webkit-box-pack: start;
  207. -ms-flex-pack: start;
  208. justify-content: flex-start;
  209. margin-bottom: 15px;
  210. }
  211. .details-rating i,
  212. .details-rating a {
  213. font-size: 15px;
  214. margin-right: 3px;
  215. color: var(--gray);
  216. }
  217. .details-rating a {
  218. margin-left: 8px;
  219. white-space: nowrap;
  220. text-transform: capitalize;
  221. transition: all linear .3s;
  222. -webkit-transition: all linear .3s;
  223. -moz-transition: all linear .3s;
  224. -ms-transition: all linear .3s;
  225. -o-transition: all linear .3s;
  226. }
  227. .details-rating a:hover {
  228. color: var(--primary);
  229. text-decoration: underline;
  230. }
  231. .details-rating .active {
  232. color: var(--yellow);
  233. }
  234. .details-price {
  235. margin-bottom: 20px;
  236. }
  237. .details-price del {
  238. color: var(--red);
  239. margin-right: 25px;
  240. }
  241. .details-price span {
  242. color: var(--primary);
  243. white-space: nowrap;
  244. }
  245. .details-price span small {
  246. font-size: 14px;
  247. font-weight: 400;
  248. text-transform: capitalize;
  249. }
  250. .details-desc {
  251. margin-bottom: 25px;
  252. }
  253. .details-list-group {
  254. display: -webkit-box;
  255. display: -ms-flexbox;
  256. display: flex;
  257. -webkit-box-align: center;
  258. -ms-flex-align: center;
  259. align-items: center;
  260. -webkit-box-pack: center;
  261. -ms-flex-pack: center;
  262. justify-content: center;
  263. -webkit-box-pack: start;
  264. -ms-flex-pack: start;
  265. justify-content: flex-start;
  266. margin-bottom: 25px;
  267. }
  268. .details-list-group:last-child {
  269. margin-bottom: 0px;
  270. }
  271. .details-list-title {
  272. font-weight: 500;
  273. margin-right: 15px;
  274. color: var(--heading);
  275. text-transform: capitalize;
  276. }
  277. .details-tag-list {
  278. display: -webkit-box;
  279. display: -ms-flexbox;
  280. display: flex;
  281. -webkit-box-align: center;
  282. -ms-flex-align: center;
  283. align-items: center;
  284. -webkit-box-pack: center;
  285. -ms-flex-pack: center;
  286. justify-content: center;
  287. }
  288. .details-tag-list li {
  289. margin-right: 8px;
  290. }
  291. .details-tag-list li a {
  292. font-size: 14px;
  293. line-height: 12px;
  294. padding: 8px 10px;
  295. border-radius: 5px;
  296. letter-spacing: 0.3px;
  297. text-transform: capitalize;
  298. color: var(--text);
  299. background: var(--chalk);
  300. transition: all linear .3s;
  301. -webkit-transition: all linear .3s;
  302. -moz-transition: all linear .3s;
  303. -ms-transition: all linear .3s;
  304. -o-transition: all linear .3s;
  305. }
  306. .details-tag-list li a:hover {
  307. color: var(--white);
  308. background: var(--primary);
  309. }
  310. .details-share-list {
  311. display: -webkit-box;
  312. display: -ms-flexbox;
  313. display: flex;
  314. -webkit-box-align: center;
  315. -ms-flex-align: center;
  316. align-items: center;
  317. -webkit-box-pack: center;
  318. -ms-flex-pack: center;
  319. justify-content: center;
  320. }
  321. .details-share-list li {
  322. margin-right: 8px;
  323. }
  324. .details-share-list li a {
  325. width: 35px;
  326. height: 35px;
  327. font-size: 16px;
  328. line-height: 35px;
  329. border-radius: 50%;
  330. text-align: center;
  331. color: var(--text);
  332. background: var(--chalk);
  333. transition: all linear .3s;
  334. -webkit-transition: all linear .3s;
  335. -moz-transition: all linear .3s;
  336. -ms-transition: all linear .3s;
  337. -o-transition: all linear .3s;
  338. }
  339. .details-share-list li a:hover {
  340. color: var(--white);
  341. background: var(--primary);
  342. }
  343. .details-add-group {
  344. margin: 0;
  345. }
  346. .details-add-group .product-add,
  347. .details-add-group .action-input,
  348. .details-buy, .details-buy:hover {
  349. display:flex;
  350. padding: 10px 0px;
  351. color: var(--white);
  352. background: var(--black);
  353. border:1px solid var(--black);
  354. text-transform: uppercase;
  355. justify-content:center; align-items:center;
  356. }
  357. .details-buy i {margin-right: 5px;}
  358. .details-add-group .action-minus i,
  359. .details-add-group .action-plus i {
  360. background: var(--chalk);
  361. }
  362. .details-action-group {
  363. display: -ms-grid;
  364. /*display: grid;*/
  365. grid-gap: 15px;
  366. -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  367. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  368. position: relative;
  369. }
  370. .details-action-group button,
  371. .details-action-group a {
  372. padding: 10px 0px;
  373. color: var(--black);
  374. background: var(--white);
  375. border:1px solid #111;
  376. display: -webkit-box;
  377. display: -ms-flexbox;
  378. display: flex;
  379. -webkit-box-align: center;
  380. -ms-flex-align: center;
  381. align-items: center;
  382. -webkit-box-pack: center;
  383. -ms-flex-pack: center;
  384. justify-content: center;
  385. transition: all linear .3s;
  386. -webkit-transition: all linear .3s;
  387. -moz-transition: all linear .3s;
  388. -ms-transition: all linear .3s;
  389. -o-transition: all linear .3s;
  390. }
  391. .details-action-group button:hover,
  392. .details-action-group a:hover {
  393. color: var(--primary);
  394. }
  395. .details-action-group button i,
  396. .details-action-group a i {
  397. font-size: 16px;
  398. margin-right: 8px;
  399. }
  400. .details-action-group button span,
  401. .details-action-group a span {
  402. font-size: 14px;
  403. font-weight: 500;
  404. letter-spacing: 0.5px;
  405. text-transform: uppercase;
  406. }
  407. .details-wish.active {
  408. color: var(--white);
  409. background: var(--primary);
  410. }
  411. .details-wish.active:hover {
  412. color: var(--white);
  413. background: var(--primary);
  414. }
  415. .product-details-frame {
  416. padding: 50px;
  417. border-radius: 8px;
  418. margin-bottom: 30px;
  419. background: var(--white);
  420. }
  421. .product-details-frame:last-child {
  422. margin-bottom: 0px;
  423. }
  424. .frame-title {
  425. margin-bottom: 30px;
  426. text-transform: capitalize;
  427. }
  428. .tab-descrip {
  429. position: relative;
  430. }
  431. .tab-descrip ul {
  432. list-style: disc;
  433. margin-left: 20px;
  434. margin-top: 25px;
  435. }
  436. .tab-descrip ul li {
  437. margin-bottom: 8px;
  438. }
  439. .tab-descrip ul li:last-child {
  440. margin-bottom: 0px;
  441. }
  442. .tab-descrip img {
  443. width: 100%;
  444. border-radius: 8px;
  445. }
  446. .tab-descrip a {
  447. position: absolute;
  448. top: 50%;
  449. left: 50%;
  450. z-index: 2;
  451. width: 80px;
  452. height: 80px;
  453. font-size: 22px;
  454. line-height: 80px;
  455. border-radius: 50%;
  456. text-align: center;
  457. color: var(--white);
  458. background: rgba(15, 199, 86, 0.8);
  459. -webkit-transform: translate(-50%, -50%);
  460. transform: translate(-50%, -50%);
  461. -webkit-box-shadow: var(--primary-bshadow);
  462. box-shadow: var(--primary-bshadow);
  463. text-shadow: var(--primary-tshadow);
  464. }
  465. .table-bordered {
  466. margin-bottom: 0px;
  467. }
  468. .table-bordered th,
  469. .table-bordered td {
  470. padding: 12px 25px;
  471. text-align: left;
  472. }
  473. .table-bordered th {
  474. font-weight: 500;
  475. }
  476. .table-bordered td:last-child {
  477. border-right: 1px solid var(--border);
  478. }
  479. .review-item {
  480. padding: 45px 45px;
  481. border-radius: 8px;
  482. margin-bottom: 30px;
  483. background: var(--chalk);
  484. border: 1px solid var(--border);
  485. }
  486. .review-item:last-child {
  487. margin-bottom: 0px;
  488. }
  489. .review-media {
  490. margin-bottom: 15px;
  491. display: -webkit-box;
  492. display: -ms-flexbox;
  493. display: flex;
  494. -webkit-box-align: center;
  495. -ms-flex-align: center;
  496. align-items: center;
  497. -webkit-box-pack: start;
  498. -ms-flex-pack: start;
  499. justify-content: flex-start;
  500. }
  501. .review-avatar {
  502. margin-right: 15px;
  503. border-radius: 50%;
  504. border: 2px solid var(--primary);
  505. }
  506. .review-avatar img {
  507. width: 65px;
  508. border-radius: 50%;
  509. border: 2px solid var(--white);
  510. }
  511. .review-meta {
  512. text-transform: capitalize;
  513. }
  514. .review-meta a {
  515. color: var(--heading);
  516. text-transform: capitalize;
  517. transition: all linear .3s;
  518. -webkit-transition: all linear .3s;
  519. -moz-transition: all linear .3s;
  520. -ms-transition: all linear .3s;
  521. -o-transition: all linear .3s;
  522. }
  523. .review-meta a:hover {
  524. color: var(--primary);
  525. }
  526. .review-meta span {
  527. display: block;
  528. font-size: 15px;
  529. font-weight: 400;
  530. color: var(--text);
  531. }
  532. .review-meta span b {
  533. font-weight: 500;
  534. color: var(--primary);
  535. }
  536. .review-rating {
  537. margin-bottom: 10px;
  538. }
  539. .review-rating li {
  540. font-size: 16px;
  541. margin-right: 5px;
  542. color: var(--yellow);
  543. display: inline-block;
  544. }
  545. .review-desc {
  546. margin-bottom: 20px;
  547. }
  548. .review-reply {
  549. display: -webkit-box;
  550. display: -ms-flexbox;
  551. display: flex;
  552. -webkit-box-align: center;
  553. -ms-flex-align: center;
  554. align-items: center;
  555. -webkit-box-pack: start;
  556. -ms-flex-pack: start;
  557. justify-content: flex-start;
  558. }
  559. .review-reply input {
  560. width: 100%;
  561. padding: 7px 18px;
  562. border-radius: 6px;
  563. margin-right: 20px;
  564. background: var(--white);
  565. }
  566. .review-reply button {
  567. font-size: 15px;
  568. padding: 6px 15px;
  569. border-radius: 6px;
  570. color: var(--white);
  571. background: var(--primary);
  572. text-transform: capitalize;
  573. transition: all linear .3s;
  574. -webkit-transition: all linear .3s;
  575. -moz-transition: all linear .3s;
  576. -ms-transition: all linear .3s;
  577. -o-transition: all linear .3s;
  578. }
  579. .review-reply button:hover {
  580. background: var(--heading);
  581. }
  582. .review-reply button i {
  583. margin-right: 5px;
  584. }
  585. .review-reply-list {
  586. margin-left: 80px;
  587. margin-top: 35px;
  588. border-top: 1px solid var(--border);
  589. }
  590. .review-reply-item {
  591. padding: 30px 0px;
  592. border-bottom: 1px solid var(--border);
  593. }
  594. .review-reply-item:last-child {
  595. padding-bottom: 0px;
  596. border-bottom: none;
  597. }
  598. .review-form .btn {
  599. width: 100%;
  600. padding: 12px 30px;
  601. }
  602. .cre_box table {width:100%; margin-bottom:20px;}
  603. .cre_box table th {padding:6px 10px; background: #f3f4f5; border-top:1px solid #e1dfdf; border-right:1px solid #e1dfdf; text-align:center; word-break:break-all ; font-size: 15px; font-weight: 500; color: #6275a7;}
  604. .cre_box table th:first-of-type {border-left:1px solid #e1dfdf;}
  605. .cre_box table td {padding:6px 10px; border-right:1px solid var(--border)!important; word-break:keep-all;}
  606. .cre_box table td:first-of-type {border-left:1px solid var(--border)!important;}
  607. p, a {white-space:wrap;}
  608. @media (max-width: 991px) {
  609. .product-navigation {
  610. margin: 25px 0px;
  611. }
  612. }
  613. @media (max-width: 575px) {
  614. .details-content {
  615. padding: 20px;
  616. }
  617. .details-name {
  618. font-size: 22px;
  619. line-height: 30px;
  620. }
  621. .product-details-frame {
  622. padding: 20px;
  623. }
  624. .review-item {
  625. padding: 20px 15px;
  626. }
  627. .review-reply {
  628. -webkit-box-orient: vertical;
  629. -webkit-box-direction: normal;
  630. -ms-flex-direction: column;
  631. flex-direction: column;
  632. }
  633. .review-reply input {
  634. margin: 0px 0px 15px;
  635. }
  636. .review-reply-list {
  637. margin-left: 25px;
  638. }
  639. .star-rating label {
  640. margin: 0px 6px;
  641. }
  642. .details-meta a {display:inline;}
  643. }
  644. @media (min-width: 576px) and (max-width: 767px) {
  645. .review-reply-list {
  646. margin-left: 30px;
  647. }
  648. }
  649. .btn_group {display:flex; justify-content:space-between; align-items:center; padding: 0 35px;}
  650. .btn_group > * {width:49%;}
  651. .item_detail.inner-section {margin-top:30px;}
  652. .item_detail .container {border-top:1px solid var(--black);}
  653. .item_detail .nav-tabs {margin-bottom:0; padding: 60px 25px 0px;}
  654. .detail_rel.inner-section {margin-top:60px; padding-bottom:100px; padding-top:90px; background:#f5f6f7;}
  655. .detail_rel h2 {font-size:30px; font-family:inherit;}
  656. .detail_rel .product-label {top:10px; left:10px;}
  657. .detail_rel .product-wish {top:10px; right:10px;}
  658. .detail_rel .product-card {margin-bottom:40px;}
  659. .detail_rel .product-image:after {background:none;}
  660. .detail_rel .product-content {padding:10px;}
  661. .detail_rel .product-action button i {background:#ccc;}
  662. .detail_rel .product-action button i:hover {background:var(--black);}
  663. .details-gallery .slick-slide {height:auto;}
  664. .inner-section.detail.credit-item {margin-bottom:0;}