.popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.popup {
    position: fixed;
    transform: translateY(1000px);
    background-color: white;
    padding: 20px;
    border-radius: var(--primaryRadius, 12px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    left: 20px;
    right: 20px;
    top: 30%;
}
.popupOverlay.active {
    opacity: 1;
    visibility: visible;
}

.popup.active {
    opacity: 1;
    transform: translateY(0px);
}
.popupTitle
{
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.languageItem
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-top: 10px;
    background: #f8f8f8;
    border-radius: var(--primaryRadius);
    transition: var(--tsFast);
}
.languageItem:active, .languageItem:hover
{
    background: #f1f1f1;
}
.languageLeft
{
    display: flex;
    align-items: center;
    gap: 10px;
}
.languageItem img
{
    width: 25px;
}
.languageItem span
{
    font-family: system-ui;
    font-size: 14px;
}
.languageItem svg
{
    width: 25px;
    height: 25px;
}
.gridPopup
{
    display: grid;
    justify-items: center;
}
.gridPopupTitle
{
    font-weight: 500;
    text-align: center;
    font-family: 'Poppins';
    margin: 0;
    margin-top: 20px;
}
.gridPopup .primaryButton
{
    width: 100%;
    padding: 8px;
    margin-top: 20px;
}
#successReservation svg
{
    transform: rotateZ(100deg) scale(0);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
#successReservation svg.active {
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
}
.reservationCodeArea
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.reservationCodeArea
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
#reservationCodeText
{
    font-weight: 500;
    opacity: 0.5;
    font-size: 14px;
}
#reservationCode
{
    font-weight: 600;
}