body {
    background: sienna;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0;
}
.title {
    margin-bottom: 5vh;
}
.card {
    margin: auto;
    max-width: 950px;
    width: 90%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .card {
        margin: 3vh auto;
    }
}
.cart {
    background-color: blanchedalmond;
    padding: 4vh 5vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}
@media (max-width: 767px) {
    .cart {
        padding: 4vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem;
    }
}
.summary {
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 4vh;
    color: rgb(65, 65, 65);
}
@media (max-width: 767px) {
    .summary {
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem;
    }
}
.summary .col-2, .summary .col-10 {
    padding: 0;
}
.row {
    margin: 0;
}
.title b {
    font-size: 1.5rem;
}
.main {
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}
.col-2, .col {
    padding: 0 1vh;
}
a {
    padding: 0 1vh;
}
.close {
    margin-left: auto;
    font-size: 0.7rem;
    cursor: pointer;
}
img {
    width: 3.5rem;
}
.back-to-shop {
    margin-top: 4.5rem;
}
h5 {
    margin-top: 4vh;
}
hr {
    margin-top: 1.25rem;
}
form {
    padding: 2vh 0;
}
select, input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
.btn {
    background-color: #000;
    border-color: #000;
    color: white;
    width: 100%;
    font-size: 0.7rem;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0;
}
.btn:focus {
    box-shadow: none;
    outline: none;
    color: white;
    transition: none;
}
.btn:hover {
    color: white;
}
a {
    color: black;
}
a:hover {
    color: black;
    text-decoration: none;
}
#code {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253), rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}



   /* Styling for square size buttons */
.size-buttons .btn-square {
    display: inline-block;
    border-radius: 5px;
    background-color: black;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 15px 20px;
    width: auto;
    height: 40px;
    transition: background-color 0.3s, border-color 0.3s;
    margin: 5px;
    cursor: pointer;
}

/* Active state when the button is selected */
.size-buttons .btn-square.active {
    background-color: #f4a261;
    border-color: #f4a261;
}

/* Hover state for the button */
.size-buttons .btn-square:hover {
    background-color: #e76f51;
    border-color: #e76f51;
}

/* From Uiverse.io by absoluteSTrange */ 
button {
  padding: 17px 40px;
  border-radius: 10px;
  border: 0;
  background-color: rgb(0, 0, 0);
  letter-spacing: 1.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  /* box-shadow: rgb(201, 46, 70) 0px 10px 0px 0px; */
  color: hsl(0, 0%, 100%);
  cursor: pointer;
}

button:hover {
  /* box-shadow: rgb(201, 46, 70) 0px 7px 0px 0px; */
}

button:active {
  /* background-color: rgb(255, 56, 86); */
  /*50, 168, 80*/
  /* box-shadow: rgb(201, 46, 70) 0px 0px 0px 0px; */
  /* transform: translateY(5px);
  transition: 200ms; */
}
