style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  1. @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
  2. @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');
  3. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swapp');
  4. * {
  5. font-family: 'Roboto', sans-serif;
  6. padding: 0;
  7. margin: 0;
  8. font-weight: 400;
  9. }
  10. html,body {
  11. display: flex;
  12. flex-direction: column;
  13. background-color: #ffffff;
  14. color: #343434;
  15. width: 100%;
  16. min-height: 100vh;
  17. height: auto !important;
  18. overflow-x: hidden;
  19. }
  20. ::-moz-selection { background: #333; color: #fff; }
  21. ::selection { background: #333; color: #fff; }
  22. .text-lighter {
  23. color: #959595;
  24. }
  25. .single-info-section a {
  26. /* color: #256ebb !important; */
  27. }
  28. @media screen and (min-width:1400px) {
  29. .container {
  30. max-width: 1200px;
  31. }
  32. }
  33. .bg-grey {
  34. background-color: #5C6D7A;
  35. color: #fff;
  36. }
  37. footer{
  38. margin-top: auto;
  39. }
  40. footer .header {
  41. text-transform: uppercase;
  42. letter-spacing: 2px;
  43. font-size: 22px;
  44. }
  45. img{
  46. width: 100%;
  47. }
  48. .navbar-brand img{
  49. max-width: 250px;
  50. }
  51. .toast-top-right {
  52. position: fixed;
  53. right: 10px;
  54. top: 50px;
  55. }
  56. .toast {
  57. padding: 10px;
  58. }
  59. .top {
  60. min-height: 600px;
  61. text-align: center;
  62. display: grid;
  63. place-items: center;
  64. }
  65. .inner {
  66. min-height: 250px;
  67. }
  68. .inner-sm {
  69. min-height: 100px;
  70. }
  71. .top .title {
  72. font-family: 'Montserrat';
  73. letter-spacing: .7px;
  74. text-transform: uppercase;
  75. }
  76. .top p {
  77. font-size: 19px;
  78. }
  79. strong, b {
  80. font-weight: 700;
  81. }
  82. .title {
  83. font-size: 40px;
  84. font-weight: 500;
  85. }
  86. .subtitle {
  87. font-size: 30px;
  88. font-weight: 500;
  89. }
  90. .header {
  91. font-size: 25px;
  92. font-weight: 500;
  93. }
  94. .subheader {
  95. font-size: 22px;
  96. font-weight: 500;
  97. }
  98. .promo {
  99. display: inline-block;
  100. background-color: #ffcc5b;
  101. padding: 5px;
  102. font-size: 21px;
  103. border: 1px dashed #333;
  104. border-bottom: none;
  105. }
  106. .fixed-btn {
  107. position: fixed;
  108. bottom: 0;
  109. left: 0;
  110. z-index: 100;
  111. }
  112. .dashed {
  113. border:1px dashed #333;
  114. }
  115. a {
  116. text-decoration: none;
  117. }
  118. p {
  119. font-size: 16px;
  120. margin-bottom: 3px;
  121. word-spacing: 0px;
  122. }
  123. .btn-pry {
  124. background-color: var(--pry-color);
  125. color: #fff !important;
  126. border-radius: 0;
  127. padding: 10px 20px;
  128. font-size: 17px;
  129. line-height: 34px;
  130. }
  131. .btn-outline-pry {
  132. border: 1px solid;
  133. border-color: var(--pry-color);
  134. color: var(--pry-color);
  135. border-radius: 0;
  136. padding: 10px 20px;
  137. font-size: 17px;
  138. line-height: 34px;
  139. }
  140. .btn-pry:hover, .btn-outline-pry:hover {
  141. transition: .5s;
  142. box-shadow: 0px 15px 15px rgb(11 28 91 / 10%);
  143. }
  144. .trademark {
  145. position: relative;
  146. white-space: nowrap;
  147. }
  148. .trademark:after {
  149. content: '®';
  150. position: absolute;
  151. top: -.1em;
  152. font-size: 50%;
  153. font-weight: 300;
  154. }
  155. .trademark-inline {
  156. padding-right: 0.5em;
  157. }
  158. .table-responsive.scrollable {
  159. overflow-x: auto !important;
  160. }
  161. .btn-outline-social {
  162. color: #000 !important;
  163. border:1px solid rgba(255,255,255,.8);
  164. padding: 12px 28px;
  165. font-size: 15px;
  166. background-color: #ffffff;
  167. display: flex;
  168. align-items: center;
  169. justify-content: center;
  170. white-space: nowrap;
  171. }
  172. .btn-outline-social img{
  173. width: 22px;
  174. height: 22px;
  175. object-fit: contain;
  176. }
  177. .btn-outline-social:hover {
  178. transition: .5s;
  179. box-shadow: 0px 15px 15px rgba(11, 28, 91, 0.101961);
  180. color: rgba(255,255,255,.8);
  181. }
  182. .social-login {
  183. display: flex;
  184. justify-content: space-between;
  185. gap: 20px;
  186. }
  187. .auth-divider {
  188. border-top:1px solid #ccc;
  189. margin-top: 40px;
  190. margin-bottom: 20px;
  191. display: grid;
  192. place-items: center
  193. }
  194. .auth-divider span {
  195. display: block;
  196. text-align: center;
  197. background-color: #ffffff;
  198. width: 200px;
  199. margin-top: -12px;
  200. }
  201. .password {
  202. border: 1px solid #ced4da;
  203. border-radius: .25rem;
  204. }
  205. .password input {
  206. height: 48px;
  207. width: 100%;
  208. padding: 12px;
  209. }
  210. .password input:focus{
  211. outline: 0;
  212. border: 0;
  213. }
  214. .form-control {
  215. border-radius: 0;
  216. font-size: 16px;
  217. color: #000000;
  218. height: 38px;
  219. }
  220. .form-control.form-control-sm {
  221. border-radius: 0;
  222. font-size: 14px;
  223. color: #000000;
  224. height: 32px;
  225. }
  226. .form-group label {
  227. font-size: 13px;
  228. font-weight: 500 !important;
  229. }
  230. .checker {
  231. display: block;
  232. position: relative;
  233. margin-bottom: 0;
  234. padding-left: 25px;
  235. font-size: 17px;
  236. line-height: 26px;
  237. cursor: pointer;
  238. -webkit-user-select: none;
  239. -moz-user-select: none;
  240. -ms-user-select: none;
  241. user-select: none;
  242. }
  243. .checker input[type="checkbox"] {
  244. position: absolute;
  245. opacity: 0;
  246. cursor: pointer;
  247. height: 0;
  248. width: 0;
  249. left: 3px;
  250. top: 50%;
  251. transform: translateY(-50%);
  252. }
  253. .checker input[type="radio"] {
  254. position: absolute;
  255. opacity: 0;
  256. cursor: pointer;
  257. }
  258. .checkmark.checkbox{
  259. position: absolute;
  260. top: 2px;
  261. left: 0;
  262. height: 20px;
  263. width: 20px;
  264. background-color: #fff;
  265. border:1px solid #ccc;
  266. }
  267. .checkmark.radio{
  268. position: absolute;
  269. top: 50%;
  270. transform: translateY(-50%);
  271. left: 0;
  272. height: 20px;
  273. width: 20px;
  274. background-color: #fff;
  275. border:1px solid #ccc;
  276. border-radius: 50%;
  277. }
  278. .checker:hover input ~ .checkmark {
  279. background-color: #ccc;
  280. }
  281. .checker input:checked ~ .checkmark {
  282. background-color: #256ebb;
  283. border:1px solid #ccc;
  284. }
  285. .checker:hover .checkmark.checkbox {
  286. background-color: #ccc;
  287. }
  288. .checker.checked .checkmark {
  289. background-color: #256ebb;
  290. border:1px solid #ccc;
  291. }
  292. .checkmark:after {
  293. content: "";
  294. position: absolute;
  295. display: none;
  296. }
  297. .checker input:checked ~ .checkmark:after, .checker.checked .checkmark:after {
  298. display: block;
  299. }
  300. .checker .checkbox:after, .checker.checked .checkbox::after {
  301. left: 7px;
  302. top: 4px;
  303. width: 5px;
  304. height: 10px;
  305. border: solid white;
  306. border-width: 0 3px 3px 0;
  307. -webkit-transform: rotate(45deg);
  308. -ms-transform: rotate(45deg);
  309. transform: rotate(45deg);
  310. }
  311. .checker .radio:after {
  312. top: 2px;
  313. left: 2px;
  314. width: 14px;
  315. height: 14px;
  316. border-radius: 50%;
  317. background: #256ebb;
  318. }
  319. .header {
  320. font-size: 38px;
  321. font-weight: 500;
  322. width: 70%;
  323. letter-spacing: -2px
  324. }
  325. .thumbnails {
  326. margin-top: 10px;
  327. }
  328. .add-img {
  329. width: 60px;
  330. height: 60px;
  331. margin-bottom: 10px;
  332. margin-right: 10px;
  333. display: grid;
  334. place-items:center;
  335. background: #fff;
  336. overflow: hidden;
  337. border: 2px solid #eee;
  338. }
  339. .additional {
  340. display: flex;
  341. width: 100%;
  342. }
  343. .additional_images {
  344. height: 50px;
  345. object-fit: contain;
  346. }
  347. .add-img.active {
  348. border-color: var(--pry-color);
  349. }
  350. .zoom {
  351. display: block;
  352. position: relative;
  353. cursor: zoom-in;
  354. }
  355. @media screen and (min-width:992px) {
  356. .singleProduct {
  357. position: sticky;
  358. top: 10px;
  359. }
  360. }
  361. .singleProduct span {
  362. height: 500px;
  363. width: 100%;
  364. margin-bottom: 0;
  365. display: grid;
  366. place-items: center;
  367. }
  368. .selectedImage {
  369. height: 460px;
  370. object-fit: contain;
  371. }
  372. .product-title {
  373. font-size: 40px;
  374. font-weight: 600;
  375. font-family: 'Nunito Sans', sans-serif;
  376. letter-spacing: 10px;
  377. text-transform: uppercase;
  378. }
  379. .text-pry {
  380. color: var(--pry-color);
  381. }
  382. .header-cart {
  383. position: relative;
  384. }
  385. .cart-qty {
  386. position: absolute;
  387. height: 22px;
  388. width: 22px;
  389. font-size: .45em;
  390. display: grid;
  391. place-items: center;
  392. border-radius: 100%;
  393. background-color: var(--pry-color);
  394. color: #fff;
  395. bottom: -10px;
  396. right: -8px;
  397. }
  398. .qty {
  399. display: flex;
  400. width: auto;
  401. }
  402. .qty > * {
  403. display: block;
  404. height: 45px;
  405. width: 45px;
  406. display: grid;
  407. place-items:center;
  408. text-align: center;
  409. border:1px solid #eee;
  410. }
  411. .qty input {
  412. border-inline:none;
  413. }
  414. .qty a {
  415. font-size: 20px;
  416. font-weight: 400;
  417. color: #000000;
  418. }
  419. /* [moe] [url]:not([show]) {
  420. left:0;
  421. right:0;
  422. max-width: 25%;
  423. margin: auto !important;
  424. padding: 30px;
  425. border-radius: 5px;
  426. border: 1px solid #ddd;
  427. position: fixed;
  428. top:50%;
  429. transform: translateY(-50%);
  430. z-index: 100;
  431. }
  432. [moe][normal] [url]:not([show]) {
  433. position: fixed;
  434. top: 10%;
  435. max-height: 88vh;
  436. overflow-y: auto;
  437. overflow-x: hidden;
  438. left: 0;
  439. width: 500px;
  440. transform: none;
  441. } */
  442. .accordion-button:focus {
  443. box-shadow: none !important;
  444. }
  445. .accordion-button {
  446. border-bottom: 1px solid #eee;
  447. color: var(--pry-color);
  448. }
  449. .accordion-button.collapsed {
  450. border-bottom: none;
  451. }
  452. .form-group {
  453. margin-bottom: 15px;
  454. }
  455. .label {
  456. font-size: 20px;
  457. }
  458. .h-fill {
  459. height: 100vh;
  460. }
  461. .w-content {
  462. width: 55.8%;
  463. }
  464. .w-summary {
  465. width: 45%;
  466. background-color: #fafafa;
  467. }
  468. .w-summary-sm {
  469. width: 35%;
  470. background-color: #fafafa;
  471. }
  472. .checkout-links {
  473. font-size: 13px;
  474. color: #737373;
  475. font-weight: 400;
  476. }
  477. .checkout-links.active {
  478. font-weight: 500;
  479. color: #000000;
  480. }
  481. .selector {
  482. position: relative;
  483. }
  484. .select-dropdown {
  485. position: absolute;
  486. top: 50%;
  487. inset-inline-end: 1px;
  488. display: flex;
  489. align-items: center;
  490. justify-content: center;
  491. pointer-events: none;
  492. width: 3rem;
  493. height: 30%;
  494. transform: translateY(-50%);
  495. border-left:1px solid #ccc;
  496. }
  497. .selector label {
  498. position: absolute;
  499. top: 4px;
  500. left: 12px;
  501. inset-inline-end: 1px;
  502. pointer-events: none;
  503. -webkit-user-select: none;
  504. user-select: none;
  505. font-size: 13px;
  506. color: #696969;
  507. }
  508. .selector select, .selector input {
  509. padding-top: 20px;
  510. }
  511. .hidden {
  512. display: none;
  513. }
  514. .selector .clear-field {
  515. padding-top: .375rem;
  516. }
  517. .selector .form-control {
  518. border-radius: 5px;
  519. font-size: 15px;
  520. }
  521. .selector .form-control:focus {
  522. box-shadow: none;
  523. }
  524. .btn-checkout {
  525. background-color: var(--pry-color);
  526. border-color: var(--pry-color);
  527. font-weight: 500;
  528. }
  529. h6 {
  530. font-weight: 400;
  531. color: #000;
  532. }
  533. .pp-container {
  534. height: 70px;
  535. width: 70px;
  536. border-radius: 10px;
  537. border:1px solid #ccc;
  538. position: relative;
  539. background-color: #ffffff;
  540. }
  541. .pp-container img {
  542. height: 70px;
  543. width: 100%;
  544. object-fit: contain;
  545. }
  546. .pp-container span {
  547. position: absolute;
  548. top: -12px;
  549. right: -12px;
  550. height: 20px;
  551. width: 20px;
  552. display: grid;
  553. place-items: center;
  554. border-radius: 100%;
  555. background-color: #777;
  556. font-size: 12px;
  557. color: #fff;
  558. }
  559. .cards {
  560. max-width: 100px;
  561. }
  562. .payment-card {
  563. background-image: url(/img/cards.png);
  564. background-position: 4px 6px;
  565. background-size: 50px;
  566. background-repeat: no-repeat;
  567. padding-left: 60px;
  568. height: 50px;
  569. }
  570. .payment-card.visa {
  571. background-position: 4px -40px;
  572. }
  573. .payment-card.visa_electron {
  574. background-position: 4px -86px;
  575. }
  576. .payment-card.mastercard {
  577. background-position: 4px -132px;
  578. }
  579. .payment-card.maestro {
  580. background-position: 4px -179px;
  581. }
  582. .payment-card.discover {
  583. background-position: 4px -226px;
  584. }
  585. .payment-card.amex, .payment-card.american_express {
  586. background-position: 4px -274px;
  587. }
  588. .no-box:focus {
  589. box-shadow: none;
  590. }
  591. .bg-pry {
  592. background-color: var(--pry-color);
  593. color: #fff;
  594. }
  595. .info-card .subtitle {
  596. font-size: 25px;
  597. }
  598. .text-light-sec {
  599. color: #ffbdbd;
  600. }
  601. .my-account-nav {
  602. width: 100%;
  603. }
  604. .my-account-nav span {
  605. display: none;
  606. }
  607. .my-account-nav a {
  608. display: block;
  609. width: 100%;
  610. padding-block: 15px;
  611. border-bottom: 1px solid #ccc;
  612. color: #343434;
  613. }
  614. .my-account-nav a.active {
  615. color: var(--pry-color);
  616. border-color: var(--pry-color);
  617. font-weight: bold;
  618. }
  619. .moe-icon {
  620. font-size: 35px;
  621. line-height: 20px;
  622. color: var(--pry-color);
  623. }
  624. .cart-flex {
  625. display: flex;
  626. }
  627. .cart-pp-container {
  628. height: 100px;
  629. width: 100px;
  630. border-radius: 10px;
  631. border: 1px solid #ccc;
  632. }
  633. .cart-pp-container img {
  634. height: 100px;
  635. object-fit: contain;
  636. }
  637. .crt-mg {
  638. margin-right: 20px;
  639. }
  640. /* ADMIN */
  641. /*.main-row {
  642. display: flex;
  643. flex-wrap: nowrap;
  644. margin-right: -15px;
  645. margin-left: -15px;
  646. }*/
  647. .main-row > .sidebar {
  648. width: 250px;
  649. min-width: 250px;
  650. }
  651. .main-row > .sidebar li a {
  652. color: #333;
  653. }
  654. .main-row > .sidebar li a.active {
  655. color: var(--pry-color);
  656. }
  657. .parsed-record {
  658. overflow-x: hidden;
  659. }
  660. .select2-close-mask{
  661. z-index: 2099;
  662. }
  663. .select2-dropdown{
  664. z-index: 3051;
  665. }
  666. .select2-container {
  667. width: 100% !important;
  668. }
  669. .select2-container--default .select2-selection--multiple {
  670. border: solid #d3cfcf 1px;
  671. outline: 0;
  672. min-height: 30px;
  673. border-radius: 0;
  674. }
  675. .navbar-light .navbar-nav .nav-link {
  676. padding: 12px 16px;
  677. font-weight: 500;
  678. }
  679. .navbar-light .navbar-nav .nav-link.active {
  680. background-color: var(--pry-color);
  681. color: #fff;
  682. }
  683. .card .card-header h4 {
  684. font-size: 16px;
  685. }
  686. .table {
  687. border: 1px solid #ddd;
  688. }
  689. .table thead tr th {
  690. /* background-color: #e3eaf3;
  691. font-weight: 500;*/
  692. }
  693. .table>:not(:first-child) {
  694. border-top: none;
  695. }
  696. .w-200 {
  697. width: 200px;
  698. }
  699. td.fit {
  700. width: 0;
  701. min-width: fit-content;
  702. }
  703. .fa-switch {
  704. font-size: 24px;
  705. }
  706. /* ADMIN */
  707. @media screen and (max-width:1599px) {
  708. .social-login {
  709. flex-direction: column;
  710. gap:10px;
  711. }
  712. }
  713. @media screen and (max-width:991px) {
  714. .info-card .title {
  715. font-size: 35px;
  716. }
  717. .info-card .subtitle {
  718. font-size: 25px;
  719. }
  720. .w-content, .w-summary-sm {
  721. width: 100%;
  722. }
  723. .w-summary-sm {
  724. background-color: #ffffff !important;
  725. }
  726. .my-account-nav {
  727. border: 1px solid #ddd;
  728. padding: 5px 15px;
  729. margin-bottom: 15px;
  730. position: relative;
  731. }
  732. .my-account-nav span {
  733. display: block;
  734. position: absolute;
  735. top:7px;
  736. right: 15px;
  737. font-weight: bold;
  738. font-size: 24px;
  739. }
  740. .my-account-nav a {
  741. display: none;
  742. border-bottom: none;
  743. }
  744. .my-account-nav a.active {
  745. display: block;
  746. }
  747. }
  748. @media screen and (max-width:767px) {
  749. .top {
  750. min-height: 400px;
  751. }
  752. .top.inner {
  753. min-height: 250px;
  754. }
  755. .top.inner-sm {
  756. min-height: 120px;
  757. }
  758. .top .title {
  759. font-size: 35px;
  760. }
  761. .pp-container {
  762. height: 50px;
  763. width: 50px;
  764. }
  765. .pp-container img {
  766. height: 50px;
  767. }
  768. [moe] [url]:not([show]) {
  769. left:0;
  770. right:0;
  771. max-width: 80%;
  772. margin: auto !important;
  773. padding: 30px;
  774. border-radius: 5px;
  775. border: 1px solid #ddd;
  776. position: fixed;
  777. top:50%;
  778. transform: translateY(-50%);
  779. z-index: 100;
  780. }
  781. [moe][normal] [url]:not([show]) {
  782. position: fixed;
  783. top: 10%;
  784. max-height: 88vh;
  785. overflow-y: auto;
  786. overflow-x: hidden;
  787. left: 0;
  788. width: 500px;
  789. transform: none;
  790. }
  791. }
  792. @media screen and (max-width:575px) {
  793. .promo {
  794. font-size: 16px;
  795. }
  796. }
  797. .width-45px {
  798. min-width: 45px;
  799. max-width: 45px;
  800. }
  801. .width-200px {
  802. min-width: 200px;
  803. max-width: 200px;
  804. }
  805. .width-100px {
  806. min-width: 100px;
  807. max-width: 100px;
  808. }
  809. .fw-500 {
  810. font-weight: 500;
  811. }
  812. .text-sm {
  813. font-size: 80%;
  814. }
  815. .bg-aliceblue {
  816. background: aliceblue;
  817. }
  818. .tbd {
  819. color: red !important;
  820. position: relative;
  821. }
  822. .tbd::after {
  823. color: red !important;
  824. content: '';
  825. position: absolute;
  826. left: calc(100% + 3px);
  827. }
  828. .page-item.active .page-link {
  829. background-color: var(--pry-color);
  830. border-color: var(--pry-color);
  831. }
  832. tr.cancelled-order td {
  833. background-color: rgba(255, 154, 154, 0.4);
  834. }
  835. .pill-count {
  836. background-color: rgba(255, 154, 154, 0.4);
  837. padding: 3px 5px;
  838. border-radius: 10px;
  839. margin-left: 3px;
  840. white-space: nowrap;
  841. }
  842. .sticky-note {
  843. white-space: nowrap;
  844. max-width: 230px;
  845. overflow: hidden;
  846. text-overflow: ellipsis;
  847. }