main {
    width: 80%;
    padding-top: 180px;
    padding-bottom: 180px;
    margin: auto;
}

h1 {
    display: flex;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
}

.info {
    display: flex;
    align-items: center;
    padding: 10px 0px 10px 0px;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 30px;
    margin-top: 30px;
}

.numbers {
    display: inline-block;
    line-height: 0px;
    border-radius: 50%;
    font-size: 18px;
    background-color: black;
    color: white;
}

.numbers p {
    display: inline-block;
    padding-top: 50%;
    padding-bottom: 50%;
    margin-left: 8px;
    margin-right: 8px;   
}

.info .text {
    padding-left: 8px;
}

#cart_items {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.cart_item {
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart_item h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

.cart_item p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.quantity {
    display: flex;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.quantity button {
    margin: 0 5px;
    border: none;
    background-color: white;
    cursor: pointer;
    font-weight: 400;
}

.remove_btn {
    border: none;
    font-family: "Open Sans", sans-serif;
    background-color: white;
    cursor: pointer;
    font-weight: 400;
    font-style: italic;
}

#total_price {
    display: flex;
    justify-content: end;
    padding: 20px 0px 20px 0px;
    font-family: "Open Sans", sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex-wrap: wrap;
    font-family: "Open Sans", sans-serif;
}

.name {
    display: flex;
    gap: 10px;
}

.name form {
    width: 100%;
}

.place {
    display: flex;
    gap: 10px;
}

.place form {
    width: 100%;
}

.card {
    display: flex;
    gap: 10px;
}

.card form {
    width: 100%;
}

input {
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin-bottom: 40px;
    width: 100%;
    padding: 8px;
    border-radius: 40px;
    border-color: #c4c4c4;
    border-width: 2px;
    border-style: solid;
}

.checkout_btn {
    display: inline-block;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    background-color: #BE884C;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    border-radius: 40px;
    text-align: center;
    margin-top: 40px;
}

.checkout_btn:hover {
    font-weight: 700;
}


@media (min-width: 1950px) {

    main {
        max-width: 1920px;
    }
}

@media (max-width: 768px) {
    .cart_item {
        flex-direction: column;
        align-items: start;
    }
}