/* Quiz User Page Styles */
html{
    margin: 0 !important;
}
.quiz-user-page{
    background-color: #FAF9F7;
}
.quiz-container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('../images/quiz/quiz-bg-left.png'), url('../images/quiz/quiz-bg-right.png');
    background-size: 60%;
    background-position: left top, right bottom;
    background-repeat: no-repeat;
}
.quiz-content{
    text-align: center;
    max-width: 780px;
    min-width: 780px;
    padding-inline: 20px;
}
.quiz-logo{
    margin-bottom: 25px;
}
.question-title{
    font-size: 2rem;
    font-weight: 600;
    margin-block: 20px 10px;
}
.quiz-title{
    font-size: 2.5rem;
    font-weight: 600;
    margin-block: 20px 10px;
}
.quiz-title span{
    color: #D5A465;
}
.initial-step{
    position: relative;
}
.initial-step::after{
    content: '';
    display: block;
    width: 100%;
    height: 32px;
    background-image: url('../images/quiz/content-icons.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60px;
    opacity: 0.2;
}
.questions-step{
    position: relative;
}
.questions-step::after{
    content: '';
    display: block;
    width: 100%;
    height: 32px;
    background-image: url('../images/quiz/content-icons.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60px;
    left: 0;
    opacity: 0.2;
}
.initial-step .quiz-title{
    color: #D5A465;
}
.quiz-description{
    font-size: 1.25rem;
    color: #6B7280;
    margin-inline: -20px;
    margin-bottom: 30px;
}
.quiz-description span{
    color: #D5A465;
}

.password-tooltip {
    text-align: left;
    display: block;
    margin-top: 8px;
    padding-left: 10px;
    color: #6B7280;
}

/* Progress Bar Styles */
.quiz-progress {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.progress-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label {
    font-size: 18px;
    color: #D5A465;
    margin-bottom: 8px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #D5A465;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-percentage {
    font-size: 18px;
    color: #D5A465;
    margin-bottom: 8px;
    text-align: right;
}

/* Start Button Styles */

.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #D5A465;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 80%;
    min-height: 57px;
  }
  
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: transparent;
    color: #D5A465;
    text-decoration: underline;
  }

  .btn-secondary.loading {
    position: relative;
    opacity: 1;
    cursor: not-allowed;
  }
  
  .btn-secondary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #D5A465;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #D5A465;
    border-radius: 14px;
    background: #D5A465;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 15px;
    min-height: 57px;
  }

  .btn-primary svg{
    transition: all 0.2s ease;
  }
  
  /* Disabled button styles */
  .btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  .btn-primary:disabled:hover {
    background-color: #D5A465;
    border-color: #D5A465;
    color: #fff;
    transform: none;
  }
  
  /* Loading state for confirm appointment button */
  .btn-primary.loading {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  .btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #FAF9F7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


/* Time Estimate */
.time-estimate {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    font-weight: 400;
}

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

.questions-step{
    padding-inline: 30px;
}
.questions-step .quiz-progress{
    margin-inline: -30px;
}
.questions-step .btn-primary{
    width: 100%;
    margin-top: 30px;
}

/* Radio Options Styles */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-align: left;
}

.radio-option:hover {
    border-color: #D5A465;
    background: #D5A465;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-text {
    font-size: 18px;
    color: #374151;
    font-weight: 500;
    flex: 1;
}
.radio-option:hover .radio-text{
    color: #fff;
}
.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    /* background: #FFFFFF; */
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-text + .radio-button,
.radio-option input[type="radio"]:hover + .radio-text + .radio-button {
    border-color: #FAF9F7;
    /* background: #D5A465; */
}

.radio-option input[type="radio"]:checked + .radio-text + .radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked {
    background: #FEF7F0;
    border-color: #D5A465;
}

/* Selected state styling */
.radio-option:has(input[type="radio"]:checked) {
    background: #D5A465;
    border-color: #D5A465;
}

.radio-option:has(input[type="radio"]:checked) .radio-text {
    color: #fff;
}

.missing-title {
    color: #1F2937;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.missing-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.missing-item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #D5A46533;
    border-radius: 50%;
    box-shadow: 0px 10px 15px 0px #0000001A;
    box-shadow: 0px 4px 6px 0px #0000001A;
    margin-bottom: 12px;
    margin-inline: auto;
}

.missing-item {
    text-align: center;
}

.missing-item-title {
    color: #374151;
    font-weight: 500;
}

.missing-description{
    color: #6B7280;
    font-weight: 300;
    margin-top: 20px;
}

.motivation-tip {
    width: 85%;
    background: #EBD7B0;
    padding: 20px 24px;
    border: 1px solid #D5A465;
    box-shadow: 0px 1px 7.7px 0px #D5A4655E;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin-block: 30px;
    margin-inline: auto;
}

/* Limited Time Offer Countdown */
.limited-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(213, 164, 101, 0.32) 0%, rgba(213, 164, 101, 0.13) 100%);
    border: 1px solid #E7DED7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 80%;
    margin-inline: auto;
}

.offer-details {
    flex: 1;
    z-index: 1;
    max-width: 60%;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.offer-header h3 {
    color: #1F2937;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}


.offer-details p {
    color: #374151;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.offer-details p span {
    font-weight: 400;
}

.countdown-timer {
    min-width: 230px;
    text-align: center;
    z-index: 1;
}

.countdown-label {
    color: #4B5563;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.countdown-number {
    color: #383838;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.countdown-unit {
    color: #D5A465;
    font-size: 12px;
    font-weight: 600;
}

.countdown-separator {
    color: #383838;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin: 0 2px;
}

/* Quiz Step Transitions */
.quiz-container {
    position: relative;
    overflow: hidden;
}

.initial-step,
.questions-step,
.result-step,
.personalization-step {
    transition: all 0.3s ease-in-out;
}

/* Slide animations */
.slide-out-left {
    animation: slideOutLeft 0.3s ease-in-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.3s ease-in-out forwards;
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Questions step styling */
.questions-step {
    position: relative;
}

.questions-step-content {
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.questions-step-content.active {
    display: block;
    opacity: 1;
}

/* Progress bar animations */
.progress-fill {
    transition: width 0.5s ease-in-out;
}

.progress-label,
.progress-percentage {
    transition: all 0.3s ease-in-out;
}

/* Form validation styles */
.error-border {
    border: 2px solid #EF4444 !important;
    background-color: #FEF2F2 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-border:focus {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* Toast notification styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-error {
    background-color: #EF4444;
}

.toast-info {
    background-color: #3B82F6;
}

/* Fade transition effects */
.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Confetti animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    80% {
        transform: translateY(80vh) rotate(576deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.confetti-piece {
    position: absolute;
    pointer-events: none;
}

/* Result step styling */
.result-step {
    text-align: center;
}

.result-content {
    max-width: 600px;
    margin: 0 auto;
}

.result-icon {
    margin-bottom: 20px;
}

.result-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.result-description {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.result-highlights {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 32px;
    text-align: center;
}

.highlight-text {
    flex: 1;
    font-size: 14px;
    color: #374151;
}

/* Personalization step styling */

.personalization-content {
    max-width: 800px;
    margin: 0 auto;
}

.personalization-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
}

.personalization-description {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
    text-align: center;
}

.plan-sections {
    margin-bottom: 40px;
}

.plan-section {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.plan-section:last-child {
    margin-bottom: 0;
}

.plan-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.plan-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-section li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

.plan-section li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D5A465;
    font-weight: bold;
}

.cta-section {
    background: #D5A465;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
}


/* Step Content Notice */
.step-content-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #FFF9F2;
    border-left: 4px solid #D5A465;
    border-radius: 4px;
    padding: 10px 20px;
    margin-block: 15px;
    text-align: left;
}

.info-icon {
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.notice-content {
    flex: 1;
}

.notice-content p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* Date Picker */
.call-calender-slots {
    max-width: 486px;
    background-color: #FFF9F2;
    border: 1px solid #E7DED7;
    border-radius: 14px;
    padding: 10px;
    margin: 0px auto 20px auto;
}

.call-calender-slots .ui-datepicker-inline.ui-datepicker {
    width: 100%;
    background: transparent;
    border: none;
}
.ui-widget{
    font-family: "Poppins";
}
.ui-datepicker .ui-datepicker-header{
    background: none;
    border: none;
    border-radius: 0;
    font-weight: 500;
}
.ui-datepicker th{
    font-weight: 400;
    color: #6B7280;
}
table thead:first-child tr:first-child th {
    border-block-start: none;
}
table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th,
table tbody tr:hover>td,
table tbody tr:hover>th {
    background-color: transparent !important;
}
.ui-state-default, .ui-widget-content .ui-state-default{
    border: none;
    background: transparent;
    text-align: center;
    padding: 0.6em 0.2em;
}
.ui-state-active, .ui-widget-content .ui-state-active,
.ui-state-hover, .ui-widget-content .ui-state-hover{
    background: #D5A465;
    color: #fff;
    border-radius: 25px;
}
.ui-widget-header .ui-icon{
    background-image: url('/wp-content/themes/hello-theme-child-master/assets/images/onboarding/date-next.svg');
    background-position: center;
}
.ui-widget-header .ui-datepicker-prev .ui-icon{
    transform: rotate(180deg);
}
.ui-datepicker .ui-datepicker-next{
    top: 1px !important;
    right: 2px !important;

}
.ui-datepicker .ui-datepicker-prev{
    top: 1px !important;
    left: 2px !important;
}
.ui-widget-header .ui-state-hover{
    background: none;
    border: none;
    cursor: pointer;
}

/* Time Slots */
.time-slots {
    margin-top: 10px;
    padding-inline: 20px;
}

.time-slots-heading {
    color: #383838;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-align: left;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.time-slot {
    display: block;
    cursor: pointer;
    position: relative;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-slot-text {
    display: block;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #E7DED7;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    transition: all 0.2s ease;
    user-select: none;
}

.time-slot:hover .time-slot-text {
    background: #FFF9F2;
    border-color: #D5A465;
}

.time-slot input[type="radio"]:checked + .time-slot-text {
    background: #D5A465;
    border-color: #D5A465;
    color: white;
}

/* Booked time slot styles */
.time-slot.booked {
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.booked .time-slot-text {
    background: #F5F5F5;
    border-color: #E0E0E0;
    color: #999;
    position: relative;
}

.time-slot.booked:hover .time-slot-text {
    background: #F5F5F5;
    border-color: #E0E0E0;
}

.booked-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B6B;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

/* Loading and error states for time slots */
.loading-slots, .error-slots {
    grid-column: 1 / -1;
}

/* Appointment Confirmation Step Styles */
.appointment-confirmed-step {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-header {
    margin-bottom: 40px;
}

.success-icon {
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.appointment-details {
    margin-bottom: 40px;
}

.details-title {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 20px;
    text-align: left;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E7DED7;
    transition: all 0.2s ease;
}

.detail-item:hover {
    border-color: #D5A465;
    box-shadow: 0 2px 8px rgba(213, 164, 101, 0.1);
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #FFF9F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    flex: 1;
    text-align: left;
}

.detail-label {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.detail-value {
    font-size: 16px;
    color: #383838;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 40px;
}

.steps-title {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 20px;
    text-align: left;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #FAF9F7;
    border-radius: 8px;
    border: 1px solid #E7DED7;
    transition: all 0.2s ease;
}

.step-item:hover {
    border-color: #D5A465;
    box-shadow: 0 2px 8px rgba(213, 164, 101, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #D5A465;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 6px;
}

.step-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

/* .confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
} */

/* Responsive Design */
@media (min-width: 768px) {
    .details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .steps-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .confirmation-actions {
        flex-direction: row;
    }
    
    .confirmation-actions .btn-primary,
    .confirmation-actions .btn-secondary {
        display: inline-block;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .appointment-confirmed-step {
        padding: 20px 15px;
    }
    
    .appointment-details {
        padding: 20px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .step-item {
        padding: 15px;
    }
}

.error-slots {
    color: #FF6B6B;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* Call Method */
.call-method {
    margin-top: 10px;
    padding-inline: 20px;
}

.call-method-heading {
    color: #383838;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-align: left;
}

.call-method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.call-method-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.call-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.call-method-option-text {
    display: block;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #E7DED7;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    transition: all 0.2s ease;
    user-select: none;
}

.call-method-option:hover .call-method-option-text {
    background: #FFF9F2;
    border-color: #D5A465;
}

.call-method-option input[type="radio"]:checked + .call-method-option-text {
    background: #D5A465;
    border-color: #D5A465;
    color: white;
}
#phoneNumberBlock {
    margin: 12px 0 0 0;
}

/* intlTelInput Custom Styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 8px 0 0 8px;
    left: 1px !important;
    max-height: 90%;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 1;
}

.iti__selected-flag {
    background: #FFFFFF !important;
    border: none !important;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 12px;
}

.iti__selected-flag:hover {
    background: #F3F4F6;
}

.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #6B7280;
    margin-left: 6px;
}

.iti__arrow--up {
    border-bottom: 5px solid #6B7280;
    border-top: none;
}

.iti__country-list {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-height: 200px;
}

.iti__country {
    padding: 8px 12px;
    border-bottom: 1px solid #F3F4F6;
}

.iti__country:hover {
    background: #F9FAFB;
}

.iti__country.iti__active {
    background: #D5A465;
    color: #FFFFFF;
}

.iti__dial-code {
    color: #6B7280;
}

.iti__country.iti__active .iti__dial-code {
    color: #FFFFFF;
}

.iti__selected-country{
    display: flex !important;
    background-color: transparent !important;
    border: none !important;
    color: #333 !important;
}
.iti__country-container button[type=button]{
    background-color: transparent !important;
    border: none !important;
}
.iti__selected-country-primary{
    background-color: transparent !important;
    border: none !important;
}

.iti--inline-dropdown .iti__dropdown-content {
    bottom: 80px;
}

.iti__search-input {
    width: 100% !important;
    border-width: 0 !important;
    border-radius: 3px !important;
    padding-left: 30px !important;
    padding-right: 28px !important;
    border: none !important;
    offset: none !important;
    outline: none !important;
}

.iti__search-clear{
    padding: 4px !important;
}

.appointment-confirmed-step .steps-title{
    font-family: "Poppins";
}