header {
    padding: 50px;
}

.custom-btn {
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
}

.primary-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-button:hover,
.primary-button-active {
    background: transparent;
    color: var(--primary-color);
}

.primary-outline-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-outline-button:hover,
.primary-outline-button-active {
    background: var(--primary-color);
    color: var(--white);
}

.secondary-button {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.secondary-button:hover,
.secondary-button-active {
    background: transparent;
    color: var(--secondary-color);
}

.secondary-outline-button {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.secondary-outline-button:hover,
.secondary-outline-button-active {
    background: var(--secondary-color);
    color: var(--white);
}

.white-to-red-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.white-to-red-button:hover,
.white-to-red-button-active {
    background: var(--primary-color);
    color: var(--white);
}

.red-to-white-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
}

.red-to-white-button:hover,
.red-to-white-button-active {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tertiary-button {
    background: var(--white);
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
}

.tertiary-button:hover,
.tertiary-button-active {
    background: var(--tertiary-color);
    color: var(--white);
}

.white-outline-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.white-outline-button:hover,
.white-outline-button-active {
    background: var(--white);
    color: var(--black);
}

.white-outline-to-red-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.white-outline-to-red-button:hover,
.white-outline-to-red-button-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.white-outline-red-to-red-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.white-outline-red-to-red-button:hover,
.white-outline-red-to-red-button-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Auth */
.auth-card {
    border-radius: 10px;
    border: 1px solid var(--gray-150);
}

.auth-card a {
    color: var(--gray-750);
    font-size: 12px;
    font-weight: 400;
}

.auth-card .card-title {
    border-bottom: 1px solid var(--gray-150);
    padding: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.custom-auth-padding {
    padding: 0 12rem;
    margin-top: 24px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid var(--gray-150);
    padding: 18px;
    color: var(--secondary-color);
}

.form-control::placeholder {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    opacity: 0.75;
}

.form-control:focus {
    border: 1px solid var(--gray-150);
    box-shadow: none;
}

.auth-card .card-body {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
}

.primary-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    text-align: center;
    padding: 14px 40px;
    text-decoration: none;
    display: block;
}

.primary-button:hover,
.primary-button-active {
    background: transparent;
    color: var(--primary-color);
}

.primary-outline-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    padding: 14px 40px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.primary-outline-button:hover,
.primary-outline-button-active {
    background: var(--primary-color);
    color: var(--white);
}

#forgotPassword h2 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

#forgotPassword h3 {
    font-size: 12px;
    color: var(--secondary-color);
    opacity: 0.75;
    font-weight: 700;
    font-family: "Aileron", sans-serif;
}

#forgotPassword .modal-header {
    border-bottom: 0;
}

#forgotPassword .modal-body {
    padding: 40px 60px 120px 60px;
}

.auth-card h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
}

/* Form Wizard */
.form-wizard .form-wizard-steps li {
    width: 15%;
    float: left;
    position: relative;
}

.form-wizard .form-wizard-steps li::after {
    background-color: var(--gray-175);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
}

.form-wizard .form-wizard-steps li::before {
    background-color: var(--quaternary-color);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0%;
    border-bottom: 2px solid var(--tertiary-color);
    border-top: 2px solid var(--tertiary-color);
    transition: all 0.5s ease-out;
    z-index: 1;
}

.form-wizard .form-wizard-steps li span {
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 50px;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.form-wizard .form-wizard-steps li:not(.active) span {
    border: 3px solid var(--gray-175);
    transition: all 0.6s ease-out;
}

.form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
}

.form-wizard .form-wizard-steps li.active div,
.form-wizard .form-wizard-steps li.activated div {
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 40%;
    height: 40%;
}

.form-wizard .form-wizard-steps li div {
    background-color: var(--gray-175);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 40%;
    height: 40%;
}

.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
    background-color: var(--tertiary-color);
    color: #ffffff;
    position: relative;
}

/* .form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
    background-color: var(--tertiary-color);
    left: 0%;
    width: 100%;
    border-color: var(--tertiary-color);
} */

.form-wizard .form-wizard-steps li.active::before,
.form-wizard .form-wizard-steps li.activated::before {
    width: 100%;
}

.form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: var(--tertiary-color);
}

.form-wizard .form-wizard-steps li:last-child::after {
    left: -0%;
}

.form-wizard-header img {
    position: absolute;
    left: 2%;
    top: -26px;
    z-index: 2;
    transition: all 0.3s ease-out;
}

/* Tickets */
.ticket-container h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--white);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.ticket-col {
    height: 100%;
}

.ticket-container .content {
    position: relative;
    z-index: 2;
}

.ticket-container .content p:first-of-type {
    text-decoration-line: line-through;
    color: var(--white);
    font-size: 12px;
    margin-bottom: 0;
}

.ticket-container .content p:last-of-type {
    font-size: 22px;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 27px;
}

.ticket-container {
    height: 100%;
}

.ticket-container,
.ticket-banner {
    border-radius: 15px;
    padding: 40px 30px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ticket-banner h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: end;
    position: relative;
    z-index: 2;
}

.black-overlay,
.purple-overlay {
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.black-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.8));
}

.purple-overlay {
    background: linear-gradient(to top,
            rgba(45, 41, 89, 0),
            rgba(45, 41, 89, 0.8));
}

.ticket-info-btn {
    background-color: var(--white);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    width: 18px;
    z-index: 10;
    height: 18px;
    font-size: 11px;
    position: absolute;
    right: 9px;
    top: 10px;
}

.select-ticket-button {
    position: relative;
    z-index: -1;
}

.ticket-checkbox-container>input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ticket-checkbox-container>input[type="checkbox"]:checked+label .select-ticket-button {
    background-color: var(--white);
    color: var(--secondary-color);
}

.ticket-checkbox-container>input[type="checkbox"]:checked+label .purple-overlay {
    background: linear-gradient(to top,
            rgba(45, 41, 89, 0),
            rgba(45, 41, 89, 0.8));
}

/* Cart Summary */
.cart-content-card {
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
}

.card-content-header h1 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.card-content-header span {
    font-size: 24px;
    color: var(--gray-600);
    font-weight: 400;
}

.card-content-header {
    border-bottom: 1px solid var(--gray-150);
    padding: 20px 30px;
    margin-bottom: 20px;
}

.cart-content-body {
    padding: 20px 30px;
}

.cart-side-data {
    position: sticky;
    margin-bottom: 130px;
    top: 30px;
}

.order-summary-top {
    padding-top: 22px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0;
}

.order-summary {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-bottom: 30px;
}

.order-summary hr {
    margin: 15px 0;
}

.order-summary h2 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.order-summary-content {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 400;
}

.order-summary-bottom {
    padding: 22px 30px;
}

.order-summary-bottom p {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.order-summary-bottom .primary-button {
    margin-top: 18px;
}

.discount-coupon {
    padding: 22px 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.discount-coupon h2 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 22px;
}

.discount-coupon input {
    margin-bottom: 27px;
}

.cart-item-card img {
    width: 100%;
    max-width: 130px;
    min-height: 130px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
}

.cart-item-card {
    border-radius: 5px;
    border: 1px solid var(--gray-150);
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

.cart-item-card i {
    color: var(--gray-400);
    font-size: 22px;
}

.product-title {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 14px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-content-body .product-quantity input,
.cart-content-body .product-quantity button {
    font-size: 16px;
}

.cart-content-body .product-quantity input {
    max-width: 24px;
}

.cart-content-body .product-quantity input {
    max-width: 30px;
}

.cart-content-body .product-quantity {
    padding: 3px 12px;
}

.cart-item-prices h2 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 600;
}

.cart-item-prices small {
    color: var(--tertiary-color);
    /* text-decoration-line: line-through; */
}

.cart-item-prices h3 {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 300;
    text-decoration-line: line-through;
    margin-bottom: 0;
    margin-bottom: 2px;
}

.product-quantity {
    border: 1px solid var(--black);
    padding: 0 12px;
    border-radius: 5px;
}

.product-quantity button {
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-quantity input {
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-quantity input {
    appearance: none;
    /* Safari moderno */
    -webkit-appearance: none;
    /* iOS/Safari antigo */
    height: 15px;
    /* define uma altura padrão */
    box-sizing: border-box;
    max-width: 25px;
}

.product-prices p span {
    font-weight: 600;
}

.product-prices p {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
}

.product-prices {
    margin-top: 40px;
    margin-bottom: 45px;
}

.product-prices h3 {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: 700;
    text-decoration-line: line-through;
    margin-bottom: 4px;
}

.product-prices h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 4px;
}

.delete-card-item {
    position: absolute;
    top: 30px;
    right: 30px;
}

.product-quantity input[type="number"] {
    -moz-appearance: textfield;
}

#installmentsInfo {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.cart-final-price p:first-child {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.cart-final-price p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.checkout-card {
    padding: 22px 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.delivery-address-body {
    padding: 30px;
    padding-top: 0;
}

.delivery-address-body i {
    font-size: 24px;
    color: var(--black);
}

.delivery-address hr {
    color: var(--gray-400);
    margin-bottom: 34px;
    margin-top: 30px;
}

.delivery-address-top {
    padding: 30px;
    padding-bottom: 0;
}

.delivery-address p {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
}

.delivery-address h2 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.delivery-address {
    margin-top: 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.back-button {
    border-radius: 6px;
    padding: 6px 10px;
    background: var(--gray-800);
    border: 0;
}

.back-button i {
    font-size: 12px;
    color: var(--white);
    font-weight: 900;
}

.saved-addresses label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-addresses label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-addresses label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-addresses label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-addresses label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.saved-addresses label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-addresses input[type="radio"]+label {
    border: 1px solid var(--gray-150);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-addresses input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-addresses input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-addresses input[type="radio"] {
    display: none;
}

.saved-addresses img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

.payment-method-ticket p {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
    word-break: break-all;
}

.payment-method-ticket h2 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-method-ticket {
    margin-top: 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.payment-method-ticket hr {
    color: var(--gray-400);
    margin-bottom: 34px;
}

.payment-method-body {
    padding: 30px;
    padding-top: 0;
}

.payment-method-top {
    padding: 30px;
    padding-bottom: 0;
}

.saved-cards label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-cards label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-cards label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-cards label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-cards label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.payment-option button:not(.primary-button) {
    background: var(--white);
    border: 1px solid var(--gray-300);
    width: 100%;
    text-align: start;
    padding: 20px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    transition: all 0.1s ease-in-out;
}

.payment-option .primary-button {
    padding: 18px;
}

.payment-option {
    margin-top: 20px;
}

.payment-option a {
    margin-top: 35px;
}

.payment-option input:focus+.floating-label,
.payment-option input:not(:placeholder-shown)+.floating-label {
    top: 5px;
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
}

.floating-label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: var(--black);
    z-index: 2;
}

.payment-option .input-group input {
    width: 100%;
    padding: 25px 15px 10px 15px;
    color: var(--black);
    border-radius: 10px !important;
}

.payment-option .input-group input:focus {
    outline: none;
    border: 1px solid var(--gray-700);
}

.payment-option .default-input>input {
    width: 100%;
    border: 1px solid var(--gray-300);
}

.payment-option .save-card label {
    font-size: 14px;
    color: var(--black);
    font-weight: 300;
}

.saved-cards label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-cards input[type="radio"]+label {
    border: 1px solid var(--gray-300);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-cards input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-cards input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-cards input[type="radio"] {
    display: none;
}

.saved-cards img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

.card-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 24px;
    width: auto;
}

.payment-option .save-card input {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
}

.payment-option .save-card {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 26px;
    flex-wrap: wrap;
}

.payment-option #saveCard:checked {
    accent-color: var(--primary-color);
}

.save-card {
    margin-bottom: 36px;
}

.time-to-pay-card {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.time-to-pay-card p {
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
}

.time-to-pay-card i {
    color: var(--white);
    font-size: 20px;
}

#pixForm .time-to-pay-card {
    margin-bottom: 25px;
    margin-top: 40px;
}

#pixForm .time-to-pay-card p {
    color: var(--white);
}

#pixForm {
    /* display: none; */
    padding: 0 100px;
}

.pix-code {
    margin-top: 35px;
}

#pixForm div:nth-child(2) h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

#pixForm div:nth-child(2) p {
    font-size: 12px;
    color: var(--gray-800);
    font-weight: 300;
}

#pixForm .pix-value p:first-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 7px;
}

#pixForm .pix-value p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

#pixForm .pix-code p:first-child {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
}

#pixForm2 .time-to-pay-card {
    margin-bottom: 25px;
    margin-top: 40px;
}

#pixForm2 .time-to-pay-card p {
    color: var(--white);
}

#pixForm2 {
    padding: 0 100px;
}

#pixForm2 div:nth-child(2) h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

#pixForm2 div:nth-child(2) p {
    font-size: 12px;
    color: var(--gray-800);
    font-weight: 300;
}

#pixForm2 .pix-value p:first-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 7px;
}

#pixForm2 .pix-value p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

#pixForm2 .pix-code p:first-child {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
}

#pixForm2 .primary-button {
    padding: 18px;
    width: 100%;
    margin-top: 30px;
}

#pixForm2 img {
    width: 100%;
    max-width: 250px;
    max-height: 250px;
}

.order-confirmed {
    margin-top: 80px;
}

.order-confirmed h1 {
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 3px;
}

.order-confirmed p {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 300;
    margin-bottom: 0;
}

.order-confirmed img {
    width: 100%;
    max-width: 180px;
    margin-bottom: 18px;
}

.container-small {
    width: 1100px;
}

.order-details p {
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 25px;
}

.order-details .primary-button {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 160px;
    padding: 18px;
}

.order-details-canceled .section-space {
    margin-left: 150px;
    margin-right: 150px;
}

.order-details li {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 300;
}

.order-details li::marker {
    font-size: 10px;
}

.order-details.container {
    padding-right: calc(var(--bs-gutter-x) * 5.5);
    padding-left: calc(var(--bs-gutter-x) * 5.5);
}

.order-details ul {
    line-height: 25px;
}

@media (max-width: 1400px) {
    .container-small {
        width: 970px;
    }
}

@media (max-width: 1200px) {
    .ticket-info-btn {
        right: 10px;
        top: 12px;
    }

    .container-small {
        width: 750px;
    }

    #pixForm {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .container-small {
        width: 100%;
    }

    .custom-auth-padding {
        padding: 0 5rem;
        margin-top: 24px;
    }

    .ticket-container h3 {
        font-size: 40px;
    }

    .ticket-container .content p:first-of-type {
        font-size: 24px;
    }

    .ticket-container .content p:last-of-type {
        font-size: 32px;
    }

    .ticket-checkbox-container .white-outline-button {
        font-size: 22px;
    }

    .ticket-info-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .form-wizard .form-wizard-steps li {
        width: 30%;
    }

    .cart-content-card,
    .payment-method {
        margin-bottom: 0;
    }

    .order-details.container {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
}

@media (max-width: 768px) {
    .custom-auth-padding {
        padding: 0 2rem;
        margin-top: 24px;
    }

    .auth-card .card-body {
        padding-right: 20px;
        padding-left: 20px;
    }

    .auth-card .card-title {
        font-size: 20px;
    }

    #forgotPassword .modal-body {
        padding: 30px 40px 80px 40px;
    }

    .form-wizard .form-wizard-steps li {
        width: 100%;
    }

    .ticket-container h3 {
        font-size: 30px;
    }

    .ticket-container .content p:first-of-type {
        font-size: 18px;
    }

    .ticket-container .content p:last-of-type {
        font-size: 24px;
    }

    .ticket-checkbox-container .white-outline-button {
        font-size: 20px;
    }

    .ticket-info-btn {
        width: 22px;
        height: 21px;
        font-size: 10px;
    }

    .steps-card {
        padding: 25px 30px !important;
    }

    .list-unstyled {
        padding-left: 50px;
        padding-right: 0px;
    }

    .container-small {
        width: 100%;
    }

    .cart-item-card i {
        font-size: 18px;
    }

    .cart-item-card {
        padding: 24px;
    }

    .cart-item-card img {
        aspect-ratio: 1/1;
        margin-right: 0;
        max-width: 160px;
    }

    .cart-item-card {
        position: relative;
    }

    .step-button {
        width: 100%;
    }

    .delete-card-item {
        position: absolute;
        top: 30px;
        right: 30px;
    }

    .product-title {
        font-size: 18px;
    }

    /* .quantity-btn {
        height: 100%;
    } */

    .cart-item-prices {
        flex-wrap: wrap-reverse;
    }

    .cart-content-body,
    .discount-coupon,
    .checkout-card,
    .order-summary-bottom {
        padding: 20px 14px;
    }

    .payment-method-body,
    .delivery-address-body {
        padding: 14px;
    }

    .delivery-address-top {
        padding-right: 14px;
        padding-left: 14px;
    }

    .order-summary-top {
        padding-top: 20px;
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 0;
    }

    .cart-item-prices h2 {
        font-size: 16px;
    }

    #pixForm2 {
        padding: 0;
    }

    .delivery-address h2,
    .payment-method-ticket h2 {
        font-size: 22px;
    }

    .order-summary h2,
    .discount-coupon h2 {
        font-size: 22px;
    }

    .order-summary-content {
        font-size: 18px;
    }
}

.w-fit-content {
    width: fit-content !important;
}

.buy-form-wizard-container {
    padding-left: 100px;
    padding-right: 70px;
}

@media (max-width: 992px) {
    .buy-form-wizard-container {
        padding-left: 33px;
        padding-right: 33px;
    }
}

.modify-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    font-size: 15px;
    font-weight: 400;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0;
}

.delete-btn {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 17px;
    right: 20px;
}

/* Esse fica no container dos cards */
.step-container {
    /* max-height: 1000px; */
    transition: all 0.3s ease-out;
    margin-bottom: 20px !important;
}

/* Essa fica no container dos cards que foram finalizados */
.next-step {
    /* max-height: 212px; */
    overflow: hidden;

    input,
    h1,
    h2,
    h3,
    small,
    p {
        color: var(--money-green);
    }

    .steps-card {
        position: relative;
        border-color: var(--money-green);
    }

    .modify-btn {
        opacity: 1 !important;
    }

    /* Essa classe fica em todos os cards do formulário */
    .steps-card {
        position: relative;
        border-color: var(--money-green);
        margin-bottom: 0 !important;
    }

    .modify-btn {
        opacity: 1;
    }

    .delete-btn {
        display: none;
    }
}

.steps-card {
    padding: 40px;
    margin-bottom: 15px !important;
}

.deactivated {
    opacity: 0;
}

.select-login-btn,
.select-cad-btn {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: 900;
}

.got-account-form,
.dont-got-account-form,
.address-form,
.payment-credit-form-container {
    input {
        background-color: var(--white);
        border-radius: 10px;
        border: 1px solid #bdbdbd;
        padding: 15px;
        margin-top: 20px;
    }
}

w .form-step-2-container,
.form-step-3-container {
    width: 100%;
    padding: 52px 45px;
    border-radius: 5px;
    border: 1px solid var(--gray-150);
    background: transparent;
}

.create-account-btn {
    margin-top: 25px;
    padding: 15px 120px;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
}

.forgot-password {
    color: #616161;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 10px;
}

.next-step {

    .next-step-div-2,
    .next-step-div-3 {
        display: block;
    }

    .cad-form-row {
        display: none;
    }

    .address-form {
        display: none;
    }
}

.next-step-div-2,
.next-step-div-3 {
    display: none;

    span {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        color: var(--money-green);
    }

    p {
        margin: 0;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        color: var(--money-green);
    }
}

.next-step {
    .form-step-2-container {
        border: 1px solid var(--money-green);
    }
}

.payment-type-container .pix-button,
.payment-type-container .credit-button {
    width: 100%;
    text-align: start;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #bdbdbd;
    padding: 15px;
    margin-top: 20px;
    color: var(--secondary-color);
}

.pix-qrcode-box,
.payment-credit-form-container {
    display: none;
}

.end-buy-btn {
    background-color: var(--primary-color);
}

.payment-type-container {
    padding: 52px 45px;

    h2 {
        color: var(--secondary-color);
        font-size: 24px;
        font-weight: 700;
    }
}

.address-form {
    h2 {
        color: var(--secondary-color);
        font-size: 24px;
        font-weight: 700;
    }
}

@media (max-width: 992px) {
    .container-large {
        padding-left: 30px;
        padding-right: 30px;
    }

    .select-login-btn,
    .select-cad-btn {
        font-size: 15px;
    }

    .step-button,
    .create-account-btn {
        padding: 15px 0px;
        width: 100%;
    }
}

.payment-button {
    transition: all 0.3s ease-in-out;
}

.payment-btn-active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color);
}

.logout-button {
    color: var(--primary-color);
}

.next-step-float-btn {
    text-decoration: none;
    position: fixed;
    bottom: 4%;
    right: 5%;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5555;
    transform: translateX(0%) rotate(0deg) scale(1);
    transition: all 0.8s ease-in-out;

}

.next-step-float-btn-deactive{
    transform: translateX(400%) rotate(720deg) scale(0);
}
