/* Variables */

:root {
  --primary: #5469d4;
  --border-color: #e6e6e6;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-content: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #f0f0f0;
  color: rgb(48, 49, 61);
}


.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}

/* Buttons and links */
button {
  background: var(--primary);
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}

button:hover {
  filter: contrast(115%);
}

button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}

.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: var(--primary);
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: var(--primary);
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
    min-width: initial;
  }
}

.container {
  width: 80vw;
  height: 90vh;
  align-self: center;
  /* box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
        0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07); */
  /* border-radius: 7px; */
  display: flex;
  background-color: #fff;
}

.hero {
  width: 40%;
  height: 100%;
  background-image: url(background.jpeg);
  background-size: cover;
  position: relative;
  padding: 1rem;
}

.hero .overlay {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 0;
}

.hero * {
  position: relative;

  color: #fff;
}

.logo {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: 2.35rem;
  margin: 3rem 0;
}

.hero p {
  font-weight: 100;
  margin: 2rem 0;
}

.info {
  flex-grow: 1;
  padding: 2rem;
}

.hero ul {
  /* list-style-type: none; */
  /* Remove default bullets */
  padding-left: 20px;
  /* Add some left padding for spacing */
}

/* Style for list items */
.hero li {
  position: relative;
  font-weight: lighter;
  /* Make li items a positioning context for ::before */
  /* margin-bottom: 5px; Add some vertical spacing between items */
}

/* Style for checkmark */
.hero li::before {
  /* content: '\2605'; */
  /* Unicode checkmark character */
  color: #fff;
  /* Color of the checkmark */
  font-size: 18px;
  /* Adjust the size of the checkmark */
  position: absolute;
  /* Position it absolutely within the li */
  left: -20px;
  top: -5px;
  z-index: 1;
}

.plans {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.plan {
  width: calc(33.333333% - 0.3rem * 2);
  user-select: none;
  cursor: pointer;
  /*   min-height:100px; */
  box-shadow: 1px 1px 10px #c1c1c1;
}

.plan--name {
  padding: 1rem;
  height: 80px;
  display: flex;
  align-items: center;
}

.plan button {
  background-color: #5469d4;
  border: none;
  color: #FFF;
  padding: 1rem;
  width: 100%;
  font-weight: bold;
  border-radius: 0;
}



label {
  flex-grow: 1;

}

.plan.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

#consumerID,
#country {

  padding: 12px;
  border: 1px solid var(--border-color);
}

.flex {
  display: flex;
}

.dir-column {
  flex-direction: column;
}

.grow-1 {
  flex-grow: 1;
}

.gap-1 {
  gap: 0.75rem;
}

.label {
  font-size: 0.93rem;
  margin-bottom: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33.333333%;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}


/* table */

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

table * {
  position: relative;
}

table td,
table th {
  padding-left: 8px;
}

table thead tr {
  height: 60px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
}

table tbody tr {
  height: 48px;
  border-bottom: 1px solid #E3F1D5;
}

table tbody tr:last-child {
  border: 0;
}

table td,
table th {
  text-align: left;
}

table td.l,
table th.l {
  text-align: right;
}

table td.c,
table th.c {
  text-align: center;
}

table td.r,
table th.r {
  text-align: center;
}

@media screen and (max-width: 35.5em) {
  table {
    display: block;
  }

  table>*,
  table tr,
  table td,
  table th {
    display: block;
  }

  table thead {
    display: none;
  }

  table tbody tr {
    height: auto;
    padding: 8px 0;
  }

  table tbody tr td {
    padding-left: 45%;
    margin-bottom: 12px;
  }

  table tbody tr td:last-child {
    margin-bottom: 0;
  }

  table tbody tr td:before {
    position: absolute;
    font-weight: 700;
    width: 40%;
    left: 10px;
    top: 0;
  }

  table tbody tr td:nth-child(1):before {
    content: "Code";
  }

  table tbody tr td:nth-child(2):before {
    content: "Stock";
  }

  table tbody tr td:nth-child(3):before {
    content: "Cap";
  }

  table tbody tr td:nth-child(4):before {
    content: "Inch";
  }

  table tbody tr td:nth-child(5):before {
    content: "Box Type";
  }
}

.qty--input {
  width: 2rem;
  text-align: center;
  height: 2rem;
}

.plan--select {
  height: 2rem;
}

.text--center {
  text-align: center;
}