product-details.css 15 KB

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