
.ra_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    display: none;
    z-index: 999999999;
    backdrop-filter: blur(4px);
}

.ra_popup_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 0;
    overflow: auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ra_popup_inner::-webkit-scrollbar {
    display: none;
}

.ra_popup_container {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    min-width: 400px;
    max-width: 400px;
}

.ra_popup_title, .ra_popup_text h3 {
    font-size: 19px;
    color: #222;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'DM Sans', 'Arial', sans-serif;
}

.ra_popup_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    flex-direction: column-reverse;
}


.ra_popup_actions button {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}

.ra_btn_link {
    background: transparent;
    border: none;
    color: #222;
    border-bottom: 2px solid #222;
    border-radius: 0;
    padding: 5px 0;
    font-size: 18px;
    transition: all .3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.ra_popup_lg .ra_popup_container {
    max-width: 800px;
    width: 100%;
    min-width: 700px;
}


.ra_popup_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ra_popup_header .ra_popup_title {
    margin: 0;
}

.ra_popup_header .btn {
    padding: 7px 15px;
    font-size: 14px;
    width: auto;
    min-width: auto;
}


.reservation_add_note .ra_popup_actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.reservation_add_note .ra_popup_actions button {
    width: auto;
    padding: 10px 60px;
    margin: 0;
}

.ra_popup_header .ra_close_popup {
    width: 30px;
    height: 30px;
    background: transparent;
    opacity: 0.7;
}

.ra_popup .ra_field_box input, .ra_popup .ra_field_box textarea, .ra_popup .ra_field_box select, .ra_popup .ra_repeater_option input {
    background: #ebebeb;
    border-radius: 0;
    border-bottom: 2px solid #515151bb;
    color: #222;
}

.ra_popup .ra_field_label {
    color: #222;
}

.ra_popup_text {
    text-align: center;
    margin: -10px 0;
}

.ra_popup_confirmation {
    display: none;
}