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

:root {
    --primary: #3B82F6;
    --border-color: #e5e5e5;
    --display-color: #0f172a;
    --body-color: #5d646d;
    --danger: #F81F58;
    --default-font: "Inter", sans-serif;
    --warning: #f97316;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    background-color: #F6F8FA;
    color: var(--body-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--display-color);
}

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

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

.text-sm {
    font-size: 14px;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-color) !important;
    margin-block: 30px;
}

.text-uppercase {
    text-transform: uppercase;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.my-0 {
    margin-block: 0;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

button[disabled] {
    cursor: not-allowed;
    opacity: 0.65;
}

button {
    cursor: pointer;
}

.input-field {
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 100%;
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 16px;
}

.input-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.input-label {
    font-size: 14px;
    color: #727171;
    font-weight: 500;
    display: inline-block;
    margin-left: 14px;
    transform: translateY(8px);
    padding: 0 6px;
    background-color: #fff;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}


/* installer area css start */
.tt-installer-area {
    padding-top: 152px;
    padding-bottom: 61px;
    min-height: calc(100vh - (152px + 61px));
    display: flex;
    flex-flow: column;
    justify-content: center;
}

/* installer area css end */


/* installer header css start */
.tt-installer-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.035);
}

.tt-installer-header-top {
    padding: 20px 15px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.tt-installer-header-bottom {
    padding: 15px 15px;
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}

.tt-installer-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 30px;
}

.tt-installer-steps li {
    position: relative;
    padding: 6px 10px 6px 8px;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.tt-installer-steps li::after {
    position: absolute;
    content: "\ea6e";
    top: 6px;
    right: -25px;
    font-family: remixicon !important;
    font-style: normal;
    font-size: 16px;
    color: var(--body-color);
}

.tt-installer-steps li:last-child::after {
    display: none;
}

.tt-installer-steps li .icon {
    line-height: 1;
    font-size: 16px;
}

.tt-installer-steps li .icon .icon-check {
    display: none;
}

.tt-installer-steps li .caption {
    font-size: 15px;
}

.tt-installer-steps li.active {
    color: var(--primary);
    border-color: var(--primary);
    background-color: #3b83f61c;
}

.tt-installer-steps li.done .icon-main {
    display: none;
}

.tt-installer-steps li.done .icon-check {
    display: inline-block;
    color: var(--primary);
}

/* installer header css end */


/* installer body css start */
.tt-installer-body {
    padding: 20px 15px;
}

.tt-installer-card {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-inline: auto;
    padding: 40px 50px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tt-installer-card.style-sm {
    max-width: 960px;
}

.tt-installer-card.overlay::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #3b83f669 -40%, transparent 21%);
    z-index: -1;
    border-radius: 12px;
}

.tt-installer-card-title {
    font-size: 32px;
    text-transform: uppercase;
}

.tt-installer-thank-card {
    background: var(--primary);
    background: -webkit-linear-gradient(to bottom, #3B82F6, #78acff);
    background: linear-gradient(to bottom, #3B82F6, #78acff);
}

.tt-installer-thank-card .tt-installer-card-title {
    color: #fff;
}

.tt-installer-thank-card-inner {
    padding: 40px;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.tt-installer-thank-card .thank-el {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    max-width: 100%;
}

.tt-installer-thank-card .thank-el.left-el {
    left: 0;
}

.tt-installer-thank-card .thank-el.right-el {
    right: 0;
}

.like-container {
    display: flex;
    justify-content: center;
}

.like-container .like-thumb {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.like-container .like-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.035;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.like-container .like-thumb::after {
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-color: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.like-container .like-thumb-inner {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    line-height: 1;
    font-size: 3rem;
}

.like-container .like-thumb-inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.075;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


.get-started-content {
    width: 550px;
    padding: 100px 50px;
}

.get-started-content-title {
    font-size: 36px;
    text-transform: uppercase;
}

.get-started-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    max-width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 0 12px 12px 0;
}

.requirement-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
}

.requirement-list li {
    position: relative;
    width: 50%;
    padding: 16px 10px;
    color: var(--display-color);
    padding-left: 40px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.requirement-list li:nth-of-type(2n + 2) {
    border-right: none;
}

.requirement-list li:nth-child(3),
.requirement-list li:nth-child(4),
.requirement-list li:nth-child(7),
.requirement-list li:nth-child(8),
.requirement-list li:nth-child(11),
.requirement-list li:nth-child(12) {
    background-color: #f1f5f9;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list li i {
    position: absolute;
    top: 16px;
    left: 10px;
    font-size: 20px;
}

.requirement-list li.accepted i {
    color: #22c55e;
}

.requirement-list li.rejected i {
    color: #f61232;
}

.thank-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin-top: 30px;
    justify-content: center;
}

/* installer body css end */

/* installer footer css start */
.tt-installer-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px 15px;
    z-index: 2;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.035);
}

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

.tt-footer-btn {
    padding: 8px 10px;
    color: var(--body-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.tt-footer-btn i {
    font-weight: 500;
    font-size: 16px;
}

.tt-footer-btn.btn-lg {
    padding: 12px 20px;
}

.tt-footer-btn:hover,
.tt-footer-btn.btn-solid {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}


.text-danger {
    color: var(--danger) !important;
}

/* installer footer css end */



/* === error page css start === */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.125rem 0;
}

.erorr-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
}

@media (min-width: 576px) {
    .erorr-numbers {
        gap: 1.875rem;
    }
}

.erorr-numbers .erorr-number {
    font-size: 6.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-two);
    text-shadow: 6px 2px var(--secondary);
}

@media (min-width: 576px) {
    .erorr-numbers .erorr-number {
        font-size: 9.375rem;
    }
}

@media (min-width: 1200px) {
    .erorr-numbers .erorr-number {
        font-size: 11.25rem;
    }
}

.erorr-numbers .erorr-number-first {
    transform: rotateZ(340deg);
}

.erorr-numbers .erorr-number-third {
    transform: rotateZ(-340deg);
    margin-top: -1.25rem;
}

@media (min-width: 576px) {
    .erorr-numbers .erorr-number-third {
        margin-top: -1.5625rem;
    }
}

@media (min-width: 1200px) {
    .erorr-numbers .erorr-number-third {
        margin-top: -2.1875rem;
    }
}

.erorr-numbers .erorr-number-second {
    position: relative;
    font-size: 6.25rem;
    margin-top: -20px;
}

@media (min-width: 576px) {
    .erorr-numbers .erorr-number-second {
        font-size: 7.5rem;
    }
}

@media (min-width: 1200px) {
    .erorr-numbers .erorr-number-second {
        font-size: 9.375rem;
    }
}

.erorr-numbers .erorr-number-second::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: -1;
}