/*
 Theme Name:   Proguards Child Theme
 Theme URI:    https://proguards.ancorathemes.com
 Description:  Proguards Child Theme
 Author:       AncoraThemes
 Author URI:   http://ancorathemes.com
 Template:     proguards
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  proguards
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: "Manrope", Sans-serif;
}

.sidebar.widget_area {
    display: none !important;
}

.stopover {
    margin-top: 20px;
}

.number-input {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.number-input button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.number-input input {
    width: 60px;
    text-align: center;
    margin: 0 5px;
}

.loading-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-logo a {
    display: inline-block;
    width: 4.25rem;
}

.header-logo a img {
    width: 100%;
    height: 100%;
}

.user-auth-btn .common-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.common-row a {
    display: flex;
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    height: 3.4rem;
    padding: 1rem 2rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75rem;
    border-radius: 3.75rem;
    justify-self: center;
    align-items: center;
    transition: 0.3s linear;
}
.common-row.header-nav a:hover span svg path{
    fill: rgba(51, 151, 222, 1);
}
.common-row a:last-child {
    background-color: rgba(51, 151, 222, 1);
    border: none;
}


.common-row a:first-child:hover {
    background-color: rgba(51, 151, 222, 1);
    color: rgba(255, 255, 255, 1);
    transition: 0.3s linear;
    border: none;
}

.common-row a:last-child:hover {
    background-color: #fff !important;
    border: 1px solid rgba(51, 151, 222, 1);
    color:rgba(51, 151, 222, 1) !important;
    transition: 0.3s linear;
}

.form-input-password-reset {
    position: relative;
}

.form-input-password-reset .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.woocommerce-password-hint,
.woocommerce-password-strength {
    display: none !important;
}

.common-full-width {
    width: 100% !important;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    /* space between button text and spinner */
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.tapin-travel-checklist {
    margin-top: 24px;
}

.progress-bar-container {
    background: #E6E8E7;
    border-radius: 4px;
    height: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #15803D;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.progress-text {
    margin-bottom: 0;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 15px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: #fff;
}
.checklist-item.completed {
    border: 1px solid  #15803D;
}
.checklist-item.incomplete {
    border: 1px solid  #DC2626;

}

.item-left {
    display: flex;
    align-items: center;
}

.item-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.view-button {
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: transparent;
    font-weight: 600;
}


.incomplete .view-button{
    color: #15803D;
}
.completed .view-button{
    color: #3397DE;
}
.completed .item-icon {
    color: 15803D;
}

.incomplete .item-icon {
    color: red;
}


.subscription-container {
    /* max-width: 350px; */
    font-family: Arial, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.subscription-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.subscription-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 16px;
}

.tab {
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #003366;
    color: white;
}

.tab-content {
    text-align: center;
}
.popup-subscription,.popup-subscriptions{
    background:  #FFF;
    padding: 12px;
    border-radius: 8px;
}
.popup-subscriptions{
    padding: 40px 20px;
    margin-top: 16px;
}


.no-subscription-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
}

.no-subscription-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.explore-button {
    background-color: #2196F3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #1976D2;
}

.subscription-status-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    background-color: #fafafa;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.status-row:last-child {
    border-bottom: none;
}

.action-row button.cancel-button {
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

.section-title {
    font-size: 16px;
    margin: 20px 0 10px;
    font-weight: bold;
}

.totals-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 20px;
}

.totals-table thead th {
    background-color: #111;
    color: white;
    padding: 8px;
    text-align: left;
}

.totals-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.totals-table a {
    color: #007bff;
    text-decoration: none;
}

.billing-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    background-color: #fdfdfd;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.billing-box p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.invoice-note {
    font-size: 12px;
    color: #666;
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
}

.payment-method-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}

.payment-method-table thead {
    background-color: #1c1c1c;
    color: #fff;
}

.payment-method-table th,
.payment-method-table td {
    padding: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.delete-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.delete-link:hover {
    text-decoration: underline;
}

.primary-button {
    background-color: #349eff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.test-info,
.disclaimer {
    font-size: 12px;
    color: #555;
    margin: 10px 0;
}

.primary-button {
    background-color: #349eff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

.flight-info-form {
    max-width: 600px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.flight-info-box {
    margin-bottom: 16px !important;
    margin-top: 16px !important;
    padding: 24px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
}
#flight-info-form .flight-info-box{
    margin-top: 0 !important;
}
.flight-info-box h3{
    margin-bottom: 24px;
}

.route-heading {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.flight-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.flight-submit-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.flight-submit-button:hover {
    background-color: #005f8d;
}

.rowGroup,
.fileRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.fileRows{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rowGroup input {
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button.removeBtn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

button.removeBtn:hover {
    background-color: #c0392b;
}

button[type="button"],
button[type="submit"] {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 8px 14px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}
.coupon button[type="submit"]{
    border-left:1px solid #CBCBCB !important;
   }

button[type="button"]:hover,
button[type="submit"]:hover {
    background-color: #1a252f;
}

.account-header {
    background: linear-gradient(to bottom, #1d3b56, #0c1a29);
    padding: 20px;
    color: white;
    text-align: center;
}

.account-header h1 {
    margin: 0;
}

.trip-logs {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.trip-logs h2 {
    margin-top: 0;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    white-space: nowrap;
}

th {
    background: #222;
    color: #fff;
    text-align: left;
}

.status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}

.status.previous {
    background-color: #FFC107;
    color: #DCA603;
    background: #FFF8E4;
}

.status.upcoming {
    background-color: #BBF7D0;
    color: #15803D;
    background:  #F0FDF4;
}

.status.canceled  {
    background-color: #6B6B6B;
    color: #A7A7A7;
    background: #F9F9F9;
}

.invoice-link {
    color: #007bff;
    text-decoration: none;
}

.invoice-link:hover {
    text-decoration: underline;
}

/* auth UI */
:has(.auth-header) body .page_content_wrap,
:has(.auth-header) body header {
    background-color: #fff;
}

:has(.auth-header) body .page_content_wrap {
    padding-top: 0 !important;
    padding-bottom: 48px !important;
}

header .auth-header .sc_layouts_title.sc_align_center.with_content.without_image.without_tint::after {
    display: none;
}

header .auth-header .sc_layouts_title h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #181818;
}

.auth-form {
    display: grid;
    gap: 20px;

    @media (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.email-verification-wrapper,
.forgot-password-wrapper,
.set-password-wrapper {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    padding-top: 12px;
}

.email-verification-wrapper p,
.forgot-password-wrapper p,
.set-password-wrapper p {
    color: #6B6B6B;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.1px;
    margin-bottom: 0;
}

.email-verification-wrapper .auth-form,
.forgot-password-wrapper .auth-form,
.set-password-wrapper .auth-form {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.forgot-password-wrapper .auth-form,
.set-password-wrapper .auth-form {
    gap: 24px;
}

.forgot-password-wrapper .auth-form .auth-btn-wrapper::before,
.forgot-password-wrapper .auth-form .auth-btn-wrapper::after,
.set-password-wrapper .auth-form .auth-btn-wrapper::before,
.set-password-wrapper .auth-form .auth-btn-wrapper::after {
    display: none;
}

.email-verification-wrapper .resend_info {
    color: #6B6B6B;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

.email-verification-wrapper .resend-text {
    color: #3397DE;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    background: none;
    padding: 0;
}

.email-verification-wrapper .verify-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.email-verification-wrapper .error {
    color: #DC2626 !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    margin-bottom: 24px;
    margin-top: -16px;
}

.email-verification-wrapper .go_back_link,
.forgot-password-wrapper .go_back_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #181818;
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
    margin-top: 32px;
}

.auth-form#custom-registration-form,
.auth-form#custom-login-form {
    padding-top: 32px;
}

.auth-form label {
    font-size: 14px;
    line-height: 16px;
    color: #181818;
    display: block;
    margin-bottom: 8px;
}

.auth-form .guardian-wrapper {
    margin-top: 20px;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"],
.auth-form input[type="date"],
.auth-form input[type="time"],
.auth-form input[type="tel"] ,
.auth-form input[type="time"],
.auth-form input[type="url"] {
    padding: 12px 42px 12px 16px;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #E6E8E7;
    background: #FFF;
    color: #181818 !important;
    width: 100%;
}
.auth-form input[type="time"]{
    padding:0 !important;
    padding-left: 12px !important;
}
.auth-form input[type="date"] {
    padding-right: 16px;
    box-sizing: border-box;
}

.auth-form input:-webkit-autofill {
    -webkit-text-fill-color: #181818;
    background: #FFF;
}

.auth-form input[type="text"]::placeholder,
.auth-form input[type="password"]::placeholder,
.auth-form input[type="email"]::placeholder,
.auth-form input[type="date"]::placeholder,
.auth-form input[type="time"]::placeholder,
.auth-form input[type="tel"]::placeholder 
.auth-form input[type="date"]::placeholder ,
.auth-form input[type="time"]::placeholder,
.auth-form input[type="url"]::placeholder{
    color: #CBCBCB;
}
.auth-form input:disabled{
    background-color: #F8F8F8 !important;
    color: #CBCBCB !important;
    border: 1px solid #E6E8E7;
    cursor: not-allowed;
}
.auth-form .input-wrapper {
    position: relative;
}

.auth-form input.error {
    border: 1px solid #DC2626;
    border-radius: 8px;
}

.auth-form .error-message {
    color: #DC2626;
    font-size: 12px;
    line-height: 16px;
}

.auth-form label span.required {
    color: #FF5B4A;
}

.auth-form .pass-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    height: 24px;
    width: 24px;
}

.auth-form .error-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.auth-form .custom-checkbox-wrapper {
    position: relative;
    display: inline-block;
}

.auth-form .custom-checkbox-wrapper input.custom-checkbox,
.auth-form .custom-checkbox-wrapper input.woocommerce-form__input-checkbox {
    opacity: 0;
    position: absolute !important;
    margin: 0;
    z-index: 2;
    width: 16px !important;
    height: 16px;
    top: 4px;
    left: 0;
    cursor: pointer;
}

.auth-form .custom-checkbox-wrapper .custom-label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-block;
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.1px;
}

.auth-form .custom-checkbox-wrapper .custom-label a {
    color: #3397DE;
    font-weight: 600;
}

.auth-form .custom-checkbox-wrapper .custom-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #E6E8E7;
    background-color: #FFF;
}

.auth-form .custom-checkbox-wrapper input.custom-checkbox:checked+.custom-label::before,
.auth-form .custom-checkbox-wrapper input.woocommerce-form__input-checkbox:checked+.custom-label::before {
    border-color: #1B3B6F;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M10 3L4.5 8.5L2 6" stroke="%231B3B6F" stroke-width="1.6666" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.auth-form .auth-btn-wrapper {
    max-width: 350px;
    width: 100%;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    @media (min-width: 768px) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media (min-width: 768px) {

    .forgot-password-wrapper .auth-form .auth-btn-wrapper,
    .set-password-wrapper .auth-form .auth-btn-wrapper {
        grid-column-start: auto;
        grid-column-end: auto;
    }
}

.auth-form .auth-btn-wrapper input[type="submit"],
.auth-form .auth-btn-wrapper button[type="submit"],
.trip-route-data .woocommerce-button.button,
.auth-btn-wrapper a.button.edit-flight-info,.subscription-box a,.add-payment-button a.button,
.invitee-detail-wrappers button[type="submit"],
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order,
.inner-wrapper-docker .invitee-detail-wrappers button button[type="button"],
.guardian-management.woocommerce-dashboard p a{
    padding: 16px 32px;
    font-family: "Manrope", Sans-serif;
    text-transform: none;
    width: 100%;
    background-color: #3397DE !important;
    border-radius: 60px;
    height: 60px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 28px;
    letter-spacing: initial;
    display: inline-block;
    margin: 0;
}
.inner-wrapper-docker .invitee-detail-wrappers button[type="button"],#access_loacker_login_btn{
    padding: 16px 32px;
    font-family: "Manrope", Sans-serif;
    text-transform: none;
    width: 100%;
    background-color: #3397DE;
    border-radius: 60px;
    height: 60px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 28px;
    letter-spacing: initial;
    display: inline-block;
    margin: 0;
}
#emergencyContactForm .popup-subscriptions button[type="submit"],
#credentialsForm .popup-subscriptions button[type="submit"],
#courierInfoForm .popup-subscriptions button[type="submit"],
#child_emergencyContactForm .popup-subscriptions button[type="submit"],
#child_credentialsForm .popup-subscriptions button[type="submit"],
#child_courierInfoForm .popup-subscriptions button[type="submit"]{
    background-color: transparent !important;
    border: 1px solid #3397DE !important;
    width: 100%;
    color: #3397DE !important;
    border-radius: 60px;
    font-size: 16px !important;
    margin-top: 24px;
    letter-spacing: 0 !important;
    text-transform: capitalize !important;
}
#child_emergencyContactForm .popup-subscriptions button[type="submit"],
#child_credentialsForm .popup-subscriptions button[type="submit"],
#child_courierInfoForm .popup-subscriptions button[type="submit"],
.guardian-management.woocommerce-dashboard p a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.guardian-management p a{
    border-radius: 60px !important;
    margin-top: 24px !important;
}
#emergencyContactForm .popup-subscriptions button[type="submit"]:hover,
#credentialsForm .popup-subscriptions button[type="submit"]:hover,
#courierInfoForm .popup-subscriptions button[type="submit"]:hover,
#child_emergencyContactForm .popup-subscriptions button[type="submit"]:hover,
#child_credentialsForm .popup-subscriptions button[type="submit"]:hover,
#child_courierInfoForm .popup-subscriptions button[type="submit"]:hover{
    background-color: #3397DE !important;
    color: #fff !important;

}
.trip-route-data .woocommerce-button.button,.current_trip #cancel{
    border-radius: 60px;
    border: 1px solid  #DC2626 !important;
    background:  #FFF !important;
    color: #DC2626 !important;
}
.current_trip #cancel{
    padding: 12px 32px;
}
.current_trip #cancel {
    display: inline-block;
    margin-top: 20px !important;
}
.subscription-box a,.add-payment-button a.button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 242px;
    padding: 0;
}
.add-payment-button a.button{
    margin-top: 16px;
}
.trip-route-data .woocommerce-button.button ,.auth-btn-wrapper .a.button.edit-flight-info{
   display: block;
   max-width:350px;
   margin: 0 auto;

}
#add_payment_method .woocommerce-Payment .form-row{
    padding: 0 !important;
    display: flex;
    justify-content: center;
}
.auth-form .auth-btn-wrapper input[type="submit"]:hover,
.auth-form .auth-btn-wrapper button[type="submit"]:hover ,
.trip-route-data a.woocommerce-button:hover,
.auth-btn-wrapper a.button.edit-flight-info,
.subscription-box a:hover,
.add-payment-button a.button:hover,
.invitee-detail-wrappers button[type="submit"]:hover,
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order:hover,
.inner-wrapper-docker .invitee-detail-wrappers button button[type="button"]:hover{
    color: #fff;
    border-radius: 60px !important;
}
.add-payment-button a.button:hover{
    background-color: #3397DE !important;
}
.auth-form .auth-btn-wrapper input[type="submit"]:disabled {
    background-color: #CBCBCB !important;
    pointer-events: none;
    border-radius: 60px !important;
    text-align: center !important;
}

.woocommerce-account .nsl-container {
    max-width: 350px;
    width: 100%;
    margin: 8px auto 0;
}

.auth-form .auth-btn-wrapper .nsl-button-google,
.woocommerce-account .nsl-container .nsl-button-google {
    border-radius: 40px !important;
    border: 1px solid #E6E8E7;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #595959 !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.auth-form .auth-btn-wrapper .nsl-container {
    width: 100%;
}

.auth-form .auth-btn-wrapper .nsl-container .nsl-container-buttons,
.woocommerce-account .nsl-container .nsl-container-buttons {
    display: initial !important;
    padding: 0;
}

.auth-form .auth-btn-wrapper .nsl-container .nsl-container-buttons a,
.woocommerce-account .nsl-container .nsl-container-buttons a {
    margin: 0;
    font-family: "Manrope", Sans-serif;
}

.auth-form .auth-btn-wrapper .nsl-button-google .nsl-button-svg-container,
.woocommerce-account .nsl-container .nsl-button-google .nsl-button-svg-container {
    padding: 0;
}

.auth-form .auth-btn-wrapper .nsl-button-google .nsl-button-label-container,
.woocommerce-account .nsl-container .nsl-button-google .nsl-button-label-container {
    padding: 0;
    margin: 0;
    flex: none;
}

.custom-signup-link {
    margin-top: 32px;
    text-align: center;
}

.custom-signup-link a {
    color: #6B6B6B;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.custom-signup-link a strong {
    color: #3397DE;
    font-weight: 600 !important;
    font-size: 16px;
    line-height: 28px;
}

.verified {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verified h1 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: #181818;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}

.verified p {
    color: #6B6B6B;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.1px;
}

.auth-form .forgot-password {
    text-align: right;
    margin-bottom: 0;
}

.auth-form .forgot-password a {
    color: #3397DE !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.woocommerce-account .woocommerce .woocommerce-error {
    margin: 20px 0 0px 0;
}

.top_panel_custom_transparent-header .bg-banner {
    background: #fff !important;
}

.top_panel_custom_transparent-header .bg-banner .elementor-icon svg path {
    fill: #000 !important;
}

.top_panel_custom_transparent-header .bg-banner .sc_layouts_iconed_text_link>span {
    color: #000 !important;
}

:has(.invitee-detail-wrapper) body .page_content_wrap {
    background-color: #fff !important;
    padding-top: 62px !important;
}

.add-invitee-detail-wrapper h1 {
    color: #181818;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 12px;
    margin-top: 0;
}

.add-invitee-detail-wrapper p {
    color: #6B6B6B;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 32px;
}

.invitee-detail-wrapper .traveller-wrapper {
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #E6E8E7;
    background: #F8F8F8;
    margin-bottom: 32px;
}

.invitee-detail-wrapper .traveller-wrapper h2 {
    color: #181818;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.1px;
    margin-top: 0;
    margin-bottom: 32px;
}

.invitee-detail-wrapper .traveller-wrapper>div:not(:last-child) {
    margin-bottom: 16px;
}

.invitee-detail-wrapper .traveller-wrapper label {
    color: #181818;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    display: block;
    margin-bottom: 8px;
}

.invitee-detail-wrapper .traveller-wrapper label .required {
    color: #FF5B4A;
}

.invitee-detail-wrapper .traveller-wrapper input {
    border-radius: 8px;
    border: 1px solid #E6E8E7;
    background: #FFF;
    height: 52px;
    padding: 12px 16px;
    color: #181818;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    width: 100%;
}

.invitee-detail-wrapper .traveller-wrapper .select_container:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #888;
    right: 16px;
    transform: translateY(-50%);
    margin-top: 0;
}

.invitee-detail-wrapper .traveller-wrapper select {
    border-radius: 8px;
    border: 1px solid #E6E8E7;
    background: #FFF !important;
    height: 52px;
    padding: 12px 16px;
    color: #181818;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    --webkit-appearance: none;
}

.invitee-detail-wrapper .traveller-wrapper input::placeholder {
    color: #CBCBCB;
}

.add-invitee-detail-wrapper .invitee-detail-wrapper button,#custom-my-profile-form .change-user {
    padding: 16px 32px;
    max-width: 630px;
    width: 100%;
    border-radius: 60px !important;
    background: #3397DE;
    color: #FFF !important;
    text-align: center !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
    letter-spacing: normal;
    display: inline-block;
}

.add-invitee-detail-wrapper .invitee-detail-wrapper button:hover,#custom-my-profile-form .change-user:hover {
    color: #fff !important;
}

.add-invitee-detail-wrapper select:invalid {
    color: #CBCBCB !important;
}
.close-btn button{
    background-color: transparent !important;
    color:  #3397DE !important;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 26px !important;
    font-weight: 600;
    line-height: 38px; 
    cursor: pointer;
    padding: 20px 32px;
}
.disabled-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
@media screen and (max-width:568px) {
    .close-btn button{
        font-size: 16px !important;
    }
}