/* ------- */

.content {
    position: relative;
    margin-top: 25vh;
    height: auto;
    margin-bottom: 25vh;
    width: 100vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
}

.checkout-form-out {
    position: sticky;
}

@media (max-width: 900px) {
    .content {
        flex-direction: column;
        margin-top: 10vh;
    }
    .user-information {
        margin-top: 7.5vh;
    }
}

.cancel-btn {
    width: 120px;
    height: 48px;
    align-self: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
}

.cancel-btn .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.cancel-btn ion-icon {
    margin-right: .75rem;
    font-size: 1.5rem;
}

.save-btn .text {
    font-size: 1.15rem;
    font-weight: 600;
}

input {
    width: 100%;
    height: 3rem;
    border: 1px solid #e1e1e1;
    padding: 0 1rem;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.name-input,
.city-input {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.country-input {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    margin-bottom: 1.5rem;
}

#inputCountry {
    margin-top: .3rem;
    width: 100%;
    background-color: #fff;
    font-family: "Raleway", sans-serif;
    text-align: left;
    border: 1px solid #e1e1e1;
    padding: 0 1rem;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    color: var(--second-color);
    height: 3rem;
    font-weight: 500;
    appearance: none;
    /* Entfernt das standardmäßige Dropdown-Icon */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.dropdown-icon {
    font-size: 1.5rem;
    /* Größe des Icons */
    color: var(--second-color);
    /* Farbe des Icons */
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: 3px;
    font-weight: normal;
    /* margin-right des Icons */
    transform: translateY(-50%);
    pointer-events: none;
    /* Verhindert, dass das Icon klickbar ist */
}

.address-addition-input,
.city-input {
    margin-bottom: 1.5rem;
}

.personal-information-title,
.address-information-title {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--second-color);
    letter-spacing: 2.25px;
}

.input-text {
    font-weight: 500;
    font-size: .85rem;
}

#E-Mail,
#Vorname,
#Nachname,
#inputLine1,
#inputLine2,
#inputPostalCode,
#inputCity,
.phone-input-container {
    margin-top: .5rem;
}

.input-text-required::after {
    content: " *";
    color: red;
    font-weight: bold;
    font-size: 1.2em;
}

.email-input {
    margin-bottom: 1.5rem;
    height: auto;
}

.firstname-input,
.lastname-input,
.postal-code,
.city-name-input {
    width: 48%;
    /* so dass beide Eingabefelder nebeneinander passen */
}

.pac-container {
    z-index: 10000;
    border: 1px solid #ddd;
    background-color: #fff;
}

.pac-item {
    font-size: 14px;
    padding: 10px;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #e0e0e0;
}

.pac-icon {
    display: none;
}

.pac-item-query {
    font-weight: bold;
}

.checkout-form {
    background-color: rgba(255, 255, 255, 0.35);
    border: solid 1px var(--second-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.line {
    margin-top: .5rem;
    width: 90%;
    height: 2px;
    background-color: var(--second-color);
}

.total {
    display: flex;
    color: var(--second-color);
}

.total-text {
    font-size: 1.15rem;
}

.total-price {
    display: flex;
    font-size: 1.15rem;
}

.checkout {
    width: 90%;
    height: 3.5rem;
    border: none;
    border-radius: 2.5px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: no-drop;
    background-color: var(--fifth-color);
    color: var(--primary-color);
    position: relative;
    top: 0rem;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
}

.checkout-2 {
    cursor: pointer;
    color: var(--fifth-color);
    background-color: var(--first-color);
    transition: .3s;
}

.checkout-2:hover {
    background-color: var(--fourth-color-op);
}

.accepted-payment-options {
    color: var(--second-color);
}

.order {
    position: relative;
    left: 0rem;
}

.order,
.total {
    position: relative;
    left: 0rem;
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.shipping-value,
.order-value {
    display: flex;
    justify-content: space-between;
}

.shipping-value-price {
    margin-top: 0rem;
    color: var(--second-color);
    font-weight: 400;
}

.order-value-price {
    color: var(--second-color);
    font-weight: 400;
}

.shipping-value-text {
    margin-top: 0rem;
    color: var(--second-color);
    font-weight: 400;
}

.order-value-text {
    color: var(--second-color);
    font-weight: 400;
}

.delivery {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-top: 1rem;
}

.delivery-info {
    color: var(--second-color);
    font-size: .75rem;
    font-weight: 500;
}

.shipping {
    width: 25rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.35);
    border: solid 1px var(--second-color);
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
    cursor: pointer;
    position: relative;
    margin-top: 1.5rem;
}

.shipping-text {
    font-size: 1rem;
    margin-right: 1rem;
    color: var(--second-color);
    font-weight: 500;
}


/* Products */

@media (min-width: 900px) {
    .Checkout {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        flex-direction: column;
        margin-top: 6rem;
        margin-bottom: 6rem;
        height: auto;
        width: 100vw;
    }
    .save-btn {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        width: 340px;
        height: 48px;
        align-self: center;
    }
}

@media (max-width: 900px) {
    .Checkout {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        flex-direction: column;
        margin-top: 11rem;
        margin-bottom: 6rem;
        height: auto;
        width: 100vw;
    }
    .save-btn {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        width: 340px;
        height: 48px;
        align-self: center;
    }
}

.Checkout .quantity-input {
    width: 4rem;
    height: 100%;
}

.Checkout .quantity-controls {
    height: 1.5rem;
}

@media (max-width: 900px) {
    #address-element {
        width: calc(100% - 3rem);
        margin-left: 1.5rem;
    }
    .__PrivateStripeElement {
        width: 100%;
    }
    .personal-information-header,
    .address-information-header,
    .input-value-element {
        margin-left: 1.5rem;
    }
    .shipping {
        width: 100vw;
    }
    .shipping-text {
        margin-right: auto;
    }
    .shipping-confirm {
        margin-right: 1.5rem;
    }
    .checkout-button {
        margin-bottom: 1rem;
    }
    .Cart-headline {
        align-self: center;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: .5vw;
        font-family: "Raleway", sans-serif;
        margin-top: 5vh;
    }
    .checkout-form-out {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-right: 0;
        margin-top: 1.5rem;
    }
    .products {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .checkout-form-out {
        margin-top: 5rem;
    }
    .content .checkout-form-out {
        flex: 1;
        width: 100%;
        margin-right: 0;
    }
    .productname {
        cursor: pointer;
        font-weight: 700;
        letter-spacing: .1rem;
        font-size: 1.15rem;
        margin-top: .25rem;
        white-space: inherit;
    }
    .products .imageSlide {
        width: auto;
        height: 65%;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin-left: 1rem;
        cursor: pointer;
    }
    .product-optioninfo-text {
        flex: 1;
        font-weight: 500;
        font-size: .85rem;
        margin: 0;
        padding: 0;
        min-width: 60px;
        margin-right: 1rem;
        white-space: nowrap;
    }
    .Checkout .quantity-box {
        display: flex;
        align-self: flex-start;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-top: 1.25rem;
        width: 4vw;
        background-color: var(--fifth-color);
    }
    .product-info .headline {
        margin-top: .9rem;
        margin-bottom: .75rem;
        width: 80%;
    }
    .products .product {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 2.5rem;
        height: 16rem;
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100vw;
        margin-left: 0;
    }
    .product-info .price {
        font-size: 1rem;
        font-weight: 300;
        margin: 0;
        margin-top: .25rem;
        padding: 0;
        color: var(--second-color);
    }
    .options-container {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: .3rem;
        margin-top: .1rem;
    }
    .delete {
        align-self: flex-start;
        margin-left: auto;
        position: relative;
        top: 1.5rem;
        right: 1.5rem;
    }
    .delete ion-icon {
        cursor: pointer;
        font-size: 1rem;
        color: var(--second-color);
    }
    .shop-button {
        margin-top: 2.5rem;
        width: 40vw;
    }
    .shipping .cube {
        font-size: 2rem;
        margin-left: 1rem;
        margin-right: .5rem;
        color: var(--second-color);
    }
    .user-information {
        flex: 2;
        width: 100%;
        margin-left: 0;
    }
    .personal-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 3rem;
    }
    .address-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 3rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .display-cart {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        width: 100vw;
        height: auto;
        margin-bottom: 3rem;
    }
    .display-cart {
        width: 100vw;
    }
    .cart-content {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: calc(100% - 60px);
        padding: 30px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .edit-information {
        margin-left: auto;
        cursor: pointer;
        margin-right: 2.5rem;
    }
    .email-input,
    .country-input,
    .address-input,
    .address-addition-input,
    .phonenumber-input,
    .name-input,
    .city-input {
        margin-left: 1.5rem;
        width: calc(100% - 3rem);
    }
    .cart-content .imageSlide {
        width: 20vw;
        height: auto;
        margin-right: 3vw;
    }
    .payment-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 20px 0;
    }
    .payment-information-text {
        margin-left: 1.5rem;
    }
    .content {
        overflow-x: hidden;
    }
    .display-cart-title {
        margin-left: 1.5rem;
    }
    #payment-form {
        width: 90%;
        position: relative;
        left: 5%;
    }
}

@media (max-width: 500px) {
    #address-element {
        width: calc(100% - 3rem);
        margin-left: 1.5rem;
    }
    .__PrivateStripeElement {
        width: 100%;
    }
    .save-btn {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        width: calc(100% - 3rem);
        margin-left: 0;
        height: 48px;
        align-self: center;
    }
    .payment-methods-text {
        margin-bottom: .3rem;
    }
    .info-text {
        margin: 0;
        font-size: .75rem;
        margin-bottom: 5px;
    }
    .total-text,
    .total-price {
        margin-top: 10px;
        font-size: 1rem;
    }
    .line {
        height: 1px;
    }
    .checkout-button {
        margin-top: 10px;
    }
    .shipping-value-text,
    .shipping-value-price,
    .order-value-text,
    .order-value-price {
        margin-bottom: 5px;
        font-size: 10px;
        font-size: .85rem;
    }
    .personal-information-header,
    .address-information-header,
    .input-value-element {
        margin-left: 1.5rem;
    }
    .shipping {
        width: 100vw;
    }
    .shipping-text {
        font-size: .85rem;
        margin-right: auto;
    }
    .shipping-confirm {
        margin-right: 1rem;
    }
    .checkout-button {
        margin-bottom: 1rem;
    }
    .Cart-headline {
        align-self: center;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: .5vw;
        font-family: "Raleway", sans-serif;
        margin-top: 5vh;
        margin-bottom: 7.5vh;
    }
    .checkout-form-out {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-right: 0;
    }
    .content .checkout-form-out {
        flex: 1;
        width: 100%;
        margin-right: 0;
    }
    .products {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .checkout-form-out {
        margin-top: 1rem;
    }
    .productname {
        cursor: pointer;
        font-weight: 700;
        letter-spacing: .1rem;
        font-size: .85rem;
        margin-top: .25rem;
        white-space: inherit;
    }
    .products .imageSlide {
        width: auto;
        height: 65%;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin-left: 1rem;
        cursor: pointer;
    }
    .product-optioninfo-text,
    .product-optioninfo-value {
        flex: 1;
        font-weight: 500;
        font-size: .65rem;
        margin: 0;
        padding: 0;
        min-width: 60px;
        margin-right: .5rem;
        white-space: nowrap;
    }
    .Checkout .quantity-box {
        display: flex;
        align-self: flex-start;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-top: 1.25rem;
        width: 4vw;
        background-color: var(--fifth-color);
    }
    .product-info .headline {
        margin-top: .9rem;
        margin-bottom: .75rem;
        width: 80%;
    }
    .products .product {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 2.5rem;
        height: 16rem;
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100vw;
        margin-left: 0;
    }
    .product-info .price {
        font-size: .85rem;
        font-weight: 300;
        margin: 0;
        margin-top: .25rem;
        padding: 0;
        color: var(--second-color);
    }
    .options-container {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: .3rem;
        margin-top: .1rem;
    }
    .delete {
        align-self: flex-start;
        margin-left: auto;
        position: relative;
        top: 1.5rem;
        right: 1.5rem;
    }
    .delete ion-icon {
        cursor: pointer;
        font-size: 1rem;
        color: var(--second-color);
    }
    .shop-button {
        margin-top: 2.5rem;
        width: 50vw;
    }
    .shipping .cube {
        font-size: 2rem;
        margin-left: 1rem;
        margin-right: .5rem;
        color: var(--second-color);
    }
    .user-information {
        flex: 2;
        width: 100%;
        margin-left: 0;
    }
    .personal-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 3rem;
    }
    .address-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 3rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .display-cart {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        width: 100vw;
        height: auto;
        margin-bottom: 3rem;
    }
    .display-cart {
        width: 100vw;
    }
    .cart-content {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: calc(100% - 20px);
        padding: 10px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .packet {
        margin-left: 10px;
    }
    .cart-products {
        margin-left: calc(1rem + 10px);
    }
    .edit-information {
        margin-left: auto;
        cursor: pointer;
        margin-right: 2.5rem;
    }
    .email-input,
    .country-input,
    .address-input,
    .address-addition-input,
    .phonenumber-input,
    .name-input,
    .city-input {
        margin-left: 1.5rem;
        width: calc(100% - 3rem);
    }
    .cart-content .imageSlide {
        width: 20vw;
        height: auto;
        margin-right: 3vw;
    }
    .payment-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 20px 0;
    }
    .payment-information-text {
        margin-left: 1.5rem;
    }
    .content {
        overflow-x: hidden;
    }
    .display-cart-title {
        margin-left: 1.5rem;
    }
    #payment-form {
        width: 90%;
        position: relative;
        left: 5%;
    }
}

@media (min-width: 900px) {
    .product-info .price {
        font-size: 1.25rem;
        font-weight: 300;
        margin: .3rem;
        padding: 0;
        color: var(--second-color);
    }
    .Checkout .product-optioninfo-value {
        font-weight: normal;
        white-space: nowrap;
        font-weight: 500;
        font-size: .85rem;
    }
    .cart .product-optioninfo-value {
        font-weight: normal;
        white-space: nowrap;
        font-weight: 700;
        font-size: .75rem;
        white-space: nowrap;
    }
    .product .imageSlide {
        width: 100%;
        height: auto;
    }
    #payment-form {
        width: 100%;
    }
    .payment-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 90%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }
    .edit-information {
        margin-left: auto;
        cursor: pointer;
        margin-right: 0;
    }
    .personal-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 90%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
        margin-bottom: 3rem;
    }
    .address-information {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 90%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 3rem;
        padding: 20px;
    }
    .cart-content .imageSlide {
        flex: 0 0 auto;
        width: 10vw;
        height: auto;
        margin-right: .5rem;
        cursor: pointer;
    }
    .display-cart {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-bottom: 3rem;
    }
    .cart-content {
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 90%;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .user-information {
        flex: 2;
        width: 100%;
        margin-left: 5vw;
    }
    .shipping-text {
        margin-right: auto;
    }
    .shipping-confirm {
        margin-right: 1rem;
    }
    .shipping .cube {
        font-size: 2rem;
        margin-left: 1.5rem;
        margin-right: .5rem;
        color: var(--second-color);
    }
    .content .checkout-form-out {
        flex: 1;
        width: 100%;
        margin-right: 5vw;
    }
    .Cart-headline {
        align-self: center;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: .5vw;
        font-family: "Raleway", sans-serif;
        margin-top: 10vh;
        margin-bottom: 2.5vh;
    }
    .products {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
    }
    .products .product {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 2.5rem;
        height: 14rem;
        background-color: rgba(255, 255, 255, 0.35);
        border: solid 1px var(--second-color);
        width: 100%;
    }
    .checkout-form-out {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: sticky;
        margin-right: 10vw;
    }
    .checkout-form {
        margin-left: 2.5rem;
        width: 25rem;
        height: 35rem;
    }
    .content .checkout-form {
        margin-left: 2.5rem;
        width: 25rem;
        height: 30rem;
    }
    .shipping {
        margin-left: 2.5rem;
    }
    .checkout-content {
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        flex-direction: row;
        width: 100vw;
        margin-top: 5vh;
    }
    .products {
        margin-left: 10vw;
    }
    .productname {
        cursor: pointer;
        font-weight: 700;
        letter-spacing: .2rem;
        font-size: 1.35rem;
        margin-top: .25rem;
        white-space: inherit;
    }
    .products .imageSlide {
        width: auto;
        height: 75%;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin-left: 1.5rem;
        cursor: pointer;
    }
    .product-optioninfo-text {
        flex: 1;
        font-weight: 500;
        font-size: .85rem;
        margin: 0;
        padding: 0;
        min-width: 150px;
        margin-right: 1rem;
        white-space: nowrap;
    }
    .product-info .headline {
        margin-top: 1.5rem;
    }
    .options-container {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: .5rem;
        margin-top: 1rem;
    }
    .Checkout .quantity-box {
        display: flex;
        align-self: flex-start;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-top: 1.5rem;
        width: 3vw;
        background-color: var(--fifth-color);
    }
    .delete {
        align-self: flex-start;
        margin-left: auto;
        margin-right: 2rem;
        margin-top: 1.5rem;
    }
    .delete ion-icon {
        cursor: pointer;
        font-size: 1.25rem;
        color: var(--second-color);
    }
    .shop-button {
        margin-top: 2.5rem;
        width: 30vw;
    }
    .email-input,
    .country-input,
    .address-input,
    .address-addition-input,
    .phonenumber-input,
    .name-input,
    .city-input {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .imageSlide {
        width: auto;
        min-width: 25vw;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
}

.img img {
    transform: scale(1.5);
}

#product-image {
    width: auto;
    height: 50%;
    cursor: pointer;
}

.product-info {
    color: var(--fifth-color);
    height: 100%;
    margin-left: 1.5rem;
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.productname:hover {
    text-decoration: underline;
}

.productname {
    color: var(--second-color);
}

.product-optioninfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -.25rem;
    padding: 0;
    width: 30%;
    color: var(--second-color);
}

.cart .product-optioninfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.checkout-button {
    width: 90%;
}

.Checkout .payment-options {
    width: 90%;
    margin: 0;
    padding: 0;
    color: var(--second-color);
}

.content .payment-options {
    width: 90%;
    margin: 0;
    padding: 0;
    color: var(--second-color);
}

.Checkout .payments {
    max-width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.Checkout .payment {
    padding: 0;
    margin: 0;
    margin-right: .35rem;
}

.Checkout .payment img {
    user-select: none;
    width: 2.25rem;
}

.Checkout .payment svg {
    width: 2.5rem;
}

.empty-basket {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 4rem;
}

.empty-basket-text {
    font-size: 1.5rem;
    letter-spacing: .15rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-element {
    width: 90%;
}

.info-span {
    cursor: pointer;
    font-weight: 300;
    text-decoration: underline;
}

.info-text {
    font-weight: 300;
}

#checkout {
    cursor: not-allowed;
    right: 0%;
}

#checkout .text {
    color: var(--second-color);
}

#checkout::before {
    right: 0%;
    background-color: #e1e1e1;
}

.input-value-element {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.input-value-element h4 {
    font-weight: 400;
    margin-top: 0;
    margin-bottom: .3rem;
}

.personal-information-header,
.address-information-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
}

.edit-information ion-icon {
    font-size: 1.5rem;
}

.personal-information {
    transition: .3s;
}

.display-cart-title {
    font-size: 2rem;
    letter-spacing: .2rem;
    font-weight: 700;
}

.cart-content-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 1.5rem;
}

.packet {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
}

.packet-cube {
    display: flex;
    align-items: center;
    justify-content: center;
}

.packet-text-title {
    margin-top: 0;
    margin-bottom: .2rem;
    font-size: 1.35rem;
    letter-spacing: .2rem;
}

.packet-text-info {
    margin: 0;
    font-size: 1rem;
    letter-spacing: .1rem;
    font-weight: 400;
}

.packet .cube {
    font-size: 2rem;
    margin-left: 0;
    margin-right: .5rem;
    color: var(--second-color);
}

.cart-content-header-info {
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.cart-content-header-info-text {
    margin: 0;
    font-weight: 400;
    font-size: .8rem;
}

.cart-content-header-info-text-highlight {
    font-weight: 600;
    text-transform: uppercase;
}

.cart-products {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin-left: .5rem;
    margin-bottom: 1rem;
    margin-top: .5rem;
    cursor: pointer;
}

.cart-products .product .payment-information-text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--second-color);
    letter-spacing: 2.25px;
}

.payment-methods-text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: .85rem;
    color: var(--second-color);
    letter-spacing: 1.75px;
}

.phone-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ebebef;
    background-color: #fff;
}

.country-code {
    margin-left: 1rem;
    margin-right: .5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--second-color);
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.separator {
    width: 1px;
    height: 45px;
    transform: scale(.5);
    background-color: var(--second-color);
}

.phone-number {
    flex: 1;
    font-size: 1rem;
    border: none;
    background-color: transparent;
    outline: none;
}

@media (max-width: 900px) {
    .cart-element,
    .shipping-element {
        top: 0;
    }
}

@media (min-width: 900px) {
    #address-element,
    .__PrivateStripeElement {
        width: 100%;
    }
    .view-address-addition-input {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        margin-left: 0;
        width: 100%;
        cursor: pointer;
    }
    .plus-minus {
        margin-left: auto;
    }
}

@media (max-width: 900px) {
    .view-address-addition-input {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        margin-left: 1.5rem;
        width: 100%;
        cursor: pointer;
    }
    .plus-minus {
        margin-left: auto;
        transform: translateX(-3rem);
    }
    .view-address-addition-text {
        text-align: left;
        width: 75%;
        margin-right: 0;
    }
}

.view-address-addition-text {
    color: var(--second-color);
}