:root {
    --delicia-orange: #f5af30;
    --dark-orange: #DC5F01;
    --light-orange: #f7cb7b;
    --off-orange: #f5e6cb;
    --celeste: #13BCC2;
    --blue: #3187f5;
    --warm-black: #201E1C;
    --black: #201e1c;
    --light-grey: #ececec;
    --grey: #757575;
    --dark-grey: #808080;
    --just-white: #fff;
} 
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
html {
    font-size: 62.5%;
    font-family: "Dm Sans", sans-serif;
}

body {
    background-color: var(--off-orange);
}


.container {
    width: 90%;
    min-width: 300px;
    max-width: 390px;
    margin: 20px auto;
    padding: 20px 10px;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    border-radius: 8px;
    background-color: var(--celeste);
    box-shadow: 0px 4px 8px 0px #59491E29;
}
.container h2 {
    font-size: 2.4rem;
    color: var(--just-white);
    margin-bottom: 10px;
}

/* Su Compra */
.container .list-container {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px;
}

.container .list-container li {
    list-style: none;
    color: var(--just-white);
    font-size: 1.3rem;
}
.container .list-container .left-list {
    color: var(--warm-black);
}
.container .list-container .right-list {
    text-align: right;
    font-weight: 700;
}

/* Pagar */
.container .purchase-form {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}
.purchase-form label {
    display: inline-block;
    width: 300px;
    margin: 0 5px 5px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--just-white);
}
.purchase-form input {
    width: 100%;
    height: 35px;
    margin-bottom: 15px;
    padding: 5px;
    border: 1px solid var(--delicia-orange);
    border-radius: 5px;
}

/* Botones */
.container .button-container {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.button-container .paypal-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    width: 200px;
    height: 50px;
    padding: 12px 16px;
    font-family: "Dm Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--black);
    background-color: #ffc439;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.form-button .paypal-icon {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: text-bottom;
    background-image: url(../assets/icons/paypal.png);
}
.button-container .credit-link {
    text-decoration: underline;
}
.button-container .credit-link:visited {
    color: var(--just-white);
}