<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&amp;display=swap");
html {
  font-family: "Poppins";
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: calc(0.4rem + 1vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: calc(0.1rem + 1vh);
  }
}

body {
  font-family: "Poppins";
  font-weight: 400;
  color: #0c0908;
  line-height: 1.3;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins";
  font-weight: 700;
  margin: 0.3em 0;
}

h1 {
  font-size: 4.21rem; /* 67.36px */
}

h2 {
  font-size: 3.158rem; /* 50.56px */
}

h3 {
  font-size: 2.369rem; /* 37.92px */
}

h4 {
  font-size: 1.777rem; /* 28.48px */
}

h5 {
  font-size: 1.333rem; /* 21.28px */
}

small {
  font-size: 0.75rem; /* 12px */
}

small i {
  font-size: 1em !important;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
*, *::after, *::before {
  box-sizing: border-box;
}

body::before,
body::after {
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 10%;
}

body::before {
  background: #000000;
  filter: url(#noise);
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: #e1e1e1;
  scrollbar-gutter: ev;
}

::-webkit-scrollbar-thumb {
  background-color: #6e84de;
  border-radius: 10rem;
}

body {
  margin: 0;
  padding: 2rem 2rem;
  box-sizing: border-box;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background-color: #e6e6e6;
}
@media only screen and (min-width: 768px) {
  body {
    padding: 2rem 10%;
  }
}

::selection {
  background: rgba(2, 103, 192, 0.5);
}

a[target=_blank]:not(.noCss)::after {
  font-family: "Material Icons";
  content: "open_in_new";
  display: inline-flex;
  margin-left: 4px;
  font-size: 1em;
  color: inherit !important;
  position: absolute;
}

a:has(button) {
  text-decoration: none;
}

hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(12, 9, 8, 0.3);
}

.hrVertical {
  width: 0;
  height: 100%;
  border: none;
  border-right: 1px solid rgba(12, 9, 8, 0.3);
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(240, 240, 240, 0.7);
  border-radius: 4px;
  padding: 0.5rem;
  cursor: pointer;
  box-shadow: none;
  font-size: 1em;
  font-family: "Poppins";
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
button:hover {
  background: rgba(250, 250, 250, 0.7);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
}
button i {
  font-size: 1em !important;
}
button:has(.buttonPrimary) {
  display: none !important;
}

.buttonPrimary {
  height: 40px;
  background: rgb(103, 114, 229);
  font-weight: 500;
  font-size: 13px;
  color: white;
}
.buttonPrimary:hover {
  background: rgb(90, 100, 210);
}

nav {
  z-index: 10;
  width: 100%;
  height: fit-content;
  margin-bottom: 2rem;
  position: sticky;
  top: 1rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 1rem 2rem;
  gap: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(240, 240, 240, 0.7);
  backdrop-filter: blur(12px);
}
nav #navHamButton {
  cursor: poPoppins;
  color: #767676;
}
nav a {
  display: block;
  max-height: calc(100% + 0.7rem);
}
nav a .navLogo {
  display: none;
  max-height: 2.5rem;
  cursor: pointer;
  aspect-ratio: 1/1;
}
nav .searchBar {
  width: 100%;
  height: 3rem;
  background-color: rgba(204, 204, 204, 0.5);
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
}
nav ul li a {
  color: #767676;
  text-decoration: none;
  transition: border 1s;
  font-weight: 400;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}
nav ul li a:hover {
  color: #101010;
  font-weight: 500;
  border-bottom: 2px solid #0267c0;
}
nav ul #navCart a {
  font-size: 24px;
}
nav ul .navbarLinksText {
  position: absolute;
  width: 100%;
  overflow: hidden;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
  font-size: 2rem;
  background-color: #f0f0f0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  transition: height 0.5s, padding 0.5s;
}
nav ul .hamOpen {
  height: 15rem;
  padding: 1rem;
}
nav ul .hamClosed {
  height: 0%;
  padding: 0;
}
@media (min-width: 768px) {
  nav {
    height: 4rem;
  }
  nav #navHamButton {
    display: none;
  }
  nav a .navLogo {
    display: block;
  }
  nav .searchBar {
    width: 40%;
    height: 2rem;
  }
  nav ul {
    flex-direction: row;
    gap: 1rem;
  }
  nav ul .navbarLinksText {
    display: inline-flex;
    gap: 1rem;
  }
  nav ul .navbarLinksText {
    position: static;
    width: auto;
    overflow: visible;
    transform: none;
    display: inline-flex;
    flex-direction: row;
    font-size: 1rem;
    background: transparent;
    box-shadow: none;
    border: none;
  }
}

@keyframes fade-in {
  to {
    transform: translateY(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.active {
  background: rgba(2, 103, 192, 0.7);
  color: #f5f5f5;
  transition: background 0.3s;
}
.active:hover {
  background: rgba(2, 103, 192, 0.9);
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
}

.searchBar {
  position: relative;
  width: fit-content;
  height: 2rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  box-sizing: border-box;
  border-radius: 1rem;
  background-color: #ebebeb;
}
.searchBar button {
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}
.searchBar i {
  font-size: 1.2em;
  color: grey;
  position: absolute;
  left: 0.5rem;
}
.searchBar hr {
  height: calc(100% - 0.7em);
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-color: rgba(12, 9, 8, 0.3);
}
.searchBar input {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  border: none;
  border-radius: inherit;
  background-color: transparent;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  transition: outline 0.1s;
}
.searchBar input:hover {
  outline-color: rgba(0, 0, 0, 0.3);
  background-color: hsla(0, 0%, 0%, 0.02);
}
.searchBar input:focus {
  outline-color: #0267c0;
}

footer {
  margin-top: 4rem;
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background: rgba(12, 9, 8, 0.85);
  color: #f5f5f5;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15) inset;
}
footer .main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .main .left {
  display: flex;
  flex-direction: column;
  min-width: 400px;
  height: 100%;
  gap: 1rem;
}
footer .main .left .branding {
  display: flex;
  flex-direction: row;
  background: rgba(245, 245, 245, 0.1);
  padding: 2rem;
  border-radius: 1rem;
}
footer .main .left .branding img {
  max-height: 100%;
  object-fit: contain;
  padding: 0.3rem;
  padding-left: 0;
}
footer .main .left .branding span {
  height: fit-content;
}
footer .main .left .branding span h2,
footer .main .left .branding span h4 {
  font-size: 2.5rem;
  margin: 0;
  margin-bottom: 0.15rem;
}
footer .main .left .branding span h4 {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.7);
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .main .left .branding {
    flex-direction: column;
  }
  footer .main .left .branding img {
    max-width: 100px;
  }
  footer .main .left {
    min-width: 0;

    h2, h3, h4, ul {
      width: max-content;
    }
  }
}

footer .main .left .contactUs {
  display: flex;
  flex-direction: column;
  background: rgba(245, 245, 245, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}
footer .main .left .contactUs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
footer .main .left .contactUs ul li {
  font-weight: 300;
  color: rgba(245, 245, 245, 0.85);
}
footer .main .left .contactUs ul li a {
  text-decoration: none;
  color: currentColor;
  transition: color 0.15s;
}
footer .main .left .contactUs ul li a:hover {
  color: #0267c0;
}
footer .main .left .contactUs ul li span {
  color: rgba(245, 245, 245, 0.7);
}
footer .main .right {
  width: 100%;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: rgba(245, 245, 245, 0.7);
  background: rgba(117, 214, 255, 0.3);
  background: rgba(245, 245, 245, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-wrap: wrap;
}
footer .main .right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
footer .main .right ul li {
  font-weight: 300;
}
footer .main .right ul li a {
  text-decoration: none;
  color: currentColor;
  transition: color 0.15s;
}
footer .main .right ul li a:hover {
  color: rgba(245, 245, 245, 0.5);
}
footer .main .right ul &gt; li:nth-child(1) {
  color: rgba(245, 245, 245, 0.5);
}
@media (min-width: 1300px) {
  footer .main {
    flex-direction: row;
  }
  footer .main .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
}
footer hr {
  border-color: rgba(245, 245, 245, 0.3);
}
footer small {
  color: rgba(245, 245, 245, 0.5);
  font-weight: 300;
}

.hilight {
  background: #0267c0 !important;
  box-shadow: 0 0 2rem 0.3rem #0267c0;
}

.heroBackgroundGradients {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow-x: clip;
  overflow-y: visible;
}
.heroBackgroundGradients .gradientCircle {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(10rem);
  opacity: 0.1;
  background-color: #6e84de;
}
.heroBackgroundGradients .primary {
  background-color: rgb(2, 103, 192);
}
.heroBackgroundGradients .secondary {
  background-color: rgb(117, 214, 255);
}
.heroBackgroundGradients .accent {
  background-color: rgb(110, 132, 221);
}

.homeHero {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  flex-direction: column-reverse;
  gap: 2rem;
  opacity: 0;
  transform: translateY(4rem);
  animation: fade-in ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.homeHero .heroImgContained {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
}
.homeHero .heroImgContained img {
  width: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.homeHero .heroImgContained::after {
  display: none;
}
.homeHero .heroText {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.homeHero .heroText section {
  line-height: 3.7rem;
}
.homeHero .heroText section h1, .homeHero .heroText section h3 {
  margin: 0;
  font-size: 3.5rem;
}
.homeHero .heroText section h3 {
  font-size: 2rem;
}
.homeHero .heroText .heroCTA {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.homeHero .heroText .heroCTA .buttonWithIcon {
  width: 100%;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(235, 235, 235, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  cursor: poPoppins;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.homeHero .heroText .heroCTA .buttonWithIcon i {
  font-size: 6rem;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  gap: 0;
}
.homeHero .heroText .heroCTA .buttonWithIcon .text {
  display: flex;
  align-content: center;
  justify-content: center;
}
.homeHero .heroText .heroCTA .buttonWithIcon .text h5 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.homeHero .heroText .heroCTA .buttonWithIcon .text h5 span {
  font-family: "Poppins";
}
.homeHero .heroText .heroCTA .buttonWithIcon:hover {
  background-color: #f0f0f0;
  transform: translateY(-2%);
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.25);
}
.homeHero .heroText .heroCTA a:has(.buttonWithIcon) {
  width: 100%;
  text-decoration: none;
  color: currentColor;
}
@media (min-width: 900px) {
  .homeHero {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
  .homeHero .heroImgContained {
    max-width: 45%;
    overflow: visible;
    position: relative;
  }
  .homeHero .heroImgContained::after {
    display: block;
    content: "About Us";
    width: 25vw;
    position: absolute;
    padding-top: 0.5rem;
    padding-bottom: 15rem;
    padding-left: 1rem;
    right: 1px;
    bottom: -12rem;
    transform: translateX(100%);
    background-image: url(../images/Arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .homeHero .heroText section h1 {
    font-size: 4.21rem; /* 67.36px */
  }
  .homeHero .heroText section h3 {
    font-size: 2.369rem; /* 37.92px */
  }
}

.aboutUs {
  margin-top: 5rem;
  opacity: 0;
  transform: translateY(8rem);
  animation: fade-in ease;
  animation-timeline: view(70vh 20vh);
  animation-fill-mode: forwards;
}
.aboutUs h2 {
  margin: 0;
}
.aboutUs p {
  font-size: 120%;
}
@media (min-width: 768px) {
  .aboutUs {
    animation-timeline: view(70vh 20vh);
  }
}

.banner {
  width: 100%;
  max-height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(250, 250, 250, 0.7);
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15) inset;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.banner img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}

.filterMenu {
  width: 100%;
  min-height: 3rem;
  top: 10%;
  margin: 1rem 0;
  padding: 0.5rem;
  display: flex;
  align-content: center;
  gap: 0.5rem;
  background: rgba(250, 250, 250, 0.7);
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-x: clip;
}
.filterMenu button {
  padding: 0.5rem 0.7rem;
}

.productsList {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, 1fr);
  gap: 2rem 1rem;
  opacity: 0;
  transform: translateY(4rem);
  animation: fade-in ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.productsList .hidden {
  display: none;
}
.productsList .productsItem {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.productsList .productsItem:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
}
.productsList .productsItem:hover img {
  filter: brightness(100%);
}
.productsList .productsItem img {
  width: 100%;
  height: 85%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: filter 0.3s;
  aspect-ratio: 1/1;
}
.productsList .productsItem .productItemDetails {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.productsList .productsItem .productItemDetails .tags {
  width: 100%;
  height: 35%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.57rem;
}
.productsList .productsItem .productItemDetails .tags i {
  color: grey;
  font-size: 1.3em;
}
.productsList .productsItem .productItemDetails .tags .productTag {
  background: gainsboro;
  padding: 0.5em 0.7em;
  width: fit-content;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
}
.productsList .productsItem .productItemDetails .mainDetails {
  width: 100%;
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0 0.7rem 0.7rem 0.7rem;
}
.productsList .productsItem .productItemDetails .mainDetails h6 {
  margin: 0;
  font-size: 1em;
  font-weight: 400;
}
.productsList .productsItem .productItemDetails .mainDetails #productPrice {
  font-weight: 500;
  font-size: 1.1em;
}
.productsList .productsItem .productItemDetails .mainDetails #productPrice::before {
  content: "$";
}
.productsList a:has(.productsItem) {
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 700px) {
  .productsList {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fill, 1fr);
  }
  .productsList .productsItem {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 950px) {
  .productsList {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(auto-fill, 1fr);
  }
  .productsList .productsItem {
    width: 100%;
    height: 100%;
  }
}

.productInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 1rem;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  padding: 1rem;
  transition: height 0.3s;
}
.productInfo .images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.productInfo .images #imageBig {
  min-height: 23vh;
  max-height: 60vh;
  min-width: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.3rem;
}
.productInfo .images .imagesList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto-fill, 1fr);
  gap: 0.3rem;
}
.productInfo .images .imagesList img {
  width: 100%;
  cursor: pointer;
  border-radius: 0.3rem;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.productInfo .images .imagesList .activeImage {
  box-shadow: 0 0.3rem #0267c0;
  transition: box-shadow 0.3s;
}
.productInfo .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.3rem;
}
.productInfo .text section {
  display: flex;
  flex-direction: column;
}
.productInfo .text section h1 {
  font-size: 2.5em;
  margin: 0;
  font-weight: 600;
}
.productInfo .text section #productPrice {
  color: #0267c0;
  font-size: 2em;
}
.productInfo .text p {
  margin: 0;
}
.productInfo .text ul {
  margin: 0;
  padding: 0;
}
.productInfo .text ul li {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}
.productInfo .text button {
  width: 100%;
}
.productInfo .text button:hover {
  transform: translateY(-0.3rem);
}
@media (min-width: 768px) {
  .productInfo {
    display: flex;
    flex-direction: row;
    padding: 2rem;
  }
  .productInfo .images {
    width: 75%;
  }
  .productInfo .images #imageBig {
    min-height: 63vh;
  }
  .productInfo .images .imagesList {
    grid-template-columns: repeat(8, 1fr);
  }
  .productInfo .text {
    max-width: 25%;
    font-size: 1rem;
  }
}

.checkout {
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checkout .cart {
  height: 100%;
  max-height: 73vh;
  overflow-y: auto;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-radius: 1rem;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background: rgba(245, 245, 245, 0.7);
}
.checkout .cart .cartItem {
  width: 100%;
  max-height: 10rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  background: #e6e6e6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.checkout .cart .cartItem .details {
  max-width: 50%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.checkout .cart .cartItem .details img {
  max-height: 100%;
  max-width: 70%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.checkout .cart .cartItem .details div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checkout .cart .cartItem .details div h4 {
  font-size: 1.3rem;
}
.checkout .cart .cartItem .amount {
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.checkout .cart .cartItem .amount .amountInput {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: fit-content;
}
.checkout .cart .cartItem .amount .amountInput button, .checkout .cart .cartItem .amount .amountInput h4 {
  font-size: 1.3rem;
}
.checkout .cart .cartItem .closeButton {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}
.checkout .cart .cartItem .closeButton a {
  color: black;
  text-decoration: none;
}
.checkout .summary {
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-radius: 1rem;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background: rgba(245, 245, 245, 0.7);
}
.checkout .summary div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.checkout .summary div div {
  display: inline-flex;
  width: calc(100% - 20px);
}
.checkout .summary div #paypal-button-container, .checkout .summary div .discountInput {
  width: 100%;
}
.checkout .summary div a {
  display: inline-block;
  margin-left: 5px;
  height: 10px;
  width: 10px;
  text-decoration: none;
  color: gray;
  text-align: end;
  font-weight: bold;
  font-size: 14px;
}
.checkout .summary div a:hover {
  color: rgb(100, 50, 50);
}
.checkout .summary .buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.checkout .summary .buttons .discountInput {
  display: flex;
  flex-direction: row;
  background: #e1e1e1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.7rem;
  overflow: hidden;
}
.checkout .summary .buttons .discountInput input {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0.7rem 0 0 0.7rem;
  padding: 0.5rem;
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: 400;
}
.checkout .summary .buttons .discountInput input:focus {
  border: none;
  outline: none;
}
.checkout .summary .buttons .discountInput button {
  background: gainsboro;
  border-radius: 0;
  font-weight: 500;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.checkout .summary small {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.checkout .summary small i {
  font-size: 1em;
}
.checkout .hrVertical {
  height: auto;
  display: none;
}
@media (min-width: 1000px) {
  .checkout {
    flex-direction: row;
  }
  .checkout .cart {
    width: 70%;
  }
  .checkout .summary {
    width: 30%;
    min-width: 280px;
  }
}
.checkout .paypal-button &gt; .paypal-button-label-container {
  width: 100% !important;
}

.loginbutton {
  display: block;
  padding: 0;
}
.loginbutton a {
  display: block !important;
  margin: 0 !important;
  padding: 8px;
  width: 100% !important;
  height: 100% !important;
  text-align: center !important;
  color: white !important;
  text-decoration: none;
}

/*# sourceMappingURL=index.css.map */
</pre></body></html>