body {
    background-color: var(--bg-color);
}

.navbar {
    display: none;
}


.main {
    display: flex;
    flex-direction: column;;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
}

.ticket {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 100%;
}

.form_cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.separator_ticket {
    display: block;
    width: 100%;
    border-radius: 20px;
    border : 1px dashed white;
    margin-bottom: 20px;
}

.ticket h1 {
    font-family: gilroy-bold;
    font-size: 3rem
}

.ticket h2 {
    text-align: center;
    font-family: gilroy-regular;
    font-weight: 100;
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ticket h3 {
    font-family: gilroy-regular;
    font-weight: 100;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ticket p {
    font-family: gilroy-regular;
    font-weight: 100;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 30px;
}

.item img {
    width: 75px;
    height: 75px;
    border-radius: 10px;
}

input:not(.btn) {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    padding-left: 10px;
    font-size: 1.5rem;
    font-family: gilroy-medium;
    background-color: #000;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    color: var(--main-color);
    margin-bottom: 20px;
}

form h2 {
    font-family: gilroy-bold;
    color: white;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

form label {
    font-family: gilroy-medium;
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
}

.error {
    background-color: #ffb9b9;
    width: 100%;
    padding: 10px;
    color: rgb(172, 0, 0);
    border: solid 2px red;
    font-family: gilroy-medium;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.success {
    background-color: #b9ffb9;
    width: 100%;
    padding: 10px;
    color: rgb(0, 172, 0);
    border: solid 2px green;
    font-family: gilroy-medium;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 30px;
}

.bottom_error {
    margin-top: 30px;
}

.order_btn {
    padding: 15px 20px;
}

.empty {
    text-align: center;
    font-size: 2rem !important;
    font-family: gilroy-regular !important;
    font-weight: 500;
}

.quantity {
    width: 40% !important;
}