:root {
    --pure-white: #fff;
    --white: #FAFAFA;
    --primary: #0D68F7;
    --primary-hover: #105ED9;
    --dark-blue: #17234F;
    --text: #333333;
	--light-gray: #ccc;
    --success-green: #2CA41A;
    --danger-red: #F30000;
    --heading-font: 'Copernicus', serif;
    --body-font: "Inter", sans-serif;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text);
    background-color: var(--pure-white);
}
body.bg-off-white {
    background-color: #D3EDF6;
}
body.loaded {
    opacity: 1;
}
body :is(a, button, input, select, textarea) {

    -webkit-transition: all 0.4s;

    transition: all 0.4s;
}
body *:last-child {
    margin-bottom: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 60px;
    line-height: 1.07;
    font-weight: 600;
}
h2 {
    font-family: var(--heading-font);
    color: var(--dark-blue);
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
}
h3 {
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}
h6 {
    color: var(--text);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.143;
    margin-bottom: 0;
}
p, p:last-child {
    margin-bottom: 0;
}
p a {
    color: var(--primary);
    text-decoration: underline;
}
.primary-solid, .primary-transparent, .secondary-transparent {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    padding: 13px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.primary-solid {
    color: var(--white);
    border: 1px solid var(--primary);
    background-color: var(--primary);
}
.primary-solid:hover {
    border: 1px solid var(--primary-hover);
    background-color: var(--primary-hover);
}
.primary-transparent {
    color: var(--primary);
    border: 1px solid var(--light-gray);
    background-color: transparent;
}
.primary-transparent:hover {
    background-color: #eee;
}
.secondary-transparent {
    border: 1px solid var(--light-gray);
    color: var(--text);
    border-radius: 50px;
    height: 35px;
    padding: 0 29px;
}
.secondary-transparent:hover {
    background-color: #eee;
}
p > a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* Auth Section Style */
section.auth-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100vh;
}
.auth-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    box-shadow: 0 0 30px 5px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 29px 25px 0 0;
    background-color: var(--white);
}
.auth-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 510px;
            flex: 0 1 510px;
    width: 510px;
    padding: 0 24px 32px;
}
a.auth-logo {
    margin: 4px 0 60px;
}
.auth-form-area {
    text-align: center;
}
.auth-form-area button {
    width: 100%;
}
.auth-form-header {
    max-width: 350px;
    margin: 0 auto 24px;
}
.auth-form-header.margin-b {
    margin-bottom: 44px;
}
.auth-form-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.auth-form {
    max-width: 300px;
    margin: 0 auto;
}
.auth-form a, .auth-form p {
    font-size: 12px;
    line-height: 1;
}
.form-all-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
    padding-bottom: 18px;
}
.form-all-fields.gap-15 {
    gap: 15px;
}
.fields-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.auth-form label {
    font-size: 12px;
    text-align: left;
    width: 100%;
    margin-bottom: 6px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
}
.auth-form input, .dashboard-form select {
    border: 1px solid var(--light-gray);
    outline: none;
    border-radius: 5px;
    width: 100%;
    background-color: var(--white);
    font-size: 15px;
    line-height: 1;
    padding: 8px 12px 9px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.otp-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    max-width: 290px;
    margin: 0 auto;
}
.otp-container input {
    padding: 18px 0 19px;
    text-align: center;
	font-size: 18px;
}
.auth-form input:hover, .auth-form input:focus {
    border-color: var(--primary);
}
.auth-form input[type=number]::-webkit-inner-spin-button,
.auth-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.auth-form input:focus {
    background-color: transparent !important;
    outline: none;
}
.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
a.forgot {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
}
a.forgot:hover {
    color: var(--text);
}
.divider {
    height: 1px;
    width: 100%;
    background-color: var(--light-gray);
    margin: 23px 0 16px;
}
.divider-or {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
    margin-bottom: 20px;
}
.divider-or span {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: inline-block;
    background-color: var(--white);
    z-index: 14;
    padding: 0 14px;
    line-height: 1;
    font-size: 12px;
    color: #999999;
}
.external-login-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17px;
    margin-bottom: 27px;
}
.auth-right {
    position: relative;
}
.auth-right-image-area{
    position: relative;
}
.auth-right-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}
.auth-right-overlay, .auth-right-wrapper, .auth-right-wrapper img {
    border-radius: 15px;
}
.auth-right h1 {
    position: absolute;
    left: 63px;
    bottom: 48px;
    max-width: 450px;
}
h1.top-left {
    top: 54px;
}
p.copyright-text {
    font-size: 10px;
    line-height: 1;
    text-align: right;
    padding: 10px 0 8px;
}
p.small-text {
    font-size: 10px;
    line-height: 14px;
    max-width: 370px;
    margin: 16px auto 0;
}
.help-center strong {
    font-size: 12px;
    margin-bottom: 4px;
    display: inline-block;
}


/* dashboard style */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    background: var(--white);
    border-right: 1px solid #ccc;
    overflow-y: auto;
    z-index: 1000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.sidebar::-webkit-scrollbar {
    width: 3px!important;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 10px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.sidebar:hover::-webkit-scrollbar-thumb,
.sidebar.scrolling::-webkit-scrollbar-thumb {
    background: var(--light-gray);
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--light-gray);
}
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--light-gray) transparent;
}
.sidebar:hover,
.sidebar.scrolling {
    scrollbar-color: var(--light-gray) transparent;
}

/* Menu Header Area Style */
.menu-header-area {
    padding: 20px 25px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
}
.dashboard-logo-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
    margin-bottom: 27px;
}
a.logo {
    max-width: 103px;
}
.dashboard-logo-area button.hamburger {
    display: none;
}
button.hamburger {
    padding: 0;
    margin: 0;
    background: no-repeat;
    border: 0;
    width: 40px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
button.hamburger span {
    background-color: var(--text);
    height: 4px;
    width: 100%;
    display: block;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
button.hamburger span:first-child {
    max-width: 24px;
    margin-left: auto;
    top: 0;
}
button.hamburger span:nth-child(2) {
    margin: 0 auto;
    max-width: 100%;
}
button.hamburger span:last-child {
    max-width: 33px;
    margin-left: auto;
    top: 0;
}
body.open-menu button.hamburger span:first-child {
    max-width: 100%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 9px;
}
body.open-menu button.hamburger span:nth-child(2) {
    max-width: 0%;
}
body.open-menu button.hamburger span:last-child {
    max-width: 100%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: -10px;
}
.selected-company, .user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 9px 15px 6px;
    cursor: pointer;
}
.company-name, .user-name {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
}
.company-name span, .user-name span {
    font-size: 12px;
    line-height: 16px;
    color: #999;
}
.selected-company > span, .user-info > span {
    line-height: 6px;
}
.selected-company > span i, .user-info > span i {
    font-size: 11px;
}
.created-all-company {
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    position: absolute;
    width: 100%;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--pure-white);
    z-index: 10;
    display: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.created-all-company.active {
    display: block;
}
.created-all-company ul {
    padding: 14px 9px 13px 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
}
.created-all-company ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 5px;
    background-color: transparent;
    padding: 8px 16px 7px 9px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--text);
}
.created-all-company ul li a p {
    font-size: 14px;
    line-height: 16px;
}
.created-all-company ul li a span {
    font-size: 12px;
    line-height: 16px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.created-all-company ul li a:hover, .created-all-company ul li a.selected {
    background-color: #f3f3f3;
}
.created-all-company ul li a:hover span, .created-all-company ul li a.selected span{
    opacity: 1;
}
.divider-100 {
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
}
.created-all-company .add-company {
    padding: 13px 16px 13px 20px;
}
.add-company .primary-solid {
    max-width: 100%;
    width: 100%;
    line-height: 24px;
    padding: 7px 16px;
    font-weight: 600;
}
button.primary-solid i {
    font-size: 20px;
}

/* Main Navigation Area Style */
.menu-main-navigation-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 25px;
}
.mainmenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
}
.mainmenu > ul > li > a {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    padding: 13px 16px 13px 20px;
    border-radius: 15px;
}
.menu-main-navigation-area a span {
    width: 25px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mainmenu > ul > li > a:hover, .mainmenu > ul > li > a.active, .mainmenu > ul > li.open > a {
    background-color: #f3f3f3;
}
.mainmenu > ul > li > a > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.mainmenu > ul > li > a i {
    font-size: 23px;
}
.mainmenu > ul > li.menu-item-has-children > a > span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    max-width: 12px;
}
.mainmenu > ul > li.menu-item-has-children > a > span > i {
    font-size: 11px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mainmenu > ul > li > a > span > i.rotate {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.mainmenu > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin: 4px 0 16px 85px;
}
.mainmenu > ul > li > ul > li {
    position: relative;
}
.mainmenu > ul > li > ul > li:before {
    content: '';
    position: absolute;
    left: -21px;
    top: -16px;
    border-left: 1px solid var(--light-gray);
    height: 60px;
}
.mainmenu > ul > li > ul > li:first-child:before {
    top: 12px;
    height: 28px;
}
.mainmenu > ul > li > ul > li:last-child:before {
    top: -16px;
    height: 28px;
}
.mainmenu > ul > li > ul > li:after {
    content: '';
    position: absolute;
    top: 12px;
    left: -21px;
    width: 15px;
    border-top: 1px solid var(--light-gray);
}
.mainmenu > ul > li > ul > li > a {
    color: #666;
    font-size: 14px;
    line-height: 24px;
}
.mainmenu > ul > li > ul > li > a:hover, .mainmenu > ul > li > ul > li > a.active {
    color: var(--primary);
}
.menu-main-navigation-area .divider {
    background-color: #ddd;
    max-width: 208px;
    margin: 20px auto 27px;
}
.learning-center {
    padding: 0 16px 0 20px;
}
.learning-center > p {
    font-size: 14px;
    line-height: 24px;
    color: #999;
    margin-bottom: 10px;
}
.learning-center ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
}
.learning-center ul li a, .footer-menu-link ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    font-size: 14px;
    line-height: 48px;
    color: var(--text);
}
.learning-center ul li a:hover, .footer-menu-link ul li a:hover {
    color: var(--primary-hover);
}
.learning-center ul li a i, .footer-menu-link ul li a i {
    font-size: 24px;
}

/* Desktop Footer Menu Style */
.menu-footer-area {
    padding: 20px 25px 16px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
}
.footer-menu-link {
    padding: 0 20px 16px;
}
.support-ticket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    padding: 13px 15px;
    background-color: #f3f3f3;
    margin-bottom: 66px;
}
.support-ticket i {
    color: var(--text);
}
.support-ticket:hover {
    background-color: #0040A3;
    border-color: #0040A3;
}
.support-ticket:hover h6, .support-ticket:hover i {
    color: var(--white);
}
.account-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-radius: 10px;
}
.account-details.active {
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.25);
}
.user-info {
    -webkit-transition: background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, border-top 0.3s ease;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, border-top 0.3s ease;
    border: 1px solid var(--light-gray);
    border-top-color: var(--light-gray);
    border-radius: 10px;
}
.account-details.active .user-info {
    border-radius: 0 0 10px 10px;
    border-color: var(--pure-white);
    border-top: 1px solid #ddd;
    background-color: var(--pure-white);
}
.account-details .user-info  i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
}
.account-details.active .user-info  i {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.account-settings {
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 0 5px;
    background-color: var(--pure-white);
    -webkit-transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.account-details.active .account-settings {
    max-height: 300px;
    opacity: 1;
    padding: 14px 5px 10px;
}
.account-settings ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
}
.account-settings ul li a {
    font-size: 14px;
    line-height: 24px;
    color: var(--text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    padding: 6px 10px;
    border-radius: 5px;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}
.account-settings ul li:last-child a {
    color: #F10000;
}
.account-settings ul li a:hover, .account-settings ul li a.active {
    background-color: #f3f3f3;
}
.account-settings ul li a i {
    font-size: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
}

/* Main Content Area Style */
.dashboard {
    margin-left: 300px;
}
.dashboard .main-content-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    background-color: var(--pure-white);
    padding-bottom: 48px;
}
.main-content-header {
    border-bottom: 1px solid var(--light-gray);
}
.inner-header {
    padding: 32px 114px 0 98px;
}
.header-intro {
    padding-bottom: 20px;
}
.heading-with-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
.heading-with-text p {
    font-size: 14px;
    line-height: 30px;
    color: #999;
}
.heading-with-text p span {
    font-weight: 700;
    color: #666;
}
.header-intro > p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}
.inner-header ul {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}
.inner-header ul li button {
    color: #666;
    font-size: 14px;
    line-height: 36px;
    background: no-repeat;
    border: none;
    padding: 0;
}
.inner-header ul li button:hover {
    color: var(--primary);
}
.inner-header ul li button.active {
    color: var(--text);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 3px;
}

/* Main Content Body Style */
.main-content-body {
    padding-left: 98px;
    padding-right: 100px;
    background-color: var(--pure-white);
}
.dashboard-youtube-video-container {
    border: 1px solid var(--light-gray);
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 58px 60px 66px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 45px;
    margin: 55px 0 48px;
}
.dashboard-video-intro h3 {
    margin-bottom: 10px;
}
.youtube-video-wrapper {
    max-width: 596px;
    aspect-ratio: 16/9;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}
.youtube-video-wrapper iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    height: auto!important;
}
.milestones-area > h3 {
    margin-bottom: 32px;
}
.panel-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
    height: 100%;
}
.panel-box {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 35px 41px 26px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    min-height: 100%;
    max-width: calc(calc(100% - 96px) / 4);
}
.box-top span {
    margin-bottom: 13px;
    display: block;
    width: 25px;
    height: 25px;
}
.box-top span i {
    font-size: 25px;
    color: #666;
}
.panel-box h6 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 6px;
}
.box-top p {
    font-size: 14px;
    line-height: 21px;
    color: #666;
}
.status-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-bottom: 21px;
}
span.status-green {
    height: 20px;
    width: 20px;
    background-color: #FF0000;
    border-radius: 50%;
}
.status-bar p {
    color: #666;
    font-size: 12px;
    line-height: 18px;
}
.status-bar p span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.panel-box.disabled {
    border-color: #ddd;
}
.panel-box.disabled i, .panel-box.disabled h6, .panel-box.disabled p, .panel-box.disabled span{
    color: var(--light-gray);
}
.panel-box.disabled span[class^="status"], .panel-box.disabled a {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    cursor: default;
}

/* employee page style */
.header-button-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 48px;
}
.header-button-area .primary-transparent, .action-btn-group .primary-transparent {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    border: 1px solid var(--primary);
    padding: 7px 29px;
    background-color: transparent;
}
.header-button-area .primary-transparent:hover {
    color: #fcfcfc;
    background-color: var(--primary);
}
.action-btn-group .primary-transparent:hover {
    color: #0040A3;
    border-color: #0040A3;
}



/* Employee List Styles */
.all-employees {
    overflow: inherit;
    min-height: 500px;
}
.action-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 19px;
    margin: 22px 0 20px;
}
.desktop-action-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 32px;
}
.mobile-search-action {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 18px;
}
.search-filter-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.search-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    max-width: 302px;
}
.search-box input {
    width: 100%;
    padding: 7px 10px 7px 40px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #666;
    line-height: 24px;
}
.search-box span {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
}
.search-box span i {
    font-size: 19px;
    color: #999;
}
.filter-box {
    position: relative;
}
.filter-btn {
    padding: 7px 15px 7px 11px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--text);
    background: var(--pure-white);
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 33px;
}
.filter-btn p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.filter-btn p span {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.filter-btn p i {
    font-size: 22px;
    color: #999;
}
button.filter-btn > span {
    width: 14px;
}
.filter-btn > i {
    color: #666;
    font-size: 12px;
}
.action-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
}
.action-btn-group .download-btn {
    font-size: 14px;
    line-height: 24px;
    color: var(--text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    border: none;
    background: no-repeat;
    padding: 0;
    margin-right: 5px;
}
.action-btn-group .download-btn:hover {
    color: var(--primary);
}
button.download-btn span {
    width: 12px;
}
.action-btn-group button.primary-solid, .mobile-search-action .primary-solid {
    font-size: 14px;
    line-height: 24px;
    padding: 7px 21px;
}
.action-btn-group button.primary-solid:hover, .mobile-search-action .primary-solid:hover {
    background-color: #0040A3;
    border-color: #0040A3;
}
.action-btn-group button.primary-solid span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
}
.filter-form {
    position: absolute;
    left: 0;
    top: calc(100% + 7px);
    background-color: var(--pure-white);
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    border-radius: 10px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.filter-form.open-filter {
    opacity: 1;
    visibility: visible;
}
.checkbox-container {
    padding: 11px 9px 4px 15px;
    width: 250px;
    max-height: 226px;
    overflow-y: auto;
    margin-right: 1px;
    scrollbar-width: thin;
    scrollbar-color: var(--light-gray) transparent;
}
.checkbox-container::-webkit-scrollbar {
    width: 3px;
}
.checkbox-container::-webkit-scrollbar-track {
    background: transparent;
}
.checkbox-container::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 10px;
}
.checkbox-container::-webkit-scrollbar-thumb:hover {
    background: var(--light-gray);
}
.single-checkbox {
   display: block;
   position: relative;
   padding-left: 27px;
   line-height: 30px;
   cursor: pointer;
   -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
   color: #666;
}
.single-checkbox span {
   position: absolute;
   top: 50%;
   left: 0;
   -webkit-transform: translateY(-50%);
           transform: translateY(-50%);
   height: 15px;
   width: 15px;
   border: 1px solid var(--light-gray);
   border-radius: 3px;
}
.single-checkbox input:checked ~ span {
    background-color: var(--primary);
	border: 1px solid var(--primary);
}
.single-checkbox input[type="checkbox"] {
   display: none;
   position: absolute;
   opacity: 0;
   cursor: pointer;
   height: 0;
   width: 0;
}
.single-checkbox span:after {
   content: "";
   position: absolute;
   display: none;
}
.single-checkbox input:checked ~ span:after {
   display: block;
}
.single-checkbox span:after {
   left: 4px;
   top: 0px;
   width: 5px;
   height: 10px;
   border: solid var(--white);
   border-width: 0 1px 1px 0;
   -webkit-transform: rotate(45deg);
           transform: rotate(45deg);
}
.filter-form .divider {
    margin: 0;
    background-color: #ddd;
}
.filter-form .primary-solid {
    width: calc(100% - 20px);
    margin: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 3px;
}
.filter-form .primary-solid:hover {
    background-color: #0040A3;
}
/* Table Styles */
.data-table {
    width: 100%;
    background: var(--pure-white);
    border: 1px solid var(--light-gray);
}
.data-table table {
    width: 100%;
    border-collapse: collapse;
}
.data-table thead tr {
    background: #f7f7f7;
    border-bottom: 1px solid var(--light-gray);
}
.data-table th {
    padding: 18px 16px 16px;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #7b7b7b;
}
.all-employee-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
}
.all-employee-cell div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 16px;
    margin-top: -8px;
}
.all-employee-cell a {
    height: 10px;
    line-height: 1;
    color: #7b7b7b;
}
.all-employee-cell a i {
    font-size: 10px;
}
.data-table td {
    padding: 12px 16px 12px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    line-height: 20px;
}
.data-table td span {
    font-weight: 400;
    display: block;
    line-height: 20px;
}
.data-table td:nth-child(3),
.data-table td:nth-child(4),
.data-table td:nth-child(5) {
    font-size: 12px;
}
.data-table tr td:first-child, .data-table tr th:first-child {
    padding-left: 68px;
}
.data-table tr td:first-child {
    font-weight: 600;
}
.data-table tr:last-child td {
    border-bottom: none;
}
.status-indicator {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
}
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.status-dot.complete {
    background: var(--success-green);
}
.status-dot.incomplete {
    background: var(--danger-red);
}
.status-dot.unknown {
    background: var(--light-gray);
}
.action-menu-btn {
    background: no-repeat;
    border: none;
    font-size: 18px;
    color: var(--text);
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.data-table tr:hover .action-menu-btn, .action-menu-btn.active{
    background: #eee;
}
.action-menu-area {
    position: relative;
}
.action-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
    background: var(--pure-white);
    border-radius: 5px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    display: none;
    width: 180px;
    z-index: 1000;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 11px 0 18px;
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}
.action-menu.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.action-menu.open-top {
    top: initial;
    bottom: calc(100% + 1px);
}
.action-menu button, .action-menu a {
    position: relative;
    border: none;
    background: no-repeat;
    font-size: 14px;
    line-height: 30px;
    padding: 1px 19px 1px 26px;
    width: 100%;
    text-align: left;
}
.action-menu button:hover, .action-menu a:hover {
    background-color: #f3f3f3;
}
/* Modal Styles */
div#drawerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
div#drawerOverlay.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.drawer.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--pure-white);
    z-index: 99999;
    height: 100vh;
    width: 550px;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}
.modal-content-area {
    background: var(--pure-white);
    width: 100%;
    max-width: 550px;
    padding: 47px 46px 48px 54px;
}
.dashboard-form {
    max-width: 100%;
}
.modal-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 24px;
}
.modal-intro button.close-modal {
    width: 66px;
    padding: 0;
    background: no-repeat;
    border: none;
    position: relative;
    color: var(--text);
    text-align: left;
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 20px;
}
.modal-intro button.close-modal:before, button.close-modal:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
    width: 20px;
    height: 2px;
    background-color: var(
    --text);
    border-radius: 2px;
}
.modal-intro button.close-modal:after {
    -webkit-transform: translate(0, -50%) rotate(-45deg);
            transform: translate(0, -50%) rotate(-45deg);
}
.dashboard-form .form-all-fields {
    gap: 15px;
}
.dashboard-form label {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dashboard-form input, .dashboard-form select {
    background: var(--pure-white);
    font-size: 16px;
    line-height: 1.5;
    padding: 12px 16px 12px;
    width: 100%!important;
}
.dashboard-form .single-field {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.dashboard-form button.primary-solid {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 12px;
}

/* Add Employee Modal Style  */
.add-employee {
    background: rgba(0,0,0,0.8);
    z-index: 99999;
}
.add-employee .modal-dialog {
    max-width: 550px;
}
.add-employee .modal-dialog .modal-content, .add-employee .modal-dialog .modal-content-area {
    border-radius: 15px;
    border: none;
}
.add-employee button.close-modal {
    width: 20px;
    height: 20px;
}
.modal-intro button.close-modal:before, button.close-modal:after {
    width: 25px;
    right: -3px;
}

@media (min-width: 576px) {
    .desktop-centered {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 100vh;
        margin: 0 auto;
    }
    .desktop-centered .modal-content {
        margin: auto;
    }
}
@media (max-width: 575px) {
    .desktop-centered {
        -webkit-box-align: start !important;
            -ms-flex-align: start !important;
                    -ms-grid-row-align: flex-start !important;
                align-items: flex-start !important;
        margin: 20px 13px;
        min-height: auto;
    }
}
.dashboard-form .select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dashboard-form .select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 40px 12px 16px;
    background-color: var(--pure-white);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}
.dashboard-form .select-wrapper:after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    pointer-events: none;
    z-index: 1;
}
.dashboard-form .select-wrapper select:hover {
    border-color: var(--primary);
}

/* Quotes Page Style */
.all-quotes {
    padding: 49px 0 0;
}
.panel-box.quote {
    gap: 48px;
}
.icon-with-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.icon-with-date span {
    margin: 0;
}
.icon-with-date p {
    font-size: 12px;
    font-weight: 600;
    line-height: 30px;
    color: var(--text);
}
.mobile-footer-menu .footer-menu-link ul li:last-child a {
    color: #f10000;
}


/* Builder Page Style */
.builder-header {
    background-color: #f7f7f7;
    padding: 19px 20px 15px 22px;
    border-bottom: 1px solid var(--light-gray);
}
.builder-header .logo {
    max-height: 35px;
    margin-right: 50px;
}
.exit-link {
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
}
.exit-link:hover {
    color: var(--primary);
}
.builder-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 70px);
}
.builder-panel {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 650px;
            flex: 0 0 650px;
    width: 650px;
    background-color: #f7f7f7;
    padding: 0 25px 0;
    border-right: 1px solid var(--light-gray);
    padding-bottom: 87px;
}
.builder-title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 27px;
    padding-bottom: 18px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #f7f7f7;
    z-index: 10;
}
.panel-title {
    font-family: var(--body-font);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.tour-link-small {
    font-size: 14px;
    line-height: 16px;
    color: #999;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 6px 15px 6px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 13px;
}
.tour-link-small span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 18px;
}
.tour-link-small i {
    font-size: 16px;
}
.tour-link-small:hover {
    color: var(--pure-white);
    background-color: var(--primary);
	border: 1px solid var(--primary);
}

/* mobile-builder-and-output-tab */
.mobile-builder-and-output-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 11px;
    padding: 13px 20px 10px;
    border-bottom: 1px solid var(--light-gray);
    background-color: #f7f7f7;
}
.builder-and-output-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.builder-and-output-tab button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: transparent;
    border: none;
    color: #999;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 8px 16px 7px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.builder-and-output-tab button:first-child {
    border-radius: 5px 0 0 5px;
    border-right: 1px solid transparent;
}
.builder-and-output-tab button:last-child {
    border-radius:0 5px 5px 0;
    border-left: 1px solid transparent;
}
.builder-and-output-tab button.active {
    background-color: var(--primary);
    font-weight: 700;
    color: var(--pure-white);
}
.builder-and-output-tab button:first-child.active {
    border-right-color: var(--light-gray);
}
.builder-and-output-tab button:last-child.active {
    border-left-color: var(--light-gray);
}



/* Step Navigation */
.builder-content {
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    background-color: var(--pure-white);
}
.step-navigation-container {
    border-bottom: 1px solid var(--light-gray);
    padding: 8px 8px 7px 9px;
}
.step-navigation-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    background-color: #f3f3f3;
    border-radius: 8px;
    padding: 4px;
    position: relative;
}
.navigation-background {
    position: absolute;
    background: var(--primary);
    border-radius: 5px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 8px);
    top: 4px;
    z-index: 1;
}
.step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    gap: 0.5rem;
    padding: 9px 19px 10px;
    border-radius: 8px;
    color: var(--text);
    z-index: 5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.step-item.active {
    color: var(--white);
}
.step-item p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    width: 100%;
}
.step-item p span {
    font-weight: 600;
    font-size: 14px;
    line-height: 13px;
}

/* Form Styles */
.form-content {
    min-height: 400px;
}
.step-content {
    display: none;
    padding: 24px 30px 40px 28px;
}
.step-content.active {
    display: block;
}
.form-group:not(:last-child) {
    margin-bottom: 28px;
}
.details-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.form-group.off {
    margin: 0;
}
.form-group label {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 13px;
}
.form-group label span {
    display: inline-block;
    margin-left: 4px;
}
.form-group label i {
    color: #999;
    font-size: 14px;
}
.toggle-label {
    font-size: 14px;
    line-height: 1;
    color: #999;
}
.select-wrapper {
    position: relative;
}
.select-wrapper:after {
    content: '';
    position: absolute;
    right: 29px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #7c7c7c;
    border-bottom: 2px solid #7c7c7c;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
}
.form-group select, .form-group textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1;
    color: #999;
    padding: 12px 21px 11px 15px;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: var(--pure-white);
    resize: none;
    width: 100%;
}
.toggle-container {
    position: relative;
    width: 61px;
    height: 25px;
    background: #999;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    overflow: hidden;
}
.toggle-container.active {
    background: var(--primary);
}
.toggle-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 12px;
    color: var(--pure-white);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 18px;
    -webkit-transition: left 0.3s ease, opacity 0.3s ease;
    transition: left 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}
.toggle-text.off {
    left: 15px;
    opacity: 1;
}
.toggle-text.on {
    left: 15px;
    opacity: 0;
}
.toggle-container.active .toggle-text.off {
    left: 30px;
    opacity: 0;
}
.toggle-container.active .toggle-text.on {
    left: 30px;
    opacity: 1;
}
.toggle-circle {
    position: absolute;
    top: 2px;
    left: 38px;
    width: 21px;
    height: 21px;
    background: var(--pure-white);
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 5;
}
.toggle-container.active .toggle-circle {
    -webkit-transform: translateX(-36px);
            transform: translateX(-36px);
}
#customDetailsField {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease, opacity 0.25s ease;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
#customDetailsField.show {
  max-height: 148px;
  opacity: 1;
}

/* Output Panel Styles */
.output-panel {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}
.output-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.output-all-control-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 27px 33px 15px 46px;
    border-bottom: 1px solid var(--light-gray);
    gap: 33px;
}
.tab-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.output-all-control-buttons .panel-title {
    font-size: 21px;
    line-height: 1;
    color: #000;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.tab-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: #f7f7f7;
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    padding: 3px;
    position: relative;
}
.tab-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.tab-background {
    position: absolute;
    background: var(--text);
    border-radius: 30px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 0px);
    top: 0;
    z-index: 1;
}
.tab-item {
    padding: 7px 14px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}
.tab-item.active {
    color: var(--pure-white);
    font-weight: 700;
}
.output-control-buttons .clear-btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding: 0 19px 0 18px;
    background-color: var(--pure-white);
    color: #999;
    font-size: 14px;
    border: 1px solid var(--light-gray);
}
.output-control-buttons .clear-btn:hover {
    background: #f7f7f7;
}

.content-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: var(--pure-white);
    padding: 17px 36px 38px 43px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
}
.content-item {
    display: none;
    -webkit-animation: fadeIn 0.4s ease;
            animation: fadeIn 0.4s ease;
}
.content-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 0;
    overflow: hidden;
}
.content-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    padding-left: 37px;
}
.content-tab {
    padding: 0;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: 3px;
    border-bottom: 3px solid transparent;
}
.content-tab.active {
    color: var(--text);
    border-bottom-color: var(--text);
	font-weight: 700;
}

.content-tab:hover {
    color: var(--primary);
}
.output-display {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 10px;
    padding: 28px 53px 40px 21px;
    border: 1px solid var(--light-gray);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}
.output-display h6 {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    margin: 16px 0 12px 21px;
}
.output-display h6:first-child {
    margin-top: 0;
}
.output-display p {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 48px;
    border: 1px solid transparent;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.output-display p:hover {
    border-color: var(--primary);
}

/* builder-navigation-buttons-container */
.builder-navigation-buttons-container {
    position: fixed;
    left: 0;
    bottom: 0;
    border-top: 1px solid var(--light-gray);
    width: 649px;
    height: 78px;
    background-color: var(--pure-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 53px 0 58px;
    z-index: 999;
}
.builder-navigation-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 78px;
}
.builder-navigation-buttons.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.builder-navigation-buttons:not(.prev-step) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.builder-navigation-buttons button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid var(--light-gray);
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    color: #666;
    padding: 5px 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    max-width: 230px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.builder-navigation-buttons button.prev-step:hover {
    background-color: #f7f7f7;
}
.builder-navigation-buttons button.next-step {
    background-color: var(--primary);
	border: 1px solid var(--primary);
    color: var(--pure-white);
}
.builder-navigation-buttons button.next-step:hover {
    background-color: #0040A3;
	border: 1px solid #0040A3;
}
.builder-navigation-buttons button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.builder-navigation-buttons button span.btn-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.builder-navigation-buttons button span i {
    font-size: 25px;
}
.output-control-buttons {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.output-control-buttons.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.output-control-buttons button {
    height: 40px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tab-area .output-control-buttons button.save-btn {
    background-color: var(--primary);
	border: 1px solid var(--primary);
}
.output-control-buttons button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.builder-navigation-buttons-container .output-control-buttons .clear-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    background-color: var(--pure-white);
    font-size: 19px;
    color: #999;
    border: 1px solid var(--light-gray);
}
.builder-navigation-buttons-container .output-control-buttons .clear-btn:hover {
    background: #f7f7f7;
}
.output-control-buttons .copy-btn {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
    padding: 0 7px 0 13px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}
.output-control-buttons .copy-btn i {
    font-size: 16px;
}
.output-control-buttons .copy-btn:hover {
    color: #0040A3;
    border-color: #0040A3;
}
.output-control-buttons button.save-btn {
    border: 1px solid #222222;
    background-color: #222222;
    color: var(--pure-white);
    font-size: 14px;
    line-height: 24px;
    gap: 7px;
    padding: 0 18px 0 15px;
    font-weight: 500;
}
.output-control-buttons button.save-btn i {
    font-size: 19px;
}
.output-control-buttons button.save-btn:hover {
    background-color: #0040A3;
    border-color: #0040A3;
}