.event-registration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;

}

.custom-registration-step {
    display: flex;
    justify-content: space-between;
    min-width: 80vw;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.registration-table {
    display: flex;
    justify-content: space-evenly;
    min-width: 60vw;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.registration-categories {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;

}

.registration-section {
    display: flex;
    flex-direction: column;
    align-items: start;

}

.registration-rates {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 40%;
}

.registration-categories>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 80%;

}

.registration-rates>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.registration-rates>div:nth-child(2) input[type=radio] {
    width: 30px;
    transform: scale(1.3);
}

.register-button {
    display: flex;
    align-items: start;
    padding-top: 24px;
}

.register-button button {
    padding: 16px 24px 16px 24px;
    background-color: #d8d8d8;
    border: solid 2px var(--main-dark-blue);
    color: var(--main-dark-blue) !important;
    font-weight: 600;
}

.register-button button:hover {
    background-color: var(--main-dark-blue);
    border: solid 2px var(--main-dark-blue);
    transition: linear 300ms;
    color: white !important;
    padding: 16px 24px 16px 24px;
}

.register-submit {
    display: flex;
    align-items: start;
    padding-top: 24px;
}

.register-submit button {
    padding: 16px 24px 16px 24px;
    background-color: var(--main-dark-blue);
    border: solid 2px var(--main-dark-blue);
    color: #ffffff !important;
    font-weight: 600;
}


.register-submit button:hover {
    background-color: #095390;
    border: solid 2px #095390;
    transition: linear 300ms;
    color: white !important;
    padding: 16px 24px 16px 24px;
}

.registration-addons {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    width: 100%;

}

.registration-addon {
    display: flex;
    gap: 40px;
    padding: 16px 40px 16px 40px;
    background-color: #eee;
    border-radius: 6px;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.registration-addon label {
    font-weight: 600;
}

.registration-addon input[type=checkbox] {
    border: 2px solid black !important;
    padding: 10px !important;
    box-sizing: border-box;
    width: 20px;
    transform: scale(1.5);
}

.button-addon-dinner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-addon-dinner input::-webkit-outer-spin-button,
.button-addon-dinner input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.registration-second-section {
    gap: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px;
}

.registration-second-section .registration-addon {
    height: 100px;
}

.header-second-addons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-second-addons span {
    font-size: larger;
}

.faq-container {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

.faq-header {
    text-align: center;
    padding-bottom: 20px;
    color: var(--main-dark-blue);
    padding: 50px;
}

.faq-accordion-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}

.faq-accordion {
    background: white;
    padding: 32px;
    width: 100%;
}

.faq-accordion-item {
    border-bottom: 1px solid #ddd;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 16px;
}

.faq-accordion-content {
    display: none;
    padding-top: 10px;
    font-size: 18px;
    color: #333;
}

.faq-accordion-content p {
    font-size: 24px;
    padding-bottom: 24px;
}

.second-step-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 6px;
}

.second-step-item div {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    font-weight: 500;
    margin-bottom: 12px;
}

.second-step-item div input {
    padding: 8px;
    border: 1.5px solid #0d0d0d;
    border-radius: 8px;
}

.second-step-item select {
    padding: 10px;
    border: 1.5px solid #0d0d0d;
    border-radius: 8px;
}

.step-submit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 90vw;
    gap: 30px;
    align-items: center;
}

.billing-title {
    padding-top: 20px;
}

.order-summary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.order-payment-methods img {
    width: 50px;
    margin: 2px;
}

.back-step {
    margin-right: 0px;
}

.custom-multistep-form {
    display: none;
}

.custom-multistep-form.active {
    display: block;
}

.fee-message-error {
    color: red;
    font-weight: 600;
    position: absolute;
    padding: 10px;
    top: 180px;
}

.order-cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-cart h3 {
    text-align: end;
    margin: 10px;
    border-top: 1px solid black;
    padding-top: 16px;
}

.registration-feedback {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    text-align: center;

}

.register-button-anchor button {
    color: white;
    text-decoration: none;
    padding: 16px 24px 16px 24px;
    background-color: var(--main-dark-blue);
    border: solid 2px var(--main-dark-blue);
    font-weight: 600;
}

.register-button-anchor button a {
    color: white;
    text-decoration: none;

}

.feedback-text {
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

@media (min-width: 768px) {

    .custom-registration-step {
        flex-direction: row;
        align-items: start;
        gap: 50px;
        padding-top: 50px;
    }

    .registration-table {
        padding: 24px;
    }

    .registration-categories,
    .registration-section {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .registration-rates {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        /* da modificare */
    }

    .registration-categories>div:nth-child(2) {
        display: flex;
        flex-direction: column;
        gap: 36px;
        width: 100%;
    }

    .faq-accordion-wrapper {
        width: 70%;
    }

    .second-step-table {
        width: 40vw;
    }

    .step-submit {
        width: 30vw;
    }

    .registration-addon {
        width: 60vw;
    }

    .registration-second-section {
        width: 50vw;
    }

}