body .shopping-cart-container {
    margin-top: 145px;
}

.auto_margin {
    margin: auto;
}

.no_margin {
    margin: 0%;
}

.pointer {
    cursor: pointer;
}

img.left_arrow {
    margin-left: 8%;
    margin-top: 1%;
    transform: rotate(90deg);
}

div.grid_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1%;
    margin-left: 8%;
    margin-right: 8%;
    column-gap: 6%;
    grid-template-areas: "shopping_cart payment_info";
}

p.large_text {
    font-size: 30px;
    margin-top: 4%;
    margin-bottom: 4%;
}

div.shopping_cart {
    grid-area: "shopping_cart";
}

hr {
    border: 1px solid #A4A4A4;
    margin-top: 8%;
    margin-bottom: 8%;
}

div.shopping_cart_tile {
    display: grid;
    grid-template-columns: 3fr 3fr 4fr;
    justify-items: end;
}

img.product_image {
    width: 84%;
}

div.space_between_column1,
div.space_between_column2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2%;
}

div.space_between_column2 {
    margin-right: 10%;
    justify-items: end;
}

div.same_line_elements {
    display: flex;
}

img.rating {
    margin-top: 6%;
    align-self: center;
}

p.small_text {
    margin: 0%;
    margin-top: 2%;
    margin-left: 2%;
}

div.plus_minus_button {
    border: 1px solid #000000;
    height: 24px;
    width: 128px;
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;

}

div.plus_minus_button span {
    cursor: pointer;
}

div.suggestion_tiles {
    background: rgba(229, 229, 229, 0.6);
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 3fr 4fr;
    padding: 2%;
    margin-bottom: 4%;
}

button.small-button {
    height: 44px;
    align-self: flex-end;
}

div.payment_section {
    background: #E5E5E5;
    height: 97.5%;
    width: 100%;
}

div.payment_window {
    background: white;
    border: 1px solid #A4A4A4;
    margin: 10%;
    padding: 8%;
    padding-bottom: 4%;
}

h2.no_top_margin {
    margin-top: 0%;
    margin-bottom: 10%;
}

div.payment_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0%;
}

p.align_right {
    margin: 0%;
    text-align: right;
}

div.centered {
    margin-top: 10%;
}

button.big-button {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}