checkout.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*========================================
  2. CHECKOUT PAGE STYLE
  3. =========================================*/
  4. .chekout-coupon {
  5. width: 600px;
  6. margin: 45px auto 5px;
  7. text-align: center;
  8. }
  9. .checkout-charge {
  10. width: 600px;
  11. margin: 0 auto;
  12. }
  13. .checkout-charge ul {
  14. border-top: 3px solid var(--black);
  15. }
  16. .checkout-charge ul li {
  17. padding: 15px 15px;
  18. display: -webkit-box;
  19. display: -ms-flexbox;
  20. display: flex;
  21. -webkit-box-align: center;
  22. -ms-flex-align: center;
  23. align-items: center;
  24. -webkit-box-pack: center;
  25. -ms-flex-pack: center;
  26. justify-content: center;
  27. -webkit-box-pack: justify;
  28. -ms-flex-pack: justify;
  29. justify-content: space-between;
  30. border-bottom: 1px solid var(--border);
  31. }
  32. .checkout-charge ul li:last-child {
  33. border-bottom: none;
  34. }
  35. .checkout-charge ul li:last-child span {
  36. font-size: 18px;
  37. font-weight: 500;
  38. color: var(--primary);
  39. }
  40. .checkout-charge ul li span {
  41. font-weight: 500;
  42. color: var(--heading);
  43. text-transform: capitalize;
  44. }
  45. .checkout-charge ul li span small {
  46. font-size: 14px;
  47. font-weight: 400;
  48. margin-left: 3px;
  49. }
  50. .checkout-check {
  51. display: -webkit-box;
  52. display: -ms-flexbox;
  53. display: flex;
  54. -webkit-box-align: start;
  55. -ms-flex-align: start;
  56. align-items: flex-start;
  57. -webkit-box-pack: start;
  58. -ms-flex-pack: start;
  59. justify-content: flex-start;
  60. margin-bottom: 25px;
  61. margin-top: 50px;
  62. }
  63. .checkout-check input {
  64. width: 15px;
  65. height: 15px;
  66. margin-right: 10px;
  67. margin-top: 4px;
  68. cursor: pointer;
  69. }
  70. .checkout-check label {
  71. line-height: 22px;
  72. }
  73. .checkout-check label a {
  74. color: var(--primary);
  75. }
  76. .checkout-check label a:hover {
  77. text-decoration: underline;
  78. }
  79. .checkout-proced .btn {
  80. width: 100%;
  81. }
  82. .table-action .view i,
  83. .table-action .trash i {
  84. background: var(--chalk);
  85. }
  86. @media (max-width: 767px) {
  87. .chekout-coupon,
  88. .checkout-charge {
  89. width: 100%;
  90. }
  91. .checkout-check {
  92. margin-top: 15px;
  93. }
  94. }
  95. .checkout-part .coupon-btn {color:var(--black);}