﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Theme Colors*/
:root {
    --theme-gray-100: #f9fafb;
    --theme-gray-200: #f3f4f6;
    --theme-gray-300: #d1d5db;
    --theme-gray-400: #6b7280;
    --theme-blue-100: #eff6ff;
    --theme-blue-200: #3b82f6;
    --theme-blue-300: #0257b8;
    --theme-blue-400: #02336e;
    --theme-green-100: #f0fddf;
    --theme-green-200: #6cb330;
    --theme-green-300: #0c3c00;
    --theme-neon-300: #73ff52;
    --theme-yellow-100: #fefce8;
    --theme-yellow-200: #facc15;
    --theme-yellow-300: #422006;
    --theme-red-100: #fef2f2;
    --theme-red-200: #dc2626;
    --theme-red-300: #450a0a;
    --theme-black: #000000;
    --theme-white: #ffffff;
    --theme-max-width-lg: 900px;
    --theme-max-width-md: 720px;
    --theme-font-family: "Poppins", sans-serif;
    --theme-font-h1: 47.78px;
    --theme-font-h2: 39.83px;
    --theme-font-h3: 33.18px;
    --theme-font-h4: 27.65px;
    --theme-font-h5: 23.04px;
    --theme-font-h6: 19.2px;
    --theme-font-p: 16px;
    --theme-font-small: 13.33px;
    --theme-font-xsmall: 11.11px;
    --theme-btn-size-sm: 32px;
    --theme-btn-size-md: 44px;
    --theme-btn-size-lg: 54px;
    --theme-btn-size-xl: 64px;
    --theme-shadow-1: 0px 7px 8px -2px #00000015;
    --bs-body-color: var(--theme-black);
    --bs-body-bg: var(--theme-white);
    --bg-border-color: var(--theme-gray-300);
}

/* Global Styles */
body {
    width: 100%;
    font-family: var(--theme-font-family);
    font-size: 16px;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: var(--theme-font-h1);
}

h2 {
    font-size: var(--theme-font-h2);
}

h3 {
    font-size: var(--theme-font-h3);
}

h4 {
    font-size: var(--theme-font-h4);
}

h5 {
    font-size: var(--theme-font-h5);
}

h6 {
    font-size: var(--theme-font-h6);
}

p {
    font-size: var(--theme-font-p);
}

small {
    font-size: var(--theme-font-small);
}

.font-xsmall {
    font-size: var(--theme-font-xsmall);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
label,
button,
a {
    line-height: 133%;
}

p,
span,
input,
textarea,
select,
option {
    line-height: 160%;
}

.theme-logo {
    width: 100px;
    height: auto;
}

.theme-logo-lg {
    width: 140px;
    height: auto;
}

.ssl-badge {
    width: 160px;
    height: auto;
}

.theme-container {
    max-width: var(--theme-max-width-lg);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
}

.theme-container-md {
    max-width: var(--theme-max-width-md);
}

.theme-card-main {
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
}

.theme-card {
    border-radius: 8px;
    box-shadow: var(--theme-shadow-1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px;
    border: 1px solid var(--bs-border-color);
}

.theme-card-block {
    margin: auto 0;
}

.theme-card.theme-card-highlight {
    border: none;
    background-color: var(--theme-green-200);
    color: var(--theme-white);
    background-image: url("/assets/images/pattern-44-sm.png");
    background-size: cover;
    background-position: center;
}

.theme-card.theme-card-highlight .theme-text-primary {
    color: var(--theme-white);
}

.theme-bg-light {
    background-color: var(--theme-gray-100);
}

.theme-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    color: var(--theme-gray-400);
}

.cols-sm-1 {
    grid-column: span 1;
}

.cols-sm-2 {
    grid-column: span 2;
}

.cols-sm-4 {
    grid-column: span 4;
}

.theme-icons-docs {
    width: 24px;
    height: 24px;
}

.theme-floating-cta {
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--theme-gray-100);
    border-top: 1px solid var(--bs-border-color);
}

.theme-floating-cta-inner {
    max-width: var(--theme-max-width-lg);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    flex-direction: column;
}

.theme-floating-inner-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-yellow-300);
}

    .theme-floating-inner-alert i {
        color: var(--theme-yellow-200);
    }

.theme-floating-cta-inner .theme-btn {
    width: 100%;
}

.cardListRadioInput{
    margin-top: 0!important;
    width:1em!important;
    padding:0!important;
    font-size:unset!important;
}

.support-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #d9d9d9;
    z-index: 9999;
    box-sizing: border-box;
}

.support-footer-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    box-sizing: border-box;
    text-align: right;
    font-size: 14px;
    color: #333;
}

.support-text {
    color: #333;
    white-space: nowrap;
}

.support-phone {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

    .support-phone:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.support-icon {
    color: #555;
    font-size: 14px;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .theme-floating-cta-inner {
        flex-direction: row;
        justify-content: end;
    }

        .theme-floating-cta-inner .theme-btn {
            width: fit-content;
        }

    .theme-logo {
        width: 120px;
    }

    .theme-card.theme-card-highlight {
        background-image: url("/assets/images/pattern-44-xl.png");
    }

    .cols-sm-1,
    .cols-sm-2,
    .cols-sm-4 {
        grid-column: span 1 !important;
    }

    .theme-icons-docs {
        width: 32px;
        height: 32px;
    }
}

.theme-alert {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

    .theme-alert i {
        font-size: 23.04px;
    }

.theme-alert-success {
    background-color: var(--theme-green-100);
    color: var(--theme-black);
}

    .theme-alert-success i {
        color: var(--theme-green-200);
    }

.theme-alert-warning {
    background-color: var(--theme-yellow-100);
    color: var(--theme-yellow-300);
}

    .theme-alert-warning i {
        color: var(--theme-yellow-200);
    }

.theme-pill {
    min-height: 20px;
    height: fit-content;
    font-size: var(--theme-font-p);
    padding: 0px 8px;
}

.theme-pill-success {
    background-color: var(--theme-blue-100);
    color: var(--theme-blue-200);
    font-weight: 500;
}

.theme-pill-neon {
    background-color: var(--theme-neon-300);
    color: var(--theme-green-300);
    font-weight: 500;
    padding: 0px 8px 0px 6px;
    height: 24px;
    border-radius: 16px;
}

.outstanding-breakdown {
    min-width: 300px;
}

    .outstanding-breakdown > * {
        white-space: nowrap;
        flex-shrink: 0;
    }

.theme-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-text-success {
    color: var(--theme-green-200);
}

.theme-text-secondary {
    color: var(--theme-gray-400);
}

.theme-text-danger {
    color: var(--theme-red-200);
}

.theme-text-primary {
    color: var(--theme-blue-200);
}

.theme-text-warning {
    color: var(--theme-yellow-200);
}

.theme-text-warning-dark {
    color: var(--theme-yellow-300);
}

.theme-text-mobile-h1 {
    font-size: var(--theme-font-h1) !important;
}

.theme-text-mobile-h2 {
    font-size: var(--theme-font-h2) !important;
}

.theme-text-mobile-h3 {
    font-size: var(--theme-font-h3) !important;
}

.theme-text-mobile-h4 {
    font-size: var(--theme-font-h4) !important;
}

.theme-text-mobile-h5 {
    font-size: var(--theme-font-h5) !important;
}

.theme-text-mobile-h6 {
    font-size: var(--theme-font-h6) !important;
}

.theme-btn,
a.theme-btn {
    height: var(--theme-btn-size-md);
    border-radius: 8px;
    padding: 0px 16px;
    font-size: var(--theme-font-p);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0;
    text-decoration: none;
    align-content: center;
    cursor: pointer;
}

    .theme-btn:has(i) {
        padding: 0px 12px 0px 16px;
    }

        .theme-btn:has(i) i {
            font-size: var(--theme-font-h6);
        }

    .theme-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.theme-btn-primary {
    background-color: var(--theme-blue-300);
    color: var(--theme-white);
    border: none;
    width: fit-content;
}

    .theme-btn-primary.active {
        background-color: var(--theme-blue-400);
    }

    .theme-btn-primary:hover {
        background-color: var(--theme-blue-400);
    }

.theme-btn-secondary {
    background-color: var(--theme-gray-200);
    color: var(--theme-black);
    border: none;
    width: fit-content;
}

    .theme-btn-secondary:hover {
        background-color: var(--theme-gray-300);
    }

.theme-btn-transparent {
    background-color: transparent;
    color: var(--theme-green-200);
    border: none;
}

    .theme-btn-transparent:hover {
        color: var(--theme-green-300);
    }

.theme-btn-lg {
    height: var(--theme-btn-size-lg);
    font-size: var(--theme-font-h6);
}

.theme-btn-group {
    display: flex;
    align-items: center;
    gap: 0;
}

    .theme-btn-group .theme-btn:nth-of-type(1) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .theme-btn-group .theme-btn:nth-of-type(2) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .theme-btn-group .theme-btn {
        height: var(--theme-btn-size-sm);
        font-size: var(--theme-font-p);
        padding: 0px 10px;
    }

.theme-rate {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: var(--theme-font-xsmall);
    white-space: nowrap;
}

.theme-link {
    color: var(--theme-blue-200);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

    .theme-link:hover {
        color: var(--theme-blue-300);
        text-decoration: underline;
    }

.theme-contact-block {
    padding-bottom: 200px;
}

.theme-form-check {
    background-color: white;
    padding: 8px 16px 8px 48px;
    border-radius: 8px;
}

    .theme-form-check label {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: var(--theme-font-p);
    }

.theme-form-check {
    border: 1px solid var(--bs-border-color);
}

    .theme-form-check:has(.form-check-input:checked[type="radio"]) {
        font-weight: 500;
        color: var(--theme-blue-200);
        background-color: var(--theme-blue-100);
        border: 1px solid var(--theme-blue-200);
    }

.theme-login-img-container {
    background-image: url("/assets/images/login-img-left-desktop.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 36rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
}

    .theme-login-img-container #arrow-right-long {
        position: relative;
        transform: translateY(-8px);
    }

#login-nav .theme-logo {
    display: none;
}

@media screen and (max-width: 575px) {
    .theme-btn.w-sm-100 {
        width: 100%;
    }

    .theme-card {
        gap: 24px;
    }

    .theme-card-block {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .theme-login-img-container {
        background-image: url("/assets/images/login-img-left-mobile.png");
        min-height: unset;
        height: 310px;
        max-height: 310px !important;
        gap: 16px;
    }

    #login-nav .theme-logo {
        display: block;
    }
}
