.title {
    margin-bottom: 3vh;
}

.card {
    margin: auto;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0.8rem;
    margin-top: 30px
}

@media(max-width:767px) {
    .card {
        margin: 2vh auto;
    }
}

.cart {
    background-color: #fff;
    padding: 3vh 4vh;
    border-radius: 0.8rem;
}

@media(max-width:767px) {
    .cart {
        padding: 3vh;
    }
}

.summary {
    background-color: whitesmoke;
    padding: 3vh;
    color: black;
    border-radius: 0.8rem;
}

@media(max-width:767px) {
    .summary {
        border-radius: 0.8rem;
    }
}

.summary .col-2,
.summary .col-10 {
    padding: 0;
}

.row {
    margin: 0;
}

.title b {
    font-size: 1.3rem;
}

.main {
    margin: 0;
    padding: 1.5vh 0;
    width: 100%;
}

.col-2,
.col {
    padding: 0 1vh;
}

a,
.close {
    padding: 0.3vh 1vh;
}

.close {
    font-size: 0.6rem;
}

img {
    width: 3rem;
}

.back-to-shop {
    margin-top: 2.5rem;
    overflow: hidden;
}

h5 {
    margin-top: 3vh;
    font-size: 1rem;
}

hr {
    margin-top: 1rem;
}

form {
    padding: 1.5vh 0;
}

select,
input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.2vh 0.8vh;
    margin-bottom: 3vh;
    font-size: 0.9rem;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

.btn {
    background-color: #000;
    border-color: #000;
    color: white;
    font-size: 0.6rem;
    margin-top: 3vh;
    padding: 1vh;
    border-radius: 0;
}

.btn:focus,
.btn:hover {
    box-shadow: none;
    outline: none;
    color: white;
    -webkit-box-shadow: none;
    -webkit-user-select: none;
    transition: none;
}

a,
a:hover {
    color: black;
    text-decoration: none;
}

#code {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.15)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}

button {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: white;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    margin: 5px;
    width: auto;
    height: auto;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: burlywood;
    z-index: -1;
    transition: all 250ms
}

button:hover {
    color: #e8e8e8;
}

button:hover::before {
    width: 100%;
}

.close {
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}