/* @import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef); */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
   font-family: "jackport";
   src: url(../fonts/jackport-college-ncv-font/JackportRegularNcv-BeY3.ttf);
}

:root {
   --black: #000c12;
   --gray: #939393;
   ---gray-100: #acacac;
   --gray-200: #ccced0;
   --gray-300: #cbd5e1;
   --gray-400: #f8fafc;
   --gray-500: #94a3b8;
   --gray-600: #64748b;
   --gray-border: 1px solid #cbd5e1;
   --blue-border: 1px dashed #09709e;
   --blue: #0ea5e9;
   --white: #ffffff;
   --navy-blue: #1e293b;
}

body,
html {
   min-height: 100%;
   overflow-x: hidden;
   margin: 0;
   padding: 0;
   font-family: "Inter", sans-serif;
}

body {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
}

main {
   flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
   margin: 0;
   padding: 0;
   text-decoration: none;
}

h1,
h2 {
   font-family: "jackport";
}

h1 {
   font-size: 97px;
   color: var(--white);
   line-height: 1.1;
}

h1 span {
   color: var(--blue);
}

h2 {
   font-size: 60px;
   color: var(--black);
}

h3 {
   font-size: 24px;
   font-weight: 600;
   color: var(--black);
}

h4 {
   font-size: 20px;
   font-weight: 500;
}

p {
   color: var(--gray);
}

img {
   width: 100%;
   height: auto;
}

.flat-btn {
   background-color: transparent;
   border: 0;
}

button:focus {
   outline: 0;
}

.site-btn {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   color: var(--black);
   background-color: var(--blue);
   padding: 12px 20px;
   border-radius: 26px;
   position: relative;
   z-index: 1;
   overflow: hidden;
   cursor: pointer;
   transition: 0.3s all ease;
   white-space: nowrap;
   border: 0.5px solid transparent;
}

.site-btn::before {
   content: "";
   position: absolute;
   z-index: 2;
   inset: 4px;
   border-radius: 24px;
   border: var(--blue-border);
   transition: 0.3s all ease;
}

.site-btn::after {
   content: "";
   position: absolute;
   top: 0;
   height: 100%;
   background-color: var(--black);
   transition: 0.3s all ease;
   z-index: -1;
   left: 0;
   right: 0;
   margin: auto;
   width: 0;
}

.site-btn:hover::after {
   width: 100%;
}

.site-btn:hover {
   color: var(--blue);
   border-color: var(--blue);
}

.simple-btn {
   color: var(--white);
   transition: 0.3s all ease;
}

.simple-btn:hover {
   color: var(--blue);
}

.text-black {
   color: var(--black);
}

html.hide-scroll {
   overflow: hidden;
}

.HideScreen {
   position: fixed;
   inset: 0;
   z-index: 99999;
   background-color: rgba(0, 12, 18, 0.66);
   backdrop-filter: blur(3px);
   pointer-events: all;
}

.HideScreen .ajaxLoader {
   min-height: 100vh;
   flex-direction: column;
   gap: 18px;
}

.HideScreen .spinner-border {
   width: 4rem;
   height: 4rem;
   border-width: 0.35rem;
   color: var(--blue) !important;
}

.simbroidery-overlay-message {
   color: var(--white);
   font-size: 18px;
   font-weight: 700;
   text-align: center;
   max-width: 320px;
   line-height: 1.35;
}

body.simbroidery-processing header,
body.simbroidery-processing main,
body.simbroidery-processing footer {
   opacity: 0.32;
   pointer-events: none;
   transition: opacity 0.2s ease;
}

.wrapper {
   max-width: 1140px;
   margin: auto;
}

.bg-black {
   background-color: var(--black);
}

.bg-gray {
   background-color: #f5f5f5;
}

.bg-sky {
   background-color: #cff0ff;
}

.sec-padding {
   padding: 120px 0;
}

.sec-title {
   margin-bottom: 50px;
}

.sec-title p {
   margin-top: 4px;
}

.bg-black .sec-title h2 {
   color: var(--white);
}

.bg-black .sec-title p {
   color: var(---gray-100);
}

/* header  */

header {
   padding: 20px 0;
   box-shadow: unset;
   font-weight: 400;
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 999;
}

.sticky-header {
   transition: 0.1s all ease;
   background-color: rgba(0, 12, 18, 0.8);
   backdrop-filter: blur(15px);
   box-shadow: 0px 0px 10px 5px rgba(0, 12, 18, 0.1);
}

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

header .navigation {
   flex-grow: 1;
}

header .navbar-nav > li {
   margin: 0 18px;
}

header .navbar-collapse .nav-link {
   color: var(--gray-200);
   padding: 0 !important;
   font-size: 16px;
   font-weight: 400;
}

header .navbar-collapse .nav-link:hover,
header .buttons .simple-btn:hover {
   color: var(--blue);
}

.buttons {
   display: flex;
   align-items: center;
   gap: 16px;
}

/* banner  */

.banner {
   padding: 160px 0 100px;
}

.blur-bg {
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.blur-bg::before,
.blur-bg::after {
   content: "";
   position: absolute;
   z-index: -1;
   filter: blur(75px);
   width: 25%;
   height: 40%;
   border-radius: 50%;
}

.blur-bg::before {
   top: -65px;
   left: -65px;
   background-color: rgba(14, 165, 233, 0.12);
}

.blur-bg::after {
   bottom: -65px;
   right: -65px;
   background-color: rgba(163, 115, 1, 0.16);
}

.banner h3 {
   font-size: 71px;
   color: var(--white);
   font-family: "jackport";
   line-height: 0.9;
   font-weight: 400;
}

.banner p br {
   display: none;
}

.banner p {
   font-size: 17px;
   margin-top: 14px;
   color: var(---gray-100);
   max-width: 435px;
}

.banner .subtitle {
   color: var(--white);
   background-color: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 20px;
   padding: 4px 12px;
   font-size: 14px;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 10px;
}

.banner .buttons {
   margin: 40px 0 20px;
}

.banner .icon-list li {
   color: var(--white);
}

.icon-list ul {
   list-style-type: none;
}

.icon-list li {
   display: flex;
   align-items: center;
   gap: 6px;
   color: var(--gray);
}

.icon-list li i {
   font-size: 14px;
   color: var(--blue);
}

.icon-list.row-list ul {
   display: flex;
   align-items: center;
   gap: 24px;
}

.comparison-wrapper {
   position: relative;
   width: 100%;
   user-select: none;
   background-color: var(--white);
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-card {
   position: relative;
   right: -8%;
   width: 88%;
   aspect-ratio: 1;
   border-radius: 12px;
}

.img-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.img-container img {
   width: auto;
   height: 100%;
   object-fit: cover;
   display: block;
}

.after-wrapper {
   z-index: 2;
   width: 50%;
   overflow: hidden;
}

.label {
   position: absolute;
   top: 20px;
   padding: 3px 16px;
   border-radius: 20px;
   z-index: 5;
   color: var(--black);
   font-size: 16px;
   font-weight: 400;
}

.label-orig {
   left: 20px;
   background: rgba(0, 12, 18, 0.2);
   border: 1px solid rgba(0, 12, 18, 0.2);
}

.label-sim {
   right: 20px;
   background-color: var(--blue);
   border: 1px solid var(--blue);
}

.center-line {
   position: absolute;
   top: -30px;
   bottom: -30px;
   left: 50%;
   width: 8px;
   background: var(--blue);
   z-index: 10;
   pointer-events: none;
   transform: translateX(-50%);
   border-radius: 4px;
}

.handle-circle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 44px;
   height: 44px;
   background: white;
   z-index: 11;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--blue);
   box-shadow: 2px 4px 3px 0px rgba(30, 30, 30, 0.25);
   pointer-events: none;
   border-radius: 50%;
}

.handle-circle svg {
   width: 18px;
   height: 18px;
}

.slider-input {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   z-index: 20;
   cursor: ew-resize;
   margin: 0;
}

/* trial  */

.trial .inner-title {
   margin-bottom: 19px;
}

.upload-container {
   width: 100%;
   padding: 50px 20px;
   background-color: var(--gray-400);
   border: 2px dashed var(--gray-300);
   border-radius: 12px;
   text-align: center;
   transition: all 0.3s ease;
   cursor: pointer;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.upload-container:hover,
.upload-container.dragover {
   border-color: var(--blue) !important;
   background-color: rgba(14, 165, 233, 0.05);
}

.cust-icon {
   min-width: 56px;
   height: 56px;
   background-color: var(--blue);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.cust-icon i {
   color: var(--white);
   font-size: 24px;
}

.upload-body {
   margin-top: 20px;
}

/* Text Styles - using your --black and --gray variables */

.upload-text {
   font-size: 16px;
   color: var(--black);
   font-weight: 500;
}

.upload-text span {
   text-decoration: underline;
   text-underline-offset: 3px;
}

.upload-hint {
   font-size: 16px;
   font-weight: 400;
   color: var(---gray-100);
   letter-spacing: 0.5px;
}

/* IMPORTANT: Hide the default "Choose File" button seen in your screenshot */

#file-input {
   display: none !important;
}

#status-message {
   font-size: 14px;
   font-weight: 600;
}

/* Status Colors */

.text-error {
   color: #dc3545;
}

.text-success {
   color: #198754;
}

/* price-box  */

.price-box {
   margin-top: 19px;
}

.price-box .inner-title {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.price-box .inner-title a {
   color: var(--black);
   text-decoration: underline;
   text-underline-offset: 4px;
   font-weight: 500;
}

.cust-table {
   overflow: hidden;
   border: 1px solid #e1e1e1;
   border-radius: 12px;
}

.cust-table table {
   margin-bottom: 0;
}

.cust-table th {
   background-color: #cff0ff;
   border-bottom: 0;
   font-size: 16px;
   color: var(--black);
   min-width: 100px;
}

.cust-table th,
.cust-table td {
   padding: 14px 16px;
   font-weight: 500;
}

.cust-table td {
   color: var(--navy-blue);
}

.cust-table tr:last-child {
   border-bottom: transparent;
}

.cust-table tr td:nth-child(2),
.cust-table tr th:nth-child(2) {
   text-align: left;
}

.cust-table tr th:last-child,
.cust-table tr td:last-child {
   text-align: end;
}

.simbroidery-estimate {
   margin-top: 12px;
   border: 1px solid #d9e7ef;
   border-radius: 8px;
   padding: 12px 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   background-color: #f7fcff;
}

.simbroidery-estimate span {
   color: var(--gray-600);
   font-size: 15px;
   font-weight: 500;
}

.simbroidery-estimate strong {
   color: var(--black);
   font-size: 18px;
   font-weight: 700;
}

.input-group {
   margin: 24px 0;
}

.input-group input {
   border-radius: 8px;
   border: var(--gray-border);
   padding: 11px;
   color: var(--black) !important;
}

.input-group .form-control:focus {
   box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.3);
   border-color: var(--blue);
}

.input-group input::placeholder {
   color: #aeb8c4;
}

.price-box .buttons {
   gap: 50px;
}

.price-box .buttons .site-btn {
   min-width: 270px;
}

.preview-container {
   background-color: var(--white);
   border: var(--gray-border);
   padding: 40px 60px;
   border-radius: 10px;
   min-height: 595px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.preview-container img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   transition: opacity 0.2s ease;
}

.preview-container.is-loading img {
   opacity: 0;
   visibility: hidden;
}

.preview-loading {
   position: absolute;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 12px;
   padding: 32px;
   text-align: center;
   background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.preview-container.is-loading .preview-loading {
   display: flex;
}

.preview-loading .spinner-border {
   width: 48px;
   height: 48px;
   color: var(--blue) !important;
}

.preview-loading h4 {
   color: var(--black);
   font-size: 20px;
   font-weight: 800;
}

.preview-loading p {
   color: var(--gray-600);
   max-width: 300px;
   line-height: 1.45;
}

/* apparel section */
.md-wrapper {
   max-width: 865px;
   margin: auto;
}

.apparel-card {
   border-radius: 16px;
   position: relative;
   z-index: 1;
}

.apparel-card img {
   border-radius: 16px;
}

.apparel .bottom-text {
   margin-top: 30px;
}

.tag {
   background-color: var(--white);
   color: var(--black);
   border-radius: 30px;
   font-size: 16px;
   font-weight: 400;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   padding: 2px 14px;
   position: absolute;
   z-index: 1;
   bottom: 15px;
   left: 15px;
}

.right-tag {
   left: unset;
   right: 15px;
   color: var(--blue);
   font-weight: 700;
}

.apparel .bottom-text p {
   color: var(--black);
   text-align: center;
   font-size: 22px;
   font-weight: 500;
   max-width: 550px;
   margin: auto;
}

/* product-detail  */

.prod-detail .row {
   --bs-gutter-x: 20px;
   --bs-gutter-y: 20px;
}

.static-card {
   background-color: var(--gray-400);
   border: var(--gray-border);
   border-radius: 12px;
   padding: 24px;
   height: 100%;
}

.static-card .static-head {
   display: flex;
   align-items: center;
   gap: 16px;
}

.static-card .static-body {
   margin-top: 18px;
}

.static-card li {
   margin-top: 20px;
}

.vertical-rule {
   background-color: #dfe1e3;
   min-height: 12px;
   width: 1px;
   border: 0;
   opacity: 1;
   margin: 0;
}

.row-card.static-card {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.row-card.static-card .icon-list ul {
   display: flex;
   gap: 16px;
   align-items: center;
}

.row-card.static-card .icon-list li {
   color: var(--gray);
   margin-top: 0;
}

/* apply-video  */

.video-wrapper {
   position: relative;
   z-index: 1;
   border-radius: 12px;
   border: 1px solid var(--white);
   overflow: hidden;
}

.video-wrapper::before {
   content: "";
   position: absolute;
   z-index: 0;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.3);
}

.play-icon {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
   width: max-content;
   height: max-content;
}

.step-list {
   counter-reset: step;
}

.step-list ul {
   list-style-type: none;
   display: flex;
   flex-direction: column;
   gap: 95px;
}

.step-list li span::before {
   counter-increment: step;
   content: "Step " counter(step);
   text-transform: uppercase;
   color: var(--gray-500);
   display: inline-block;
   margin-bottom: 7px;
}

.step-list li h4 {
   font-weight: 700;
   color: var(--white);
}

/* importance  */

.importance .row {
   --bs-gutter-x: 20px;
}

/* faqs  */

.cust-accordion h2 {
   font-family: "Inter", sans-serif;
}

.cust-accordion .accordion-item:not(:first-child) {
   margin-top: 20px;
}

.cust-accordion .accordion-item {
   border-radius: 8px;
   border: var(--gray-border);
   background-color: #f8fafc;
   padding: 18px;
}

.cust-accordion .accordion-button {
   border: 0;
   padding: 0;
   background-color: transparent;
}

.cust-accordion .accordion-button:focus {
   box-shadow: unset;
}

.cust-accordion .accordion-button::after {
   background-image: url(../images/accord-arrow.png);
   background-position: center;
   background-size: 15px;
}

.cust-accordion .accordion-collapse {
   border: 0;
}

.cust-accordion .accordion-body {
   padding: 6px 0 0;
}

.faq .buttons {
   justify-content: center;
   margin-top: 50px;
}

/* cta  */

.cta .text p {
   margin-top: 4px;
}

.cta .buttons {
   flex-direction: column;
}

/* footer  */

footer {
   flex-shrink: 0;
   padding: 65px 0 30px;
}

footer li a:hover,
footer .bottom-text a:hover {
   color: var(--blue);
}

footer .foot-logo img {
   max-width: 165px;
}

footer .text p {
   margin: 20px 0;
   color: var(--gray-500);
}

.social-icons {
   display: flex;
   align-items: center;
   gap: 16px;
}

.social-icons a {
   min-width: 40px;
   aspect-ratio: 1;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   background-color: var(--navy-blue);
   color: var(--gray-500);
   font-size: 16px;
   transition: 0.3s all ease;
}

.social-icons a:hover {
   background-color: var(--blue);
   color: var(--white);
}

.foot-list h3 {
   font-family: "jackport";
   color: var(--white);
   font-weight: 400;
}

.foot-list ul {
   list-style-type: none;
   margin-top: 16px;
}

.foot-list li {
   margin-top: 7px;
}

.foot-list.v2 li {
   margin-top: 15px;
}

.foot-list li a {
   color: var(--gray-500);
   display: flex;
   align-items: center;
   gap: 12px;
}

.foot-list a i {
   color: var(--blue);
}

.horizontal-rule {
   border: 0;
   background-color: var(--navy-blue);
   opacity: 1;
   margin: 40px 0 30px;
}

.bottom-text {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.bottom-text p {
   color: var(--gray-600);
}

.bottom-text a {
   color: var(--gray-600);
}

.bottom-text .privacy-terms {
   display: flex;
   align-items: center;
   gap: 20px;
}

/* #checkout page  */

/* track-process  */

.track-process {
   padding: 220px 0 50px;
}

.small-wrapper {
   max-width: 730px;
   margin: auto;
}

.track-wrapper {
   counter-reset: counter;
}

.track-wrapper .tracking-card {
   position: relative;
   z-index: 1;
   min-width: 110px;
}

.track-wrapper .tracking-card .arrow-img {
   position: absolute;
   z-index: -1;
   top: 12px;
   left: 37px;
   width: 278px;
}

.track-wrapper .inner-content {
   max-width: 100px;
   margin-right: auto;
}

.track-wrapper .track-icon span::before {
   counter-increment: counter;
   content: "" counter(counter);
   color: #c1cbd6;
   font-size: 29px;
   font-weight: 400;
   font-family: "jackport";
}

.track-wrapper .inner-content h3 {
   font-weight: 400;
   color: #c1cbd6;
}

.track-wrapper .track-icon {
   cursor: pointer;
   width: 48px;
   aspect-ratio: 1;
   background-color: #fff;
   border: var(--gray-border);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: auto;
}

.track-wrapper .text {
   margin-top: 6px;
}

.track-wrapper .active .track-icon {
   background-color: var(--blue);
   border-color: var(--blue);
}

.track-wrapper .active span::before {
   color: var(--white);
}

.track-wrapper .active .text h3,
.track-wrapper .complete .text h3 {
   color: var(--black);
}

.track-wrapper .complete .track-icon {
   background-color: #9ee1ff;
   border-color: #9ee1ff;
}

.track-wrapper .complete span::before {
   color: var(--blue);
}

.checkout .inner-title {
   margin-bottom: 18px;
}

/* ship-info  */

.ship-info .form-wrapper,
.payment-info .form-wrapper {
   border: var(--gray-border);
   padding: 24px;
   border-radius: 10px;
}

.form-style label {
   color: var(--black);
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 12px;
}

.form-style input,
.form-style select {
   padding: 12px 16px;
   border-radius: 40px;
   border: var(--gray-border);
   color: var(--black) !important;
}

.form-style select,
.form-style select option {
   color: #aeb8c4 !important;
}

.form-style select {
   background-image: unset !important;
}

#card-number {
   padding-right: 48px;
}

.form-style input::placeholder {
   color: #aeb8c4;
}

.form-style .form-control:focus {
   box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.3);
   border-color: var(--blue);
}

.input-with-icon {
   position: relative;
}

.card-type-icon {
   position: absolute;
   right: 16px;
   top: 50%;
   transform: translateY(-50%);
   width: 45px;
   height: 28px;
   background-position: 0 0;
   pointer-events: none;
   transition: opacity 0.15s linear;
   border-radius: 5px;
}

.card-type-icon.visa {
   background-position: 0 0;
   background-image: url(../images/visa-card.svg);
}

.card-type-icon.master-card {
   background-image: url(../images/master-card.svg);
}

.card-type-icon.american-express {
   background-image: url(../images/amex-card.svg);
}

.fulfil-option,
.payment-info {
   margin-top: 24px;
}

.fulfil-wrapper {
   border: var(--gray-border);
   padding: 24px;
   border-radius: 10px;
}

.fulfil-option .horizontal-rule {
   background-color: var(--gray-300);
   margin: 24px 0 16px;
}

.select-card {
   position: relative;
   z-index: 1;
}

.select-card input {
   position: absolute;
   z-index: -1;
   inset: 0;
   margin: auto;
   width: 100%;
   height: 100%;
   visibility: hidden;
   opacity: 0;
}

.select-card label {
   margin-bottom: 0;
   width: 100%;
}

.select-card .select-head {
   position: relative;
   z-index: 1;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-left: 30px;
}

.select-card .select-head::before {
   content: "";
   position: absolute;
   z-index: -1;
   top: 7px;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url(../images/radio-outline.svg);
   background-repeat: no-repeat;
}

.select-card .select-head h4 {
   font-size: 20px;
   font-weight: 700;
}

.cust-badge {
   border-radius: 40px;
   padding: 3px 16px;
   font-size: 16px;
   background-color: rgba(0, 12, 18, 0.2);
   border: 1px solid rgba(0, 12, 18, 0.2);
   color: var(--black);
}

.select-card .select-body p {
   margin: 16px 0 20px;
   color: var(--gray-600);
   font-weight: 400;
}

.select-card .select-body span {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--gray-600);
   font-weight: 400;
}

.select-card .select-body span i {
   color: var(--black);
}

.select-card input:checked + label .select-head::before {
   background-image: url(../images/radio-filled.svg);
}

.select-card input:checked + label .cust-badge {
   background-color: #dcfce7;
   color: #15803d;
   border-color: #15803d;
}

/* .payment-info  */

.payment-info .check-input {
   display: flex;
   align-items: center;
   gap: 12px;
}

.payment-choice {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 12px;
}

.payment-choice-option {
   position: relative;
   margin: 0;
}

.payment-choice-option input {
   position: absolute;
   inset: 0;
   opacity: 0;
}

.payment-choice-option span {
   min-height: 52px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 16px;
   border: var(--gray-border);
   border-radius: 40px;
   color: var(--gray-600);
   font-weight: 700;
   cursor: pointer;
}

.payment-choice-option input:checked + span {
   border-color: var(--blue);
   color: var(--black);
   background-color: rgba(14, 165, 233, 0.08);
}

.payment-choice-option span i {
   color: var(--blue);
}

.payment-info .check-input label {
   margin-bottom: 0;
   color: var(--gray-600);
   font-weight: 400;
}

.payment-info .check-input input {
   border: 1px solid #767676;
   min-width: 24px;
   height: 24px;
   padding: unset;
   margin: 0;
}

.payment-info .check-input input:checked {
   border: 0;
}

.security .horizontal-rule {
   background-color: var(--gray-300);
   margin: 18px 0;
}

.security p {
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--gray-600);
}

.security p i {
   color: var(--black);
}

/* order-summary  */

.order-wrapper {
   padding: 24px;
   border: var(--gray-border);
   border-radius: 10px;
}

.product-display {
   display: flex;
   align-items: center;
   gap: 16px;
}

.prod-image {
   background-color: #f1f5f9;
   border: 1px solid #e2e8f0;
   border-radius: 8px;
   padding: 5px;
   width: 112px;
   height: 112px;
   flex: 0 0 112px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.prod-image img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
}

.prod-quant h4 {
   font-weight: 700;
}

.prod-quant p {
   color: var(--gray-600);
   margin-top: 3px;
}

.summary-pill {
   display: inline-flex;
   align-items: center;
   margin-top: 12px;
   border-radius: 40px;
   padding: 5px 14px;
   background-color: #dcfce7;
   border: 1px solid #15803d;
   color: #15803d;
   font-size: 14px;
   font-weight: 700;
}

.checkout-alert {
   margin-bottom: 18px;
   border: 1px solid #facc15;
   border-radius: 8px;
   padding: 12px 14px;
   background-color: #fef9c3;
   color: #854d0e;
   font-size: 14px;
   font-weight: 600;
}

.counter {
   display: flex;
   align-items: center;
   border: 1px solid var(--black);
   border-radius: 36px;
   max-width: 140px;
   margin-top: 20px;
   padding: 0 10px;
   cursor: pointer;
}

.counter button {
   background-color: transparent;
   border: 0;
}

.counter button:focus {
   outline: 0;
}

.counter input {
   text-align: center;
   font-size: 20px;
   font-weight: 600;
   color: var(--black) !important;
   border: 0;
}

.counter input::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

.counter input:focus {
   box-shadow: unset;
}

.order-summary .horizontal-rule {
   background-color: var(--gray-300);
   margin: 20px 0;
}

.order-summary .invoice-card .text:not(:first-child) {
   margin-top: 8px;
}

.invoice-card .text.total {
   margin-top: 0;
}

.invoice-card .text {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.fw-400 h5 {
   font-weight: 400 !important;
}

.green h5 {
   color: #16a34a !important;
}

.color-green {
   color: #16a34a;
}

.color-blue {
   color: #2563eb;
}

.color-purple {
   color: #9333ea;
}

.invoice-card .text p {
   color: var(--gray-600);
   font-size: 16px;
}

.invoice-card .text h5 {
   color: var(--black);
   font-weight: 600;
   font-size: 16px;
}

.order-summary .invoice-card .horizontal-rule {
   background-color: var(--gray-300);
   margin: 15px 0;
}

.invoice-card .text h3 {
   font-weight: 700;
}

.complete-btn {
   margin-top: 30px;
}

.complete-btn p {
   color: var(--black);
   text-align: center;
   line-height: 1.3;
   margin-top: 12px;
}

.info-tips {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 430px;
   margin: auto;
}

.info-tips .text {
   text-align: center;
}

.info-tips .text i {
   font-size: 24px;
}

.info-tips .text p {
   color: var(--black);
}

.promo-code {
   border: var(--gray-border);
   border-radius: 10px;
   padding: 24px;
   margin-top: 24px;
}

.promo-code form {
   display: flex;
   align-items: center;
   gap: 8px;
}

/* modal */

.thank-modal .modal-content {
   padding: 0 0 80px;
   border-radius: 24px;
}

.thank-modal .modal-dialog {
   max-width: 1000px;
}

.thank-modal .modal-header {
   border-bottom: 0;
   padding: 24px;
}

.thank-modal .btn-close {
   background: transparent url(../images/xmark.png) center/30px auto no-repeat;
   opacity: 1;
   background-repeat: no-repeat;
   margin: 0 0 0 auto;
}

.thank-modal .btn-close {
   box-shadow: unset;
}

.thank-modal .modal-body {
   padding: 0 10px;
}

.thank-modal .cust-icon {
   min-width: 100px;
   height: 100px;
}

.thank-modal .cust-icon i {
   font-size: 46px;
}

.thank-modal h2 {
   font-family: "Inter", sans-serif;
   font-size: 50px;
   font-weight: 700;
   margin: 18px 0 8px;
}

.thank-modal p {
   color: var(--gray-600);
}

.thank-modal .buttons {
   justify-content: center;
   gap: 20px;
   margin-top: 20px;
}

/* #thank-you  */

.thank-invoice {
   padding-top: 220px;
}

.thank-card {
   border-radius: 8px;
   background-color: var(--gray-400);
   border: var(--gray-border);
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.thank-card .border-imge {
   position: absolute;
   z-index: -1;
   top: 0;
   right: -36px;
   min-width: 248px;
}

.thank-card .thank-body {
   padding: 40px;
}

.thank-card h2 {
   font-family: "inter", sans-serif;
   font-size: 44px;
   font-weight: 400;
}

.thank-card span {
   font-weight: 700;
}

.thank-card .thank-body p {
   color: var(--gray-600);
   max-width: 490px;
   margin: 14px 0 40px;
}

.thank-card .buttons {
   gap: 20px;
}

.thank-card .horizontal-rule {
   margin: 10px 0 0 65px;
   background-color: var(--gray-300);
}

.thank-card .thank-footer {
   display: flex;
   align-items: center;
   gap: 50px;
   padding: 25px 40px;
}

.thank-footer .text p {
   color: var(--gray-600);
   margin-bottom: 4px;
}

.thank-footer .text a {
   color: var(--black);
   transition: 0.3s all ease;
}

.thank-footer .text a:hover {
   color: var(--blue);
}

.thank-invoice .invoice-card {
   background-color: var(--gray-400);
   border-radius: 8px;
   padding: 24px;
   border: var(--gray-border);
}

.invoice-card .text:not(:first-child) {
   margin-top: 18px;
}

.invoice-card .text.total {
   margin-top: 0;
}

.invoice-card .text {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.fw-400 h5 {
   font-weight: 400 !important;
}

.green h5 {
   color: #16a34a !important;
}

.invoice-card .text p {
   color: var(--gray-600);
   font-size: 16px;
}

.invoice-card .text h5 {
   color: var(--black);
   font-weight: 600;
   font-size: 16px;
}

.invoice-card .horizontal-rule {
   background-color: var(--gray-300);
   margin: 24px 0;
}

.invoice-card .text h3 {
   font-weight: 700;
}

/* auth pages */

.auth-page {
   min-height: 100vh;
   padding: 132px 16px 56px;
}

.auth-shell {
   width: 100%;
   max-width: 460px;
   margin: 0 auto;
}

.auth-card {
   background-color: var(--white);
   border: var(--gray-border);
   border-radius: 10px;
   padding: 34px;
   box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.auth-card-sm {
   max-width: 420px;
   margin: 0 auto;
}

.auth-heading {
   text-align: center;
   margin-bottom: 26px;
}

.auth-icon {
   width: 54px;
   height: 54px;
   border-radius: 50%;
   background-color: var(--blue);
   color: var(--black);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
   font-size: 22px;
}

.auth-card h1 {
   font-family: "Inter", sans-serif;
   font-size: 34px;
   line-height: 1.15;
   font-weight: 800;
   color: var(--black);
}

.auth-card p {
   margin-top: 8px;
   color: var(--gray-600);
}

.auth-field {
   margin-bottom: 22px;
}

.auth-link-btn {
   width: 100%;
   border: 0;
   background-color: transparent;
   color: var(--black);
   font-weight: 700;
   padding: 10px;
   transition: 0.2s all ease;
}

.auth-link-btn:hover,
.auth-inline-link:hover,
.auth-footer-text a:hover {
   color: var(--blue);
}

.auth-inline-link,
.auth-footer-text a {
   color: var(--black);
   font-weight: 700;
   text-decoration: underline;
   text-underline-offset: 4px;
}

.auth-footer-text {
   text-align: center;
   margin-top: 20px;
}

.otp-input {
   font-size: 28px;
   font-weight: 800;
   letter-spacing: 8px;
}

/* profile page */

.profile-page {
   padding-top: 155px;
}

.profile-page .sec-title {
   margin-bottom: 34px;
}

.profile-summary,
.profile-panel {
   background-color: var(--white);
   border: var(--gray-border);
   border-radius: 10px;
   padding: 26px;
}

.profile-summary {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   margin-bottom: 24px;
}

.profile-person {
   display: flex;
   align-items: center;
   gap: 16px;
   min-width: 0;
}

.profile-avatar {
   width: 76px;
   height: 76px;
   border-radius: 50%;
   overflow: hidden;
   border: 3px solid #cff0ff;
   flex: 0 0 auto;
}

.profile-avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.profile-person h3 {
   font-size: 24px;
   line-height: 1.2;
}

.profile-person p {
   margin-top: 4px;
   overflow-wrap: anywhere;
}

.profile-panel-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 24px;
}

.profile-panel-head p {
   margin-top: 4px;
}

.profile-tabs-shell {
   display: block;
}

.profile-tabs-content {
   min-width: 0;
}

.profile-tab-filter {
   margin-bottom: 24px;
}

.profile-saved-payment .row {
   row-gap: 16px;
}

.profile-saved-payment p {
   margin-bottom: 0;
   color: var(--gray);
}

.profile-radio-list {
   display: grid;
   gap: 14px;
}

.profile-radio-option {
   display: flex;
   align-items: center;
   gap: 12px;
   width: 100%;
   min-height: 54px;
   border: var(--gray-border);
   border-radius: 8px;
   padding: 14px 16px;
   cursor: pointer;
}

.profile-radio-option input {
   flex: 0 0 auto;
}

.profile-radio-option span {
   font-weight: 700;
   color: var(--black);
}

.account-filter .filter-btn {
   flex-shrink: 0;
}

.account-table .p-img {
   width: 54px;
   height: 54px;
   border-radius: 8px;
   overflow: hidden;
   background-color: #f5fbff;
   border: 1px solid #e1e1e1;
}

.account-table .p-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.account-empty {
   background-color: var(--white);
   border: var(--gray-border);
   border-radius: 10px;
   padding: 24px;
   color: var(--gray);
   text-align: center;
   margin-top: 18px;
}

.status-pill {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 96px;
   padding: 7px 12px;
   border-radius: 999px;
   color: var(--navy-blue);
   background-color: #e1f6ff;
   font-size: 14px;
   font-weight: 600;
}

@media (max-width: 1199px) {
   /* header  */
   header .logo {
      max-width: 150px;
   }

   header .navbar-nav > li {
      margin: 0 8px;
   }

   /* banner  */
   h1 {
      font-size: 80px;
   }

   .banner h3 {
      font-size: 56px;
   }

   .banner p {
      max-width: 405px;
   }

   .banner .buttons {
      margin: 25px 0 15px;
   }

   .banner .icon-list li {
      font-size: 15px;
   }

   .label {
      font-size: 14px;
   }

   .label-orig {
      left: 10px;
   }

   .label-sim {
      right: 10px;
   }

   /* trial  */
   .price-box .buttons {
      gap: 30px;
   }

   .price-box .buttons .site-btn {
      min-width: 230px;
   }

   /* prod-details  */
   .static-card {
      padding: 18px;
   }

   .cust-icon {
      min-width: 50px;
      height: 50px;
   }

   .cust-icon i {
      font-size: 24px;
   }

   .static-card .static-head {
      gap: 12px;
   }

   .static-card h3 {
      font-size: 20px;
   }

   .row-card.static-card .icon-list ul {
      gap: 12px;
      justify-content: end;
   }

   .row-card.static-card .icon-list li {
      font-size: 15px;
   }

   /* apply-video  */
   .step-list ul {
      gap: 50px;
   }

   /* importance  */
   .static-card li {
      margin-top: 15px;
   }

   /* faqs  */
   .cust-accordion h3 {
      font-size: 20px;
   }

   /* cta  */
   .cta .text h2 {
      font-size: 55px;
   }

   .cta .text p {
      font-size: 14px;
   }

   .thank-modal .cust-icon {
      min-width: 80px;
      height: 80px;
   }

   .thank-modal .modal-header {
      padding: 15px;
   }

   .thank-modal .btn-close {
      background: transparent url(../images/xmark.png) center/25px auto no-repeat;
   }

   .thank-modal .cust-icon i {
      font-size: 36px;
   }

   .thank-modal h2 {
      font-size: 40px;
      margin: 12px 0 4px;
   }

   .thank-modal .modal-content {
      padding: 0 0 50px;
   }

   .thank-modal .modal-dialog {
      max-width: 800px;
   }

   /* #checkout   */
   .track-process {
      padding: 190px 0 50px;
   }

   /* #thank-you  */
   .thank-invoice {
      padding-top: 190px;
   }

   .thank-card .thank-body {
      padding: 30px;
   }

   .thank-card h2 {
      font-size: 36px;
   }

   .thank-card .border-imge {
      right: -50px;
      min-width: unset;
   }

   .thank-card .thank-footer {
      padding: 25px 30px;
   }
}

@media (max-width: 991px) {
   .sec-padding {
      padding: 80px 0;
   }

   p,
   li {
      font-size: 14px;
   }

   br {
      display: none;
   }

   .sec-title {
      margin-bottom: 30px;
   }

   /* header  */
   header {
      padding: 20px 0;
   }

   .logo img {
      max-width: 140px;
   }

   .navbar-toggler {
      background-color: transparent;
      padding: 0;
      box-shadow: unset;
      color: inherit;
      font-size: 25px;
      box-shadow: unset !important;
   }

   .navbar-toggler-icon {
      height: unset;
      width: unset;
   }

   .navbar-toggler-icon i::after {
      color: var(--blue);
      opacity: 1;
   }

   .navbar-toggler-icon i::before {
      opacity: 1;
      color: var(--white);
   }

   header .navbar-nav > li {
      margin: 0;
   }

   header nav {
      position: unset;
   }

   .navbar-collapse {
      position: fixed;
      top: 65px;
      left: 0;
      width: 100%;
      background-color: var(--black);
      padding: 20px 5%;
   }

   .navbar-nav {
      align-items: start !important;
      gap: 10px;
   }

   header .buttons {
      margin-top: 10px;
   }

   h1 {
      font-size: 70px;
   }

   h2 {
      font-size: 45px;
   }

   .banner {
      padding: 90px 0 70px;
   }

   /* trial  */
   .preview-container {
      min-height: unset;
   }

   /* prod-detail  */
   .row-card.static-card {
      display: block;
   }

   .static-card .static-body {
      margin-top: 14px;
   }

   .row-card.static-card .icon-list ul {
      justify-content: start;
      margin-top: 14px;
   }

   /* apply-video  */
   .step-list ul {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
   }

   .step-list li span::before {
      font-size: 14px;
   }

   .step-list li h4 {
      font-size: 18px;
   }

   /* .importance  */
   .importance .row {
      --bs-gutter-y: 20px;
   }

   footer .text p {
      max-width: 500px;
   }

   /* #checkout page  */
   .track-process {
      padding: 120px 0 50px;
   }

   .checkout .inner-title {
      margin-bottom: 18px;
   }

   .thank-modal .modal-dialog {
      max-width: 600px;
   }

   .thank-modal .cust-icon {
      min-width: 55px;
      height: 55px;
   }

   .thank-modal .cust-icon i {
      font-size: 25px;
   }

   .thank-modal h2 {
      font-size: 30px;
   }

   .thank-modal p {
      max-width: 450px;
      margin: auto;
   }

   .thank-modal .btn-close {
      background: transparent url(../images/xmark.png) center/20px auto no-repeat;
   }

   /* #thank-you  */
   .thank-invoice {
      padding-top: 130px;
   }

   .thank-card .horizontal-rule {
      margin: 0 0 0 40px;
   }

   .thank-card .thank-body p {
      max-width: 430px;
   }
}

@media (max-width: 767px) {
   .site-btn,
   .simple-btn {
      font-size: 14px;
      gap: 4px;
   }

   .sec-padding {
      padding: 50px 0;
   }

   /* header  */
   .navbar-collapse {
      top: 62px;
   }

   header {
      padding: 15px 0;
   }

   /* banner  */
   .banner .subtitle {
      font-size: 12px;
      margin-bottom: 4px;
   }

   h1 {
      font-size: 35px;
   }

   h2 {
      font-size: 30px;
   }

   h3 {
      font-size: 20px;
   }

   h4 {
      font-size: 16px;
   }

   .banner h3 {
      font-size: 32px;
   }

   .banner p {
      font-size: 14px;
      max-width: 340px;
   }

   .icon-list.row-list ul {
      flex-direction: column;
      align-items: start;
      gap: 12px;
   }

   .banner .label-orig,
   .banner .label-sim {
      top: 10px;
   }

   /* trial  */
   .trial .inner-title {
      margin-bottom: 10px;
   }

   .upload-body {
      margin-top: 12px;
   }

   .upload-hint {
      font-size: 14px;
   }

   .price-box {
      margin-top: 13px;
   }

   .input-group {
      margin: 16px 0;
   }

   .price-box .buttons {
      flex-wrap: wrap;
      gap: 15px;
   }

   .preview-container {
      padding: 30px;
   }

   /* apparel  */
   .tag {
      font-size: 14px;
   }

   .apparel .bottom-text {
      margin-top: 20px;
   }

   .apparel .bottom-text p {
      font-size: 16px;
   }

   /* .prod-detail  */
   .row-card.static-card .icon-list ul {
      flex-direction: column;
      align-items: start;
   }

   .row-card.static-card .icon-list li {
      font-size: 14px;
   }

   .row-card.static-card .icon-list ul hr {
      display: none;
   }

   .cust-icon {
      min-width: 40px;
      height: 40px;
   }

   .cust-icon i {
      font-size: 18px;
   }

   /* video-apply  */
   .step-list li span::before {
      font-size: 12px;
   }

   .step-list li h4 {
      font-size: 14px;
   }

   .play-icon svg {
      width: 60px;
      height: 60%;
   }

   .step-list ul {
      gap: 10px;
   }

   /* faq  */
   .cust-accordion h3 {
      font-size: 16px;
   }

   .faq .buttons {
      flex-direction: column-reverse;
      align-items: start;
      gap: 10px;
      margin-top: 25px;
   }

   .cust-accordion .accordion-item {
      padding: 14px;
      border-radius: 6px;
   }

   /* cta  */
   .cta .text h2 {
      font-size: 35px;
   }

   /* footer  */
   .bottom-text {
      flex-wrap: wrap;
      gap: 10px;
   }

   .foot-list ul {
      margin-top: 12px;
   }

   .bottom-text a {
      font-size: 14px;
   }

   .horizontal-rule {
      margin: 30px 0 20px;
   }

   footer {
      padding: 45px 0 20px;
   }

   footer .text p {
      margin: 15px 0;
   }

   .foot-list.v2 li {
      margin-top: 10px;
   }

   .bottom-text {
      justify-content: center;
      text-align: center;
   }

   /* #checkout page  */
   .track-process {
      padding: 90px 0 40px;
   }

   .track-wrapper .tracking-card {
      min-width: 80px;
   }

   .track-wrapper .tracking-card .arrow-img {
      width: 100px;
   }

   .track-wrapper .inner-content h3 {
      font-size: 16px;
   }

   .ship-info .form-wrapper,
   .payment-info .form-wrapper {
      padding: 15px;
   }

   .payment-choice {
      grid-template-columns: 1fr;
   }

   .select-card .select-head::before {
      top: 6px;
   }

   .select-card .select-head h4 {
      font-size: 16px;
   }

   .select-card .select-body p {
      margin: 10px 0 12px;
   }

   .select-card .select-body span {
      font-size: 14px;
   }

   .info-tips {
      gap: 10px;
   }

   .order-wrapper {
      padding: 15px;
   }

   .promo-code {
      padding: 14px;
   }

   .complete-btn {
      margin-top: 10px;
   }

   .thank-modal h2 {
      font-size: 27px;
   }

   .thank-modal .modal-content {
      padding: 0 0 50px;
   }

   /* #thank-you  */
   .thank-invoice {
      padding-top: 90px;
   }

   .thank-card h2 {
      font-size: 25px;
   }

   .thank-card .border-imge {
      display: none;
   }

   .thank-card .thank-body {
      padding: 20px;
   }

   .thank-card .thank-body p {
      margin: 10px 0 22px;
   }

   .thank-card .thank-footer {
      padding: 20px;
      flex-wrap: wrap;
      gap: 15px;
   }

   .invoice-card {
      padding: 18px;
   }

   .invoice-card .text:not(:first-child) {
      margin-top: 12px;
   }

   .cust-accordion .accordion-button::after {
      background-size: 10px;
   }

   .thank-modal .modal-content {
      border-radius: 15px;
   }

   .auth-page {
      padding: 100px 12px 36px;
   }

   .auth-card {
      padding: 22px;
      border-radius: 8px;
   }

   .auth-card h1 {
      font-size: 27px;
   }

   .auth-icon {
      width: 46px;
      height: 46px;
      font-size: 18px;
      margin-bottom: 12px;
   }

   .otp-input {
      font-size: 24px;
      letter-spacing: 6px;
   }

   .profile-page {
      padding-top: 110px;
   }

   .profile-summary,
   .profile-panel {
      padding: 18px;
      border-radius: 8px;
   }

   .profile-summary,
   .profile-panel-head {
      align-items: stretch;
      flex-direction: column;
   }

   .profile-summary .site-btn,
   .profile-panel-head .site-btn {
      width: 100%;
   }

   .profile-avatar {
      width: 64px;
      height: 64px;
   }

   .profile-person h3 {
      font-size: 20px;
   }
}
