
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:focus{outline: 0;}
body {
    font-family: 'Lato', sans-serif;
    background: #f5faff;
    min-height: 100vh;
}
header .menuHeader{background: #fff;}
/* Header */
.writereview-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.writereview-ht-tech-logo {
    width: 139px;
    height: 40px;
}

.writereview-search-button {
    flex: 1;
    max-width: 360px;
    margin: 0 24px;
    background: white;
    border: 0.6px solid #6a6d7c;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.04);
}

.writereview-search-button input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #20253c;
}

.writereview-search-button input::placeholder {
    color: #6a6d7c;
}

.writereview-header-right {
    display: flex;
    gap: 8px;
}

.writereview-header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.writereview-header-btn:hover {
    background: #f0f0f0;
}

.writereview-header-btn span {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #20253c;
}

/* Navigation Bar */
.writereview-navigation-bar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 40;
    background: white;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 8px 156px;
    overflow-x: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.writereview-nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #424242;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}

.writereview-nav-item:hover {
    color: #0062b8;
}

.writereview-nav-item svg {
    flex-shrink: 0;
}

/* Main Content */
.writereview-main-content {
    margin:24px 0 32px;
    display: flex;
    gap: 24px;
}

/* Product Card */
.writereview-product-card-container {
    width: 360px;
    flex-shrink: 0;
}

.writereview-product-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
}

.writereview-product-card-title {
    font-family:'Lato', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #20253c;
    line-height: 28px;
    margin-bottom: 12px;
}
.writereview-product-card-title span{font-family:'Lato', sans-serif; font-weight: 900;}

.writereview-product-info-card {
    border: 0.4px solid #cdced3;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 12px;
}

.writereview-product-image {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.writereview-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.writereview-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.writereview-product-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.writereview-product-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
}

.writereview-product-variant {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6a6d7c;
    line-height: 20px;
}

.writereview-change-product-btn {
    background: white;
    border: 0.4px solid #0062b8;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0062b8;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
    width: 118px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.writereview-change-product-btn:hover {
    background: #f5faff;
}

/* Rating Form */
.writereview-rating-form-container {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Stepper */
.writereview-stepper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.writereview-stepper-steps {
    display: flex;
    align-items: center;
    gap: 1px;
}

.writereview-step-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    margin-bottom: 0!important;
}
.writereview-step-item.filled .writereview-step-circle{background:#0062B8; color:#fff}
.writereview-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e7e7ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #6a6d7c;
    position: relative;
}
.writereview-step-circle svg{
    display: none;
}
/* Active step: shows number in blue background */
.writereview-step-circle.active {
    background: #EBF6FF;
    color: #0062bb;
    border-color: #0062B8;
}
.writereview-step-circle.active::before{
    content: attr(data-step);
}
/* Completed step: shows checkmark */
.writereview-step-circle.completed {
    background: #0062B8;
    border-color: #0062B8;
}
.writereview-step-circle.completed svg{
    display: block;
}
.writereview-step-circle.completed::before{
    display: none;
}
/* Default: shows step number */
.writereview-step-circle::before {
    content: attr(data-step);
}

.writereview-step-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #e7e7ea 0,
        #e7e7ea 4px,
        transparent 4px,
        transparent 8px
    );
}
.writereview-step-line.filled{background:#0062B8}
.writereview-stepper-labels {
    display: flex;
    justify-content: space-between;
}

.writereview-step-label {
    width: 48px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6a6d7c;
}

.writereview-step-label.active {
    color: #0062b8;
    font-weight: 700;
}

/* Step Content */
.writereview-step-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ownership Question */
.writereview-ownership-question {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.writereview-question-title {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
}
.writereview-question-title span {
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #20253c;
}
.writereview-radio-options {
    display: flex;
    gap: 16px;
}

.writereview-radio-option {
    flex: 1;
    background: white;
    border: 0.4px solid #cdced3;
    border-radius: 8px;
    padding:0 10px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin:0
}

.writereview-radio-option:hover {
    background: #f9f9f9;
}

.writereview-radio-option.selected {
    background: #f5faff;
    border-color: #0062b8;
}

.writereview-radio-circle {
    width: 16px;
    height: 16px;
    margin-top:1px;
    /* border: 1px solid #cdced3;
    border-radius: 50%; */
    position: relative;
    background: url(https://images.hindustantimes.com/tech/static/revamp/images/radioUnchecked.svg) no-repeat center center;
    background-size: 100% auto;
}

.writereview-radio-option.selected .writereview-radio-circle {
    background: url(https://images.hindustantimes.com/tech/static/revamp/images/radioChecked.svg) no-repeat center center;
    background-size: 100% auto;
}

/* .writereview-radio-option.selected .writereview-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0062b8;
    border-radius: 50%;
} */

.writereview-radio-option span {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #515567;
}

.writereview-radio-option.selected span {
    color: #0062b8;
    font-weight: 700;
    text-transform: initial;
}

/* Rating Questions */
.writereview-rating-questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.writereview-rating-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.writereview-rating-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.writereview-rating-category span {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #515567;
    line-height: 24px;
    flex: 1;
}

.writereview-stars {
    display: flex;
    gap: 4px;
}

.writereview-star {
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
}
.writereview-star:hover {
    background: #F5FAFF;
}
.writereview-star svg {
    width: 24px;
    height: 24px;
}

.writereview-star .star-filled {
    display: none;
}

.writereview-star.filled .star-outline,
.writereview-star.hovered .star-outline {
    display: none;
}

.writereview-star.filled .star-filled,
.writereview-star.hovered .star-filled {
    display: block;
}

.writereview-star path {
    fill: #cdced3;
    transition: fill 0.2s;
}

.writereview-star.filled path,
.writereview-star.hovered path {
    fill: #0062B8;
}

/* Review Section */
.writereview-review-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.writereview-review-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.writereview-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.writereview-field-header label {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
}
.writereview-field-header label sup{color:#B81800; display:inline-block; vertical-align: top; font-weight:700}
.writereview-char-count {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #CDCED3;
    line-height: 20px;
    text-align: right;
    margin-top: -4px;
    text-align: left;
}
.writereview-review-field input,
.writereview-review-field textarea {
    width: 100%;
    background: white;
    border: 0.6px solid #cdced3;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #20253c;
    line-height: 24px;
    outline: none;
    transition: border-color 0.2s;
}
.writereview-review-field textarea{height: 216px;}

.writereview-review-field input::-webkit-input-placeholder,
.writereview-review-field textarea::-webkit-input-placeholder {
    color: #6A6D7C;
    font-style: italic;
}

.writereview-review-field input::placeholder,
.writereview-review-field textarea::placeholder {
    color: #6a6d7c;
}

.writereview-review-field input:focus,
.writereview-review-field textarea:focus {
    border-color: #0062b8;
}
.writereview-review-field input:-webkit-autofill,
.writereview-review-field input:-webkit-autofill:hover,
.writereview-review-field input:-webkit-autofill:focus,
.writereview-review-field textarea:-webkit-autofill,
.writereview-review-field textarea:-webkit-autofill:focus {
    border-color: #0062b8;
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}
.writereview-field-error {
    border-color: #d32f2f !important;
}

.writereview-error-msg {
    color: #B81800;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: -4px;
}

#wordLimitError {
    margin-top: 4px;
}

/* Submit Section */
.writereview-submit-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.writereview-summary-header h3 {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #20253c;
    line-height: 28px;
    margin-bottom: 8px;
}

.writereview-summary-header p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6a6d7c;
    line-height: 20px;
}

.writereview-summary-product {
    background: #f5faff;
    border-radius: 12px;
    padding: 16px;
}

.writereview-summary-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6a6d7c;
    line-height: 20px;
    margin-bottom: 8px;
}

.writereview-summary-field {
    margin-bottom: 16px;
}

.writereview-summary-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.writereview-summary-field-header .writereview-summary-label {
    margin-bottom: 0;
}

.writereview-edit-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: white;
    border: 0.4px solid #0062b8;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #0062b8;
    cursor: pointer;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.08);
    transition: all 0.2s;
}

.writereview-edit-btn:hover {
    background: #f5faff;
}

.writereview-edit-btn:active {
    background: #f0f7ff;
}

.writereview-edit-btn svg {
    flex-shrink: 0;
}

.writereview-summary-product-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
}

.writereview-summary-product-variant {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6a6d7c;
    line-height: 20px;
}

.writereview-summary-value {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
}

.writereview-overall-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.writereview-rating-number {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #20253c;
    line-height: 32px;
}

.writereview-rating-stars-small {
    display: flex;
    gap: 2px;
}

.writereview-rating-stars-small svg {
    width: 16px;
    height: 16px;
}

.writereview-ratings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.writereview-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.writereview-breakdown-item span {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #515567;
}
.writereview-summary-review .fulluserreview-reviewer-container-fullreview .productreview-reviews-rating-category{
    flex:inherit;
}
.writereview-summary-review .productreview-reviews-rating-category{width: calc(33% - 24px); gap: 8px;}
.writereview-summary-review .productreview-reviews-category-name{font-size: 16px; text-align: left; width:calc(100% - 52px)}
.writereview-breakdown-item .productreview-reviews-category-icon {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.writereview-breakdown-item .productreview-reviews-check-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.writereview-breakdown-item .productreview-reviews-category-rating {
    font-size: 12px;
    font-weight: 700;
    color: #20253c;
    position: relative;
    z-index: 1;
}

.writereview-summary-review {
    margin-bottom: 20px;
}

.writereview-summary-review .fulluserreview-reviewer-container-fullreview{
    padding:0;
    margin: 0;
}
#stepContent3 .writereview-summary-review{margin-bottom: 12px;}
.writereview-review-box {
    background: white;
    border: 1px solid #e7e7ea;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.writereview-review-title-display {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20253c;
    line-height: 24px;
    margin-bottom: 8px;
}

.writereview-review-text-display {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #515567;
    line-height: 22px;
}

.writereview-terms-checkbox {
    display: flex;
}

.writereview-terms-checkbox label {
    display: flex;
    gap: 12px;
    cursor: pointer;
}

.writereview-terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    cursor: pointer;
    accent-color: #0062b8;
    flex-shrink: 0;
}

.writereview-terms-checkbox span {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #515567;
    line-height: 22px;
}

.writereview-terms-link {
    color: #0062b8;
    text-decoration: underline;
}

/* Submit Buttons Container */
.writereview-submit-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.writereview-submit-btn {
    flex: 1;
    background: #0062b8;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.2);
    transition: all 0.2s;
}

.writereview-submit-btn:hover:not(:disabled) {
    background: #00559f;
}

.writereview-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Navigation Buttons */
.writereview-nav-buttons {
    display: flex;
    gap: 20px;
}

.writereview-btn-previous,
.writereview-btn-next {
    flex: 1;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 48px;;
}

.writereview-btn-previous {
    background: white;
    border: 0.4px solid #0062b8;
    color: #0062b8;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.08);
}

.writereview-btn-previous:hover:not(:disabled) {
    background: #f5faff;
}

.writereview-btn-next {
    background: #0062b8;
    border: none;
    color: white;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.2);
}

.writereview-btn-next:hover:not(:disabled) {
    background: #00559f;
}

.writereview-btn-previous:disabled,
.writereview-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.psAccordion.showMb{display: none;}
.psAccordion {
  background: #fff;
  margin:24px 0 0;
  border-radius: 16px;
  padding:20px;
}

.psAccordionItem {
  border: 1px solid #CDCED3;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}

/* hide checkbox */
.psAccordionToggle {
  display: none;
}

.psAccordionHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  cursor: pointer;
}

.psHeadingLeft {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  color: #20253C;
}

.psToggleIcon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.psToggleIcon::before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #20253C;
}
.psToggleIcon::after {
    content: "";
    width: 9px;
    height: 1px;
    background-color: #20253C;
    position: absolute;
    transform: rotate(90deg);
}
.psAccordionToggle:checked + .psAccordionHeading .psToggleIcon::after {
display: none;
}

.psAccordionContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding:0 16px
}

.psAccordionToggle:checked + .psAccordionHeading + .psAccordionContent {
  max-height: 200px;
}

.psAccordionContent ul {
  padding:0 14px 14px 17px;
  margin: 0;
}

.psAccordionContent li {
  color: #515567;
  font-size: 14px;
  line-height: 20px;
  list-style: disc;
}


@media (max-width: 1200px) {
    .writereview-navigation-bar {
        padding: 8px 16px;
    }
}

@media (max-width: 992px) {
    .writereview-main-content {
        flex-direction: column;
        margin:0;
    }
    
    .writereview-product-card-container {
        width: 100%;
    }
    
    .writereview-header-btn span {
        display: none;
    }
    
    .writereview-nav-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .writereview-search-button {
        display: none;
    }
    
    .writereview-navigation-bar {
        gap: 12px;
    }
    
    .writereview-rating-category span {
        font-size: 14px; 
        line-height: 20px;
        min-width: 140px;
    }
    .writereview-star {
        width: 32px;
        height: 32px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .writereview-btn-previous, .writereview-btn-next{
        height: 40px;
        font-size: 14px;
    }
    .writereview-rating-form-container{padding-top: 0;}
    .writereview-main-content{background: #fff;}
    .writereview-radio-option{padding:0 7px; height: 32px; gap: 4px;}
    .writereview-radio-option span{font-size: 14px; line-height: 20px;}
    .writereview-radio-circle{width: 13px; height: 13px;}
    .writereview-step-circle{width: 32px; height: 32px; font-size: 14px;}
    .writereview-product-card{padding:20px 20px 8px 20px}
    .psAccordion{border:none; padding:0; margin:0}
    .psAccordion.showMb{display: block;}
    .psAccordion.hideMb{display: none;}
    .writereview-submit-buttons{gap: 16px;}
    #stepContent3 .writereview-summary-review {margin-bottom:0}
    .writereview-edit-btn,.writereview-submit-btn{height: 40px; padding-top: 0; padding-bottom: 0; font-size: 14px;}
    .writereview-radio-options{gap: 12px;}
    .writereview-review-field textarea{height: 120px; font-size: 14px; line-height: 20px;}
    .writereview-review-field input{height: 48px; font-size: 14px; line-height: 20px;}

    .writereview-nav-buttons{margin-top:16px}
    .writereview-radio-option.selected .writereview-radio-circle::after{width: 7px; height: 7px;}
    .writereview-submit-section .productreview-reviews-category-name{width:calc(100% - 36px); font-size: 14px; line-height: 20px;}
    .fulluserreview-review-body-fullreview p{font-size: 14px; line-height: 20px;}
    .writereview-breakdown-item .productreview-reviews-category-icon {width: 32px; height: 32px;}
    .fulluserreview-review-body-fullreview #summaryReviewText{margin-bottom: 12px;}
    .writereview-submit-section #previewRatingCategories{gap: 16px;}

    .fulluserreview-reviewer-container-fullreview .productreview-reviews-rating-category{gap: 4px;}
    .writereview-submit-section .productreview-reviews-category-rating{font-size: 12px;}

}


@media (max-width: 390px) {
    .writereview-rating-category span {
        min-width: 120px;
    }
}

/* Thank You Success Modal */
.thankyou-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.thankyou-modal-overlay.active {
    display: flex;
}

.thankyou-modal {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 564px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #6a6d7c;
    transition: color 0.3s ease;
}

.thankyou-modal-close-btn:hover {
    color: #515567;
}

.thankyou-modal-close-btn svg {
    width: 100%;
    height: 100%;
}

.thankyou-modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.thankyou-modal-icon-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.thankyou-modal-success-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-modal-checkmark {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thankyou-modal-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.thankyou-modal-title,.thankyou-modal-title span {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #0062b8;
}

.thankyou-modal-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #515567;
}

.thankyou-modal-button-container {
    display: flex;
    gap: 12px;
    width: 100%;
}

.thankyou-modal-btn {
    flex: 1;
    height:48px;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.thankyou-modal-btn-secondary {
    background: white;
    color: #0062b8;
    border: 0.4px solid #0062b8;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.08);
}

.thankyou-modal-btn-secondary:hover {
    background: #f0f7ff;
}

.thankyou-modal-btn-primary {
    background: #0062b8;
    color: white;
    border: none;
    box-shadow: 0px 2px 8px 0px rgba(0, 98, 184, 0.2);
}

.thankyou-modal-btn-primary:hover {
    background: #004d94;
}

@media (max-width: 600px) {
    .thankyou-modal-button-container {
        flex-direction: column;
    }

    .thankyou-modal-btn {
        width: 100%;
        height: 40px;
        flex: inherit;
    }
    .thankyou-modal{
        padding:16px
    }
    .thankyou-modal-title,.thankyou-modal-title span{font-size: 20px; line-height: 32px;}
    .thankyou-modal-description{font-size: 16px; line-height:24px;}
}

