body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Smythe", system-ui;
    position: relative;
}

.container {
    margin: 0 46px;
}

/* typography */
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

h1 {
    font-size: 39px;
    margin-bottom: 5px;
}

h2 {
    font-size: 22.42px;
}

h3,
p {
    color: black;
}

/* button */
.btn {
    background-color: #16DB99;
    border: none;
    border-radius: 3px;
    width: 100%;
    cursor: pointer;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}


.item__name {
    font-size: 28px;
}

.item__price {
    font-size: 20px;
}

.item__ingr {
    font-size: 16px;
    color: #8B8B8B;
}

.fa-solid.fa-plus {
    font-size: 32px;
    font-weight: 400;
    color: #3C3C3C;
}


/* Header */
header {
    height: 167px;
    width: 100%;
    overflow: hidden;
    color: white;
    position: relative;
}

.header__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 66%;

}

.header__text {
    position: absolute;
    top: 46px;
}

/* Menu */

.menu {
    margin-top: 67px;
    width: 100%;
}

.menu__item {
    width: 100%;
    border-bottom: 1px solid #D2D2D2;
    display: flex;
    margin-top: 45px;
    padding-bottom: 51px;

}

.item__image {
    width: 70;
    height: 89px;
}


.item__desc {
    margin-left: 31px;
}

.item__desc p {
    margin-top: 8px;
}

.item__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #DEDEDE;
    cursor: pointer;
}

.checkout {
    display: none;
    width: 100%;
}

.remove-btn {
    border: none;
    background: none;
    color: #BBBBBB;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    margin-left: 13px;
    cursor: pointer;
}

.checkout-order {
    text-align: center;
    margin-top: 45px;
}

.checkout-order h3 {
    font-size: 28px;
}

.order-item,
.total-price {
    display: flex;
    align-items: center;

}

.order-item {
    margin-bottom: 10px;
}

#orders-list {
    border-bottom: 2px solid #393333;
    padding-bottom: 11px;
    margin: 64px 0 14px 0
}

.order-price,
#total-price {
    margin-left: auto;
}

.order-btn {
    padding: 18px 0;
    font-size: 16px;
    margin: 53px 0;
}

/* form */

#myForm {
    display: none;
    position: absolute;
    top: 292px;
    left: 50%;
    transform: translateX(-50%);
    width: 524px;
    text-align: center;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), -1px -1px 400px 11px rgba(0, 0, 0, 0.63);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.form-container {
    margin: 47px 23px 29px 23px;
}

.form-title {
    margin-bottom: 47px;
    font-weight: bold;
    font-size: 24px;
}

input {
    display: block;
    width: 450px;
    border: 1.3px solid #757575;
    border-radius: 3.89px;
    padding: 17px 0;
    padding-left: 26px;
    margin-bottom: 23px;
}

.pay-btn {
    padding: 17px 0;
    margin-top: 23px;
}

/* order completed */

#success-banner {
    margin-top: 45px;
    display: none;
}

#success-container {

    padding: 51px 59px;
    background-color: #ECFDF5;
    text-align: center;
}

.thankYou-title {
    color: #065F46;
    font-size: 32px;
}