/*
 Theme Name:   GDT Child Theme
 Theme URI:    https://mydomain.com
 Description:  GDT Marketplace child theme for TravelerWP. At this scaffold
               stage the child theme passes through to the TravelerWP parent
               with no template overrides. Its job right now is to (1) declare
               the parent relationship so WordPress loads TravelerWP as parent
               and (2) load the GDT plugin bridge in functions.php.
 Author:       GDT
 Template:     traveler
 Version:      1.1.2
 Text Domain:  gdt-child-theme
*/

/*
 * No custom CSS yet. Add your brand overrides below this comment
 * as you develop each feature. TravelerWP styles load first via
 * the parent enqueue in inc/bootstrap.php.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.form-group.user-type,
#st-register-form .form-group.user-type,
#st-login-form .form-group.user-type,
#st-register-form .form-group:has(input[name="register_as"]),
#st-login-form .form-group:has(input[name="register_as"]),
#st-register-form .gdt-register-type-hidden,
#st-login-form .gdt-register-type-hidden {
    display: none !important;
}

body .buttonDiv,
body .buttonDivSignUp {
    display: flex;
    justify-content: center;
    width: 100%;
}

body .buttonDiv > div,
body .buttonDivSignUp > div,
body .buttonDiv iframe,
body .buttonDivSignUp iframe {
    margin-right: auto;
    margin-left: auto;
}

.gdt-partner-signup-page .gdt-signup-shell {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.gdt-partner-signup-page .gdt-signup-shell .row {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gdt-partner-signup-page .gdt-partner-signup-col {
    float: none;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.gdt-partner-signup-page .gdt-auth-box {
    width: 100%;
    max-width: 700px;
    margin: 16px auto 24px;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.gdt-partner-signup-page .traveler-signup-box {
    position: relative;
}

.gdt-partner-signup-page .traveler-signup-loading {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.gdt-partner-signup-page .traveler-signup-loading.is-active {
    display: flex;
}

.gdt-partner-signup-page .traveler-signup-loading__spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(11, 94, 215, 0.18);
    border-top-color: #0b5ed7;
    border-radius: 50%;
    animation: gdt-signup-spin 0.8s linear infinite;
}

.gdt-partner-signup-page .traveler-signup-loading__text {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
}

.gdt-partner-signup-page .register_form.is-submitting button[type="submit"] {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .gdt-partner-signup-page .gdt-auth-box {
        margin: 12px auto 20px;
        padding: 20px 14px;
    }
}

@keyframes gdt-signup-spin {
    to {
        transform: rotate(360deg);
    }
}

.gdt-partner-settings {
    font-family: Inter, sans-serif;
    color: #1f2937;
    background: #F9FAFB;
}

.gdt-partner-settings *,
.gdt-partner-settings input,
.gdt-partner-settings textarea,
.gdt-partner-settings select,
.gdt-partner-settings button {
    font-family: Inter, sans-serif !important;
}

body .st-dashboard .dashboard-content,
body .page-template-template-user .dashboard-content {
    background: #F9FAFB;
}

body .page-wrapper .page-content:has(.gdt-partner-settings),
body .page-wrapper .page-content:has(.gdt-partner-settings) .st_content {
    min-height: 100vh;
    background: #F9FAFB !important;
}

.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot {
    margin-top: 16px;
}

.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot:first-child {
    margin-top: 0;
}

.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d6e2f1;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
}

.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot.active a,
.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot a:hover {
    color: #ffffff;
}

.sidebar-wrapper .sidebar-header .gdt-sidebar-settings-slot .st-icon-menu {
    width: 18px;
    height: 18px;
    margin: 0;
}

.gdt-settings-heading {
    margin-bottom: 22px;
}

.gdt-settings-heading h2 {
    margin: 0 0 4px;
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
}

.gdt-settings-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.gdt-settings-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.gdt-settings-card {
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
}

.gdt-settings-card-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.gdt-settings-card-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.gdt-settings-card-title,
.gdt-status-active,
.gdt-status-inactive,
.gdt-status-pending {
    font-size: 15px;
    font-weight: 600;
}

.gdt-status-active {
    color: #10b981;
}

.gdt-status-inactive {
    color: #ef4444;
}

.gdt-status-pending {
    color: #e8722a;
}

.gdt-settings-card-sub,
.gdt-settings-card-meta {
    color: #6b7280;
    font-size: 12px;
}

.gdt-settings-card-meta {
    display: flex;
    justify-content: space-between;
}

.gdt-settings-card-meta strong {
    color: #e8722a;
}

.gdt-settings-progress {
    height: 6px;
    margin: 10px 0 6px;
    overflow: hidden;
    background: #f0f2f5;
    border-radius: 99px;
}

.gdt-settings-progress div {
    height: 100%;
    background: #e8722a;
    border-radius: 99px;
}

.gdt-partner-summary-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 14px 24px;
    min-height: 158px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
}

.gdt-partner-summary-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    height: 100%;
    padding-right: 28px;
    border-right: 1px solid #e5e7eb;
}

.gdt-partner-summary-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    overflow: hidden;
    color: #ff5a1f;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-summary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-partner-summary-person {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.gdt-partner-summary-person strong {
    color: #001f4f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.gdt-partner-summary-person small {
    overflow: hidden;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-partner-summary-meta {
    display: grid;
    grid-template-columns: minmax(86px, 0.75fr) minmax(82px, 0.7fr) minmax(108px, 0.95fr) minmax(88px, 0.75fr) minmax(150px, 1.25fr);
    gap: 26px 28px;
    align-items: start;
}

.gdt-partner-summary-item {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.gdt-partner-summary-item small {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.gdt-partner-summary-item strong {
    min-width: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.gdt-summary-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: max-content;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.gdt-summary-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.gdt-summary-status.is-active {
    color: #16a34a;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.gdt-summary-status.is-active span {
    background: #16a34a;
}

.gdt-summary-status.is-pending {
    color: #b45309;
    background: #fef3c7;
    border: 1px solid #fde68a;
}

.gdt-summary-status.is-pending span {
    background: #f59e0b;
}

.gdt-summary-status.is-inactive {
    color: #dc2626;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.gdt-summary-status.is-inactive span {
    background: #dc2626;
}

.gdt-summary-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gdt-summary-rating span {
    color: #f59e0b;
    font-size: 14px;
    line-height: 1;
}

.gdt-summary-rating em {
    color: #64748b;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}

.gdt-summary-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gdt-summary-services em {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 12px;
    font-style: normal;
    line-height: 1;
}

.gdt-partner-summary-item.is-progress {
    grid-column: 1 / span 2;
    max-width: 220px;
}

.gdt-summary-progress {
    display: block;
    width: 94px;
    height: 4px;
    overflow: hidden;
    background: #edf1f5;
    border-radius: 99px;
}

.gdt-summary-progress span {
    display: block;
    height: 100%;
    background: #f59e0b;
    border-radius: inherit;
}

.gdt-partner-summary-item.is-progress strong {
    margin-left: 104px;
    margin-top: -19px;
}

.gdt-settings-tabs-wrap {
    overflow: hidden;
    background: #ffffff;
    
}

.gdt-settings-tab-nav {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding: 0 6px;
    background: #F9FAFB;
    border-bottom: 1px solid #e2e6ea;
}

.gdt-settings-tab-btn {
    padding: 14px 18px;
    color: #6b7280;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    white-space: nowrap;
}

.gdt-partner-settings .gdt-settings-tab-nav button.gdt-settings-tab-btn {
    background: transparent;
    background-color: transparent;
}

.gdt-settings-tab-btn.active {
    color: #e8722a;
    border-bottom-color: #e8722a;
    font-weight: 600;
}

.gdt-settings-tab-panel {
    display: none;
    padding: 28px;
}

.gdt-settings-tab-panel.active {
    display: block;
    background: #F9FAFB;
}



.gdt-settings-alert,
.gdt-settings-note {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.gdt-settings-alert-success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.gdt-settings-alert-danger {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.gdt-settings-note {
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.gdt-form-section {
    margin-bottom: 24px;
}

.gdt-form-section h4,
#gdt-payment h4,
.gdt-notify-settings h4 {
    margin: 40px 0 12px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}
.gdt-status-pill {
width:40%;
}


.gdt-form-card,
.gdt-cert-card,
.gdt-membership-review {
    padding: 18px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.gdt-form-card label,
.gdt-form-card p label,
.gdt-notify-settings p,
.gdt-pay-verify small {
    color: #6b7280;
    font-size: 12px;
}

.gdt-form-card label span {
    color: #1d1c1c;
}

.gdt-form-card input,
.gdt-form-card select,
.gdt-form-card textarea {
    width: 100%;
    margin: 6px 0 14px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
}

.gdt-form-card textarea {
    min-height: 120px;
}

.gdt-form-card input.is-disabled,
.gdt-form-card input:disabled {
    color: #9ca3af;
    background: #f3f4f6;
    cursor: not-allowed;
}

.gdt-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gdt-form-grid p {
    margin: 0;
}

.gdt-form-grid .gdt-form-wide {
    grid-column: 1 / -1;
}

.gdt-gst-registered {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    color: #374151;
    font-size: 12px;
}

.gdt-gst-registered span {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.gdt-gst-registered strong {
    margin-left: 2px;
    color: #e8722a;
    font-size: 12px;
}

.gdt-gst-registered label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #374151;
    font-size: 12px;
    cursor: pointer;
}

.gdt-gst-registered input[type="radio"] {
    position: relative;
    box-sizing: border-box;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    display: inline-block !important;
    flex: 0 0 12px;
    min-width: 12px;
    max-width: 12px;
    width: 12px !important;
    min-height: 12px;
    max-height: 12px;
    height: 12px !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #cfd6df;
    border-radius: 50%;
    background: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.gdt-gst-registered input[type="radio"]::before {
    content: none !important;
    display: none !important;
}

.gdt-gst-registered input[type="radio"]:checked {
    border-color: #f05a1a !important;
    background: #f05a1a !important;
}

.gdt-gst-registered input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3px;
    height: 6px;
    border: solid #ffffff;
    border-width: 0 1.4px 1.4px 0;
    transform: translate(-50%, -58%) rotate(45deg);
}

#gdt-business .gdt-form-section:first-of-type,
#gdt-legal .gdt-form-section:first-of-type {
    margin-top: 0;
}

#gdt-business .gdt-form-section h4,
#gdt-legal .gdt-form-section h4 {
    margin: 0 0 18px;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

#gdt-business .gdt-form-card,
#gdt-legal .gdt-form-card {
    padding: 18px 24px;
    border-color: #d8cec5;
}

#gdt-business .gdt-form-card label,
#gdt-business .gdt-form-card p label,
#gdt-legal .gdt-form-card label,
#gdt-legal .gdt-form-card p label {
    color: #111827;
    font-weight: 500;
}

#gdt-business .gdt-form-card input,
#gdt-business .gdt-form-card select,
#gdt-business .gdt-form-card textarea,
#gdt-legal .gdt-form-card input,
#gdt-legal .gdt-form-card select,
#gdt-legal .gdt-form-card textarea {
    margin: 6px 0 16px;
    padding: 8px 10px;
    border-color: #cfc7bf;
    line-height: 18px;
}

#gdt-business .gdt-form-card textarea,
#gdt-legal .gdt-form-card textarea {
    min-height: 78px;
    resize: vertical;
}

#gdt-business .gdt-form-grid,
#gdt-legal .gdt-form-grid {
    gap: 0 28px;
}

#gdt-business .gdt-gst-registered,
#gdt-legal .gdt-gst-registered {
    gap: 14px;
    min-height: 58px;
}

#gdt-business .gdt-gst-registered label,
#gdt-legal .gdt-gst-registered label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #1E293B;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

#gdt-business .gdt-form-card .gdt-gst-registered input[type="radio"],
#gdt-legal .gdt-form-card .gdt-gst-registered input[type="radio"] {
    box-sizing: border-box;
    flex: 0 0 12px;
    width: 12px !important;
    min-width: 12px !important;
    max-width: 12px !important;
    height: 12px !important;
    min-height: 12px !important;
    max-height: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    line-height: 1 !important;
    vertical-align: middle;
}

#gdt-business .gdt-tax-section,
#gdt-legal .gdt-tax-section {
    margin-top: 28px;
}

#gdt-business .gdt-tax-grid,
#gdt-legal .gdt-tax-grid {
    align-items: end;
}

#gdt-business .gdt-tax-grid .gdt-form-wide,
#gdt-legal .gdt-tax-grid .gdt-form-wide {
    grid-column: 1 / 2;
}

.gdt-business-type-heading,
.gdt-additional-registration-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 8px;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.2;
}

.gdt-business-type-heading span,
.gdt-additional-registration-heading span {
    font-weight: 500;
}

.gdt-business-type-heading strong {
    color: #e8722a;
    font-size: 12px;
    font-weight: 700;
}

.gdt-business-type-heading small {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 400;
}

.gdt-business-types,
.gdt-additional-registrations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 0 0 16px;
}

.gdt-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
}

.gdt-business-types label,
.gdt-additional-registrations label {
    display: flex;
    position: relative;
    align-items: center;
    gap: 0;
    min-height: 34px;
    margin: 0;
    padding: 7px 10px;
    color: #1E293B;
    background: #ffffff;
    border: 1px solid #d8cec5;
    border-radius: 6px;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.gdt-business-types label:hover,
.gdt-additional-registrations label:hover {
    border-color: #f97316;
}

.gdt-business-types label.is-selected,
.gdt-business-types label:has(input:checked),
.gdt-additional-registrations label.is-selected,
.gdt-additional-registrations label:has(input:checked) {
    color: #111827;
    background: #fff7ed;
    border-color: #ff4b00;
}

.gdt-business-types input[type="checkbox"],
.gdt-additional-registrations input[type="checkbox"] {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.gdt-business-types input[type="checkbox"]:checked,
.gdt-additional-registrations input[type="checkbox"]:checked {
    background: transparent !important;
    border-color: transparent !important;
}

.gdt-business-types input[type="checkbox"]:checked::after,
.gdt-additional-registrations input[type="checkbox"]:checked::after {
    content: none !important;
    display: none !important;
}

.gdt-business-types label span,
.gdt-additional-registrations label span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding-left: 0;
}

.gdt-business-types label span::before,
.gdt-additional-registrations label span::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    border: 1px solid #cfc7bf;
    border-radius: 2px;
}

.gdt-business-types label:has(input:checked) span::before,
.gdt-additional-registrations label:has(input:checked) span::before {
    background-color: #ff4b00;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.2 4.1 3.1 6 6.8 2' fill='none' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    border-color: #ff4b00;
}

.gdt-pay-verify,
.gdt-pay-schedule {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.gdt-pay-verify p {
    margin: 4px 0 0;
}

.gdt-cert-card {
    padding: 26px 28px;
    border-color: #d9e1ea;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.gdt-cert-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.gdt-cert-heading {
    display: flex;
    gap: 14px;
    align-items: center;
}

.gdt-cert-heading h4 {
    margin: 0 0 4px;
    color: #1E293B;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.488px;
    text-transform: uppercase;
}

.gdt-cert-heading small {
    display: block;
    color: #64748b;
    font-size: 13px;
    line-height: 20px;
}

.gdt-cert-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 40px;
    height: 50px;
    background: #FFF6E6;
    border-radius: 8px;
    color: #1d2d4d;
}

.gdt-cert-heading-icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

.gdt-file-btn.gdt-cert-add-btn {
    min-height: 40px;
    padding: 9px 18px;
    background: linear-gradient(180deg, #ff7433 0%, #fb4f14 100%);
    border-color: #fb4f14;
    box-shadow: 0 8px 18px rgba(251, 79, 20, 0.16);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.gdt-cert-body {
    display: grid;
    gap: 16px;
}

.gdt-cert-list {
    display: grid;
    gap: 16px;
}

.gdt-cert-item {
    display: grid;
    grid-template-columns: 46px minmax(180px, 1fr) minmax(210px, auto);
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.gdt-cert-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transform: translateY(-1px);
}

.gdt-cert-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    min-height: 30px;
    padding: 6px 11px;
    color: #087f3d;
    background: #e8f8ed;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.gdt-cert-status.is-not_submitted,
.gdt-cert-status.is-not-submitted,
.gdt-cert-status.is-failed {
    color: #991b1b;
    background: #fee2e2;
}

.gdt-cert-file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #1d2d4d;
    background: #eafaf0;
    border: 0;
    border-radius: 8px;
}

.gdt-cert-file-icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

.gdt-cert-details {
    min-width: 0;
}

.gdt-cert-details strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #0f172a;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-cert-date-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    align-items: center;
    margin-top: 7px;
}

.gdt-cert-details p,
.gdt-cert-details a {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 7px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 18px;
}

.gdt-cert-date-row p {
    margin: 0;
}

.gdt-cert-details a {
    color: #0f62fe;
    text-decoration: none;
}

.gdt-cert-date-icon,
.gdt-cert-view-icon,
.gdt-cert-shield-icon {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
}

.gdt-cert-date-icon {
    border: 2px solid #7b8494;
    border-radius: 3px;
}

.gdt-cert-date-icon::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 4px;
    border-top: 2px solid #7b8494;
}

.gdt-cert-view-icon {
    border: 2px solid #0f62fe;
    border-radius: 50% 50% 45% 45%;
    transform: scaleX(1.35);
}

.gdt-cert-view-icon::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 4px;
    height: 4px;
    background: #0f62fe;
    border-radius: 50%;
}

.gdt-cert-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.gdt-cert-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-height: 26px;
    padding: 0;
    color: #b91c1c;
    background: #ffffff;
    border: 1px solid #fecaca;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.gdt-cert-delete span {
    display: block;
    margin-top: -2px;
    line-height: 1;
}

.gdt-cert-delete:hover {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fca5a5;
}

.gdt-cert-empty {
    padding: 32px;
    color: #6b7280;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    text-align: center;
}

.gdt-cert-empty strong {
    display: block;
    color: #111827;
    font-size: 14px;
}

.gdt-cert-empty p {
    margin: 8px 0 0;
}

.gdt-cert-pending {
    margin-top: 16px;
    padding: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
}

.gdt-cert-pending[hidden] {
    display: none;
}

.gdt-cert-pending-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.gdt-cert-pending-head strong {
    color: #1e293b;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.gdt-cert-pending-head span {
    color: #64748b;
    font-size: 12px;
    line-height: 18px;
}

.gdt-cert-pending-list {
    display: grid;
    gap: 8px;
}

.gdt-cert-pending-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: end;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.gdt-cert-pending-fields {
    display: grid;
    grid-template-columns: minmax(180px, 1.3fr) minmax(150px, 0.85fr) minmax(150px, 0.85fr) auto;
    gap: 10px;
    align-items: start;
    min-width: 0;
}

.gdt-cert-pending-field {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
}

.gdt-cert-pending-field input {
    width: 100%;
    min-width: 0;
    height: 38px;
    box-sizing: border-box;
    padding: 8px 10px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    box-shadow: none;
}

.gdt-cert-pending-field input:focus {
    border-color: #ff5a1f;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.gdt-cert-pending-upload-wrap {
    display: grid;
    gap: 4px;
    align-self: start;
    margin-top: 16px;
}

.gdt-cert-pending-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    width: 88px;
    height: 38px;
    box-sizing: border-box;
    padding: 8px 14px;
    color: #ffffff;
    background: linear-gradient(180deg, #ff7433 0%, #fb4f14 100%);
    border: 1px solid #fb4f14;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(251, 79, 20, 0.14);
}

.gdt-cert-pending-upload:disabled {
    color: #94a3b8;
    background: #eef2f7;
    border-color: #d8e0e8;
    box-shadow: none;
    cursor: not-allowed;
}

.gdt-cert-pending-upload-note {
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
    white-space: nowrap;
}

.gdt-cert-pending-name {
    grid-column: 1 / 4;
    overflow: hidden;
    color: #0f172a;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.72;
}

.gdt-cert-pending-status {
    color: #087f3d;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.gdt-cert-pending-remove {
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    cursor: pointer;
}

.gdt-cert-pending-remove:hover {
    color: #dc2626;
}

.gdt-cert-secure-note {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
    color: #64748b;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.gdt-cert-shield-icon {
    width: 16px;
    height: 18px;
    border: 2px solid #34c207;
    border-radius: 8px 8px 10px 10px;
}

.gdt-cert-shield-icon::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 3px;
    height: 6px;
    border: solid #8a94a6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gdt-file-btn,
.gdt-primary-btn,
.gdt-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    
}

.gdt-primary-btn,
.gdt-file-btn {
    color: #131212;
    background: #fff;
    border: 1px solid #65a005;
}

.gdt-secondary-btn {
    color: #4b5563;
    background: #ffffff;
    border: 1px solid #d1d5db;
}

.gdt-hidden-file {
    display: none !important;
}

.gdt-membership-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gdt-membership-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.gdt-membership-card.is-selected {
    border-color: #ea580c;
    box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.2);
}

.gdt-membership-card .package-item,
.gdt-membership-card .item-member-ship {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.gdt-membership-card .item-member-ship .item-st .title,
.gdt-membership-card .item-member-ship .item-st .price,
.gdt-membership-card .item-member-ship .item-st .time-packpage,
.gdt-membership-card .item-member-ship .item-st .pricingContent,
.gdt-membership-card .item-member-ship .item-st .button-get,
.gdt-membership-card .package-item .package-head h2,
.gdt-membership-card .package-item .package-head .des,
.gdt-membership-card .package-item .price,
.gdt-membership-card .package-item .package-des,
.gdt-membership-card .package-item form {
    padding-left: 20px;
    padding-right: 20px;
}

.gdt-membership-card .item-member-ship .item-st .title,
.gdt-membership-card .package-item .package-head h2 {
    padding-top: 20px;
}

.gdt-membership-card .item-member-ship .item-st .button-get,
.gdt-membership-card .package-item form {
    padding-bottom: 20px;
}

.gdt-membership-review {
    margin-top: 18px;
}

.gdt-membership-alert {
    display: none;
    margin-top: 10px;
    color: #991b1b;
    font-size: 12px;
}

.gdt-membership-alert.is-visible {
    display: block;
}

.gdt-membership-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.gdt-care-host-approval {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d8dee6;
    border-radius: 8px;
}

.gdt-care-host-approval p {
    margin: 0;
    color: #001f4f;
    font-size: 14px;
    line-height: 1.5;
}

.gdt-care-host-approval .gdt-membership-alert {
    flex-basis: 100%;
    order: 3;
    margin-top: 0;
}

.gdt-care-host-approval .gdt-membership-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 10px;
    margin-top: 0;
}

.gdt-care-host-approval .gdt-secondary-btn,
.gdt-care-host-approval .gdt-primary-btn {
    min-width: 126px;
    height: 40px;
    padding: 0 18px;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
}

.gdt-care-host-approval .gdt-secondary-btn {
    color: #001f4f;
    background: #ffffff;
    border-color: #cfd7e2;
}

.gdt-care-host-approval .gdt-secondary-btn:hover,
.gdt-care-host-approval .gdt-secondary-btn:focus {
    color: #001f4f;
    background: #f8fafc;
    border-color: #aeb8c6;
}

.gdt-care-host-approval .gdt-primary-btn {
    min-width: 184px;
    color: #ffffff;
    background: #ff4b00;
    border-color: #ff4b00;
}

.gdt-care-host-approval .gdt-primary-btn:hover,
.gdt-care-host-approval .gdt-primary-btn:focus {
    color: #ffffff;
    background: #e84400;
    border-color: #e84400;
}

.gdt-membership-submit:disabled,
.gdt-membership-submit[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.gdt-agreement-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
}

.gdt-agreement-modal.is-open {
    display: flex;
}

.gdt-agreement-dialog {
    position: relative;
    width: min(560px, 100%);
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.gdt-agreement-dialog h3 {
    margin: 0 36px 12px 0;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

.gdt-agreement-dialog p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.gdt-agreement-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #6b7280;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.gdt-agreement-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.gdt-toggle {
    margin-bottom: 10px;
}

.gdt-partner-settings #gdt-profile .partner-page-title {
    display: none;
}

.gdt-partner-settings #gdt-profile {
    background: #f8fafc;
}

.gdt-partner-settings #gdt-profile .div-partner-page-title {
    margin: 0;
}

.gdt-partner-settings #gdt-profile .div-partner-page-title > .col-md-12,
.gdt-partner-settings #gdt-profile .div-partner-page-title > .col-md-12 > .row,
.gdt-partner-settings #gdt-profile .div-partner-page-title > .col-md-12 > .row > .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
    
}

.gdt-partner-settings #gdt-profile .gdt-profile-section {
    margin: 0 0 20px -50px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.gdt-partner-settings #gdt-profile .alert {
    margin-left: 0px;
    margin-right: 0;
    margin-bottom: 20px;
    width: auto;
}

.gdt-profile-membership{
    margin: 0 0 20px 0px !important;
}

.gdt-partner-settings > .gdt-profile-membership {
    margin: 0 0 24px !important;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: none;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
}

.gdt-membership-source {
    display: none !important;
}

.gdt-partner-settings > .gdt-profile-membership * {
    font-family: Inter, sans-serif;
    font-style: normal;
}

.gdt-membership-hero-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gdt-membership-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: #2563eb;
    background: #eef4ff;
    border-radius: 12px;
}

.gdt-membership-hero-icon svg,
.gdt-membership-detail-icon svg,
.gdt-membership-detail-note svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.gdt-membership-hero-head h4 {
    margin: 0 0 4px;
    color: #0f274d;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: none;
}

.gdt-membership-hero-head p {
    margin: 0;
    color: #64748b;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.gdt-membership-hero-divider {
    height: 1px;
    margin: 20px 0;
    background: #e2e8f0;
}

.gdt-membership-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gdt-membership-detail-card {
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dce3ec;
    border-radius: 10px;
}

.gdt-membership-detail-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.gdt-membership-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.gdt-membership-detail-icon svg {
    width: 22px;
    height: 22px;
}

.gdt-membership-detail-card.is-activation .gdt-membership-detail-icon {
    color: #2563eb;
    background: #edf4ff;
}

.gdt-membership-detail-card.is-expiration .gdt-membership-detail-icon {
    color: #169b69;
    background: #e9f8ef;
}

.gdt-membership-detail-card.is-time .gdt-membership-detail-icon {
    color: #e8892d;
    background: #fff1df;
}

.gdt-membership-detail-card.is-service .gdt-membership-detail-icon {
    color: #7967d8;
    background: #f0eaff;
}

.gdt-membership-detail-card small {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

.gdt-membership-detail-card strong {
    display: block;
    color: #061c3d;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    white-space: nowrap;
}

.gdt-membership-detail-note {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding-top: 22px;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.gdt-membership-detail-note span {
    flex: 0 0 auto;
}

.gdt-membership-detail-note span {
    color: currentColor;
}

.gdt-membership-detail-note svg {
    width: 18px;
    height: 18px;
}

.gdt-membership-detail-card.is-activation .gdt-membership-detail-note span {
    color: #2563eb;
}

.gdt-membership-detail-card.is-expiration .gdt-membership-detail-note span {
    color: #169b69;
}

.gdt-membership-detail-card.is-time .gdt-membership-detail-note span {
    color: #e8892d;
}

.gdt-membership-detail-card.is-service .gdt-membership-detail-note span {
    color: #8b5cf6;
}

.gdt-partner-settings > .gdt-profile-membership .gdt-profile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.gdt-partner-settings > .gdt-profile-membership .gdt-profile-section-head h4 {
    margin: 0;
    color: #052552;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info {
    padding: 0;
    background: #ffffff;
    border: 0;
    border-radius: 0;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row {
    margin: 0;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(1),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(2) {
    display: none;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) {
    display: grid;
    float: none;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5,
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p {
    margin: 0;
    text-align: left;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5 {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p {
    color: #111827;
    font-size: 14px;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(1),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(1) {
    grid-column: 1;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(2),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(2) {
    grid-column: 2;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3) {
    grid-column: 3;
    position: relative;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3)::before {
    content: "Time remaining";
    position: absolute;
    left: 0;
    top: -28px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(3),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(4) {
    grid-column: 4;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(1),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(2),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(3) {
    grid-row: 1;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(1),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(2),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3),
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(4) {
    grid-row: 2;
    min-height: 74px;
    padding: 18px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > .row > .col-sm-4:nth-child(3) p strong {
    font-weight: 700;
}

.gdt-partner-settings > .gdt-profile-membership .partner-package-info > a.btn[href*="member"],
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > a.btn[href*="membership"],
.gdt-partner-settings > .gdt-profile-membership .partner-package-info > a.btn[href*="package"] {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.gdt-partner-settings #gdt-profile .gdt-profile-section-head h4 {
    margin: 0;
    color: #052552;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-profile .gdt-profile-section-body > .row {
    margin-left: 0;
    margin-right: 0;
}

.gdt-partner-settings #gdt-profile .infor-st-setting {
    margin-top: 0;
}

.gdt-partner-settings #gdt-profile .infor-st-setting form > .row:first-child h4,
.gdt-partner-settings #gdt-profile .infor-st-setting form > .row:has(.st-line-bg) {
    display: none;
}

.gdt-partner-settings #gdt-profile .partner-package-info {
    padding: 0;
    background: #ffffff;
    border: 0;
    border-radius: 0;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row {
    margin: 0;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(1),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(2) {
    display: none;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) {
    display: grid;
    float: none;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5,
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p {
    margin: 0;
    text-align: left;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5 {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p {
    color: #111827;
    font-size: 14px;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(1),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(1) {
    grid-column: 1;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(2),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(2) {
    grid-column: 2;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3) {
    grid-column: 3;
    position: relative;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3)::before {
    content: "Time remaining";
    position: absolute;
    left: 0;
    top: -28px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(3),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(4) {
    grid-column: 4;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(1),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(2),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5:nth-of-type(3) {
    grid-row: 1;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(1),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(2),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(3),
.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p:nth-of-type(4) {
    grid-row: 2;
    min-height: 74px;
    padding: 18px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p strong {
    font-weight: 700;
}

.gdt-partner-settings #gdt-profile .partner-package-info > a.btn[href*="member"],
.gdt-partner-settings #gdt-profile .partner-package-info > a.btn[href*="membership"],
.gdt-partner-settings #gdt-profile .partner-package-info > a.btn[href*="package"] {
    display: none;
}

.gdt-partner-settings #gdt-profile .infor-st-setting .form-group:has(input[name="st_paypal_email"]) {
    display: none;
}
.gdt-partner-settings #gdt-profile .gdt-profile-contact-section {
    margin: 0 0 20px;
    padding: 24px 24px 40px;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 7px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-section h4 {
    margin: 0 0 20px;
    padding-bottom: 13px;
    color: #071f44;
    border-bottom: 1px solid #edf0f3;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-card {
    background: #ffffff;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 28px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid p {
    margin: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid label {
    display: block;
    margin: 0 0 7px;
    color: #071f44;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid label span {
    color: #071f44;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid .form-control {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 8px 12px;
    color: #374151;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-grid textarea.form-control {
    min-height: 104px;
    resize: vertical;
}

.gdt-partner-settings #gdt-profile .gdt-profile-contact-bio {
    grid-column: 1 / -1;
}
.gdt-partner-settings #gdt-profile .gdt-profile-picture-section,
.gdt-partner-settings #gdt-profile .gdt-profile-password-card {
    margin: 0 0 20px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 7px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-section h4,
.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-profile-section-head h4 {
    margin: 0 0 20px;
    padding-bottom: 13px;
    color: #071f44;
    border-bottom: 1px solid #edf0f3;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-card {
    display: grid;
    grid-template-columns: 58px auto 1fr;
    align-items: center;
    gap: 18px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    color: #9ca3af;
    background: #e5e7eb;
    border-radius: 50%;
    font-size: 9px;
    line-height: 1;
    text-align: center;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-copy {
    display: grid;
    gap: 3px;
    min-width: 92px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-copy strong {
    color: #071f44;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-copy small {
    color: #64748b;
    font-size: 11px;
    line-height: 14px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-control {
    display: flex;
    align-items: center;
}

.gdt-partner-settings #gdt-profile .gdt-profile-picture-control .btn-file {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 32px;
    padding: 0 14px;
    color: #071f44;
    background: #ffffff;
    border: 1px solid #071f44;
    border-radius: 2px;
    box-shadow: none;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card {
    margin-bottom: 44px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-profile-section-head {
    margin: 0;
    border-bottom: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-profile-section-body {
    display: block;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid p,
.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid p.is-current {
    grid-column: auto;
    margin: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid label {
    margin: 0 0 8px;
    color: #071f44;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid .form-control {
    height: 34px;
    padding: 6px 10px;
    border: 1px solid #d8e0e8;
    border-radius: 2px;
    box-shadow: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    height: 38px;
    padding: 0 16px;
    color: #374151;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.gdt-partner-settings #gdt-profile .gdt-profile-personal .row,
.gdt-partner-settings #gdt-profile .gdt-profile-representative .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 12px;
}

.sidebar-wrapper .sidebar-header .user-upgrade {
    display: none !important;
}
.sidebar-wrapper .sidebar-header:has(.gdt-sidebar-settings-slot) {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}

.gdt-traveler-profile-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: Inter, sans-serif;
}

.gdt-profile-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #111827;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
}

.gdt-profile-menu__toggle i {
    font-size: 26px;
    line-height: 1;
}

.gdt-profile-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 9999;
    min-width: 150px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.gdt-profile-menu__dropdown[hidden] {
    display: none;
}

.gdt-profile-menu__item {
    display: block;
    padding: 12px 16px;
    color: #052552;
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
}

.gdt-profile-menu__item:hover,
.gdt-profile-menu__item:focus {
    color: #052552;
    background: #f5f7fb;
    text-decoration: none;
}

.gdt-profile-menu__details {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.gdt-profile-menu__details-name,
.gdt-profile-menu__details-email {
    display: block;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-profile-menu__details-name {
    color: #052552;
    font-size: 14px;
    font-weight: 700;
}

.gdt-profile-menu__details-email {
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.gdt-traveler-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gdt-traveler-cart > li {
    margin: 0;
    list-style: none;
}

.gdt-traveler-cart .mini-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gdt-traveler-cart .cart-caret {
    position: absolute;
    top: -7px;
    right: -8px;
    z-index: 2;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e8722a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.gdt-traveler-cart .dropdown-menu {
    margin-top: 10px;
}


.gdt-partner-settings #gdt-profile .gdt-profile-personal .row::before,
.gdt-partner-settings #gdt-profile .gdt-profile-personal .row::after,
.gdt-partner-settings #gdt-profile .gdt-profile-representative .row::before,
.gdt-partner-settings #gdt-profile .gdt-profile-representative .row::after {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-personal .row > [class*="col-"],
.gdt-partner-settings #gdt-profile .gdt-profile-representative .row > [class*="col-"] {
    display: contents;
    float: none;
    width: auto;
    padding: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-personal .row > [class*="col-"]:has(textarea[name="st_bio"]) {
    display: contents;
}

.gdt-partner-settings #gdt-profile .gdt-profile-personal .gdt-profile-bio-row {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.gdt-partner-settings #gdt-profile .form-group {
    margin-bottom: 18px;
}

.gdt-partner-settings #gdt-profile .form-group label,
.gdt-partner-settings #gdt-profile .checkbox label {
    color: #071f44;
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-profile .form-control {
    height: 40px;
    border-color: #d8e0e8;
    border-radius: 4px;
    box-shadow: none;
}

.gdt-partner-settings #gdt-profile textarea.form-control {
    height: auto;
    min-height: 104px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-visibility .form-group {
    margin-bottom: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-visibility .checkbox {
    margin: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-visibility label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
}

.gdt-partner-settings #gdt-profile .gdt-profile-visibility .st-line-bg {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-avatar-section .row {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.gdt-partner-settings #gdt-profile .gdt-profile-avatar-section .row::before,
.gdt-partner-settings #gdt-profile .gdt-profile-avatar-section .row::after {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-avatar-section .row > [class*="col-"] {
    float: none;
    width: auto;
    padding: 0;
}

.gdt-partner-settings #gdt-profile .st-change-avatar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gdt-partner-settings #gdt-profile .st-change-avatar .user-profile-avatar img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.gdt-partner-settings #gdt-profile .st-change-avatar .st-title p {
    margin: 0;
    color: #64748b;
}

.gdt-partner-settings #gdt-profile .st-change-avatar .st-title .title {
    color: #071f44;
    font-weight: 700;
}

.gdt-partner-settings #gdt-profile .setting-avatar {
    max-width: 420px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-location-section .gdt-profile-section-body > .row:first-child {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-location-section .gdt-profile-section-body > .row:last-child {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-location-section .gdt-profile-section-body > .row:last-child::before,
.gdt-partner-settings #gdt-profile .gdt-profile-location-section .gdt-profile-section-body > .row:last-child::after {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-location-section .gdt-profile-section-body > .row:last-child > [class*="col-"] {
    display: contents;
    float: none;
    width: auto;
    padding: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-actions-row {
    display: flex;
    justify-content: flex-end !important;
    width: calc(100% + 50px);
    margin: -10px 0 0 -38px;
    padding: 24px 0 44px;
    background: #F9FAFB;
}

.gdt-partner-settings #gdt-profile .gdt-profile-actions-row .form-group {
    width: 100%;
    margin: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-actions-row .col-md-12,
.gdt-partner-settings #gdt-profile .gdt-profile-actions-row .form-group.form-group-icon-left,
.gdt-partner-settings #gdt-profile .gdt-profile-actions-row .form-group.form-group-icon-left.form-group-filled {
    display: flex;
    justify-content: flex-end !important;
    width: 100%;
    text-align: right !important;
}

.gdt-partner-settings #gdt-profile > .gdt-primary-btn,
.gdt-partner-settings #gdt-profile input[name="st_btn_update"] {
    text-transform: none;
}

.gdt-partner-settings #gdt-profile input[name="st_btn_update"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: none !important;
    min-width: 120px;
    height: 40px;
    margin: 0 0 0 auto !important;
    padding: 0 15px;
    color: #ffffff;
    background: #ff4b00;
    border: 1px solid #ff4b00;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.gdt-partner-settings #gdt-profile input[name="st_btn_update"]:hover,
.gdt-partner-settings #gdt-profile input[name="st_btn_update"]:focus {
    color: #ffffff;
    background: #e84400;
    border-color: #e84400;
    box-shadow: none;
    outline: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password-source,
.gdt-partner-settings #gdt-profile .infor-st-setting:has(input[name="btn_update_pass"]) {
    display: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password {
    padding: 22px 24px;
    border-color: #d8dee6;
    border-radius: 8px;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password .gdt-profile-section-head {
    margin-bottom: 16px;
    border-bottom: 0;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password .gdt-profile-section-head h4 {
    color: #001f4f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-profile .gdt-profile-password .gdt-profile-section-body {
    display: grid;
    gap: 16px;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid p {
    margin: 0;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid p.is-current {
    grid-column: 1 / -1;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid label {
    display: block;
    margin: 0 0 10px;
    color: #001f4f;
    font-size: 14px;
    font-weight: 500;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid label span {
    color: #e8722a;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid .form-control {
    width: 100%;
    height: 36px;
    padding: 6px 13px;
    color: #001f4f;
    border: 1px solid #c9c1b8;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid .form-control::placeholder {
    color: #6b7280;
}

.gdt-partner-settings #gdt-profile .gdt-password-grid .form-control:focus {
    border-color: #9aa7b8;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
    outline: 0;
}

.gdt-partner-settings #gdt-profile .gdt-password-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
}

.gdt-partner-settings #gdt-profile .gdt-password-actions .btn {
    min-width: 163px;
    height: 40px;
    color: #001f4f;
    background: #ffffff;
    border: 1px solid #cfd7e2;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
}

.gdt-partner-settings #gdt-profile .gdt-password-actions .btn:hover,
.gdt-partner-settings #gdt-profile .gdt-password-actions .btn:focus {
    color: #001f4f;
    background: #f8fafc;
    border-color: #aeb8c6;
}

.gdt-partner-settings #gdt-security .infor-st-setting h4 {
    margin: 0 0 28px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-security .form-group label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-security .form-control {
    height: 40px;
    border-color: #d8e0e8;
    border-radius: 3px;
    box-shadow: none;
}

.gdt-partner-settings #gdt-security .st-line-bg {
    margin: 20px 0 14px;
}

.gdt-partner-settings #gdt-business > form > .gdt-primary-btn,
.gdt-partner-settings #gdt-legal > form > .gdt-primary-btn,
.gdt-partner-settings #gdt-payment .gdt-pay-schedule .gdt-primary-btn,
.gdt-partner-settings #gdt-care-host > form > .gdt-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 120px;
    height: 40px;
    margin: 24px 0 44px auto;
    padding: 0 15px;
    color: #ffffff;
    background: #ff4b00;
    border: 1px solid #ff4b00;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}

.gdt-partner-settings #gdt-business > form > .gdt-primary-btn:hover,
.gdt-partner-settings #gdt-business > form > .gdt-primary-btn:focus,
.gdt-partner-settings #gdt-legal > form > .gdt-primary-btn:hover,
.gdt-partner-settings #gdt-legal > form > .gdt-primary-btn:focus,
.gdt-partner-settings #gdt-payment .gdt-pay-schedule .gdt-primary-btn:hover,
.gdt-partner-settings #gdt-payment .gdt-pay-schedule .gdt-primary-btn:focus,
.gdt-partner-settings #gdt-care-host > form > .gdt-primary-btn:hover,
.gdt-partner-settings #gdt-care-host > form > .gdt-primary-btn:focus {
    color: #ffffff;
    background: #e84400;
    border-color: #e84400;
    box-shadow: none;
    outline: 0;
}

.gdt-partner-settings #gdt-payment .gdt-pay-verify > div,
.gdt-partner-settings #gdt-security form > .row:last-child .col-md-12,
.gdt-partner-settings #gdt-security form > .row:last-child .form-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 900px) {
    .gdt-partner-summary-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .gdt-partner-summary-identity {
        min-height: 82px;
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .gdt-partner-summary-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gdt-settings-cards,
    .gdt-membership-boxes,
    .gdt-business-types,
    .gdt-additional-registrations,
    .gdt-partner-settings #gdt-profile .gdt-profile-personal .row,
    .gdt-partner-settings #gdt-profile .gdt-profile-representative .row,
    .gdt-partner-settings #gdt-profile .gdt-profile-contact-grid,
    .gdt-partner-settings #gdt-profile .gdt-password-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gdt-membership-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gdt-cert-item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .gdt-cert-file-icon {
        width: 46px;
        height: 46px;
    }

    .gdt-cert-actions {
        grid-column: 2;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .gdt-cert-pending-item {
        grid-template-columns: 1fr auto auto;
    }

    .gdt-cert-pending-fields {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr auto;
    }

    .gdt-cert-pending-field-title {
        grid-column: 1 / -1;
    }

    .gdt-cert-pending-name {
        grid-column: 1 / 3;
    }
}

@media (max-width: 640px) {
    .gdt-care-host-approval {
        align-items: stretch;
        flex-direction: column;
    }

    .gdt-care-host-approval .gdt-membership-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .gdt-partner-summary-card {
        padding: 18px;
    }

    .gdt-partner-summary-meta {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gdt-partner-summary-item.is-services,
    .gdt-partner-summary-item.is-progress {
        grid-column: 1 / -1;
    }

    .gdt-settings-cards,
    .gdt-form-grid,
    .gdt-membership-boxes,
    .gdt-business-types,
    .gdt-additional-registrations,
    .gdt-partner-settings #gdt-profile .gdt-profile-personal .row,
    .gdt-partner-settings #gdt-profile .gdt-profile-representative .row,
    .gdt-partner-settings #gdt-profile .gdt-profile-contact-grid,
    .gdt-partner-settings #gdt-profile .gdt-password-grid {
        grid-template-columns: 1fr;
    }

    .gdt-partner-settings > .gdt-profile-membership {
        padding: 22px;
    }

    .gdt-membership-hero-head {
        align-items: flex-start;
        gap: 14px;
    }

    .gdt-membership-hero-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .gdt-membership-hero-head h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .gdt-membership-hero-head p {
        font-size: 14px;
        line-height: 22px;
    }

    .gdt-membership-detail-grid {
        grid-template-columns: 1fr;
    }

    .gdt-pay-verify,
    .gdt-pay-schedule {
        align-items: stretch;
        flex-direction: column;
    }

    .gdt-cert-card {
        padding: 18px;
    }

    .gdt-cert-header,
    .gdt-cert-heading,
    .gdt-cert-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gdt-cert-heading {
        gap: 12px;
    }

    .gdt-cert-heading h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .gdt-cert-heading small,
    .gdt-cert-delete,
    .gdt-cert-status {
        font-size: 13px;
    }

    .gdt-file-btn.gdt-cert-add-btn,
    .gdt-cert-delete {
        width: 100%;
    }

    .gdt-cert-item {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 16px;
    }

    .gdt-cert-file-icon {
        width: 46px;
        height: 46px;
    }

    .gdt-cert-actions {
        grid-column: 1;
        justify-content: flex-start;
    }

    .gdt-cert-pending-head,
    .gdt-cert-pending-item {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .gdt-cert-pending-fields {
        grid-template-columns: 1fr;
    }

    .gdt-cert-pending-name {
        grid-column: 1;
    }

    .gdt-cert-pending-status,
    .gdt-cert-pending-upload,
    .gdt-cert-pending-remove {
        justify-self: flex-start;
    }

    .gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) h5,
    .gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .gdt-partner-settings #gdt-profile .partner-package-info > .row > .col-sm-4:nth-child(3) p {
        min-height: 0;
    }

    .gdt-partner-settings #gdt-profile .infor-st-setting form > .row:nth-of-type(2) {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.infor-st-setting {
    background: #F9FAFB !important;
}


#gdt-business,
#gdt-legal{
    background: #F9FAFB !important;
    margin-left: -20px;
}

body.modal-open {
    overflow: hidden;
}

body .modal-backdrop {
    z-index: 99998 !important;
}

/* Volunteer single program page */
.gdt-volunteer-single {
    --gdt-volunteer-ink: #111827;
    --gdt-volunteer-muted: #5f574c;
    --gdt-volunteer-line: #e5e7eb;
    --gdt-volunteer-green: #257a35;
    --gdt-volunteer-green-soft: #e6f5ea;
    --gdt-volunteer-orange: #f39a22;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-family: Inter, sans-serif;
    color: var(--gdt-volunteer-ink);
    background: #f7f8fa;
}

#st-content-wrapper.gdt-volunteer-single {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.gdt-volunteer-single *,
.gdt-volunteer-single button,
.gdt-volunteer-single input,
.gdt-volunteer-single select {
    font-family: Inter, sans-serif;
}

.gdt-gallery-is-open {
    overflow: hidden;
}
.gdt-volunteer-single .container {
    width: min(100%, 1220px);
    padding-right: 58px;
    padding-left: 58px;
}

.gdt-volunteer-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
    height: 430px;
    margin: 0;
    overflow: hidden;
    background: #dde5ea;
}

.gdt-volunteer-single__hero--count-1 {
    display: block;
}

.gdt-volunteer-single__hero--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
}

.gdt-volunteer-single__hero-item {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
}

.gdt-volunteer-single__hero-item:first-child {
    grid-row: 1 / -1;
}

.gdt-volunteer-single__hero--count-1 .gdt-volunteer-single__hero-item,
.gdt-volunteer-single__hero--count-2 .gdt-volunteer-single__hero-item:first-child {
    grid-row: auto;
}

.gdt-volunteer-single__hero-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.gdt-volunteer-single__hero-button:focus-visible {
    outline: 3px solid #ff5a00;
    outline-offset: -3px;
}

.gdt-volunteer-single__hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.gdt-volunteer-single__hero-button:hover img,
.gdt-volunteer-single__hero-button:focus-visible img {
    transform: scale(1.025);
}

.gdt-volunteer-single__hero-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.58);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.gdt-volunteer-single__gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.gdt-volunteer-single__gallery-modal.is-open {
    display: flex;
}

.gdt-volunteer-single__gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.86);
}

.gdt-volunteer-single__gallery-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1080px);
    max-height: calc(100vh - 56px);
}

.gdt-volunteer-single__gallery-frame {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
    margin: 0;
}

.gdt-volunteer-single__gallery-frame img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 112px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.gdt-volunteer-single__gallery-frame figcaption {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.gdt-volunteer-single__gallery-close,
.gdt-volunteer-single__gallery-nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.gdt-volunteer-single__gallery-close {
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    font-size: 28px;
    line-height: 1;
}

.gdt-volunteer-single__gallery-nav {
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    font-size: 36px;
    line-height: 1;
}

.gdt-volunteer-single__gallery-nav.is-prev {
    left: -23px;
}

.gdt-volunteer-single__gallery-nav.is-next {
    right: -23px;
}

.gdt-volunteer-single__intro {
    padding: 26px 0 42px;
    background: #ffffff;
}

.gdt-volunteer-single__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #3f3a33;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.gdt-volunteer-single__back:hover,
.gdt-volunteer-single__back:focus {
    color: var(--gdt-volunteer-green);
    text-decoration: none;
}

.gdt-volunteer-single__back span {
    font-size: 24px;
    line-height: 1;
}

.gdt-volunteer-single__title-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
}

.gdt-volunteer-single__title-row h1 {
    max-width: 900px;
    margin: 0 0 10px;
    color: #111827;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.gdt-volunteer-single__address {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #5f574c;
    font-size: 14px;
    line-height: 22px;
}

.gdt-volunteer-single__address span {
    width: 14px;
    height: 14px;
    border: 1.8px solid #5f574c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.gdt-volunteer-single__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 104px;
    height: 44px;
    margin-top: 12px;
    color: #3f3a33;
    background: #ffffff;
    border: 1px solid #dedbd4;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.gdt-volunteer-single__share span {
    position: relative;
    width: 16px;
    height: 14px;
}

.gdt-volunteer-single__share span::before,
.gdt-volunteer-single__share span::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1.6px solid currentColor;
    border-radius: 50%;
}

.gdt-volunteer-single__share span::before {
    left: 0;
    top: 4px;
    box-shadow: 10px -4px 0 -1.6px #ffffff, 10px -4px 0 0 currentColor;
}

.gdt-volunteer-single__share span::after {
    right: 0;
    bottom: 0;
}

.gdt-volunteer-single__share.is-copied {
    color: var(--gdt-volunteer-green);
    border-color: var(--gdt-volunteer-green);
}

.gdt-volunteer-single__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 25px;
}

.gdt-volunteer-single__pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    min-height: 34px;
    padding: 6px 24px;
    color: var(--gdt-volunteer-green);
    background: #ffffff;
    border: 1px solid var(--gdt-volunteer-green);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
}

.gdt-volunteer-single__tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid var(--gdt-volunteer-line);
}

.gdt-volunteer-single__tabs .container {
    display: flex;
    gap: 46px;
    overflow-x: auto;
}

.gdt-volunteer-single__tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    color: #111827;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.gdt-volunteer-single__tabs a.is-active {
    color: var(--gdt-volunteer-green);
    border-bottom-color: var(--gdt-volunteer-green);
}

.gdt-volunteer-single__body {
    padding: 0 0 56px;
    background: #f7f8fa;
}

.gdt-volunteer-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
    gap: 56px;
    align-items: start;
}

.gdt-volunteer-single__main {
    min-width: 0;
}

.gdt-volunteer-single__main:not(.is-program-only) > #program,
.gdt-volunteer-single__main:not(.is-inclusions-only) > #inclusions,
.gdt-volunteer-single__main:not(.is-requirements-only) > #requirements {
    display: none;
}

.gdt-volunteer-single__main:not(.is-join-only) > #join {
    display: none;
}

.gdt-volunteer-single__main.is-program-only > .gdt-volunteer-single__section:not(#program),
.gdt-volunteer-single__main.is-join-only > .gdt-volunteer-single__section:not(#join),
.gdt-volunteer-single__main.is-inclusions-only > .gdt-volunteer-single__section:not(#inclusions) {
    display: none;
}

.gdt-volunteer-single__main.is-requirements-only > .gdt-volunteer-single__section:not(#requirements) {
    display: none;
}

.gdt-volunteer-single__main.is-program-only #program,
.gdt-volunteer-single__main.is-join-only #join,
.gdt-volunteer-single__main.is-inclusions-only #inclusions,
.gdt-volunteer-single__main.is-requirements-only #requirements {
    margin-top: 24px;
}

.gdt-volunteer-single__section {
    width: min(100%, 730px);
    padding-top: 18px;
    margin-bottom: 44px;
    scroll-margin-top: 96px;
}

.gdt-volunteer-single__section h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 0;
}

.gdt-volunteer-single__content {
    max-width: 700px;
    color: #4f463b;
    font-size: 17px;
    line-height: 1.75;
}

.gdt-volunteer-single__content p {
    margin: 0 0 26px;
}
.gdt-volunteer-single__program-tab {
    color: #111827;
}

.gdt-volunteer-single__program-block {
    margin-bottom: 34px;
}

.gdt-volunteer-single__program-block h2 {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 24px;
}

.gdt-volunteer-single__program-block h2 button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.gdt-volunteer-single__program-block h2 span {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
    flex: 0 0 auto;
}

.gdt-volunteer-single__program-block.is-collapsed h2 span {
    transform: rotate(-45deg);
}

.gdt-volunteer-single__program-block.is-collapsed .gdt-volunteer-single__program-text,
.gdt-volunteer-single__program-block.is-collapsed .gdt-volunteer-single__program-hours {
    display: none;
}

.gdt-volunteer-single__program-text {
    color: #26313f;
    font-size: 13px;
    line-height: 1.65;
}

.gdt-volunteer-single__program-text p {
    margin: 0 0 14px;
}

.gdt-volunteer-single__program-hours {
    display: grid;
    gap: 10px;
    margin: 0;
    color: #111827;
    font-size: 12px;
    line-height: 18px;
}

.gdt-volunteer-single__program-hours div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gdt-volunteer-single__program-hours dt {
    margin: 0;
    font-weight: 700;
}

.gdt-volunteer-single__program-hours dd {
    margin: 0;
    color: #26313f;
}


.gdt-volunteer-single__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 46px;
    margin-top: 38px;
}

.gdt-volunteer-single__fact {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    min-height: 54px;
}

.gdt-volunteer-single__fact strong {
    display: block;
    font-family: Inter, sans-serif;
    margin-bottom: 4px;
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
}

.gdt-volunteer-single__fact small {
    display: block;
    font-family: Inter, sans-serif;
    color: #4f463b;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.gdt-volunteer-single__fact-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-top: 0;
    color: var(--gdt-volunteer-green);
    background-color: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.gdt-volunteer-single__fact-icon.is-locale {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 5c-10 0-18 8-18 18 0 14 18 34 18 34s18-20 18-34C50 13 42 5 32 5z'/%3E%3Ccircle cx='32' cy='23' r='7'/%3E%3Cpath d='M20 50c-7 2-11 5-11 8 0 5 46 5 46 0 0-3-4-6-11-8'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 5c-10 0-18 8-18 18 0 14 18 34 18 34s18-20 18-34C50 13 42 5 32 5z'/%3E%3Ccircle cx='32' cy='23' r='7'/%3E%3Cpath d='M20 50c-7 2-11 5-11 8 0 5 46 5 46 0 0-3-4-6-11-8'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__fact-icon.is-wallet {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 19h39a7 7 0 0 1 7 7v24a7 7 0 0 1-7 7H14a7 7 0 0 1-7-7V18a7 7 0 0 1 7-7h30a5 5 0 0 1 5 5v3'/%3E%3Cpath d='M10 20l36-6'/%3E%3Cpath d='M42 32h14v14H42a7 7 0 0 1 0-14z'/%3E%3Ccircle cx='46' cy='39' r='1.5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 19h39a7 7 0 0 1 7 7v24a7 7 0 0 1-7 7H14a7 7 0 0 1-7-7V18a7 7 0 0 1 7-7h30a5 5 0 0 1 5 5v3'/%3E%3Cpath d='M10 20l36-6'/%3E%3Cpath d='M42 32h14v14H42a7 7 0 0 1 0-14z'/%3E%3Ccircle cx='46' cy='39' r='1.5'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__fact-icon.is-people {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='17' r='9'/%3E%3Cpath d='M18 57V43c0-8 6-14 14-14s14 6 14 14v14'/%3E%3Ccircle cx='13' cy='24' r='6'/%3E%3Cpath d='M5 51V40c0-5 4-9 9-9'/%3E%3Ccircle cx='51' cy='24' r='6'/%3E%3Cpath d='M59 51V40c0-5-4-9-9-9'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='17' r='9'/%3E%3Cpath d='M18 57V43c0-8 6-14 14-14s14 6 14 14v14'/%3E%3Ccircle cx='13' cy='24' r='6'/%3E%3Cpath d='M5 51V40c0-5 4-9 9-9'/%3E%3Ccircle cx='51' cy='24' r='6'/%3E%3Cpath d='M59 51V40c0-5-4-9-9-9'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__fact-icon.is-globe {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='25'/%3E%3Cpath d='M7 32h50M32 7c8 7 12 15 12 25S40 50 32 57M32 7C24 14 20 22 20 32s4 18 12 25M13 18c6 4 12 6 19 6s13-2 19-6M13 46c6-4 12-6 19-6s13 2 19 6'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='25'/%3E%3Cpath d='M7 32h50M32 7c8 7 12 15 12 25S40 50 32 57M32 7C24 14 20 22 20 32s4 18 12 25M13 18c6 4 12 6 19 6s13-2 19-6M13 46c6-4 12-6 19-6s13 2 19 6'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__fact-icon.is-calendar {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='13' width='44' height='42' rx='5'/%3E%3Cpath d='M21 8v11M43 8v11M10 25h44'/%3E%3Ccircle cx='22' cy='36' r='2'/%3E%3Ccircle cx='32' cy='36' r='2'/%3E%3Ccircle cx='42' cy='36' r='2'/%3E%3Ccircle cx='22' cy='46' r='2'/%3E%3Ccircle cx='32' cy='46' r='2'/%3E%3Ccircle cx='42' cy='46' r='2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='13' width='44' height='42' rx='5'/%3E%3Cpath d='M21 8v11M43 8v11M10 25h44'/%3E%3Ccircle cx='22' cy='36' r='2'/%3E%3Ccircle cx='32' cy='36' r='2'/%3E%3Ccircle cx='42' cy='36' r='2'/%3E%3Ccircle cx='22' cy='46' r='2'/%3E%3Ccircle cx='32' cy='46' r='2'/%3E%3Ccircle cx='42' cy='46' r='2'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__fact-icon.is-badge {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='18' r='12'/%3E%3Ccircle cx='32' cy='18' r='4'/%3E%3Cpath d='M24 30 16 58l16-10 16 10-8-28'/%3E%3Cpath d='M32 48V31'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='18' r='12'/%3E%3Ccircle cx='32' cy='18' r='4'/%3E%3Cpath d='M24 30 16 58l16-10 16 10-8-28'/%3E%3Cpath d='M32 48V31'/%3E%3C/svg%3E");
}

.gdt-volunteer-single__checks {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0 0 0 8px;
    color: #4f463b;
    font-size: 15px;
    line-height: 22px;
    list-style: none;
}

.gdt-volunteer-single__checks li {
    position: relative;
    padding-left: 34px;
}

.gdt-volunteer-single__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: var(--gdt-volunteer-green);
    border-radius: 50%;
}

.gdt-volunteer-single__checks li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 7px;
    height: 4px;
    border-bottom: 1.5px solid #ffffff;
    border-left: 1.5px solid #ffffff;
    transform: rotate(-45deg);
    transform-origin: center;
}

.gdt-volunteer-single__location-box {
    display: grid;
    gap: 20px;
    margin: 0 0 28px;
    padding: 22px 42px;
    background: #e2f6e9;
    border: 1px solid var(--gdt-volunteer-green);
    border-radius: 6px;
}

.gdt-volunteer-single__location-box p {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    color: #514a3e;
    font-size: 15px;
    line-height: 22px;
}

.gdt-volunteer-single__location-icon {
    display: inline-flex;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.gdt-volunteer-single__location-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.gdt-volunteer-single__location-box strong {
    color: #514a3e;
    font-weight: 800;
}

.gdt-volunteer-single__map {
    height: 134px;
    overflow: hidden;
    background: #d8f5e4;
}

.gdt-volunteer-single__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.gdt-volunteer-single__join,
.gdt-volunteer-single__review-card,
.gdt-volunteer-single__definition-grid {
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
}

.gdt-volunteer-single__join p {
    color: #4f463b;
}

.gdt-volunteer-single__button,
.gdt-volunteer-single__apply-form button,
.gdt-volunteer-single__review-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    color: #ffffff;
    background: var(--gdt-volunteer-green);
    border: 1px solid var(--gdt-volunteer-green);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.gdt-volunteer-single__apply-form {
    display: grid;
    gap: 18px;
    max-width: 100%;
}

.gdt-volunteer-single__apply-form label {
    margin: 0;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.gdt-volunteer-single__apply-form select {
    min-height: 42px;
    padding: 8px 12px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #d2d6dc;
    border-radius: 4px;
}

.gdt-volunteer-single__apply-form button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.gdt-volunteer-single__batches {
    display: grid;
    gap: 14px;
}

.gdt-volunteer-single__batches h3 {
    margin: 0;
    color: #30363b;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0;
}

.gdt-volunteer-single__batches p {
    margin: 0 0 6px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.gdt-volunteer-single__month-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.gdt-volunteer-single__month-card {
    display: grid;
    gap: 13px;
    min-width: 150px;
    min-height: 122px;
    padding: 18px 20px;
    color: #111827;
    text-align: left;
    background: #ffffff;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    box-shadow: none;
}

.gdt-volunteer-single__month-card.is-active {
    border-color: #ff6b18;
    box-shadow: 0 12px 24px rgba(255, 107, 24, 0.08);
}

.gdt-volunteer-single__month-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #ffd2b8;
    border-radius: 50%;
}

.gdt-volunteer-single__month-card > span::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #ff6b18;
    border-radius: 3px;
}

.gdt-volunteer-single__month-card strong {
    color: #05070a;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
}

.gdt-volunteer-single__month-card small {
    color: #4b5563;
    font-size: 13px;
    line-height: 18px;
}

.gdt-volunteer-single__batches h4 {
    margin: 4px 0 0;
    color: #000000;
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
}

.gdt-volunteer-single__slot-panels {
    display: grid;
}

.gdt-volunteer-single__slot-panel {
    display: none;
    gap: 10px;
}

.gdt-volunteer-single__slot-panel.is-active {
    display: grid;
}

.gdt-volunteer-single__slot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    margin: 0;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e0e4e8;
    border-radius: 4px;
    cursor: pointer;
}

.gdt-volunteer-single__slot-row.is-selected {
    border-color: #ff6b18;
}

.gdt-volunteer-single__slot-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gdt-volunteer-single__slot-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 3px 8px;
    color: #159447;
    background: #dbf7e6;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
}

.gdt-volunteer-single__slot-date {
    margin-left: auto;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: right;
}

.gdt-volunteer-single__passed,
.gdt-volunteer-single__empty {
    font-weight: 700;
}

.gdt-volunteer-single__passed {
    color: var(--gdt-volunteer-green);
}

.gdt-volunteer-single__empty {
    color: #b42318;
}

.gdt-volunteer-single__definition-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 34px;
}

.gdt-volunteer-single__definition-grid div {
    min-width: 0;
}

.gdt-volunteer-single__definition-grid dt {
    margin-bottom: 5px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.gdt-volunteer-single__definition-grid dd {
    margin: 0;
    color: #4f463b;
    font-size: 13px;
    line-height: 20px;
}

.gdt-volunteer-single__inclusions-tab {
    display: grid;
    gap: 18px;
    width: min(100%, 730px);
}

.gdt-volunteer-single__inclusions-card {
    padding: 26px 28px 28px;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
}

.gdt-volunteer-single__inclusions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 15px;
}

.gdt-volunteer-single__inclusions-head h2 {
    margin: 0;
    width: 100%;
    font-size: 17px;
    line-height: 24px;
}

.gdt-volunteer-single__inclusions-head h2 button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.gdt-volunteer-single__inclusions-head span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
    flex: 0 0 auto;
}

.gdt-volunteer-single__inclusions-card.is-collapsed .gdt-volunteer-single__inclusions-head span {
    transform: rotate(-45deg);
}

.gdt-volunteer-single__inclusions-card.is-collapsed > p,
.gdt-volunteer-single__inclusions-card.is-collapsed > .gdt-volunteer-single__inclusions-list {
    display: none;
}

.gdt-volunteer-single__inclusions-card > p {
    max-width: 610px;
    margin: 0 0 22px;
    color: #5f574c;
    font-size: 12px;
    line-height: 18px;
}

.gdt-volunteer-single__inclusions-list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    color: #423d36;
    font-size: 14px;
    line-height: 20px;
    list-style: none;
}

.gdt-volunteer-single__inclusions-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.gdt-volunteer-single__inclusions-list li > span {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: var(--gdt-volunteer-green);
    border-radius: 50%;
}

.gdt-volunteer-single__inclusions-list li > span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 7px;
    height: 4px;
    border-bottom: 1.5px solid #ffffff;
    border-left: 1.5px solid #ffffff;
    transform: rotate(-45deg);
}

.gdt-volunteer-single__inclusions-list strong {
    color: #5f574c;
    font-weight: 500;
}

.gdt-volunteer-single__exclusions-card {
    margin-top: 0;
}

.gdt-volunteer-single__exclusions h3 {
    margin: 0 0 14px;
    color: #5f574c;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.gdt-volunteer-single__exclusions-list li > span {
    background: #f54900;
}

.gdt-volunteer-single__exclusions-list li > span::after {
    left: 4px;
    top: 7px;
    width: 8px;
    height: 0;
    border-bottom: 1.5px solid #ffffff;
    border-left: 0;
    transform: none;
}
.gdt-volunteer-single__review-card {
    display: grid;
    gap: 10px;
    min-height: 164px;
    align-content: center;
}

.gdt-volunteer-single__review-card small {
    color: #5f574c;
    font-size: 11px;
}

.gdt-volunteer-single__review-card strong {
    display: block;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.gdt-volunteer-single__review-card p {
    margin: 0 0 12px;
    color: #5f574c;
    font-size: 13px;
}

.gdt-volunteer-single__review-card a {
    justify-self: start;
    color: var(--gdt-volunteer-green);
    background: #ffffff;
}

.gdt-volunteer-requirements {
    color: #111827;
}

.gdt-volunteer-requirements > h2 {
    margin: 0 0 42px;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
}

.gdt-volunteer-requirements__block {
    margin-bottom: 48px;
}

.gdt-volunteer-requirements__block h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: 0;
}

.gdt-volunteer-requirements__block > p,
.gdt-volunteer-requirements__skill-group > p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #5f574c;
    font-size: 13px;
    line-height: 20px;
}

.gdt-volunteer-requirements__rows {
    margin: 0;
}

.gdt-volunteer-requirements__rows div {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(260px, 1.2fr);
    gap: 28px;
    padding: 14px 8px;
    border-bottom: 1px solid #d9dde3;
}

.gdt-volunteer-requirements__rows dt,
.gdt-volunteer-requirements__rows dd {
    margin: 0;
    color: #111827;
    font-size: 13px;
    line-height: 20px;
}

.gdt-volunteer-requirements__rows dt {
    font-weight: 800;
}

.gdt-volunteer-requirements__rows dd {
    font-weight: 500;
}

.gdt-volunteer-requirements__skill-group {
    margin: 38px 0 0;
    padding-left: 28px;
}

.gdt-volunteer-requirements__skill-group h4 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
}

.gdt-volunteer-requirements__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gdt-volunteer-requirements__pills span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 20px;
    color: #111827;
    background: #eef9f0;
    border: 1px solid var(--gdt-volunteer-green);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.gdt-volunteer-requirements__skill-group em {
    display: block;
    margin-top: 18px;
    color: var(--gdt-volunteer-green);
    font-size: 13px;
    line-height: 20px;
}

.gdt-volunteer-requirements__qualities {
    display: grid;
    gap: 0;
    max-width: 670px;
    margin: 24px 0 0;
    padding: 18px 28px;
    border: 1px solid var(--gdt-volunteer-green);
    border-radius: 6px;
    list-style: none;
}

.gdt-volunteer-requirements__qualities li {
    margin: 0;
    padding: 14px 0;
    color: #111827;
    border-bottom: 1px solid #d9dde3;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
}

.gdt-volunteer-requirements__qualities li:last-child {
    border-bottom: 0;
}

.gdt-volunteer-single__sidebar {
    min-width: 0;
    padding-top: 54px;
}

.gdt-volunteer-single__sticky {
    position: sticky;
    top: 98px;
    box-sizing: border-box;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    font-family: Inter, sans-serif;
}

.gdt-volunteer-single__summary-card {
    box-sizing: border-box;
    width: 100%;
    padding: 30px 15px 25px 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.12);
}

.gdt-volunteer-single__side-card {
    width: calc(100% - 20px);
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    background: linear-gradient(180deg, #f4fbf5 0%, #ffffff 42%);
    border: 1px solid #9fcca7;
    border-radius: 10px;
}

.gdt-volunteer-single__glance-head {
    display: block;
    margin: 0;
    padding: 28px 28px 26px;
    border-bottom: 1px solid #dce9dd;
}

.gdt-volunteer-single__glance h2 {
    margin: 0;
    color: var(--gdt-volunteer-green);
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    letter-spacing: 0;
}

.gdt-volunteer-single__glance dl {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px 28px 26px;
}

.gdt-volunteer-single__glance dl div {
    display: grid;
    grid-template-columns: minmax(116px, 1fr) minmax(120px, 1fr);
    gap: 20px;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.gdt-volunteer-single__glance dl div:last-child {
    border-bottom: 0;
}

.gdt-volunteer-single__glance dt,
.gdt-volunteer-single__glance dd {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
}

.gdt-volunteer-single__glance dt {
    color: #334155;
    font-weight: 500;
}

.gdt-volunteer-single__glance dd {
    color: #111827;
    font-weight: 400;
}

.gdt-volunteer-single__glance dd.is-green {
    color: var(--gdt-volunteer-green);
}

.gdt-volunteer-single__sidebar-form {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.gdt-volunteer-single__sidebar-form label {
    margin: 0;
    color: #1f2937;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}

.gdt-volunteer-single__sidebar-select {
    width: 100%;
    height: 48px;
    margin: 0 0 6px;
    padding: 0 36px 0 16px;
    border: 1px solid #7fb58a;
    border-radius: 14px;
    background-color: #ffffff;
    color: #334155;
    font-size: 15px;
    line-height: 22px;
    box-shadow: none;
    outline: none;
}

.gdt-volunteer-single__sidebar-select:focus {
    border-color: var(--gdt-volunteer-green);
    box-shadow: 0 0 0 3px rgba(13, 120, 37, 0.14);
}

.gdt-volunteer-single__side-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 16px 0 0;
    color: #ffffff;
    background: var(--gdt-volunteer-green);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(13, 120, 37, 0.18);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 22px;
    text-decoration: none;
}

.gdt-volunteer-single__side-apply:hover,
.gdt-volunteer-single__side-apply:focus {
    color: #ffffff;
    background: #206d2f;
    text-decoration: none;
}

body.gdt-volunteer-checkout-modal-open {
    overflow: hidden;
}

.gdt-volunteer-checkout-dates {
    margin: 0 0 32px;
    padding: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #ffffff;
}

.gdt-volunteer-collapsible {
    overflow: hidden;
}

.gdt-volunteer-collapsible__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 0;
    border: 0;
    color: #101828;
    background: transparent;
    text-align: left;
}

.gdt-volunteer-collapsible__toggle > span:first-child {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.gdt-volunteer-collapsible__toggle strong {
    color: #101828;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-collapsible__toggle small {
    color: #667085;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.gdt-volunteer-collapsible__chevron {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    background: #ffffff;
}

.gdt-volunteer-collapsible__chevron::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #475467;
    border-bottom: 2px solid #475467;
    transform: translate(-50%, -62%) rotate(45deg);
    transition: transform 160ms ease;
}

.gdt-volunteer-collapsible__toggle:hover .gdt-volunteer-collapsible__chevron,
.gdt-volunteer-collapsible__toggle:focus .gdt-volunteer-collapsible__chevron {
    border-color: #16a34a;
    background: #f0fdf4;
}

.gdt-volunteer-collapsible__toggle:hover .gdt-volunteer-collapsible__chevron::before,
.gdt-volunteer-collapsible__toggle:focus .gdt-volunteer-collapsible__chevron::before {
    border-color: #15803d;
}

.gdt-volunteer-collapsible__toggle:focus {
    outline: 0;
}

.gdt-volunteer-collapsible:not(.is-collapsed) .gdt-volunteer-collapsible__chevron::before {
    transform: translate(-50%, -38%) rotate(225deg);
}

.gdt-volunteer-collapsible__body {
    padding-top: 24px;
}

.gdt-volunteer-collapsible__body[hidden] {
    display: none !important;
}

.gdt-volunteer-checkout-dates__head h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-checkout-dates__head p {
    margin: 0 0 28px;
    color: #667085;
    font-size: 17px;
    line-height: 1.55;
}

.gdt-volunteer-checkout-dates__volunteers {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    margin: 0 0 16px;
}

.gdt-volunteer-checkout-dates__volunteers > span {
    color: #111111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.gdt-volunteer-checkout-dates__counter {
    display: flex;
    align-items: center;
    height: 30px;
}

.gdt-volunteer-checkout-dates__counter button {
    width: 28px;
    height: 30px;
    padding: 0;
    border: 1px solid #16a34a;
    color: #ffffff;
    background: #16a34a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.gdt-volunteer-checkout-dates__counter button:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.gdt-volunteer-checkout-dates__counter > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 30px;
    border-top: 1px solid #d8dee8;
    border-bottom: 1px solid #d8dee8;
    color: #64748b;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.gdt-volunteer-checkout-dates h4 {
    margin: 12px 0 8px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.gdt-volunteer-checkout-dates__months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.gdt-volunteer-checkout-dates__month,
.gdt-volunteer-checkout-dates__slot {
    border: 1px solid #cfd7e2;
    border-radius: 5px;
    color: #111111;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.gdt-volunteer-checkout-dates__month {
    display: block;
    min-width: 104px;
    min-height: 45px;
    padding: 8px 10px;
}

.gdt-volunteer-checkout-dates__month:hover,
.gdt-volunteer-checkout-dates__month:focus {
    border-color: #16a34a;
}

.gdt-volunteer-checkout-dates__month.is-active {
    border-color: #16a34a;
    color: #ffffff;
    background: #16a34a;
}

.gdt-volunteer-checkout-dates__month strong {
    display: block;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-checkout-dates__month small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.15;
    white-space: nowrap;
}

.gdt-volunteer-checkout-dates__month.is-active small {
    color: rgba(255, 255, 255, 0.72);
}

.gdt-volunteer-checkout-dates__panels {
    margin-top: 6px;
}

.gdt-volunteer-checkout-dates__panel {
    display: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.gdt-volunteer-checkout-dates__panel.is-active {
    display: grid;
}

.gdt-volunteer-checkout-dates__slot {
    position: relative;
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr) 16px;
    column-gap: 7px;
    align-items: start;
    min-height: 58px;
    padding: 10px 32px 10px 13px;
}

.gdt-volunteer-checkout-dates__slot strong,
.gdt-volunteer-checkout-dates__slot small {
    grid-column: 2;
}

.gdt-volunteer-checkout-dates__slot > span {
    position: relative;
    grid-row: 1 / span 2;
    width: 13px;
    height: 13px;
    margin-top: 2px;
    border: 2px solid #16a34a;
    border-radius: 3px;
    color: #16a34a;
}

.gdt-volunteer-checkout-dates__slot > span::before {
    position: absolute;
    top: 3px;
    right: -2px;
    left: -2px;
    height: 2px;
    background: currentColor;
    content: "";
}

.gdt-volunteer-checkout-dates__slot strong {
    color: #111111;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-checkout-dates__slot small {
    display: block;
    margin-top: 4px;
    color: #111111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.gdt-volunteer-checkout-dates__slot::after {
    position: absolute;
    top: 10px;
    right: 9px;
    width: 14px;
    height: 14px;
    border: 1px solid #cfd7e2;
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.gdt-volunteer-checkout-dates__slot.is-selected::after {
    border-color: #16a34a;
    background: radial-gradient(circle, #16a34a 0 45%, #ffffff 48% 100%);
}

.gdt-volunteer-checkout-dates__slot:hover,
.gdt-volunteer-checkout-dates__slot:focus,
.gdt-volunteer-checkout-dates__slot.is-selected {
    border-color: #cfd7e2;
    background: #ffffff;
}

.gdt-volunteer-checkout-dates__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
    padding-top: 0;
}

.gdt-volunteer-checkout-dates__next {
    min-width: 118px;
    min-height: 42px;
    padding: 0 24px;
    border: 1px solid #16a34a;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.gdt-volunteer-checkout-dates__next:hover,
.gdt-volunteer-checkout-dates__next:focus {
    border-color: #15803d;
    color: #ffffff;
    background: #15803d;
    outline: 0;
}

.gdt-volunteer-booking-submission {
    margin: 0 0 32px;
    padding: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #ffffff;
}

.gdt-volunteer-booking-submission > h3,
.gdt-volunteer-booking-submission > h3.title {
    margin: 0 0 22px;
    color: #101828;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-booking-submission .check-out-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gdt-volunteer-booking-submission .entry-content {
    margin: 0;
}

.gdt-volunteer-booking-submission .form-group,
.gdt-volunteer-booking-submission .payment-form,
.gdt-volunteer-booking-submission .cond-form {
    margin-bottom: 18px;
}

.gdt-volunteer-booking-submission label {
    margin-bottom: 7px;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.gdt-volunteer-booking-submission input[type="text"],
.gdt-volunteer-booking-submission input[type="email"],
.gdt-volunteer-booking-submission input[type="tel"],
.gdt-volunteer-booking-submission input[type="number"],
.gdt-volunteer-booking-submission input[type="password"],
.gdt-volunteer-booking-submission textarea,
.gdt-volunteer-booking-submission select,
.gdt-volunteer-booking-submission .form-control {
    min-height: 42px;
    border: 1px solid #cfd7e2;
    border-radius: 5px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
    font-size: 14px;
}

.gdt-volunteer-booking-submission input:focus,
.gdt-volunteer-booking-submission textarea:focus,
.gdt-volunteer-booking-submission select:focus,
.gdt-volunteer-booking-submission .form-control:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
    outline: 0;
}

.gdt-volunteer-booking-submission .payment-form {
    padding-top: 4px;
}

.gdt-volunteer-booking-submission .payment-form h3.title {
    margin: 0 0 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.gdt-volunteer-booking-submission .cond-form {
    padding-top: 4px;
}

.gdt-volunteer-booking-submission .btn-checkout,
.gdt-volunteer-booking-submission .btn-st-checkout-submit {
    min-height: 42px;
    padding: 11px 22px;
    border: 1px solid #16a34a;
    border-radius: 5px;
    color: #ffffff;
    background: #16a34a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.gdt-volunteer-booking-submission .btn-checkout:hover,
.gdt-volunteer-booking-submission .btn-checkout:focus,
.gdt-volunteer-booking-submission .btn-st-checkout-submit:hover,
.gdt-volunteer-booking-submission .btn-st-checkout-submit:focus {
    border-color: #15803d;
    color: #ffffff;
    background: #15803d;
    text-decoration: none;
}

.gdt-volunteer-booking-submission .btn-checkout,
.gdt-volunteer-booking-submission .btn-st-checkout-submit {
    display: none;
}

.cart-info:has(.gdt-volunteer-cart-item),
.booking-item-payment:has(.gdt-volunteer-cart-item) {
    margin-top: 0;
}

.gdt-volunteer-eligibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: auto;
    margin: 12px 30px 0;
    padding: 6px 10px;
    border: 1px solid #a7e8bc;
    border-radius: 6px;
    color: #166534;
    background: #f0fdf4;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.gdt-volunteer-eligibility-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.gdt-volunteer-cart-coupon {
    padding: 24px 30px 18px;
    border-top: 1px solid #e4e7ec;
}

.gdt-volunteer-cart-coupon label {
    display: block;
    margin: 0 0 18px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.gdt-volunteer-cart-coupon__row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gdt-volunteer-cart-coupon__row input {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    padding: 0 18px;
    border: 1px solid #d8dee8;
    border-radius: 999px;
    color: #111111;
    background: #f8fafc;
    font-size: 14px;
    outline: 0;
}

.gdt-volunteer-cart-coupon__row input:focus {
    border-color: #16a34a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.gdt-volunteer-cart-coupon__row button {
    flex: 0 0 auto;
    min-width: 98px;
    height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gdt-volunteer-cart-coupon__row button:hover,
.gdt-volunteer-cart-coupon__row button:focus {
    background: #15803d;
}

.gdt-volunteer-cart-coupon__message {
    margin: -8px 0 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.gdt-volunteer-cart-coupon__message.is-success {
    color: #15803d;
}

.gdt-volunteer-cart-coupon__message.is-error {
    color: #dc2626;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section {
    padding: 24px 30px 30px;
    border-top: 1px solid #e4e7ec;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0;
    color: #111827;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .label {
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .value {
    flex: 0 0 auto;
    color: #475467;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-align: right;
}

.gdt-volunteer-confirmation-fee .label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.gdt-volunteer-fee-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    padding: 0;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #64748b;
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.gdt-volunteer-fee-info:hover,
.gdt-volunteer-fee-info:focus {
    border-color: #16a34a;
    color: #15803d;
    background: #f0fdf4;
    outline: 0;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .gdt-volunteer-fee-note {
    display: block;
    margin: -5px 0 2px;
    padding: 9px 11px;
    border: 1px solid #dcfce7;
    border-radius: 6px;
    color: #166534;
    background: #f0fdf4;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.gdt-volunteer-fee-note[hidden] {
    display: none !important;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .gdt-volunteer-payable-now {
    margin-top: 6px;
    padding-top: 15px;
    border-top: 1px solid #eef2f6;
}

.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .gdt-volunteer-payable-now .label,
.gdt-volunteer-cart-item + .info-section + .gdt-volunteer-cart-coupon + .total-section .gdt-volunteer-payable-now .value {
    color: #101828;
    font-size: 18px;
    font-weight: 800;
}

.gdt-volunteer-pay-apply {
    position: relative;
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 54px 0 0;
    padding: 0 24px;
    border: 1px solid #138a3d;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #9AE630 0%, #16a34a 42%, #0f8f3d 100%);
    /*box-shadow: 0 10px 20px rgba(22, 163, 74, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -1px 0 rgba(0, 0, 0, 0.08);*/
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    isolation: isolate;
    transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.gdt-volunteer-pay-apply::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -35%;
    bottom: -35%;
    left: -45%;
    width: 24%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.1) 65%, transparent 100%);
    filter: blur(1px);
    transform: skewX(-18deg);
    animation: gdt-volunteer-button-shine 3.8s ease-in-out infinite;
}

.gdt-volunteer-pay-apply:hover,
.gdt-volunteer-pay-apply:focus {
    border-color: #15803d;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
    outline: 0;
}

.gdt-volunteer-pay-apply:active {
    box-shadow: 0 7px 14px rgba(22, 163, 74, 0.22), inset 0 1px 2px rgba(0, 0, 0, 0.14);
    transform: translateY(0);
}

@keyframes gdt-volunteer-button-shine {
    0% {
        left: -45%;
    }

    72%,
    100% {
        left: 118%;
    }
}

@media (max-width: 991px) {
    .gdt-volunteer-checkout-dates__months {
        display: flex;
    }

    .gdt-volunteer-checkout-dates__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .gdt-volunteer-checkout-dates {
        padding: 22px 16px;
    }

    .gdt-volunteer-checkout-dates__head h3 {
        font-size: 18px;
    }

    .gdt-volunteer-checkout-dates__months {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gdt-volunteer-checkout-dates__slot {
        padding-right: 32px;
    }
}

.gdt-volunteer-single__checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gdt-volunteer-single__checkout-modal.is-open {
    display: flex;
}

.gdt-volunteer-single__checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
}

.gdt-volunteer-single__checkout-dialog {
    position: relative;
    width: min(100%, 460px);
    padding: 32px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.gdt-volunteer-single__checkout-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #475467;
    background: #f2f4f7;
    font-size: 24px;
    line-height: 1;
}

.gdt-volunteer-single__checkout-eyebrow {
    margin: 0 0 10px;
    color: #18864b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gdt-volunteer-single__checkout-dialog h2 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 26px;
    line-height: 1.2;
}

.gdt-volunteer-single__checkout-dialog p {
    margin: 0 0 22px;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.gdt-volunteer-single__checkout-form button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    background: #18864b;
    font-weight: 800;
}

.gdt-volunteer-single__checkout-form button:hover,
.gdt-volunteer-single__checkout-form button:focus {
    background: #0f6b3a;
}

.gdt-volunteer-single__why {
    padding-top: 38px;
    border-top: 1px solid #dedede;
}

.gdt-volunteer-single__why h2 {
    margin: 0 0 24px;
    color: #000000;
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    padding: 0px 10px 0px 10px;
}

.gdt-volunteer-single__why ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0px 10px 0px 10px;
    list-style: none;
}

.gdt-volunteer-single__why li {
    position: relative;
    padding-left: 42px;
    color: #5e5748;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 28px;
}

.gdt-volunteer-single__why li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 16px;
    height: 8px;
    border-bottom: 2px solid var(--gdt-volunteer-orange);
    border-left: 2px solid var(--gdt-volunteer-orange);
    transform: rotate(-45deg);
}

.gdt-volunteer-single__host-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 36px;
    margin-top: 42px;
    padding: 42px 36px;
    background: #ffffff;
    border: 1px solid #d6d9de;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    box-sizing: border-box;
    width: 100%;
    max-width: 360px;
    margin: 24px 0 0;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #d6d9de;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.gdt-volunteer-single__host-media {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 6px;
    background: #dbeafe;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-media {
    width: 64px;
    height: 64px;
}

.gdt-volunteer-single__host-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-volunteer-single__host-body h2 {
    margin: 0 0 24px;
    color: #111827;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-body h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
}

.gdt-volunteer-single__host-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.gdt-volunteer-single__host-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
    text-transform: uppercase;
    white-space: nowrap;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-badges {
    gap: 6px;
    margin-bottom: 10px;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-badges span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 14px;
}

.gdt-volunteer-single__host-badges .is-ngo {
    color: var(--gdt-volunteer-green);
    background: #e7f6eb;
    border: 2px solid var(--gdt-volunteer-green);
}

.gdt-volunteer-single__host-badges .is-gdt {
    color: #ff4b00;
    background: #ffdfcf;
    border: 2px solid #ff4b00;
}

.gdt-volunteer-single__host-body p {
    margin: 0 0 22px;
    color: #5e5748;
    font-size: 20px;
    line-height: 28px;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-body p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 20px;
}

.gdt-volunteer-single__host-body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gdt-volunteer-green);
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.gdt-volunteer-single__sidebar .gdt-volunteer-single__host-body a {
    font-size: 14px;
    line-height: 20px;
}

.gdt-volunteer-single__related {
    padding: 42px 0 70px;
    background: #ffffff;
}

.gdt-volunteer-single__related-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.gdt-volunteer-single__related-head h2 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
}

.gdt-volunteer-single__related-head div {
    display: flex;
    gap: 12px;
}

.gdt-volunteer-single__related-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d9dde3;
    border-radius: 50%;
    color: #111827;
    font-size: 24px;
    line-height: 1;
}

.gdt-volunteer-single__related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dde3ea;
    border-radius: 6px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__image {
    position: relative;
    display: block;
    height: 184px;
    overflow: hidden;
    background: #e5edf2;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__heart {
    display: none;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__body {
    padding: 14px 16px 16px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__body::before {
    content: "RETREAT";
    display: block;
    margin-bottom: 8px;
    color: #ff5a1f;
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card h3 {
    height: 38px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    line-height: 19px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card h3 a {
    color: inherit;
    text-decoration: none;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__review {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 18px;
    color: #5f574c;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
    font-size: 12px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding-top: 14px;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__duration {
    color: #111827;
    font-size: 12px;
    font-weight: 700;
}

.gdt-volunteer-single__related .gdt-volunteer-program-card__price {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    color: #0ca64b;
    background: #e7f8ee;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .gdt-volunteer-single .container {
        padding-right: 28px;
        padding-left: 28px;
    }

    .gdt-volunteer-single__hero {
        grid-template-columns: minmax(0, 1.65fr) minmax(240px, 1fr);
        height: 340px;
    }

    .gdt-volunteer-single__title-row h1 {
        font-size: 36px;
    }

    .gdt-volunteer-single__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gdt-volunteer-single__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .gdt-volunteer-single__sidebar {
        order: -1;
        padding-top: 24px;
    }

    .gdt-volunteer-single__sticky {
        position: static;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .gdt-volunteer-single .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .gdt-volunteer-single__hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 220px 118px;
        gap: 6px;
        height: auto;
    }

    .gdt-volunteer-single__hero--count-1 {
        display: block;
        height: 260px;
    }

    .gdt-volunteer-single__hero--count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 240px;
    }

    .gdt-volunteer-single__hero-item:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gdt-volunteer-single__hero--count-1 .gdt-volunteer-single__hero-item,
    .gdt-volunteer-single__hero--count-2 .gdt-volunteer-single__hero-item:first-child {
        grid-column: auto;
        height: 100%;
    }

    .gdt-volunteer-single__hero-more {
        font-size: 15px;
    }

    .gdt-volunteer-single__gallery-modal {
        padding: 18px;
    }

    .gdt-volunteer-single__gallery-dialog {
        max-height: calc(100vh - 36px);
    }

    .gdt-volunteer-single__gallery-frame {
        min-height: 220px;
    }

    .gdt-volunteer-single__gallery-frame img {
        max-height: calc(100vh - 90px);
        border-radius: 6px;
    }

    .gdt-volunteer-single__gallery-close {
        top: 8px;
        right: 8px;
    }

    .gdt-volunteer-single__gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .gdt-volunteer-single__gallery-nav.is-prev {
        left: 8px;
    }

    .gdt-volunteer-single__gallery-nav.is-next {
        right: 8px;
    }

    .gdt-volunteer-single__intro {
        padding-bottom: 30px;
    }

    .gdt-volunteer-single__title-row {
        flex-direction: column;
        gap: 18px;
    }

    .gdt-volunteer-single__title-row h1 {
        font-size: 30px;
        line-height: 1.18;
    }

    .gdt-volunteer-single__share {
        margin-top: 0;
    }

    .gdt-volunteer-single__pills {
        gap: 10px;
    }

    .gdt-volunteer-single__pills span {
        min-width: 0;
        padding-right: 16px;
        padding-left: 16px;
        white-space: normal;
    }

    .gdt-volunteer-single__tabs .container {
        gap: 28px;
    }

    .gdt-volunteer-single__tabs a {
        min-height: 56px;
    }

    .gdt-volunteer-single__section {
        width: 100%;
        margin-bottom: 34px;
    }

    .gdt-volunteer-single__content {
        font-size: 15px;
        line-height: 1.7;
    }

    .gdt-volunteer-single__facts,
    .gdt-volunteer-single__definition-grid,
    .gdt-volunteer-single__related-grid {
        grid-template-columns: 1fr;
    }


    .gdt-volunteer-single__summary-card {
        padding: 24px 18px 28px;
    }

    .gdt-volunteer-single__glance-head {
        padding: 22px 20px 18px;
    }

    .gdt-volunteer-single__glance h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .gdt-volunteer-single__glance dl {
        padding: 8px 20px 20px;
    }

    .gdt-volunteer-single__glance dl div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .gdt-volunteer-single__glance dt,
    .gdt-volunteer-single__glance dd,
    .gdt-volunteer-single__sidebar-form label,
    .gdt-volunteer-single__sidebar-select {
        font-size: 16px;
    }

    .gdt-volunteer-single__sidebar-select {
        height: 56px;
        border-radius: 10px;
    }

    .gdt-volunteer-single__side-apply {
        min-height: 58px;
        margin: 26px 0;
        font-size: 20px;
    }

    .gdt-volunteer-single__why {
        padding-top: 26px;
    }

    .gdt-volunteer-single__why h2 {
        font-size: 22px;
    }

    .gdt-volunteer-single__why li {
        padding-left: 32px;
        font-size: 16px;
        line-height: 24px;
    }

    .gdt-volunteer-single__host-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 22px;
    }

    .gdt-volunteer-single__host-body h2 {
        font-size: 26px;
    }

    .gdt-volunteer-single__host-body p,
    .gdt-volunteer-single__host-body a {
        font-size: 17px;
        line-height: 24px;
    }

    .gdt-volunteer-requirements__rows div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-right: 0;
        padding-left: 0;
    }

    .gdt-volunteer-requirements__skill-group {
        padding-left: 0;
    }

    .gdt-volunteer-requirements__qualities {
        padding: 14px 18px;
    }

    .gdt-volunteer-single__location-box,
    .gdt-volunteer-single__join,
    .gdt-volunteer-single__review-card,
    .gdt-volunteer-single__definition-grid {
        padding: 20px;
    }

    .gdt-volunteer-single__inclusions-card {
        padding: 20px;
    }

    .gdt-volunteer-single__inclusions-list li {
        gap: 12px;
    }
    .gdt-volunteer-single__related-head h2 {
        font-size: 24px;
    }
}

body #st-login-form.login-regiter-popup,
body #st-register-form.login-regiter-popup,
body #st-forgot-form.login-regiter-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 88px 16px 32px;
    text-align: left;
    outline: 0;
}

body #st-login-form.login-regiter-popup.show,
body #st-register-form.login-regiter-popup.show,
body #st-forgot-form.login-regiter-popup.show {
    display: block !important;
}

body #st-login-form.login-regiter-popup .modal-dialog,
body #st-register-form.login-regiter-popup .modal-dialog,
body #st-forgot-form.login-regiter-popup .modal-dialog {
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100%, 520px);
    margin: 0 auto !important;
    transform: none !important;
}

body #st-login-form.login-regiter-popup .modal-content,
body #st-register-form.login-regiter-popup .modal-content,
body #st-forgot-form.login-regiter-popup .modal-content {
    max-height: none;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
}

@media (min-height: 760px) {
    body #st-login-form.login-regiter-popup,
    body #st-register-form.login-regiter-popup,
    body #st-forgot-form.login-regiter-popup {
        display: none;
        align-items: center;
        padding-top: 96px;
    }

    body #st-login-form.login-regiter-popup.show,
    body #st-register-form.login-regiter-popup.show,
    body #st-forgot-form.login-regiter-popup.show {
        display: flex !important;
    }
}
/* Volunteer pre-screening assessment */
.gdt-volunteer-screening-assessment {
    min-height: 70vh;
    padding: 48px 0 72px;
    background: #f7f8fa;
}

.gdt-volunteer-screening-assessment__header,
.gdt-volunteer-screening-assessment__card {
    width: min(760px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.gdt-volunteer-screening-assessment__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.gdt-volunteer-screening-assessment__header span {
    color: #667085;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gdt-volunteer-screening-assessment__card {
    padding: 40px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 24, 40, .06);
}

.gdt-volunteer-screening-assessment__card h1 {
    margin: 4px 0 12px;
}

.gdt-volunteer-screening-assessment__eyebrow {
    margin: 0;
    color: #f54900;
    font-weight: 600;
}

.gdt-volunteer-screening-assessment__intro {
    margin-bottom: 32px;
    color: #475467;
}

.gdt-volunteer-screening-assessment .gdt-volunteer-screening-public-question {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eaecf0;
}

.gdt-volunteer-screening-assessment .gdt-volunteer-screening-public-question legend {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.5;
}

.gdt-volunteer-screening-assessment .gdt-volunteer-screening-public-question legend > span {
    display: inline-flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1eb;
    color: #d73f00;
    font-size: 14px;
}

.gdt-volunteer-screening-options {
    display: grid;
    gap: 10px;
    padding-left: 42px;
}

.gdt-volunteer-screening-assessment .gdt-volunteer-screening-options label {
    margin: 0;
    padding: 13px 15px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    cursor: pointer;
}

.gdt-volunteer-screening-assessment .gdt-volunteer-screening-options label:hover {
    border-color: #98a2b3;
    background: #f9fafb;
}

.gdt-volunteer-auto-screening {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.gdt-volunteer-auto-screening__list {
    display: grid;
    gap: 14px;
}

.gdt-volunteer-auto-screening__question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 370px);
    gap: 16px;
    align-items: start;
}

.gdt-volunteer-auto-screening__question .gdt-volunteer-screening-answer {
    min-width: 0;
}

.gdt-volunteer-auto-screening__children,
.gdt-volunteer-screening-guest-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 12px;
    margin-top: 4px;
    padding: 14px;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    background: #f9fafb;
}

.gdt-volunteer-auto-screening__children label,
.gdt-volunteer-screening-guest-fields label {
    margin: 0;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.gdt-volunteer-screening-auto-field {
    padding-left: 42px;
}

.gdt-volunteer-screening-confirmation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.gdt-volunteer-screening-proof {
    margin-top: 14px;
    padding-left: 42px;
}

.gdt-volunteer-screening-proof label {
    display: block;
    margin-bottom: 6px;
    color: #344054;
    font-weight: 600;
}

.gdt-application-review__proof {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
}
.gdt-volunteer-screening-assessment__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 767px) {
    .gdt-volunteer-screening-assessment {
        padding: 28px 0 48px;
    }

    .gdt-volunteer-screening-assessment__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .gdt-volunteer-screening-assessment__card {
        padding: 24px 18px;
    }

    .gdt-volunteer-screening-options,
    .gdt-volunteer-screening-proof,
    .gdt-volunteer-screening-auto-field {
        padding-left: 0;
    }

    .gdt-volunteer-auto-screening {
        padding: 18px;
    }

    .gdt-volunteer-auto-screening__question,
    .gdt-volunteer-auto-screening__children,
    .gdt-volunteer-screening-guest-fields {
        grid-template-columns: 1fr;
    }
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Partner volunteer booking cards */
.gdt-partner-bookings {
    color: #17223b;
    padding: 0 0 32px;
}

.gdt-partner-bookings__header {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.gdt-partner-bookings__header .partner-page-title {
    color: #15213a;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px;
}

.gdt-partner-bookings__header p {
    color: #6f7891;
    font-size: 13px;
    margin: 0;
}

.gdt-partner-bookings__filter {
    align-items: center;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 50%;
    color: #17223b;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.gdt-partner-bookings__tabs {
    background: #fff;
    border: 1px solid #e5e9f1;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
    overflow: hidden;
}

.gdt-partner-bookings__tabs a {
    align-items: center;
    border-right: 1px solid #e5e9f1;
    color: #17223b;
    display: flex;
    font-size: 13px;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    text-decoration: none;
}

.gdt-partner-bookings__tabs a:last-child {
    border-right: 0;
}

.gdt-partner-bookings__tabs a.is-active {
    background: #181818;
    color: #fff;
}

.gdt-partner-bookings__tabs b {
    background: #eef1f6;
    border-radius: 9px;
    color: #69738a;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    min-width: 22px;
    padding: 0 6px;
    text-align: center;
}

.gdt-partner-bookings__tabs a.is-active b {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.gdt-partner-bookings__program-filter {
    margin-bottom: 28px;
    max-width: 420px;
}

.gdt-partner-bookings__program-filter label {
    color: #7a849b;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gdt-partner-bookings__program-filter select {
    appearance: none;
    background: #fff;
    border: 1px solid #e1e6ef;
    border-radius: 8px;
    color: #17223b;
    height: 48px;
    padding: 0 16px;
    width: 100%;
}

.gdt-partner-bookings__list {
    display: grid;
    gap: 14px;
}

.gdt-partner-bookings__card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(25, 35, 60, .05);
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 22px 24px;
}

.gdt-partner-bookings__person {
    align-items: center;
    display: flex;
    gap: 16px;
    min-width: 0;
}

.gdt-partner-bookings__avatar {
    align-items: center;
    background: #f1f2f4;
    border: 1px solid #dde2ea;
    border-radius: 50%;
    color: #6d7483;
    display: inline-flex;
    flex: 0 0 54px;
    font-size: 17px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.gdt-partner-bookings__person strong {
    color: #17223b;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.gdt-partner-bookings__person small {
    color: #65718b;
    display: block;
    font-size: 13px;
}

.gdt-partner-bookings__actions,
.gdt-partner-bookings__decision-form {
    align-items: center;
    display: flex;
    gap: 10px;
}

.gdt-partner-bookings__btn {
    align-items: center;
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 6px;
    color: #4e5b75;
    display: inline-flex;
    font-size: 12px;
    gap: 8px;
    height: 36px;
    justify-content: center;
    padding: 0 18px;
}

.gdt-partner-bookings__btn--accept {
    background: #c9f7df;
    border-color: #b8efd1;
    color: #14834d;
}

.gdt-partner-bookings__status {
    background: #f4f6fa;
    border-radius: 999px;
    color: #536079;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 14px;
}

.gdt-partner-bookings__details {
    border-top: 1px solid #edf0f5;
    grid-column: 1 / -1;
    padding-top: 16px;
}

.gdt-partner-bookings__details dl {
    display: grid;
    gap: 12px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.gdt-partner-bookings__details dt {
    color: #7a849b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.gdt-partner-bookings__details dd {
    color: #17223b;
    font-size: 13px;
    margin: 0;
    overflow-wrap: anywhere;
}

.gdt-partner-bookings__empty {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 8px;
    color: #66718b;
    padding: 28px;
    text-align: center;
}

.gdt-partner-bookings__empty strong {
    color: #17223b;
    display: block;
    margin-bottom: 6px;
}

.gdt-partner-bookings__empty p {
    margin: 0;
}

.gdt-partner-bookings__pagination {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .gdt-partner-bookings__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gdt-partner-bookings__tabs a:nth-child(2n) {
        border-right: 0;
    }

    .gdt-partner-bookings__card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .gdt-partner-bookings__actions,
    .gdt-partner-bookings__decision-form {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .gdt-partner-bookings__btn,
    .gdt-partner-bookings__status {
        flex: 1 1 auto;
    }

    .gdt-partner-bookings__details dl {
        grid-template-columns: 1fr;
    }
}

.gdt-booking-review-modal[hidden] {
    display: none;
}

.gdt-booking-review-modal {
    inset: 0;
    position: fixed;
    z-index: 9999;
}

.gdt-booking-review-modal-open {
    overflow: hidden;
}

.gdt-booking-review-modal__backdrop {
    background: rgba(12, 18, 32, .48);
    inset: 0;
    position: absolute;
}

.gdt-booking-review-modal__dialog {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    left: 50%;
    max-height: calc(100vh - 64px);
    max-width: 1040px;
    overflow: auto;
    padding: 28px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 48px);
}

.gdt-booking-review-modal__close {
    align-items: center;
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 50%;
    color: #33415f;
    display: inline-flex;
    font-size: 22px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
}

.gdt-booking-review-modal h3 {
    color: #15213a;
    font-size: 24px;
    font-weight: 700;
    margin: 0 44px 20px 0;
}

.gdt-booking-review-modal__summary {
    border: 1px solid #e7ebf2;
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
    padding: 16px;
}

.gdt-booking-review-modal__summary div {
    display: grid;
    gap: 5px;
}

.gdt-booking-review-modal__summary-label,
.gdt-booking-review-modal__screening-head strong {
    color: #7a849b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gdt-booking-review-modal__summary strong {
    color: #17223b;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    overflow-wrap: anywhere;
}

.gdt-booking-review-modal__screening-head {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.gdt-booking-review-modal__screening-head h4 {
    color: #17223b;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.gdt-booking-review-modal__screening-head > div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-end;
}

.gdt-booking-review-modal__screening-head span {
    align-items: center;
    color: #4c5872;
    display: inline-flex;
    font-size: 13px;
    gap: 7px;
    line-height: 24px;
    white-space: nowrap;
}

.gdt-booking-review-modal__screening-head strong {
    line-height: 24px;
}

.gdt-screening-result-pill,
.gdt-screening-match-pill {
    border-radius: 999px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    min-width: 64px;
    padding: 0 12px;
    text-align: center;
}

.gdt-screening-result-pill.is-passed,
.gdt-screening-match-pill.is-yes {
    background: #e9fbf1;
    color: #087443;
}

.gdt-screening-result-pill.is-failed,
.gdt-screening-match-pill.is-no {
    background: #fef0ef;
    color: #b42318;
}

.gdt-screening-result-pill.is-not_submitted,
.gdt-screening-match-pill.is-unknown {
    background: #f1f4f8;
    color: #65718b;
}

.gdt-booking-review-modal__notice {
    background: #fff8e5;
    border: 1px solid #f3df9d;
    border-radius: 6px;
    color: #7a5a00;
    font-size: 13px;
    margin: 0 0 14px;
    padding: 10px 12px;
}

.gdt-booking-review-modal__table-wrap {
    border: 1px solid #dfe5ee;
    border-radius: 6px;
    overflow: auto;
}

.gdt-booking-review-modal__table {
    border-collapse: collapse;
    margin: 0;
    min-width: 760px;
    width: 100%;
}

.gdt-booking-review-modal__table th,
.gdt-booking-review-modal__table td {
    border-bottom: 1px solid #e7ebf2;
    color: #33415f;
    font-size: 13px;
    line-height: 1.45;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.gdt-booking-review-modal__table th {
    background: #fff;
    color: #17223b;
    font-weight: 600;
}

.gdt-booking-review-modal__table tr:nth-child(even) td {
    background: #f8fafc;
}

.gdt-booking-review-modal__table tr:last-child td {
    border-bottom: 0;
}

.gdt-booking-review-modal__empty {
    background: #f8fafc;
    border: 1px solid #e7ebf2;
    border-radius: 6px;
    color: #65718b;
    margin: 0;
    padding: 16px;
}

@media (max-width: 767px) {
    .gdt-booking-review-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 22px 16px;
        width: calc(100vw - 24px);
    }

    .gdt-booking-review-modal__summary,
    .gdt-booking-review-modal__screening-head {
        grid-template-columns: 1fr;
    }

    .gdt-booking-review-modal__screening-head {
        display: grid;
    }

    .gdt-booking-review-modal__screening-head > div {
        justify-content: flex-start;
    }
}

/* Partner application review detail page */
.gdt-application-review {
    color: #17223b;
    padding: 0 0 96px;
}

.gdt-application-review__back {
    color: #5b667f;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
}

.gdt-application-review__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
}

.gdt-application-review__left,
.gdt-application-review__right {
    display: grid;
    gap: 18px;
    align-content: start;
}

.gdt-application-review__profile-card,
.gdt-application-review__details-card,
.gdt-application-review__program-card,
.gdt-application-review__questions {
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(25, 35, 60, .04);
}

.gdt-application-review__profile-card {
    padding: 28px 24px 22px;
    text-align: center;
}

.gdt-application-review__avatar {
    align-items: center;
    background: #f4f5f7;
    border: 2px dashed #b7bfcc;
    border-radius: 50%;
    color: #66718b;
    display: inline-flex;
    font-weight: 700;
    height: 92px;
    justify-content: center;
    margin-bottom: 16px;
    width: 92px;
}

.gdt-application-review__profile-card h3 {
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.gdt-application-review__profile-card p {
    color: #68748d;
    font-size: 14px;
    margin: 0 0 14px;
}

.gdt-application-review__verified {
    background: #dff8eb;
    border: 1px solid #c6efd9;
    border-radius: 999px;
    color: #0a7c4a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 8px 14px;
}

.gdt-application-review dl {
    margin: 0;
}

.gdt-application-review__profile-card dl,
.gdt-application-review__details-card dl {
    border-top: 1px solid #edf0f5;
    display: grid;
    gap: 14px;
    padding-top: 18px;
    text-align: left;
}

.gdt-application-review dl div {
    display: grid;
    gap: 6px;
}

.gdt-application-review dt,
.gdt-application-review__program-card span,
.gdt-application-review__questions h4,
.gdt-application-review__details-card h4 {
    color: #8a94a8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    margin: 0;
    text-transform: uppercase;
}

.gdt-application-review dd {
    color: #17223b;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    overflow-wrap: anywhere;
}

.gdt-application-review__details-card {
    padding: 22px;
}

.gdt-application-review__details-card h4 {
    margin-bottom: 18px;
}

.gdt-application-review__program-card {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    padding: 18px 20px;
}

.gdt-application-review__program-card span {
    background: #f2ebff;
    border: 1px solid #e3d4ff;
    border-radius: 999px;
    color: #7446c4;
    letter-spacing: 0;
    padding: 5px 10px;
    text-transform: none;
}

.gdt-application-review__program-card strong {
    color: #505b72;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-application-review__program-card small {
    color: #7a849b;
    font-size: 12px;
}

.gdt-application-review__notice {
    background: #fff8e5;
    border: 1px solid #f3df9d;
    border-radius: 8px;
    color: #7a5a00;
    font-size: 13px;
    margin: 0;
    padding: 12px 14px;
}

.gdt-application-review__questions {
    overflow: hidden;
}

.gdt-application-review__questions h4 {
    background: #f8fafc;
    border-bottom: 1px solid #edf0f5;
    padding: 16px 20px;
}

.gdt-application-review__question-row {
    align-items: center;
    border-bottom: 1px solid #edf0f5;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 18px 20px;
}

.gdt-application-review__question-row:last-child {
    border-bottom: 0;
}

.gdt-application-review__question-row > span:first-child {
    color: #3d485e;
    font-size: 15px;
    line-height: 1.45;
}


.gdt-application-review__question-row.is-auto {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 10px;
}

.gdt-application-review__auto-answer {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 11px 13px;
    border-radius: 8px;
    background: #f2f4f7;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: normal;
}
.gdt-application-review__answer {
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    min-width: 58px;
    padding: 7px 12px;
}

.gdt-application-review__answer.is-yes {
    background: #e9fbf1;
    color: #087443;
}

.gdt-application-review__answer.is-neutral {
    background: #f2f4f7;
    color: #475467;
}

.gdt-application-review__empty {
    color: #68748d;
    margin: 0;
    padding: 18px 20px;
}

.gdt-application-review__sticky-actions {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid #e3e8f0;
    bottom: 0;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, .08);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    left: 0;
    padding: 14px max(24px, calc((100vw - 1180px) / 2));
    position: fixed;
    right: 0;
    z-index: 999;
}

.gdt-application-review__sticky-actions > div {
    display: grid;
    gap: 4px;
}

.gdt-application-review__sticky-actions strong {
    color: #17223b;
    font-size: 15px;
}

.gdt-application-review__sticky-actions span {
    color: #7a849b;
    font-size: 13px;
}

.gdt-application-review__sticky-actions form {
    display: flex;
    gap: 12px;
    margin: 0;
}

.gdt-application-review__decline,
.gdt-application-review__accept {
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    min-width: 120px;
    padding: 14px 20px;
}

.gdt-application-review__decline {
    background: #fff;
    border: 1px solid #dde4ef;
    color: #33415f;
}

.gdt-application-review__accept {
    background: #079669;
    border: 1px solid #079669;
    color: #fff;
}

@media (max-width: 991px) {
    .gdt-application-review__grid {
        grid-template-columns: 1fr;
    }

    .gdt-application-review__program-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .gdt-application-review__sticky-actions {
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .gdt-application-review__sticky-actions form {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


main.page-content .infor-st-setting .form-group {
        margin-top: 0px;
}
#gdt-care-host .gdt-form-section:first-of-type {
    margin-top: 0;
}

#gdt-care-host .gdt-form-section h4 {
    margin: 0 0 18px;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

#gdt-care-host .gdt-form-card {
    padding: 18px 24px;
    border-color: #d8cec5;
}

#gdt-care-host .gdt-form-card label,
#gdt-care-host .gdt-form-card p label {
    color: #111827;
    font-weight: 500;
}

#gdt-care-host .gdt-form-card input,
#gdt-care-host .gdt-form-card select {
    margin: 6px 0 16px;
    padding: 8px 10px;
    border-color: #cfc7bf;
    line-height: 18px;
}

#gdt-care-host .gdt-form-grid {
    gap: 0 28px;
}

.gdt-care-radio-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 500;
}

.gdt-care-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-weight: 400 !important;
}

.gdt-care-radio-row input[type="radio"] {
    width: auto !important;
    margin: 0 !important;
}

.gdt-care-declarations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.gdt-care-declarations label {
    display: flex;
    position: relative;
    align-items: center;
    min-height: 36px;
    margin: 0;
    padding: 8px 10px;
    color: #1E293B;
    background: #ffffff;
    border: 1px solid #d8cec5;
    border-radius: 6px;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.gdt-care-declarations label.is-selected,
.gdt-care-declarations label:has(input:checked) {
    color: #111827;
    background: #fff7ed;
    border-color: #ff4b00;
}

.gdt-care-declarations input[type="checkbox"] {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.gdt-care-declarations span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gdt-care-declarations span::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    border: 1px solid #cfc7bf;
    border-radius: 2px;
}

.gdt-care-declarations label:has(input:checked) span::before {
    background-color: #ff4b00;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.2 4.1 3.1 6 6.8 2' fill='none' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    border-color: #ff4b00;
}


@media (max-width: 640px) {
    .gdt-care-radio-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

.gdt-care-radio-row input[type="radio"] {
    appearance: auto !important;
    -webkit-appearance: radio !important;
    position: static !important;
    box-sizing: border-box;
    width: 14px !important;
    min-width: 14px !important;
    height: 14px !important;
    min-height: 14px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.gdt-care-radio-row input[type="radio"]::after {
    content: none !important;
    display: none !important;
}

/* Partner signup two-step card */
.gdt-partner-signup-page {
    background: #f5f6f8;
}

.gdt-partner-signup-page .page-title {
    display: none;
}

.gdt-partner-signup-page .gdt-signup-shell,
.gdt-partner-signup-page .gdt-signup-shell .row,
.gdt-partner-signup-page .gdt-partner-signup-col,
.gdt-partner-signup-page .gdt-auth-box {
    max-width: 706px;
}

.gdt-partner-signup-page .gdt-auth-box {
    margin: 30px auto 40px;
    padding: 50px 40px 46px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.gdt-partner-signup-page .traveler-signup-box,
.gdt-partner-signup-page .register_form,
.gdt-partner-signup-page .register_form * {
    font-family: Inter, sans-serif !important;
}

.gdt-partner-signup-page .message-wrapper:not(:empty) {
    margin-bottom: 18px;
}

.gdt-partner-signup-header,
.gdt-partner-signup-verify-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gdt-partner-signup-header h2,
.gdt-verify-title {
    margin: 0;
    color: #0b1020;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
}

.gdt-signup-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.gdt-signup-back {
    font-size: 30px;
}

.gdt-partner-signup-progress {
    display: grid;
    grid-template-columns: auto auto minmax(48px, 132px) auto auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 38px 0 36px;
    color: #374151;
}

.gdt-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #cfd5df;
    border-radius: 999px;
    background: #fff;
    color: #6b7280;
    font-size: 18px;
    font-weight: 700;
}

.gdt-step-badge.is-active {
    border-color: #ff4b12;
    background: #ff4b12;
    color: #fff;
}

.gdt-step-badge.is-complete {
    border-color: #40c96b;
    background: #40c96b;
    color: #fff;
}

.gdt-step-text {
    color: #374151;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.gdt-step-text.is-active {
    color: #ff4b12;
}

.gdt-step-line {
    width: 100%;
    height: 2px;
    background: #d6dae1;
}

.gdt-partner-signup-page .form-group {
    margin-bottom: 0;
}

.gdt-partner-signup-page .form-group label {
    display: block;
    margin-bottom: 12px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.gdt-partner-signup-page .form-control {
    height: 40px;
    padding: 0 18px;
    border: 1px solid #d3d8e1;
    border-radius: 6px;
    box-shadow: none;
    color: #111827;
    font-size: 18px;
}

.gdt-partner-signup-page select.form-control {
    padding-right: 18px;
}


.gdt-partner-signup-page .st_check_term_conditions {
    margin: 30px 0 0 !important;
    color: #4b5563;
    font-size: 18px;
}

.gdt-partner-signup-page .st_check_term_conditions label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 400;
}

.gdt-partner-signup-page .st_check_term_conditions input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 0;
}

.gdt-partner-signup-page .st_check_term_conditions a {
    color: #ff4b12;
    font-weight: 700;
}

.gdt-partner-signup-page .text-center.mt20 {
    margin-top: 34px !important;
}

.gdt-partner-signup-page button[type="submit"].btn-primary {
    width: 100%;
    height: 68px;
    border: 0;
    border-radius: 7px;
    background: #ff4b12;
    box-shadow: 0 10px 22px rgba(255, 75, 18, 0.28);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gdt-partner-signup-page button[type="submit"].btn-primary:hover,
.gdt-partner-signup-page button[type="submit"].btn-primary:focus {
    background: #ec3f08;
}

.gdt-partner-signup-page .register_form.is-verifying .st_check_term_conditions {
    display: none;
}

.gdt-partner-signup-step--verify {
    text-align: center;
}

.gdt-partner-signup-progress--verify {
    margin-top: 34px;
    margin-bottom: 30px;
}

.gdt-verify-illustration {
    position: relative;
    width: 150px;
    height: 120px;
    margin: 0 auto 24px;
}

.gdt-verify-envelope {
    position: absolute;
    left: 16px;
    bottom: 6px;
    display: inline-block;
    width: 110px;
    height: 82px;
    border: 2px solid #111827;
    border-radius: 8px;
    background: #ff4b12;
}

.gdt-verify-envelope::before,
.gdt-verify-envelope::after {
    content: "";
    position: absolute;
    top: 25px;
    width: 68px;
    height: 2px;
    background: #111827;
}

.gdt-verify-envelope::before {
    left: -6px;
    transform: rotate(31deg);
}

.gdt-verify-envelope::after {
    right: -6px;
    transform: rotate(-31deg);
}

.gdt-verify-check {
    position: absolute;
    right: 4px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 2px solid #137d32;
    border-radius: 999px;
    background: #40c96b;
}

.gdt-verify-check::before {
    content: "";
    width: 24px;
    height: 13px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg) translate(2px, -2px);
}

.gdt-verify-copy,
.gdt-verify-note,
.gdt-resend-note {
    max-width: 430px;
    margin: 18px auto 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.55;
}

.gdt-verify-copy strong {
    display: block;
    margin-top: 4px;
    color: #0b1020;
    font-weight: 800;
}

.gdt-code-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 34px 0 28px;
}

.gdt-code-boxes input {
    width: 72px;
    height: 72px;
    border: 1px solid #d3d8e1;
    border-radius: 7px;
    color: #111827;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.gdt-code-boxes input:focus {
    border-color: #ff4b12;
    box-shadow: 0 0 0 2px rgba(255, 75, 18, 0.12);
    outline: none;
}

.gdt-resend-code {
    border: 0;
    background: transparent;
    color: #ff4b12;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 767px) {
    .gdt-partner-signup-page .gdt-auth-box {
        margin: 14px auto 24px;
        padding: 28px 18px 30px;
    }

    .gdt-partner-signup-header h2,
    .gdt-verify-title {
        font-size: 30px;
    }

    .gdt-partner-signup-progress {
        grid-template-columns: auto auto;
        justify-content: start;
        gap: 10px 12px;
        margin: 28px 0 26px;
    }

    .gdt-step-line {
        display: none;
    }

    .gdt-step-text {
        font-size: 15px;
        white-space: normal;
    }

    .gdt-partner-signup-page .form-control {
        height: 56px;
        font-size: 16px;
    }

    .gdt-code-boxes {
        gap: 14px;
    }

    .gdt-code-boxes input {
        width: 56px;
        height: 60px;
        font-size: 26px;
    }
}

/* GDT direct membership package cards */
.gdt-plan-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 18px;
    align-items: stretch;
}

.gdt-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 310px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.gdt-plan-card:hover {
    border-color: #fb923c;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.gdt-plan-card.is-selected {
    border-color: #ff4b0b;
    box-shadow: 0 0 0 1px #ff4b0b;
}

.gdt-plan-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: none;
    min-height: 24px;
    padding: 5px 10px;
    color: #ffffff;
    background: #ff4b0b;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
}

.gdt-plan-card.is-selected .gdt-plan-card-badge {
    display: inline-flex;
    align-items: center;
}

.gdt-plan-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 122px;
    background: #ecfdf3;
}

.gdt-plan-card-orbit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 44px;
}

.gdt-plan-card-orbit::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 58px;
    height: 18px;
    background: #a7f3c6;
    border-radius: 50%;
    transform: translateX(-50%);
}

.gdt-plan-card-check {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #079455;
    background: #d1fadf;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.gdt-plan-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.gdt-plan-card-kicker {
    margin: 0 0 8px;
    color: #98a2b3;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 16px;
}

.gdt-plan-card h4 {
    margin: 0 0 10px;
    color: #0f172a;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
}

.gdt-plan-card-description {
    margin: 0 0 16px;
    color: #667085;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.gdt-plan-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.gdt-plan-card-actions button {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-transform: none;
}

.gdt-plan-add,
.gdt-plan-know-more {
    color: #344054;
    background: #ffffff;
    border: 1px solid #d0d5dd;
}

.gdt-plan-card.is-selected .gdt-plan-add {
    color: #344054;
    background: #ffffff;
    border-color: #d0d5dd;
}

.gdt-plan-know-more {
    color: #061c3d;
}

.gdt-plan-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gdt-plan-modal.is-open {
    display: flex;
}

.gdt-plan-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.gdt-plan-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: min(70vh, 620px);
    overflow: auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}

.gdt-plan-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #475467;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    font-size: 22px;
    line-height: 28px;
}

.gdt-plan-modal-dialog h4 {
    margin: 0 40px 12px 0;
    color: #0f172a;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
}

.gdt-plan-modal-content {
    color: #475467;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 24px;
    white-space: pre-line;
}

@media (max-width: 767px) {
    .gdt-plan-card-grid {
        grid-template-columns: 1fr;
    }

    .gdt-plan-card {
        min-height: 0;
    }
}

.gdt-plan-card.is-disabled {
    cursor: default;
    border-color: #cbd5e1;
    background: #f8fafc;
    box-shadow: none;
    transform: none;
}

.gdt-plan-card.is-disabled:hover {
    border-color: #cbd5e1;
    box-shadow: none;
    transform: none;
}

.gdt-plan-card.is-disabled .gdt-plan-card-visual {
    background: #f1f5f9;
}

.gdt-plan-card.is-disabled .gdt-plan-card-orbit::after {
    background: #cbd5e1;
}

.gdt-plan-card.is-disabled .gdt-plan-card-check {
    color: #64748b;
    background: #e2e8f0;
}

.gdt-plan-card.is-disabled .gdt-plan-card-badge {
    display: inline-flex;
    align-items: center;
    background: #64748b;
}

.gdt-plan-card.is-pending .gdt-plan-card-badge {
    background: #f97316;
}

.gdt-plan-card.is-active .gdt-plan-card-badge {
    background: #16a34a;
}

.gdt-plan-card.is-disabled .gdt-plan-add,
.gdt-plan-card.is-disabled .gdt-plan-add:disabled {
    color: #667085;
    background: #f8fafc;
    border-color: #d0d5dd;
    cursor: not-allowed;
    opacity: 1;
}

/* GDT partner sidebar profile summary */
.sidebar-wrapper .sidebar-header.gdt-sidebar-profile-header {
    padding: 20px 20px 18px;
}

.gdt-sidebar-profile-card {
    color: #ffffff;
    font-family: Inter, sans-serif;
}

.gdt-sidebar-profile-main {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.gdt-sidebar-profile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    color: #ff4b0b;
    background: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.gdt-sidebar-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-sidebar-profile-id {
    min-width: 0;
}

.gdt-sidebar-profile-id strong,
.gdt-sidebar-profile-id small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-sidebar-profile-id strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
}

.gdt-sidebar-profile-id small {
    margin-top: 2px;
    color: #8fa1bd;
    font-size: 12px;
    line-height: 17px;
}

.gdt-sidebar-profile-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #dbeafe;
    font-size: 12px;
    line-height: 16px;
}

.gdt-sidebar-profile-rating span {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: 0;
}

.gdt-sidebar-profile-rating b {
    color: #ffffff;
    font-weight: 800;
}

.gdt-sidebar-profile-rating em {
    color: #8fa1bd;
    font-style: normal;
}

.gdt-sidebar-profile-meta {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
}

.gdt-sidebar-profile-meta div {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.gdt-sidebar-profile-meta dt,
.gdt-sidebar-profile-meta dd {
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}

.gdt-sidebar-profile-meta dt {
    color: #8fa1bd;
    font-weight: 500;
}

.gdt-sidebar-profile-meta dd {
    overflow: hidden;
    color: #ffffff;
    font-weight: 700;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-sidebar-profile-meta dd.status-active {
    color: #22c55e;
}

.gdt-sidebar-profile-meta dd.status-pending {
    color: #f59e0b;
}

.gdt-sidebar-profile-meta dd.status-inactive {
    color: #cbd5e1;
}

.sidebar-wrapper .sidebar-header.gdt-sidebar-profile-header .gdt-sidebar-settings-slot {
    margin-top: 20px;
}

/* Hide only legacy Traveler sidebar profile nodes after GDT sidebar summary is active. */
.sidebar-wrapper .sidebar-content > .user-profile,
.sidebar-wrapper .sidebar-content > .user-profile-avatar {
    display: none !important;
}

/* Prevent Traveler legacy dashboard sidebar profile/package flash before GDT sidebar JS runs. */
.sidebar-wrapper .sidebar-content > .sidebar-header:nth-of-type(2):not(.gdt-sidebar-profile-header),
.sidebar-wrapper .sidebar-content > .sidebar-header:has(.freelpand),
.sidebar-wrapper .sidebar-content > .sidebar-header:has(.user-upgrade) {
    display: none !important;
}

@media (max-width: 900px) {
    .gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .gdt-partner-settings #gdt-profile .gdt-profile-picture-card {
        grid-template-columns: 54px 1fr;
    }

    .gdt-partner-settings #gdt-profile .gdt-profile-picture-control {
        grid-column: 1 / -1;
    }

    .gdt-partner-settings #gdt-profile .gdt-profile-password-card .gdt-password-grid {
        grid-template-columns: 1fr;
    }
}
.gdt-partner-settings #gdt-profile .infor-st-setting,
.gdt-partner-settings #gdt-profile .gdt-profile-contact-section,
.gdt-partner-settings #gdt-profile .gdt-profile-picture-section,
.gdt-partner-settings #gdt-profile .gdt-profile-password-card {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
}

.gdt-partner-settings #gdt-profile .gdt-profile-actions-row {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 4px 0 20px;
    background: transparent;
}
.gdt-partner-settings #gdt-profile > .infor-st-setting {
    box-sizing: border-box !important;
    width: calc(100% + 62px) !important;
    max-width: none !important;
    margin-left: -31px !important;
    margin-right: -31px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gdt-partner-settings #gdt-profile > .infor-st-setting > form,
.gdt-partner-settings #gdt-profile > .infor-st-setting .gdt-profile-contact-section,
.gdt-partner-settings #gdt-profile > .infor-st-setting .gdt-profile-picture-section {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
}
.gdt-partner-settings #gdt-profile > .infor-st-setting {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gdt-partner-settings #gdt-profile > .infor-st-setting > form,
.gdt-partner-settings #gdt-profile > .infor-st-setting .gdt-profile-contact-section,
.gdt-partner-settings #gdt-profile > .infor-st-setting .gdt-profile-picture-section,
.gdt-partner-settings #gdt-profile > .gdt-profile-password-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.gdt-partner-settings #gdt-legal .gdt-cert-uploader {
    padding: 28px;
    border-color: #d8e0e8;
    border-radius: 8px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-uploader .gdt-cert-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-heading-icon,
.gdt-partner-settings #gdt-legal .gdt-cert-saved-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    background: #fff4df;
    border-radius: 8px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-heading-icon::before,
.gdt-partner-settings #gdt-legal .gdt-cert-saved-icon::before {
    content: "";
    width: 22px;
    height: 26px;
    border: 3px solid #172b4d;
    border-radius: 4px;
    box-sizing: border-box;
}

.gdt-partner-settings #gdt-legal .gdt-cert-heading h4 {
    margin: 2px 0 26px;
    color: #071f44;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-legal .gdt-cert-heading small {
    color: #536b8f;
    margin-top:-20px;
    padding-left:2px;
    font-size: 12px;
    line-height: 20px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-add-new {
    min-width: 94px;
    height: 40px;
    padding: 0 18px;
    color: #ffffff;
    background: #ff4b00;
    border: 1px solid #ff4b00;
    border-radius: 6px;
    box-shadow: 0 12px 24px rgba(255, 75, 0, 0.22);
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-empty,
.gdt-partner-settings #gdt-legal .gdt-cert-selected-panel {
    border: 1px dashed #c9d7eb;
    border-radius: 8px;
    background: #fbfdff;
}

.gdt-partner-settings #gdt-legal .gdt-cert-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 34px 20px;
    text-align: center;
}

.gdt-partner-settings #gdt-legal .gdt-cert-empty strong {
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-empty span,
.gdt-partner-settings #gdt-legal .gdt-cert-selected-head span,
.gdt-partner-settings #gdt-legal .gdt-cert-secure-note {
    color: #536b8f;
    font-size: 14px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-panel {
    margin-top: 14px;
    padding: 14px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 12px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-head strong {
    color: #071f44;
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-card {
    padding: 14px;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 6px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(160px, 0.9fr) minmax(160px, 0.9fr) 128px;
    gap: 10px;
    align-items: end;
}

.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields p {
    margin: 0;
}

.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields label {
    display: block;
    margin: 0 0 4px;
    color: #071f44;
    font-size: 12px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields input[type="text"],
.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields input[type="date"] {
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #d1dbe8;
    border-radius: 6px;
    box-shadow: none;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-control {
    display: grid;
    gap: 6px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-btn {
    height: 38px;
    color: #ffffff;
    background: #ff4b00;
    border: 1px solid #ff4b00;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-btn:disabled {
    color: #8ba0ba;
    background: #e8eef5;
    border-color: #d8e0e8;
    cursor: not-allowed;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-control small {
    color: #536b8f;
    font-size: 11px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-file {
    margin-top: 18px;
    color: #4b5f7d;
    font-size: 13px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-list {
    display: grid;
    gap: 12px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 28px 20px;
    border: 1px solid #d8e0e8;
    border-radius: 7px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-icon {
    background: #e9f9ef;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-copy {
    display: grid;
    gap: 8px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-copy strong {
    color: #071f44;
    font-size: 14px;
    font-weight: 700;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-copy small {
    color: #536b8f;
    font-size: 13px;
}

.gdt-partner-settings #gdt-legal .gdt-cert-saved-copy a {
    color: #0b66ff;
    font-size: 13px;
    text-decoration: none;
}

.gdt-partner-settings #gdt-legal .gdt-cert-uploader .gdt-cert-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    color: #ff3344;
    background: #ffffff;
    border: 1px solid #ffb5bd;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
}

.gdt-partner-settings #gdt-legal .gdt-cert-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 0;
}

.gdt-partner-settings #gdt-legal .gdt-cert-secure-note span {
    width: 16px;
    height: 16px;
    border: 2px solid #36c832;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .gdt-partner-settings #gdt-legal .gdt-cert-pending-fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .gdt-partner-settings #gdt-legal .gdt-cert-uploader .gdt-cert-header,
    .gdt-partner-settings #gdt-legal .gdt-cert-selected-head {
        flex-direction: column;
    }

    .gdt-partner-settings #gdt-legal .gdt-cert-pending-fields,
    .gdt-partner-settings #gdt-legal .gdt-cert-saved-item {
        grid-template-columns: 1fr;
    }
}
.gdt-partner-settings #gdt-legal .gdt-cert-selected-card,
.gdt-partner-settings #gdt-legal .gdt-cert-pending-fields,
.gdt-partner-settings #gdt-legal .gdt-cert-upload-control {
    box-sizing: border-box;
    min-width: 0;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-control input[type="file"] {
    display: none !important;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-control .gdt-cert-upload-btn {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0 14px;
    white-space: nowrap;
}

.gdt-partner-settings #gdt-legal .gdt-cert-upload-control small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-file {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Keep the legal certificate upload controls inside the selected-file card. */
.gdt-partner-settings #gdt-legal .gdt-cert-selected-panel,
.gdt-partner-settings #gdt-legal .gdt-cert-selected-card {
    max-width: 100%;
    overflow: hidden;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-card .gdt-cert-pending-fields {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(104px, 128px);
    width: 100%;
    max-width: 100%;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-card .gdt-cert-pending-fields > p,
.gdt-partner-settings #gdt-legal .gdt-cert-selected-card .gdt-cert-upload-control {
    min-width: 0;
    max-width: 100%;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-card input[type="file"][name="snc_business_certificate[]"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.gdt-partner-settings #gdt-legal .gdt-cert-selected-card .gdt-cert-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1100px) {
    .gdt-partner-settings #gdt-legal .gdt-cert-selected-card .gdt-cert-pending-fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}
.gdt-cert-uploader input[type="file"][hidden],
.gdt-cert-uploader input[type="file"] {
    display: none !important;
}

.gdt-cert-uploader .gdt-cert-selected-card {
    overflow: hidden;
}

.gdt-cert-uploader .gdt-cert-upload-control {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
/* Membership plan package cards in the partner settings tab. */
.gdt-partner-settings #gdt-membership .gdt-plan-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(224px, 240px));
    gap: 18px;
    align-items: stretch;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card {
    min-height: 308px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected {
    border-color: #ff4b0b;
    box-shadow: 0 0 0 1px #ff4b0b;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled {
    background: #ffffff;
    border-color: #ff4b0b;
    cursor: default;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-badge {
    top: 12px;
    right: 10px;
    display: none;
    min-height: 26px;
    padding: 6px 11px;
    background: #ff4b0b;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected .gdt-plan-card-badge,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-card-badge {
    display: inline-flex;
    align-items: center;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-visual,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-card-visual {
    min-height: 122px;
    background: #eff6ff;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected .gdt-plan-card-visual,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled.is-selected .gdt-plan-card-visual {
    background: #ecfdf3;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-orbit::after,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-card-orbit::after {
    background: #bfdbfe;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected .gdt-plan-card-orbit::after,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled.is-selected .gdt-plan-card-orbit::after {
    background: #a7f3c6;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-check,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-card-check {
    color: #2563eb;
    background: #dbeafe;
    font-size: 30px;
    font-weight: 400;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected .gdt-plan-card-check,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled.is-selected .gdt-plan-card-check {
    color: #079455;
    background: #d1fadf;
    font-size: 20px;
    font-weight: 800;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-body {
    padding: 17px 18px 18px;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-kicker {
    margin-bottom: 8px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card h4 {
    margin-bottom: 9px;
    color: #071f44;
    font-size: 17px;
    font-weight: 800;
    line-height: 23px;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-description {
    color: #536b8f;
    font-size: 14px;
    line-height: 20px;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-actions button {
    min-height: 36px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
}

.gdt-partner-settings #gdt-membership .gdt-plan-add {
    color: #ffffff;
    background: #ff4b0b;
    border-color: #ff4b0b;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-selected .gdt-plan-add,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-add,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-disabled .gdt-plan-add:disabled {
    color: #344054;
    background: #ffffff;
    border-color: #d0d5dd;
    cursor: default;
    opacity: 1;
}

.gdt-partner-settings #gdt-membership .gdt-plan-know-more {
    color: #061c3d;
    background: #ffffff;
    border-color: #d0d5dd;
}

body.gdt-plan-modal-open {
    overflow: hidden;
}
/* Keep membership plan action labels on one line while remaining responsive. */
.gdt-partner-settings #gdt-membership .gdt-plan-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
}

.gdt-partner-settings #gdt-membership .gdt-plan-card-actions button {
    white-space: nowrap;
    padding-left: 14px;
    padding-right: 14px;
}

@media (max-width: 640px) {
    .gdt-partner-settings #gdt-membership .gdt-plan-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gdt-partner-settings #gdt-membership .gdt-plan-card-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 380px) {
    .gdt-partner-settings #gdt-membership .gdt-plan-card-actions {
        grid-template-columns: 1fr;
    }
}
/* Disabled membership alternatives when a package is already active or pending. */
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-blocked {
    border-color: #d9e2ec;
    box-shadow: none;
    opacity: 0.68;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-blocked .gdt-plan-card-badge {
    display: none;
}

.gdt-partner-settings #gdt-membership .gdt-plan-card.is-blocked .gdt-plan-add,
.gdt-partner-settings #gdt-membership .gdt-plan-card.is-blocked .gdt-plan-add:disabled {
    color: #98a2b3;
    background: #f8fafc;
    border-color: #d0d5dd;
    cursor: not-allowed;
}

.gdt-partner-settings #gdt-care-host .gdt-primary-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
