#emptyCart {
    width: 45%;
    margin: auto;
    text-align: center;
    margin-top: 5%;
}

#emptyCart>img {
    display: block;
    width: 35%;
    margin: auto;
    margin-bottom: 15px;
}

#emptyCart>button {
    margin: 16px 0px;
    background-color: #fc2779;
    padding: 10px 50px;
    border-radius: 5px;
    border: 0px;
    cursor: pointer;
}

button>a {
    color: white;
}

#cartPage {
    width: 98%;
    background-color: white;
    display: flex;
    margin: -3% 0 2% 0;
    border-radius: 20px;
}

#orderDetails {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

#order {
    width: 25%;
    display: flex;
}

#order>p {
    font-size: 15px;
}

#cartPrice {
    text-decoration: underline;
}

#cartPrice>p {
    margin-right: 10px;
}

#container1 {
    width: 45%;
    height: auto;
    gap: 20px;
    padding: 20px;
}

#container1>div {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
}

#payment {
    width: 55%;
    height: 100%;
    padding: 25px;
}

#offersHeading {
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 0 0 10px 0;
}

#information {
    height: 280px;
    font-size: 14px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

#gift {
    width: 66%;
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
}

#gift>p {
    margin-top: 5px;
}

#input>input {
    padding: 7px;
    margin: 0 0 0 10px;
    margin-right: -3px;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

#input * {
    border: 0px;
}

#input>button {
    padding: 7px 20px;
    color: white;
    background-color: black;
    border-radius: 5px;
    cursor: pointer;
}

#priceHeading {
    width: 16%;
    display: flex;
    justify-content: space-between;
    text-decoration: underline;
    margin: 15px 0 10px 0;
}

#priceDetails {
    padding: 5px;
    background-color: white;
}

.row {
    width: 47%;
    display: flex;
    justify-content: space-around;
    margin: 8px 0;
}

.col {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-left: -25px;
}

#totalAmount {
    font-weight: bolder;
}

#final {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
    border: 1px solid lightgray;
}

#final>a:first-child {
    display: flex;
    justify-content: space-around;
    width: 30%;
    color: #1f1c23;
}

#two {
    text-decoration: underline;
}

#final>a:last-child {
    width: 90%;
    text-align: center;
    color: white;
    background-color: #1c1f23;
    border-radius: 3.5px;
}