@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
button, input {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.card-2 {
  position: relative;
}

.card-2-detail {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 100%;
}

:root {
  --bg-shape-color:linear-gradient(120deg,  #343A4F, #0F1620) ;
  --lightblue: #4e4e4e;
  --darkblue: #222222;
  --text-color: #D5E1EF;
}

.wrapper {
  color: var(--text-color);
  border-radius: 40px;
  background-image: var(--bg-shape-color);
  overflow: hidden;
}

.productSpecifications {
  padding: 24px;
}

.overviewInfo {
  background-image: linear-gradient(176deg, var(--lightblue), var(--darkblue));
}

.productinfo {
  height: auto;
}

.productinfo img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

h1 {
  font-family: 'Michroma', sans-serif;
}

/* product specifications */
.productSpecifications {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.productSpecifications h4 {
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.productSpecifications p {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.5;
}

.checkoutButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-image: var(--bg-shape-color);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: -2px -2px 2px 0px rgba(80, 80, 80, 0.1), 2px 2px 3px 0px rgba(12, 12, 12, 0.3), inset 0px 0px 0px 2px rgba(80, 80, 80, 0.2);
          box-shadow: -2px -2px 2px 0px rgba(80, 80, 80, 0.1), 2px 2px 3px 0px rgba(12, 12, 12, 0.3), inset 0px 0px 0px 2px rgba(80, 80, 80, 0.2);
  margin-top: 30px;
  padding: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.priceTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
}

/* checkout button*/
a.preorder {
  outline: 0;
  border: 0;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-image: linear-gradient(85deg, #61c7ef, #4833fb);
  color: white;
  cursor: pointer;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
}

a.preorder:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.preorder p {
  padding: 8px 17px;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.buttonaction {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
/*# sourceMappingURL=card.css.map */